diff options
-rw-r--r-- | lib/fileutil.c | 2 | ||||
-rw-r--r-- | lib/rpmlib.h | 4 | ||||
-rw-r--r-- | lib/uninstall.c | 10 | ||||
-rw-r--r-- | po/cs.po | 18 | ||||
-rw-r--r-- | po/da.po | 18 | ||||
-rw-r--r-- | po/de.po | 18 | ||||
-rw-r--r-- | po/es.po | 18 | ||||
-rw-r--r-- | po/fi.po | 18 | ||||
-rw-r--r-- | po/fr.po | 18 | ||||
-rw-r--r-- | po/gl.po | 18 | ||||
-rw-r--r-- | po/hu.po | 18 | ||||
-rw-r--r-- | po/id.po | 18 | ||||
-rw-r--r-- | po/is.po | 18 | ||||
-rw-r--r-- | po/it.po | 18 | ||||
-rw-r--r-- | po/ja.po | 20 | ||||
-rw-r--r-- | po/ko.po | 18 | ||||
-rw-r--r-- | po/no.po | 18 | ||||
-rw-r--r-- | po/pl.po | 18 | ||||
-rw-r--r-- | po/pt.po | 18 | ||||
-rw-r--r-- | po/pt_BR.po | 18 | ||||
-rw-r--r-- | po/ro.po | 18 | ||||
-rw-r--r-- | po/rpm.pot | 18 | ||||
-rw-r--r-- | po/ru.po | 18 | ||||
-rw-r--r-- | po/sk.po | 18 | ||||
-rw-r--r-- | po/sl.po | 20 | ||||
-rw-r--r-- | po/sr.po | 18 | ||||
-rw-r--r-- | po/sv.po | 18 | ||||
-rw-r--r-- | po/tr.po | 18 | ||||
-rw-r--r-- | po/uk.po | 18 |
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 { @@ -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" @@ -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 "" @@ -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" @@ -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 "" @@ -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" @@ -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 "" @@ -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 "" @@ -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 "" @@ -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 "" @@ -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 "" @@ -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 "" @@ -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 "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" @@ -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 "" @@ -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 "" @@ -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ê" @@ -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 "" @@ -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 "" @@ -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 "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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ý " @@ -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 "" |