- permit both relative/absolute paths, display 'P' when verifying.
CVS patchset: 5970 CVS date: 2002/12/24 20:06:33
This commit is contained in:
parent
6b0679df90
commit
60b4c2293f
1
CHANGES
1
CHANGES
|
@ -75,6 +75,7 @@
|
|||
- remove useless kernel/glibc dependencies (#79872).
|
||||
- add matching "config(N) = EVR" dependencies iff %%config is found.
|
||||
- add %%pubkey attribute to read armored pubkey files into header.
|
||||
- permit both relative/absolute paths, display 'P' when verifying.
|
||||
|
||||
4.0.4 -> 4.1:
|
||||
- loosely wire beecrypt library into rpm.
|
||||
|
|
|
@ -1742,15 +1742,18 @@ static int processPubkeyFile(Package pkg, FileList fl, const char * fileURL)
|
|||
const char * apkt = NULL;
|
||||
const unsigned char * pkt = NULL;
|
||||
ssize_t pktlen = 0;
|
||||
int absolute = 1;
|
||||
int rc = 1;
|
||||
int xx;
|
||||
|
||||
(void) urlPath(fileURL, &fn);
|
||||
if (*fn == '/')
|
||||
if (*fn == '/') {
|
||||
fn = rpmGenPath(fl->buildRootURL, NULL, fn);
|
||||
else
|
||||
absolute = 1;
|
||||
} else
|
||||
fn = rpmGenPath(buildURL, NULL, fn);
|
||||
|
||||
fprintf(stderr, "*** fn %s\n", fn);
|
||||
if ((rc = pgpReadPkts(fn, &pkt, &pktlen)) <= 0) {
|
||||
rpmError(RPMERR_BADSPEC, _("%s: public key read failed.\n"), fn);
|
||||
goto exit;
|
||||
|
@ -1765,6 +1768,8 @@ static int processPubkeyFile(Package pkg, FileList fl, const char * fileURL)
|
|||
RPM_STRING_ARRAY_TYPE, &apkt, 1);
|
||||
|
||||
rc = 0;
|
||||
if (absolute)
|
||||
rc = addFile(fl, fn, NULL);
|
||||
|
||||
exit:
|
||||
apkt = _free(apkt);
|
||||
|
|
|
@ -288,6 +288,7 @@ static int verifyHeader(QVA_t qva, const rpmts ts, rpmfi fi)
|
|||
(fileAttrs & RPMFILE_DOC) ? 'd' :
|
||||
(fileAttrs & RPMFILE_GHOST) ? 'g' :
|
||||
(fileAttrs & RPMFILE_LICENSE) ? 'l' :
|
||||
(fileAttrs & RPMFILE_PUBKEY) ? 'P' :
|
||||
(fileAttrs & RPMFILE_README) ? 'r' : ' '),
|
||||
rpmfiFN(fi));
|
||||
te += strlen(te);
|
||||
|
@ -329,6 +330,7 @@ static int verifyHeader(QVA_t qva, const rpmts ts, rpmfi fi)
|
|||
(fileAttrs & RPMFILE_DOC) ? 'd' :
|
||||
(fileAttrs & RPMFILE_GHOST) ? 'g' :
|
||||
(fileAttrs & RPMFILE_LICENSE) ? 'l' :
|
||||
(fileAttrs & RPMFILE_PUBKEY) ? 'P' :
|
||||
(fileAttrs & RPMFILE_README) ? 'r' : ' '),
|
||||
rpmfiFN(fi));
|
||||
te += strlen(te);
|
||||
|
|
28
po/cs.po
28
po/cs.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -525,64 +525,64 @@ msgstr "Soubor nesouhlas
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Soubor nenalezen: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead selhalo\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Soubor potøebuje úvodní \"/\": %s\n"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "Glob není dovolen: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Soubor nenalezen globem: %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "Nemohu otevøít %%files soubor %s: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "øádek: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "©patný soubor: %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "©patný vlastník/skupina: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "rozbalování archívu selhalo %s%s: %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Zpracovávám soubory: %s-%s-%s\n"
|
||||
|
@ -3111,7 +3111,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "chybí { po %"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "chybné závislosti pøi sestavování:\n"
|
||||
|
|
28
po/da.po
28
po/da.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -520,64 +520,64 @@ msgstr "Fil passer ikke til pr
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Fil ikke fundet: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead mislykkedes\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Fil kræver foranstillet \"/\": %s\n"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "linie %d: Filnavn ikke tilladt: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Fil ikke fundet med glob: %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "linie: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Ugyldig fil: %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "Ugyldig ejer/gruppe: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Gennemløber filer: %s-%s-%s\n"
|
||||
|
@ -3123,7 +3123,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "manglende %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
|
||||
|
|
28
po/de.po
28
po/de.po
|
@ -37,7 +37,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -594,59 +594,59 @@ msgstr "Lesen von %s fehlgeschlagen: %s."
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Datei auf dem Server nicht gefunden"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: »readLead« fehlgeschlagen\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Verschiebungen müssen mit einem »/« beginnen"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "Paket %s wird nicht in %s aufgeführt"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Datei auf dem Server nicht gefunden"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, 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:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
# , c-format
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "Fehler beim Suchen nach Paket %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
|
@ -654,7 +654,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, fuzzy, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
@ -3300,7 +3300,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "fehlende { nach %{"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
|
||||
|
|
28
po/fi.po
28
po/fi.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -535,64 +535,64 @@ msgstr "En voi lukea %s: %s."
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Tiedostoa ei löytynyt palvelimelta"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead epäonnistui\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "siirtojen pitää alkaa /-merkillä"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "paketti %s ei ole %s:ssä"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Tiedostoa ei löytynyt palvelimelta"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, fuzzy, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "virhe: tiedostoa %s ei voi avata\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "virhe etsittäessä pakettia %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, fuzzy, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
@ -3165,7 +3165,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "puuttuva '{' '%':n jälkeen"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
|
||||
|
|
28
po/fr.po
28
po/fr.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -556,64 +556,64 @@ msgstr ""
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "aucun package n'a t spcifi pour la dsinstallation"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "les arguments de --root (-r) doivent commencer par un /"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "aucun package n'a t spcifi pour la dsinstallation"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, fuzzy, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "La construction a chou.\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr ""
|
||||
|
@ -3203,7 +3203,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
|
28
po/gl.po
28
po/gl.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.1\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -505,64 +505,64 @@ msgstr ""
|
|||
msgid "File not found: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr ""
|
||||
|
@ -3014,7 +3014,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr ""
|
||||
|
|
28
po/is.po
28
po/is.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -508,64 +508,64 @@ msgstr ""
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Skráin fannst ekki: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: Fseek brást: %s\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "Gat ekki opnað PreUn skrá: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Skráin fannst ekki með 'glob': %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "Gat ekki opnað %%files skrána %s: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "lína: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Ógild skrá %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr ""
|
||||
|
@ -3045,7 +3045,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "vantar %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
|
||||
|
|
28
po/ja.po
28
po/ja.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -550,64 +550,64 @@ msgstr "
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "ファイルが見つかりません: %s"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead に失敗しました\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "ファイルは先頭に \"/\" が必要です: %s"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "%d 行目: バージョンは許可されていません: %s"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "ファイルが見つかりません(by glob): %s"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, fuzzy, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "%%files をオープンできません: %s"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "行目: %s"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "ファイル %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "不正な所有者/グループ: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "パッケージ %s の探索中\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, fuzzy, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "ファイルの処理中: %s-%s-%s\n"
|
||||
|
@ -3214,7 +3214,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "%s が見つかりません\n"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "%s-%s-%s のための依存性を満たしていません:"
|
||||
|
|
28
po/ko.po
28
po/ko.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.4\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -519,64 +519,64 @@ msgstr "
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "파일을 찾을 수 없음: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead이 실패했습니다\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "파일은 \"/\" 로 시작해야함: %s\n"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "Glob을 사용할 수 없음: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "glob으로 파일을 찾을 수 없음: %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "%s 파일의 %%files를 열 수 없음: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "행: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "잘못된 파일: %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "잘못된 소유자/그룹: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "파일 처리 중: %s-%s-%s\n"
|
||||
|
@ -3099,7 +3099,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "다음을 찾을 수 없음 %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "%s-%s-%s에 의존성 문제 발생: "
|
||||
|
|
28
po/no.po
28
po/no.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -519,64 +519,64 @@ msgstr ""
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Fil ikke funnet: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead feilet\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "linje %d: Filnavn ikke tillatt: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "Kunne ikke åpne spec fil %s: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "Installerer %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Ugyldig fil %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "Ugyldig eier/gruppe: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "ingen pakke utløser %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr ""
|
||||
|
@ -3077,7 +3077,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "mangler %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "feilede avhengigheter:\n"
|
||||
|
|
28
po/pl.po
28
po/pl.po
|
@ -8,7 +8,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-0500\n"
|
||||
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
|
||||
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
|
||||
"Language-Team: Polish <pl@li.org>\n"
|
||||
|
@ -541,64 +541,64 @@ msgstr "Plik nie zgadza si
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Nie znaleziono pliku: %s"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead nie powiod³o siê\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Plik musi siê zaczynaæ od \"/\": %s"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "linia %d: Wersja niedozwolona: %s"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Nie znaleziono pliku: %s"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, fuzzy, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "linia: %s"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "plik %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "B³êdny u¿ytkownik/grupa: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "poszukiwanie pakietu %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, fuzzy, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Przetwarzanie plików: %s\n"
|
||||
|
@ -3168,7 +3168,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "brak %s\n"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
|
||||
|
|
28
po/pt.po
28
po/pt.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -527,64 +527,64 @@ msgstr "O ficheiro n
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Ficheiro não encontrado: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr ":%s: o readLead falhou\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "O ficheiro precisa de começar por \"/\": %s\n"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "Glob não permitido: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Ficheiro não encontrado pelo glob: %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, 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:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "linha: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Ficheiro inválido: %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "Dono/grupo inválido: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "a abertura do pacote falhou%s%s: %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "A processar os ficheiros: %s-%s-%s\n"
|
||||
|
@ -3110,7 +3110,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "falta %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Dependências não satisfeitas para o %s-%s-%s: "
|
||||
|
|
28
po/pt_BR.po
28
po/pt_BR.po
|
@ -4,7 +4,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-0500\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8-bit\n"
|
||||
|
@ -576,68 +576,68 @@ msgid "File not found: %s\n"
|
|||
msgstr "no foi passado pacote para desinstalao"
|
||||
|
||||
# , c-format
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "argumentos para o --dbpath devem comear com uma /"
|
||||
|
||||
# , c-format
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "no foi passado pacote para desinstalao"
|
||||
|
||||
# , c-format
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, fuzzy, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
# , c-format
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 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:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "No consegui ler o arquivo spec de %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "instale pacote"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr ""
|
||||
|
@ -3367,7 +3367,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "lista dependncias do pacote"
|
||||
|
|
28
po/ro.po
28
po/ro.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -505,64 +505,64 @@ msgstr ""
|
|||
msgid "File not found: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr ""
|
||||
|
@ -3014,7 +3014,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr ""
|
||||
|
|
28
po/rpm.pot
28
po/rpm.pot
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -511,64 +511,64 @@ msgstr ""
|
|||
msgid "File not found: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr ""
|
||||
|
@ -3020,7 +3020,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr ""
|
||||
|
|
28
po/ru.po
28
po/ru.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -526,57 +526,57 @@ msgstr "
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr "%s: ÜÔÏ ÎÅ ÏÔËÒÙÔÙÊ ËÌÀÞ.\n"
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "ÓÔÒÏËÁ: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "ðÒÏ×ÅÒËÁ ÎÁ ÎÅÕÐÁËÏ×ÁÎÎÙÊ(Å) ÆÁÊÌ(Ù): %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
|
@ -585,7 +585,7 @@ msgstr ""
|
|||
"ïÂÎÁÒÕÖÅÎ(Ù) ÕÓÔÁÎÏ×ÌÅÎÎÙÊ(Å) (ÎÏ ÎÅ ÕÐÁËÏ×ÁÎÎÙÊ(Å)) ÆÁÊÌ(Ù):\n"
|
||||
"%s"
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
|
||||
|
@ -3066,7 +3066,7 @@ msgstr "
|
|||
msgid "missing %c %s"
|
||||
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %c %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s: "
|
||||
|
|
28
po/sk.po
28
po/sk.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -538,64 +538,64 @@ msgstr "S
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Súbor nebol nájdený: %s"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead zlyhalo\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Súbor nebol nájdený: %s"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, 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:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "riadok: %s"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "súbor %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "Chybný vlastník/skupina: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "vyhµadáva sa balík %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, fuzzy, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Spracovávajú sa súbory: %s\n"
|
||||
|
@ -3164,7 +3164,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "chýbajúce %s\n"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
|
||||
|
|
30
po/sl.po
30
po/sl.po
|
@ -1,12 +1,12 @@
|
|||
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
|
||||
# Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
|
||||
# $Id: sl.po,v 1.348 2002/12/24 19:49:41 jbj Exp $
|
||||
# $Id: sl.po,v 1.349 2002/12/24 20:06:43 jbj Exp $
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -537,64 +537,64 @@ 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:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead je bil neuspe¹en\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Datoteki manjka uvodni \"/\": %s"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "vrstica %d: Razlièica ni dovoljena: %s"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, 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:1906
|
||||
#: build/files.c:1911
|
||||
#, 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:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "vrstica: %s"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Po¹kodovana datoteka: %s: %s"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "Neobstojeè lastnik/skupina: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "i¹èemo paket %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Obdeloavnje datotek: %s-%s-%s\n"
|
||||
|
@ -3167,7 +3167,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "manjka %s\n"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
|
||||
|
|
28
po/sr.po
28
po/sr.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-0500\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=iso-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -528,64 +528,64 @@ msgstr "Neuspelo
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Datoteka nije pronaðena na serveru"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: Neuspeo 'readLead'\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, fuzzy, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "preme¹tanja moraju poèeti znakom '/'"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "paket %s nije naveden u %s"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, fuzzy, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Datoteka nije pronaðena na serveru"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, 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:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, fuzzy, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, fuzzy, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "gre¹ka potrage za paketom %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, fuzzy, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
@ -3156,7 +3156,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "nedostaje { posle %"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
|
||||
|
|
28
po/sv.po
28
po/sv.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.1\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-0500\n"
|
||||
"PO-Revision-Date: 2002-08-19 22:26+0200\n"
|
||||
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
@ -518,57 +518,57 @@ msgstr "Filen matchar inte prefixet (%s): %s\n"
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Filen hittades inte: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: importläsning misslyckades.\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr "%s: inte en publik nyckel med skal.\n"
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Filen behöver inledande \"/\": %s\n"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "Matchning inte tillåtet: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Hittade ingen fil vid matchningen: %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "Kunde inte öppna %%files-fil %s: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "rad: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Felaktig fil: %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "Felaktig ägare/grupp: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, c-format
|
||||
msgid "Checking for unpackaged file(s): %s\n"
|
||||
msgstr "Letar efter opackade fil(er): %s\n"
|
||||
|
||||
#: build/files.c:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
|
@ -577,7 +577,7 @@ msgstr ""
|
|||
"Installerade (men opaketerade) filer funna:\n"
|
||||
"%s"
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Bearbetar filer: %s-%s-%s\n"
|
||||
|
@ -3050,7 +3050,7 @@ msgstr "ber
|
|||
msgid "missing %c %s"
|
||||
msgstr "saknas %c %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "Ouppfyllda beroenden för %s: "
|
||||
|
|
28
po/tr.po
28
po/tr.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2002-12-24 14:47-0500\n"
|
||||
"POT-Creation-Date: 2002-12-24 15:05-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"
|
||||
|
@ -530,64 +530,64 @@ msgstr "Dosya
|
|||
msgid "File not found: %s\n"
|
||||
msgstr "Dosya bulunamadý: %s\n"
|
||||
|
||||
#: build/files.c:1755
|
||||
#: build/files.c:1758
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: public key read failed.\n"
|
||||
msgstr "%s: readLead baþarýsýz\n"
|
||||
|
||||
#: build/files.c:1759 lib/rpmchecksig.c:573
|
||||
#: build/files.c:1762 lib/rpmchecksig.c:573
|
||||
#, c-format
|
||||
msgid "%s: not an armored public key.\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:1805
|
||||
#: build/files.c:1810
|
||||
#, c-format
|
||||
msgid "File needs leading \"/\": %s\n"
|
||||
msgstr "Dosya \"/\" ile içermeli: %s\n"
|
||||
|
||||
#: build/files.c:1829
|
||||
#: build/files.c:1834
|
||||
#, fuzzy, c-format
|
||||
msgid "Glob not permitted: %s\n"
|
||||
msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
|
||||
|
||||
#: build/files.c:1846 lib/rpminstall.c:343
|
||||
#: build/files.c:1851 lib/rpminstall.c:343
|
||||
#, c-format
|
||||
msgid "File not found by glob: %s\n"
|
||||
msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
|
||||
|
||||
#: build/files.c:1906
|
||||
#: build/files.c:1911
|
||||
#, c-format
|
||||
msgid "Could not open %%files file %s: %s\n"
|
||||
msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
|
||||
|
||||
#: build/files.c:1917 build/pack.c:156
|
||||
#: build/files.c:1922 build/pack.c:156
|
||||
#, c-format
|
||||
msgid "line: %s\n"
|
||||
msgstr "satýr: %s\n"
|
||||
|
||||
#: build/files.c:2306
|
||||
#: build/files.c:2311
|
||||
#, c-format
|
||||
msgid "Bad file: %s: %s\n"
|
||||
msgstr "Dosya hatalý: %s: %s\n"
|
||||
|
||||
#: build/files.c:2318 build/parsePrep.c:50
|
||||
#: build/files.c:2323 build/parsePrep.c:50
|
||||
#, c-format
|
||||
msgid "Bad owner/group: %s\n"
|
||||
msgstr "Kullanýcý/grup hatalý: %s\n"
|
||||
|
||||
#: build/files.c:2362
|
||||
#: build/files.c:2367
|
||||
#, 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:2383
|
||||
#: build/files.c:2388
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Installed (but unpackaged) file(s) found:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: build/files.c:2411
|
||||
#: build/files.c:2416
|
||||
#, c-format
|
||||
msgid "Processing files: %s-%s-%s\n"
|
||||
msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
|
||||
|
@ -3122,7 +3122,7 @@ msgstr ""
|
|||
msgid "missing %c %s"
|
||||
msgstr "eksik %s"
|
||||
|
||||
#: lib/verify.c:393
|
||||
#: lib/verify.c:395
|
||||
#, fuzzy, c-format
|
||||
msgid "Unsatisfied dependencies for %s: "
|
||||
msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
|
||||
|
|
|
@ -15,7 +15,7 @@ Name: rpm
|
|||
%define version @VERSION@
|
||||
Version: %{version}
|
||||
%{expand: %%define rpm_version %{version}}
|
||||
Release: 0.37
|
||||
Release: 0.38
|
||||
Group: System Environment/Base
|
||||
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
|
||||
Copyright: GPL
|
||||
|
@ -455,8 +455,9 @@ exit 0
|
|||
%{__prefix}/include/popt.h
|
||||
|
||||
%changelog
|
||||
* Mon Dec 24 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.37
|
||||
* Mon Dec 24 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.38
|
||||
- add %%pubkey attribute to read armored pubkey files into header.
|
||||
- permit both relative/absolute paths, display 'P' when verifying.
|
||||
|
||||
* Mon Dec 23 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.36
|
||||
- add matching "config(N) = EVR" dependencies iff %%config is found.
|
||||
|
|
Loading…
Reference in New Issue