- fix: dependency helpers now rate limited at 10ms, not 1s.

- add per-arch canonical color, only x86_64 enabled for now.

CVS patchset: 5994
CVS date: 2003/01/01 20:33:21
This commit is contained in:
jbj 2003-01-01 20:33:21 +00:00
parent eb93e75995
commit ed80614424
28 changed files with 1884 additions and 1827 deletions

View File

@ -95,6 +95,8 @@
- fix: typo in assertion.
- add rpmts/rpmte/rpmfi/rpmds element colors.
- ignore items not in our rainbow (i.e. colors are functional).
- fix: dependency helpers now rate limited at 10ms, not 1s.
- add per-arch canonical color, only x86_64 enabled for now.
4.0.4 -> 4.1:
- loosely wire beecrypt library into rpm.

View File

@ -121,7 +121,6 @@ static StringBuf getOutputFrom(/*@null@*/ const char * dir, ARGV_t argv,
done = 0;
top:
/* XXX the select is mainly a timer since all I/O is non-blocking */
FD_ZERO(&ibits);
FD_ZERO(&obits);
if (fromProg[0] >= 0) {
@ -130,8 +129,9 @@ top:
if (toProg[1] >= 0) {
FD_SET(toProg[1], &obits);
}
tv.tv_sec = 1;
tv.tv_usec = 0;
/* XXX values set to limit spinning with perl doing ~100 forks/sec. */
tv.tv_sec = 0;
tv.tv_usec = 10000;
nfd = ((fromProg[0] > toProg[1]) ? fromProg[0] : toProg[1]);
if ((rc = select(nfd, &ibits, &obits, NULL, &tv)) < 0) {
if (errno == EINTR)
@ -1469,9 +1469,16 @@ assert(EVR != NULL);
p = (const void **) argiData(fc->fcolor);
c = argiCount(fc->fcolor);
assert(ac == c);
if (p != NULL && c > 0)
if (p != NULL && c > 0) {
int_32 * fcolors = (int_32 *)p;
int i;
/* XXX Make sure only primary (i.e. Elf32/Elf64) colors are added. */
for (i = 0; i < c; i++)
fcolors[i] &= 0x0f;
xx = headerAddEntry(pkg->header, RPMTAG_FILECOLORS, RPM_INT32_TYPE,
p, c);
}
/* Add classes(#classes) */
p = (const void **) argvData(fc->cdict);

View File

@ -1124,23 +1124,23 @@ AC_SUBST(MARK64)
dnl Determine the canonical arch-vendor-os for the build machine
case "${build_cpu}" in
*86) RPMCANONARCH=i386 ;;
x86_64*) RPMCANONARCH=x86_64 ;;
alpha*) RPMCANONARCH=alpha ;;
sparc*) RPMCANONARCH=sparc ;;
ia64*) RPMCANONARCH=ia64 ;;
s390x*) RPMCANONARCH=s390x ;;
s390*) RPMCANONARCH=s390 ;;
powerpc64*|ppc64*) RPMCANONARCH=ppc64 ;;
powerpc*|ppc*) RPMCANONARCH=ppc ;;
armv3l*) RPMCANONARCH=armv3l ;;
armv4l*) RPMCANONARCH=armv4l ;;
armv4b*) RPMCANONARCH=armv4b ;;
arm*) RPMCANONARCH="${build_cpu}" ;;
mipsel*) RPMCANONARCH=mipsel ;;
mips*) RPMCANONARCH=mips ;;
m68k*) RPMCANONARCH=m68k ;;
*) RPMCANONARCH=unknown ;;
*86) RPMCANONCOLOR=0; RPMCANONARCH=i386 ;;
x86_64*) RPMCANONCOLOR=3; RPMCANONARCH=x86_64 ;;
alpha*) RPMCANONCOLOR=0; RPMCANONARCH=alpha ;;
sparc*) RPMCANONCOLOR=0; RPMCANONARCH=sparc ;;
ia64*) RPMCANONCOLOR=0; RPMCANONARCH=ia64 ;;
s390x*) RPMCANONCOLOR=0; RPMCANONARCH=s390x ;;
s390*) RPMCANONCOLOR=0; RPMCANONARCH=s390 ;;
powerpc64*|ppc64*) RPMCANONCOLOR=0; RPMCANONARCH=ppc64 ;;
powerpc*|ppc*) RPMCANONCOLOR=0; RPMCANONARCH=ppc ;;
armv3l*) RPMCANONCOLOR=0; RPMCANONARCH=armv3l ;;
armv4l*) RPMCANONCOLOR=0; RPMCANONARCH=armv4l ;;
armv4b*) RPMCANONCOLOR=0; RPMCANONARCH=armv4b ;;
arm*) RPMCANONCOLOR=0; RPMCANONARCH="${build_cpu}" ;;
mipsel*) RPMCANONCOLOR=0; RPMCANONARCH=mipsel ;;
mips*) RPMCANONCOLOR=0; RPMCANONARCH=mips ;;
m68k*) RPMCANONCOLOR=0; RPMCANONARCH=m68k ;;
*) RPMCANONCOLOR=0; RPMCANONARCH=unknown ;;
esac
case "${build_os_noversion}" in
mint) RPMCANONARCH=m68kmint ;;
@ -1157,6 +1157,7 @@ unknown|pc|ibm|redhat|pld|mandrake|conectiva|lvr|yellowdog)
;;
esac
RPMCANONOS="$build_os_noversion"
AC_SUBST(RPMCANONCOLOR)
AC_SUBST(RPMCANONARCH)
AC_SUBST(RPMCANONVENDOR)
AC_SUBST(RPMCANONOS)

View File

@ -1526,13 +1526,13 @@ psm->te->h = headerLink(fi->h);
/* XXX insure that trigger index is opened before entering chroot. */
#ifdef NOTYET
{ static int oneshot = 0;
dbiIndex dbi;
if (!oneshot) {
dbi = dbiOpen(rpmtsGetRdb(ts), RPMTAG_TRIGGERNAME, 0);
oneshot++;
}
}
{ static int oneshot = 0;
dbiIndex dbi;
if (!oneshot) {
dbi = dbiOpen(rpmtsGetRdb(ts), RPMTAG_TRIGGERNAME, 0);
oneshot++;
}
}
#endif
/* Change root directory if requested and not already done. */
@ -1845,6 +1845,7 @@ psm->te->h = headerLink(fi->h);
if (psm->goal == PSM_PKGINSTALL) {
int_32 installTime = (int_32) time(NULL);
int_32 tscolor = rpmtsColor(ts);
int fc = rpmfiFC(fi);
if (fi->h == NULL) break; /* XXX can't happen */
@ -1855,6 +1856,9 @@ psm->te->h = headerLink(fi->h);
xx = headerAddEntry(fi->h, RPMTAG_INSTALLTIME, RPM_INT32_TYPE,
&installTime, 1);
xx = headerAddEntry(fi->h, RPMTAG_INSTALLCOLOR, RPM_INT32_TYPE,
&tscolor, 1);
/*
* If this package has already been installed, remove it from
* the database before adding the new one.

View File

@ -365,9 +365,7 @@ typedef enum rpmTag_e {
RPMTAG_PAYLOADFORMAT = 1124,
RPMTAG_PAYLOADCOMPRESSOR = 1125,
RPMTAG_PAYLOADFLAGS = 1126,
/*@-enummemuse@*/
RPMTAG_MULTILIBMASK = 1127, /*!< internal - obsolete */
/*@=enummemuse@*/
RPMTAG_INSTALLCOLOR = 1127, /*!< transaction color when installed */
RPMTAG_INSTALLTID = 1128,
RPMTAG_REMOVETID = 1129,
/*@-enummemuse@*/

View File

@ -1,7 +1,7 @@
#/*! \page config_macros Default configuration: @RPMCONFIGDIR@/macros
# \verbatim
#
# $Id: macros.in,v 1.134 2002/12/21 20:37:37 jbj Exp $
# $Id: macros.in,v 1.135 2003/01/01 20:33:21 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
@ -569,6 +569,13 @@ package or when debugging this package.\
# XXX Note: escaped %% for use in headerSprintf()
%_build_name_fmt %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
# The default transaction color. This value is a set of bits to
# determine file and dependency affinity for this arch.
# 0 uncolored (i.e. use only arch as install hint)
# 1 Elf32 permitted
# 2 Elf64 permitted
%_transaction_color @RPMCANONCOLOR@
# The path to the dependency universe database. The default value
# is the rpmdb-redhat location. The macro is usually defined in
# /etc/rpm/macros.solve, installed with the rpmdb-redhat package.

173
po/cs.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2001-07-24 10:02+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
@ -1359,52 +1359,52 @@ msgstr "selhal - "
msgid "package %s was already added, replacing with %s\n"
msgstr "balíèek %s je ji¾ nainstalován"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "©patný soubor: %s: %s\n"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s ANO (db poskytuje)\n"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "¾ádné balíèky\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== ukládání tsort relací\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
@ -1412,20 +1412,20 @@ msgid ""
msgstr ""
"========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "SMYÈKA:\n"
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== pokraèuje tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1489,37 +1489,37 @@ msgstr "========= Adres
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "vytvoøen adresáø %s s právy %04o.\n"
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ulo¾eno jako %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s odstranìní %s selhalo: Adresáø není prázdný\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s selhal: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s selhal: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s vytvoøen jako %s\n"
@ -2166,89 +2166,84 @@ msgstr "podepsat bal
msgid "generate signature"
msgstr "generovat PGP/GPG podpis"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datový typ %d není podporován\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, 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:1608
#: 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:1744
#: lib/psm.c:1553
#, 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:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, 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:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " na souboru "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
@ -2280,114 +2275,118 @@ msgid "net shared "
msgstr "sdílen v síti "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(chybí stav) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámý %3d) "
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevøení %s selhalo: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "dotaz na %s se nezdaøil\n"
#: lib/query.c:465
#: lib/query.c:468
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:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¾ádný balíèek neaktivuje %s\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "¾ádné balíèky\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "¾ádný balíèek neaktivuje %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "nemohu zjistit stav %s: %s\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¾ádný balíèek neaktivuje %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "¾ádný balíèek nevy¾aduje %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "¾ádný balíèek neposkytuje %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "soubor %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "soubor %s nevlastní ¾ádný balíèek\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "neplatné èíslo balíèku: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "záznam balíèku èíslo: %u\n"
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "záznam %u nelze pøeèíst\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "balíèek %s není nainstalován\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "©patný soubor: %s: %s\n"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
@ -2514,37 +2513,32 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
#, fuzzy
msgid "========== relocations\n"
msgstr "========== ukládání tsort relací\n"
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je vyøazen: %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%s vytvoøen jako %s\n"
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Provádìní(%s): %s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Provádìní(%s): %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "Provádìní(%s): %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
@ -3068,7 +3062,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3081,7 +3075,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3094,7 +3088,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3102,16 +3096,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "chybí { po %"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "chybné závislosti pøi sestavování:\n"
@ -3278,6 +3272,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datový typ %d není podporován\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -3832,6 +3831,10 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "Provádìní(%s): %s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Hledám %s: (pou¾it %s)...\n"

172
po/da.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2001-04-05 23:03GMT\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1360,71 +1360,71 @@ msgstr " mislykkedes - "
msgid "package %s was already added, replacing with %s\n"
msgstr "pakken %s er allerede installeret"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s JA (rpmrc tilfører)\n"
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s JA (rpmlib tilfører)\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "ugyldig db-fil %s\n"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s JA (db tilfører)\n"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== gemmer tsort-relationer\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "LØKKE:\n"
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== fortsætter tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1487,37 +1487,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linie %d: %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gemt som %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kan ikke fjerne %s - katalog ikke tomt\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s oprettet som %s\n"
@ -2178,90 +2178,85 @@ msgstr "underskriv en pakke (slet nuv
msgid "generate signature"
msgstr "generér PGP/GPG-signatur"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatype %d understøttes ikke\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær fundet\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "kildepakke indeholder ingen .spec-fil\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, 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:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke læse hoved fra %s: %s\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " for fil "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
@ -2293,114 +2288,118 @@ msgid "net shared "
msgstr "ej delt "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(ingen status)"
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(ukendt %3d) "
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "forespørgsel af %s mislykkedes\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakker udløser %s\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "ingen pakker\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s indeholder ingen pakker\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakker udløser %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Kunne ikke læse %s: %s.\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakker udløser %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakker kræver %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakker tilfører %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tilhører ingen pakke\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "pakkens post-nummer: %u\n"
#: lib/query.c:749
#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "post %d kunne ikke læses\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakken %s er ikke installeret\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "ugyldig db-fil %s\n"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s JA (tilføjede 'provide')\n"
@ -2527,36 +2526,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== gemmer omrokeringer\n"
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ekskluderer %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omrokerer %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ekskluderer multilib-sti %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "ekskluderer %s %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "omrokerer %s til %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "omrokerer kataloget %s til %s\n"
@ -3080,7 +3074,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s oversprunget grundet manglende ok-flag\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
@ -3093,7 +3087,7 @@ msgstr "ekskluderer kataloget %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3106,7 +3100,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3114,16 +3108,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "manglende %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
@ -3289,6 +3283,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatype %d understøttes ikke\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "initialisér database"
@ -3843,6 +3842,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "ekskluderer multilib-sti %s%s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Finder %s: (benytter %s)...\n"

175
po/de.po
View File

@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
@ -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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1487,71 +1487,71 @@ msgstr "pgp fehlgeschlagen"
msgid "package %s was already added, replacing with %s\n"
msgstr "Paket %s ist nicht installiert\n"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
# , c-format
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "Anfrage an alle Pakete"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# FIXME
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1618,37 +1618,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kann Datei %s nicht öffnen: "
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Entfernen von %s fehlgeschlagen: %s"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kann Datei %s nicht öffnen: "
@ -2334,93 +2334,88 @@ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
msgid "generate signature"
msgstr "PGP-Signatur generieren"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, 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:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nicht möglich %s zu schreiben"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
@ -2453,120 +2448,124 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(unbekannter Typ)"
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "Paket hat keinen Namen"
#: lib/query.c:312
#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "Paket hat keinen Namen"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "Anfrage von %s fehlgeschlagen\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "kein Paket triggert %s\n"
#: lib/query.c:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "Anfrage an alle Pakete"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "kein Paket triggert %s\n"
# , c-format
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "kein Paket triggert %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "kein Paket verlangt %s\n"
# oder besser: ... listet %s auf? -ke-
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "kein Paket stellt %s bereit\n"
# , c-format
#: lib/query.c:710
#: lib/query.c:713
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/query.c:714
#: lib/query.c:717
#, 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:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "ungültige Paket-Nummer: %s\n"
#: lib/query.c:749
#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
# , c-format
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2691,39 +2690,33 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
# , c-format
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Hole %s heraus\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "kann Datei %s nicht öffnen: "
# , c-format
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Hole %s heraus\n"
# , c-format
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Hole %s heraus\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@ -3257,7 +3250,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@ -3270,7 +3263,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3283,7 +3276,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3291,16 +3284,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "fehlende { nach %{"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
@ -3469,6 +3462,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -4036,6 +4034,11 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
# , c-format
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "Hole %s heraus\n"
# , c-format
#, fuzzy
#~ msgid "Finding %s: %s\n"

173
po/fi.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1384,69 +1384,69 @@ msgstr "pgp ep
msgid "package %s was already added, replacing with %s\n"
msgstr "paketti %s ei ole asennettu\n"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "tiedostoa %s ei omista mikään paketti\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "en voinut avata %s: %s"
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "kysele kaikki paketit"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1509,37 +1509,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "en voinut avata %s: %s"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s:n rmdir epäonnistui: %s"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "en voinut avata tiedostoa %s: "
@ -2220,90 +2220,85 @@ msgstr "allekirjoita paketti (hylk
msgid "generate signature"
msgstr "generoi PGP-allekirjoitus"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skriptin ajo epäonnistui"
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s:n kirjoitus ei onnistu"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
@ -2336,116 +2331,120 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(tuntematon tyyppi)"
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paketilla ei ole nimeä"
#: lib/query.c:312
#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paketilla ei ole nimeä"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s:n kysely ei onnistunut\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, 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:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "kysele kaikki paketit"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "En voi lukea %s: %s."
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "mikään pakettie ei tarvitse %s:a\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "mikään paketti ei tarjoa %s:a\n"
#: lib/query.c:710
#: lib/query.c:713
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "en voinut avata %s: %s"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "virheellinen paketin numero: %s\n"
#: lib/query.c:749
#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "en voinut avata %s: %s"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2570,36 +2569,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paketti %s ei ole %s:ssä"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Haen: %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Haen: %s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Haen: %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
@ -3122,7 +3116,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
@ -3135,7 +3129,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3148,7 +3142,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3156,16 +3150,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "puuttuva '{' '%':n jälkeen"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
@ -3333,6 +3327,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -3892,6 +3891,10 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "Haen: %s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "en voinut avata %s: %s"

169
po/fr.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1411,68 +1411,68 @@ msgstr "La construction a chou.\n"
msgid "package %s was already added, replacing with %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "impossible d'ouvrir: %s\n"
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "impossible d'ouvrir: %s\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1533,37 +1533,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "La construction a chou.\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "La construction a chou.\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "impossible d'ouvrir: %s\n"
@ -2260,91 +2260,86 @@ msgstr "aucun package n'a t spcifi pour la dsinstallation"
msgid "generate signature"
msgstr " --sign - genre une signature PGP"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1956
#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "La construction a chou.\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "La construction a chou.\n"
@ -2377,116 +2372,120 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/query.c:312
#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a chou.\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, 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:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
#: lib/query.c:557
#: lib/query.c:560
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "impossible d'ouvrir: %s\n"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2610,36 +2609,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
@ -3160,7 +3154,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3173,7 +3167,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3186,7 +3180,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3194,16 +3188,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "impossible d'ouvrir: %s\n"
@ -3371,6 +3365,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""

169
po/gl.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2001-01-13 22:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@ -701,7 +701,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1325,66 +1325,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:468
#: lib/depends.c:435
msgid "(db files)"
msgstr ""
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
msgid "(db package)"
msgstr ""
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1444,37 +1444,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr ""
@ -2091,88 +2091,83 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1608
#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr ""
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2157
#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2204,112 +2199,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
#: lib/query.c:279
#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr ""
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
#: lib/rpmal.c:695
#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2432,36 +2431,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
@ -2971,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -2984,7 +2978,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -2997,7 +2991,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3005,16 +2999,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
#: lib/verify.c:395
#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
@ -3180,6 +3174,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""

169
po/is.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2001-07-12 13:25+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifaði: %s\n"
@ -1336,67 +1336,67 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:468
#: lib/depends.c:435
msgid "(db files)"
msgstr ""
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "uppfæra pakka"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1457,37 +1457,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s vistað sem %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s gat ekki eytt %s: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s búið til sem %s\n"
@ -2118,89 +2118,84 @@ msgstr ""
msgid "generate signature"
msgstr "búa til undirskrift"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "pakkinn inniheldur enga .spec skrá\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1608
#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Get ekki lesið haus úr %s: %s\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnað %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
@ -2232,112 +2227,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
#: lib/query.c:279
#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr ""
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Get ekki lesið %s: %s.\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
#: lib/rpmal.c:695
#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2460,36 +2459,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "lína %d: %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "%5d færa %s -> %s\n"
@ -3002,7 +2996,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3015,7 +3009,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3028,7 +3022,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3036,16 +3030,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "vantar %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
@ -3211,6 +3205,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""

173
po/ja.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
@ -751,7 +751,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "%s のオープンに失敗しました\n"
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "書き込み中: %s\n"
@ -1405,71 +1405,71 @@ msgstr "
msgid "package %s was already added, replacing with %s\n"
msgstr "パッケージ %s-%s-%s はすでにインストールされています"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "不正なファイルの状態: %s"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %s は db が提供することによって満されます。\n"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "%d 個のパッケージを見つけました\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "group インデックスを削除します\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1532,37 +1532,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%d 行目: %s"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "警告: %s は %s として保存されます"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s を削除できません - ディレクトリが空でありません"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s の rmdir に失敗: %s"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s のオープンに失敗: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "警告: %s は %s として作成されます"
@ -2255,92 +2255,87 @@ msgstr "
msgid "generate signature"
msgstr "PGP/GPG 署名を生成します"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "データタイプ %d はサポートされていません\n"
#: lib/psm.c:465
#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "ソースパッケージが期待されます、バイナリは見つかりました"
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "ソースパッケージは .spec ファイルを含んでいません"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s をスキップします - 転送失敗 - %s\n"
#: lib/psm.c:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "スクリプトの実行に失敗"
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "アイコンを読むことができません: %s"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "ユーザ %s は存在しません - root を使用します"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "グループ %s は存在しません - root を使用します"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ファイル %s のアーカイブの伸長に失敗 %s%s: %s"
#: lib/psm.c:1957
#: lib/psm.c:1766
#, fuzzy
msgid " on file "
msgstr "ファイル上"
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s のオープンに失敗: %s"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s 失敗"
@ -2372,116 +2367,120 @@ msgid "net shared "
msgstr "ネット共有"
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(何の状態もありません)"
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(未知の %3d)"
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "パッケージはファイル所有者や id リストをどちらも持っていません"
#: lib/query.c:312
#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "パッケージはファイル所有者や id リストをどちらも持っていません"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s のオープンに失敗: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s への問い合わせに失敗しました\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "旧形式のソースパッケージを問い合わせることはできません\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s をトリガーするパッケージは存在しません\n"
#: lib/query.c:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "%d 個のパッケージを見つけました\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "グループ %s に属するパッケージは存在しません\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "%s をトリガーするパッケージは存在しません\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s を読むのに失敗: $s。"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s をトリガーするパッケージは存在しません\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s を必要とするパッケージは存在しません\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s を提供するパッケージは存在しません\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "ファイル %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "ファイル %s はどのパッケージにも属していません\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "無効なパッケージ番号: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "パッケージレコード番号 %d\n"
#: lib/query.c:749
#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "レコード %d を読むことができませんでした\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "パッケージ %s はインストールされていません\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "不正なファイルの状態: %s"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %s は provide に加えることによって満されます。\n"
@ -2609,36 +2608,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "パッケージ %s は require が満たされていません: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS は除外されています: %s"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%s を %s に再配置しています\n"
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ファイルの除外: %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "ファイルの除外: %s%s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s を %s に再配置しています\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "ディレクトリ %s を %s に再配置しています\n"
@ -3171,7 +3165,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s は missingok フラグのためスキップします\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "ディレクトリの除外: %s\n"
@ -3184,7 +3178,7 @@ msgstr "
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3197,7 +3191,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3205,16 +3199,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "%s が見つかりません\n"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s のための依存性を満たしていません:"
@ -3380,6 +3374,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "データタイプ %d はサポートされていません\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -3942,6 +3941,10 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "ファイルの除外: %s%s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "%s を探しています: (%s を使用しています)...\n"

172
po/ko.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2002-03-04 17:17+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
@ -715,7 +715,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "%s(을)를 열 수 없음: %s\n"
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "작성: %s\n"
@ -1346,52 +1346,52 @@ msgstr "
msgid "package %s was already added, replacing with %s\n"
msgstr "%s 패키지는 이미 설치되어 있습니다"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s 예 (rpmrc이 제공함)\n"
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s 예 (rpmlib이 제공함)\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "잘못된 db 파일 %s\n"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s 예 (db가 제공함)\n"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "패키지가 없습니다\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "다음과 관련된 패키지 이름을 무시합니다 [%d]\t%s -> %s\n"
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort 관계에서 %s-%s-%s \"%s\"(을)를 삭제합니다.\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== tsort 관계를 기록(record)합니다\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@ -1399,20 +1399,20 @@ msgstr ""
"========== 패키지를 tsort 합니다 (순서, #선임자, #후임자, 트리, 깊이"
"[depth])\n"
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== 후임자만 [successors only] (표현 순)\n"
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "루프(LOOP):\n"
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== tsort를 진행합니다...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1474,37 +1474,37 @@ msgstr "=========
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%2$04o의 허가권(perms)을 가진 %1$s 디렉토리가 생성되었습니다.\n"
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "헤더 파일 목록에서 아카이브 파일 %s(을)를 찾을 수 없습니다\n"
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s(이)가 %s(으)로 저장되었습니다\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s %s 디렉토리 삭제에 실패함: 빈 디렉토리가 아닙니다\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s %s 디렉토리 삭제에 실패함: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s %s 링크 해제에 실패함: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s(이)가 %s(으)로 생성되었습니다\n"
@ -2151,93 +2151,88 @@ msgstr "
msgid "generate signature"
msgstr "서명을 작성합니다"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "%d 데이터 유형은 사용할 수 없습니다\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "소스 패키지가 필요하며, 바이너리가 검색되었습니다\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "소스 패키지에 .spec 파일이 포함되어 있지 않습니다\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, 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:1608
#: 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:1744
#: lib/psm.c:1553
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
"%s: %s 스크립틀릿(scriptlet)이 실패했습니다 (%d), %s-%s-%s(을)를 생략합니다\n"
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "서명(signature) 헤더를 다시 읽어올 수 없습니다.\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s 사용자가 존재하지 않습니다 - root를 이용합니다\n"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s 그룹이 존재하지 않습니다 - root를 이용합니다\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " 다음 파일의 "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s 파일의 %1$s(이)가 실패함: %3$s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s(이)가 실패함: %s\n"
@ -2269,114 +2264,118 @@ msgid "net shared "
msgstr "net 공유됨 "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(상태를 알 수 없음) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(알 수 없는 %3d) "
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "패키지에 파일 소유자 또는 id 목록이 없습니다\n"
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "패키지에 파일 소유자 또는 id 목록이 없습니다\n"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s(을)를 여는데 실패함: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s(을)를 질의하는데 실패했습니다\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "이전 형식의 소스 패키지는 질의할 수 없습니다\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s(와)과 일치하는 패키지가 없음: %s\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "패키지가 없습니다\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s 그룹은 어떤 패키지에도 포함되어 있지 않습니다\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "%s(을)를 생성하는(trigger) 패키지가 없습니다\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "%s(이)가 잘못됨: %s\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "%s(와)과 일치하는 패키지가 없음: %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s(을)를 필요로 하는 패키지가 없습니다\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s(을)를 제공하는 패키지가 없습니다\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "%s 파일: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "%s 파일은 어떤 패키지에도 들어있지 않습니다\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "부적합한 패키지 번호: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "패키지 기록(record) 번호: %u\n"
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "기록(record) 번호 %u(은)는 읽을 수 없습니다\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "%s 패키지가 설치되어 있지 않습니다\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "잘못된 db 파일 %s\n"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s 예 (제공이 추가됨)\n"
@ -2502,36 +2501,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "%s 패키지의 필요사항(내역)이 만족하지 않음: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== 재배치\n"
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d 제외 %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d 재배치 %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "%s%s multilib 경로를 제외시킵니다\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s(을)를 제외시킵니다\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s(을)를 %s(으)로 재배치 합니다\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s 디렉토리를 %s(으)로 재배치 합니다\n"
@ -3056,7 +3050,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "missingok 플래그로 인해 %s(을)를 생략합니다\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "%s 디렉토리를 제외시킵니다\n"
@ -3069,7 +3063,7 @@ msgstr "%s
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3082,7 +3076,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3090,16 +3084,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "다음을 찾을 수 없음 %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s에 의존성 문제 발생: "
@ -3265,6 +3259,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "%d 데이터 유형은 사용할 수 없습니다\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "데이터베이스를 초기화 합니다"
@ -3821,6 +3820,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "%s%s multilib 경로를 제외시킵니다\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "%s(을)를 찾는 중: (%s 사용)...\n"

172
po/no.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2001-06-27 12:24+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1351,67 +1351,67 @@ msgstr " feilet - "
msgid "package %s was already added, replacing with %s\n"
msgstr "pakke %s er allerede installert"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:468
#: lib/depends.c:435
msgid "(db files)"
msgstr ""
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1472,37 +1472,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s lagret som %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s feilet: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s feilet: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s opprettet som %s\n"
@ -2144,89 +2144,84 @@ msgstr "signer en pakke (forkast n
msgid "generate signature"
msgstr "generer signatur"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatype %d ikke støttet\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær funnet\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "kildepakke inneholder ikke en .spec-fil\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1608
#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
@ -2258,113 +2253,117 @@ msgid "net shared "
msgstr "delt via nett "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(ingen tilstand)"
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(ukjent %3d) "
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "feil under åpning av %s: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "spørring på %s feilet\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "kildepakker i gammelt format kan ikke spørres\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakke utløser %s\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "ingen pakker\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s inneholder ingen pakker\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakke utløser %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "kunne ikke opprette %s: %s\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakke utløser %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakke krever %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakke gir %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s eies ikke av noen pakke\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakke %s er ikke installert\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2487,36 +2486,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "pakke %s er i konflikt: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "eksluderer %s %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omplasser %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ekskluderer multilib-sti %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "eksluderer %s %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "relokerer %s til %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "relokerer katalog %s til %s\n"
@ -3034,7 +3028,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
@ -3047,7 +3041,7 @@ msgstr "ekskluderer katalog %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3060,7 +3054,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3068,16 +3062,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "mangler %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "feilede avhengigheter:\n"
@ -3243,6 +3237,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatype %d ikke støttet\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "initier database"
@ -3787,6 +3786,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "ekskluderer multilib-sti %s%s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Fil %s: %s\n"

173
po/pl.po
View File

@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
@ -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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1388,70 +1388,70 @@ msgstr " nie powiod
msgid "package %s was already added, replacing with %s\n"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "b³êdny status pliku: %s"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "Udostêpniane zasoby:"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "znaleziono %d pakietów\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "usuwanie indeksu grupy\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1514,37 +1514,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linia %d: %s"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "ostrze¿enie: %s zapisany jako %s"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "skasowanie katalogu %s nie powiod³o siê"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "ostrze¿enie: %s utworzony jako %s"
@ -2220,91 +2220,86 @@ msgstr "podpisz pakiet (porzu
msgid "generate signature"
msgstr "generuj sygnaturê PGP/GPG"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ danych %d nie jest obs³ugiwany\n"
#: lib/psm.c:465
#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "wykonanie skryptu nie powiod³o siê"
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie mo¿na odczytaæ ikony: %s"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, 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:1908
#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - u¿yto grupy root"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, 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:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " na pliku "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nie mo¿na otworzyæ %s: %s"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiod³o siê"
@ -2336,116 +2331,120 @@ msgid "net shared "
msgstr "udostêpniony w sieci"
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(brak statusu)"
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(nieznany %3d)"
#: lib/query.c:279
#: lib/query.c:282
#, 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:312
#: lib/query.c:315
#, 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:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "odpytywanie %s nie powiod³o siê\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
#: lib/query.c:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "znaleziono %d pakietów\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Odczytanie %s nie powiod³o siê: %s."
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "¿aden pakiet nie wymaga %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "¿aden pakiet nie udostêpnia %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "plik %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, 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:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "b³êdny numer pakietu: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "numer rekordu pakietu: %d\n"
#: lib/query.c:749
#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "nie mo¿na odczytaæ rekordu %d\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "b³êdny status pliku: %s"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2570,36 +2569,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Ten OS nie jest wspierany: %s"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "wy³±czanie %s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "wy³±czanie %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
@ -3125,7 +3119,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s pominiêty z powodu flagi missingok\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
@ -3138,7 +3132,7 @@ msgstr "tworzenie katalogu: %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3151,7 +3145,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3159,16 +3153,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "brak %s\n"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
@ -3334,6 +3328,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ danych %d nie jest obs³ugiwany\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -3887,6 +3886,10 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "wy³±czanie %s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Wyszukiwanie wymaganych zasobów...\n"

172
po/pt.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2002-02-14 10:51+0000\n"
"Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
"Language-Team: pt <morais@kde.org\n"
@ -725,7 +725,7 @@ msgstr "N
msgid "Could not open %s: %s\n"
msgstr "Não consigo aceder ao %s: %s\n"
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Não consegui gravar o pacote: %s\n"
@ -755,7 +755,7 @@ msgstr "N
msgid "Unable to write payload to %s: %s\n"
msgstr "Não consegui escrever o conteúdo de %s: %s\n"
#: build/pack.c:725 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
@ -1361,72 +1361,72 @@ msgstr " falhou - "
msgid "package %s was already added, replacing with %s\n"
msgstr "o pacote %s já está instalado"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "ficheiro db inválido %s\n"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s SI (oferecidos pelo db)\n"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "nenhum pacote\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ignorar relações entre o nome do pacote [%d]\t%s -> %s\n"
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "=========== a guardar as relações do tsort\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
"========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n"
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== só os sucessores (ordem de apresentação)\n"
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "CICLO:\n"
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== a prosseguir o tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1488,39 +1488,39 @@ msgstr "========= Directorias n
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "directoria %s criada com as permissões %04o.\n"
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
"o ficheiro de arquivo %s não foi encontrado na lista de ficheiros do "
"cabeçalho\n"
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gravado como %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir de %s falhou: Directoria não está vazia\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir de %s falhou: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink de %s falhou: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s criado como %s\n"
@ -2164,91 +2164,86 @@ msgstr "assinar um pacote (retira a assinatura actual)"
msgid "generate signature"
msgstr "gerar a assinatura"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "O tipo de dados %d não é suportado\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
"esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "o pacote de código-fonte não contem um ficheiro .spec\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
#: lib/psm.c:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
#: lib/psm.c:1608
#: lib/psm.c:1420
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n"
#: lib/psm.c:1744
#: lib/psm.c:1553
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Não consegui reler o cabeçalho do assinatura.\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "o utilizador %s não existe - a usar o root\n"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "o grupo %s não existe - a usar o root\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " no ficheiro "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s falhou no ficheiro %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s falhou: %s\n"
@ -2280,115 +2275,119 @@ msgid "net shared "
msgstr "partilhado"
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(sem estado) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(desconhecido %3d)"
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "o acesso ao %s falhou: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "a pesquisa do %s falhou\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
"os pacotes com código-fonte no formato antigo não podem ser pesquisados\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "nenhum pacote\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "o grupo %s não contém nenhum pacote\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "nenhum pacote activa o %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "malformado %s: %s\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "nenhum pacote precisa do %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "nenhum pacote oferece o %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "ficheiro %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "o ficheiro %s não pertence a nenhum pacote\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "número de pacote inválido: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "número de registo do pacote: %u\n"
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "o registo %u não pôde ser lido\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "o pacote %s não está instalado\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "ficheiro db inválido %s\n"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s SIM (oferecidos para adição)\n"
@ -2514,36 +2513,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "o pacote %s tem requisitos não satisfeitos: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== mudanças de local\n"
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d excluir o %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d mudar de local %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "a exclur a directoria 'multilib' %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "a excluir o %s %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "a mudar o %s para %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "a mudar a directoria %s para %s\n"
@ -3067,7 +3061,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ignorado devido à opção missingok\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
@ -3080,7 +3074,7 @@ msgstr "a excluir a directoria %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3093,7 +3087,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3101,16 +3095,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "falta %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Dependências não satisfeitas para o %s-%s-%s: "
@ -3276,6 +3270,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "O tipo de dados %d não é suportado\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "inicializar a base de dados"
@ -3826,6 +3825,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "a exclur a directoria 'multilib' %s%s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "A procurar o %s: (usando o %s)...\n"

View File

@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
@ -799,7 +799,7 @@ msgid "Could not open %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "No consegui abrir: %s\n"
@ -834,7 +834,7 @@ msgstr "No consegui abrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/pack.c:725 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1499,70 +1499,70 @@ msgstr "Construo falhou.\n"
msgid "package %s was already added, replacing with %s\n"
msgstr "no foi passado pacote para instalao"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
# , c-format
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "No consegui abrir: %s\n"
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "pesquise todos os pacotes"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# , c-format
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "No consegui abrir: %s\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1627,40 +1627,40 @@ msgstr ""
msgid "%10d %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
# , c-format
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "No consegui abrir: %s\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Construo falhou.\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "Construo falhou.\n"
# , c-format
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "No consegui abrir: %s\n"
@ -2347,92 +2347,87 @@ msgstr "assine um pacote (descarte a assinatura corrente)"
msgid "generate signature"
msgstr "gere assinatura PGP"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "No consegui abrir: %s\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1956
#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
@ -2465,118 +2460,122 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "no foi passado pacote para instalao"
#: lib/query.c:312
#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "no foi passado pacote para instalao"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construo falhou.\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "no foram passados pacotes para assinatura"
#: lib/query.c:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "pesquise todos os pacotes"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
#: lib/query.c:557
#: lib/query.c:560
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "no foram passados pacotes para assinatura"
# , c-format
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "no foram passados pacotes para assinatura"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "no foi passado pacote para instalao"
# , c-format
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "No consegui abrir: %s\n"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2707,7 +2706,7 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "no foi passado pacote para instalao"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
@ -2719,13 +2718,13 @@ msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "RPM verso %s\n"
# , c-format
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "No consegui abrir: %s\n"
@ -2738,32 +2737,19 @@ msgstr "No consegui abrir: %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "RPM verso %s\n"
# "Project-Id-Version: rpm-2.5.3\n"
# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
# "Language-Team: Portuguese <pt@li.org>\n"
# "MIME-Version: 1.0\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "RPM verso %s\n"
# , c-format
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "No consegui abrir: %s\n"
@ -3324,7 +3310,7 @@ msgstr ""
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
@ -3337,7 +3323,7 @@ msgstr "RPM verso %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3350,7 +3336,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3358,16 +3344,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "lista dependncias do pacote"
@ -3535,6 +3521,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -4110,6 +4101,18 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
# "Project-Id-Version: rpm-2.5.3\n"
# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
# "Language-Team: Portuguese <pt@li.org>\n"
# "MIME-Version: 1.0\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "RPM verso %s\n"
# , c-format
#, fuzzy
#~ msgid "Finding %s: %s\n"

169
po/ro.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@ -701,7 +701,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1325,66 +1325,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:468
#: lib/depends.c:435
msgid "(db files)"
msgstr ""
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
msgid "(db package)"
msgstr ""
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1444,37 +1444,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr ""
@ -2091,88 +2091,83 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1608
#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr ""
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2157
#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2204,112 +2199,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
#: lib/query.c:279
#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr ""
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
#: lib/rpmal.c:695
#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2432,36 +2431,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
@ -2971,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -2984,7 +2978,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -2997,7 +2991,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3005,16 +2999,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
#: lib/verify.c:395
#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
@ -3180,6 +3174,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -707,7 +707,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1331,66 +1331,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:468
#: lib/depends.c:435
msgid "(db files)"
msgstr ""
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
msgid "(db package)"
msgstr ""
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1450,37 +1450,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr ""
@ -2097,88 +2097,83 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1608
#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr ""
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2157
#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2210,112 +2205,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
#: lib/query.c:279
#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr ""
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
#: lib/rpmal.c:695
#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2438,36 +2437,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
@ -2977,7 +2971,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -2990,7 +2984,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3003,7 +2997,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3011,16 +3005,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
#: lib/verify.c:395
#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
@ -3186,6 +3180,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""

172
po/ru.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2002-08-27 13:36-0400\n"
"Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@ -724,7 +724,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: build/pack.c:632 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
@ -1361,47 +1361,47 @@ msgstr "
msgid "package %s was already added, replacing with %s\n"
msgstr "ÐÁËÅÔ %s ÕÖÅ ÂÙÌ ÄÏÂÁ×ÌÅÎ, ÚÁÍÅÎÑÅÔÓÑ %s\n"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr "(ËÜÛÉÒÏ×ÁÎ)"
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr "(rpmrc provides)"
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr "(rpmlib provides)"
#: lib/depends.c:468
#: lib/depends.c:435
msgid "(db files)"
msgstr "(db files)"
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr "(db provides)"
#: lib/depends.c:494
#: lib/depends.c:461
msgid "(db package)"
msgstr "(db package)"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ÉÇÎÏÒÉÒÏ×ÁÔØ ÚÁ×ÉÓÉÍÏÓÔ(É) ÉͣΠÐÁËÅÔÁ(Ï×) [%d]\t%s -> %s\n"
#: lib/depends.c:974
#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ %s \"%s\" ÉÚ ÓÏÒÔÉÒÏ×ÁÎÎÙÈ Ó×ÑÚÅÊ.\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@ -1409,20 +1409,20 @@ msgstr ""
"========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
"ÄÅÒÅ×Ï, ÇÌÕÂÉÎÁ)\n"
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "ãéëì:\n"
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "ÏÛÉÂËÁ rpmtsOrder, ÏÓÔÁÌÏÓØ %d ÜÌÅÍÅÎÔÏ×\n"
@ -1482,37 +1482,37 @@ msgstr "=========
msgid "%10d %s\n"
msgstr "%10d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅÎ × ÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ÓÏÈÒÁÎÅÎ ËÁË %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s ÓÏÚÄÁÎ ËÁË %s\n"
@ -2139,88 +2139,83 @@ msgstr "
msgid "generate signature"
msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "ôÉÐ ÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr "%s: waitpid(%d) rc %d status %x\n"
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) ÐÒÏÐÕÓËÁÅÔÓÑ ÌÉÛÎÉÊ \"%s\".\n"
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %sÚÁÐÕÓË ÓÉÎÈÒÏÎÎÏÇÏ ÓÃÅÎÁÒÉÑ\n"
#: lib/psm.c:1172
#: lib/psm.c:985
#, 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:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
#: lib/psm.c:1608
#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, ÒÅÚÕÌØÔÁÔ ÐÒÏ×ÅÒËÉ: %d\n"
#: lib/psm.c:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ (%d), ÐÒÏÐÕÓËÁÅÔÓÑ %s\n"
#: lib/psm.c:1853
#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
@ -2252,112 +2247,116 @@ msgid "net shared "
msgstr "ÓÅÔÅ×ÏÊ "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(ÓÏÓÔ. ÎÅÔ) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(ÎÅÉÚ×. %3d) "
#: lib/query.c:279
#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ×ÌÁÄÅÌØÃÅ×/ÇÒÕÐÐ-×ÌÁÄÅÌØÃÅ× ÆÁÊÌÏ×\n"
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s: ÎÅ ÐÁËÅÔ (ÉÌÉ ÍÁÎÉÆÅÓÔ ÐÁËÅÔÁ) rpm : %s\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "ÏÛÉÂËÁ ÆÏÒÍÁÔÁ %s: %s.\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "ÎÉ ÏÄÉÎ ÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "ÆÁÊÌ %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n"
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
msgid "(added files)"
msgstr "(ÆÁÊÌÙ ÄÏÂÁ×ÌÅÎÙ)"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr "(added provide)"
@ -2483,36 +2482,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "ÐÁËÅÔ %s ÓÏÄÅÒÖÉÔ ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ %s: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ÉÓËÌÀÞÅÎ %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
@ -3023,7 +3017,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
@ -3036,7 +3030,7 @@ msgstr "
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "ÐÒÏ×eÒÑÅÔÓÑ %d ÜÌÅÍÅÎÔÏ×\n"
@ -3049,7 +3043,7 @@ msgstr "
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÏÔÐÅÞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n"
@ -3057,16 +3051,16 @@ msgstr "
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÄÉÓÐÏÚÉÃÉÑ ÆÁÊÌÏ×\n"
#: lib/verify.c:286
#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %c %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s: "
@ -3233,6 +3227,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "ôÉÐ ÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "ÉÎÉÃÉÁÌÉÚÉÒÏ×ÁÔØ ÂÁÚÕ ÄÁÎÎÙÈ"
@ -3789,6 +3788,9 @@ msgstr "
msgid "DIRECTORY"
msgstr "ëáôáìïç"
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
#~ msgid "Finding %s: %s\n"
#~ msgstr "éÄÅÔ ÐÏÉÓË %s: %s\n"

173
po/sk.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@ -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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
@ -1386,70 +1386,70 @@ msgstr " zlyhalo - "
msgid "package %s was already added, replacing with %s\n"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "chybný stav súboru: %s"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "Poskytuje:"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "nájdených %d balíkov\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstraòuje sa index skupín\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1512,37 +1512,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "riadok %d: %s"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varovanie: %s uchovaný ako %s"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "rmdir %s zlyhalo: %s"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varovanie: %s vytvorené ako %s"
@ -2218,91 +2218,86 @@ msgstr "podp
msgid "generate signature"
msgstr "vytvori» PGP/GPG podpis"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ údajov %d nie je podorovaný\n"
#: lib/psm.c:465
#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "oèakávaný zdrojový balík, nájdený binárny"
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ije sa root"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " pre súbor "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
@ -2334,116 +2329,120 @@ msgid "net shared "
msgstr "zdieµaný "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(¾iadny stav) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámy %d) "
#: lib/query.c:279
#: lib/query.c:282
#, 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:312
#: lib/query.c:315
#, 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:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "otázka na %s zlyhala\n"
#: lib/query.c:465
#: lib/query.c:468
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:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, 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:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "nájdených %d balíkov\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾iadne balíky\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Nie je mo¾né preèíta» %s: %s."
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "¾iadny z balíkov nevy¾aduje %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "¾iadny z balíkov neposkytuje %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "súbor %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, 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:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "chybné èíslo balíku: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "po¾aduje sa záznam èíslo %d\n"
#: lib/query.c:749
#: lib/query.c:752
#, 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:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "chybný stav súboru: %s"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2568,36 +2567,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je vynechaný: %s"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "vynecháva sa %s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "vynecháva sa %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
@ -3121,7 +3115,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
@ -3134,7 +3128,7 @@ msgstr "vytv
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3147,7 +3141,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3155,16 +3149,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "chýbajúce %s\n"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
@ -3330,6 +3324,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ údajov %d nie je podorovaný\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -3883,6 +3882,10 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "vynecháva sa %s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Zis»ujú sa po¾adované vlastnosti...\n"

175
po/sl.po
View File

@ -1,12 +1,12 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
# $Id: sl.po,v 1.358 2002/12/30 14:50:49 jbj Exp $
# $Id: sl.po,v 1.359 2003/01/01 20:33:32 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@ -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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1388,71 +1388,71 @@ msgstr " neuspe
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s-%s-%s je ¾e name¹èen"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "po¹kodovana zbirka podatkov %s"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s DA (db ponudbe)\n"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "ni paketov\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstranjujemo seznam skupin\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1515,37 +1515,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "vrstica %d: %s"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "opozorilo: %s shranjen kot %s"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "opozorilo: %s ustvarjen kot %s"
@ -2218,91 +2218,86 @@ msgstr "podpi
msgid "generate signature"
msgstr "izdelava podpisa PGP/GPG"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Tip podatkov %d ni podprt\n"
#: lib/psm.c:465
#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "prièakovan je bil izvorni paket, najden binarni"
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "izvorni paket ne vsebuje datoteke .spec"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skript se ni uspe¹no izvedel"
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ikone %s ni mo¾no prebrati: %s"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, 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:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " za datoteko "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspe¹en"
@ -2334,116 +2329,120 @@ msgid "net shared "
msgstr "omre¾ni "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(brez stanja) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(neznano %3d) "
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
#: lib/query.c:312
#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "poizvedba po %s je bila neuspe¹na\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, 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:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "ni paketov\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s ne vsebuje nobenega paketa\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "noben paket ne pro¾i %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspe¹no branje %s: %s."
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "noben paket ne pro¾i %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "noben paket ne potrebuje %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "noben paket ne nudi %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "datoteka %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ni del nobenega paketa\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "neveljavna ¹tevilka paketa: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "¹tevilka zapisa paketa: %d\n"
#: lib/query.c:749
#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "zapisa %d ni mo¾no prebrati\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni name¹èen\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "po¹kodovana zbirka podatkov %s"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s DA (dodane ponudbe)\n"
@ -2570,36 +2569,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je izkljuèen: %s"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "premikanje %s v %s\n"
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "premikanje %s v %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "premiokanje imenika %s v %s\n"
@ -3124,7 +3118,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
@ -3137,7 +3131,7 @@ msgstr "izklju
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3150,7 +3144,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3158,16 +3152,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "manjka %s\n"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
@ -3335,6 +3329,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Tip podatkov %d ni podprt\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -3890,6 +3889,10 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "izkljuèevanje datoteke %s%s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Iskanje %s: (z uporabo %s)...\n"

173
po/sr.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1377,69 +1377,69 @@ msgstr "PGP omanuo"
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s nije instaliran\n"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "neuspelo otvaranje %s: %s"
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "upit nad svim paketima"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1502,37 +1502,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "neuspela komanda rmdir %s: %s"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
@ -2211,90 +2211,85 @@ msgstr "potpi
msgid "generate signature"
msgstr "napravi PGP potpis"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:582
#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "upit nad paketom koji ima <datoteku>"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "neuspelo izvr¹avanje skripta"
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ne mogu da upi¹em %s"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1908
#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr ""
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
@ -2327,116 +2322,120 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
msgid "(no state) "
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr ""
#: lib/query.c:264
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(nepoznat tip)"
#: lib/query.c:279
#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket nema imena"
#: lib/query.c:312
#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket nema imena"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "upit nad %s neuspeo\n"
#: lib/query.c:465
#: lib/query.c:468
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:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nijedan paket ne aktivira %s\n"
#: lib/query.c:527
#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "upit nad svim paketima"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "nijedan paket ne aktivira %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "nijedan paket ne aktivira %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "nijedan paket ne zahteva %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "nijedan paket ne obezbeðuje %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "pogre¹an broj paketa: %s\n"
#: lib/query.c:749
#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "ne mogu da proèitam slog %d\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "neuspelo otvaranje %s: %s"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@ -2561,36 +2560,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s nije naveden u %s"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Pribavljam %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/rpmfi.c:734
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Pribavljam %s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Pribavljam %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@ -3113,7 +3107,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@ -3126,7 +3120,7 @@ msgstr "gre
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3139,7 +3133,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3147,16 +3141,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "nedostaje { posle %"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
@ -3324,6 +3318,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@ -3883,6 +3882,10 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#, fuzzy
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "Pribavljam %s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "neuspelo otvaranje %s: %s"

172
po/sv.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.1\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2002-08-19 22:26+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1347,47 +1347,47 @@ msgstr " misslyckades - "
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s är redan tillagt, ersäetter med %s\n"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr "(cachad)"
#: lib/depends.c:422
#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr "(rpmrc tillhandahåller)"
#: lib/depends.c:439
#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr "(rpmlib tillhandahåller)"
#: lib/depends.c:468
#: lib/depends.c:435
msgid "(db files)"
msgstr "(db-filer)"
#: lib/depends.c:481
#: lib/depends.c:448
msgid "(db provides)"
msgstr "(db tillhandahåller)"
#: lib/depends.c:494
#: lib/depends.c:461
msgid "(db package)"
msgstr "(db-paket)"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ignorera paketnamnsrelation(er) [%d]\t%s -> %s\n"
#: lib/depends.c:974
#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tar bort %s \"%s\" från tsort-relationer.\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== noterar alla relationer\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@ -1395,20 +1395,20 @@ msgstr ""
"========== tsort:erar paket (ordning, #föregångare, #efterföljare, träd, "
"djup)\n"
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== endast efterföljare (presentationsordning)\n"
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "LOOP:\n"
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== fortsätter med tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "rpmtsOrder misslyckades, %d element återstår\n"
@ -1468,37 +1468,37 @@ msgstr "========== Kataloger ej uttryckligen inkluderade i paketet:\n"
msgid "%10d %s\n"
msgstr "%10d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "katalog %s skapad med rättigheter %04o.\n"
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "arkivfil %s fanns inte i huvudets fillista\n"
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sparades som %s\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s misslyckades: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s misslyckades: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s skapades som %s\n"
@ -2123,88 +2123,83 @@ msgstr "signera paket (detsamma som --addsign)"
msgid "generate signature"
msgstr "generera signatur"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatyp %d stöds inte\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "källpaket förväntades, fann binärpaket\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "källpaket innehåller ingen .spec-fil\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
#: lib/psm.c:1201
#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
#: lib/psm.c:1608
#: 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:1744
#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
#: lib/psm.c:1853
#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr "Kan inte läsa om signaturhuvud\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
#: lib/psm.c:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " vid fil "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades på fil %s: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
@ -2236,112 +2231,116 @@ msgid "net shared "
msgstr "nätdelad "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(ej tillstnd) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(okänd %3d) "
#: lib/query.c:279
#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr "paketet har inte filägare-/-grupplistor\n"
#: lib/query.c:312
#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "paketet har varken filägare eller id-listor\n"
#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "misslyckades med att öppna %s: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "fråga av %s misslyckades\n"
#: lib/query.c:465
#: lib/query.c:468
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:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, 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:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "inga paket\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupp %s innehåller inga paket\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "inga paketutlösare %s\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "felformaterad %s: %s\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "inga paket matchar %s: %s\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "inget paket behöver %s\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "inget paket tillhandahåller %s\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tillhör inget paket\n"
#: lib/query.c:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "felaktigt paketnummer: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "paketpost nummer: %u\n"
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "post %u kunde inte läsas\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
msgid "(added files)"
msgstr "(lade till filer)"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr "(lade till tillhandahållande)"
@ -2466,36 +2465,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s har ouppfyllda %s: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== omflyttningar\n"
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d utesluter %s\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d flyttar om %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "hoppar över multilib-sökväg %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "hoppar över %s %s\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "flyttar %s till %s\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
@ -3007,7 +3001,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad på grund av missingok-flagga\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
@ -3020,7 +3014,7 @@ msgstr "hoppar
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "rimlighetskontrollerar %d element\n"
@ -3033,7 +3027,7 @@ msgstr "rimlighetskontrollerar %d element\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "beräknar %d filfingeravtryck\n"
@ -3041,16 +3035,16 @@ msgstr "ber
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr "beräknar filåtgärder\n"
#: lib/verify.c:286
#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr "saknas %c %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Ouppfyllda beroenden för %s: "
@ -3216,6 +3210,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatyp %d stöds inte\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "initiera databas"
@ -3764,6 +3763,9 @@ msgstr "anv
msgid "DIRECTORY"
msgstr "KATALOG"
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "hoppar över multilib-sökväg %s%s\n"
#~ msgid "Finding %s: %s\n"
#~ msgstr "Letar upp %s: %s\n"

172
po/tr.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-30 09:42-0500\n"
"POT-Creation-Date: 2003-01-01 15:20-0500\n"
"PO-Revision-Date: 2001-07-05 08:02+300\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\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:1841
#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
@ -1373,52 +1373,52 @@ msgstr " ba
msgid "package %s was already added, replacing with %s\n"
msgstr "%s zaten kurulu"
#: lib/depends.c:395
#: lib/depends.c:362
msgid "(cached)"
msgstr ""
#: lib/depends.c:422
#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
#: lib/depends.c:439
#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
#: lib/depends.c:468
#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "db dosyasý %s hatalý\n"
#: lib/depends.c:481
#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s EVET (db saðlar)\n"
#: lib/depends.c:494
#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "paket yok\n"
#: lib/depends.c:852
#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
#: lib/depends.c:974
#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n"
#. Record all relations.
#: lib/depends.c:1208
#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== tsort baðýntýlarý kaydediliyor\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1309
#: lib/depends.c:1267
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
@ -1426,20 +1426,20 @@ msgid ""
msgstr ""
"========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
#: lib/depends.c:1393
#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== sadece ardýllar (sunum sýrasý)\n"
#: lib/depends.c:1463
#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "ÇEVRÝM:\n"
#: lib/depends.c:1498
#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== tsort sürüyor ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1503
#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@ -1503,37 +1503,37 @@ msgstr "========= Pakette bulunmayan dizinler:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1245
#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
#: lib/fsm.c:1543
#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1672 lib/fsm.c:1808
#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s %s olarak kaydedildi\n"
#: lib/fsm.c:1834
#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s / %s dizin silinemedi - Dizin boþ deðil\n"
#: lib/fsm.c:1840
#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
#: lib/fsm.c:1850
#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s / %s bað kaldýrýlamadý: %s\n"
#: lib/fsm.c:1870
#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s %s olarak oluþturuldu\n"
@ -2184,89 +2184,84 @@ msgstr "paketi imzalar (mevcut imza kald
msgid "generate signature"
msgstr "imza üretir"
#: lib/psm.c:254 rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "%d veri türü desteklenmiyor\n"
#: lib/psm.c:465
#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
#: lib/psm.c:582
#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "kaynak paketi .spec dosyasý içermiyor\n"
#: lib/psm.c:918
#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
#: lib/psm.c:1001
#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:1009
#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:1172
#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:1195
#: lib/psm.c:1008
#, 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:1201
#: lib/psm.c:1014
#, 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:1608
#: 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:1744
#: lib/psm.c:1553
#, 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:1853
#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s'den baþlýk okunamadý: %s\n"
#: lib/psm.c:1899
#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanýcý %s yok - root kullanýlacak\n"
#: lib/psm.c:1908
#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanýlacak\n"
#: lib/psm.c:1956
#: lib/psm.c:1765
#, 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:1957
#: lib/psm.c:1766
msgid " on file "
msgstr " dosyada "
#: lib/psm.c:2154
#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: lib/psm.c:2157
#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s baþarýsýz\n"
@ -2298,114 +2293,118 @@ msgid "net shared "
msgstr "að paylaþýmlý "
#: lib/query.c:258
msgid "wrong color "
msgstr ""
#: lib/query.c:261
msgid "(no state) "
msgstr "(durumsuz) "
#: lib/query.c:261
#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(bilinmeyen %3d)"
#: lib/query.c:279
#: lib/query.c:282
#, 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:312
#: lib/query.c:315
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:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s açýlamadý: %s\n"
#: lib/query.c:455
#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
#: lib/query.c:465
#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
#: lib/query.c:498 lib/rpminstall.c:608
#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s tetikleyen paket yok\n"
#: lib/query.c:527
#: lib/query.c:530
msgid "no packages\n"
msgstr "paket yok\n"
#: lib/query.c:547
#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s grubu hiç paket içermiyor\n"
#: lib/query.c:557
#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "%s tetikleyen paket yok\n"
#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s okunamadý: %s.\n"
#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s tetikleyen paket yok\n"
#: lib/query.c:665
#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s gerektiren paket yok\n"
#: lib/query.c:676
#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s saðlayan paket yok\n"
#: lib/query.c:710
#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "dosya %s: %s\n"
#: lib/query.c:714
#: lib/query.c:717
#, 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:741
#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "geçersiz paket numarasý: %s\n"
#: lib/query.c:744
#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "paket kayýt numarasý: %u\n"
#: lib/query.c:749
#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "%u. kayýt okunamadý\n"
#: lib/query.c:760 lib/rpminstall.c:779
#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "%s paketi kurulu deðil\n"
#: lib/rpmal.c:695
#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "db dosyasý %s hatalý\n"
#: lib/rpmal.c:774
#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s EVET (önlem eklendi)\n"
@ -2531,36 +2530,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
#: lib/rpmfi.c:657
#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== yeniden konumlama\n"
#: lib/rpmfi.c:661
#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d %s'i dýþlýyor\n"
#: lib/rpmfi.c:664
#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
#: lib/rpmfi.c:734
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
#: lib/rpmfi.c:800
#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s dýþlanýyor\n"
#: lib/rpmfi.c:810
#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s %s'e konumlanýyor\n"
#: lib/rpmfi.c:889
#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s dizini %s de yeniden konumlanýyor\n"
@ -3079,7 +3073,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "missingok flamasýndan dolayý %s atlandý\n"
#. @innercontinue@
#: lib/transaction.c:925
#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dýþlanýyor\n"
@ -3092,7 +3086,7 @@ msgstr "%s dizini d
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1034
#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3105,7 +3099,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1117
#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3113,16 +3107,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1194
#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
#: lib/verify.c:286
#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "eksik %s"
#: lib/verify.c:395
#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
@ -3288,6 +3282,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "%d veri türü desteklenmiyor\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "veritabanýný baþlangýç durumuna getirir"
@ -3837,6 +3836,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
#~ msgid "excluding multilib path %s%s\n"
#~ msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "%s aranýyor: (%s kullanarak)...\n"

View File

@ -462,6 +462,8 @@ exit 0
* Wed Jan 1 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.49
- add rpmts/rpmte/rpmfi/rpmds element colors.
- ignore items not in our rainbow (i.e. colors are functional).
- fix: dependency helpers now rate limited at 10ms, not 1s.
- add per-arch canonical color, only x86_64 enabled for now.
* Sun Dec 29 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.46
- don't segfault with packages produced by rpm-2.93 (#80618).