summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/fsm.c6
-rw-r--r--lib/rpminstall.c14
-rw-r--r--po/cs.po34
-rw-r--r--po/da.po34
-rw-r--r--po/de.po34
-rw-r--r--po/en_RN.po34
-rw-r--r--po/es.po34
-rw-r--r--po/eu_ES.po34
-rw-r--r--po/fi.po34
-rw-r--r--po/fr.po34
-rw-r--r--po/gl.po34
-rw-r--r--po/hu.po34
-rw-r--r--po/id.po34
-rw-r--r--po/is.po34
-rw-r--r--po/it.po34
-rw-r--r--po/ja.po34
-rw-r--r--po/ko.po34
-rw-r--r--po/no.po34
-rw-r--r--po/pl.po34
-rw-r--r--po/pt.po34
-rw-r--r--po/pt_BR.po34
-rw-r--r--po/ro.po34
-rw-r--r--po/rpm.pot34
-rw-r--r--po/ru.po34
-rw-r--r--po/sk.po34
-rw-r--r--po/sl.po36
-rw-r--r--po/sr.po34
-rw-r--r--po/sv.po34
-rw-r--r--po/tr.po34
-rw-r--r--po/uk.po34
-rw-r--r--po/wa.po34
-rw-r--r--po/zh.po34
-rw-r--r--po/zh_CN.GB2312.po34
-rw-r--r--rpm.spec.in4
34 files changed, 545 insertions, 535 deletions
diff --git a/lib/fsm.c b/lib/fsm.c
index 0e653c541..be76dab2c 100644
--- a/lib/fsm.c
+++ b/lib/fsm.c
@@ -164,6 +164,12 @@ static int cpioStrCmp(const void * a, const void * b)
const char * afn = *(const char **)a;
const char * bfn = *(const char **)b;
+ /* XXX Some 4+ year old rpm packages have basename only in payloads. */
+#ifdef VERY_OLD_BUGGY_RPM_PACKAGES
+ if (strchr(afn, '/') == NULL)
+ bfn = strrchr(bfn, '/') + 1;
+#endif
+
/* Match rpm-4.0 payloads with ./ prefixes. */
if (afn[0] == '.' && afn[1] == '/') afn += 2;
if (bfn[0] == '.' && bfn[1] == '/') bfn += 2;
diff --git a/lib/rpminstall.c b/lib/rpminstall.c
index 16af47e7a..5cfeb3907 100644
--- a/lib/rpminstall.c
+++ b/lib/rpminstall.c
@@ -49,8 +49,8 @@ static void printHash(const unsigned long amount, const unsigned long total)
rpmcliHashesTotal = (isatty (STDOUT_FILENO) ? 44 : 50);
if (rpmcliHashesCurrent != rpmcliHashesTotal) {
- float pct = (total ? (((float) amount) / total) : 1);
- hashesNeeded = rpmcliHashesTotal * pct;
+ float pct = (total ? (((float) amount) / total) : 1.0);
+ hashesNeeded = (rpmcliHashesTotal * pct) + 0.5;
while (hashesNeeded > rpmcliHashesCurrent) {
if (isatty (STDOUT_FILENO)) {
int i;
@@ -58,7 +58,7 @@ static void printHash(const unsigned long amount, const unsigned long total)
(void) putchar ('#');
for (; i < rpmcliHashesTotal; i++)
(void) putchar (' ');
- fprintf(stdout, "(%3d%%)", (int)(100 * pct));
+ fprintf(stdout, "(%3d%%)", (int)((100 * pct) + 0.5));
for (i = 0; i < (rpmcliHashesTotal + 6); i++)
(void) putchar ('\b');
} else
@@ -77,7 +77,7 @@ static void printHash(const unsigned long amount, const unsigned long total)
pct = (rpmcliProgressTotal
? (((float) rpmcliProgressCurrent) / rpmcliProgressTotal)
: 1);
- fprintf(stdout, " [%3d%%]", (int)(100 * pct));
+ fprintf(stdout, " [%3d%%]", (int)((100 * pct) + 0.5));
}
fprintf(stdout, "\n");
}
@@ -695,7 +695,7 @@ int rpmErase(rpmts ts,
int numFailed = 0;
int stopUninstall = 0;
int numPackages = 0;
- int vsflags, ovsflags;
+ rpmVSFlags vsflags, ovsflags;
rpmps ps;
if (argv == NULL) return 0;
@@ -788,6 +788,7 @@ int rpmInstallSource(rpmts ts, const char * arg,
FD_t fd;
int rc;
+
fd = Fopen(arg, "r.ufdio");
if (fd == NULL || Ferror(fd)) {
rpmMessage(RPMMESS_ERROR, _("cannot open %s: %s\n"), arg, Fstrerror(fd));
@@ -799,8 +800,11 @@ int rpmInstallSource(rpmts ts, const char * arg,
fprintf(stdout, _("Installing %s\n"), arg);
{
+ rpmVSFlags ovsflags;
+ ovsflags = rpmtsSetVSFlags(ts, (rpmtsVSFlags(ts) | RPMVSF_NEEDPAYLOAD));
rpmRC rpmrc = rpmInstallSourcePackage(ts, fd, specFilePtr, cookie);
rc = (rpmrc == RPMRC_OK ? 0 : 1);
+ ovsflags = rpmtsSetVSFlags(ts, ovsflags);
}
if (rc != 0) {
rpmMessage(RPMMESS_ERROR, _("%s cannot be installed\n"), arg);
diff --git a/po/cs.po b/po/cs.po
index 16671a894..580ebffc0 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -1006,51 +1006,51 @@ msgstr "Zdroj èíslo %d neexistuje\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Nemohu naèíst nosource %s: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Chyba pøi parsování %%setup: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "øádek %d: ©patný parametr v %%setup: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "øádek %d: ©patná volba v %%setup %s: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "øádek %d: K %%patch -b potøebuji parametr: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "øádek %d: K %%patch -z potøebuji parametr: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "øádek %d: K %%patch -p potøebuji parametr: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "øádek %d: ©patný parametr pro %%patch -p: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "Pøíli¹ mnoho patchù!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "øádek %d: ©patný parametr pro %%patch: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "øádek %d: druhý %%prep\n"
@@ -2230,7 +2230,7 @@ msgid "can't query %s: %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevøení %s selhalo: %s\n"
@@ -2543,7 +2543,7 @@ msgstr "chyba pøi vytváøení doèasného souboru %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "neinstalován "
@@ -2553,7 +2553,7 @@ msgstr "neinstalován "
msgid "found %d source and %d binary packages\n"
msgstr "vytvoøení zdrojového a binárního balíèku z <tar_soubor>"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2578,17 +2578,17 @@ msgstr "nemohu vytvoøit %s: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, fuzzy, c-format
msgid "Installing %s\n"
msgstr "øádek: %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/da.po b/po/da.po
index b160adb17..fd4ad55a5 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -1003,51 +1003,51 @@ msgstr "Ingen kilde nummer %d\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Kunne ikke hente nosource %s: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Fejl ved tolking af %%setup: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "linie %d: Ugyldigt parameter til %%setup %c: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "linie %d: Ugyldigt '%%setup'-tilvalg %s: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "linie %d: Kræver parameter til %%patch -b: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "linie %d: Kræver parameter til %%patch -z: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "linie %d: Kræver parameter til %%patch -p: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "linie %d: Ugyldigt parameter til %%patch -p: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "For mange lapper (patches)!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "linie %d: Ugyldigt parameter til %%patch: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "linie %d: anden %%prep\n"
@@ -2245,7 +2245,7 @@ msgid "can't query %s: %s\n"
msgstr "kunne ikke forespørge %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
@@ -2558,7 +2558,7 @@ msgstr "fejl ved læsning fra filen %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s kræver en nyere version af RPM\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kunne ikke installeres\n"
@@ -2568,7 +2568,7 @@ msgstr "%s kunne ikke installeres\n"
msgid "found %d source and %d binary packages\n"
msgstr "fandt %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2592,17 +2592,17 @@ msgstr "kunne ikke åbne fil %s: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" angiver flere pakker\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/de.po b/po/de.po
index e28d8a9a1..f99d3caa2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
@@ -1108,58 +1108,58 @@ msgstr "(keine Zahl)"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
# , c-format
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
# , c-format
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2407,7 +2407,7 @@ msgid "can't query %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 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"
@@ -2726,7 +2726,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "Fehler: %s kann nicht installiert werden\n"
@@ -2736,7 +2736,7 @@ msgstr "Fehler: %s kann nicht installiert werden\n"
msgid "found %d source and %d binary packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2761,17 +2761,17 @@ msgstr "kann Datei %s nicht öffnen: "
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" bezeichnet mehrere Pakete\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Installiere %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/en_RN.po b/po/en_RN.po
index dba322965..8fd806f94 100644
--- a/po/en_RN.po
+++ b/po/en_RN.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/es.po b/po/es.po
index dba322965..8fd806f94 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/eu_ES.po b/po/eu_ES.po
index dba322965..8fd806f94 100644
--- a/po/eu_ES.po
+++ b/po/eu_ES.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 4116a9141..83b6b7449 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@@ -1014,51 +1014,51 @@ msgstr "(ei ole luku)"
msgid "Couldn't download nosource %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2285,7 +2285,7 @@ msgid "can't query %s: %s\n"
msgstr "virhe: en voi avata %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 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"
@@ -2596,7 +2596,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "virhe: %s ei voida asentaa\n"
@@ -2606,7 +2606,7 @@ msgstr "virhe: %s ei voida asentaa\n"
msgid "found %d source and %d binary packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2631,17 +2631,17 @@ msgstr "en voinut avata tiedostoa %s: "
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" määrittää useita paketteja\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "virhe: en voi avata %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Asennan: %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 89898b5a2..070c001cb 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1038,51 +1038,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2327,7 +2327,7 @@ msgid "can't query %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a chou.\n"
@@ -2638,7 +2638,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2648,7 +2648,7 @@ msgstr "aucun package n'a t spcifi pour l'installation"
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2672,17 +2672,17 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 34b7a9913..5701b2068 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -982,51 +982,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2156,7 +2156,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2461,7 +2461,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2471,7 +2471,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2494,17 +2494,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index dba322965..8fd806f94 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/id.po b/po/id.po
index dba322965..8fd806f94 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/is.po b/po/is.po
index be771d7a4..08cb720e4 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -989,51 +989,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "lína %d: Ógilt viðfang við %%setup: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2182,7 +2182,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2488,7 +2488,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2498,7 +2498,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2522,17 +2522,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/it.po b/po/it.po
index dba322965..8fd806f94 100644
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index a331ce941..4f7a5d084 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
@@ -1033,52 +1033,52 @@ msgstr "¥½¡¼¥¹ÈÖ¹æ %d ¤Ï¤¢¤ê¤Þ¤»¤ó"
msgid "Couldn't download nosource %s: %s\n"
msgstr "nosource %s ¤ò¥À¥¦¥ó¥í¡¼¥É¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, fuzzy, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "%%setup ¤Î¹½Ê¸²òÀÏ¥¨¥é¡¼: %s"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "%d ¹ÔÌÜ: %%setup %c ¤Ø¤ÎÉÔÀµ¤Ê°ú¿ô: %s"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %%setup ¥ª¥×¥·¥ç¥ó %s: %s"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "%d ¹ÔÌÜ: %%patch -b ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "%d ¹ÔÌÜ: %%patch -z ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "%d ¹ÔÌÜ: %%patch -p ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %%patch -p ¤Ø¤Î°ú¿ô: %s"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
#, fuzzy
msgid "Too many patches!\n"
msgstr "¥Ñ¥Ã¥Á¤¬Â¿¤¹¤®¤Þ¤¹"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "%d ¹ÔÌÜ: %%patch ¤Ø¤ÎÉÔÀµ¤Ê°ú¿ô: %s"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, fuzzy, c-format
msgid "line %d: second %%prep\n"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%prep"
@@ -2323,7 +2323,7 @@ msgid "can't query %s: %s\n"
msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
@@ -2638,7 +2638,7 @@ msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
msgid "file %s requires a newer version of RPM\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
@@ -2648,7 +2648,7 @@ msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
msgid "found %d source and %d binary packages\n"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2672,17 +2672,17 @@ msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index aa6f37509..10e53f1bf 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -996,51 +996,51 @@ msgstr "¼Ò½º ¹øÈ£ %d°¡ ¾ø½À´Ï´Ù\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "nosource %s(À»)¸¦ ´Ù¿î·ÎµåÇÒ ¼ö ¾øÀ½: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "%%setup¿¡¼­ ¿À·ù ¹ß»ý: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "%d ¹ø° Çà: %%setup¿¡ À߸øµÈ Àμö°¡ ÀÖ½À´Ï´Ù: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "%d ¹ø° Çà: %%setup¿¡ À߸øµÈ %s ¿É¼Ç: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "%d ¹ø° Çà: %%patch -b ¿¡ Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "%d ¹ø° Çà: %%patch -z ¿¡ Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "%d ¹ø° Çà: %%patch -p ¿¡ Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "%d ¹ø° Çà: %%patch -p ¿¡ À߸øµÈ Àμö°¡ ÀÖ½À´Ï´Ù: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "ÆÐÄ¡°¡ ³Ê¹« ¸¹½À´Ï´Ù!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "%d ¹ø° Çà: %%patch¿¡ À߸øµÈ Àμö°¡ ÀÖ½À´Ï´Ù: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "%d ¹ø° Çà: µÎ¹ø° %%prep\n"
@@ -2219,7 +2219,7 @@ msgid "can't query %s: %s\n"
msgstr "%s(À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
@@ -2532,7 +2532,7 @@ msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "%s ÆÄÀÏÀº ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
@@ -2542,7 +2542,7 @@ msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
msgid "found %d source and %d binary packages\n"
msgstr "%dÀÇ ¼Ò½º¿Í %dÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2566,17 +2566,17 @@ msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "%s(À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/no.po b/po/no.po
index 71538e8f3..b324177f6 100644
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -1000,51 +1000,51 @@ msgstr "Ingen kildenummer %d\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Kunne ikke laste ned ikke-kilde %s: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Feil under lesing av %%setup: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "linje %d: Ugyldig argument til %%setup: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "linje %d: Ugyldig %%setup flagg %s: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "linje %d: Trenger argument til %%patch -b: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "linje %d: Trenger argument til %%patch -z: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "linje %d: Trenger argument til %%patch -p: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "linje %d: Ugyldig argument til %%patch -p: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "For mange patcher!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "linje %d: Ugyldig argument til %%patch: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "linje %d: %%prep for andre gang\n"
@@ -2209,7 +2209,7 @@ msgid "can't query %s: %s\n"
msgstr "kan ikke spørre på %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 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"
@@ -2517,7 +2517,7 @@ msgstr "feil under lesing fra fil %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "fil %s trenger en nyere versjon av RPM\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2527,7 +2527,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr "fant %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2551,17 +2551,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" spesifiserer flere pakker\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åpne %s: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 7fbd4d027..45f2b1b62 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
@@ -1024,52 +1024,52 @@ msgstr "Brak ¼ród³a numer %d"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, fuzzy, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "B³±d przetwarzania %%setup: %s"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "linia %d: B³êdny argument dla %%setup %c: %s"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "linia %d: B³êdna opcja %%setup %s: %s"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "linia %d: Wymagany argument dla %%patch -b: %s"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "linia %d: Wymagany argument dla %%patch -z: %s"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "linia %d: Wymagany argument dla %%patch -p: %s"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "linia %d: B³êdny argument dla %%patch -p: %s"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
#, fuzzy
msgid "Too many patches!\n"
msgstr "Zbyt wiele ³at!"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "linia %d: B³êdny argument dla %%patch: %s"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, fuzzy, c-format
msgid "line %d: second %%prep\n"
msgstr "linia %d: druga sekcja %%prep"
@@ -2287,7 +2287,7 @@ msgid "can't query %s: %s\n"
msgstr "nie mo¿na odwi±zaæ %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 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"
@@ -2599,7 +2599,7 @@ msgstr "b³±d czytania z pliku %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "plik %s wymaga nowszej wersji RPM\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie mo¿e byæ zainstalowany\n"
@@ -2609,7 +2609,7 @@ msgstr "%s nie mo¿e byæ zainstalowany\n"
msgid "found %d source and %d binary packages\n"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2633,17 +2633,17 @@ msgstr "nie mo¿na otworzyæ pliku %s: %s"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" okre¶la wiele pakietów\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Instalacja %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/pt.po b/po/pt.po
index 2d9918a0e..ff0f10706 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -1006,51 +1006,51 @@ msgstr "Sem número de fonte %d\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Não consigo transferir o nosource %s: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Erro ao analisar o %%setup: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "linha %d: Argumento inválido para %%setup: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "linha %d: Opção inválida do %%setup %s: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "linha %d: Necessário o argumento para o %%patch -b: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "linha %d: Necessário o argumento para o %%patch -z: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "linha %d: Necessário o argumento para o %%patch -z: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "linha %d: argumento inválido para o %%patch -p: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "Demasiadas 'patches'!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "linha %d: Argumento inválido para o %%patch: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "linha %d: segundo %%prep\n"
@@ -2230,7 +2230,7 @@ msgid "can't query %s: %s\n"
msgstr "não consigo pesquisar o %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 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"
@@ -2543,7 +2543,7 @@ msgstr "erro ao ler do ficheiros %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "o %s precisa duma versão mais recente do RPM\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "o %s não pode ser instalado\n"
@@ -2553,7 +2553,7 @@ msgstr "o %s não pode ser instalado\n"
msgid "found %d source and %d binary packages\n"
msgstr "encontrados %d pacotes com código-fonte e %d binários\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2577,17 +2577,17 @@ msgstr "não consigo aceder ao ficheiro %s: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "o \"%s\" especifica vários pacotes\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "não consigo aceder ao %s: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "A instalar o %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 99d36d4b7..b44a0ecf0 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
#: build.c:40
#, fuzzy
@@ -1117,58 +1117,58 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
# , c-format
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "No consegui abrir: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
# , c-format
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "No consegui abrir: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2417,7 +2417,7 @@ msgid "can't query %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construo falhou.\n"
@@ -2770,7 +2770,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "no foi passado pacote para instalao"
@@ -2780,7 +2780,7 @@ msgstr "no foi passado pacote para instalao"
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2807,17 +2807,17 @@ msgid "\"%s\" specifies multiple packages\n"
msgstr ""
# , c-format
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index bf09fadf3..5769e8f07 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@@ -982,51 +982,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2156,7 +2156,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2461,7 +2461,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2471,7 +2471,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2494,17 +2494,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index 3859fdef6..c536f4c13 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -988,51 +988,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2162,7 +2162,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2467,7 +2467,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2477,7 +2477,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2500,17 +2500,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 5029aa517..7e8fb9742 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: 2002-04-09 16:44-0400\n"
"Last-Translator: Eugene Kanter, <eugene@bcl.bz>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -1008,51 +1008,51 @@ msgstr "îÅÔ ÉÓÈÏÄÎÉËÁ ÎÏÍÅÒ %d\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "îÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ nosource %s: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "ïÛÉÂËÁ ÁÎÁÌÉÚÁ %%setup: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%setup %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÐÁÒÁÍÅÔÒ %%setup %s: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -b ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -z ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -p ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch -p: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÚÁÐÌÁÔ!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "ÓÔÒÏËÁ %d: ×ÔÏÒÏÊ %%prep\n"
@@ -2233,7 +2233,7 @@ msgid "can't query %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
@@ -2545,7 +2545,7 @@ msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
@@ -2555,7 +2555,7 @@ msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
msgid "found %d source and %d binary packages\n"
msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2579,17 +2579,17 @@ msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index 3e3c9860a..43252963a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@@ -1021,52 +1021,52 @@ msgstr "Neexistuje zdroj èíslo %d"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Nebolo mo¾né prenies» nie-zdroj %s: %s"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, fuzzy, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Chyba pri analýze %%setup: %s"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "riadok %d: Chybný argument pre %%setup %c: %s"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "riadok %d: Chybná voµba pre %%setup %s: %s"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "riadok %d: %%patch -b potrebuje argument: %s"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "riadok %d: %%patch -z potrebuje argument: %s"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "riadok %d: %%patch -p potrebuje argument: %s"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "riadok %d: Chybný argument pre %%patch -p: %s"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
#, fuzzy
msgid "Too many patches!\n"
msgstr "Priveµa záplat!"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "riadok %d: Chybný argument pre %%patch: %s"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, fuzzy, c-format
msgid "line %d: second %%prep\n"
msgstr "riadok %d: druhý %%prep"
@@ -2285,7 +2285,7 @@ msgid "can't query %s: %s\n"
msgstr "zmazanie %s zlyhalo: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
@@ -2597,7 +2597,7 @@ msgstr "chyba pri vytváraní doèasného súboru %s"
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie je mo¾né nain¹talova»\n"
@@ -2607,7 +2607,7 @@ msgstr "%s nie je mo¾né nain¹talova»\n"
msgid "found %d source and %d binary packages\n"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2631,17 +2631,17 @@ msgstr "nie je mo¾né otvori» súbor %s: %s"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie je mo¾né otvori» %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "In¹taluje sa %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index 00498c34f..468efb9da 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,12 +1,12 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
-# $Id: sl.po,v 1.307 2002/08/07 13:48:25 jbj Exp $
+# $Id: sl.po,v 1.308 2002/08/07 21:57:29 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -1020,52 +1020,52 @@ msgstr "Izvorna koda ¹t. %d manjka"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Ni mo¾no prenesti nosource %s: %s"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, fuzzy, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Napaka pri razèlembi %%setup: %s"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "vrstica %d: Nepravilen argument za %%setup %c: %s"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "vrstica %d: Nepravilna izbira %%setup %s: %s"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "vrstica %d: Manjka argument za %%patch -b: %s"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "vrstica %d: Manjka argument za %%patch -z: %s"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "vrstica %d: Manjka argument za %%patch -p: %s"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "vrstica %d: Nepravilen argument za %%patch -p: %s"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
#, fuzzy
msgid "Too many patches!\n"
msgstr "Preveè popravkov!"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "vrstica %d: Nepravilen argument za %%patch: %s"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, fuzzy, c-format
msgid "line %d: second %%prep\n"
msgstr "vrstica %d: drugi %%prep"
@@ -2285,7 +2285,7 @@ msgid "can't query %s: %s\n"
msgstr "ni mo¾no poizvedeti o %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 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"
@@ -2599,7 +2599,7 @@ msgstr "napaka pri branju iz datoteke %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ni mo¾no namestiti\n"
@@ -2609,7 +2609,7 @@ msgstr "%s ni mo¾no namestiti\n"
msgid "found %d source and %d binary packages\n"
msgstr "najdeno %d izvornih in %d binarnih paketov\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2633,17 +2633,17 @@ msgstr "ni mo¾no odpreti datoteke %s: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" doloèa veè paketov\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ni mo¾no odpreti %s: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Name¹èanje %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 784761d6a..df05c23d2 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
@@ -1007,51 +1007,51 @@ msgstr "(nije broj)"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, fuzzy, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, fuzzy, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, fuzzy, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, fuzzy, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2276,7 +2276,7 @@ msgid "can't query %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
@@ -2587,7 +2587,7 @@ msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
@@ -2597,7 +2597,7 @@ msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
msgid "found %d source and %d binary packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2622,17 +2622,17 @@ msgstr "Ne mogu da otvorim datoteku %s: "
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" odreðuje vi¹e paketa\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Instaliram %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 1c8597051..4d039c7e7 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.1\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: 2002-07-11 22:49+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -997,51 +997,51 @@ msgstr "Inget källkodsnummer %d\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Kunde inte hämta nosource %s: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Fel i tolkning av %%setup: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "rad %d: Felaktigt argument till %%setup: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "rad %d: Felaktig %%setup-flagga %s: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "rad %d: Behöver argument till %%patch -b: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "rad %d: Behöver argument till %%patch -z: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "rad %d: Behöver argument till %%patch -p: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "rad %d: Felaktigt argument till %%patch -p: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "För många patchar!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "rad %d: Felaktigt argument till %%patch: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "rad %d: andra %%prep\n"
@@ -2196,7 +2196,7 @@ msgid "can't query %s: %s\n"
msgstr "kan inte fråga %s: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 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"
@@ -2506,7 +2506,7 @@ msgstr "fel vid läsning från fil %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s behöver en nyare version av RPM\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kan inte installeras\n"
@@ -2516,7 +2516,7 @@ msgstr "%s kan inte installeras\n"
msgid "found %d source and %d binary packages\n"
msgstr "hittade %d käll- och %d binärpaket\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr "Ouppfyllda beroenden:\n"
@@ -2539,17 +2539,17 @@ msgstr "kan inte öppna filen %s: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" anger flera paket\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan inte öppna %s: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "Installerar %s\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 3e358805b..d201258e0 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\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"
@@ -1011,51 +1011,51 @@ msgstr "%d kaynak kodu numarasý yok\n"
msgid "Couldn't download nosource %s: %s\n"
msgstr "Kaynak kodu olmayan %s sunucudan indirilemedi: %s\n"
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "%%setup çözümlenirken hata: %s\n"
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "satýr %d: %%setup argumaný hatalý: %s\n"
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "satýr %d: %%setup seçeneði %s hatalý: %s\n"
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "satýr %d: %%patch -b'ye argüman gerekli: %s\n"
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "satýr %d: %%patch -z'ye argüman gerekli: %s\n"
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "satýr %d: %%patch -p'ye argüman gerekli: %s\n"
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "satýr %d: %%patch -p'nin argümaný hatalý: %s\n"
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "Yamalar çok fazla!\n"
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "satýr %d: %%patch argüman hatasý: %s\n"
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "satýr %d: %%prep saniye\n"
@@ -2248,7 +2248,7 @@ msgid "can't query %s: %s\n"
msgstr "%s sorgulanamýyor: %s\n"
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s açýlamadý: %s\n"
@@ -2560,7 +2560,7 @@ msgstr "%s dosyasýndan okuma hatalý\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n"
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s yüklenemedi\n"
@@ -2570,7 +2570,7 @@ msgstr "%s yüklenemedi\n"
msgid "found %d source and %d binary packages\n"
msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
@@ -2594,17 +2594,17 @@ msgstr "%s dosyasý açýlamadý: %s\n"
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr "%s kuruluyor\n"
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index dba322965..8fd806f94 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/wa.po b/po/wa.po
index dba322965..8fd806f94 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/zh.po b/po/zh.po
index dba322965..8fd806f94 100644
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po
index dba322965..8fd806f94 100644
--- a/po/zh_CN.GB2312.po
+++ b/po/zh_CN.GB2312.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-07 09:44-0400\n"
+"POT-Creation-Date: 2002-08-07 12:09-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -987,51 +987,51 @@ msgstr ""
msgid "Couldn't download nosource %s: %s\n"
msgstr ""
-#: build/parsePrep.c:304
+#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:319
+#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr ""
-#: build/parsePrep.c:337
+#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr ""
-#: build/parsePrep.c:479
+#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr ""
-#: build/parsePrep.c:488
+#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr ""
-#: build/parsePrep.c:500
+#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:507
+#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr ""
-#: build/parsePrep.c:514
+#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr ""
-#: build/parsePrep.c:518
+#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr ""
-#: build/parsePrep.c:554
+#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr ""
@@ -2161,7 +2161,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:420 lib/rpminstall.c:551
-#: lib/rpminstall.c:950 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/rpminstall.c:954 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2466,7 +2466,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:543 lib/rpminstall.c:806 tools/rpmgraph.c:156
+#: lib/rpminstall.c:543 lib/rpminstall.c:810 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@@ -2476,7 +2476,7 @@ msgstr ""
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1152
+#: lib/rpminstall.c:593 lib/rpminstall.c:759 lib/rpminstall.c:1156
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
@@ -2499,17 +2499,17 @@ msgstr ""
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:793
+#: lib/rpminstall.c:794
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:799
+#: lib/rpminstall.c:800
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1146
+#: lib/rpminstall.c:1150
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
diff --git a/rpm.spec.in b/rpm.spec.in
index 52b71ca86..323fbc5ad 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -17,7 +17,7 @@ Name: rpm
%define version @VERSION@
Version: %{version}
%{expand: %%define rpm_version %{version}}
-Release: 0.74
+Release: 0.75
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
Copyright: GPL
@@ -517,7 +517,7 @@ fi
%{__prefix}/include/popt.h
%changelog
-* Wed Aug 7 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.74
+* Wed Aug 7 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.75
- fix: src.rpm installs need fd pos at payload.
* Tue Aug 6 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.73