- permit globs in macrofiles: directive (#117217).

CVS patchset: 7139
CVS date: 2004/03/02 01:31:01
This commit is contained in:
jbj 2004-03-02 01:31:01 +00:00
parent f3cd4db8ea
commit 5ef0bf77c2
64 changed files with 2479 additions and 1971 deletions

View File

@ -24,6 +24,7 @@
- set "rpm_script_t" exec type for scriptlets iff /bin/sh, else default.
- force FD_CLOEXEC on 1st 100 inherited fdno's.
- serialize rpmtsRun() using fcntl on /var/lock/rpm/transaction.
- permit globs in macrofiles: directive (#117217).
4.2.1 -> 4.2.2:
- unify signal handling in librpmio, use condvar to deliver signal.

View File

@ -1829,11 +1829,12 @@ static int processBinaryFile(/*@unused@*/ Package pkg, FileList fl,
fl->totalFileSize, fl->fileCount,
rpmGlobalMacroContext, fileSystem, internalState @*/
{
int quote = 1; /* XXX permit quoted glob characters. */
int doGlob;
const char *diskURL = NULL;
int rc = 0;
doGlob = myGlobPatternP(fileURL);
doGlob = Glob_pattern_p(fileURL, quote);
/* Check that file starts with leading "/" */
{ const char * fileName;
@ -1871,7 +1872,7 @@ static int processBinaryFile(/*@unused@*/ Package pkg, FileList fl,
/*@-branchstate@*/
rc = rpmGlob(diskURL, &argc, &argv);
if (rc == 0 && argc >= 1 && !myGlobPatternP(argv[0])) {
if (rc == 0 && argc >= 1 && !Glob_pattern_p(argv[0], quote)) {
for (i = 0; i < argc; i++) {
rc = addFile(fl, argv[i], NULL);
/*@-boundswrite@*/

View File

@ -68,7 +68,7 @@ int rpmSyscall(const char * cmd, int noexec)
/* Check: parse only with 2 or more args, last arg cannot be glob. */
if (noexec) {
if (argc > 2 && myGlobPatternP(argv[argc-1])) {
if (argc > 2 && Glob_pattern_p(argv[argc-1], 0)) {
rc = 1;
goto exit;
}

View File

@ -4,9 +4,6 @@
#include "system.h"
/*@unchecked@*/
static int _debug = 0;
/* just to put a marker in librpm.a */
const char * RPMVERSION = VERSION;
@ -238,158 +235,6 @@ char * currentDirectory(void)
return currDir;
}
/* glob_pattern_p() taken from bash
* Copyright (C) 1985, 1988, 1989 Free Software Foundation, Inc.
*
* Return nonzero if PATTERN has any special globbing chars in it.
*/
int myGlobPatternP (const char *patternURL)
{
const char *p;
char c;
int open = 0;
(void) urlPath(patternURL, &p);
while ((c = *p++) != '\0')
switch (c) {
case '+':
case '@':
case '!':
if (*p == '(')
return (1);
continue;
case '?':
case '*':
return (1);
case '[': /* Only accept an open brace if there is a close */
open++; /* brace to match it. Bracket expressions must be */
continue; /* complete, according to Posix.2 */
case ']':
if (open)
return (1);
continue;
case '\\':
if (*p++ == '\0')
return (0);
}
return (0);
}
static int glob_error(/*@unused@*/const char *foo, /*@unused@*/int bar)
{
return 1;
}
int rpmGlob(const char * patterns, int * argcPtr, const char *** argvPtr)
{
int ac = 0;
const char ** av = NULL;
int argc = 0;
const char ** argv = NULL;
const char * path;
const char * globURL;
char * globRoot = NULL;
size_t maxb, nb;
glob_t gl;
int ut;
int i, j;
int rc;
rc = poptParseArgvString(patterns, &ac, &av);
if (rc)
return rc;
for (j = 0; j < ac; j++) {
if (!myGlobPatternP(av[j])) {
if (argc == 0)
argv = xmalloc((argc+2) * sizeof(*argv));
else
argv = xrealloc(argv, (argc+2) * sizeof(*argv));
argv[argc] = xstrdup(av[j]);
if (_debug)
fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, argv[argc]);
argc++;
continue;
}
gl.gl_pathc = 0;
gl.gl_pathv = NULL;
rc = Glob(av[j], 0, glob_error, &gl);
if (rc)
goto exit;
/* XXX Prepend the URL leader for globs that have stripped it off */
maxb = 0;
for (i = 0; i < gl.gl_pathc; i++) {
if ((nb = strlen(&(gl.gl_pathv[i][0]))) > maxb)
maxb = nb;
}
ut = urlPath(av[j], &path);
nb = ((ut > URL_IS_DASH && ut != URL_IS_FTP) ? (path - av[j]) : 0);
maxb += nb;
maxb += 1;
globURL = globRoot = xmalloc(maxb);
switch (ut) {
case URL_IS_HTTP:
case URL_IS_PATH:
case URL_IS_DASH:
strncpy(globRoot, av[j], nb);
/*@switchbreak@*/ break;
case URL_IS_FTP:
case URL_IS_UNKNOWN:
/*@switchbreak@*/ break;
}
globRoot += nb;
*globRoot = '\0';
if (_debug)
fprintf(stderr, "*** GLOB maxb %d diskURL %d %*s globURL %p %s\n", (int)maxb, (int)nb, (int)nb, av[j], globURL, globURL);
argv = xrealloc(argv, (argc+gl.gl_pathc+1) * sizeof(*argv));
if (argv != NULL)
for (i = 0; i < gl.gl_pathc; i++) {
const char * globFile = &(gl.gl_pathv[i][0]);
if (globRoot > globURL && globRoot[-1] == '/')
while (*globFile == '/') globFile++;
strcpy(globRoot, globFile);
if (_debug)
fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, globURL);
argv[argc++] = xstrdup(globURL);
}
/*@-immediatetrans@*/
Globfree(&gl);
/*@=immediatetrans@*/
globURL = _free(globURL);
}
if (argv != NULL && argc > 0) {
argv[argc] = NULL;
if (argvPtr)
*argvPtr = argv;
if (argcPtr)
*argcPtr = argc;
rc = 0;
} else
rc = 1;
exit:
av = _free(av);
/*@-branchstate@*/
if (rc || argvPtr == NULL) {
/*@-dependenttrans -unqualifiedtrans@*/
if (argv != NULL)
for (i = 0; i < argc; i++)
argv[i] = _free(argv[i]);
argv = _free(argv);
/*@=dependenttrans =unqualifiedtrans@*/
}
/*@=branchstate@*/
return rc;
}
/*
* XXX This is a "dressed" entry to headerGetEntry to do:
* 1) DIRNAME/BASENAME/DIRINDICES -> FILENAMES tag conversions.

View File

@ -104,19 +104,6 @@ int makeTempFile(/*@null@*/ const char * prefix,
/*@only@*/ char * currentDirectory(void)
/*@*/;
/**
*/
/*@-exportlocal@*/
int myGlobPatternP (const char *patternURL) /*@*/;
/*@=exportlocal@*/
/**
*/
int rpmGlob(const char * patterns, /*@out@*/ int * argcPtr,
/*@out@*/ const char *** argvPtr)
/*@globals fileSystem@*/
/*@modifies *argcPtr, *argvPtr, fileSystem @*/;
#ifdef __cplusplus
}
#endif

View File

@ -32,7 +32,7 @@ static struct rpmlibProvides_s rpmlibProvides[] = {
N_("file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path.")},
{ "rpmlib(PayloadIsBzip2)", "3.0.5-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
N_("package payload is compressed using bzip2.") },
N_("package payload can be compressed using bzip2.") },
{ "rpmlib(PayloadFilesHavePrefix)", "4.0-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
N_("package payload file(s) have \"./\" prefix.") },

141
po/cs.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-24 10:02+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -526,74 +526,74 @@ msgstr "Soubor nesouhlas
msgid "File not found: %s\n"
msgstr "Soubor nenalezen: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead selhalo\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead selhalo\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Soubor potøebuje úvodní \"/\": %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob není dovolen: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Soubor nenalezen globem: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nemohu otevøít %%files soubor %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "øádek: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "©patný soubor: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "©patný vlastník/skupina: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Zpracovávám soubory: %s-%s-%s\n"
@ -736,7 +736,7 @@ msgstr "Nemohu p
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nemohu zapsat balíèek: %s\n"
@ -766,7 +766,7 @@ msgstr "Nemohu p
msgid "Unable to write payload to %s: %s\n"
msgstr "Nemohu zapsat payload do %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
@ -1510,47 +1510,52 @@ msgstr "========= Adres
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "vytvoøen adresáø %s s právy %04o.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "vytvoøen adresáø %s s právy %04o.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ulo¾eno jako %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s odstranìní %s selhalo: Adresáø není prázdný\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s selhal: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s selhal: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s vytvoøen jako %s\n"
@ -2235,66 +2240,78 @@ msgstr "zdrojov
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " na souboru "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "nesprávný formát: %s\n"
@ -2343,7 +2360,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2933,76 +2950,76 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nemohu otevøít %s: %s\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "neplatné èíslo balíèku: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Chybí '(' v %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "neplatné èíslo balíèku: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "øádek: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verze %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "získávám seznam pøipojených systémù souborù\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3176,7 +3193,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3189,7 +3206,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3202,7 +3219,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3210,7 +3227,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/da.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-04-05 23:03GMT\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
"X-Generator: KBabel 0.9alpha\n"
#: build.c:40
@ -521,74 +521,74 @@ msgstr "Fil passer ikke til pr
msgid "File not found: %s\n"
msgstr "Fil ikke fundet: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead mislykkedes\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead mislykkedes\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Fil kræver foranstillet \"/\": %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linie %d: Filnavn ikke tilladt: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Fil ikke fundet med glob: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linie: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig ejer/gruppe: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Gennemløber filer: %s-%s-%s\n"
@ -733,7 +733,7 @@ msgstr "Kunne ikke l
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åbne %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@ -763,7 +763,7 @@ msgstr "Kunne ikke l
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1508,47 +1508,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linie %d: %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gemt som %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kan ikke fjerne %s - katalog ikke tomt\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s oprettet som %s\n"
@ -2245,67 +2250,79 @@ msgstr "kildepakke indeholder ingen .spec-fil\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "overspringer installation af %s-%s-%s, %%pre-småskript fejlede rc %d\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakke: %s-%s-%s filer test = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke læse hoved fra %s: %s\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " for fil "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "ugyldigt format: %s\n"
@ -2354,7 +2371,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2946,78 +2963,78 @@ msgstr "Kunne ikke l
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åbne %s for læsning: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kunne ikke åbne Packages-database i %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Manglende '(' i %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åbne rpm-database i %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linie: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr ""
"kilder i: %s\n"
"\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "henter liste over monterede filsystemer\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3186,7 +3203,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signaturfyld : %d\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
@ -3199,7 +3216,7 @@ msgstr "ekskluderer kataloget %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3212,7 +3229,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3220,7 +3237,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/de.po
View File

@ -37,14 +37,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -595,69 +595,69 @@ msgstr "Lesen von %s fehlgeschlagen: %s."
msgid "File not found: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
#: build/files.c:1840
#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
#: build/files.c:1941
#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
# , c-format
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#: build/files.c:2348
#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Fehler beim Suchen nach Paket %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -665,7 +665,7 @@ msgid ""
msgstr ""
# , c-format
#: build/files.c:2455
#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
@ -818,7 +818,7 @@ msgid "Could not open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nicht möglich %s zu schreiben"
@ -853,7 +853,7 @@ msgstr "Nicht m
msgid "Unable to write payload to %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1640,47 +1640,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kann Datei %s nicht öffnen: "
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Entfernen von %s fehlgeschlagen: %s"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kann Datei %s nicht öffnen: "
@ -2406,69 +2411,81 @@ msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "Ausführung des Skripts fehlgeschlagen"
# FIXME shared, besser: "mit anderen geteilte ..."
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nicht möglich %s zu schreiben"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "Fehler beim Format %s\n"
@ -2519,7 +2536,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "Paket hat keinen Namen"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@ -3122,77 +3139,77 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "fehlende { nach %{"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
# , c-format
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Hole %s heraus\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3365,7 +3382,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@ -3378,7 +3395,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3391,7 +3408,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3399,7 +3416,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/fi.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -536,74 +536,74 @@ msgstr "En voi lukea %s: %s."
msgid "File not found: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead epäonnistui\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead epäonnistui\n"
#: build/files.c:1840
#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "siirtojen pitää alkaa /-merkillä"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paketti %s ei ole %s:ssä"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
#: build/files.c:1941
#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "virhe: tiedostoa %s ei voi avata\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "en voinut avata %s: %s"
#: build/files.c:2348
#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "en voinut avata %s: %s"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "virhe etsittäessä pakettia %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "en voinut avata %s: %s"
@ -746,7 +746,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
@ -776,7 +776,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1530,47 +1530,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "en voinut avata %s: %s"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s:n rmdir epäonnistui: %s"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "en voinut avata tiedostoa %s: "
@ -2289,66 +2294,78 @@ msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skriptin ajo epäonnistui"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s:n kirjoitus ei onnistu"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "virhe formaatissa: %s\n"
@ -2399,7 +2416,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paketilla ei ole nimeä"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@ -2987,75 +3004,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "En voi avata %s luettavaksi: %s."
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "virheellinen paketin numero: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "puuttuva '{' '%':n jälkeen"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "virheellinen paketin numero: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "en voinut avata %s: %s"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Haen: %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3228,7 +3245,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
@ -3241,7 +3258,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3254,7 +3271,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3262,7 +3279,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

141
po/fr.po
View File

@ -11,14 +11,14 @@
msgid ""
msgstr ""
"Project-Id-Version: RPM 4.2.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-07-06 01:36+0200\n"
"Last-Translator: RPM French Translation <rpm-fr@livna.org>\n"
"Language-Team: RPM French Translation <rpm-fr@livna.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@ -539,67 +539,67 @@ msgstr "Le fichier ne correpond pas à prefix (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Fichier non trouvé: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: échec de la lecture de la clé publique.\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s n'est pas une clé publique blindée.\n"
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: échec de la lecture de la clé publique.\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Le fichier non précédé d'un \"/\": %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Substitution non permise: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Fichier non trouvé par la substitution: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Ne peut ouvrir le fichier donné à %%files %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "Ligne: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Mauvais fichier: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Mauvais possesseur/groupe: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Vérification des fichiers non empaquetés: %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -608,7 +608,7 @@ msgstr ""
"Fichier(s) installé(s) (mais non empaquetés):\n"
"%s"
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Traitement des fichiers: %s-%s-%s\n"
@ -747,7 +747,7 @@ msgstr "Impossible de recharger l'entête de la signature.\n"
msgid "Could not open %s: %s\n"
msgstr "Impossible d'ouvrir %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Impossible d'écrire le paquetage: %s\n"
@ -777,7 +777,7 @@ msgstr "Impossible de lire la charge utile dans %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Impossible d'écrire la charge utile dans %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Ecrit: %s\n"
@ -1524,47 +1524,52 @@ msgstr "========== Répertoires non explicitement inclus dans le paquetage:\n"
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "utilisateur %s inexistant - utilisation de root\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "groupe %s inexistant - utilisation de root\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "le répertoire %s a été créé avec les permissions %04o.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "le répertoire %s a été créé avec les permissions %04o.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "l'archive %s n'était pas dans la liste de fichiers d'entêtes\n"
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sauvé en tant que %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s échec du rmdir sur %s : répertoire non-vide\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s échec du rmdir sur %s: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s n'a pu délier %s: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s créé en tant que %s\n"
@ -2242,65 +2247,77 @@ msgstr "le paquetage source ne contient pas de fichier .spec\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) redondance ignorée \"%s\".\n"
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) début du scriplet %ssynchrone\n"
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) échec du scriptlet, waitpid(%d) rc %d: %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) échec du scriplet, code de sortie %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s avait %d fichiers, test = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: échec du scriptlet %s (%d), on saute %s\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "Impossible de recharger l'entête de signature\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "échec du déballage de l'archive %s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " dans fichier "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "échec de %s sur le fichier %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "échec %s: %s\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "format incorrect: %s\n"
@ -2349,7 +2366,7 @@ msgstr ""
"le paquetage n'a ni la liste des id ni celle des possesseurs de fichiers\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2948,75 +2965,75 @@ msgstr "Impossible de lire %s, HOME trop gros.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Impossible d'ouvrir %s en lecture: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir la base de données Package dans %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr "'(' supplémentaire dans le label du paquetage: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr "'(' manquante dans le label du paquetage: %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr "')' manquante dans le label du paquetage: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "Impossible d'ouvrir la base de données Solve dans %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "Ajout de: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "Suggestion: %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr "systèmes de fichiers montés:\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@ -3185,7 +3202,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signature: INCONNUE (%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "répertoire %s exclus\n"
@ -3198,7 +3215,7 @@ msgstr "répertoire %s exclus\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr "vérification de santé de %d éléments\n"
@ -3211,7 +3228,7 @@ msgstr "vérification de santé de %d éléments\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "calcul de %d empreintes de fichier\n"
@ -3219,7 +3236,7 @@ msgstr "calcul de %d empreintes de fichier\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "calcul de la disposition des fichiers\n"

139
po/gl.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@ -506,74 +506,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr ""
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ""
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -712,7 +712,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -742,7 +742,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1465,47 +1465,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr ""
@ -2155,65 +2160,77 @@ msgstr ""
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr ""
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr ""
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@ -2261,7 +2278,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2840,75 +2857,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr ""
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3073,7 +3090,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3086,7 +3103,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3099,7 +3116,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3107,7 +3124,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/is.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -509,74 +509,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr "Skráin fannst ekki: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: Fseek brást: %s\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: Fseek brást: %s\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Gat ekki opnað PreUn skrá: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Skráin fannst ekki með 'glob': %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Gat ekki opnað %%files skrána %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "lína: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ógild skrá %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -719,7 +719,7 @@ msgstr "Get ekki lesi
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Get ekki ritað í pakka: %s\n"
@ -749,7 +749,7 @@ msgstr "Get ekki lesi
msgid "Unable to write payload to %s: %s\n"
msgstr "Get ekki ritað innihald í %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifaði: %s\n"
@ -1478,47 +1478,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s vistað sem %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s gat ekki eytt %s: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s búið til sem %s\n"
@ -2184,66 +2189,78 @@ msgstr "pakkinn inniheldur enga .spec skr
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Get ekki lesið haus úr %s: %s\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnað %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@ -2291,7 +2308,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2872,75 +2889,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Get ekki opnað %s til lesturs: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnað pakka gagnagrunn í %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "vantar '(' í %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "vantar '(' í %s %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "get ekki opnað pakka gagnagrunn í %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "lína: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3106,7 +3123,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3119,7 +3136,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3132,7 +3149,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3140,7 +3157,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/ja.po
View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=EUC-JP\n"
"Content-Transfer-Encoding: EUC-JP\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -551,74 +551,74 @@ msgstr "
msgid "File not found: %s\n"
msgstr "ファイルが見つかりません: %s"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead に失敗しました\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead に失敗しました\n"
#: build/files.c:1840
#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "ファイルは先頭に \"/\" が必要です: %s"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "%d 行目: バージョンは許可されていません: %s"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "ファイルが見つかりません(by glob): %s"
#: build/files.c:1941
#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files をオープンできません: %s"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "行目: %s"
#: build/files.c:2348
#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "ファイル %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "不正な所有者/グループ: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "パッケージ %s の探索中\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ファイルの処理中: %s-%s-%s\n"
@ -762,7 +762,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "%s のオープンに失敗しました\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "パッケージの書き込みに失敗しました: %s"
@ -792,7 +792,7 @@ msgstr "
msgid "Unable to write payload to %s: %s\n"
msgstr "パッケージの書き込みに失敗しました: %s"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "書き込み中: %s\n"
@ -1553,47 +1553,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%d 行目: %s"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "ユーザ %s は存在しません - root を使用します"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "グループ %s は存在しません - root を使用します"
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "警告: %s は %s として保存されます"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s を削除できません - ディレクトリが空でありません"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s の rmdir に失敗: %s"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s のオープンに失敗: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "警告: %s は %s として作成されます"
@ -2325,67 +2330,79 @@ msgstr "
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s をスキップします - 転送失敗 - %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "スクリプトの実行に失敗"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "パッケージ: %s-%s-%s ファイルテスト = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "アイコンを読むことができません: %s"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ファイル %s のアーカイブの伸長に失敗 %s%s: %s"
#: lib/psm.c:1511
#: lib/psm.c:1611
#, fuzzy
msgid " on file "
msgstr "ファイル上"
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s のオープンに失敗: %s"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s 失敗"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "フォーマット中のエラー: %s\n"
@ -2435,7 +2452,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "パッケージはファイル所有者や id リストをどちらも持っていません"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -3035,76 +3052,76 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "読み込むために %s をオープンできません: %s。"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm をオープンできません\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "無効なパッケージ番号: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "%s %s で '('が見つかりません"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "無効なパッケージ番号: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s/packages.rpm をオープンできません\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "行目: %s"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "ソースは: %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "マウントされたファイルシステムのリストを取得しています\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3278,7 +3295,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "署名パッド: %d\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "ディレクトリの除外: %s\n"
@ -3291,7 +3308,7 @@ msgstr "
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3304,7 +3321,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3312,7 +3329,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

141
po/ko.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-03-04 17:17+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=EUC-KR\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -520,74 +520,74 @@ msgstr "
msgid "File not found: %s\n"
msgstr "파일을 찾을 수 없음: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead이 실패했습니다\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead이 실패했습니다\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "파일은 \"/\" 로 시작해야함: %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob을 사용할 수 없음: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "glob으로 파일을 찾을 수 없음: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%s 파일의 %%files를 열 수 없음: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "행: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "잘못된 파일: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "잘못된 소유자/그룹: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "파일 처리 중: %s-%s-%s\n"
@ -726,7 +726,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "%s(을)를 열 수 없음: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "패키지를 작성할 수 없음: %s\n"
@ -756,7 +756,7 @@ msgstr "%s
msgid "Unable to write payload to %s: %s\n"
msgstr "%s에 payload를 작성할 수 없음: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "작성: %s\n"
@ -1496,47 +1496,52 @@ msgstr "=========
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s 사용자가 존재하지 않습니다 - root를 이용합니다\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s 그룹이 존재하지 않습니다 - root를 이용합니다\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "%2$04o의 허가권(perms)을 가진 %1$s 디렉토리가 생성되었습니다.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "%2$04o의 허가권(perms)을 가진 %1$s 디렉토리가 생성되었습니다.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "헤더 파일 목록에서 아카이브 파일 %s(을)를 찾을 수 없습니다\n"
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s(이)가 %s(으)로 저장되었습니다\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s %s 디렉토리 삭제에 실패함: 빈 디렉토리가 아닙니다\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s %s 디렉토리 삭제에 실패함: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s %s 링크 해제에 실패함: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s(이)가 %s(으)로 생성되었습니다\n"
@ -2221,70 +2226,82 @@ msgstr "
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
"%s: %s 스크립틀릿(scriptlet)이 실패했습니다 (%d), %s-%s-%s(을)를 생략합니다\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"%2$s-%3$s-%4$s의 %1$s 스크립틀릿(scriptlet) 실행에 실패했습니다, 종료 상황 %5"
"$d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s에 %d의 파일이 있습니다, 테스트 = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
"%s: %s 스크립틀릿(scriptlet)이 실패했습니다 (%d), %s-%s-%s(을)를 생략합니다\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "서명(signature) 헤더를 다시 읽어올 수 없습니다.\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " 다음 파일의 "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s 파일의 %1$s(이)가 실패함: %3$s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s(이)가 실패함: %s\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "올바르지 못한 형식: %s\n"
@ -2333,7 +2350,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "패키지에 파일 소유자 또는 id 목록이 없습니다\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2927,75 +2944,75 @@ msgstr "%s(
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s(을)를 열 수 없음: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s 안의 패키지 데이터베이스를 열 수 없습니다\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "부적합한 패키지 번호: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "%s %s에 '(' 가 없습니다\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "부적합한 패키지 번호: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s의 rpm 데이터베이스를 열 수 없습니다\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "행: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s(을)를 복구합니다\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3164,7 +3181,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "서명: size(%d)+pad(%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "%s 디렉토리를 제외시킵니다\n"
@ -3177,7 +3194,7 @@ msgstr "%s
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3190,7 +3207,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3198,7 +3215,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/no.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-06-27 12:24+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -520,74 +520,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr "Fil ikke funnet: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead feilet\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead feilet\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linje %d: Filnavn ikke tillatt: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "Installerer %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig eier/gruppe: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "ingen pakke utløser %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -730,7 +730,7 @@ msgstr "Kunne ikke
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åpne %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@ -760,7 +760,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1493,47 +1493,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s lagret som %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s feilet: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s feilet: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s opprettet som %s\n"
@ -2211,66 +2216,78 @@ msgstr "kildepakke inneholder ikke en .spec-fil\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "ukorrekt format: %s\n"
@ -2319,7 +2336,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2903,76 +2920,76 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Mangler '(' i %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åpne database i %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Installerer %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Henter %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "henter liste over monterte filsystemer\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3140,7 +3157,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
@ -3153,7 +3170,7 @@ msgstr "ekskluderer katalog %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3166,7 +3183,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3174,7 +3191,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

141
po/pl.po
View File

@ -9,14 +9,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.3-20030515\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-06-08 22:42+0200\n"
"Last-Translator: Jakub Bogusz <qboosh@pld.org.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@ -530,67 +530,67 @@ msgstr "Plik nie zgadza si
msgid "File not found: %s\n"
msgstr "Nie znaleziono pliku: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: odczyt klucza publicznego nie powiód³ siê.\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: nie jest opakowanym kluczem publicznym.\n"
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: odczyt klucza publicznego nie powiód³ siê.\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Plik musi siê zaczynaæ od \"/\": %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob niedozwolony: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Nie znaleziono pliku poprzez glob: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nie mo¿na otworzyæ pliku %s dla %%files: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linia: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "B³êdny plik: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "B³êdny u¿ytkownik/grupa: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Szukanie niespakietowanych plików: %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -599,7 +599,7 @@ msgstr ""
"Znaleziono zainstalowane (ale niespakietowane) pliki:\n"
"%s"
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Przetwarzanie plików: %s-%s-%s\n"
@ -738,7 +738,7 @@ msgstr "Nie mo
msgid "Could not open %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s\n"
@ -768,7 +768,7 @@ msgstr "Nie mo
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie mo¿na zapisaæ danych do %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1498,47 +1498,52 @@ msgstr "========== Katalogi nie w
msgid "%10d %s\n"
msgstr "%10d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - u¿yto grupy root\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "katalog %s utworzony z uprawnieniami %04o.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "katalog %s utworzony z uprawnieniami %04o.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "plik archiwum %s nie znaleziony na li¶cie plików w nag³ówku\n"
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s zapisano jako %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir %s nie powiod³o siê: katalog nie jest pusty\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s nie powiod³o siê: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s nie powiod³o siê: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s utworzony jako %s\n"
@ -2198,65 +2203,77 @@ msgstr "pakiet
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) pomijanie nadmiarowego \"%s\".\n"
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %ssynchroniczny start skryptu\n"
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "skrypt %s(%s-%s-%s) nie powiód³ siê, waitpid(%d) rc %d: %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skrypt %s(%s-%s-%s) nie powiód³ siê, status wyj¶cia %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ma %d plików, test = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: skrypt %s nie powiód³ siê (%d), pomijanie %s\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "Nie mo¿na ponownie odczytaæ nag³ówka sygnatury\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozpakowanie archiwum nie powiod³o siê%s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " na pliku "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s nie powiód³ siê na pliku %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiod³o siê: %s\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "b³êdny format: %s\n"
@ -2304,7 +2321,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "pakiet nie ma list w³a¶cicieli ani id plików\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2887,75 +2904,75 @@ msgstr "Nie mo
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie mo¿na otworzyæ %s do odczytu: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie mo¿na otworzyæ bazy danych Packages w %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "b³êdny numer pakietu: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Brak '(' w %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "b³êdny numer pakietu: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie mo¿na otworzyæ bazy danych Solve w %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "Dodawane: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "Sugerowane: %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr "podmontowane systemy plików:\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr " i urz bloków bl.wolnych i.wolnych punkt montowania\n"
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@ -3120,7 +3137,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Sygnatura: NIEZNANA (%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "wy³±czanie katalogu %s\n"
@ -3133,7 +3150,7 @@ msgstr "wy
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr "sprawdzanie poprawno¶ci %d elementów\n"
@ -3146,7 +3163,7 @@ msgstr "sprawdzanie poprawno
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "obliczanie %d odcisków plików\n"
@ -3154,7 +3171,7 @@ msgstr "obliczanie %d odcisk
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "obliczanie dyspozycji plików\n"

141
po/pt.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-02-14 10:51+0000\n"
"Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
"Language-Team: pt <morais@kde.org\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -528,74 +528,74 @@ msgstr "O ficheiro n
msgid "File not found: %s\n"
msgstr "Ficheiro não encontrado: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr ":%s: o readLead falhou\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ":%s: o readLead falhou\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "O ficheiro precisa de começar por \"/\": %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob não permitido: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Ficheiro não encontrado pelo glob: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Não consegui abrir o ficheiro do %%files %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linha: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ficheiro inválido: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Dono/grupo inválido: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "A processar os ficheiros: %s-%s-%s\n"
@ -736,7 +736,7 @@ msgstr "N
msgid "Could not open %s: %s\n"
msgstr "Não consigo aceder ao %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Não consegui gravar o pacote: %s\n"
@ -766,7 +766,7 @@ msgstr "N
msgid "Unable to write payload to %s: %s\n"
msgstr "Não consegui escrever o conteúdo de %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
@ -1510,49 +1510,54 @@ msgstr "========= Directorias n
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "o utilizador %s não existe - a usar o root\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "o grupo %s não existe - a usar o root\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "directoria %s criada com as permissões %04o.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "directoria %s criada com as permissões %04o.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
"o ficheiro de arquivo %s não foi encontrado na lista de ficheiros do "
"cabeçalho\n"
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gravado como %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir de %s falhou: Directoria não está vazia\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir de %s falhou: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink de %s falhou: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s criado como %s\n"
@ -2235,67 +2240,79 @@ msgstr "o pacote de c
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Não consegui reler o cabeçalho do assinatura.\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " no ficheiro "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s falhou no ficheiro %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s falhou: %s\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "formato incorrecto: %s\n"
@ -2344,7 +2361,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2937,75 +2954,75 @@ msgstr "N
msgid "Unable to open %s for reading: %s.\n"
msgstr "Não consegui abrir o %s para leitura: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "não consigo abrir a base de dados Packages em %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "número de pacote inválido: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Falta um '(' em %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "número de pacote inválido: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "não consigo a base de dados do RPM em %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linha: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "A obter o %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3175,7 +3192,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Assinatura: tamanho(%d)+pad(%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
@ -3188,7 +3205,7 @@ msgstr "a excluir a directoria %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3201,7 +3218,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3209,7 +3226,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

View File

@ -4,11 +4,11 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -576,80 +576,80 @@ msgstr "No consegui ler o arquivo spec de %s\n"
msgid "File not found: %s\n"
msgstr "no foi passado pacote para desinstalao"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
# , c-format
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "No consegui abrir: %s\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
# , c-format
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "No consegui abrir: %s\n"
#: build/files.c:1840
#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "argumentos para o --dbpath devem comear com uma /"
# , c-format
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "no foi passado pacote para desinstalao"
# , c-format
#: build/files.c:1941
#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
#: build/files.c:2348
#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "instale pacote"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -811,7 +811,7 @@ msgid "Could not open %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "No consegui abrir: %s\n"
@ -846,7 +846,7 @@ msgstr "No consegui abrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1650,50 +1650,55 @@ msgstr ""
msgid "%10d %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
# , c-format
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "No consegui abrir: %s\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Construo falhou.\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "Construo falhou.\n"
# , c-format
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "No consegui abrir: %s\n"
@ -2420,68 +2425,80 @@ msgstr "pesquise o pacote ao qual <arquivo> pertence"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "no foi passado pacote para instalao"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "No consegui abrir: %s\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@ -2532,7 +2549,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "no foi passado pacote para instalao"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@ -3166,60 +3183,60 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "No consegui abrir: %s\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
# , c-format
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "instale pacote"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "instale pacote"
# , c-format
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
@ -3232,20 +3249,20 @@ msgstr "No consegui ler o arquivo spec de %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verso %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3427,7 +3444,7 @@ msgstr ""
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
@ -3440,7 +3457,7 @@ msgstr "RPM verso %s\n"
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3453,7 +3470,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3461,7 +3478,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/ro.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@ -506,74 +506,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr ""
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ""
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -712,7 +712,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -742,7 +742,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1465,47 +1465,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr ""
@ -2155,65 +2160,77 @@ msgstr ""
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr ""
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr ""
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@ -2261,7 +2278,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2840,75 +2857,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr ""
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3073,7 +3090,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3086,7 +3103,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3099,7 +3116,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3107,7 +3124,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

View File

@ -7,8 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
@ -512,74 +511,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr ""
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ""
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -718,7 +717,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -748,7 +747,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1471,47 +1470,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr ""
@ -2161,65 +2165,77 @@ msgstr ""
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr ""
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr ""
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@ -2267,7 +2283,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2846,75 +2862,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr ""
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr ""
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3079,7 +3095,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@ -3092,7 +3108,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3105,7 +3121,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3113,7 +3129,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

141
po/ru.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-08-27 13:36-0400\n"
"Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=KOI8-R\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
"Date: 1999-04-03 12:20+0200\n"
"X-Generator: KBabel 0.9.6\n"
@ -527,67 +527,67 @@ msgstr "
msgid "File not found: %s\n"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: ÜÔÏ ÎÅ ÏÔËÒÙÔÙÊ ËÌÀÞ.\n"
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "ÓÔÒÏËÁ: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "ðÒÏ×ÅÒËÁ ÎÁ ÎÅÕÐÁËÏ×ÁÎÎÙÊ(Å) ÆÁÊÌ(Ù): %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -596,7 +596,7 @@ msgstr ""
"ïÂÎÁÒÕÖÅÎ(Ù) ÕÓÔÁÎÏ×ÌÅÎÎÙÊ(Å) (ÎÏ ÎÅ ÕÐÁËÏ×ÁÎÎÙÊ(Å)) ÆÁÊÌ(Ù):\n"
"%s"
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@ -735,7 +735,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@ -765,7 +765,7 @@ msgstr "
msgid "Unable to write payload to %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
@ -1505,47 +1505,52 @@ msgstr "=========
msgid "%10d %s\n"
msgstr "%10d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅÎ × ÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ÓÏÈÒÁÎÅÎ ËÁË %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s ÓÏÚÄÁÎ ËÁË %s\n"
@ -2210,65 +2215,77 @@ msgstr "
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr "%s: waitpid(%d) rc %d status %x\n"
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) ÐÒÏÐÕÓËÁÅÔÓÑ ÌÉÛÎÉÊ \"%s\".\n"
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %sÚÁÐÕÓË ÓÉÎÈÒÏÎÎÏÇÏ ÓÃÅÎÁÒÉÑ\n"
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ, waitpid(%d) rc %d: %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, ÒÅÚÕÌØÔÁÔ ÐÒÏ×ÅÒËÉ: %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ (%d), ÐÒÏÐÕÓËÁÅÔÓÑ %s\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
@ -2316,7 +2333,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2899,76 +2916,76 @@ msgstr "
msgid "Unable to open %s for reading: %s.\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÒÁÚÒÅÛÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ × %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "äÏÂÁ×ÌÑÅÔÓÑ: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "ðÒÅÄÌÁÇÁÅÔÓÑ: %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "ÓÔÒÏÉÔÓÑ ÓÐÉÓÏË ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3133,7 +3150,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "ðÏÄÐÉÓØ: îåéú÷åóôîï (%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
@ -3146,7 +3163,7 @@ msgstr "
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "ÐÒÏ×eÒÑÅÔÓÑ %d ÜÌÅÍÅÎÔÏ×\n"
@ -3159,7 +3176,7 @@ msgstr "
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÏÔÐÅÞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n"
@ -3167,7 +3184,7 @@ msgstr "
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÄÉÓÐÏÚÉÃÉÑ ÆÁÊÌÏ×\n"

139
po/sk.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -539,74 +539,74 @@ msgstr "S
msgid "File not found: %s\n"
msgstr "Súbor nebol nájdený: %s"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead zlyhalo\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead zlyhalo\n"
#: build/files.c:1840
#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Súbor nebol nájdený: %s"
#: build/files.c:1941
#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "riadok: %s"
#: build/files.c:2348
#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "súbor %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Chybný vlastník/skupina: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "vyhµadáva sa balík %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Spracovávajú sa súbory: %s\n"
@ -750,7 +750,7 @@ msgstr "Nie je mo
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
@ -780,7 +780,7 @@ msgstr "Nie je mo
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
@ -1533,47 +1533,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "riadok %d: %s"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ije sa root"
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varovanie: %s uchovaný ako %s"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "rmdir %s zlyhalo: %s"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varovanie: %s vytvorené ako %s"
@ -2288,66 +2293,78 @@ msgstr "zdrojov
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " pre súbor "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "chyba formátu: %s\n"
@ -2397,7 +2414,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@ -2985,75 +3002,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "chybné èíslo balíku: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "chýbajúce %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "chybné èíslo balíku: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "riadok: %s"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "zdroje v: %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3227,7 +3244,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Doplnenie podpisu: %d\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
@ -3240,7 +3257,7 @@ msgstr "vytv
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3253,7 +3270,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3261,7 +3278,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

141
po/sl.po
View File

@ -1,19 +1,19 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
# $Id: sl.po,v 1.385 2004/01/21 23:32:32 jbj Exp $
# $Id: sl.po,v 1.386 2004/03/02 01:32:09 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@ -538,74 +538,74 @@ msgstr "Datoteka se ne ujema s predpono (%s): %s"
msgid "File not found: %s\n"
msgstr "Datoteke ni mogoèe najti: %s"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead je bil neuspe¹en\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead je bil neuspe¹en\n"
#: build/files.c:1840
#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Datoteki manjka uvodni \"/\": %s"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "vrstica %d: Razlièica ni dovoljena: %s"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
#: build/files.c:1941
#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Datoteke %s iz %%files ni mo¾no odpreti: %s"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "vrstica: %s"
#: build/files.c:2348
#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Po¹kodovana datoteka: %s: %s"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Neobstojeè lastnik/skupina: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "i¹èemo paket %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@ -749,7 +749,7 @@ msgstr "Ikone %s ni mo
msgid "Could not open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ni mo¾no zapisati paketa: %s"
@ -779,7 +779,7 @@ msgstr "Ikone %s ni mo
msgid "Unable to write payload to %s: %s\n"
msgstr "Ni mo¾no zapisati paketa %s: %s"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1536,47 +1536,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "vrstica %d: %s"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "opozorilo: %s shranjen kot %s"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "opozorilo: %s ustvarjen kot %s"
@ -2289,66 +2294,78 @@ msgstr "izvorni paket ne vsebuje datoteke .spec"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skript se ni uspe¹no izvedel"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ikone %s ni mo¾no prebrati: %s"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " za datoteko "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspe¹en"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "napaka v obliki: %s\n"
@ -2398,7 +2415,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2989,76 +3006,76 @@ msgstr "Ni mo
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s ni mo¾no odpreti za branje: %s."
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "neveljavna ¹tevilka paketa: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Manjkajoèi ,(` v %s %s"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "neveljavna ¹tevilka paketa: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "datoteke %s/packages.rpm ni mogo¾no odpreti\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "vrstica: %s"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "izvori v: %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3232,7 +3249,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Dol¾. polnila : %d\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
@ -3245,7 +3262,7 @@ msgstr "izklju
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3258,7 +3275,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3266,7 +3283,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

139
po/sr.po
View File

@ -1,11 +1,11 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
"Date: 1998-05-02 21:41:47-0400\n"
#: build.c:40
@ -529,74 +529,74 @@ msgstr "Neuspelo
msgid "File not found: %s\n"
msgstr "Datoteka nije pronaðena na serveru"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: Neuspeo 'readLead'\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: Neuspeo 'readLead'\n"
#: build/files.c:1840
#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "preme¹tanja moraju poèeti znakom '/'"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paket %s nije naveden u %s"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteka nije pronaðena na serveru"
#: build/files.c:1941
#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:2348
#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "gre¹ka potrage za paketom %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "neuspelo otvaranje %s: %s"
@ -739,7 +739,7 @@ msgstr "Ne mogu da upi
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ne mogu da upi¹em %s"
@ -769,7 +769,7 @@ msgstr "Ne mogu da upi
msgid "Unable to write payload to %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1523,47 +1523,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/fsm.c:778
#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
#: lib/fsm.c:1336
#: lib/fsm.c:1350
#, c-format
msgid "%s directory created with perms %04o.\n"
msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr ""
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "neuspela komanda rmdir %s: %s"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
@ -2280,66 +2285,78 @@ msgstr "upit nad paketom koji ima <datoteku>"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "neuspelo izvr¹avanje skripta"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ne mogu da upi¹em %s"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr ""
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "gre¹ka u formatu: %s\n"
@ -2390,7 +2407,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paket nema imena"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@ -2978,75 +2995,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Ne mogu da otvorim %s za èitanje: %s"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "nedostaje { posle %"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Pribavljam %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3219,7 +3236,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@ -3232,7 +3249,7 @@ msgstr "gre
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3245,7 +3262,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3253,7 +3270,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

141
po/sv.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-02-05 12:40+0100\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@ -519,67 +519,67 @@ msgstr "Filen matchar inte prefixet (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Filen hittades inte: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: läsning av publik nyckel misslyckades.\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: inte en publik nyckel med skal.\n"
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: läsning av publik nyckel misslyckades.\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Filen behöver inledande \"/\": %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Matchning inte tillåtet: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Hittade ingen fil vid matchningen: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunde inte öppna %%files-fil %s: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "rad: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Felaktig fil: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Felaktig ägare/grupp: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Letar efter opackade fil(er): %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -588,7 +588,7 @@ msgstr ""
"Installerade (men opaketerade) filer funna:\n"
"%s"
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Bearbetar filer: %s-%s-%s\n"
@ -727,7 +727,7 @@ msgstr "Kan inte l
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunde inte skriva paket: %s\n"
@ -757,7 +757,7 @@ msgstr "Kan inte l
msgid "Unable to write payload to %s: %s\n"
msgstr "Kan inte skriva last till %s: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1491,47 +1491,52 @@ msgstr "========== Kataloger ej uttryckligen inkluderade i paketet:\n"
msgid "%10d %s\n"
msgstr "%10d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "katalog %s skapad med rättigheter %04o.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "katalog %s skapad med rättigheter %04o.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "arkivfil %s fanns inte i huvudets fillista\n"
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sparades som %s\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s misslyckades: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s misslyckades: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s skapades som %s\n"
@ -2192,67 +2197,79 @@ msgstr "k
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr "%s: waitpid(%d) rk %d status %x\n"
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
# Avslutande %s blir sökvägen till ldconfig. Det är en körning av
# programmet man hoppar över. Alltså: överflödig körning.
#: lib/psm.c:554
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) hoppar över överflödig \"%s\".\n"
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) start %ssynkront skript\n"
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
#: lib/psm.c:751
#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) skript misslyckades, waitpid(%d) rk %d: %s\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) skript misslyckades, slutstatus %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s har %d filer, test = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "Kan inte läsa om signaturhuvud\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " vid fil "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades på fil %s: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "fel format: %s\n"
@ -2300,7 +2317,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paketet har varken filägare eller id-listor\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2881,75 +2898,75 @@ msgstr "Kan inte l
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kan inte öppna %s för läsning: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "felaktigt paketnummer: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "\"(\" saknas i %s %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "felaktigt paketnummer: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan inte öppna Solve-databas i %s\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "Lägger till: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "Föreslår %s\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr "monterade filsystem:\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr " i enhet bstrl btillg itillg monteringspunkt\n"
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@ -3116,7 +3133,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signatur: OKÄND (%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
@ -3129,7 +3146,7 @@ msgstr "hoppar
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr "rimlighetskontrollerar %d element\n"
@ -3142,7 +3159,7 @@ msgstr "rimlighetskontrollerar %d element\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "beräknar %d filfingeravtryck\n"
@ -3150,7 +3167,7 @@ msgstr "ber
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "beräknar filåtgärder\n"

141
po/tr.po
View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-12 16:27+0000\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-05 08:02+300\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-9\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
"X-Generator: KBabel 0.9.2alpha\n"
#: build.c:40
@ -531,74 +531,74 @@ msgstr "Dosya
msgid "File not found: %s\n"
msgstr "Dosya bulunamadý: %s\n"
#: build/files.c:1772
#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
#: build/files.c:1778
#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead baþarýsýz\n"
#: build/files.c:1782 lib/rpmchecksig.c:580
#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead baþarýsýz\n"
#: build/files.c:1840
#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Dosya \"/\" ile içermeli: %s\n"
#: build/files.c:1864
#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
#: build/files.c:1881 lib/rpminstall.c:361
#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
#: build/files.c:1941
#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
#: build/files.c:1952 build/pack.c:156
#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "satýr: %s\n"
#: build/files.c:2348
#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Dosya hatalý: %s: %s\n"
#: build/files.c:2360 build/parsePrep.c:50
#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Kullanýcý/grup hatalý: %s\n"
#: build/files.c:2404
#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
#: build/files.c:2427
#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2455
#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@ -741,7 +741,7 @@ msgstr "%s'den ba
msgid "Could not open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: build/pack.c:632 lib/psm.c:1420
#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "paket yazýlamadý: %s\n"
@ -771,7 +771,7 @@ msgstr "%s'den payload okunamad
msgid "Unable to write payload to %s: %s\n"
msgstr "%s'e payload yazýlamadý: %s\n"
#: build/pack.c:725 lib/psm.c:1689
#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
@ -1524,47 +1524,52 @@ msgstr "========= Pakette bulunmayan dizinler:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:770
#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanýcý %s yok - root kullanýlacak\n"
#: lib/fsm.c:778
#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanýlacak\n"
#: lib/fsm.c:1336
#, c-format
msgid "%s directory created with perms %04o.\n"
#: lib/fsm.c:1350
#, fuzzy, c-format
msgid "%s directory created with perms %04o, no context.\n"
msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
#: lib/fsm.c:1635
#: lib/fsm.c:1354
#, fuzzy, c-format
msgid "%s directory created with perms %04o, context %s.\n"
msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1762 lib/fsm.c:1898
#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s %s olarak kaydedildi\n"
#: lib/fsm.c:1925
#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s / %s dizin silinemedi - Dizin boþ deðil\n"
#: lib/fsm.c:1931
#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
#: lib/fsm.c:1946
#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s / %s bað kaldýrýlamadý: %s\n"
#: lib/fsm.c:1968
#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s %s olarak oluþturuldu\n"
@ -2253,66 +2258,78 @@ msgstr "kaynak paketi .spec dosyas
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
#: lib/psm.c:554
#: lib/psm.c:541
#, c-format
msgid "setexeccon(%s) fails from context \"%s\": %s\n"
msgstr ""
#: lib/psm.c:545
#, c-format
msgid ""
"setexeccon(%s) fails from context \"%s\": %s\n"
"Continuing ...\n"
msgstr ""
#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
#: lib/psm.c:562
#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
#: lib/psm.c:730
#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
#: lib/psm.c:751
#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
#: lib/psm.c:757
#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n"
#: lib/psm.c:1188
#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
#: lib/psm.c:1323
#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
#: lib/psm.c:1432
#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s'den baþlýk okunamadý: %s\n"
#: lib/psm.c:1510
#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
#: lib/psm.c:1511
#: lib/psm.c:1611
msgid " on file "
msgstr " dosyada "
#: lib/psm.c:1697
#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: lib/psm.c:1700
#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s baþarýsýz\n"
#: lib/query.c:118 lib/rpmts.c:566
#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "biçem yanlýþ: %s\n"
@ -2361,7 +2378,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@ -2949,76 +2966,76 @@ msgstr "%s okunam
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
#: lib/rpmsx.c:343
#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:360
#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
#: lib/rpmsx.c:391
#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
#: lib/rpmsx.c:406 lib/rpmsx.c:421
#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
#: lib/rpmsx.c:434
#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
#: lib/rpmts.c:163
#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s de Paket veritabaný açýlamadý\n"
#: lib/rpmts.c:253
#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "geçersiz paket numarasý: %s\n"
#: lib/rpmts.c:271
#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "%s içinde '(' yok: %s\n"
#: lib/rpmts.c:279
#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "geçersiz paket numarasý: %s\n"
#: lib/rpmts.c:456
#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s dizininde rpm veritabaný açýlamýyor\n"
#: lib/rpmts.c:598
#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "satýr: %s\n"
#: lib/rpmts.c:610
#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s alýnýyor\n"
#: lib/rpmts.c:1098
#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
#: lib/rpmts.c:1100
#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
#: lib/rpmts.c:1156
#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@ -3187,7 +3204,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Ýmza: boyut(%d)+iz(%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dýþlanýyor\n"
@ -3200,7 +3217,7 @@ msgstr "%s dizini d
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@ -3213,7 +3230,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@ -3221,7 +3238,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-24 00:03+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,54 +59,54 @@ msgstr "selhala alokace pam
msgid "unknown error"
msgstr "neznámá chyba"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vypí¹e tuto nápovìdu"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Vypí¹e krátký návod k pou¾ití"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Zobrazit implicitní volby ve zprávì"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Pou¾ití:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[VOLBY...]"

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: Sun Jan 21 2001 04:30:32+0200\n"
"Last-Translator: Martin Hansen <mah@k64.dk>\n"
"Language-Team: Dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
"X-Generator: KTranslator v 0.6.0\n"
#: popt.c:35
@ -60,55 +60,55 @@ msgstr ""
msgid "unknown error"
msgstr "ukendt fejl"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vis denne hjælpemeddelelse"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Vis kortfattet brugsanvisning"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Vis kortfattet brugsanvisning"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "INGEN"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Brug:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[TILVALG...]"

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Leandro Lucarella <luca@linuxmendoza.org.ar>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,55 +64,55 @@ msgstr ""
msgid "unknown error"
msgstr "error desconocido"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Muestra este mensaje de ayuda"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Indica el modo de uso resumido"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Indica el modo de uso resumido"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Modo de Uso:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPCIN...]"

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -11,14 +11,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.8.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-06-22 23:43+0200\n"
"Last-Translator: RPM French Translation <rpm-fr@livna.org>\n"
"Language-Team: RPM French Translation <rpm-fr@livna.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -69,54 +69,54 @@ msgstr "échec de l'allocation de mémoire"
msgid "unknown error"
msgstr "erreur inconnue"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Montre ce message d'aide"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Affiche un bref descriptif de l'utilisation"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Afficher les valeurs par défaut des options dans le message"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "RIEN"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "ENTIER"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "CHAINE"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOTTANT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Utilisation:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPTION...]"

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-01-17 01:01+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr "erro descoñecido"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Amosar esta mensaxe de axuda"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Amosar brevemente o xeito de utilización"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Amosar brevemente o xeito de utilización"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "NADA"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "CADEA"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Uso:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPCIÓN...]"

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-08-03 23:26+0200\n"
"Last-Translator: László Németh <nemeth@qwertynet.hu>\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "E súgó megjelenítése"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Rövid használati utasítás megjelenítése"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Rövid használati utasítás megjelenítése"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-06-08 01:35+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,54 +59,54 @@ msgstr "ekki t
msgid "unknown error"
msgstr "óþekkt villa"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Sýna þessa hjálp"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Sýna stuttar notkunarleiðbeiningar"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Sýna sjálfgefin gildi rofa í skilaboðum"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "ENGIN"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Notkun:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[ROFI...]"

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-09-06 20:06+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=EUC-KR\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,54 +59,54 @@ msgstr "
msgid "unknown error"
msgstr "알 수 없는 오류입니다"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "이 도움말을 보여줍니다"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "간단한 사용법을 보여줍니다"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "기본적인 옵션을 보여줍니다"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "없음(NONE)"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "값(VAL)"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "정수(INT)"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "정수(LONG)"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "문자열(STRING)"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "소수(FLOAT)"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "소수(DOUBLE)"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "인수(ARG)"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "사용법:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[옵션...]"

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-06-27 11:05+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,54 +59,54 @@ msgstr "minneallokering feilet"
msgid "unknown error"
msgstr "ukjent feil"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vis denne hjelpmeldingen"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Vis kort bruksmelding"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Vis forvalgte flagg i melding"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "INGEN"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VERDI"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "HELTALL"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRENG"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLYTTALL"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Bruk:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[FLAGG...]"

View File

@ -5,14 +5,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.9-20030515\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-06-08 20:32+0200\n"
"Last-Translator: Jakub Bogusz <qboosh@pld.org.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -63,55 +63,55 @@ msgstr "b
msgid "unknown error"
msgstr "nieznany b³±d"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Poka¿ tê pomoc"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Wy¶wietl skrócony sposób u¿ycia"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Wy¶wietl domy¶lne opcje w opisie"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "BRAK"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "WART"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "£AÑCUCH"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "PARAM"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Sk³adnia:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPCJA...]"

View File

@ -7,8 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
@ -65,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-02-13 18:32+0000\n"
"Last-Translator: Pedro Morais <morais@kde.org>\n"
"Language-Team: pt <morais@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,54 +59,54 @@ msgstr "aloca
msgid "unknown error"
msgstr "erro desconhecido"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Mostrar esta mensagem de ajuda"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Mostrar uma mensagem de utilização sucinta"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Mostrar valor por omissão das opções na mensagem"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Utilização:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPÇÃO...]"

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-06-14 23:23+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -60,55 +60,55 @@ msgstr ""
msgid "unknown error"
msgstr "eroare necuinoscuta"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Afisare mesaj de help"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Afisare mesaj sintaxa sumar"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Afisare mesaj sintaxa sumar"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Sintaxa:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPTIUNE...]"

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-05 21:00-0500\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,54 +59,54 @@ msgstr "
msgid "unknown error"
msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "ðÏËÁÚÁÔØ ÜÔÏ ÓÏÏÂÝÅÎÉÅ"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "ðÏËÁÚÁÔØ ËÒÁÔËÕÀ ÉÎÓÔÒÕËÃÉÀ ÐÏ ÉÓÐÏÌØÚÏ×ÁÎÉÀ"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "ðÏËÁÚÁÔØ ÐÁÒÁÍÅÔÒÙ ÐÏ ÕÍÏÌÞÁÎÉÀ"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[ðáòáíåôò...]"

View File

@ -5,14 +5,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-08-04 21:40+0200\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -63,55 +63,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vypísa» túto správu"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Zobrazi» struèný návod na pou¾itie"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Zobrazi» struèný návod na pou¾itie"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-09-05 12:30+0200\n"
"Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Prika¾i to sporoèilo s pomoèjo"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Prika¾i kratko sporoèilo o uporabi"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Prika¾i kratko sporoèilo o uporabi"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-12 22:26+0100\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,54 +59,54 @@ msgstr "minnesallokering misslyckades"
msgid "unknown error"
msgstr "okänt fel"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Visa denna hjälptext"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Visa en kortfattad användningstext"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Visa standardalternativ för flaggor i meddelande"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "INGET"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "VÄRDE"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "HELTAL"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LÅNG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRÄNG"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLYTTAL"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DUBBEL"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Användning:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[FLAGGA...]"

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-02-11 13:01+0200\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso8859-9\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr "bilinmeyen hata"
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Bu yardým iletisini gösterir"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Kýsa bir kullaným iletisi göster"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Kýsa bir kullaným iletisi göster"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr "YOK"
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr "DEÐ"
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr "INT"
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr "Kullanýmý:"
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[SEÇENEK...]"

View File

@ -5,14 +5,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-09-30 16:54+0200\n"
"Last-Translator: Yuri Syrota <rasta@renome.rovno.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-u\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -63,55 +63,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "ðÏËÁÚÁÔÉ ÃÀ ÄÏצÄËÕ"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -9,14 +9,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-03-18 23:11+0100\n"
"Last-Translator: Nobody yet\n"
"Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -67,55 +67,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Mostrer ci messaedje d' aide chal"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Mostre on court messaedje so kmint vos è siervi"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Mostre on court messaedje so kmint vos è siervi"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-11-11 05:04+0800\n"
"Last-Translator: Dillion Chen <dillon.chen@turbolinux.com.cn>\n"
"Language-Team: TLDN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=gb2312\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
#: popthelp.c:58 popthelp.c:73
#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "显示这条帮助信息"
#: popthelp.c:59 popthelp.c:74
#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "显示简短使用信息"
#: popthelp.c:62 popthelp.c:77
#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "显示简短使用信息"
#: popthelp.c:122
#: popthelp.c:124
msgid "NONE"
msgstr ""
#: popthelp.c:124
#: popthelp.c:126
msgid "VAL"
msgstr ""
#: popthelp.c:128
#: popthelp.c:130
msgid "INT"
msgstr ""
#: popthelp.c:129
#: popthelp.c:131
msgid "LONG"
msgstr ""
#: popthelp.c:130
#: popthelp.c:132
msgid "STRING"
msgstr ""
#: popthelp.c:131
#: popthelp.c:133
msgid "FLOAT"
msgstr ""
#: popthelp.c:132
#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
#: popthelp.c:133
#: popthelp.c:135
msgid "ARG"
msgstr ""
#: popthelp.c:508
#: popthelp.c:548
msgid "Usage:"
msgstr ""
#: popthelp.c:532
#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""

View File

@ -482,6 +482,9 @@ exit 0
%{__includedir}/popt.h
%changelog
* Mon Mar 1 2004 Jeff Johnson <jbj@jbj.org> 4.3-0.17
- permit globs in macrofiles: directive (#117217).
* Wed Feb 25 2004 Jeff Johnson <jbj@jbj.org> 4.3-0.15
- serialize rpmtsRun() using fcntl on /var/lock/rpm/transaction.

View File

@ -92,21 +92,17 @@ typedef /*@abstract@*/ struct MacroBuf_s {
/*@-exportlocal -exportheadervar@*/
#define MAX_MACRO_DEPTH 16
#define _MAX_MACRO_DEPTH 16
/*@unchecked@*/
int max_macro_depth = MAX_MACRO_DEPTH;
int max_macro_depth = _MAX_MACRO_DEPTH;
#ifdef DEBUG_MACROS
#define _PRINT_MACRO_TRACE 0
/*@unchecked@*/
int print_macro_trace = 0;
int print_macro_trace = _PRINT_MACRO_TRACE;
#define _PRINT_EXPAND_TRACE 0
/*@unchecked@*/
int print_expand_trace = 0;
#else
/*@unchecked@*/
int print_macro_trace = 0;
/*@unchecked@*/
int print_expand_trace = 0;
#endif
int print_expand_trace = _PRINT_EXPAND_TRACE;
/*@=exportlocal =exportheadervar@*/
#define MACRO_CHUNK_SIZE 16
@ -241,7 +237,7 @@ rpmDumpMacroTable(MacroContext mc, FILE * fp)
* Find entry in macro table.
* @param mc macro context
* @param name macro name
* @param namelen no. of byes
* @param namelen no. of bytes
* @return address of slot in macro table with name (or NULL)
*/
/*@-boundswrite@*/
@ -1482,6 +1478,235 @@ expandMacro(MacroBuf mb)
return rc;
}
/* =============================================================== */
/* XXX dupe'd to avoid change in linkage conventions. */
#define POPT_ERROR_NOARG -10 /*!< missing argument */
#define POPT_ERROR_BADQUOTE -15 /*!< error in paramter quoting */
#define POPT_ERROR_MALLOC -21 /*!< memory allocation failed */
#define POPT_ARGV_ARRAY_GROW_DELTA 5
/*@-boundswrite@*/
static int poptDupArgv(int argc, const char **argv,
int * argcPtr, const char *** argvPtr)
{
size_t nb = (argc + 1) * sizeof(*argv);
const char ** argv2;
char * dst;
int i;
if (argc <= 0 || argv == NULL) /* XXX can't happen */
return POPT_ERROR_NOARG;
for (i = 0; i < argc; i++) {
if (argv[i] == NULL)
return POPT_ERROR_NOARG;
nb += strlen(argv[i]) + 1;
}
dst = malloc(nb);
if (dst == NULL) /* XXX can't happen */
return POPT_ERROR_MALLOC;
argv2 = (void *) dst;
dst += (argc + 1) * sizeof(*argv);
/*@-branchstate@*/
for (i = 0; i < argc; i++) {
argv2[i] = dst;
dst += strlen(strcpy(dst, argv[i])) + 1;
}
/*@=branchstate@*/
argv2[argc] = NULL;
if (argvPtr) {
*argvPtr = argv2;
} else {
free(argv2);
argv2 = NULL;
}
if (argcPtr)
*argcPtr = argc;
return 0;
}
/*@=boundswrite@*/
/*@-bounds@*/
static int poptParseArgvString(const char * s, int * argcPtr, const char *** argvPtr)
{
const char * src;
char quote = '\0';
int argvAlloced = POPT_ARGV_ARRAY_GROW_DELTA;
const char ** argv = malloc(sizeof(*argv) * argvAlloced);
int argc = 0;
int buflen = strlen(s) + 1;
char * buf = memset(alloca(buflen), 0, buflen);
int rc = POPT_ERROR_MALLOC;
if (argv == NULL) return rc;
argv[argc] = buf;
for (src = s; *src != '\0'; src++) {
if (quote == *src) {
quote = '\0';
} else if (quote != '\0') {
if (*src == '\\') {
src++;
if (!*src) {
rc = POPT_ERROR_BADQUOTE;
goto exit;
}
if (*src != quote) *buf++ = '\\';
}
*buf++ = *src;
} else if (isspace(*src)) {
if (*argv[argc] != '\0') {
buf++, argc++;
if (argc == argvAlloced) {
argvAlloced += POPT_ARGV_ARRAY_GROW_DELTA;
argv = realloc(argv, sizeof(*argv) * argvAlloced);
if (argv == NULL) goto exit;
}
argv[argc] = buf;
}
} else switch (*src) {
case '"':
case '\'':
quote = *src;
/*@switchbreak@*/ break;
case '\\':
src++;
if (!*src) {
rc = POPT_ERROR_BADQUOTE;
goto exit;
}
/*@fallthrough@*/
default:
*buf++ = *src;
/*@switchbreak@*/ break;
}
}
if (strlen(argv[argc])) {
argc++, buf++;
}
rc = poptDupArgv(argc, argv, argcPtr, argvPtr);
exit:
if (argv) free(argv);
return rc;
}
/*@=bounds@*/
/* =============================================================== */
static int _debug = 0;
int rpmGlob(const char * patterns, int * argcPtr, const char *** argvPtr)
{
int ac = 0;
const char ** av = NULL;
int argc = 0;
const char ** argv = NULL;
char * globRoot = NULL;
size_t maxb, nb;
int i, j;
int rc;
rc = poptParseArgvString(patterns, &ac, &av);
if (rc)
return rc;
for (j = 0; j < ac; j++) {
const char * globURL;
const char * path;
int ut = urlPath(av[j], &path);
glob_t gl;
if (!Glob_pattern_p(av[j], 0) && strchr(path, '~') == NULL) {
argv = xrealloc(argv, (argc+2) * sizeof(*argv));
argv[argc] = xstrdup(av[j]);
if (_debug)
fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, argv[argc]);
argc++;
continue;
}
gl.gl_pathc = 0;
gl.gl_pathv = NULL;
rc = Glob(av[j], GLOB_TILDE, Glob_error, &gl);
if (rc)
goto exit;
/* XXX Prepend the URL leader for globs that have stripped it off */
maxb = 0;
for (i = 0; i < gl.gl_pathc; i++) {
if ((nb = strlen(&(gl.gl_pathv[i][0]))) > maxb)
maxb = nb;
}
nb = ((ut > URL_IS_DASH && ut != URL_IS_FTP) ? (path - av[j]) : 0);
maxb += nb;
maxb += 1;
globURL = globRoot = xmalloc(maxb);
switch (ut) {
case URL_IS_HTTP:
case URL_IS_PATH:
case URL_IS_DASH:
strncpy(globRoot, av[j], nb);
/*@switchbreak@*/ break;
case URL_IS_FTP:
case URL_IS_UNKNOWN:
/*@switchbreak@*/ break;
}
globRoot += nb;
*globRoot = '\0';
if (_debug)
fprintf(stderr, "*** GLOB maxb %d diskURL %d %*s globURL %p %s\n", (int)maxb, (int)nb, (int)nb, av[j], globURL, globURL);
argv = xrealloc(argv, (argc+gl.gl_pathc+1) * sizeof(*argv));
if (argv != NULL)
for (i = 0; i < gl.gl_pathc; i++) {
const char * globFile = &(gl.gl_pathv[i][0]);
if (globRoot > globURL && globRoot[-1] == '/')
while (*globFile == '/') globFile++;
strcpy(globRoot, globFile);
if (_debug)
fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, globURL);
argv[argc++] = xstrdup(globURL);
}
/*@-immediatetrans@*/
Globfree(&gl);
/*@=immediatetrans@*/
globURL = _free(globURL);
}
if (argv != NULL && argc > 0) {
argv[argc] = NULL;
if (argvPtr)
*argvPtr = argv;
if (argcPtr)
*argcPtr = argc;
rc = 0;
} else
rc = 1;
exit:
av = _free(av);
/*@-branchstate@*/
if (rc || argvPtr == NULL) {
/*@-dependenttrans -unqualifiedtrans@*/
if (argv != NULL)
for (i = 0; i < argc; i++)
argv[i] = _free(argv[i]);
argv = _free(argv);
/*@=dependenttrans =unqualifiedtrans@*/
}
/*@=branchstate@*/
return rc;
}
/* =============================================================== */
int
@ -1595,10 +1820,42 @@ rpmLoadMacros(MacroContext mc, int level)
}
}
void
rpmInitMacros(/*@unused@*/ MacroContext mc, const char *macrofiles)
int
rpmLoadMacroFile(MacroContext mc, const char * fn)
{
char *m, *mfile, *me;
FD_t fd = Fopen(fn, "r.fpio");
char buf[BUFSIZ];
int rc = -1;
if (fd == NULL || Ferror(fd)) {
if (fd) (void) Fclose(fd);
return rc;
}
/* XXX Assume new fangled macro expansion */
/*@-mods@*/
max_macro_depth = 16;
/*@=mods@*/
while(rdcl(buf, sizeof(buf), fd, 1) != NULL) {
char c, *n;
n = buf;
SKIPBLANK(n, c);
if (c != '%')
/*@innercontinue@*/ continue;
n++; /* skip % */
rc = rpmDefineMacro(mc, n, RMIL_MACROFILES);
}
rc = Fclose(fd);
return rc;
}
void
rpmInitMacros(MacroContext mc, const char * macrofiles)
{
char *mfiles, *m, *me;
if (macrofiles == NULL)
return;
@ -1606,11 +1863,14 @@ rpmInitMacros(/*@unused@*/ MacroContext mc, const char *macrofiles)
if (mc == NULL) mc = rpmGlobalMacroContext;
#endif
for (mfile = m = xstrdup(macrofiles); mfile && *mfile != '\0'; mfile = me) {
FD_t fd;
char buf[BUFSIZ];
mfiles = xstrdup(macrofiles);
for (m = mfiles; m && *m != '\0'; m = me) {
const char ** av;
int ac;
int i;
for (me = mfile; (me = strchr(me, ':')) != NULL; me++) {
for (me = m; (me = strchr(me, ':')) != NULL; me++) {
/* Skip over URI's. */
if (!(me[1] == '/' && me[2] == '/'))
/*@innerbreak@*/ break;
}
@ -1618,44 +1878,19 @@ rpmInitMacros(/*@unused@*/ MacroContext mc, const char *macrofiles)
if (me && *me == ':')
*me++ = '\0';
else
me = mfile + strlen(mfile);
me = m + strlen(m);
/* Expand ~/ to $HOME */
buf[0] = '\0';
if (mfile[0] == '~' && mfile[1] == '/') {
char *home;
if ((home = getenv("HOME")) != NULL) {
mfile += 2;
strncpy(buf, home, sizeof(buf));
strncat(buf, "/", sizeof(buf) - strlen(buf));
}
}
strncat(buf, mfile, sizeof(buf) - strlen(buf));
buf[sizeof(buf)-1] = '\0';
fd = Fopen(buf, "r.fpio");
if (fd == NULL || Ferror(fd)) {
if (fd) (void) Fclose(fd);
/* Glob expand the macro file path element, expanding ~ to $HOME. */
ac = 0;
av = NULL;
i = rpmGlob(m, &ac, &av);
if (i != 0)
continue;
}
/* XXX Assume new fangled macro expansion */
/*@-mods@*/
max_macro_depth = 16;
/*@=mods@*/
while(rdcl(buf, sizeof(buf), fd, 1) != NULL) {
char c, *n;
n = buf;
SKIPBLANK(n, c);
if (c != '%')
/*@innercontinue@*/ continue;
n++; /* skip % */
(void) rpmDefineMacro(NULL, n, RMIL_MACROFILES);
}
(void) Fclose(fd);
/* Read macros from each file. */
for (i = 0; i < ac; i++)
(void) rpmLoadMacroFile(mc, av[i]);
av = _free(av);
}
m = _free(m);

View File

@ -395,6 +395,17 @@ int Access(const char * path, int amode)
/*@globals errno, fileSystem @*/
/*@modifies errno, fileSystem @*/;
/**
* glob_pattern_p(3) clone.
*/
int Glob_pattern_p (const char *pattern, int quote)
/*@*/;
/**
* glob_error(3) clone.
*/
int Glob_error(const char * epath, int eerrno)
/*@*/;
/**
* glob(3) clone.

View File

@ -67,6 +67,18 @@ void rpmDumpMacroTable (/*@null@*/ MacroContext mc,
/*@globals rpmGlobalMacroContext, fileSystem @*/
/*@modifies *fp, fileSystem @*/;
/**
* Return URL path(s) from a (URL prefixed) pattern glob.
* @patterns glob pattern
* @retval *argcPtr no. of paths
* @retval *argvPtr array of paths (malloc'd contiguous blob)
* @return 0 on success
*/
int rpmGlob(const char * patterns, /*@out@*/ int * argcPtr,
/*@out@*/ const char *** argvPtr)
/*@globals fileSystem@*/
/*@modifies *argcPtr, *argvPtr, fileSystem @*/;
/**
* Expand macro into buffer.
* @deprecated Use rpmExpand().
@ -129,10 +141,20 @@ void rpmLoadMacros (/*@null@*/ MacroContext mc, int level)
/*@modifies rpmGlobalMacroContext @*/;
/**
* Initialize global macro context from set of macrofile(s).
* Load macro context from a macro file.
* @param mc (unused)
* @param macrofiles colon separated list of macro files (NULL does nothing)
*/
int rpmLoadMacroFile(/*@null@*/ MacroContext mc, const char * macrofiles)
/*@globals rpmGlobalMacroContext,
h_errno, fileSystem, internalState @*/
/*@modifies rpmGlobalMacroContext, fileSystem, internalState @*/;
/**
* Initialize macro context from set of macrofile(s).
* @param mc macro context
* @param macrofiles colon separated list of macro files (NULL does nothing)
*/
void rpmInitMacros (/*@null@*/ MacroContext mc, const char * macrofiles)
/*@globals rpmGlobalMacroContext, rpmCLIMacroContext,
h_errno, fileSystem, internalState @*/

View File

@ -1411,6 +1411,52 @@ fprintf(stderr, "*** Access(%s,%d)\n", path, amode);
return access(path, amode);
}
/* glob_pattern_p() taken from bash
* Copyright (C) 1985, 1988, 1989 Free Software Foundation, Inc.
*
* Return nonzero if PATTERN has any special globbing chars in it.
*/
int Glob_pattern_p (const char * pattern, int quote)
{
const char *p;
int open = 0;
char c;
(void) urlPath(pattern, &p);
while ((c = *p++) != '\0')
switch (c) {
case '?':
case '*':
return (1);
case '\\':
if (quote && p[1] != '\0')
p++;
continue;
case '[':
open = 1;
continue;
case ']':
if (open)
return (1);
continue;
case '+':
case '@':
case '!':
if (*p == '(')
return (1);
continue;
}
return (0);
}
int Glob_error(/*@unused@*/const char * epath, /*@unused@*/ int eerrno)
{
return 1;
}
int Glob(const char *pattern, int flags,
int errfunc(const char * epath, int eerrno), glob_t *pglob)
{
@ -1431,8 +1477,11 @@ fprintf(stderr, "*** Glob(%s,0x%x,%p,%p)\n", pattern, (unsigned)flags, (void *)e
pglob->gl_stat = Stat;
/*@=type@*/
flags |= GLOB_ALTDIRFUNC;
flags &= ~GLOB_TILDE;
break;
case URL_IS_HTTP: /* XXX WRONG WRONG WRONG */
flags &= ~GLOB_TILDE;
/*@fallthrough@*/
case URL_IS_PATH:
pattern = lpath;
/*@fallthrough@*/

View File

@ -1,7 +1,7 @@
#/*! \page config_rpmrc Default configuration: /usr/lib/rpm/rpmrc
# \verbatim
#
# $Id: rpmrc.in,v 2.58 2004/02/22 20:24:14 jbj Exp $
# $Id: rpmrc.in,v 2.59 2004/03/02 01:31:03 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
@ -367,7 +367,7 @@ buildarch_compat: x86_64: noarch
buildarch_compat: amd64: x86_64
buildarch_compat: ia32e: x86_64
macrofiles: @RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.specspo:@SYSCONFIGDIR@/macros.prelink:@SYSCONFIGDIR@/macros.solve:@SYSCONFIGDIR@/macros.up2date:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros
macrofiles: @RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.*:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros
# \endverbatim
#*/

View File

@ -13,7 +13,6 @@
#include "rpmds.h"
#include "rpmts.h"
#include "misc.h" /* XXX myGlobPatternP */
#include "debug.h"
static int _debug = 0;
@ -446,7 +445,7 @@ static void initGlobs(/*@unused@*/ rpmts ts, const char ** argv)
buf[0] = '\0';
if (argv != NULL && * argv != NULL) {
const char * arg;
int single = (myGlobPatternP(argv[0]) && argv[1] == NULL);
int single = (Glob_pattern_p(argv[0], 0) && argv[1] == NULL);
char * t;
t = buf;