summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/fileutil.c2
-rw-r--r--lib/rpmlib.h4
-rw-r--r--lib/uninstall.c10
-rw-r--r--po/cs.po18
-rw-r--r--po/da.po18
-rw-r--r--po/de.po18
-rw-r--r--po/es.po18
-rw-r--r--po/fi.po18
-rw-r--r--po/fr.po18
-rw-r--r--po/gl.po18
-rw-r--r--po/hu.po18
-rw-r--r--po/id.po18
-rw-r--r--po/is.po18
-rw-r--r--po/it.po18
-rw-r--r--po/ja.po20
-rw-r--r--po/ko.po18
-rw-r--r--po/no.po18
-rw-r--r--po/pl.po18
-rw-r--r--po/pt.po18
-rw-r--r--po/pt_BR.po18
-rw-r--r--po/ro.po18
-rw-r--r--po/rpm.pot18
-rw-r--r--po/ru.po18
-rw-r--r--po/sk.po18
-rw-r--r--po/sl.po20
-rw-r--r--po/sr.po18
-rw-r--r--po/sv.po18
-rw-r--r--po/tr.po18
-rw-r--r--po/uk.po18
29 files changed, 249 insertions, 239 deletions
diff --git a/lib/fileutil.c b/lib/fileutil.c
index 7e0b6caad..69d56892e 100644
--- a/lib/fileutil.c
+++ b/lib/fileutil.c
@@ -14,7 +14,7 @@ static struct {
#define RPMSYSCALL_RMDIR 1
{ "mv", -2 },
#define RPMSYSCALL_MV 2
- { "symlink", 2 }
+ { "symlink", 2 },
#define RPMSYSCALL_SYMLINK 3
{ "S_ISLNK", 1 }
#define RPMSYSCALL_ISLNK 4
diff --git a/lib/rpmlib.h b/lib/rpmlib.h
index a42246f1e..b9b1a649f 100644
--- a/lib/rpmlib.h
+++ b/lib/rpmlib.h
@@ -71,6 +71,7 @@ extern const struct headerSprintfExtension rpmHeaderFormats[];
#define RPMTAG_VERSION 1001
#define RPMTAG_RELEASE 1002
#define RPMTAG_EPOCH 1003
+#define RPMTAG_SERIAL RPMTAG_EPOCH /* backward comaptibility */
#define RPMTAG_SUMMARY 1004
#define RPMTAG_DESCRIPTION 1005
#define RPMTAG_BUILDTIME 1006
@@ -82,6 +83,7 @@ extern const struct headerSprintfExtension rpmHeaderFormats[];
#define RPMTAG_GIF 1012
#define RPMTAG_XPM 1013
#define RPMTAG_LICENSE 1014
+#define RPMTAG_COPYRIGHT RPMTAG_LICENSE /* backward comaptibility */
#define RPMTAG_PACKAGER 1015
#define RPMTAG_GROUP 1016
#define RPMTAG_CHANGELOG 1017 /* internal */
@@ -115,6 +117,7 @@ extern const struct headerSprintfExtension rpmHeaderFormats[];
#define RPMTAG_FILEVERIFYFLAGS 1045
#define RPMTAG_ARCHIVESIZE 1046
#define RPMTAG_PROVIDENAME 1047
+#define RPMTAG_PROVIDES RPMTAG_PROVIDENAME /* backward comaptibility */
#define RPMTAG_REQUIREFLAGS 1048
#define RPMTAG_REQUIRENAME 1049
#define RPMTAG_REQUIREVERSION 1050
@@ -149,6 +152,7 @@ extern const struct headerSprintfExtension rpmHeaderFormats[];
#define RPMTAG_POSTUNPROG 1088
#define RPMTAG_BUILDARCHS 1089
#define RPMTAG_OBSOLETENAME 1090
+#define RPMTAG_OBSOLETES RPMTAG_OBSOLETENAME /* backward comaptibility */
#define RPMTAG_VERIFYSCRIPTPROG 1091
#define RPMTAG_TRIGGERSCRIPTPROG 1092
#define RPMTAG_DOCDIR 1093 /* internal */
diff --git a/lib/uninstall.c b/lib/uninstall.c
index 52e985fc8..cada5f0f0 100644
--- a/lib/uninstall.c
+++ b/lib/uninstall.c
@@ -33,14 +33,20 @@ static int removeFile(const char * file, unsigned int flags, short mode,
case FA_REMOVE:
if (S_ISDIR(mode)) {
+ /* XXX should permit %missingok for directories as well */
if (rmdir(file)) {
- if (errno == ENOTEMPTY)
+ switch (errno) {
+ case ENOENT: /* XXX rmdir("/") linux 2.2.x kernel hack */
+ case ENOTEMPTY:
rpmError(RPMERR_RMDIR,
_("cannot remove %s - directory not empty"),
file);
- else
+ break;
+ default:
rpmError(RPMERR_RMDIR, _("rmdir of %s failed: %s"),
file, strerror(errno));
+ break;
+ }
rc = 1;
}
} else {
diff --git a/po/cs.po b/po/cs.po
index b92a48693..c3f737195 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"PO-Revision-Date: 1998-10-10 10:10+0200\n"
"Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n"
"Language-Team: Czech <pavelm@terminal.cz>\n"
@@ -2718,7 +2718,7 @@ msgstr "na konci výrazu se oèekávala |"
msgid "(unknown type)"
msgstr "(neznámý typ)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "soubor %s: %s\n"
@@ -3416,7 +3416,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "chyba pøi hledání balíèku %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "nelze èíst hlavièku u %d pro vyhledání"
@@ -3897,31 +3897,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "%s nelze odstranit - adresáø není prázdný"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "neúspìch rmdir %s: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s nelze odstranit: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr "odstraní se soubory test = %d\n"
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "skript nelze spustit"
diff --git a/po/da.po b/po/da.po
index 5193a3ee5..bdf419188 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
@@ -2563,7 +2563,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3224,7 +3224,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3696,31 +3696,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 296a59612..783580151 100644
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 2.5.2\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2818,7 +2818,7 @@ msgid "(unknown type)"
msgstr "(unbekannter Typ)"
# , c-format
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -3525,7 +3525,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "Fehler beim Suchen nach Paket %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
@@ -4022,31 +4022,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "Entfernen von %s fehlgeschlagen: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "öffnen von %s fehlgeschlagen: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "Ausführung des Skripts fehlgeschlagen"
diff --git a/po/es.po b/po/es.po
index d07d1e030..4f8d1dee1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index be009edb1..ed3d1f544 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@@ -2752,7 +2752,7 @@ msgstr "odotin '}'-merkkiä ilmauksen lopussa"
msgid "(unknown type)"
msgstr "(tuntematon tyyppi)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "en voinut avata %s: %s"
@@ -3448,7 +3448,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "virhe etsittäessä pakettia %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "en voi lukea headeria %d:stä päivittäessä"
@@ -3935,31 +3935,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "%s:n rmdir epäonnistui: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s:n poisto epäonnistui: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "skriptin ajo epäonnistui"
diff --git a/po/fr.po b/po/fr.po
index e6b8ed275..f1f2e3457 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
msgid ""
-msgstr "POT-Creation-Date: 2000-07-11 23:58-0400\n"
+msgstr "POT-Creation-Date: 2000-07-12 19:00-0400\n"
#: build.c:25 lib/rpminstall.c:451
#, c-format
@@ -2745,7 +2745,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3443,7 +3443,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "aucun package n'a été spécifié pour la désinstallation"
@@ -3922,31 +3922,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index d07d1e030..4f8d1dee1 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index d07d1e030..4f8d1dee1 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/id.po b/po/id.po
index d07d1e030..4f8d1dee1 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/is.po b/po/is.po
index 2a00cbae7..7ed1edfe5 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 1.0\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"PO-Revision-Date: 2000-06-16 02:20+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@@ -2543,7 +2543,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3204,7 +3204,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3676,31 +3676,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/it.po b/po/it.po
index d07d1e030..4f8d1dee1 100644
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 5f493cbba..f937ccaae 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm-3.0.4\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
@@ -127,7 +127,7 @@ msgstr "copyright ¤¬¤¢¤ê¤Þ¤»¤ó!\n"
# build root [BuildRoot]
# net share [¥Í¥Ã¥È¶¦Í­]
# reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.91 2000/07/12 04:02:37 jbj Exp $
+# $Id: ja.po,v 1.92 2000/07/12 23:19:10 jbj Exp $
#: rpm.c:178 rpmqv.c:257
#, c-format
msgid "rpm: %s\n"
@@ -2697,7 +2697,7 @@ msgstr "¼°¤Î½ª¤ê¤Ë | ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
msgid "(unknown type)"
msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s: ¥¢¥¯¥·¥ç¥ó: %s\n"
@@ -3402,7 +3402,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
@@ -3889,31 +3889,31 @@ msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s ¤Îºï½ü¤Ë¼ºÇÔ: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr "¥Õ¥¡¥¤¥ë test = %d ¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr "¥Ý¥¹¥È¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
diff --git a/po/ko.po b/po/ko.po
index d07d1e030..4f8d1dee1 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/no.po b/po/no.po
index d1c0c178f..659c2c10b 100644
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"PO-Revision-Date: 2000-06-22 21:59+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
@@ -2573,7 +2573,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3234,7 +3234,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3706,31 +3706,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 92206b635..d68bd1582 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm-3.0.2\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2693,7 +2693,7 @@ msgstr "spodziewany | na koñcu wyra¿enia"
msgid "(unknown type)"
msgstr "(nieznany typ)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr " plik: %s akcja: %s\n"
@@ -3376,7 +3376,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "b³±d szukania pakietu %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
@@ -3851,31 +3851,31 @@ msgstr "%s pominiêty z powodu flagi missingok\n"
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "skasowanie katalogu %s nie powiod³o siê"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "skasowanie %s nie powiod³o siê: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr "usunie pliki test = %d\n"
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr "uruchamianie skryptu postinstalacyjnego (je¦li istnieje)\n"
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "wykonanie skryptu nie powiod³o siê"
diff --git a/po/pt.po b/po/pt.po
index d07d1e030..4f8d1dee1 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index ad1718541..a646d525e 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -2,7 +2,7 @@
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
#
msgid ""
-msgstr "POT-Creation-Date: 2000-07-11 23:58-0400\n"
+msgstr "POT-Creation-Date: 2000-07-12 19:00-0400\n"
#: build.c:25 lib/rpminstall.c:451
#, c-format
@@ -2817,7 +2817,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3522,7 +3522,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "não foi passado pacote para instalação"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "não foi passado pacote para desinstalação"
@@ -4048,31 +4048,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index e9dbf1373..f98043d33 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2543,7 +2543,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3204,7 +3204,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3676,31 +3676,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index dd401466c..4f8d1dee1 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-12 16:21-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:190
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:92
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:40
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:43
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:51
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:136
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:204
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:401
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index b6571d73e..25c012b31 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -2697,7 +2697,7 @@ msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\""
msgid "(unknown type)"
msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr "ÆÁÊÌ : %s ÄÅÊÓÔ×ÉÅ: %s\n"
@@ -3377,7 +3377,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "ÏÛÉÂËÁ ÐÒÉ ÐÏÉÓËÅ ÐÁËÅÔÁ %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
@@ -3855,31 +3855,31 @@ msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr "ÕÄÁÌÉÔ ÆÁÊÌÙ; test = %d\n"
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postuninstall (ÅÓÌÉ ÅÓÔØ)\n"
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ"
diff --git a/po/sk.po b/po/sk.po
index 5b36bfb52..c9e9fb55b 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 2.93\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2700,7 +2700,7 @@ msgstr "| oèakávené na konci výrazu"
msgid "(unknown type)"
msgstr "(neznámy typ)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr " súbor: akcia %s: %s\n"
@@ -3383,7 +3383,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "chyba pri hµadaní balíka %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
@@ -3858,31 +3858,31 @@ msgstr "%s vynechané kvôli príznaku missingok\n"
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "rmdir %s zlyhalo: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "odstránenie %s zlyhalo: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr "budú sa odstraòova» súbory test = %d\n"
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n"
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "vykonanie skriptu zlyhalo"
diff --git a/po/sl.po b/po/sl.po
index ec5b30958..bcdfaa4d9 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.76 2000/07/12 04:02:38 jbj Exp $
+# $Id: sl.po,v 1.77 2000/07/12 23:19:11 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"PO-Revision-Date: 2000-02-17 22:25+01:00\n"
"Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -2689,7 +2689,7 @@ msgstr "| prièakovan na koncu izraza"
msgid "(unknown type)"
msgstr "(neznan tip)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr " datoteka: %s akcija: %s\n"
@@ -3366,7 +3366,7 @@ msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb"
msgid "error(%d) counting packages"
msgstr "napaka pri iskanju paketa %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "ni mo¾no prebrati glave pri %d za vpogled"
@@ -3840,31 +3840,31 @@ msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "odstranitev imenika %s neuspe¹na: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "odstranitev %s neuspe¹na: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr "datoteke bomo odstranili, test = %d\n"
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr "poganjamo poodnamestitvene skripte (èe obstajajo)\n"
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "skript se ni uspe¹no izvedel"
diff --git a/po/sr.po b/po/sr.po
index f4e14b0d6..e8b4c65a3 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
@@ -2709,7 +2709,7 @@ msgstr "| oèekivano na kraju izraza"
msgid "(unknown type)"
msgstr "(nepoznat tip)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "neuspelo otvaranje %s: %s"
@@ -3404,7 +3404,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "gre¹ka kod potrage za paketom %s\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
@@ -3891,31 +3891,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "neuspela komanda rmdir %s: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "uklanjanje %s nije uspelo: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "neuspelo izvr¹avanje skripta"
diff --git a/po/sv.po b/po/sv.po
index 148cd4bcd..08d454d38 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-0400\n"
"PO-Revision-Date: 2000-06-22 23:35+0200\n"
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -2607,7 +2607,7 @@ msgstr "| förväntades vid slutet på uttryck"
msgid "(unknown type)"
msgstr "(okänd typ)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr " fil: %s åtgärd: %s\n"
@@ -3303,7 +3303,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "fel(%d) när paket räknades"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "%s: kan inte läsa huvud vid 0x%x"
@@ -3775,31 +3775,31 @@ msgstr "%s överhoppad på grund av missingok-flagga\n"
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "kan inte ta bort %s - katalogen är inte tom"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "rmdir av %s misslyckades: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "borttagning av %s misslyckades: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr "tar bort filer test = %d\n"
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr "kör (eventuellt) postavinstallationsskript\n"
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "skriptkörning misslyckades"
diff --git a/po/tr.po b/po/tr.po
index 0709a08d4..24d4a632b 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2751,7 +2751,7 @@ msgstr "dizinin sonunda | bekleniyordu"
msgid "(unknown type)"
msgstr "(bilinmeyen tip)"
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "%s açýlamadý: %s"
@@ -3449,7 +3449,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr "%s pakedi aranýrken hata oluþtu\n"
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
@@ -3936,31 +3936,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "%s silinemedi - belirtilen dizin boþ deðil"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s"
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s"
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "betik (script) çalýþtýrýlamadý "
diff --git a/po/uk.po b/po/uk.po
index d07d1e030..4f8d1dee1 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-11 23:58-0400\n"
+"POT-Creation-Date: 2000-07-12 19:00-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"
@@ -2548,7 +2548,7 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:148 lib/uninstall.c:189
+#: lib/install.c:148 lib/uninstall.c:195
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
@@ -3209,7 +3209,7 @@ msgstr ""
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91
+#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:97
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
@@ -3681,31 +3681,31 @@ msgstr ""
msgid "executing pre-transaction syscall: \"%s\"\n"
msgstr ""
-#: lib/uninstall.c:39
+#: lib/uninstall.c:42
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:46
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:50
+#: lib/uninstall.c:56
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:135
+#: lib/uninstall.c:141
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:203
+#: lib/uninstall.c:209
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:400
+#: lib/uninstall.c:406
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""