add (disabled for now) dependency check to rpmgraph.

splint and gettext fiddles.

CVS patchset: 5536
CVS date: 2002/07/02 13:16:50
This commit is contained in:
jbj 2002-07-02 13:16:50 +00:00
parent 8c4991e9d5
commit 77076c7c8d
44 changed files with 9024 additions and 5026 deletions

View File

@ -143,8 +143,8 @@ Header headerRegenSigHeader(const Header h)
/*@unchecked@*/
static int nkeyids = 0;
/*@unchecked@*/
static int * keyids = NULL;
/*@unchecked@*/ /*@only@*/ /*@null@*/
static int * keyids;
/**
* Remember current key id.
@ -152,8 +152,8 @@ static int * keyids = NULL;
* @return 0 if new keyid, otherwise 1
*/
static int rpmtsStashKeyid(rpmts ts)
/*@globals keyids, nkeyids @*/
/*@modifies keyids, nkeyids @*/
/*@globals nkeyids, keyids @*/
/*@modifies nkeyids, keyids @*/
{
struct pgpDigParams_s * sigp = NULL;
unsigned int keyid;
@ -164,15 +164,19 @@ static int rpmtsStashKeyid(rpmts ts)
sigp = &ts->dig->signature;
keyid = pgpGrab(sigp->signid+4, 4);
if (keyid == 0)
return 0;
if (keyids != NULL && keyid > 0)
if (keyids != NULL)
for (i = 0; i < nkeyids; i++) {
if (keyid == keyids[i])
return 1;
}
keyids = xrealloc(keyids, (nkeyids + 1) * sizeof(*keyids));
/*@-boundswrite@*/
keyids[nkeyids] = keyid;
/*@=boundswrite@*/
nkeyids++;
return 0;

View File

@ -25,7 +25,7 @@ static const char * pipeOutput = NULL;
/*@unchecked@*/
/*@observer@*/ /*@null@*/
static const char * rcfile = NULL;
/*@unchecked@*/
/*@unchecked@*/ /*@observer@*/
static const char * rootdir = "/";
/*@-exportheadervar@*/
@ -53,8 +53,10 @@ static void printVersion(void)
*/
/*@mayexit@*/
static void rpmcliConfigured(void)
/*@globals internalState @*/
/*@modifies internalState @*/
/*@globals rpmCLIMacroContext, rpmGlobalMacroContext,
fileSystem, internalState @*/
/*@modifies rpmCLIMacroContext, rpmGlobalMacroContext,
fileSystem, internalState @*/
{
static int initted = -1;
@ -71,7 +73,10 @@ static void rpmcliAllArgCallback( /*@unused@*/ poptContext con,
/*@unused@*/ enum poptCallbackReason reason,
const struct poptOption * opt, const char * arg,
/*@unused@*/ const void * data)
/*@*/
/*@globals rpmCLIMacroContext, rpmGlobalMacroContext,
fileSystem, internalState @*/
/*@modifies rpmCLIMacroContext, rpmGlobalMacroContext,
fileSystem, internalState @*/
{
#if 0
/*@observer@*/
@ -92,7 +97,9 @@ fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->sho
case 'D':
(void) rpmDefineMacro(NULL, arg, RMIL_CMDLINE);
rpmcliConfigured();
/*@-type@*/
(void) rpmDefineMacro(rpmCLIMacroContext, arg, RMIL_CMDLINE);
/*@=type@*/
break;
case 'E':
rpmcliConfigured();
@ -118,6 +125,7 @@ fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->sho
/*@=branchstate@*/
}
/*@-bitwisesigned -compmempass @*/
/*@unchecked@*/
struct poptOption rpmcliAllPoptTable[] = {
/*@-type@*/ /* FIX: cast? */
@ -158,7 +166,7 @@ struct poptOption rpmcliAllPoptTable[] = {
N_("read <FILE:...> instead of default file(s)"),
N_("<FILE:...>") },
#endif
{ "showrc", '\0', 0, POPT_SHOWRC|POPT_ARGFLAG_DOC_HIDDEN, 0,
{ "showrc", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_SHOWRC,
N_("display final rpmrc and macro configuration"),
NULL },
@ -176,6 +184,7 @@ struct poptOption rpmcliAllPoptTable[] = {
POPT_TABLEEND
};
/*@=bitwisesigned =compmempass @*/
poptContext
rpmcliFini(poptContext optCon)
@ -183,12 +192,15 @@ rpmcliFini(poptContext optCon)
optCon = poptFreeContext(optCon);
#if HAVE_MCHECK_H && HAVE_MTRACE
/*@-noeffect@*/
muntrace(); /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
/*@=noeffect@*/
#endif
return NULL;
}
/*@-globstate@*/
poptContext
rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
{
@ -197,8 +209,11 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
int rc;
#if HAVE_MCHECK_H && HAVE_MTRACE
/*@-noeffect@*/
mtrace(); /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
/*@=noeffect@*/
#endif
/*@-globs -mods@*/
setprogname(argv[0]); /* Retrofit glibc __progname */
/* XXX glibc churn sanity */
@ -206,14 +221,14 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
if ((__progname = strrchr(argv[0], '/')) != NULL) __progname++;
else __progname = argv[0];
}
/*@=globs =mods@*/
#if !defined(__LCLINT__)
(void)setlocale(LC_ALL, "" );
#ifdef __LCLINT__
#define LOCALEDIR "/usr/share/locale"
#endif
(void)bindtextdomain(PACKAGE, LOCALEDIR);
(void)textdomain(PACKAGE);
#endif
rpmSetVerbosity(RPMMESS_NORMAL);
@ -223,9 +238,11 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
return NULL;
}
/*@-nullpass -temptrans@*/
optCon = poptGetContext(__progname, argc, (const char **)argv, optionsTable, 0);
/*@=nullpass =temptrans@*/
(void) poptReadConfigFile(optCon, LIBRPMALIAS_FILENAME);
poptReadDefaultConfig(optCon, 1);
(void) poptReadDefaultConfig(optCon, 1);
poptSetExecPath(optCon, RPMCONFIGDIR, 1);
/* Process all options, whine if unknown. */
@ -233,18 +250,22 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
optArg = poptGetOptArg(optCon);
switch (rc) {
default:
/*@-nullpass@*/
fprintf(stderr, _("%s: option table misconfigured (%d)\n"),
__progname, rc);
/*@=nullpass@*/
exit(EXIT_FAILURE);
/*@notreached@*/ break;
/*@notreached@*/ /*@switchbreak@*/ break;
}
}
if (rc < -1) {
/*@-nullpass@*/
fprintf(stderr, "%s: %s: %s\n", __progname,
poptBadOption(optCon, POPT_BADOPTION_NOALIAS),
poptStrerror(rc));
/*@=nullpass@*/
exit(EXIT_FAILURE);
}
@ -258,5 +279,6 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
return optCon;
}
/*@=globstate@*/
/*@=boundsread@*/

View File

@ -51,9 +51,9 @@ static void installArgCallback( /*@unused@*/ poptContext con,
argerror(_("exclude paths must begin with a /"));
ia->relocations = xrealloc(ia->relocations,
sizeof(*ia->relocations) * (ia->numRelocations + 1));
/*@-temptrans@*/
/*@-temptrans@*/
ia->relocations[ia->numRelocations].oldPath = xstrdup(arg);
/*@=temptrans@*/
/*@=temptrans@*/
ia->relocations[ia->numRelocations].newPath = NULL;
ia->numRelocations++;
break;
@ -71,12 +71,12 @@ static void installArgCallback( /*@unused@*/ poptContext con,
argerror(_("relocations must have a / following the ="));
ia->relocations = xrealloc(ia->relocations,
sizeof(*ia->relocations) * (ia->numRelocations + 1));
/*@-temptrans@*/
/*@-temptrans@*/
ia->relocations[ia->numRelocations].oldPath = oldPath;
/*@=temptrans@*/
/*@-kepttrans@*/
/*@=temptrans@*/
/*@-kepttrans -usereleased @*/
ia->relocations[ia->numRelocations].newPath = newPath;
/*@=kepttrans@*/
/*@=kepttrans =usereleased @*/
ia->numRelocations++;
} break;
case POPT_ROLLBACK:

View File

@ -37,7 +37,10 @@ extern struct poptOption rpmcliAllPoptTable[];
/*@null@*/
poptContext
rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
/*@*/;
/*@globals rpmCLIMacroContext, rpmGlobalMacroContext, stderr,
fileSystem, internalState @*/
/*@modifies rpmCLIMacroContext, rpmGlobalMacroContext, stderr,
fileSystem, internalState @*/;
/**
* Destroy most everything needed by an rpm CLI executable context.

View File

@ -57,8 +57,10 @@ void rpmShowRpmlibProvides(FILE * fp)
const struct rpmlibProvides_s * rlp;
for (rlp = rpmlibProvides; rlp->featureName != NULL; rlp++) {
/*@-nullpass@*/ /* FIX: rlp->featureEVR not NULL */
rpmds pro = rpmdsSingle(RPMTAG_PROVIDENAME, rlp->featureName,
rlp->featureEVR, rlp->featureFlags);
/*@=nullpass@*/
const char * DNEVR = rpmdsDNEVR(pro);
if (pro != NULL && DNEVR != NULL) {

View File

@ -1,7 +1,7 @@
#/*! \page config_macros Default configuration: /usr/lib/rpm/macros
# \verbatim
#
# $Id: macros.in,v 1.105 2002/06/30 22:47:32 jbj Exp $
# $Id: macros.in,v 1.106 2002/07/02 13:16:50 jbj Exp $
#
# This is a global RPM configuration file. All changes made here will
# be lost when the rpm package is upgraded. Any per-system configuration
@ -574,6 +574,21 @@
%{?_dependency_whiteout_5_2} \
%{nil}
#==============================================================================
# ---- Cache configuration macros.
# Macro(s) used to configure the universe of headers used to
# solve dependencies using rpmcache(8).
#
# Note: These values are specific to my machine, and most certainly
# are incorrect for any non-redhat.com machine. The macros are
# included here only to document the macro names and usage.
%_bhpath file://localhost/mnt/dist
%_bhcoll @(7.3|7.2|7.1|7.1sbe|7.1k|7.0|7.01j|7.0j|7.0sbe|7.0tc|6.2|6.2ha|6.2ee|6.1|6.0|5.2|5.1|5.0)
%_bhN @(SRPMS|i386|alpha|sparc|s390|ia64)
%_bhVR RedHat
%_bhA RPMS
#==============================================================================
# ---- per-platform macros.
# Macros that are specific to an individual platform. The values here

View File

@ -32,6 +32,7 @@ lib/fsm.c
lib/manifest.c
lib/misc.c
lib/package.c
lib/poptALL.c
lib/poptI.c
lib/poptQV.c
lib/psm.c
@ -39,8 +40,10 @@ lib/query.c
lib/rpmal.c
lib/rpmchecksig.c
lib/rpmds.c
lib/rpmfi.c
lib/rpminstall.c
lib/rpmlead.c
lib/rpmlibprov.c
lib/rpmps.c
lib/rpmrc.c
lib/rpmte.c
@ -52,16 +55,18 @@ lib/transaction.c
lib/verify.c
rpmdb/db3.c
rpmdb/dbconfig.c
rpmdb/fprint.c
rpmdb/hdrNVR.c
rpmdb/header.c
rpmdb/header_internal.c
rpmdb/legacy.c
rpmdb/merge.c
rpmdb/poptDB.c
rpmdb/rpmhash.c
rpmdb/rpmdb.c
rpmdb/rpmhash.c
rpmdb/tagname.c
rpmio/digest.c
rpmio/fts.c
rpmio/macro.c
rpmio/rpmio.c
rpmio/rpmlog.c
@ -70,3 +75,5 @@ rpmio/rpmpgp.c
rpmio/rpmrpc.c
rpmio/ugid.c
rpmio/url.c
tools/rpmcache.c
tools/rpmgraph.c

471
po/cs.po

File diff suppressed because it is too large Load Diff

473
po/da.po

File diff suppressed because it is too large Load Diff

459
po/de.po

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

425
po/es.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

453
po/fi.po

File diff suppressed because it is too large Load Diff

444
po/fr.po

File diff suppressed because it is too large Load Diff

425
po/gl.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-0400\n"
"PO-Revision-Date: 2001-01-13 22:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@ -73,353 +73,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1564,45 +1564,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1974,7 +1987,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2131,8 +2144,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2146,7 +2159,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2215,7 +2228,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2338,6 +2351,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2346,81 +2393,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2430,6 +2478,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2957,8 +3037,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2968,134 +3048,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3306,3 +3386,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

425
po/hu.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

425
po/id.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

447
po/is.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-0400\n"
"PO-Revision-Date: 2001-07-12 13:25+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@ -74,354 +74,355 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr "prenta útgáfunúmer rpm sem verið er að nota"
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
msgstr "skilgreina fjölva <nafn> með gildinu <gildi>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
msgstr "'<nafn> <gildi>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
#, fuzzy
msgid "print macro expansion of EXPR"
msgstr "prenta útvíkkun fjölva <expr>+"
#: rpmqv.c:123
msgid "<expr>+"
msgstr "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr "senda frálag í <skipun>"
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr "sýna endanlega rpmrc og stillingar fjölva"
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr "%s: %s\n"
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr "RPM útgáfa %s\n"
#: rpmqv.c:239
#: rpmqv.c:237
#, fuzzy
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr "Höfundarréttur (C) 1998-2000 - Red Hat Inc"
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr "Þessu má dreifa frjálst samkvæmt skilmálum GNU GPL"
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1572,45 +1573,58 @@ msgstr "%s b
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: Fseek brást: %s\n"
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1990,7 +2004,7 @@ msgstr "ekki yfirfara heimildir skr
msgid "don't verify files in package"
msgstr "ekki yfirfara skrárnar í pakkanum"
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr "ekki skoða pakkaskilyrðin"
@ -2150,8 +2164,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2165,7 +2179,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, fuzzy, c-format
msgid "%s: not a package manifest: %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
@ -2234,7 +2248,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2357,6 +2371,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "lína %d: %s\n"
#: lib/rpmfi.c:714
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/rpmfi.c:793
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2365,82 +2413,83 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "gat ekki útbúið pakkaskilyrði:\n"
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2450,6 +2499,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2978,8 +3059,8 @@ msgstr "get ekki opna
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2989,134 +3070,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3328,6 +3409,71 @@ msgstr "g
msgid "failed to create %s: %s\n"
msgstr "gat ekki búið til %s: %s\n"
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "ekki skoða pakkaskilyrðin"
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
#, fuzzy
msgid "don't verify package digest"
msgstr "ekki skoða pakkaskilyrðin"
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
#, fuzzy
msgid "don't verify package signature"
msgstr "ekki skoða pakkaskilyrðin"
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""
#~ msgid "define macro <name> with value <body>"
#~ msgstr "skilgreina fjölva <nafn> með gildinu <gildi>"
#~ msgid "'<name> <body>'"
#~ msgstr "'<nafn> <gildi>'"
#~ msgid "<expr>+"
#~ msgstr "<expr>+"
#~ msgid "cannot open rpm database in %s\n"
#~ msgstr "get ekki opnað pakka gagnagrunn í %s\n"
@ -3674,9 +3820,6 @@ msgstr "gat ekki b
#~ msgid "cannot open %s/packages.rpm\n"
#~ msgstr "get ekki opnað %s/packages.rpm\n"
#~ msgid "%5d relocate %s -> %s\n"
#~ msgstr "%5d færa %s -> %s\n"
#~ msgid ""
#~ "package lacks both user name and id lists (this should never happen)\n"
#~ msgstr ""

425
po/it.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

456
po/ja.po

File diff suppressed because it is too large Load Diff

471
po/ko.po

File diff suppressed because it is too large Load Diff

463
po/no.po

File diff suppressed because it is too large Load Diff

456
po/pl.po

File diff suppressed because it is too large Load Diff

471
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

425
po/ro.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-0400\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@ -73,353 +73,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1564,45 +1564,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1974,7 +1987,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2131,8 +2144,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2146,7 +2159,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2215,7 +2228,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2338,6 +2351,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2346,81 +2393,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2430,6 +2478,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2957,8 +3037,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2968,134 +3048,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3306,3 +3386,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -79,353 +79,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1570,45 +1570,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1980,7 +1993,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2137,8 +2150,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2152,7 +2165,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2221,7 +2234,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2344,6 +2357,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2352,81 +2399,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2436,6 +2484,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2963,8 +3043,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2974,134 +3054,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3312,3 +3392,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

471
po/ru.po

File diff suppressed because it is too large Load Diff

456
po/sk.po

File diff suppressed because it is too large Load Diff

464
po/sl.po

File diff suppressed because it is too large Load Diff

453
po/sr.po

File diff suppressed because it is too large Load Diff

471
po/sv.po

File diff suppressed because it is too large Load Diff

472
po/tr.po

File diff suppressed because it is too large Load Diff

425
po/uk.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

425
po/wa.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

425
po/zh.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-06-28 23:17-0400\n"
"POT-Creation-Date: 2002-07-01 13:41-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"
@ -78,353 +78,353 @@ msgstr ""
msgid "cannot re-open payload: %s\n"
msgstr ""
#: rpmqv.c:112
#: rpmqv.c:114 lib/poptALL.c:135
msgid "print the version of rpm being used"
msgstr ""
#: rpmqv.c:115
#: rpmqv.c:117 lib/poptALL.c:131
msgid "provide less detailed output"
msgstr ""
#: rpmqv.c:117
#: rpmqv.c:119 lib/poptALL.c:133
msgid "provide more detailed output"
msgstr ""
#: rpmqv.c:119
msgid "define macro <name> with value <body>"
#: rpmqv.c:121 lib/poptALL.c:138
msgid "define MACRO with value EXPR"
msgstr ""
#: rpmqv.c:120
msgid "'<name> <body>'"
#: rpmqv.c:121 lib/poptALL.c:139
msgid "'MACRO EXPR'"
msgstr ""
#: rpmqv.c:122
msgid "print macro expansion of <expr>+"
#: rpmqv.c:123 lib/poptALL.c:141
msgid "print macro expansion of EXPR"
msgstr ""
#: rpmqv.c:123
msgid "<expr>+"
#: rpmqv.c:123 lib/poptALL.c:142
msgid "'EXPR'"
msgstr ""
#: rpmqv.c:125
#: rpmqv.c:125 lib/poptALL.c:144
msgid "send stdout to <cmd>"
msgstr ""
#: rpmqv.c:126
#: rpmqv.c:125 lib/poptALL.c:145
msgid "<cmd>"
msgstr ""
#: rpmqv.c:128
#: rpmqv.c:127 lib/poptALL.c:147
msgid "use <dir> as the top level directory"
msgstr ""
#: rpmqv.c:129 lib/poptI.c:221
#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
msgid "<dir>"
msgstr ""
#: rpmqv.c:131
#: rpmqv.c:129
msgid "read <file:...> instead of default macro file(s)"
msgstr ""
#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
msgid "<file:...>"
msgstr ""
#: rpmqv.c:135 rpmqv.c:139
#: rpmqv.c:133 rpmqv.c:137
msgid "read <file:...> instead of default rpmrc file(s)"
msgstr ""
#: rpmqv.c:143
#: rpmqv.c:141 lib/poptALL.c:162
msgid "display final rpmrc and macro configuration"
msgstr ""
#: rpmqv.c:148
#: rpmqv.c:146 lib/poptALL.c:167
msgid "disable use of libio(3) API"
msgstr ""
#: rpmqv.c:151
#: rpmqv.c:149 lib/poptALL.c:171
msgid "debug protocol data stream"
msgstr ""
#: rpmqv.c:153
#: rpmqv.c:151 lib/poptALL.c:173
msgid "debug rpmio I/O"
msgstr ""
#: rpmqv.c:155
#: rpmqv.c:153 lib/poptALL.c:175
msgid "debug URL cache handling"
msgstr ""
#: rpmqv.c:175
#: rpmqv.c:173
msgid "Query options (with -q or --query):"
msgstr ""
#: rpmqv.c:178
#: rpmqv.c:176
msgid "Verify options (with -V or --verify):"
msgstr ""
#: rpmqv.c:184
#: rpmqv.c:182
msgid "Signature options:"
msgstr ""
#: rpmqv.c:190
#: rpmqv.c:188
msgid "Database options:"
msgstr ""
#: rpmqv.c:196
#: rpmqv.c:194
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr ""
#: rpmqv.c:202
#: rpmqv.c:200
msgid "Install/Upgrade/Erase options:"
msgstr ""
#: rpmqv.c:207
#: rpmqv.c:205
msgid "Common options for all rpm modes:"
msgstr ""
#. @-modfilesys -globs @
#: rpmqv.c:224 lib/poptI.c:28
#: rpmqv.c:222 lib/poptI.c:28
#, c-format
msgid "%s: %s\n"
msgstr ""
#: rpmqv.c:232
#: rpmqv.c:230 lib/poptALL.c:47
#, c-format
msgid "RPM version %s\n"
msgstr ""
#: rpmqv.c:239
#: rpmqv.c:237
msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
msgstr ""
#: rpmqv.c:240
#: rpmqv.c:238
msgid "This program may be freely redistributed under the terms of the GNU GPL"
msgstr ""
#: rpmqv.c:252
#: rpmqv.c:250
#, c-format
msgid "Usage: %s {--help}\n"
msgstr ""
#: rpmqv.c:610
#: rpmqv.c:608
msgid "The --rcfile option has been eliminated.\n"
msgstr ""
#: rpmqv.c:611
#: rpmqv.c:609
msgid "Use \"--macros <file:...>\" instead.\n"
msgstr ""
#: rpmqv.c:617
#: rpmqv.c:615
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
msgid "only one major mode may be specified"
msgstr ""
#: rpmqv.c:687
#: rpmqv.c:685
msgid "one type of query/verify may be performed at a time"
msgstr ""
#: rpmqv.c:691
#: rpmqv.c:689
msgid "unexpected query flags"
msgstr ""
#: rpmqv.c:694
#: rpmqv.c:692
msgid "unexpected query format"
msgstr ""
#: rpmqv.c:697
#: rpmqv.c:695
msgid "unexpected query source"
msgstr ""
#: rpmqv.c:738
#: rpmqv.c:736
msgid "--dbpath given for operation that does not use a database"
msgstr ""
#: rpmqv.c:744
#: rpmqv.c:742
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr ""
#: rpmqv.c:746
#: rpmqv.c:744
msgid "files may only be relocated during package installation"
msgstr ""
#: rpmqv.c:749
#: rpmqv.c:747
msgid "only one of --prefix or --relocate may be used"
msgstr ""
#: rpmqv.c:752
#: rpmqv.c:750
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
#: rpmqv.c:755
#: rpmqv.c:753
msgid "--prefix may only be used when installing new packages"
msgstr ""
#: rpmqv.c:758
#: rpmqv.c:756
msgid "arguments to --prefix must begin with a /"
msgstr ""
#: rpmqv.c:761
#: rpmqv.c:759
msgid "--hash (-h) may only be specified during package installation"
msgstr ""
#: rpmqv.c:765
#: rpmqv.c:763
msgid "--percent may only be specified during package installation"
msgstr ""
#: rpmqv.c:770
#: rpmqv.c:768
msgid "--replacefiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:774
#: rpmqv.c:772
msgid "--replacepkgs may only be specified during package installation"
msgstr ""
#: rpmqv.c:778
#: rpmqv.c:776
msgid "--excludedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:782
#: rpmqv.c:780
msgid "--includedocs may only be specified during package installation"
msgstr ""
#: rpmqv.c:786
#: rpmqv.c:784
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr ""
#: rpmqv.c:790
#: rpmqv.c:788
msgid "--ignorearch may only be specified during package installation"
msgstr ""
#: rpmqv.c:794
#: rpmqv.c:792
msgid "--ignoreos may only be specified during package installation"
msgstr ""
#: rpmqv.c:799
#: rpmqv.c:797
msgid "--ignoresize may only be specified during package installation"
msgstr ""
#: rpmqv.c:803
#: rpmqv.c:801
msgid "--allmatches may only be specified during package erasure"
msgstr ""
#: rpmqv.c:807
#: rpmqv.c:805
msgid "--allfiles may only be specified during package installation"
msgstr ""
#: rpmqv.c:812
#: rpmqv.c:810
msgid "--justdb may only be specified during package installation and erasure"
msgstr ""
#: rpmqv.c:817
#: rpmqv.c:815
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:822
#: rpmqv.c:820
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
#: rpmqv.c:826
#: rpmqv.c:824
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
#: rpmqv.c:831
#: rpmqv.c:829
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
#: rpmqv.c:836
#: rpmqv.c:834
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
#: rpmqv.c:848
#: rpmqv.c:846
msgid "arguments to --root (-r) must begin with a /"
msgstr ""
#: rpmqv.c:872
#: rpmqv.c:870
msgid "no files to sign\n"
msgstr ""
#: rpmqv.c:877
#: rpmqv.c:875
#, c-format
msgid "cannot access file %s\n"
msgstr ""
#: rpmqv.c:896
#: rpmqv.c:894
msgid "pgp not found: "
msgstr ""
#: rpmqv.c:901
#: rpmqv.c:899
msgid "Enter pass phrase: "
msgstr ""
#: rpmqv.c:903
#: rpmqv.c:901
msgid "Pass phrase check failed\n"
msgstr ""
#: rpmqv.c:907
#: rpmqv.c:905
msgid "Pass phrase is good.\n"
msgstr ""
#: rpmqv.c:912
#: rpmqv.c:910
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpmqv.c:919
#: rpmqv.c:917
msgid "--sign may only be used during package building"
msgstr ""
#: rpmqv.c:936
#: rpmqv.c:934
msgid "exec failed\n"
msgstr ""
#: rpmqv.c:969
#: rpmqv.c:967
msgid "no packages files given for rebuild"
msgstr ""
#: rpmqv.c:1037
#: rpmqv.c:1035
msgid "no spec files given for build"
msgstr ""
#: rpmqv.c:1039
#: rpmqv.c:1037
msgid "no tar files given for build"
msgstr ""
#: rpmqv.c:1061
#: rpmqv.c:1059
msgid "no packages given for erase"
msgstr ""
#: rpmqv.c:1102
#: rpmqv.c:1100
msgid "no packages given for install"
msgstr ""
#: rpmqv.c:1118
#: rpmqv.c:1116
msgid "no arguments given for query"
msgstr ""
#: rpmqv.c:1131
#: rpmqv.c:1129
msgid "no arguments given for verify"
msgstr ""
#: rpmqv.c:1139
#: rpmqv.c:1137
msgid "unexpected arguments to --querytags "
msgstr ""
#: rpmqv.c:1155
#: rpmqv.c:1153
msgid "no arguments given"
msgstr ""
@ -1569,45 +1569,58 @@ msgstr ""
msgid "error creating temporary file %s\n"
msgstr ""
#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
#: lib/package.c:187
#: lib/package.c:224
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
#: lib/package.c:195
#: lib/package.c:232
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
#, c-format
msgid "%s: No signature available\n"
msgstr ""
#: lib/package.c:254 lib/rpmchecksig.c:524
#: lib/package.c:291 lib/rpmchecksig.c:524
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature"
msgstr ""
#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
msgid "read <FILE:...> instead of default file(s)"
msgstr ""
#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
msgid "<FILE:...>"
msgstr ""
#: lib/poptALL.c:236
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr ""
#: lib/poptI.c:51
msgid "exclude paths must begin with a /"
msgstr ""
@ -1979,7 +1992,7 @@ msgstr ""
msgid "don't verify files in package"
msgstr ""
#: lib/poptQV.c:264
#: lib/poptQV.c:264 tools/rpmgraph.c:274
msgid "don't verify package dependencies"
msgstr ""
@ -2136,8 +2149,8 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
#: lib/rpminstall.c:885
#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2151,7 +2164,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
#: lib/query.c:679 lib/rpminstall.c:510
#: lib/query.c:679 lib/rpminstall.c:506
#, c-format
msgid "%s: not a package manifest: %s\n"
msgstr ""
@ -2220,7 +2233,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:977 lib/rpminstall.c:670
#: lib/query.c:977 lib/rpminstall.c:660
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2343,6 +2356,40 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
#: lib/rpmfi.c:561
msgid "========== relocations\n"
msgstr ""
#: lib/rpmfi.c:565
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/rpmfi.c:568
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/rpmfi.c:638
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/rpmfi.c:704
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/rpmfi.c:714
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/rpmfi.c:793
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/rpminstall.c:167
msgid "Preparing..."
msgstr ""
@ -2351,81 +2398,82 @@ msgstr ""
msgid "Preparing packages for installation..."
msgstr ""
#: lib/rpminstall.c:313
#: lib/rpminstall.c:309
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:326
#: lib/rpminstall.c:322
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:330
#: lib/rpminstall.c:326
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
#: lib/rpminstall.c:421
#: lib/rpminstall.c:417
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
#: lib/rpminstall.c:471
#: lib/rpminstall.c:467
#, c-format
msgid "error reading from file %s\n"
msgstr ""
#: lib/rpminstall.c:477
#: lib/rpminstall.c:473
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:489 lib/rpminstall.c:741
#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
#: lib/rpminstall.c:525
#: lib/rpminstall.c:521
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
#: lib/rpminstall.c:546
#: lib/rpminstall.c:542 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
#: lib/rpminstall.c:576
#: lib/rpminstall.c:572
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:597
#: lib/rpminstall.c:593
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:673
#: lib/rpminstall.c:663
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:728
#: lib/rpminstall.c:718
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:734
#: lib/rpminstall.c:724
#, c-format
msgid "Installing %s\n"
msgstr ""
#: lib/rpminstall.c:1066
#: lib/rpminstall.c:1056
#, c-format
msgid "rollback %d packages to %s"
msgstr ""
@ -2435,6 +2483,38 @@ msgstr ""
msgid "read failed: %s (%d)\n"
msgstr ""
#: lib/rpmlibprov.c:30
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr ""
#: lib/rpmlibprov.c:33
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
#: lib/rpmlibprov.c:36
msgid "package payload is compressed using bzip2."
msgstr ""
#: lib/rpmlibprov.c:39
msgid "package payload file(s) have \"./\" prefix."
msgstr ""
#: lib/rpmlibprov.c:42
msgid "package name-version-release is not implicitly provided."
msgstr ""
#: lib/rpmlibprov.c:45
msgid "header tags are always sorted after being loaded."
msgstr ""
#: lib/rpmlibprov.c:48
msgid "the scriptlet interpreter can use arguments from header."
msgstr ""
#: lib/rpmlibprov.c:51
msgid "a hardlink file set may be installed without being complete."
msgstr ""
#. @observer@
#: lib/rpmps.c:200
msgid "different"
@ -2962,8 +3042,8 @@ msgstr ""
msgid "no dbpath has been set\n"
msgstr ""
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr ""
@ -2973,134 +3053,134 @@ msgstr ""
msgid "error(%d) storing record #%d into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:1971
#: rpmdb/rpmdb.c:1972
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:2236
#: rpmdb/rpmdb.c:2237
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
#: rpmdb/rpmdb.c:2297
#: rpmdb/rpmdb.c:2298
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr ""
#: rpmdb/rpmdb.c:2408
#: rpmdb/rpmdb.c:2409
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2412
#: rpmdb/rpmdb.c:2413
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2439
#: rpmdb/rpmdb.c:2440
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr ""
#: rpmdb/rpmdb.c:2460
#: rpmdb/rpmdb.c:2461
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2470
#: rpmdb/rpmdb.c:2471
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr ""
#: rpmdb/rpmdb.c:2612
#: rpmdb/rpmdb.c:2613
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
#: rpmdb/rpmdb.c:2816
#: rpmdb/rpmdb.c:2817
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2820
#: rpmdb/rpmdb.c:2821
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
#: rpmdb/rpmdb.c:2856
#: rpmdb/rpmdb.c:2857
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3195
#: rpmdb/rpmdb.c:3196
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
#: rpmdb/rpmdb.c:3230
#: rpmdb/rpmdb.c:3231
msgid "no dbpath has been set"
msgstr ""
#: rpmdb/rpmdb.c:3257
#: rpmdb/rpmdb.c:3258
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3261
#: rpmdb/rpmdb.c:3262
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
#: rpmdb/rpmdb.c:3267
#: rpmdb/rpmdb.c:3268
#, c-format
msgid "creating directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3269
#: rpmdb/rpmdb.c:3270
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3276
#: rpmdb/rpmdb.c:3277
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3287
#: rpmdb/rpmdb.c:3288
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
#: rpmdb/rpmdb.c:3311
#: rpmdb/rpmdb.c:3312
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
#: rpmdb/rpmdb.c:3351
#: rpmdb/rpmdb.c:3352
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
#: rpmdb/rpmdb.c:3369
#: rpmdb/rpmdb.c:3370
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
#: rpmdb/rpmdb.c:3377
#: rpmdb/rpmdb.c:3378
msgid "failed to replace old database with new database!\n"
msgstr ""
#: rpmdb/rpmdb.c:3379
#: rpmdb/rpmdb.c:3380
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
#: rpmdb/rpmdb.c:3389
#: rpmdb/rpmdb.c:3390
#, c-format
msgid "removing directory %s\n"
msgstr ""
#: rpmdb/rpmdb.c:3391
#: rpmdb/rpmdb.c:3392
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
@ -3311,3 +3391,56 @@ msgstr ""
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
#: tools/rpmcache.c:398 tools/rpmgraph.c:276
msgid "don't verify header+payload signature"
msgstr ""
#: tools/rpmcache.c:400 tools/rpmgraph.c:278
msgid "don't verify package digest"
msgstr ""
#: tools/rpmcache.c:402 tools/rpmgraph.c:280
msgid "don't verify package signature"
msgstr ""
#: tools/rpmcache.c:405
msgid "follow command line symlinks"
msgstr ""
#: tools/rpmcache.c:407
msgid "logical walk"
msgstr ""
#: tools/rpmcache.c:409
msgid "don't change directories"
msgstr ""
#: tools/rpmcache.c:411
msgid "don't get stat info"
msgstr ""
#: tools/rpmcache.c:413
msgid "physical walk"
msgstr ""
#: tools/rpmcache.c:415
msgid "return dot and dot-dot"
msgstr ""
#: tools/rpmcache.c:417
msgid "don't cross devices"
msgstr ""
#: tools/rpmcache.c:419
msgid "return whiteout information"
msgstr ""
#: tools/rpmgraph.c:177
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
#: tools/rpmgraph.c:286
msgid "Common options for all rpm modes and executables:"
msgstr ""

View File

@ -77,7 +77,7 @@ will manipulate RPM packages and databases.
%package build
Summary: Scripts and executable programs used to build packages.
Group: Development/Tools
Requires: rpm = %{rpm_version}, patch >= 2.5
Requires: rpm = %{rpm_version}, patch >= 2.5, file
Provides: rpmbuild(VendorConfig) = %{version}
%description build
@ -434,8 +434,8 @@ fi
#%attr(0644, @RPMUSER@, @RPMGROUP@) %{__prefix}/lib/rpm/perl.req
%rpmattr %{__prefix}/lib/rpm/rpm[bt]
%rpmattr %{__prefix}/lib/rpm/rpmdiff
%rpmattr %{__prefix}/lib/rpm/rpmdiff.cgi
#%rpmattr %{__prefix}/lib/rpm/rpmdiff
#%rpmattr %{__prefix}/lib/rpm/rpmdiff.cgi
%rpmattr %{__prefix}/lib/rpm/trpm
%rpmattr %{__prefix}/lib/rpm/u_pkg.sh
%rpmattr %{__prefix}/lib/rpm/vpkg-provides.sh

View File

@ -37,15 +37,12 @@
* @return -1 on error, otherwise, an open file descriptor
*/
static int open_dso(const char * path, /*@null@*/ pid_t * pidp, /*@null@*/ size_t *fsizep)
/*@globals rpmGlobalMacroContext,
fileSystem, internalState @*/
/*@modifies *pidp, *fsizep, rpmGlobalMacroContext,
fileSystem, internalState @*/
/*@globals rpmGlobalMacroContext, internalState @*/
/*@modifies *pidp, *fsizep, rpmGlobalMacroContext, internalState @*/
{
/*@only@*/
static const char * cmd = NULL;
static int initted = 0;
pid_t pid;
int fdno;
if (!initted) {
@ -112,6 +109,7 @@ static int open_dso(const char * path, /*@null@*/ pid_t * pidp, /*@null@*/ size_
/*@-boundswrite@*/
if (pidp != NULL && bingo) {
int pipes[2];
pid_t pid;
int xx;
xx = close(fdno);

View File

@ -461,6 +461,7 @@ int main(int argc, const char ** argv)
#endif
#ifdef IAM_RPMEIU
if (ia->relocations != NULL)
for (i = 0; i < ia->numRelocations; i++)
ia->relocations[i].oldPath = _free(ia->relocations[i].oldPath);
ia->relocations = _free(ia->relocations);
@ -1220,6 +1221,7 @@ exit:
#endif
#ifdef IAM_RPMEIU
if (ia->relocations != NULL)
for (i = 0; i < ia->numRelocations; i++)
ia->relocations[i].oldPath = _free(ia->relocations[i].oldPath);
ia->relocations = _free(ia->relocations);

View File

@ -351,6 +351,7 @@ extern void muntrace (void)
else __progname = pn; \
}
#endif
/*@unchecked@*/
const char *__progname;
#if HAVE_NETDB_H

View File

@ -6,14 +6,15 @@
#include "rpmps.h"
#include "rpmte.h"
#define _RPMTS_INTERNAL /* ts->goal, ts->dbmode, ts->suggests */
#include "rpmts.h"
#include "manifest.h"
#ifdef DYING
#include "misc.h"
#endif
#include "misc.h" /* rpmGlob */
#include "debug.h"
static int noDeps = 1;
static int noChainsaw = 0;
static int vsflags = _RPMTS_VSF_VERIFY_LEGACY;
@ -43,6 +44,7 @@ static int
rpmGraph(rpmts ts, struct rpmInstallArguments_s * ia, const char ** fileArgv)
/*@*/
{
rpmps ps;
const char ** pkgURL = NULL;
char * pkgState = NULL;
const char ** fnp;
@ -187,7 +189,41 @@ restart:
break;
}
if (numFailed) goto exit;
if (numFailed > 0) goto exit;
if (!noDeps) {
rc = rpmtsCheck(ts);
if (rc) {
numFailed += numPkgs;
goto exit;
}
ps = rpmtsProblems(ts);
if (rpmpsNumProblems(ps) > 0) {
rpmMessage(RPMMESS_ERROR, _("Failed dependencies:\n"));
rpmpsPrint(NULL, ps);
numFailed += numPkgs;
/*@-branchstate@*/
if (ts->suggests != NULL && ts->nsuggests > 0) {
rpmMessage(RPMMESS_NORMAL, _(" Suggested resolutions:\n"));
for (i = 0; i < ts->nsuggests; i++) {
const char * str = ts->suggests[i];
if (str == NULL)
break;
rpmMessage(RPMMESS_NORMAL, "\t%s\n", str);
ts->suggests[i] = NULL;
str = _free(str);
}
ts->suggests = _free(ts->suggests);
}
/*@=branchstate@*/
}
ps = rpmpsFree(ps);
}
if (numFailed > 0) goto exit;
rc = rpmtsOrder(ts);
if (rc)
@ -234,6 +270,8 @@ exit:
}
static struct poptOption optionsTable[] = {
{ "check", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &noDeps, 0,
N_("don't verify package dependencies"), NULL },
{ "nolegacy", '\0', POPT_BIT_CLR, &vsflags, _RPMTS_VSF_VERIFY_LEGACY,
N_("don't verify header+payload signature"), NULL },
{ "nodigest", '\0', POPT_BIT_SET, &vsflags, _RPMTS_VSF_NODIGESTS,

View File

@ -20,6 +20,7 @@ doxygen
example
install-sh
libtool
ltmain.sh
minigzip
missing
mkinstalldirs