summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/db3.c2
-rw-r--r--lib/install.c13
-rw-r--r--lib/rpmdb.c8
-rw-r--r--perl/Makefile.PL4
-rw-r--r--po/cs.po176
-rw-r--r--po/de.po176
-rw-r--r--po/fi.po176
-rw-r--r--po/fr.po176
-rw-r--r--po/ja.po178
-rw-r--r--po/pl.po176
-rw-r--r--po/pt_BR.po176
-rw-r--r--po/rpm.pot176
-rw-r--r--po/ru.po176
-rw-r--r--po/sk.po176
-rw-r--r--po/sl.po178
-rw-r--r--po/sr.po176
-rw-r--r--po/sv.po178
-rw-r--r--po/tr.po176
-rw-r--r--rpm.spec5
19 files changed, 1254 insertions, 1248 deletions
diff --git a/lib/db3.c b/lib/db3.c
index 3279c516f..612fffd7c 100644
--- a/lib/db3.c
+++ b/lib/db3.c
@@ -1036,7 +1036,7 @@ static int db3open(rpmdb rpmdb, int rpmtag, dbiIndex * dbip)
nb = strlen(dbhome);
if (dbfile) nb += 1 + strlen(dbfile);
- dbfullpath = t = alloca(nb);
+ dbfullpath = t = alloca(nb + 1);
t = stpcpy(t, dbhome);
if (dbfile)
diff --git a/lib/install.c b/lib/install.c
index 90f6dad71..2a4022c6e 100644
--- a/lib/install.c
+++ b/lib/install.c
@@ -54,7 +54,10 @@ static struct tagMacro {
static int rpmInstallLoadMacros(Header h)
{
struct tagMacro *tagm;
- const char *body;
+ union {
+ const char * ptr;
+ int_32 i32;
+ } body;
char numbuf[32];
int type;
@@ -63,11 +66,11 @@ static int rpmInstallLoadMacros(Header h)
continue;
switch (type) {
case RPM_INT32_TYPE:
- sprintf(numbuf, "%d", ((int_32)body));
- body = numbuf;
- /*@fallthrough@*/
+ sprintf(numbuf, "%d", body.i32);
+ addMacro(NULL, tagm->macroname, NULL, numbuf, -1);
+ break;
case RPM_STRING_TYPE:
- addMacro(NULL, tagm->macroname, NULL, body, -1);
+ addMacro(NULL, tagm->macroname, NULL, body.ptr, -1);
break;
}
}
diff --git a/lib/rpmdb.c b/lib/rpmdb.c
index 967a5f2f5..328b4cf7d 100644
--- a/lib/rpmdb.c
+++ b/lib/rpmdb.c
@@ -156,7 +156,7 @@ fprintf(stderr, "--- RMW %s (%s:%u)\n", tagName(dbi->dbi_rpmtag), f, l);
inline int dbiDel(dbiIndex dbi, const void * keyp, size_t keylen, unsigned int flags) {
if (_debug < 0 || dbi->dbi_debug)
-fprintf(stderr, " %s Del key (%p,%d) %s\n", tagName(dbi->dbi_rpmtag), keyp, keylen, (dbi->dbi_rpmtag != RPMDBI_PACKAGES ? keyp : ""));
+fprintf(stderr, " %s Del key (%p,%ld) %s\n", tagName(dbi->dbi_rpmtag), keyp, (long)keylen, (dbi->dbi_rpmtag != RPMDBI_PACKAGES ? (char *)keyp : ""));
return (*dbi->dbi_vec->cdel) (dbi, keyp, keylen, flags);
}
@@ -167,8 +167,8 @@ inline int dbiGet(dbiIndex dbi, void ** keypp, size_t * keylenp,
if (_debug < 0 || dbi->dbi_debug) {
int dataval = 0xdeadbeef;
if (rc == 0 && datapp && *datapp) memcpy(&dataval, *datapp, sizeof(dataval));
-fprintf(stderr, " %s Get key (%p,%d) data (%p,%d) %s %x\n", tagName(dbi->dbi_rpmtag), *keypp, *keylenp, *datapp, *datalenp,
-(dbi->dbi_rpmtag != RPMDBI_PACKAGES ? *keypp : ""), dataval);
+fprintf(stderr, " %s Get key (%p,%ld) data (%p,%ld) %s %x\n", tagName(dbi->dbi_rpmtag), *keypp, (long)*keylenp, *datapp, (long)*datalenp,
+(dbi->dbi_rpmtag != RPMDBI_PACKAGES ? (char *)*keypp : ""), dataval);
}
return rc;
}
@@ -178,7 +178,7 @@ inline int dbiPut(dbiIndex dbi, const void * keyp, size_t keylen,
if (_debug < 0 || dbi->dbi_debug) {
int dataval = 0xdeadbeef;
if (datap) memcpy(&dataval, datap, sizeof(dataval));
-fprintf(stderr, " %s Put key (%p,%d) data (%p,%d) %s %x\n", tagName(dbi->dbi_rpmtag), keyp, keylen, datap, datalen, (dbi->dbi_rpmtag != RPMDBI_PACKAGES ? keyp : ""), dataval);
+fprintf(stderr, " %s Put key (%p,%ld) data (%p,%ld) %s %x\n", tagName(dbi->dbi_rpmtag), keyp, (long)keylen, datap, (long)datalen, (dbi->dbi_rpmtag != RPMDBI_PACKAGES ? (char *)keyp : ""), dataval);
}
return (*dbi->dbi_vec->cput) (dbi, keyp, keylen, datap, datalen, flags);
}
diff --git a/perl/Makefile.PL b/perl/Makefile.PL
index 87a87ac05..c3613d307 100644
--- a/perl/Makefile.PL
+++ b/perl/Makefile.PL
@@ -8,11 +8,11 @@ WriteMakefile(
'OBJECT' => 'rpm.o constant.o',
'VERSION_FROM' => 'rpm.pm', # finds $VERSION
'MAKEFILE'=> 'PMakefile',
- 'LIBS' => [' -L/usr/local/lib -lpthread -lz -lbz2'], # e.g., '-lm'
+ 'LIBS' => [' -L/usr/local/lib -lz -lbz2'], # e.g., '-lm'
'CCFLAGS' => '-g -O2 -D_GNU_SOURCE -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wno-char-subscripts',
'OPTIMIZE'=> '-g',
'DEFINE' => '-Dbool=char -DHAS_BOOL',
- 'INC' => ' -I../build -I../lib -I../popt -I/usr/include/rpm',
+ 'INC' => ' -I/usr/local/include -I../build -I../lib -I../popt -I/usr/include/rpm',
'depend' => { 'rpm.c' => 'transaction.xs header.xs db.xs' },
);
diff --git a/po/cs.po b/po/cs.po
index 0c6aedc75..64d444e54 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-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -991,8 +991,8 @@ msgid "rebuild database from existing database"
msgstr "přestavit databázi z existující databáze"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "specifikovat lze jen jeden hlavní režim"
@@ -1015,7 +1015,7 @@ msgstr ""
"--tarbuild (-t) vyžaduje jednu z voleb a,b,i,c,p,l jako svůj výhradní "
"argument"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "v daném okamžiku lze provést jeden typ dotazu či ověření"
@@ -1023,131 +1023,131 @@ msgstr "v daném okamžiku lze provést jeden typ dotazu či ověření"
msgid "arguments to --dbpath must begin with a /"
msgstr "argumenty pro --dbpath musejí začínat znakem /"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "přemístění musejí začínat znakem /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "přemístění musejí obsahovat ="
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "přemístění musejí mít za znakem = znak /"
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "přemístění musejí začínat znakem /"
-#: rpm.c:904
+#: rpm.c:906
#, fuzzy, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "Interní chyba při zpracování argumentů :-(\n"
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath zadána pro operaci, která databázi nepoužívá"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck lze použít jen při sestavování balíčků"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "nečekaný zdroj dotazu"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "nečekaný zdroj dotazu"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "nečekaný zdroj dotazu"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "vynucena může být jen instalace a aktualizace"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "soubory mohou být přemístěny jen při instalaci balíčků"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "použít lze jen jeden z --prefix nebo --relocate"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--relocate se může použít jen při instalaci balíčků"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix se může použít jen při instalaci nových balíčků"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "argumenty pro --prefix musejí začínat znakem /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) se může specifikovat jen při instalaci balíčků"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "specifikovat lze jen jeden z --excludedocs a --includedocs"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoreos se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches se může specifikovat jen při mazání balíčků"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles se může specifikovat jen při instalaci balíčků"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb se může specifikovat jen při instalaci nebo mazání balíčků"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1155,7 +1155,7 @@ msgstr ""
"--noscripts se může specifikovat jen při instalaci, mazání nebo verifikaci "
"balíčků"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
@@ -1163,7 +1163,7 @@ msgstr ""
"--notriggers se může specifikovat jen při instalaci, mazání nebo verifikaci "
"balíčků"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1172,7 +1172,7 @@ msgstr ""
"--nodeps se může specifikovat jen při instalaci, mazání nebo verifikaci "
"balíčků"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
@@ -1180,7 +1180,7 @@ msgstr ""
"--test se může specifikovat jen při instalaci, mazání nebo sestavování "
"balíčků"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1188,127 +1188,127 @@ msgstr ""
"--root (-r) se může určit jen při instalaci, mazání, dotazování a opětných "
"sestavování databází"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenty pro --root (-r) musejí začínat znakem /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage lze použít jen při aktualizacích"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"volby ftp lze použít jen při dotazování, instalacích a aktualizacích balíčků"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
"volby ftp lze použít jen při dotazování, instalacích a aktualizacích balíčků"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp lze použít jen při kontrolování podpisů"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp lze použít jen při kontrolování podpisů"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr ""
"--nopgp se může použít jen při kontrolování podpisů a verifikaci balíčků"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "nelze otevřít soubor %s: "
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "Soubor nebyl na serveru nalezen"
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Chybná heslová fráze\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Heslová fráze je dobrá.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign lze použít jen při sestavování balíčků"
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr "nelze spustit\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "nečekané argumenty pro --querytags "
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "ke kontrole podpisu nezadány žádné balíčky"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "k podpisu nezadány žádné balíčky"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "k opětnému sestavení nezadány žádné soubory balíčků"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "pro sestavení nezadány žádné soubory .spec"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "pro sestavení nezadány žádné soubory tar"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "pro deinstalaci nezadány žádné balíčky"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "pro instalaci nezadány žádné balíčky"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "k dotazu na všechny balíčky zadány argumenty navíc"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "k dotazu nezadány žádné argumenty"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "k dotazu na všechny balíčky zadány argumenty navíc"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "pro verifikaci nezadány žádné argumenty"
@@ -2419,111 +2419,111 @@ msgstr "na konci výrazu se očekávala |"
msgid "(unknown type)"
msgstr "(neznámý typ)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "soubor %s: %s\n"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
#, fuzzy
msgid "installing a source package\n"
msgstr "probíhá instalace binárních balíčků\n"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "nelze otevřít soubor %s: "
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "nelze otevřít soubor %s: "
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "nelze otevřít soubor %s: "
-#: lib/install.c:470
+#: lib/install.c:473
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "soubor %s: %s\n"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
#, fuzzy
msgid "source package contains no .spec file"
msgstr "balíček %s neobsahuje soubory"
-#: lib/install.c:554
+#: lib/install.c:557
#, fuzzy, c-format
msgid "renaming %s to %s\n"
msgstr "Probíhá získávání %s jako %s\n"
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s nelze přejmenovat na %s: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:702
+#: lib/install.c:705
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "balíček %s-%s-%s obsahuje sdílení soubory\n"
-#: lib/install.c:760
+#: lib/install.c:763
#, fuzzy
msgid "stopping install as we're running --test\n"
msgstr "probíhá zastavení zdrojové instalace, neboť jde jen o testování\n"
-#: lib/install.c:765
+#: lib/install.c:768
#, fuzzy
msgid "running preinstall script (if any)\n"
msgstr "spouští se případný poinstalační skript\n"
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "spouští se případný poinstalační skript\n"
diff --git a/po/de.po b/po/de.po
index da5819aae..c7cbf9454 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-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -1055,8 +1055,8 @@ msgid "rebuild database from existing database"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "Es darf nur ein Hauptmodus angegeben werden"
@@ -1079,7 +1079,7 @@ msgstr ""
"--tarbuild (-t) benötigt einen Buchstaben aus a,b,i,c,p,l als einziges "
"Argument"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr ""
"Nur nur eine Art der Anfrage/Überprüfung kann pro Programmlauf durchgeführt "
@@ -1089,134 +1089,134 @@ msgstr ""
msgid "arguments to --dbpath must begin with a /"
msgstr "Argumente zu --dbpath müssen mit einem / beginnen"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "Verschiebungen müssen mit einem ť/Ť beginnen"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "Verschiebungen müssen ein ť=Ť beinhalten"
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "bei Verschiebungen muss ein ť/Ť dem ť=Ť folgen"
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "Verschiebungen müssen mit einem ť/Ť beginnen"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--clean darf nur während der Paketerstellung benutzt werden"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "Unerwartete Quelle der Anfrage"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "Unerwartete Quelle der Anfrage"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "Unerwartete Quelle der Anfrage"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "nur die Installation und Aktualisierung darf erzwungen werden"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "Dateien können nur während der Paketinstallation verschoben werden"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "Argumente zu --prefix müssen mit einem / beginnen"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
"nur eines der Argumente --excludedocs und --includedocs darf angegeben werden"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles darf nur während der Paketinstallation angegeben werden"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
"--justdb kann nur während der Paketinstallation und -deinstallation "
"angegeben werden"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1224,7 +1224,7 @@ msgstr ""
"--noscripts darf nur während der Paketinstallation, -deinstallation und "
"-überprüfung angegeben werden"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
@@ -1232,7 +1232,7 @@ msgstr ""
"--notriggers darf nur während der Paketinstallation, -deinstallation und "
"-überprüfung angegeben werden"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1241,7 +1241,7 @@ msgstr ""
"--nodeps darf nur während der Paketinstallation, -deinstallation und "
"-überprüfung angegeben werden"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
@@ -1249,7 +1249,7 @@ msgstr ""
"--test darf nur während der Paketinstallation, -deinstallation und "
"-erstellung angegeben werden"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1257,22 +1257,22 @@ msgstr ""
"--root (-r) darf nur während der Paketinstallation, -deinstallation, "
"-anfrage und Datenbankneuerstellungen angegeben werden"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "Argumente zu --root (-r) müssen mit einem / beginnen"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage darf nur während Aktualisierungen benutzt werden"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"ftp-Optionen können nur während Paketanfragen, -installationen und "
"-aktualisierungen benutzt werden"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
@@ -1280,107 +1280,107 @@ msgstr ""
"ftp-Optionen können nur während Paketanfragen, -installationen und "
"-aktualisierungen benutzt werden"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr ""
"--nopgp darf nur während der Signatur- und Paketüberprüfung angegeben werden"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "Datei auf dem Server nicht gefunden"
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Das Passwort ist richtig.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign darf nur während der Paketerstellung benutzt werden"
-#: rpm.c:1184
+#: rpm.c:1186
#, fuzzy
msgid "exec failed\n"
msgstr "%s: Öffnen fehlgeschlagen\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "Unerwartete Argumente zu --querytags "
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "Es wurden keine Pakete für die Signaturüberprüfung angegeben"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "Es wurden keine Pakete für die Signatur angeben"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "Es wurde kein spec-Datei für die Erstellung angegeben"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "Es wurden keine Pakete für die Installation angegeben"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "Es wurden keine Argumente für die Anfrage angegeben"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "Es wurden keine Argumente für die Überprüfung angegeben"
@@ -2528,111 +2528,111 @@ msgid "(unknown type)"
msgstr "(unbekannter Typ)"
# , c-format
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
#, fuzzy
msgid "installing a source package\n"
msgstr "Paket installieren"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "kann Datei %s nicht öffnen: "
# , c-format
-#: lib/install.c:470
+#: lib/install.c:473
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
#, fuzzy
msgid "source package contains no .spec file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/install.c:702
+#: lib/install.c:705
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index c5e1d39c4..4e83eac95 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@@ -1026,8 +1026,8 @@ msgid "rebuild database from existing database"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "vain yksi päämoodi voidaan määritellä"
@@ -1048,7 +1048,7 @@ msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
"--tarbuild (-t) vaatii yhden joukosta a,b,i,c,p,l ainoana parametrinään"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla"
@@ -1056,132 +1056,132 @@ msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla"
msgid "arguments to --dbpath must begin with a /"
msgstr "--dbpath:n parametrien pitää alkaa /-merkillä"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "siirroissa pitää olla =-merkki"
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "siirroissa pitää olla / =-merkin jälkeen"
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck parametriä voidaan käyttää vain paketteja koottaessa"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "odottamaton kyselyn lähde"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "odottamaton kyselyn lähde"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "odottamaton kyselyn lähde"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "vain asennus tai päivitys voidaan pakottaa"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "vain toinen --prefix tai --relocate voidaan antaa"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "--prefix parametrien pitää alkaa /-merkillä"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
"--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1189,7 +1189,7 @@ msgstr ""
"--noscripts: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
"tarkistettaessa"
-#: rpm.c:1049
+#: rpm.c:1051
#, fuzzy
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
@@ -1198,7 +1198,7 @@ msgstr ""
"--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
"tarkistettaessa"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1207,7 +1207,7 @@ msgstr ""
"--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
"tarkistettaessa"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
@@ -1215,7 +1215,7 @@ msgstr ""
"--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja "
"käännettäessä"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1223,22 +1223,22 @@ msgstr ""
"--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, "
"kyseltäessä ja tietokannan uudelleenluonnissa"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "parametrit --root (-r):lle alettava /-merkillä"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage: voidaan käyttää vain paketteja päivitettäessä"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"ftp-parametrejä voidaan käyttää vain paketteja kysellessä, asennettaessa ja "
"päivitettäessä"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
@@ -1246,16 +1246,16 @@ msgstr ""
"ftp-parametrejä voidaan käyttää vain paketteja kysellessä, asennettaessa ja "
"päivitettäessä"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
@@ -1263,91 +1263,91 @@ msgstr ""
"--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa ja paketteja "
"todennettaessa"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr ""
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr ""
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign: voidaan käyttää vain paketteja käännettäessä"
-#: rpm.c:1184
+#: rpm.c:1186
#, fuzzy
msgid "exec failed\n"
msgstr "%s: avaus ei onnistunut\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "--querytags: odottamattomia parametrejä"
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "allekirjoituksen tarkistukselle ei määritelty paketteja"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "allekirjoitukselle ei määritelty paketteja"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "uudelleenkäännolle ei määritelty paketteja"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "käännökselle ei annettu määrittelytiedostoja"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "käännökselle ei määritelty tar-tiedostoja"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "poistolle ei määritelty paketteja"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "asennukselle ei määritelty paketteja"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "kyselylle ei annettu parametrejä"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "tarkistukselle ei annettu parametrejä"
@@ -2459,109 +2459,109 @@ msgstr "odotin '}'-merkkiä ilmauksen lopussa"
msgid "(unknown type)"
msgstr "(tuntematon tyyppi)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
#, fuzzy
msgid "installing a source package\n"
msgstr "asenna paketti"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:470
+#: lib/install.c:473
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
#, fuzzy
msgid "source package contains no .spec file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:702
+#: lib/install.c:705
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 08e92ecdd..d9d4f762a 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
msgid ""
-msgstr "POT-Creation-Date: 2000-05-10 11:32-0400\n"
+msgstr "POT-Creation-Date: 2000-05-12 19:24-0400\n"
#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422
#, c-format
@@ -1004,8 +1004,8 @@ msgid "rebuild database from existing database"
msgstr ""
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "un seul mode majeur peut ętre spécifié"
@@ -1027,7 +1027,7 @@ msgstr "--build (-b) requiert comme seul argument l'un parmi a,b,i,c,p,l"
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--build (-b) requiert comme seul argument l'un parmi a,b,i,c,p,l"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "un seul type de requęte/vérification peut ętre effectué ŕ la fois"
@@ -1036,159 +1036,159 @@ msgstr "un seul type de requęte/vérification peut ętre effectué ŕ la fois"
msgid "arguments to --dbpath must begin with a /"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: rpm.c:881
+#: rpm.c:883
#, fuzzy
msgid "relocations must begin with a /"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr ""
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr ""
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr ""
-#: rpm.c:959
+#: rpm.c:961
#, fuzzy
msgid "--timecheck may only be used during package builds"
msgstr "--clean ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "source de requęte inattendue"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "source de requęte inattendue"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "source de requęte inattendue"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "seules l'installation et la mise ŕ jour peuvent ętre forcées"
-#: rpm.c:977
+#: rpm.c:979
#, fuzzy
msgid "files may only be relocated during package installation"
msgstr ""
"--replacefiles ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:980
+#: rpm.c:982
#, fuzzy
msgid "only one of --prefix or --relocate may be used"
msgstr "un seul mode majeur peut ętre spécifié"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--clean ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:986
+#: rpm.c:988
#, fuzzy
msgid "--prefix may only be used when installing new packages"
msgstr "--sign ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:989
+#: rpm.c:991
#, fuzzy
msgid "arguments to --prefix must begin with a /"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
"--hash (-h) ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr ""
"--percent ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr ""
"--replacefiles ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
"--replacepkgs ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1008
+#: rpm.c:1010
#, fuzzy
msgid "--excludedocs may only be specified during package installation"
msgstr ""
"--percent ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1012
+#: rpm.c:1014
#, fuzzy
msgid "--includedocs may only be specified during package installation"
msgstr ""
"--percent ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1016
+#: rpm.c:1018
#, fuzzy
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "un seul mode majeur peut ętre spécifié"
-#: rpm.c:1020
+#: rpm.c:1022
#, fuzzy
msgid "--ignorearch may only be specified during package installation"
msgstr ""
"--percent ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1024
+#: rpm.c:1026
#, fuzzy
msgid "--ignoreos may only be specified during package installation"
msgstr ""
"--percent ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr ""
"--percent ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1032
+#: rpm.c:1034
#, fuzzy
msgid "--allmatches may only be specified during package erasure"
msgstr ""
"--replacepkgs ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1036
+#: rpm.c:1038
#, fuzzy
msgid "--allfiles may only be specified during package installation"
msgstr ""
"--replacefiles ne peut ętre spécifié que lors de l'installation d'un package"
-#: rpm.c:1040
+#: rpm.c:1042
#, fuzzy
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
"--test ne peut ętre spécifié que lors de l'installation ou désinstallation "
"d'un package"
-#: rpm.c:1045
+#: rpm.c:1047
#, fuzzy
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
@@ -1197,7 +1197,7 @@ msgstr ""
"--test ne peut ętre spécifié que lors de l'installation ou désinstallation "
"d'un package"
-#: rpm.c:1049
+#: rpm.c:1051
#, fuzzy
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
@@ -1206,7 +1206,7 @@ msgstr ""
"--test ne peut ętre spécifié que lors de l'installation ou désinstallation "
"d'un package"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1215,7 +1215,7 @@ msgstr ""
"--test ne peut ętre spécifié que lors de l'installation ou désinstallation "
"d'un package"
-#: rpm.c:1058
+#: rpm.c:1060
#, fuzzy
msgid ""
"--test may only be specified during package installation, erasure, and "
@@ -1224,7 +1224,7 @@ msgstr ""
"--test ne peut ętre spécifié que lors de l'installation ou désinstallation "
"d'un package"
-#: rpm.c:1062
+#: rpm.c:1064
#, fuzzy
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
@@ -1233,130 +1233,130 @@ msgstr ""
"--root (-r) ne peut ętre spécifié que lors de l'installation, de la "
"désinstallation ou de l'interrogation d'un package"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage ne peut ętre spécifié que lors de mises ŕ jour"
-#: rpm.c:1085
+#: rpm.c:1087
#, fuzzy
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr "--sign ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr "--sign ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:1095
+#: rpm.c:1097
#, fuzzy
msgid "--nopgp may only be used during signature checking"
msgstr "--sign ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--sign ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr "--sign ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr ""
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "La vérification du mot de passe a échoué\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Mot de passe correct.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign ne peut ętre spécifié que lors de la construction d'un package"
-#: rpm.c:1184
+#: rpm.c:1186
#, fuzzy
msgid "exec failed\n"
msgstr "La construction a échoué.\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr ""
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "aucun package n'a été spécifié pour la vérification de signature"
-#: rpm.c:1225
+#: rpm.c:1227
#, fuzzy
msgid "no packages given for signing"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "aucun package n'a été spécifié pour la reconstruction"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "aucun package n'a été spécifié pour la construction"
-#: rpm.c:1302
+#: rpm.c:1304
#, fuzzy
msgid "no tar files given for build"
msgstr "aucun package n'a été spécifié pour la construction"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: rpm.c:1391
+#: rpm.c:1393
#, fuzzy
msgid "extra arguments given for query of all packages"
msgstr "aucun argument n'a été fourni pour la requęte"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "aucun argument n'a été fourni pour la requęte"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "aucun argument n'a été fourni pour la requęte"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "aucun argument n'a été fourni pour la vérification"
@@ -2460,109 +2460,109 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
#, fuzzy
msgid "source package contains no .spec file"
msgstr ""
" -f <file>+ - interroge le package ŕ qui appartient <file>"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:702
+#: lib/install.c:705
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index c6a061138..a17cdc509 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-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -193,7 +193,7 @@ msgstr "copyright ¤Ź¤˘¤ę¤Ţ¤ť¤ó!\n"
# build root [BuildRoot]
# net share [ĽÍĽĂĽČśŚÍ­]
# reloate [şĆÇŰĂÖ/°ÜĆ°¤š¤ë]
-# $Id: ja.po,v 1.55 2000/05/10 15:36:30 jbj Exp $
+# $Id: ja.po,v 1.56 2000/05/12 23:30:29 jbj Exp $
#: rpm.c:200
#, c-format
msgid "rpm: %s\n"
@@ -1000,8 +1000,8 @@ msgid "rebuild database from existing database"
msgstr "´ű¸¤ÎĽÇĄźĽżĽŮĄźĽš¤Ť¤éĽÇĄźĽżĽŮĄźĽš¤ňşĆš˝Ăۤˇ¤Ţ¤š"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "°ě¤Ä¤ÎĽáĽ¸ĽăĄźĽâĄźĽÉ¤Î¤ß¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
@@ -1021,7 +1021,7 @@ msgstr "--build (-b) ¤Ď aĄ˘bĄ˘iĄ˘cĄ˘pĄ˘l ¤Î¤É¤ě¤Ť°ě¤Ä¤Î°úżô¤ňÉŹÍפȤˇ¤Ţ¤š"
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--tarbuild (-t) ¤Ď aĄ˘bĄ˘iĄ˘cĄ˘pĄ˘l ¤Î¤É¤ě¤Ť°ě¤Ä¤Î°úżô¤ňÉŹÍפȤˇ¤Ţ¤š"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "Ě䤤šç¤ď¤ť/¸ĄžÚ¤Ď°ěĹ٤˰ě¤Ä¤ˇ¤ŤźÂšÔ¤Ç¤­¤Ţ¤ť¤ó"
@@ -1029,66 +1029,66 @@ msgstr "Ě䤤šç¤ď¤ť/¸ĄžÚ¤Ď°ěĹ٤˰ě¤Ä¤ˇ¤ŤźÂšÔ¤Ç¤­¤Ţ¤ť¤ó"
msgid "arguments to --dbpath must begin with a /"
msgstr "--dbpath ¤Î°úżô¤Ď / ¤Ť¤éťĎ¤Ţ¤é¤Í¤Đ¤Ę¤ę¤Ţ¤ť¤ó"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "şĆÇŰĂÖ¤Ď / ¤Ť¤éťĎ¤Ţ¤é¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "şĆÇŰĂÖ¤Ď = ¤ň´Ţ¤ó¤Ç¤¤¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó"
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "şĆÇŰĂÖ¤Ď = ¤ÎźĄ¤Ë / ¤Ç¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó"
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "˝üł°¤š¤ëĽŃĽš¤Ď / ¤Ť¤éťĎ¤Ţ¤é¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó"
-#: rpm.c:904
+#: rpm.c:906
#, fuzzy, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "°úżô˝čÍý(%d)¤Ç¤ÎĆâÉôĽ¨ĽéĄź :-(\n"
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "ĽÇĄźĽżĽŮĄźĽš¤ňťČÍѤˇ¤Ę¤¤¤Î¤Ë --dbpath ¤ŹÍż¤¨¤é¤ě¤Ć¤¤¤Ţ¤š"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck ¤ĎĽŃĽĂĽąĄźĽ¸şîŔŽťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "Í˝´ü¤ť¤ĚĚ䤤šç¤ď¤ť¤ÎĽŐĽéĽ°"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "Í˝´ü¤ť¤ĚĚ䤤šç¤ď¤ť¤ÎĽŐĽŠĄźĽŢĽĂĽČ"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "Í˝´ü¤ť¤ĚĚ䤤šç¤ď¤ť¤ÎĽ˝ĄźĽš"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
"Ľ¤ĽóĽšĽČĄźĽëĄ˘Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉĄ˘Ľ˝ĄźĽšşď˝üĄ˘ĽšĽÚĽĂĽŻĽŐĽĄĽ¤Ľëşď˝üťţ¤Î¤ßśŻŔŠ¤Ç¤­¤"
"ޤš"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "ĽŐĽĄĽ¤Ľë¤ĎĽŃĽĂĽąĄźĽ¸Ľ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßşĆÇŰĂ֤Ǥ­¤Ţ¤š"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "--prefix ¤â¤ˇ¤Ż¤Ď --relocate ¤Î¤¤¤ş¤ě¤Ť¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
@@ -1096,80 +1096,80 @@ msgstr ""
"--relocate ¤Č --excludepath "
"¤Ďżˇ¤ˇ¤¤ĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Č¤­¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix ¤ĎżˇľŹ¤ËĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Č¤­¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "--prefix ¤Ř¤Î°úżô¤Ď / ¤Ť¤éťĎ¤Ţ¤é¤Í¤Đ¤Ę¤ę¤Ţ¤ť¤ó"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "--excludedocs ¤Č --includedocs ¤Ď¤É¤Á¤é¤Ť°ěĘý¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "-ignoreos ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "-ignoresize ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches ¤ĎĽŃĽĂĽąĄźĽ¸¤Îşď˝üťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
msgstr "--noscripts ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘¸ĄžÚťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
msgstr "--notriggers ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘¸ĄžÚťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1177,13 +1177,13 @@ msgid ""
msgstr ""
"--nodeps ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎşîŔŽĄ˘Ľ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘¸ĄžÚťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr "--test ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘şîŔŽťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1191,15 +1191,15 @@ msgstr ""
"--root (-r) "
"¤ĎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘Ě䤤šç¤ď¤ťĄ˘ĽÇĄźĽżĽŮĄźĽšşĆš˝ĂŰťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "--root (-r) ¤Î°úżô¤Ď / ¤Ť¤éťĎ¤Ţ¤é¤Í¤Đ¤Ę¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage ¤ĎĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
@@ -1207,7 +1207,7 @@ msgstr ""
"ĽŞĽ×ĽˇĽçĽó¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĚ䤤šç¤ď¤ťĄ˘Ľ¤ĽóĽšĽČĄźĽëĄ˘Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉťţ¤Î¤ßťČÍѤǤ"
"­¤Ţ¤š"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
@@ -1216,105 +1216,105 @@ msgstr ""
"ĽŞĽ×ĽˇĽçĽó¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĚ䤤šç¤ď¤ťĄ˘Ľ¤ĽóĽšĽČĄźĽëĄ˘Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉťţ¤Î¤ßťČÍѤǤ"
"­¤Ţ¤š\n"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp ¤Ď˝đĚž¸Ąşşťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nogpg ¤Ď˝đĚž¸Ąşşťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr "--nomd5 ¤Ď˝đĚž¸Ąşş¤ČĽŃĽĂĽąĄźĽ¸¸ĄžÚťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr "˝đĚž¤š¤ë¤ż¤á¤ÎĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó\n"
-#: rpm.c:1134
+#: rpm.c:1136
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤ť¤ó\n"
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "pgp ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó: "
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr "ĽŃĽšĽŐĽěĄźĽş¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤: "
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "ĽŃĽšĽŐĽěĄźĽşĽÁĽ§ĽĂĽŻ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "ĽŃĽšĽŐĽěĄźĽş¤ĎŔľžď¤Ç¤šĄĽ\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤ĽëĂć¤ÎĚľ¸ú¤Ę %%_signature ĄŁ\n"
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign ¤ĎĽŃĽĂĽąĄźĽ¸şîŔŽťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š"
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr "źÂšÔźşÇÔ\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "--querytags ¤Î°úżô¤Ź´Ö°ă¤Ă¤Ć¤¤¤Ţ¤š"
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "˝đĚž¸Ąşş¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "˝đĚž¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "şĆşîŔŽ¤š¤ë¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸ĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "şîŔŽ¤Î¤ż¤á¤Î spec ĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "şîŔŽ(build)¤Î¤ż¤á¤Î tar ĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤ÎĚ䤤šç¤ď¤ť¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "Ě䤤šç¤ď¤ť¤Î¤ż¤á¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤Î¸ĄžÚ¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "¸ĄžÚ¤Î¤ż¤á¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó"
@@ -2432,22 +2432,22 @@ msgstr "ź°¤Î˝Ş¤ę¤Ë | ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š"
msgid "(unknown type)"
msgstr "(ÉÔĚŔ¤ĘĽżĽ¤Ľ×)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "ĽŐĽĄĽ¤Ľë %s: Ľ˘ĽŻĽˇĽçĽó: %s\n"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr "ĽćĄźĽś %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š"
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr "Ľ°ĽëĄźĽ× %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š"
-#: lib/install.c:201
+#: lib/install.c:204
#, fuzzy
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
@@ -2456,87 +2456,87 @@ msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎĽ˘ĄźĽŤĽ¤ĽÖ¤Îż­Äš¤ËźşÇÔ %s%s: %s"
-#: lib/install.c:366
+#: lib/install.c:369
#, fuzzy
msgid " on file "
msgstr "ĽŐĽĄĽ¤Ľëžĺ"
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤Ţ¤š\n"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "%s ¤ňşîŔŽ¤Ç¤­¤Ţ¤ť¤ó: %s"
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, c-format
msgid "cannot write to %s"
msgstr "%s ¤Ř˝ń¤­šţ¤á¤Ţ¤ť¤ó"
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr "Ľ˝ĄźĽš¤Ď: %s\n"
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "%s ¤ňşîŔŽ¤Ç¤­¤Ţ¤ť¤ó: %s"
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr "spec ĽŐĽĄĽ¤Ľë¤Ď: %s\n"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
msgid "source package contains no .spec file"
msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤Ď .spec ĽŐĽĄĽ¤Ľë¤ň´Ţ¤ó¤Ç¤¤¤Ţ¤ť¤ó"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr "%s ¤ň %s ¤ŘĚžÁ°¤ňĘŃšš¤ˇ¤Ţ¤š\n"
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s ¤ň %s ¤Ë¤š¤ëĚžÁ°¤ÎĘŃšš¤ËźşÇÔ: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤Ź´üÂÔ¤ľ¤ě¤Ţ¤šĄ˘ĽĐĽ¤ĽĘĽę¤Ď¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż"
-#: lib/install.c:702
+#: lib/install.c:705
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "ĽŃĽĂĽąĄźĽ¸: %s-%s-%s ĽŐĽĄĽ¤ĽëĽĆĽšĽČ = %d\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr "--test ¤ňźÂšÔ¤š¤ë¤č¤Ś¤ËĽ¤ĽóĽšĽČĄźĽë¤ňĂćťß¤ˇ¤Ć¤¤¤Ţ¤š\n"
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr "Ľ×ĽęĽ¤ĽóĽšĽČĄźĽëĽšĽŻĽęĽ×ĽČ(¤ŹÍ­¤ě¤Đ)¤ňźÂšÔ¤ˇ¤Ţ¤š\n"
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆşîŔŽ¤ľ¤ě¤Ţ¤š"
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆĘݸ¤ľ¤ě¤Ţ¤š"
-#: lib/install.c:899
+#: lib/install.c:902
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "ĽÝĽšĽČĽ¤ĽóĽšĽČĄźĽëĽšĽŻĽęĽ×ĽČ(¤ŹÍ­¤ě¤Đ)¤ňźÂšÔ¤ˇ¤Ţ¤š\n"
diff --git a/po/pl.po b/po/pl.po
index 8ff3aa5fb..2605dc8a4 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-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -973,8 +973,8 @@ msgid "rebuild database from existing database"
msgstr "przebuduj istniejącą bazę"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "tylko jeden główny tryb pracy może być podany"
@@ -994,7 +994,7 @@ msgstr "--build (-b) wymaga koniecznie jednego z a,b,i,c,p,l"
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--tarbuild (-t) wymaga koniecznie jednego z a,b,i,c,p,l"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "tylko jeden typ odpytywania/sprawdzania można wykonać na raz"
@@ -1002,127 +1002,127 @@ msgstr "tylko jeden typ odpytywania/sprawdzania można wykonać na raz"
msgid "arguments to --dbpath must begin with a /"
msgstr "argumenty dla --dbpath muszą zaczynać sie od /"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "drzewa przesunięć muszą zaczynać sie od /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "specyfikacja przesunięcia musi zawierać ="
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "specyfikacja przesunięcia musi zawierać / po ="
-#: rpm.c:895
+#: rpm.c:897
msgid "exclude paths must begin with a /"
msgstr "ścieżki wyłączeń muszą się zaczynać od /"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "Błąd wewnętrzny w przetwarzaniu argumentu (%d) :-(\n"
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath podano dla operacji nie używającej bazy"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck można używać tylko w trakcie budowania pakietów"
-#: rpm.c:962
+#: rpm.c:964
msgid "unexpected query flags"
msgstr "błędna konstrukcja argumentów odpytywania"
-#: rpm.c:965
+#: rpm.c:967
msgid "unexpected query format"
msgstr "błędna konstrukcja argumentów odpytywania"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "błędna konstrukcja argumentów odpytywania"
-#: rpm.c:974
+#: rpm.c:976
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "tylko instalację, uaktualnienie i usuwanie źródeł można wymusić"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "przesuwania plików można dokonać tylko w trakcie instalacji"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "nie można jednocześnie użyć --prefix i --relocate"
-#: rpm.c:983
+#: rpm.c:985
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
"--relocate i --excludepath można użyć tylko w trakcie instalacji nowych "
"pakietów"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix można użyć tylko w trakcie instalacji nowych pakietów"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "argumenty dla --prefix muszą się rozpoczynać od /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "nie można jednocześnie użyć --excludedocs i --includedocs"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1028
+#: rpm.c:1030
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoresize można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches można użyć tylko w trakcie usuwania pakietów"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles można użyć tylko w trakcie instalacji pakietów"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb można użyć tylko w trakcie instalacji lub usuwania pakietów"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1130,7 +1130,7 @@ msgstr ""
"--noscripts można użyć tylko w trakcie instalacji, usuwania lub sprawdzania "
"pakietów"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
@@ -1138,7 +1138,7 @@ msgstr ""
"--notriggers można użyć tylko w trakcie instalacji, usuwania lub sprawdzania "
"pakietów"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1147,14 +1147,14 @@ msgstr ""
"--nodeps można użyć tylko w trakcie budowania, instalacji, usuwania lub "
"sprawdzania pakietów"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
"--test można użyć tylko w trakcie instalacji, usuwania lub budowania pakietów"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1162,120 +1162,120 @@ msgstr ""
"--root (-r) można użyć tylko w trakcie instalacji, usuwania, sprawdzania "
"pakietów lub przebudowywania bazy"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenty dla --root (-r) muszą się rozpoczynać od /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage można użyć tylko podczas aktualizacji"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr "opcje ftp można użyć tylko podczas zapytań, instalacji i akualizacji"
-#: rpm.c:1091
+#: rpm.c:1093
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr "opcje http można użyć tylko podczas zapytań, instalacji i akualizacji"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp można użyć tylko w trakcie sprawdzania sygnatury"
-#: rpm.c:1098
+#: rpm.c:1100
msgid "--nogpg may only be used during signature checking"
msgstr "--nogpg można użyć tylko podczas sprawdzania sygnatury"
-#: rpm.c:1101
+#: rpm.c:1103
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr ""
"--nomd5 można użyć tylko podczas sprawdzania sygnatury i weryfkiacji pakietu"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr "brak dostępu do pliku %s\n"
-#: rpm.c:1149
+#: rpm.c:1151
msgid "pgp not found: "
msgstr "nie znaleziono pgp: "
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr "Podaj hasło: "
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Weryfikacja hasła nieudana\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Hasło jest prawidłowe.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr "Błędny %%_signature spec w pliku makra.\n"
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign można użyć tylko w trakcie budowania pakietu"
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr "wykonanie nie powiodło się\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "nieoczekiwane argumenty dla --querytags "
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "nie podano nazwy pakietu do sprawdzenia sygnatury"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "nie podano nazwy pakietu do podpisania"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "nie podano nazw pakietów do przebudowania"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "nie podano nazw plików spec do budowania"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "nie podano nazw plików tar do budowania"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "nie podano nazw plików do usunięcia"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "nie podano nazw plików do zainstalowania"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "zbyt wiele argumentów dla odpytywania wszystkich pakietów"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "nie podano argumentów dla trybu zapytań"
-#: rpm.c:1413
+#: rpm.c:1415
msgid "extra arguments given for verify of all packages"
msgstr "zbyt wiele argumentów dla weryfikacji wszystkich pakietów"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "nie podano argumentów dla sprawdzania"
@@ -2378,107 +2378,107 @@ msgstr "spodziewany | na końcu wyrażenia"
msgid "(unknown type)"
msgstr "(nieznany typ)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr " plik: %s akcja: %s\n"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr "użytkownik %s nie istnieje - użyto konta root"
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr "grupa %s nie istnieje - użyto grupy root"
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "wartość %%instchangelog w pliku makra powinna być liczbą, a nie jest"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozpakowanie archiwum nie powiodło się %s%s: %s"
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr " na pliku "
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr "instacja pakietu źródłowego\n"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "nie można utworzyć %s"
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, c-format
msgid "cannot write to %s"
msgstr "nie można zapisać do %s"
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr "źródła w: %s\n"
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "nie można utworzyć %s"
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr "plik spec w: %s\n"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
msgid "source package contains no .spec file"
msgstr "pakiet źródłowy nie zawiera pliku .spec"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr "zmiana nazwy %s na %s\n"
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "zmiana nazwy z %s na %s nie powiodła sie: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr "spodziewany pakiet źródłowy a nie binarny"
-#: lib/install.c:702
+#: lib/install.c:705
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "pakiet: %s-%s-%s test plików = %d\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr "przebieg testowy - instalacja zatrzymana\n"
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr "uruchamianie skryptu preinstall (jeśli istnieje)\n"
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr "ostrzeżenie: %s utworzony jako %s"
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr "ostrzeżenie: %s zapisany jako %s"
-#: lib/install.c:899
+#: lib/install.c:902
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "uruchamianie skryptu postinstall (jeśli istnieje)\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index cbd62bdaf..1684bc7f3 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-05-10 11:32-0400\n"
+msgstr "POT-Creation-Date: 2000-05-12 19:24-0400\n"
#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422
#, c-format
@@ -1039,8 +1039,8 @@ msgid "rebuild database from existing database"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "somente um modo principal pode ser especificado"
@@ -1060,7 +1060,7 @@ msgstr "--build (-b) requer um único argumento do tipo a,b,i,c,p,l"
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--tarbuild (-t) requer um único argumento do tipo a,b,i,c,p,l"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "um tipo de pesquisa/verificaçăo pode ser feita por vez"
@@ -1068,148 +1068,148 @@ msgstr "um tipo de pesquisa/verificaçăo pode ser feita por vez"
msgid "arguments to --dbpath must begin with a /"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: rpm.c:881
+#: rpm.c:883
#, fuzzy
msgid "relocations must begin with a /"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr ""
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr ""
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath passado para uma operaçăo que năo usa um banco de dados"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck somente pode ser usado durante a construçăo de pacotes"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "fonte de pesquisa năo esperado"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "fonte de pesquisa năo esperado"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "fonte de pesquisa năo esperado"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "somente instalaçăo e atualizaçăo podem ser forçadas"
-#: rpm.c:977
+#: rpm.c:979
#, fuzzy
msgid "files may only be relocated during package installation"
msgstr "--percent somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:980
+#: rpm.c:982
#, fuzzy
msgid "only one of --prefix or --relocate may be used"
msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
"--prefix somente pode ser usada quando se está instalando novos pacotes"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr ""
"--prefix somente pode ser usada quando se está instalando novos pacotes"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "argumentos para --prefix devem começar com uma /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
"--hash (-h) somente podem ser especificado durante instalaçőes de pacotes"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--percent somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
"--replacepkgs somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr ""
"--excludedocs somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr ""
"--includedocs somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr ""
"--ignorearch somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr ""
"--ignoreos somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr ""
"--ignoreos somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr ""
"--allmatches somente pode ser especificado durante desinstalaçőes de pacotes"
-#: rpm.c:1036
+#: rpm.c:1038
#, fuzzy
msgid "--allfiles may only be specified during package installation"
msgstr "--percent somente pode ser especificado durante instalaçőes de pacotes"
-#: rpm.c:1040
+#: rpm.c:1042
#, fuzzy
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
"--test somente pode ser especificado durante [des]instalaçőes e construçőes "
"de pacotes"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1217,7 +1217,7 @@ msgstr ""
"--noscripts somente pode ser especificado durante [des]instalaçőes e "
"verificaçőes de pacotes"
-#: rpm.c:1049
+#: rpm.c:1051
#, fuzzy
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
@@ -1226,7 +1226,7 @@ msgstr ""
"--nodeps somente pode ser especificado durante [des]instalaçőes e "
"verificaçőes de pacotes"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1235,7 +1235,7 @@ msgstr ""
"--nodeps somente pode ser especificado durante [des]instalaçőes e "
"verificaçőes de pacotes"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
@@ -1243,7 +1243,7 @@ msgstr ""
"--test somente pode ser especificado durante [des]instalaçőes e construçőes "
"de pacotes"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1251,22 +1251,22 @@ msgstr ""
"--root (-r) somente pode ser especificado durante [des]instalaçőes, "
"pesquisas e reconstruçăo de bancos de dados"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumentos para --root (-r) devem começar com uma /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage somente pode ser usado durante a atualizaçăo de pacotes"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"opçőes ftp somente podem ser usadas durante pesquisas, instalaçőes e "
"atualizaçőes de pacotes"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
@@ -1274,16 +1274,16 @@ msgstr ""
"opçőes ftp somente podem ser usadas durante pesquisas, instalaçőes e "
"atualizaçőes de pacotes"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
@@ -1291,91 +1291,91 @@ msgstr ""
"--nopgp somente pode ser usado durante checagem de assinaturas e verificaçăo "
"de pacotes"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr ""
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "năo foi passado pacote para desinstalaçăo"
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Checagem de pass phrase falhou\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Pass phrase ok.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign somente pode ser usado durante a construçăo de pacotes"
-#: rpm.c:1184
+#: rpm.c:1186
#, fuzzy
msgid "exec failed\n"
msgstr "Construçăo falhou.\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "argumentos năo esperados em --querytags"
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "nenhum pacote informado para checagem de assinatura"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "năo foram passados pacotes para assinatura"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "năo foram passados pacotes para reconstruçăo"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "năo foi passado arquivo spec para construçăo"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "năo foram passados arquivos tar para construçăo"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "năo foi passado pacote para desinstalaçăo"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "năo foi passado pacote para instalaçăo"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "năo foi passado argumento para pesquisa"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "năo foi passado argumento para verificaçăo"
@@ -2525,112 +2525,112 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
#, fuzzy
msgid "installing a source package\n"
msgstr "instale pacote"
# , c-format
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "Năo consegui abrir: %s\n"
# , c-format
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "Năo consegui abrir: %s\n"
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
# , c-format
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "Năo consegui abrir: %s\n"
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
#, fuzzy
msgid "source package contains no .spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:702
+#: lib/install.c:705
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "năo foi passado pacote para instalaçăo"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index b1cba664e..84bf601b0 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-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -923,8 +923,8 @@ msgid "rebuild database from existing database"
msgstr ""
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr ""
@@ -944,7 +944,7 @@ msgstr ""
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr ""
@@ -952,267 +952,267 @@ msgstr ""
msgid "arguments to --dbpath must begin with a /"
msgstr ""
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr ""
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr ""
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr ""
-#: rpm.c:895
+#: rpm.c:897
msgid "exclude paths must begin with a /"
msgstr ""
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr ""
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr ""
-#: rpm.c:962
+#: rpm.c:964
msgid "unexpected query flags"
msgstr ""
-#: rpm.c:965
+#: rpm.c:967
msgid "unexpected query format"
msgstr ""
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr ""
-#: rpm.c:974
+#: rpm.c:976
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr ""
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr ""
-#: rpm.c:983
+#: rpm.c:985
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr ""
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr ""
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr ""
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr ""
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr ""
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr ""
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr ""
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr ""
-#: rpm.c:1028
+#: rpm.c:1030
msgid "--ignoresize may only be specified during package installation"
msgstr ""
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr ""
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr ""
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
msgstr ""
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
msgstr ""
-#: rpm.c:1053
+#: rpm.c:1055
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr ""
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
-#: rpm.c:1091
+#: rpm.c:1093
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr ""
-#: rpm.c:1098
+#: rpm.c:1100
msgid "--nogpg may only be used during signature checking"
msgstr ""
-#: rpm.c:1101
+#: rpm.c:1103
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr ""
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr ""
-#: rpm.c:1149
+#: rpm.c:1151
msgid "pgp not found: "
msgstr ""
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr ""
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr ""
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr ""
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr ""
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr ""
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr ""
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr ""
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr ""
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr ""
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr ""
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr ""
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr ""
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr ""
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr ""
-#: rpm.c:1413
+#: rpm.c:1415
msgid "extra arguments given for verify of all packages"
msgstr ""
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr ""
@@ -2309,107 +2309,107 @@ msgstr ""
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:430
+#: lib/install.c:433
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:460
+#: lib/install.c:463
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:702
+#: lib/install.c:705
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 6c176ddc5..68ebebc12 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-0400\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -966,8 +966,8 @@ msgid "rebuild database from existing database"
msgstr "ĐĹŇĹÓÔŇĎÉÔŘ ÂÁÚŐ ÄÁÎÎŮČ ÉÚ ÓŐÝĹÓÔ×ŐŔÝĹĘ ÂÁÚŮ"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĎÄÉÎ ÉÚ ĎÓÎĎ×ÎŮČ ŇĹÖÉÍĎ×"
@@ -989,7 +989,7 @@ msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
"ĎĐĂÉŃ --tarbuild (-t) ÔŇĹÂŐĹÔ a,b,i,c,p,l × ËÁŢĹÓÔ×Ĺ ĹÄÉÎÓÔ×ĹÎÎĎÇĎ ÁŇÇŐÍĹÎÔÁ"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "ÚÁ ĎÄÉÎ ŇÁÚ ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚÎĹÎ ÔĎĚŘËĎ ĎÄÉÎ ÔÉĐ ĐŇĎ×ĹŇËÉ ÉĚÉ ÚÁĐŇĎÓÁ"
@@ -997,133 +997,133 @@ msgstr "ÚÁ ĎÄÉÎ ŇÁÚ ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚÎĹÎ ÔĎĚŘËĎ ĎÄÉÎ ÔÉĐ ĐŇĎ×ĹŇËÉ ÉĚÉ ÚÁĐŇĎÓÁ"
msgid "arguments to --dbpath must begin with a /"
msgstr "ÁŇÇŐÍĹÎÔŮ ÄĚŃ --dbpath ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó /"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "ĐĹŇĹÍĹÝĹÎÉŃ ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "ĐĹŇĹÍĹÝĹÎÉŃ ÄĎĚÖÎŮ ÓĎÄĹŇÖÁÔŘ ="
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "ĐĹŇĹÍĹÝĹÎÉŃ ÄĎĚÖÎŮ ÉÍĹÔŘ / ĐĎÓĚĹ ="
-#: rpm.c:895
+#: rpm.c:897
msgid "exclude paths must begin with a /"
msgstr "ÉÓËĚŔŢĹÎÉŃ ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó /"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "÷ÎŐÔŇĹÎÎŃŃ ĎŰÉÂËÁ ĐŇÉ ĎÂŇÁÂĎÔËĹ ÁŇÇŐÍĹÎÔĎ× (%d) :-(\n"
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "ĎĐĂÉŃ --dbpath ÚÁÄÁÎÁ ÄĚŃ ĎĐĹŇÁĂÉÉ, ÎĹ ÉÓĐĎĚŘÚŐŔÝĹĘ ÂÁÚŐ ÄÁÎÎŮČ"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "ĎĐĂÉŃ --timecheck ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĐŇÉ ÓÂĎŇËĹ ĐÁËĹÔĎ×"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "ÎĹĎÖÉÄÁÎÎŮĘ ÉÓÔĎŢÎÉË ÚÁĐŇĎÓÁ"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "ÎĹĎÖÉÄÁÎÎŮĘ ÉÓÔĎŢÎÉË ÚÁĐŇĎÓÁ"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "ÎĹĎÖÉÄÁÎÎŮĘ ÉÓÔĎŢÎÉË ÚÁĐŇĎÓÁ"
-#: rpm.c:974
+#: rpm.c:976
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
"ĐŇÉÎŐÄÉÔĹĚŘÎŮÍÉ ÍĎÇŐÔ ÂŮÔŘ ÔĎĚŘËĎ ŐÓÔÁÎĎ×ËÁ, ĎÂÎĎ×ĚĹÎÉĹ, ŐÄÁĚĹÎÉĹ ÉÓČĎÄÎÉËĎ× "
"É spec-ĆÁĘĚÁ"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "ĆÁĘĚŮ ÍĎÇŐÔ ÂŮÔŘ ĐĹŇĹÍĹÝĹÎŮ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĎÄÎÁ ÉÚ ĎĐĂÉĘ --prefix ÉĚÉ --relocate"
-#: rpm.c:983
+#: rpm.c:985
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
"ĎĐĂÉÉ --relocate É --excludepath ÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ "
"ÎĎ×ŮČ ĐÁËĹÔĎ×"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "ĎĐĂÉŔ --prefix ÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ÎĎ×ŮČ ĐÁËĹÔĎ×"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "ÁŇÇŐÍĹÎÔŮ ÄĚŃ --prefix ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "ĎĐĂÉŃ --hash (-h) ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "ĎĐĂÉŃ --percent ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "ĎĐĂÉŃ --replacefiles ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "ĎĐĂÉŃ --replacepkgs ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "ĎĐĂÉŃ --excludedocs ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "ĎĐĂÉŃ --includedocs ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
"ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĎÄÎÁ ÉÚ ĎĐĂÉĘ --excludedocs ÉĚÉ --includedocs"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "ĎĐĂÉŃ --ignorearch ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "ĎĐĂÉŃ --ignoreos ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1028
+#: rpm.c:1030
msgid "--ignoresize may only be specified during package installation"
msgstr "ĎĐĂÉŃ --ignoresize ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "ĎĐĂÉŃ --allmatches ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÄÁĚĹÎÉÉ ĐÁËĹÔÁ"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "ĎĐĂÉŃ --allfiles ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
"ĎĐĂÉŃ --justdb ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ÉĚÉ ŐÄÁĚĹÎÉÉ ĐÁËĹÔÁ"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1131,7 +1131,7 @@ msgstr ""
"ĎĐĂÉŃ --noscripts ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ É "
"×ĹŇÉĆÉËÁĂÉÉ ĐÁËĹÔÁ"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
@@ -1139,7 +1139,7 @@ msgstr ""
"ĎĐĂÉŃ --notriggers ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ É "
"×ĹŇÉĆÉËÁĂÉÉ ĐÁËĹÔÁ"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1148,7 +1148,7 @@ msgstr ""
"ĎĐĂÉŃ --nodeps ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ÓÂĎŇËĹ, ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ É "
"×ĹŇÉĆÉËÁĂÉÉ ĐÁËĹÔĎ×"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
@@ -1156,7 +1156,7 @@ msgstr ""
"ĎĐĂÉŃ --test ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ É ÓÂĎŇËĹ "
"ĐÁËĹÔÁ"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1164,126 +1164,126 @@ msgstr ""
"ĎĐĂÉŃ --root (-r) ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ, "
"ÚÁĐŇĎÓÁČ ĐÁËĹÔÁ É ĐĹŇĹÓÔŇĎĹÎÉÉ ÂÁÚŮ ÄÁÎÎŮČ"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "ÁŇÇŐÍĹÎÔŮ ÄĚŃ --root (-r) ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr ""
"ĎĐĂÉŃ --oldpackage ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĐŇÉ ĎÂÎĎ×ĚĹÎÉÉ ĐÁËĹÔĎ×"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"ĎĐĂÉÉ ftp ÍĎÇŐÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎŮ ÔĎĚŘËĎ ĐŇÉ ÚÁĐŇĎÓÁČ, ŐÓÔÁÎĎ×ËĹ É "
"ĎÂÎĎ×ĚĹÎÉÉ ĐÁËĹÔĎ×"
-#: rpm.c:1091
+#: rpm.c:1093
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
"ĎĐĂÉÉ http ÍĎÇŐÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎŮ ÔĎĚŘËĎ ĐŇÉ ÚÁĐŇĎÓÁČ, ŐÓÔÁÎĎ×ËĹ É "
"ĎÂÎĎ×ĚĹÎÉÉ ĐÁËĹÔĎ×"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "ĎĐĂÉŃ --nopgp ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĐŇÉ ĐŇĎ×ĹŇËĹ ĐĎÄĐÉÓÉ"
-#: rpm.c:1098
+#: rpm.c:1100
msgid "--nogpg may only be used during signature checking"
msgstr "ĎĐĂÉŃ --nogpg ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĐŇÉ ĐŇĎ×ĹŇËĹ ĐĎÄĐÉÓÉ"
-#: rpm.c:1101
+#: rpm.c:1103
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr ""
"ĎĐĂÉŃ --nomd5 ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĐŇÉ ĐŇĎ×ĹŇËĹ ĐĎÄĐÉÓÉ É "
"×ĹŇÉĆÉËÁĂÉÉ ĐÁËĹÔÁ"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr "ÎĹÔ ÄĎÓÔŐĐÁ Ë ĆÁĘĚŐ %s\n"
-#: rpm.c:1149
+#: rpm.c:1151
msgid "pgp not found: "
msgstr "pgp ÎĹ ÎÁĘÄĹÎ: "
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr "÷×ĹÄÉÔĹ ĐÁŇĎĚŘ: "
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "îĹ×ĹŇÎŮĘ ĐÁŇĎĚŘ\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "đÁŇĎĚŘ ĐŇÉÎŃÔ.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr "îĹ×ĹŇÎÁŃ ÓĐĹĂÉĆÉËÁĂÉŃ %%_signature × ÍÁËŇĎĆÁĘĚĹ.\n"
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "ĎĐĂÉŃ --sign ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĐŇÉ ÓÂĎŇËĹ ĐÁËĹÔĎ×"
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr "ÚÁĐŐÓË ÎĹ ŐÄÁĚÓŃ\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "ÎĹĎÖÉÄÁÎÎŮĹ ÁŇÇŐÍĹÎÔŮ ÄĚŃ --querytags "
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐŇĎ×ĹŇËÉ ĐĎÄĐÉÓÉ"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐĎÄĐÉÓÉ"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐĹŇĹÓÂĎŇËÉ"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "ÎĹ ÚÁÄÁÎ spec-ĆÁĘĚ ÄĚŃ ÓÂĎŇËÉ ĐÁËĹÔÁ"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "ÎĹ ÚÁÄÁÎŮ tar-ĆÁĘĚŮ ÄĚŃ ÓÂĎŇËÉ ĐÁËĹÔÁ"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÄÁĚĹÎÉŃ"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "× ÚÁĐŇĎÓĹ ËĎ ×ÓĹÍ ĐÁËĹÔÁÍ ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "ÎĹ ÚÁÄÁÎŮ ÁŇÇŐÍĹÎÔŮ ÚÁĐŇĎÓÁ"
-#: rpm.c:1413
+#: rpm.c:1415
msgid "extra arguments given for verify of all packages"
msgstr "× ÚÁĐŇĎÓĹ ×ĹŇÉĆÉËÁĂÉÉ ×ÓĹČ ĐÁËĹÔĎ× ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "ÎĹ ÚÁÄÁÎŮ ÁŇÇŐÍĹÎÔŮ ÄĚŃ ×ĹŇÉĆÉËÁĂÉÉ"
@@ -2385,107 +2385,107 @@ msgstr "× ËĎÎĂĹ ×ŮŇÁÖĹÎÉŃ ĎÖÉÄÁĚÓŃ \"|\""
msgid "(unknown type)"
msgstr "(ÎĹÉÚ×ĹÓÔÎŮĘ ÔÉĐ)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr "ĆÁĘĚ : %s ÄĹĘÓÔ×ÉĹ: %s\n"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ, ÉÓĐĎĚŘÚŐŔ root"
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr "ÇŇŐĐĐÁ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ, ÉÓĐĎĚŘÚŐŔ root"
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "ÚÎÁŢĹÎÉĹ %%instchangelog × ÍÁËŇĎĆÁĘĚĹ ÄĎĚÖÎĎ ÂŮÔŘ ŢÉÓĚĎÍ, Á ĎÎĎ ÎĹÔ..."
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "ŇÁÓĐÁËĎ×ËÁ ÁŇČÉ×Á ÎĹ ŐÄÁĚÁÓŘ%s%s: %s"
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr " ÎÁ ĆÁĘĚĹ "
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr "ŐÓÔÁÎÁ×ĚÉ×ÁŔ ÉÓČĎÄÎŮĘ ĐÁËĹÔ\n"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "ÎĹ ÍĎÇŐ ÓĎÚÄÁÔŘ %s"
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, c-format
msgid "cannot write to %s"
msgstr "ÎĹ ÍĎÇŐ ĐÉÓÁÔŘ × %s"
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr "ÉÓČĎÄÎÉËÉ ×: %s\n"
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "ÎĹ ÍĎÇŐ ÓĎÚÄÁÔŘ %s"
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr "ĆÁĘĚ spec ×: %s\n"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
msgid "source package contains no .spec file"
msgstr "ÉÓČĎÄÎŮĘ ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ĆÁĘĚÁ .spec"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr "ĐĹŇĹÉÍĹÎĎ×Ů×ÁŔ %s × %s\n"
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "ĎŰÉÂËÁ ĐĹŇĹÉÍĹÎĎ×ÁÎÉŃ %s × %s: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr "ĎÖÉÄÁĚÓŃ ÉÓČĎÄÎŮĘ ĐÁËĹÔ, ÎÁĘÄĹÎ ÂÉÎÁŇÎŮĘ"
-#: lib/install.c:702
+#: lib/install.c:705
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "ĐÁËĹÔ: %s-%s-%s ĆÁĘĚĎ×; test = %d\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr "ĎÓÔÁÎÁ×ĚÉ×ÁŔ ŐÓÔÁÎĎ×ËŐ, Ô.Ë. ÍŮ ÉÓĐĎĚÎŃĹÍ --test\n"
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr "ÉÓĐĎĚÎŃŔ ÓËŇÉĐÔ preinstall (ĹÓĚÉ ĹÓÔŘ)\n"
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr "ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ: %s ÓĎÚÄÁÎ ËÁË %s"
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr "ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ: %s ÓĎČŇÁÎĹÎ ËÁË %s"
-#: lib/install.c:899
+#: lib/install.c:902
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "ÉÓĐĎĚÎŃŔ ÓËŇÉĐÔ postinstall (ĹÓĚÉ ĹÓÔŘ)\n"
diff --git a/po/sk.po b/po/sk.po
index ba63d8565..87e66db8f 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-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -977,8 +977,8 @@ msgid "rebuild database from existing database"
msgstr "znovu vytvoriť databázu z existujúcej"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "môže byť použitý iba jeden hlavný režim"
@@ -998,7 +998,7 @@ msgstr "--build (-b) vyžaduje jedno z a,b,i,c,p,l ako jediný argument"
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--tarbuild (-t) vyžaduje jedno z a,b,i,c,p,l ako jediný argument"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "naraz môže byť vykonaný jeden typ otázky alebo overenia"
@@ -1006,130 +1006,130 @@ msgstr "naraz môže byť vykonaný jeden typ otázky alebo overenia"
msgid "arguments to --dbpath must begin with a /"
msgstr "argumenty pre --dbpath musia začínať /"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "presunutia musia začínať znakom /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "presunutia musia obsahovať znak ="
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "presunutia musia mať za znakom = znak /"
-#: rpm.c:895
+#: rpm.c:897
msgid "exclude paths must begin with a /"
msgstr "vynechané cesty musia začínať znakom /"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath zadané pre operáciu nepoužívajúcu databázu"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck môže byť použité iba pri zostavovaní balíka"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "neočakávaný zdroj pre otázku"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "neočakávaný zdroj pre otázku"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "neočakávaný zdroj pre otázku"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "iba inštalácia, aktualizácia a odstránenie zdrojov môžu byť vynútené"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "súbory môžu byť presunuté iba počas inčtalácie balíka"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "može byť použitá iba jedna z volieb --prefix a --relocate"
-#: rpm.c:983
+#: rpm.c:985
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
"--relocate a --excludepath môžu byť použité iba počas inštalácie nových "
"balíkov"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix môže byť použitý iba počas inštalácie nových balíkov"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "argumenty pre --prefix musia začínať znakom /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) môže byť použitý iba počas inštalácie balíka"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "môže byť použitá iba jedna voľba z --excludedocs a --includedocs"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1028
+#: rpm.c:1030
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoresize môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches môže byť použité iba počas odstránenia balíkov"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles môže byť použité iba počas inštalácie balíka"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb môže byť použité iba počas inštalácie a odstránenia balíka"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1137,7 +1137,7 @@ msgstr ""
"--noscripts môže byť použité iba počas inštalácie, odstránenia alebo "
"overenia balíka"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
@@ -1145,7 +1145,7 @@ msgstr ""
"--notriggers môže byť použité iba počas inštalácie, odstránenia alebo "
"overenia balíka"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1154,7 +1154,7 @@ msgstr ""
"--nodeps môže byť použité iba počas inštalácie, odstránenia alebo overenia "
"balíka"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
@@ -1162,7 +1162,7 @@ msgstr ""
"--test môže byť použité iba počas inštalácie, odstránenia alebo zostavenia "
"balíka"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1170,122 +1170,122 @@ msgstr ""
"--root (-r) môže byť použité iba počas inštalácie a odstránenia balíka, "
"otázky alebo znovuzostavenia databázy"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenty pre --root (-r) musia začínať znakom /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage môže byť použíté iba počas aktualizácie"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"ftp voľby môže byť použíté iba počas otázok, inštalácie alebo aktualizácie"
-#: rpm.c:1091
+#: rpm.c:1093
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
"http voľby môže byť použíté iba počas otázok, inštalácie alebo aktualizácie"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp môže byť použíté iba počas overenia podpisu"
-#: rpm.c:1098
+#: rpm.c:1100
msgid "--nogpg may only be used during signature checking"
msgstr "--nogpg môže byť použíté iba počas overenia podpisu"
-#: rpm.c:1101
+#: rpm.c:1103
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr "--nomd5 môže byť použíté iba počas overenia podpisu alebo balíka"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr "nie je možné pracovať so súborom %s\n"
-#: rpm.c:1149
+#: rpm.c:1151
msgid "pgp not found: "
msgstr "pgp nebolo nájdené: "
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Kontrola hesla zlyhala\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Heslo je v poriadku.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr "Chybná špecifikácia %%_signature v makro-súbore.\n"
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign môže byť použíté iba počas zostavenia balíka"
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr "vykonanie zlyhalo\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "neočakávané argumenty pre --querytags"
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "neboli zadané žiadne balíky pre overenie podpisu"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "neboli zadané žiadne balíky na podpis"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "neboli zadané žiadne balíky pre znovuzostavenie"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "neboli zadané žiadne spec-súbory pre zostavenie"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "neboli zadané žiadne tar-súbory pre zostavenie"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "neboli zadané žiadne balíky pre odinštalovanie"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "neboli zadané žiadne balíky pre inštaláciu"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "neboli zadané žiadne argumenty pre otázku"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "neboli zadané žiadne argumenty pre overenie"
@@ -2388,107 +2388,107 @@ msgstr "| očakávené na konci výrazu"
msgid "(unknown type)"
msgstr "(neznámy typ)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr " súbor: akcia %s: %s\n"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr "používateľ %s neexistuje - použije sa root"
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr "skupina %s neexistuje - použije sa root"
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "hodnota %%instchangelog v makro-súbore by mala byť číselná, ale nie je"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr " pre súbor "
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr "inštaluje sa zdrojový balík\n"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "nie je možné zapísať do %s: "
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, c-format
msgid "cannot write to %s"
msgstr "nie je možné zapísať do %s: "
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr "zdroje v: %s\n"
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "nie je možné zapísať do %s: "
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr "spec-súbor v: %s\n"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
msgid "source package contains no .spec file"
msgstr "zdrojový balík neobsahuje žiadny .spec súbor"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr "premenováva sa %s na %s\n"
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "premenovanie %s na %s zlyhalo: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr "očakávaný zdrojový balík, nájdený binárny"
-#: lib/install.c:702
+#: lib/install.c:705
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr "inštalácia zastavená kvôli režimu --test\n"
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr "vykonávajú sa predinštalačné skripty (ak existujú)\n"
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr "varovanie: %s vytvorené ako %s"
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr "varovanie: %s uchovaný ako %s"
-#: lib/install.c:899
+#: lib/install.c:902
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "vykonávajú sa poinštalačné skripty (ak existujú)\n"
diff --git a/po/sl.po b/po/sl.po
index 33839373b..6962b5754 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.40 2000/05/10 15:36:30 jbj Exp $
+# $Id: sl.po,v 1.41 2000/05/12 23:30:29 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -969,8 +969,8 @@ msgid "rebuild database from existing database"
msgstr "ponovno izgradi zbirko iz obstoječe"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "samo en glavni način sme biti izbran"
@@ -990,7 +990,7 @@ msgstr "--build (-b) zahteva enega od a,b,i,c,p,l kot svoj edini argument"
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--tarbuild (-t) zahteva enega od a,b,i,c,p,l kot svoj edini argument"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "samo en tip poizvedbe/preverjanja naenkrat je možen"
@@ -998,126 +998,126 @@ msgstr "samo en tip poizvedbe/preverjanja naenkrat je možen"
msgid "arguments to --dbpath must begin with a /"
msgstr "argumenti --dbpath se morajo zaključiti z /"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "prestavitve se morajo začeti z /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "prestavitve morajo vsebovati ="
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "prestavitve morajo imeti /, ki sledi ="
-#: rpm.c:895
+#: rpm.c:897
msgid "exclude paths must begin with a /"
msgstr "poti, ki jih preskočimo, se morajo začeti z /"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "Interna napake pri obdelavi argumentov (%d)\n"
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "podani --dbpath ne uporablja podatkovne zbirke"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck smemo podati samo pri izgradnji paketa"
-#: rpm.c:962
+#: rpm.c:964
msgid "unexpected query flags"
msgstr "nepričakovane zastavice pri poizvedbi"
-#: rpm.c:965
+#: rpm.c:967
msgid "unexpected query format"
msgstr "nepričakovana oblika poizvedbe"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "nepričakovan izvor poizvedbe"
-#: rpm.c:974
+#: rpm.c:976
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
"--force smemo podati samo pri --install --upgrade, --rmsource in --rmspec"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "datoteke lahko prestavimo samo pri namestitvi paketa"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "izbiri --prefix in --relocate se izključujeta"
-#: rpm.c:983
+#: rpm.c:985
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "izbiri --relocate in --excludepath lahko uporabimo samo pri namestitvi"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix smemo uporabiti samo pri namestitvi"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "argumenti izbire --prefix se morajo začeti z /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) smemo podati samo ob namestitvi paketa"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent smemo podati samo ob namestitvi paketa"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles smemo podati samo ob namestitvi paketa"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs smemo podati samo ob namestitvi paketa"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs smemo podati samo ob namestitvi paketa"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs smemo podati samo ob namestitvi paketa"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "izbiri --excludedocs in --includedocs se izključujeta"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch smemo podati samo ob namestitvi paketa"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos smemo podati samo ob namestitvi paketa"
-#: rpm.c:1028
+#: rpm.c:1030
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoresize smemo podati samo ob namestitvi paketa"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches smemo podati samo ob odstranitvi paketa"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles smemo podati samo ob namestitvi paketa"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb smemo podati samo ob namestitvi ali odstranitvi paketa"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1125,7 +1125,7 @@ msgstr ""
"--noscripts smemo podati samo ob namestitvi, odstranitvi ali preverjanju "
"paketa"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
@@ -1133,7 +1133,7 @@ msgstr ""
"--notriggers smemo podati samo ob namestitvi, odstranitvi ali preverjanju "
"paketa"
-#: rpm.c:1053
+#: rpm.c:1055
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
@@ -1141,14 +1141,14 @@ msgstr ""
"--nodeps smemo podati samo ob izgradnji, vnovični izgradnji, prevajanju, "
"namestitvi, odstranitvi ali preverjanju paketa"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
"--test smemo podati samo ob namestitvi, odstranitvi ali izgradnji paketa"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1156,120 +1156,120 @@ msgstr ""
"--root (-r) smemo podati samo ob namestitvi, odstranitvi poizvedbi ali "
"vnovični izgradnji paketa"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenti izbire --root (-r) se morajo začeti z /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage smemo podati samo ob nadgradnji"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr "izbire za ftp smemo podati samo ob poizvedbi, namestitvi in nadgradnji"
-#: rpm.c:1091
+#: rpm.c:1093
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
"izbire za http smemo podati samo ob poizvedbi, namestitvi in nadgradnji"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp smemo podati samo ob preverjanju podpisa"
-#: rpm.c:1098
+#: rpm.c:1100
msgid "--nogpg may only be used during signature checking"
msgstr "--nogpg smemo podati samo ob preverjanju podpisa"
-#: rpm.c:1101
+#: rpm.c:1103
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr "--nomd5 smemo podati samo ob preverjanju podpisa ali paketa"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr "datoteka za podpis manjka\n"
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr "dostop do datoteke %s ni možen\n"
-#: rpm.c:1149
+#: rpm.c:1151
msgid "pgp not found: "
msgstr "pgp manjka: "
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr "Vnesite pristopno geslo: "
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Preverjanje pristopnega gesla neuspešno\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Pristopno geslo je pravo.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr "Neveljaven %%_signature v makrodatoteki.\n"
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign smemo podati samo ob izgradnji paketa"
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr "exec neuspešen\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "nepričakovani argumenti za --querytags "
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "paketi za preverjanje podpisa niso navedeni"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "paketi za podpisovanje niso navedeni"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "paketi za vnovično izgradnjo niso navedeni"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "datoteka spec za izgradnjo manjka"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "arhiv tar za izgradnjo manjka"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "paketi za odstranitev niso navedeni"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "paketi za namestitev niso navedeni"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "pri poizvedbi paketov so podani odvečni argumenti"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "argumenti za poizvedbo niso podani"
-#: rpm.c:1413
+#: rpm.c:1415
msgid "extra arguments given for verify of all packages"
msgstr "pri preverjanju paketov so podani odvečni argumenti"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "argumenti za preverjanje niso podani"
@@ -2375,107 +2375,107 @@ msgstr "| pričakovan na koncu izraza"
msgid "(unknown type)"
msgstr "(neznan tip)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr " datoteka: %s akcija: %s\n"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr "uporabnik %s ne obstaja - uporabljamo root"
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr "skupina %s ne obstaja - uporabljamo root"
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "vrednost %%instchangelog v makrodatoteki bi morala biti število, pa ni"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "razpakiranje arhiva neuspešno%s%s: %s"
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr " pri datoteki "
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr "nameščanje izvornega paketa\n"
-#: lib/install.c:430
+#: lib/install.c:433
#, c-format
msgid "cannot create sourcedir %s"
msgstr "ni možno ustvariti izvornega imenika %s"
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, c-format
msgid "cannot write to %s"
msgstr "ni možno pisanje na %s"
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr "izvori v: %s\n"
-#: lib/install.c:460
+#: lib/install.c:463
#, c-format
msgid "cannot create specdir %s"
msgstr "ni možno ustvariti imenika z določili spec %s"
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr "datoteka spec v: %s\n"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
msgid "source package contains no .spec file"
msgstr "izvorni paket ne vsebuje datoteke .spec"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr "preimenujemo %s v %s\n"
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "preimenovanje %s v %s neuspešno: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr "pričakovan izvorni paket, najden binarni"
-#: lib/install.c:702
+#: lib/install.c:705
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr "ustavljamo namestitev ker tečemo kot --test\n"
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr "poganjamo prednamestitvene skripte (če obstajajo)\n"
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr "opozorilo: %s ustvarjen kot %s"
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr "opozorilo: %s shranjen kot %s"
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr "poganjamo ponamestitvene skripte (če obstajajo)\n"
diff --git a/po/sr.po b/po/sr.po
index 8e2a68953..78d90adad 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -993,8 +993,8 @@ msgid "rebuild database from existing database"
msgstr "rekreiraj bazu podataka iz postojeće baze"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "samo jedan glavni režim može biti naveden"
@@ -1015,7 +1015,7 @@ msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
"--tarbuild (-t) zahteva jedan od sledećih podargumenata: a,b,c,i,p ili l"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "samo jedan tip upita/provere može biti urađen odjednom"
@@ -1023,131 +1023,131 @@ msgstr "samo jedan tip upita/provere može biti urađen odjednom"
msgid "arguments to --dbpath must begin with a /"
msgstr "argumenti za --dbpath moraju početi znakom '/'"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "premeštanja moraju početi znakom '/'"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "premeštanja moraju imati znak ="
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "premeštanja moraju imati / praćeno sa ="
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "premeštanja moraju početi znakom '/'"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck se može koristiti samo kod kreiranja paketa"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "neočekivan izvor upita"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "neočekivan izvor upita"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "neočekivan izvor upita"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "samo instalacija i ažuriranje mogu biti forsirane"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "datoteke mogu biti premeštene samo tokom instalacije paketa"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "samo jedno možete koristiti: --prefix ili --relocate"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--relocate možete koristiti samo kad instalirate novi paket"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix možete koristiti samo kod instalacije novog paketa"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "argumenti za --prefix moraju početi znakom /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) možete koristiti samo kod instalacije paketa"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent možete koristiti samo kod instalacije paketa"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles možete koristiti samo kod instalacije paketa"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs možete koristiti samo kod instalacije paketa"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludecocs možete koristiti samo kod instalacije paketa"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includecocs možete koristiti samo kod instalacije paketa"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "samo jedno možete da navedete: --excludedocs ili --includedocs"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch možete koristiti samo kod instalacije paketa"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos možete koristiti samo kod instalacije paketa"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoreos možete koristiti samo kod instalacije paketa"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches možete koristiti samo kod brisanja paketa"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles možete koristiti samo kod instalacije paketa"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb možete koristiti samo kod instalacije i brisanja paketa"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1155,7 +1155,7 @@ msgstr ""
"--noscripsts možete koristiti samo kod instalacije, uklanjanja ili provere "
"paketa"
-#: rpm.c:1049
+#: rpm.c:1051
#, fuzzy
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
@@ -1163,7 +1163,7 @@ msgid ""
msgstr ""
"--nodeps možete koristiti samo kod instalacije, uklanjanja ili provere paketa"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1171,14 +1171,14 @@ msgid ""
msgstr ""
"--nodeps možete koristiti samo kod instalacije, uklanjanja ili provere paketa"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
"--test možete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1186,22 +1186,22 @@ msgstr ""
"--root (-r) možete navesti samo kod instalacije, uklanjanja, upita ili "
"rekreiranja baze podataka"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenti za --root (-r) moraju početi znakom /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage se može koristiti samo tokom ažuriranja paketa"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"opcije za FTP se mogu koristiti samo kod upita, instalacije ili ažuriranja "
"paketa"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
@@ -1209,106 +1209,106 @@ msgstr ""
"opcije za FTP se mogu koristiti samo kod upita, instalacije ili ažuriranja "
"paketa"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp se može koristiti samo prilikom provere potpisa"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp se može koristiti samo prilikom provere potpisa"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr "--nopgp se može koristiti samo kod provere potpisa ili paketa"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "Datoteka nije pronađena na serveru"
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Neuspela provera lozinke\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Lozinka je dobra.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign se može koristiti samo kod kreiranja paketa"
-#: rpm.c:1184
+#: rpm.c:1186
#, fuzzy
msgid "exec failed\n"
msgstr "%s: Neuspelo otvaranje\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "neočekivani argumenti za --querytags"
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "nedostaje paket za proveru potpisa"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "nedostaje paket za potpisivanje"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "nedosataje paket za rekreiranje"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "nedostaje specifikacije za kreiranje"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "nedostaju 'tar' datoteke za kreiranje"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "neodstaje paket za deinstalaciju"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "nedostaje paket za instalaciju"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "suvišni argumenti su navedeni za upit nad svim paketima"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "nedostaju argumenti za upit"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "suvišni argumenti su navedeni za upit nad svim paketima"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "nedostaju argumenti za proveru"
@@ -2420,109 +2420,109 @@ msgstr "| očekivano na kraju izraza"
msgid "(unknown type)"
msgstr "(nepoznat tip)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
#, fuzzy
msgid "installing a source package\n"
msgstr "instaliraj paket"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:470
+#: lib/install.c:473
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
#, fuzzy
msgid "source package contains no .spec file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "preimenovanje %s u %s nije uspelo: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:702
+#: lib/install.c:705
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index b53a08ef2..3ea491a30 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,12 +1,12 @@
# Swedish messages for RPM
# Copyright Š 1999 Free Software Foundation, Inc.
# Göran Uddeborg <göran@uddeborg.pp.se>, 1999, 2000.
-# $Revision: 1.100 $
+# $Revision: 1.101 $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-0400\n"
"PO-Revision-Date: 2000-02-21 12:20+0100\n"
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -956,8 +956,8 @@ msgid "rebuild database from existing database"
msgstr "bygg om databasen frĺn existerande databas"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "enbart ett läge kan specifieras"
@@ -977,7 +977,7 @@ msgstr "--build (-b) kräver en av a,b,i,c,p,l som dess enda argument"
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--tarbuild (-t) kräver en av a,b,i,c,p,l som sitt enda argument"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "en typ av undersökning/verifiering kan utföras ĺt gĺngen"
@@ -985,128 +985,128 @@ msgstr "en typ av undersökning/verifiering kan utföras ĺt gĺngen"
msgid "arguments to --dbpath must begin with a /"
msgstr "argument till --dbpath mĺste börja med /"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "omflyttningar mĺste börja med /"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "omflyttningar mĺste innehĺlla ett ="
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "omflyttningar mĺste ha ett / efter ="
-#: rpm.c:895
+#: rpm.c:897
msgid "exclude paths must begin with a /"
msgstr "uteslutna sökvägar mĺste börja med /"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "Internt fel i argumenthantering (%d) :-(\n"
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath angivet för en operation som inte använder nĺgon databas"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck kan enbart användas vid pakettillverkning"
-#: rpm.c:962
+#: rpm.c:964
msgid "unexpected query flags"
msgstr "oväntade undersökningsflaggor"
-#: rpm.c:965
+#: rpm.c:967
msgid "unexpected query format"
msgstr "oväntat undersökningsformat"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "oväntad undersökningskälla"
-#: rpm.c:974
+#: rpm.c:976
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
"enbart installation, uppgradering, rmsource och rmspec kan tvingas fram"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "filer kan relokeras endast under paketinstallation"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "enbart en av --prefix eller --relocate kan användas"
-#: rpm.c:983
+#: rpm.c:985
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
"--relocate och --excludepath kan endast användas när nya paket installeras"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix kan endast användas när nya paket installeras"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "argument till --prefix mĺste börja med /"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) kan enbart användas vid paketinstallation"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent kan enbart användas vid paketinstallation"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles kan enbart användas vid paketinstallation"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs kan enbart användas vid paketinstallation"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs kan enbart användas vid paketinstallation"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs kan enbart användas vid paketinstallation"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "enbart en av --excludedocs och --includedocs läge kan specifieras"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch kan enbart användas vid paketinstallation"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos kan enbart användas vid paketinstallation"
-#: rpm.c:1028
+#: rpm.c:1030
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoresize kan enbart användas vid paketinstallation"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches kan enbart användas när paket tas bort"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles kan enbart användas vid paketinstallation"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
"--justdb kan enbart användas vid installation och avinstallation av paket"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
@@ -1114,7 +1114,7 @@ msgstr ""
"--noscripts kan enbart användas vid paketinstallation, avinstallation och "
"verifiering"
-#: rpm.c:1049
+#: rpm.c:1051
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
@@ -1122,7 +1122,7 @@ msgstr ""
"--notriggers kan enbart användas vid installation, avinstallation och "
"verifiering"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1131,14 +1131,14 @@ msgstr ""
"--nodeps kan enbart användas vid tillverkning, installation, avinstallation, "
"och verifiering"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
"--test kan enbart användas vid installation, avinstallation och tillverkning"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1146,121 +1146,121 @@ msgstr ""
"--root (-r) kan enbart användas vid installation, avinstallation, förfrĺgan, "
"och databasombyggnad"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "argument till --root (-r) mĺste börja med /"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage kan enbart användas vid paketuppgraderingar"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"ftp-flaggor kan enbart användas vid förfrĺgan, installation och uppgradering"
-#: rpm.c:1091
+#: rpm.c:1093
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
"http-flaggor kan enbart användas vid förfrĺgan, installation och uppgradering"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp kan enbart användas vid signaturkontroll"
-#: rpm.c:1098
+#: rpm.c:1100
msgid "--nogpg may only be used during signature checking"
msgstr "--nogpg kan enbart användas vid signaturkontroll"
-#: rpm.c:1101
+#: rpm.c:1103
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr "--nomd5 kan enbart användas vid signaturkontroll och paketverifiering"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr "inga filer att signera\n"
-#: rpm.c:1134
+#: rpm.c:1136
#, c-format
msgid "cannot access file %s\n"
msgstr "kan inte komma ĺt filen %s\n"
-#: rpm.c:1149
+#: rpm.c:1151
msgid "pgp not found: "
msgstr "pgp hittades inte: "
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr "Ange lösenfras: "
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Kontrollen av lösenfrasen misslyckades\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Lösenfrasen är ok.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr "Felaktig %%_signature spec i makrofil.\n"
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign kan enbart användas vid pakettillverkning"
-#: rpm.c:1184
+#: rpm.c:1186
msgid "exec failed\n"
msgstr "exec misslyckades\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "oväntade argument till --querytags "
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "inga paket angivna för signatur kontroll"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "inga paket angivna för signering"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "inga paketfiler angivna för omtillverkning"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "ingen spec-filer angivna för tillverkning"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "inga tar-filer angivna för tillverkning"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "inga paket angivna för avinstallation"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "inga paket angivna för installation"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "extra argument angivna för förfrĺgan om alla paket"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "inga parametrar angivna för undersökning"
-#: rpm.c:1413
+#: rpm.c:1415
msgid "extra arguments given for verify of all packages"
msgstr "extra argument angivna för verifiering av alla paket"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "inga parametrar angivna för verifiering"
@@ -2365,107 +2365,107 @@ msgstr "| förväntades vid slutet pĺ uttryck"
msgid "(unknown type)"
msgstr "(okänd typ)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, c-format
msgid " file: %s action: %s\n"
msgstr " fil: %s ĺtgärd: %s\n"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr "användare %s finns inte - använder root"
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr "grupp %s finns inte - använder root"
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "%%instchangelog-värde i makrofil skall vara ett tal, men är inte det"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "uppackning av arkiv misslyckades%s%s: %s"
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr " vid fil "
-#: lib/install.c:410
+#: lib/install.c:413
msgid "installing a source package\n"
msgstr "installerar källpaket\n"
-#: lib/install.c:430
+#: lib/install.c:433
#, c-format
msgid "cannot create sourcedir %s"
msgstr "kan inte skapa källkatalog %s"
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, c-format
msgid "cannot write to %s"
msgstr "kan inte skriva till %s"
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr "källkod i: %s\n"
-#: lib/install.c:460
+#: lib/install.c:463
#, c-format
msgid "cannot create specdir %s"
msgstr "kan inte skapa spec-katalog %s"
-#: lib/install.c:470
+#: lib/install.c:473
#, c-format
msgid "spec file in: %s\n"
msgstr "spec-fil i: %s\n"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
msgid "source package contains no .spec file"
msgstr "källpaket innehĺller ingen spec-fil"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr "byter namn pĺ %s till %s\n"
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "namnbyte frĺn %s till %s misslyckades: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr "källpaket förväntades, fann binärpaket"
-#: lib/install.c:702
+#: lib/install.c:705
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket: %s-%s-%s filtest = %d\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr "avbryter installation eftersom vi kör --test\n"
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr "kör (eventuellt) preinstalltionsskript\n"
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr "varning: %s skapades som %s"
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr "varning: %s sparades som %s"
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr "kör (eventuellt) postinstallationsskript\n"
diff --git a/po/tr.po b/po/tr.po
index 50bb017c7..4aa92509f 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-05-10 11:32-0400\n"
+"POT-Creation-Date: 2000-05-12 19:24-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"
@@ -1033,8 +1033,8 @@ msgid "rebuild database from existing database"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluţturur"
#: rpm.c:689 rpm.c:695 rpm.c:702 rpm.c:708 rpm.c:717 rpm.c:724 rpm.c:771
-#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:875 rpm.c:930
-#: rpm.c:937
+#: rpm.c:777 rpm.c:811 rpm.c:817 rpm.c:823 rpm.c:831 rpm.c:877 rpm.c:932
+#: rpm.c:939
msgid "only one major mode may be specified"
msgstr "sadece bir ana kip (major mode) belirtilebilir"
@@ -1056,7 +1056,7 @@ msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
"--tarbuild (-t) tek argüman olarak a,b,i,c,p,l harflerinden birini kabul eder"
-#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:944
+#: rpm.c:784 rpm.c:790 rpm.c:797 rpm.c:804 rpm.c:946
msgid "one type of query/verify may be performed at a time"
msgstr "bir anda sadece bir tarz sorgulama veya dođrulama yapýlabilir"
@@ -1064,138 +1064,138 @@ msgstr "bir anda sadece bir tarz sorgulama veya dođrulama yapýlabilir"
msgid "arguments to --dbpath must begin with a /"
msgstr "--dbpath için verilen argümanlar '/' ile baţlamalý"
-#: rpm.c:881
+#: rpm.c:883
msgid "relocations must begin with a /"
msgstr "relocate iţlemi / ile baţlamalý"
-#: rpm.c:883
+#: rpm.c:885
msgid "relocations must contain a ="
msgstr "relocate satýrýnda = bulunmalý"
-#: rpm.c:886
+#: rpm.c:888
msgid "relocations must have a / following the ="
msgstr "relocate için = den sonra bir / gerekir"
-#: rpm.c:895
+#: rpm.c:897
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "relocate iţlemi / ile baţlamalý"
-#: rpm.c:904
+#: rpm.c:906
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
-#: rpm.c:955
+#: rpm.c:957
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath veritabaný kullanýlmayan bir iţlemde belirtildi"
-#: rpm.c:959
+#: rpm.c:961
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck sadece paket oluţturulurken kullanýlabilir"
-#: rpm.c:962
+#: rpm.c:964
#, fuzzy
msgid "unexpected query flags"
msgstr "beklenmeyen sorgulama kaynađý girildi"
-#: rpm.c:965
+#: rpm.c:967
#, fuzzy
msgid "unexpected query format"
msgstr "beklenmeyen sorgulama kaynađý girildi"
-#: rpm.c:968
+#: rpm.c:970
msgid "unexpected query source"
msgstr "beklenmeyen sorgulama kaynađý girildi"
-#: rpm.c:974
+#: rpm.c:976
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "sadece yükleme ve güncelleme zorlanabilir (force edilebilir)"
-#: rpm.c:977
+#: rpm.c:979
msgid "files may only be relocated during package installation"
msgstr "dosyalar sadece paket yüklemesi sýrasýnda relocate edilebilir"
-#: rpm.c:980
+#: rpm.c:982
msgid "only one of --prefix or --relocate may be used"
msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir"
-#: rpm.c:983
+#: rpm.c:985
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--relocate sadece yeni paketler yüklenirken kullanýlýr"
-#: rpm.c:986
+#: rpm.c:988
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix sadece yeni paketlerin yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:989
+#: rpm.c:991
msgid "arguments to --prefix must begin with a /"
msgstr "--prefix komutunun argümanlarý '/' ile baţlamalý"
-#: rpm.c:992
+#: rpm.c:994
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:996
+#: rpm.c:998
msgid "--percent may only be specified during package installation"
msgstr "--percent sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1000
+#: rpm.c:1002
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1004
+#: rpm.c:1006
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1008
+#: rpm.c:1010
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1012
+#: rpm.c:1014
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1016
+#: rpm.c:1018
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
"--excludedocs ve --includedocs bir arada kullanýlamaz (bi daha olmasýn)"
-#: rpm.c:1020
+#: rpm.c:1022
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1024
+#: rpm.c:1026
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1028
+#: rpm.c:1030
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1032
+#: rpm.c:1034
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches sadece paket silinmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1036
+#: rpm.c:1038
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
-#: rpm.c:1040
+#: rpm.c:1042
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb sadece paket yükleme ve silmelerinde kullanýlýr"
-#: rpm.c:1045
+#: rpm.c:1047
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
msgstr "--noscripts sadece paket yükleme, silme ve dođrulamalarýnda kullanýlýr"
-#: rpm.c:1049
+#: rpm.c:1051
#, fuzzy
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
@@ -1203,7 +1203,7 @@ msgid ""
msgstr ""
"--nodeps sadece paket yüklemelerinde, silme ve dođrulamalarda kullanýlýr"
-#: rpm.c:1053
+#: rpm.c:1055
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
@@ -1211,13 +1211,13 @@ msgid ""
msgstr ""
"--nodeps sadece paket yüklemelerinde, silme ve dođrulamalarda kullanýlýr"
-#: rpm.c:1058
+#: rpm.c:1060
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr "--test sadece paket yüklemelerinde, silme ve derlemelerinde kullanýlýr"
-#: rpm.c:1062
+#: rpm.c:1064
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
@@ -1225,126 +1225,126 @@ msgstr ""
"--root (-r) sadece yükleme, silme, sorgulama ve veritabaný güncellemelerinde "
"kullanýlýr"
-#: rpm.c:1074
+#: rpm.c:1076
msgid "arguments to --root (-r) must begin with a /"
msgstr "--root (-r) komutun argümanlarý '/' ile baţlamalý"
-#: rpm.c:1080
+#: rpm.c:1082
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage sadece güncelleme sýrasýnda kullanýlabilir"
-#: rpm.c:1085
+#: rpm.c:1087
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr "FTP seçenekleri sadece sorgulama, yükleme ve güncellemede kullanýlýr"
-#: rpm.c:1091
+#: rpm.c:1093
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr "FTP seçenekleri sadece sorgulama, yükleme ve güncellemede kullanýlýr"
-#: rpm.c:1095
+#: rpm.c:1097
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
-#: rpm.c:1098
+#: rpm.c:1100
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
-#: rpm.c:1101
+#: rpm.c:1103
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr ""
"--nopgp sadece imza kontrolü veya paket dođrulamasý sýrasýnda kullanýlýr"
-#: rpm.c:1129
+#: rpm.c:1131
msgid "no files to sign\n"
msgstr ""
-#: rpm.c:1134
+#: rpm.c:1136
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "%s dosyasý açýlamýyor: "
-#: rpm.c:1149
+#: rpm.c:1151
#, fuzzy
msgid "pgp not found: "
msgstr "Dosya sunucuda bulunamadý"
-#: rpm.c:1153
+#: rpm.c:1155
msgid "Enter pass phrase: "
msgstr ""
-#: rpm.c:1155
+#: rpm.c:1157
msgid "Pass phrase check failed\n"
msgstr "Parola kontrolü baţarýsýzlýkla sonuçlandý\n"
-#: rpm.c:1158
+#: rpm.c:1160
msgid "Pass phrase is good.\n"
msgstr "Parola dođru.\n"
-#: rpm.c:1163
+#: rpm.c:1165
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
-#: rpm.c:1169
+#: rpm.c:1171
msgid "--sign may only be used during package building"
msgstr "--sign sadece paket olusturulurken kullanýlabilir"
-#: rpm.c:1184
+#: rpm.c:1186
#, fuzzy
msgid "exec failed\n"
msgstr "%s: Eriţilemedi\n"
-#: rpm.c:1203
+#: rpm.c:1205
msgid "unexpected arguments to --querytags "
msgstr "--querytags için beklenmeyen argümanlar"
-#: rpm.c:1214
+#: rpm.c:1216
msgid "no packages given for signature check"
msgstr "imzasý kontrol edilecek paketler belirtilmedi"
-#: rpm.c:1225
+#: rpm.c:1227
msgid "no packages given for signing"
msgstr "imzalanacak paketler belirtilmedi"
-#: rpm.c:1237
+#: rpm.c:1239
msgid "no packages files given for rebuild"
msgstr "yeniden oluţturmak için paket dosyalarý belirtilmedi"
-#: rpm.c:1300
+#: rpm.c:1302
msgid "no spec files given for build"
msgstr "oluţturma için gerekli spec dosyasý belirtilmedi"
-#: rpm.c:1302
+#: rpm.c:1304
msgid "no tar files given for build"
msgstr "oluţturma için gereken tar dosyalarý belirttilmedi"
-#: rpm.c:1318
+#: rpm.c:1320
msgid "no packages given for uninstall"
msgstr "sistemden silinecek paketler belirtilmedi"
-#: rpm.c:1368
+#: rpm.c:1370
msgid "no packages given for install"
msgstr "yüklenecek paketler belirtilmedi"
-#: rpm.c:1391
+#: rpm.c:1393
msgid "extra arguments given for query of all packages"
msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
-#: rpm.c:1396
+#: rpm.c:1398
msgid "no arguments given for query"
msgstr "sorgulama için hiç argüman belirtilmedi"
-#: rpm.c:1413
+#: rpm.c:1415
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
-#: rpm.c:1417
+#: rpm.c:1419
msgid "no arguments given for verify"
msgstr "dođrulama için hiç argüman belirtilmedi"
@@ -2458,109 +2458,109 @@ msgstr "dizinin sonunda | bekleniyordu"
msgid "(unknown type)"
msgstr "(bilinmeyen tip)"
-#: lib/install.c:145 lib/uninstall.c:185
+#: lib/install.c:148 lib/uninstall.c:185
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "%s açýlamadý: %s"
-#: lib/install.c:164
+#: lib/install.c:167
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:172
+#: lib/install.c:175
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:201
+#: lib/install.c:204
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:365
+#: lib/install.c:368
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:366
+#: lib/install.c:369
msgid " on file "
msgstr ""
-#: lib/install.c:410
+#: lib/install.c:413
#, fuzzy
msgid "installing a source package\n"
msgstr "paket yüklemek"
-#: lib/install.c:430
+#: lib/install.c:433
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:436 lib/install.c:466
+#: lib/install.c:439 lib/install.c:469
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:440
+#: lib/install.c:443
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:460
+#: lib/install.c:463
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:470
+#: lib/install.c:473
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "%s açýlamadý: %s"
-#: lib/install.c:504 lib/install.c:532
+#: lib/install.c:507 lib/install.c:535
#, fuzzy
msgid "source package contains no .spec file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/install.c:554
+#: lib/install.c:557
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:556 lib/install.c:830 lib/uninstall.c:28
+#: lib/install.c:559 lib/install.c:833 lib/uninstall.c:28
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s 'nin isminin %s 'ye çevrilmesinde belirtilen hata oluţtu: %s"
-#: lib/install.c:647
+#: lib/install.c:650
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:702
+#: lib/install.c:705
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/install.c:760
+#: lib/install.c:763
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:765
+#: lib/install.c:768
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:790
+#: lib/install.c:793
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:826
+#: lib/install.c:829
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:899
+#: lib/install.c:902
msgid "running postinstall scripts (if any)\n"
msgstr ""
diff --git a/rpm.spec b/rpm.spec
index 2c8c6aa7d..339d2bf22 100644
--- a/rpm.spec
+++ b/rpm.spec
@@ -2,7 +2,7 @@ Summary: The Red Hat package management system.
Name: rpm
%define version 3.1
Version: %{version}
-Release: 0.16
+Release: 0.17
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/rpm-%{version}.tar.gz
Copyright: GPL
@@ -236,6 +236,9 @@ fi
/usr/include/popt.h
%changelog
+* Fri May 12 2000 Jeff Johnson <jbj@redhat.com>
+- fix stupid mistakes (alpha segfaults).
+
* Wed May 10 2000 Jeff Johnson <jbj@redhat.com>
- include RPM-GPG-KEY in file manifest.
- simplify --last popt alias, date like -qi (bjerrick@easystreet.com).