RPM Package Manager, CVS Repository http://rpm5.org/cvs/ ____________________________________________________________________________ Server: rpm5.org Name: Jeff Johnson Root: /v/rpm/cvs Email: jbj@rpm5.org Module: rpm Date: 29-Sep-2007 03:20:52 Branch: HEAD Handle: 2007092902205101 Modified files: rpm CHANGES rpm/lib package.c rpm/po id.po rpm/rpmdb rpmdb.c Log: - start eliminating rpmtsSetSig by inlining. Summary: Revision Changes Path 1.1645 +1 -0 rpm/CHANGES 2.161 +17 -4 rpm/lib/package.c 1.230 +981 -1440 rpm/po/id.po 1.160 +1 -1 rpm/rpmdb/rpmdb.c ____________________________________________________________________________ patch -p0 <<'@@ .' Index: rpm/CHANGES ============================================================================ $ cvs diff -u -r1.1644 -r1.1645 CHANGES --- rpm/CHANGES 29 Sep 2007 00:07:43 -0000 1.1644 +++ rpm/CHANGES 29 Sep 2007 01:20:51 -0000 1.1645 @@ -1,4 +1,5 @@ 4.5 -> 5.0: + - jbj: start eliminating rpmtsSetSig by inlining. - jbj: eliminate rpmtsSigFoo() getters. - jbj: finish refactoring vsflags out of rpmts. - rpm.org: rename fileTypes_e and whatis() (for name spacing). @@ . patch -p0 <<'@@ .' Index: rpm/lib/package.c ============================================================================ $ cvs diff -u -r2.160 -r2.161 package.c --- rpm/lib/package.c 29 Sep 2007 00:07:43 -0000 2.160 +++ rpm/lib/package.c 29 Sep 2007 01:20:51 -0000 2.161 @@ -436,7 +436,6 @@ /* If no header-only digest/signature, then do simple sanity check. */ if (info->tag == 0) { -verifyinfo_exit: xx = headerVerifyInfo(ril-1, dl, pe+1, &entry->info, 0); if (xx != -1) { (void) snprintf(buf, sizeof(buf), @@ -463,7 +462,13 @@ /*@-boundsread@*/ sig = memcpy(xmalloc(siglen), dataStart + info->offset, siglen); /*@=boundsread@*/ - (void) rpmtsSetSig(ts, info->tag, info->type, sig, info->count); + { + const void * osig = pgpGetSig(dig); + int_32 osigtype = pgpGetSigtype(dig); + if (osig && osigtype) + osig = headerFreeData(osig, osigtype); + (void) pgpSetSig(dig, info->tag, info->type, sig, info->count); + } switch (info->tag) { case RPMTAG_RSAHEADER: @@ -583,6 +588,7 @@ rpmRC rpmReadHeader(rpmts ts, void * _fd, Header *hdrp, const char ** msg) { + pgpDig dig = rpmtsDig(ts); FD_t fd = _fd; char buf[BUFSIZ]; int_32 block[4]; @@ -694,8 +700,8 @@ /*@-bounds@*/ /* LCL: segfault */ rpmRC rpmReadPackageFile(rpmts ts, void * _fd, const char * fn, Header * hdrp) { - FD_t fd = _fd; pgpDig dig = rpmtsDig(ts); + FD_t fd = _fd; char buf[8*BUFSIZ]; ssize_t count; Header sigh = NULL; @@ -863,7 +869,14 @@ rc = RPMRC_FAIL; goto exit; } - (void) rpmtsSetSig(ts, sigtag, sigtype, sig, siglen); + + { + const void * osig = pgpGetSig(dig); + int_32 osigtype = pgpGetSigtype(dig); + if (osig && osigtype) + osig = headerFreeData(osig, osigtype); + (void) pgpSetSig(dig, sigtag, sigtype, sig, siglen); + } switch (sigtag) { case RPMSIGTAG_RSA: @@ . patch -p0 <<'@@ .' Index: rpm/po/id.po ============================================================================ $ cvs diff -u -r1.229 -r1.230 id.po --- rpm/po/id.po 28 Aug 2007 00:40:44 -0000 1.229 +++ rpm/po/id.po 29 Sep 2007 01:20:51 -0000 1.230 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: rpm 4.4.9\n" "Report-Msgid-Bugs-To: <rpm-devel@rpm5.org>\n" -"POT-Creation-Date: 2007-05-21 07:46-0400\n" +"POT-Creation-Date: 2007-08-08 11:26-0400\n" "PO-Revision-Date: 2007-08-26 23:20+0700\n" "Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n" "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n" @@ -15,815 +15,800 @@ "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: build.c:40 +#: build.c:41 msgid "Failed build dependencies:\n" msgstr "" -#: build.c:71 +#: build.c:72 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:146 build.c:158 +#: build.c:147 build.c:159 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" -#: build.c:165 +#: build.c:166 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:193 +#: build.c:194 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:233 +#: build.c:234 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:238 +#: build.c:239 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:247 +#: build.c:248 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" -#: build.c:320 +#: build.c:321 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:335 build/spec.c:786 +#: build.c:336 build/spec.c:834 #, c-format msgid " target platform: %s\n" msgstr " target platform: %s\n" -#: rpmqv.c:77 +#: rpmqv.c:78 msgid "Query options (with -q or --query):" msgstr "" -#: rpmqv.c:80 +#: rpmqv.c:81 msgid "Verify options (with -V or --verify):" msgstr "" -#: rpmqv.c:84 +#: rpmqv.c:85 msgid "Source options (with --query or --verify):" msgstr "Opsi sumber (dengan -V atau dengan --verify):" -#: rpmqv.c:91 +#: rpmqv.c:92 msgid "Dependency check/order options:" msgstr "Opsi pengecheckan/urutan ketergantungan:" -#: rpmqv.c:97 +#: rpmqv.c:98 msgid "File tree walk options (with --ftswalk):" msgstr "Opsi 'file tree walk' (dengan --ftswalk):" -#: rpmqv.c:103 +#: rpmqv.c:104 msgid "Signature options:" msgstr "" -#: rpmqv.c:109 +#: rpmqv.c:110 msgid "Database options:" msgstr "" -#: rpmqv.c:115 +#: rpmqv.c:116 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:" msgstr "" -#: rpmqv.c:121 +#: rpmqv.c:122 msgid "Install/Upgrade/Erase options:" msgstr "" -#: rpmqv.c:126 tools/rpmdeps.c:154 +#: rpmqv.c:127 tools/rpmdeps.c:155 msgid "Common options for all rpm modes and executables:" msgstr "" -#: rpmqv.c:143 lib/poptI.c:43 +#: rpmqv.c:144 lib/poptI.c:44 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:152 +#: rpmqv.c:152 lib/poptALL.c:157 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:158 -#, c-format -msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n" -msgstr "" - -#: rpmqv.c:159 -#, c-format -msgid "" -"This program may be freely redistributed under the terms of the GNU GPL\n" -msgstr "" - -#: rpmqv.c:295 rpmqv.c:301 rpmqv.c:307 rpmqv.c:344 +#: rpmqv.c:287 rpmqv.c:293 rpmqv.c:299 rpmqv.c:336 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:323 +#: rpmqv.c:315 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:327 +#: rpmqv.c:319 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:330 +#: rpmqv.c:322 msgid "unexpected query format" msgstr "" -#: rpmqv.c:333 +#: rpmqv.c:325 msgid "unexpected query source" msgstr "" -#: rpmqv.c:376 +#: rpmqv.c:368 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:378 +#: rpmqv.c:370 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:381 +#: rpmqv.c:373 msgid "cannot use --prefix with --relocate or --excludepath" msgstr "tidak dapat menggunakan --prefix dengan --relocate atau --excludepath" -#: rpmqv.c:384 +#: rpmqv.c:376 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:387 +#: rpmqv.c:379 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:390 +#: rpmqv.c:382 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:393 +#: rpmqv.c:385 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:397 +#: rpmqv.c:389 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:401 +#: rpmqv.c:393 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:405 +#: rpmqv.c:397 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:409 +#: rpmqv.c:401 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:413 +#: rpmqv.c:405 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:417 +#: rpmqv.c:409 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:421 +#: rpmqv.c:413 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:426 +#: rpmqv.c:418 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:430 +#: rpmqv.c:422 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:434 +#: rpmqv.c:426 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:439 +#: rpmqv.c:431 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:444 +#: rpmqv.c:436 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:449 +#: rpmqv.c:441 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:453 +#: rpmqv.c:445 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:458 +#: rpmqv.c:450 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:463 +#: rpmqv.c:455 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:475 +#: rpmqv.c:467 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:499 +#: rpmqv.c:491 #, c-format msgid "no files to sign\n" msgstr "" -#: rpmqv.c:504 +#: rpmqv.c:496 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:524 +#: rpmqv.c:516 #, c-format msgid "pgp not found: " msgstr "" -#: rpmqv.c:532 +#: rpmqv.c:524 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:534 +#: rpmqv.c:526 #, c-format msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:538 +#: rpmqv.c:530 #, c-format msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:543 +#: rpmqv.c:535 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:550 +#: rpmqv.c:542 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:567 +#: rpmqv.c:559 #, c-format msgid "exec failed\n" msgstr "" -#: rpmqv.c:603 +#: rpmqv.c:595 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:673 +#: rpmqv.c:667 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:675 +#: rpmqv.c:669 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:696 +#: rpmqv.c:690 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:740 +#: rpmqv.c:734 msgid "no packages given for install" msgstr "" -#: rpmqv.c:760 +#: rpmqv.c:754 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:771 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:786 msgid "no arguments given" msgstr "" -#: build/build.c:138 build/pack.c:609 +#: build/build.c:138 build/pack.c:612 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:231 +#: build/build.c:220 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:241 +#: build/build.c:230 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:250 +#: build/build.c:239 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:361 +#: build/build.c:350 msgid "" "\n" "\n" "RPM build errors:\n" msgstr "" -#: build/expression.c:228 +#: build/expression.c:229 msgid "syntax error while parsing ==\n" msgstr "" -#: build/expression.c:258 +#: build/expression.c:259 msgid "syntax error while parsing &&\n" msgstr "" -#: build/expression.c:267 +#: build/expression.c:268 msgid "syntax error while parsing ||\n" msgstr "" -#: build/expression.c:310 +#: build/expression.c:311 msgid "parse error in expression\n" msgstr "" -#: build/expression.c:352 +#: build/expression.c:353 msgid "unmatched (\n" msgstr "" -#: build/expression.c:384 +#: build/expression.c:385 msgid "- only on numbers\n" msgstr "" -#: build/expression.c:400 +#: build/expression.c:401 msgid "! only on numbers\n" msgstr "" -#: build/expression.c:448 build/expression.c:503 build/expression.c:568 -#: build/expression.c:665 +#: build/expression.c:449 build/expression.c:504 build/expression.c:569 +#: build/expression.c:666 msgid "types must match\n" msgstr "" -#: build/expression.c:461 +#: build/expression.c:462 msgid "* / not suported for strings\n" msgstr "" -#: build/expression.c:519 +#: build/expression.c:520 msgid "- not suported for strings\n" msgstr "" -#: build/expression.c:678 +#: build/expression.c:679 msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:712 build/expression.c:761 +#: build/expression.c:713 build/expression.c:762 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:290 +#: build/files.c:287 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:355 build/files.c:555 build/files.c:751 +#: build/files.c:352 build/files.c:552 build/files.c:748 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:366 build/files.c:685 build/files.c:762 +#: build/files.c:363 build/files.c:682 build/files.c:759 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:404 build/files.c:710 +#: build/files.c:401 build/files.c:707 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:514 +#: build/files.c:511 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:571 +#: build/files.c:568 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:609 +#: build/files.c:606 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:619 +#: build/files.c:616 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:631 +#: build/files.c:628 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:789 +#: build/files.c:786 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" -#: build/files.c:800 +#: build/files.c:797 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:930 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:938 +#: build/files.c:935 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" -#: build/files.c:972 +#: build/files.c:969 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:994 +#: build/files.c:991 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1012 +#: build/files.c:1009 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1029 +#: build/files.c:1026 #, c-format msgid "illegal _docdir_fmt: %s\n" msgstr "_docdir_fmt ilegal: %s\n" -#: build/files.c:1307 +#: build/files.c:1313 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1481 +#: build/files.c:1487 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1738 +#: build/files.c:1746 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1762 +#: build/files.c:1771 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1977 +#: build/files.c:1989 #, c-format msgid "%s: can't load unknown tag (%d).\n" msgstr "%s: tidak dapat menggunakan tag yang tidak dikenal (%d).\n" -#: build/files.c:1983 +#: build/files.c:1995 #, c-format msgid "%s: public key read failed.\n" msgstr "%s: public key gagal dibaca.\n" -#: build/files.c:1987 lib/rpmchecksig.c:614 +#: build/files.c:1999 lib/rpmchecksig.c:618 #, c-format msgid "%s: not an armored public key.\n" msgstr "" -#: build/files.c:1994 +#: build/files.c:2006 #, c-format msgid "%s: *.te policy read failed.\n" msgstr "%s: kebijakan *.te gagal dibaca.\n" -#: build/files.c:2047 +#: build/files.c:2059 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:2071 +#: build/files.c:2083 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:2088 lib/rpminstall.c:375 +#: build/files.c:2100 lib/rpminstall.c:370 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:2148 +#: build/files.c:2160 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:2159 build/pack.c:155 +#: build/files.c:2171 build/pack.c:158 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2544 +#: build/files.c:2556 #, c-format msgid "Bad file: %s: %s\n" msgstr "" -#: build/files.c:2556 build/parsePrep.c:50 +#: build/files.c:2568 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:2601 +#: build/files.c:2613 #, c-format msgid "Checking for unpackaged file(s): %s\n" msgstr "" -#: build/files.c:2618 +#: build/files.c:2630 #, c-format msgid "" "Installed (but unpackaged) file(s) found:\n" "%s" msgstr "" -#: build/files.c:2648 +#: build/files.c:2660 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" -#: build/names.c:56 +#: build/names.c:57 msgid "getUname: too many uid's\n" msgstr "" -#: build/names.c:82 +#: build/names.c:83 msgid "getUnameS: too many uid's\n" msgstr "" -#: build/names.c:111 +#: build/names.c:112 msgid "getUidS: too many uid's\n" msgstr "" -#: build/names.c:140 +#: build/names.c:141 msgid "getGname: too many gid's\n" msgstr "" -#: build/names.c:166 +#: build/names.c:167 msgid "getGnameS: too many gid's\n" msgstr "" -#: build/names.c:195 +#: build/names.c:196 msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:237 +#: build/names.c:238 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:90 +#: build/pack.c:93 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:93 +#: build/pack.c:96 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:115 +#: build/pack.c:118 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:122 +#: build/pack.c:125 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:219 build/pack.c:233 +#: build/pack.c:222 build/pack.c:236 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:226 +#: build/pack.c:229 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:240 +#: build/pack.c:243 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:247 build/pack.c:254 +#: build/pack.c:250 build/pack.c:257 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:262 +#: build/pack.c:265 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:277 +#: build/pack.c:280 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:309 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:316 +#: build/pack.c:319 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:325 build/pack.c:656 +#: build/pack.c:328 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:357 +#: build/pack.c:360 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:362 +#: build/pack.c:365 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:596 +#: build/pack.c:599 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:616 +#: build/pack.c:619 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:626 +#: build/pack.c:629 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:663 -msgid "Unable to write final header\n" -msgstr "" - -#: build/pack.c:683 +#: build/pack.c:652 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:701 +#: build/pack.c:670 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:709 +#: build/pack.c:678 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:744 lib/psm.c:1844 +#: build/pack.c:714 lib/psm.c:1816 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:759 +#: build/pack.c:732 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:770 +#: build/pack.c:743 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:784 +#: build/pack.c:757 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:794 +#: build/pack.c:767 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:800 +#: build/pack.c:773 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:837 lib/psm.c:2119 +#: build/pack.c:810 lib/psm.c:2091 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:905 +#: build/pack.c:878 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:922 +#: build/pack.c:895 #, c-format msgid "cannot create %s: %s\n" msgstr "" -#: build/parseBuildInstallClean.c:36 +#: build/parseBuildInstallClean.c:37 #, c-format msgid "line %d: second %s\n" msgstr "" -#: build/parseChangelog.c:151 +#: build/parseChangelog.c:156 #, c-format msgid "%%changelog entries must start with *\n" msgstr "" -#: build/parseChangelog.c:159 +#: build/parseChangelog.c:164 #, c-format msgid "incomplete %%changelog entry\n" msgstr "" -#: build/parseChangelog.c:176 +#: build/parseChangelog.c:181 #, c-format msgid "bad date in %%changelog: %s\n" msgstr "" -#: build/parseChangelog.c:181 +#: build/parseChangelog.c:186 #, c-format msgid "%%changelog not in descending chronological order\n" msgstr "" -#: build/parseChangelog.c:189 build/parseChangelog.c:200 +#: build/parseChangelog.c:194 build/parseChangelog.c:205 #, c-format msgid "missing name in %%changelog\n" msgstr "" -#: build/parseChangelog.c:207 +#: build/parseChangelog.c:212 #, c-format msgid "no description in %%changelog\n" msgstr "" -#: build/parseDescription.c:47 +#: build/parseDescription.c:48 #, c-format msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:60 build/parseFiles.c:56 build/parseScript.c:232 +#: build/parseDescription.c:61 build/parseFiles.c:57 build/parseScript.c:233 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:71 build/parseFiles.c:70 build/parseScript.c:246 +#: build/parseDescription.c:72 build/parseFiles.c:71 build/parseScript.c:247 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:79 build/parseFiles.c:79 build/parseScript.c:255 +#: build/parseDescription.c:80 build/parseFiles.c:80 build/parseScript.c:256 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" -#: build/parseDescription.c:89 +#: build/parseDescription.c:90 #, c-format msgid "line %d: Second description\n" msgstr "" -#: build/parseFiles.c:42 +#: build/parseFiles.c:43 #, c-format msgid "line %d: Error parsing %%files: %s\n" msgstr "" -#: build/parseFiles.c:86 +#: build/parseFiles.c:87 #, c-format msgid "line %d: Second %%files list\n" msgstr "" @@ -942,27 +927,22 @@ msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:740 -#, c-format -msgid "Internal error: Bogus tag %d\n" -msgstr "" - -#: build/parsePreamble.c:844 +#: build/parsePreamble.c:869 #, c-format msgid "Legacy syntax is unsupported: %s\n" msgstr "Sintak legacy tidak didukung: %s\n" -#: build/parsePreamble.c:913 +#: build/parsePreamble.c:943 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:919 +#: build/parsePreamble.c:949 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:948 +#: build/parsePreamble.c:978 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" @@ -972,81 +952,91 @@ msgid "Bad source: %s: %s\n" msgstr "" -#: build/parsePrep.c:101 +#: build/parsePrep.c:104 #, c-format msgid "No patch number %d\n" msgstr "" -#: build/parsePrep.c:200 +#: build/parsePrep.c:211 #, c-format msgid "No source number %d\n" msgstr "" -#: build/parsePrep.c:316 +#: build/parsePrep.c:339 #, c-format msgid "Error parsing %%setup: %s\n" msgstr "" -#: build/parsePrep.c:331 +#: build/parsePrep.c:354 #, c-format msgid "line %d: Bad arg to %%setup: %s\n" msgstr "" -#: build/parsePrep.c:349 +#: build/parsePrep.c:372 #, c-format msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:491 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:500 +#: build/parsePrep.c:531 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:512 +#: build/parsePrep.c:544 +#, c-format +msgid "line %d: Bad arg to %%patch -F: %s\n" +msgstr "" + +#: build/parsePrep.c:553 +#, c-format +msgid "line %d: Need arg to %%patch -d: %s\n" +msgstr "" + +#: build/parsePrep.c:565 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:519 +#: build/parsePrep.c:572 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:526 +#: build/parsePrep.c:579 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:530 +#: build/parsePrep.c:583 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:624 +#: build/parsePrep.c:678 #, c-format msgid "Missing %s%d %s: %s\n" msgstr "Hilang %s%d %s: %s\n" -#: build/parsePrep.c:632 +#: build/parsePrep.c:686 #, c-format msgid "file %s missing: %s\n" msgstr "file %s hilang: %s\n" -#: build/parsePrep.c:640 +#: build/parsePrep.c:694 #, c-format msgid "Fetching %s failed: %s\n" msgstr "Gagal mengambil %s: %s\n" -#: build/parsePrep.c:662 +#: build/parsePrep.c:717 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency \"%s\" must begin with alpha-numeric, '_' or '/': %s\n" @@ -1054,42 +1044,42 @@ "baris %d: Dependensi \"%s\" harus diawali dengan alpha-numeric, '_' atau " "'/': %s\n" -#: build/parseReqs.c:125 +#: build/parseReqs.c:126 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:143 +#: build/parseReqs.c:144 #, c-format msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:188 +#: build/parseScript.c:189 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:198 build/parseScript.c:271 +#: build/parseScript.c:199 build/parseScript.c:272 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:210 +#: build/parseScript.c:211 #, c-format msgid "line %d: internal script must end with '>': %s\n" msgstr "baris %d: internal script harus diakhiri dengan '>': %s\n" -#: build/parseScript.c:219 +#: build/parseScript.c:220 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:263 +#: build/parseScript.c:264 #, c-format msgid "line %d: Second %s\n" msgstr "" -#: build/parseScript.c:309 +#: build/parseScript.c:310 #, c-format msgid "line %d: unsupported internal script: %s\n" msgstr "baris %d: internal script tidak didukung: %s\n" @@ -1138,182 +1128,178 @@ msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:142 +#: build/poptBT.c:136 #, c-format msgid "build through %prep (unpack sources and apply patches) from <specfile>" msgstr "" -#: build/poptBT.c:143 build/poptBT.c:146 build/poptBT.c:149 build/poptBT.c:152 -#: build/poptBT.c:155 build/poptBT.c:158 build/poptBT.c:161 +#: build/poptBT.c:137 build/poptBT.c:140 build/poptBT.c:143 build/poptBT.c:146 +#: build/poptBT.c:149 build/poptBT.c:152 build/poptBT.c:155 msgid "<specfile>" msgstr "" -#: build/poptBT.c:145 +#: build/poptBT.c:139 msgid "build through %build (%prep, then compile) from <specfile>" msgstr "" -#: build/poptBT.c:148 +#: build/poptBT.c:142 msgid "build through %install (%prep, %build, then install) from <specfile>" msgstr "" -#: build/poptBT.c:151 +#: build/poptBT.c:145 #, c-format msgid "verify %files section from <specfile>" msgstr "" -#: build/poptBT.c:154 +#: build/poptBT.c:148 msgid "build source and binary packages from <specfile>" msgstr "" -#: build/poptBT.c:157 +#: build/poptBT.c:151 msgid "build binary package only from <specfile>" msgstr "" -#: build/poptBT.c:160 +#: build/poptBT.c:154 msgid "build source package only from <specfile>" msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:158 #, c-format msgid "build through %prep (unpack sources and apply patches) from <tarball>" msgstr "" -#: build/poptBT.c:165 build/poptBT.c:168 build/poptBT.c:171 build/poptBT.c:174 -#: build/poptBT.c:177 build/poptBT.c:180 build/poptBT.c:183 +#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 build/poptBT.c:168 +#: build/poptBT.c:171 build/poptBT.c:174 build/poptBT.c:177 msgid "<tarball>" msgstr "" -#: build/poptBT.c:167 +#: build/poptBT.c:161 msgid "build through %build (%prep, then compile) from <tarball>" msgstr "" -#: build/poptBT.c:170 +#: build/poptBT.c:164 msgid "build through %install (%prep, %build, then install) from <tarball>" msgstr "" -#: build/poptBT.c:173 +#: build/poptBT.c:167 #, c-format msgid "verify %files section from <tarball>" msgstr "" -#: build/poptBT.c:176 +#: build/poptBT.c:170 msgid "build source and binary packages from <tarball>" msgstr "" -#: build/poptBT.c:179 +#: build/poptBT.c:173 msgid "build binary package only from <tarball>" msgstr "" -#: build/poptBT.c:182 +#: build/poptBT.c:176 msgid "build source package only from <tarball>" msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:180 msgid "build binary package from <source package>" msgstr "" -#: build/poptBT.c:187 build/poptBT.c:190 +#: build/poptBT.c:181 build/poptBT.c:184 msgid "<source package>" msgstr "" -#: build/poptBT.c:189 +#: build/poptBT.c:183 msgid "" "build through %install (%prep, %build, then install) from <source package>" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:187 msgid "remove build tree when done" msgstr "" -#: build/poptBT.c:195 -msgid "ignore ExcludeArch: directives from spec file" -msgstr "" - -#: build/poptBT.c:197 +#: build/poptBT.c:189 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:199 +#: build/poptBT.c:191 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:201 +#: build/poptBT.c:193 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:204 lib/poptALL.c:374 lib/poptI.c:355 lib/poptQV.c:415 -#: lib/poptQV.c:424 lib/poptQV.c:466 +#: build/poptBT.c:196 lib/poptALL.c:379 lib/poptI.c:346 lib/poptQV.c:406 +#: lib/poptQV.c:415 lib/poptQV.c:457 msgid "don't verify package digest(s)" msgstr "" -#: build/poptBT.c:206 lib/poptALL.c:376 lib/poptI.c:357 lib/poptQV.c:418 -#: lib/poptQV.c:426 lib/poptQV.c:469 +#: build/poptBT.c:198 lib/poptALL.c:381 lib/poptI.c:348 lib/poptQV.c:409 +#: lib/poptQV.c:417 lib/poptQV.c:460 msgid "don't verify database header(s) when retrieved" msgstr "" -#: build/poptBT.c:208 lib/poptALL.c:382 lib/poptI.c:359 lib/poptQV.c:421 -#: lib/poptQV.c:428 lib/poptQV.c:471 +#: build/poptBT.c:200 lib/poptALL.c:387 lib/poptI.c:350 lib/poptQV.c:412 +#: lib/poptQV.c:419 lib/poptQV.c:462 msgid "don't verify package signature(s)" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:203 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:213 +#: build/poptBT.c:205 msgid "remove sources when done" msgstr "" -#: build/poptBT.c:215 +#: build/poptBT.c:207 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:217 +#: build/poptBT.c:209 msgid "skip straight to specified stage (only for c,i)" msgstr "" -#: build/poptBT.c:219 +#: build/poptBT.c:211 msgid "generate PGP/GPG signature" msgstr "" -#: build/poptBT.c:221 +#: build/poptBT.c:213 msgid "override target platform" msgstr "" -#: build/poptBT.c:221 lib/poptALL.c:371 lib/poptQV.c:326 +#: build/poptBT.c:213 lib/poptALL.c:376 lib/poptQV.c:317 msgid "CPU-VENDOR-OS" msgstr "CPU-PEMBUAT-OS" -#: build/poptBT.c:223 +#: build/poptBT.c:215 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:235 +#: build/spec.c:285 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:241 +#: build/spec.c:291 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:310 +#: build/spec.c:360 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: build/spec.c:634 +#: build/spec.c:684 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: build/spec.c:718 +#: build/spec.c:767 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: build/spec.c:774 +#: build/spec.c:822 #, c-format msgid "Query specfile for platform(s): %s\n" msgstr "Menanyakan specfile untuk platform(s): %s\n" @@ -1359,269 +1345,189 @@ msgid " failed - " msgstr "" -#: lib/depends.c:299 +#: lib/depends.c:310 #, c-format msgid "package %s was already added, skipping %s\n" msgstr "package %s sudah ditambahkan, melewatkan %s\n" -#: lib/depends.c:313 +#: lib/depends.c:324 #, c-format msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:420 -#, c-format -msgid " upgrade erases %s\n" -msgstr " upgrade menghapus %s\n" - -#: lib/depends.c:490 -#, c-format -msgid " Obsoletes: %s\t\terases %s\n" -msgstr " Lama: %s\t\tdihapus %s\n" - -#: lib/depends.c:591 +#: lib/depends.c:616 msgid "(cached)" msgstr "" -#: lib/depends.c:606 +#: lib/depends.c:632 msgid "(function probe)" msgstr "(mengecheck fungsi)" -#: lib/depends.c:625 +#: lib/depends.c:651 msgid "(user lookup)" msgstr "(mencari user)" -#: lib/depends.c:642 +#: lib/depends.c:668 msgid "(group lookup)" msgstr "(mencari group)" -#: lib/depends.c:651 +#: lib/depends.c:677 msgid "(access probe)" msgstr "(mengecheck akses)" -#: lib/depends.c:673 +#: lib/depends.c:699 msgid "(mtab probe)" msgstr "(mengecheck mtab)" -#: lib/depends.c:728 +#: lib/depends.c:754 msgid "(diskspace probe)" msgstr "(mengecheck ruang kosong)" -#: lib/depends.c:758 +#: lib/depends.c:784 msgid "(digest probe)" msgstr "(mengecheck digest)" -#: lib/depends.c:771 +#: lib/depends.c:797 msgid "(gnupg probe)" msgstr "(mengecheck gnupg)" -#: lib/depends.c:784 +#: lib/depends.c:810 msgid "(macro probe)" msgstr "(mengecheck macro)" -#: lib/depends.c:812 +#: lib/depends.c:838 msgid "(envvar probe)" msgstr "(mengecheck envvar)" -#: lib/depends.c:839 +#: lib/depends.c:865 msgid "(running probe)" msgstr "(menjalankan pengecheckan)" -#: lib/depends.c:852 +#: lib/depends.c:885 msgid "(sysinfo provides)" msgstr "(disediakan oleh sysinfo)" -#: lib/depends.c:872 +#: lib/depends.c:905 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:888 +#: lib/depends.c:921 msgid "(cpuinfo provides)" msgstr "(disediakan oleh cpuinfo)" -#: lib/depends.c:904 +#: lib/depends.c:937 msgid "(getconf provides)" msgstr "(disediakan oleh getconf)" -#: lib/depends.c:920 +#: lib/depends.c:953 msgid "(uname provides)" msgstr "(disediakan oleh uname)" -#: lib/depends.c:952 +#: lib/depends.c:985 msgid "(soname provides)" msgstr "(disediakan oleh soname)" -#: lib/depends.c:979 +#: lib/depends.c:1014 msgid "(db files)" msgstr "" -#: lib/depends.c:992 +#: lib/depends.c:1027 msgid "(db provides)" msgstr "" -#: lib/depends.c:1022 +#: lib/depends.c:1057 msgid "(hint skipped)" msgstr "(hint dilewatkan)" -#: lib/depends.c:1476 +#: lib/depends.c:1492 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1604 +#: lib/depends.c:1620 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" -#: lib/depends.c:1880 -msgid "========== recording tsort relations\n" -msgstr "" - -#: lib/depends.c:2001 -msgid "" -"========== tsorting packages (order, #predecessors, #succesors, tree, " -"Ldepth, Rbreadth)\n" -msgstr "" -"========== mengurutkan packages (urutan, #predecessors, #succesors, tree, " -"Ldepth, Rbreadth)\n" - -#: lib/depends.c:2092 -#, c-format -msgid "========== successors only (%d bytes)\n" -msgstr "========== successors only (%d bytes)\n" - -#: lib/depends.c:2165 +#: lib/depends.c:2200 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2196 -msgid "========== continuing tsort ...\n" -msgstr "" - -#: lib/depends.c:2201 +#: lib/depends.c:2236 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:44 lib/formats.c:76 lib/formats.c:111 lib/formats.c:189 -#: lib/formats.c:780 -msgid "(invalid type)" -msgstr "" - -#: lib/formats.c:178 -msgid "(not base64)" -msgstr "" - -#: lib/formats.c:214 lib/formats.c:668 -msgid "(not a blob)" -msgstr "" - -#: lib/formats.c:370 -msgid "(invalid xml type)" -msgstr "(tipe xml tidak valid)" - -#: lib/formats.c:584 -msgid "(invalid yaml type)" -msgstr "(tipe yaml tidak valid)" - -#: lib/formats.c:693 -msgid "(not an OpenPGP signature)" -msgstr "(bukan sebuah tanda tangan OpenPGP)" - -#: lib/fs.c:80 +#: lib/fs.c:81 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:95 +#: lib/fs.c:96 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:115 lib/fs.c:218 lib/fs.c:342 +#: lib/fs.c:116 lib/fs.c:223 lib/fs.c:347 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:160 rpmio/url.c:556 +#: lib/fs.c:161 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:240 +#: lib/fs.c:245 #, c-format msgid "%5d 0x%04x %s %s\n" msgstr "%5d 0x%04x %s %s\n" -#: lib/fs.c:365 +#: lib/fs.c:370 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:358 -msgid "========== Directories not explicitly included in package:\n" -msgstr "========== Direktori tidak secara explisit dimasukkan dalam package:\n" - -#: lib/fsm.c:361 -#, c-format -msgid "%10d %s\n" -msgstr "" - -#: lib/fsm.c:805 +#: lib/fsm.c:806 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/fsm.c:813 +#: lib/fsm.c:814 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/fsm.c:1416 -#, c-format -msgid "%s directory created with perms %04o, no context.\n" -msgstr "%s direktori dibuat dengan perms %04o, bukan context.\n" - -#: lib/fsm.c:1420 -#, c-format -msgid "%s directory created with perms %04o, context %s.\n" -msgstr "%s direktori dibuat dengan perms %04o, context %s.\n" - -#: lib/fsm.c:1729 +#: lib/fsm.c:1734 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1879 lib/fsm.c:2003 +#: lib/fsm.c:1884 lib/fsm.c:2008 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:2030 +#: lib/fsm.c:2035 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:2036 +#: lib/fsm.c:2041 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:2051 +#: lib/fsm.c:2056 #, c-format msgid " %s: unlink of %s failed: %s\n" msgstr " %s: unlink dari %s gagal: %s\n" -#: lib/fsm.c:2076 +#: lib/fsm.c:2081 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/manifest.c:152 -#, c-format -msgid "adding %d args from manifest.\n" -msgstr "menambahkan %d argumen dari implementasi.\n" - #: lib/misc.c:41 #, c-format msgid "cannot create %%%s %s\n" @@ -1632,1007 +1538,988 @@ msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:362 +#: lib/package.c:379 #, c-format msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n" msgstr "blob size(%d): BURUK, 8 + 16 * il(%d) + dl(%d)\n" -#: lib/package.c:371 lib/package.c:435 lib/package.c:512 lib/signature.c:232 +#: lib/package.c:388 lib/package.c:452 lib/package.c:529 lib/signature.c:233 #, c-format msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n" msgstr "tag[%d]: BURUK, tag %d tipe %d offset %d terhitung %d\n" -#: lib/package.c:391 lib/signature.c:248 +#: lib/package.c:408 lib/signature.c:249 #, c-format msgid "region offset: BAD, tag %d type %d offset %d count %d\n" msgstr "region offset: BURUK, tag %d tipe %d offset %d terhitung %d\n" -#: lib/package.c:412 lib/signature.c:275 +#: lib/package.c:429 lib/signature.c:276 #, c-format msgid "region trailer: BAD, tag %d type %d offset %d count %d\n" msgstr "region trailer: BURUK, tag %d tipe %d offset %d terhitung %d\n" -#: lib/package.c:426 lib/signature.c:289 +#: lib/package.c:443 lib/signature.c:290 #, c-format msgid "region size: BAD, ril(%d) > il(%d)\n" msgstr "region size: BURUK, ril(%d) > il(%d)\n" -#: lib/package.c:454 +#: lib/package.c:471 #, c-format msgid "hdr SHA1: BAD, not hex\n" msgstr "hdr SHA1: BURUK, bukan sebuah heksadesimal\n" -#: lib/package.c:469 +#: lib/package.c:486 #, c-format msgid "hdr RSA: BAD, not binary\n" msgstr "hdr RSA: BURUK, bukan sebuah binary\n" -#: lib/package.c:481 +#: lib/package.c:498 #, c-format msgid "hdr DSA: BAD, not binary\n" msgstr "hdr DSA: BURUK, bukan sebuah binary\n" -#: lib/package.c:545 lib/package.c:585 lib/package.c:929 lib/package.c:955 -#: lib/package.c:987 +#: lib/package.c:562 lib/package.c:603 #, c-format -msgid "only V3 and V4 signatures can be verified, skipping V%u signature\n" +msgid "skipping header with unverifiable V%u signature\n" msgstr "" -"hanya tanda tangan V3 dan V4 yang dapat diverifikasi, melewati tanda tangan V" -"%u\n" -#: lib/package.c:673 +#: lib/package.c:693 #, c-format msgid "hdr size(%d): BAD, read returned %d\n" msgstr "hdr size(%d): BURUK, pembacaan dikembalikan %d\n" -#: lib/package.c:677 +#: lib/package.c:701 lib/package.c:706 #, c-format msgid "hdr magic: BAD\n" msgstr "hdr magic: BURUK\n" -#: lib/package.c:685 +#: lib/package.c:716 #, c-format msgid "hdr tags: BAD, no. of tags(%d) out of range\n" msgstr "hdr tags: BURUK, no. dari tags(%d) diluar jangkauan\n" -#: lib/package.c:694 +#: lib/package.c:725 #, c-format msgid "hdr data: BAD, no. of bytes(%d) out of range\n" msgstr "hdr data: BURUK, no. dari bytes(%d) diluar jangkauan\n" -#: lib/package.c:708 +#: lib/package.c:739 #, c-format msgid "hdr blob(%d): BAD, read returned %d\n" msgstr "hdr blob(%d): BURUK, pembacaan memberikan hasil %d\n" -#: lib/package.c:721 +#: lib/package.c:752 #, c-format msgid "hdr load: BAD\n" msgstr "hdr load: BURUK\n" -#: lib/package.c:799 +#: lib/package.c:833 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:808 +#: lib/package.c:842 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:820 lib/rpmchecksig.c:236 lib/rpmchecksig.c:773 +#: lib/package.c:856 lib/rpmchecksig.c:236 lib/rpmchecksig.c:777 #, c-format msgid "%s: rpmReadSignature failed: %s" msgstr "%s: rpmReadSignature gagal: %s" -#: lib/package.c:827 lib/rpmchecksig.c:243 lib/rpmchecksig.c:781 +#: lib/package.c:863 lib/rpmchecksig.c:243 lib/rpmchecksig.c:785 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:894 +#: lib/package.c:931 #, c-format msgid "%s: headerRead failed: %s" msgstr "%s: headerRead gagal: %s" -#: lib/package.c:1002 lib/rpmchecksig.c:118 lib/rpmchecksig.c:689 +#: lib/package.c:966 lib/package.c:992 lib/package.c:1024 +#: lib/rpmchecksig.c:874 +#, c-format +msgid "skipping package %s with unverifiable V%u signature\n" +msgstr "" + +#: lib/package.c:1039 lib/rpmchecksig.c:118 lib/rpmchecksig.c:693 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:285 +#: lib/poptALL.c:290 msgid "FTS_COMFOLLOW: follow command line symlinks" msgstr "FTS_COMFOLLOW: mengikuti perintah symlinks" -#: lib/poptALL.c:287 +#: lib/poptALL.c:292 msgid "FTS_LOGICAL: logical walk" msgstr "FTS_LOGICAL: logical walk" -#: lib/poptALL.c:289 +#: lib/poptALL.c:294 msgid "FTS_NOCHDIR: don't change directories" msgstr "FTS_NOCHDIR: jangan mengubah direktori" -#: lib/poptALL.c:291 +#: lib/poptALL.c:296 msgid "FTS_NOSTAT: don't get stat info" msgstr "FTS_NOSTAT: tidak dapat mendapatkan info statistik" -#: lib/poptALL.c:293 +#: lib/poptALL.c:298 msgid "FTS_PHYSICAL: physical walk" msgstr "FTS_PHYSICAL: physical walk" -#: lib/poptALL.c:295 +#: lib/poptALL.c:300 msgid "FTS_SEEDOT: return dot and dot-dot" msgstr "FTS_SEEDOT: mengembalikan titik dan titik-titik" -#: lib/poptALL.c:297 +#: lib/poptALL.c:302 msgid "FTS_XDEV: don't cross devices" msgstr "FTS_XDEV: jangan cross devices" -#: lib/poptALL.c:299 +#: lib/poptALL.c:304 msgid "FTS_WHITEOUT: return whiteout information" msgstr "FTS_WHITEOUT: kembali tanpa memberikan informasi" -#: lib/poptALL.c:309 lib/poptI.c:221 lib/poptQV.c:296 lib/poptQV.c:343 +#: lib/poptALL.c:314 lib/poptI.c:214 lib/poptQV.c:287 lib/poptQV.c:334 msgid "add suggested packages to transaction" msgstr "tambahkan packages yang disarankan pada transaksi" -#: lib/poptALL.c:312 lib/poptI.c:224 +#: lib/poptALL.c:317 lib/poptI.c:217 msgid "use anaconda \"presentation order\"" msgstr "menggunakan anaconda \"presentation order\"" -#: lib/poptALL.c:315 lib/poptI.c:227 +#: lib/poptALL.c:320 lib/poptI.c:220 msgid "print dependency loops as warning" msgstr "cetak dependensi loops sebagai peringatan" -#: lib/poptALL.c:318 lib/poptI.c:230 +#: lib/poptALL.c:323 lib/poptI.c:223 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptALL.c:321 lib/poptI.c:233 +#: lib/poptALL.c:326 lib/poptI.c:226 msgid "do not check added package conflicts" msgstr "jangan mengecheck koflik penambahan package" -#: lib/poptALL.c:324 lib/poptI.c:236 +#: lib/poptALL.c:329 lib/poptI.c:229 msgid "ignore added package requires on symlink targets" msgstr "hiraukan penambahan package yang membutuhkan symlink di targets" -#: lib/poptALL.c:327 lib/poptI.c:239 +#: lib/poptALL.c:332 lib/poptI.c:232 msgid "ignore added package obsoletes" msgstr "hiraukan penambahan package yang sudah lama" -#: lib/poptALL.c:330 lib/poptI.c:242 +#: lib/poptALL.c:335 lib/poptI.c:235 msgid "ignore added package requires on file parent directory" msgstr "hiraukan penambahan package yang membutuhkan file di direktori utama" -#: lib/poptALL.c:333 lib/poptI.c:245 +#: lib/poptALL.c:338 lib/poptI.c:238 msgid "do not check added package requires" msgstr "jangan mengecheck hal-hal yang diperlukan untuk menambahkan package" -#: lib/poptALL.c:336 lib/poptI.c:248 +#: lib/poptALL.c:341 lib/poptI.c:241 msgid "ignore added package upgrades" msgstr "hiraukan penambahan package untuk upgrade" -#: lib/poptALL.c:359 +#: lib/poptALL.c:364 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:360 lib/poptALL.c:363 +#: lib/poptALL.c:365 lib/poptALL.c:368 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:362 +#: lib/poptALL.c:367 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:365 +#: lib/poptALL.c:370 msgid "print macro expansion of EXPR" msgstr "" -#: lib/poptALL.c:366 +#: lib/poptALL.c:371 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:368 lib/poptALL.c:389 lib/poptALL.c:393 +#: lib/poptALL.c:373 msgid "read <FILE:...> instead of default file(s)" msgstr "" -#: lib/poptALL.c:369 lib/poptALL.c:390 lib/poptALL.c:394 +#: lib/poptALL.c:374 msgid "<FILE:...>" msgstr "" -#: lib/poptALL.c:371 lib/poptQV.c:326 +#: lib/poptALL.c:376 lib/poptQV.c:317 msgid "specify target platform" msgstr "tentukan target platform" -#: lib/poptALL.c:379 lib/poptALL.c:413 +#: lib/poptALL.c:384 lib/poptALL.c:409 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:385 +#: lib/poptALL.c:390 msgid "send stdout to CMD" msgstr "" -#: lib/poptALL.c:386 +#: lib/poptALL.c:391 msgid "CMD" msgstr "" -#: lib/poptALL.c:397 +#: lib/poptALL.c:393 msgid "use ROOT as top level directory" msgstr "" -#: lib/poptALL.c:398 +#: lib/poptALL.c:394 msgid "ROOT" msgstr "" -#: lib/poptALL.c:401 +#: lib/poptALL.c:397 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:403 +#: lib/poptALL.c:399 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:405 +#: lib/poptALL.c:401 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:407 +#: lib/poptALL.c:403 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:409 +#: lib/poptALL.c:405 msgid "print the version of rpm being used" msgstr "" -#: lib/poptALL.c:420 +#: lib/poptALL.c:416 msgid "debug cpio payloads" msgstr "debug cpio payloads" -#: lib/poptALL.c:424 +#: lib/poptALL.c:420 msgid "debug payload file state machine" msgstr "" -#: lib/poptALL.c:426 +#: lib/poptALL.c:422 msgid "use threads for file state machine" msgstr "menggunakan threads untuk file state machine" -#: lib/poptALL.c:428 +#: lib/poptALL.c:424 msgid "debug FTP/HTTP data stream" msgstr "debug FTP/HTTP data stream" -#: lib/poptALL.c:430 +#: lib/poptALL.c:426 msgid "debug argv collections" msgstr "debug pengoleksian argv" -#: lib/poptALL.c:432 +#: lib/poptALL.c:428 msgid "debug WebDAV data stream" msgstr "debug WebDAV data stream" -#: lib/poptALL.c:439 +#: lib/poptALL.c:435 msgid "debug option/argument processing" msgstr "" -#: lib/poptALL.c:444 +#: lib/poptALL.c:440 msgid "debug package state machine" msgstr "debug package state machine" -#: lib/poptALL.c:446 +#: lib/poptALL.c:442 msgid "use threads for package state machine" msgstr "menggunakan threads untuk package state machine" -#: lib/poptALL.c:460 +#: lib/poptALL.c:456 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:472 +#: lib/poptALL.c:470 msgid "debug tar payloads" msgstr "debug tar payloads" -#: lib/poptALL.c:476 +#: lib/poptALL.c:474 msgid "debug URL cache handling" msgstr "" -#: lib/poptALL.c:561 +#: lib/poptALL.c:477 +msgid "disable rpm lead" +msgstr "" + +#: lib/poptALL.c:479 +msgid "disable rpm signature header" +msgstr "" + +#: lib/poptALL.c:481 +msgid "dupe region tag into lsb of magic" +msgstr "" + +#: lib/poptALL.c:597 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:72 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:86 msgid "Option --relocate needs /old/path=/new/path argument" msgstr "Opsi --relocate membutuhkan argument /lama/path=/baru/path" -#: lib/poptI.c:87 +#: lib/poptI.c:88 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:90 +#: lib/poptI.c:91 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:93 +#: lib/poptI.c:94 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:111 +#: lib/poptI.c:112 msgid "Option --rbexclude needs transaction id argument(s)" msgstr "Opsi --rbexclude membutuhkan argumen id transaksi" -#: lib/poptI.c:142 +#: lib/poptI.c:143 msgid "Option --rollback needs a time/date stamp argument" msgstr "Opsi --rollback membutuhkan sebuah argument time/date stamp" -#: lib/poptI.c:146 +#: lib/poptI.c:147 #, c-format msgid "Rollback goal: %-24.24s (0x%08x)\n" msgstr "Rollback target: %-24.24s (0x%08x)\n" -#: lib/poptI.c:150 +#: lib/poptI.c:151 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:157 +#: lib/poptI.c:158 msgid "arbgoal takes a time/date stamp argument" msgstr "arbgoal membutuhkan sebuah argument time/date stamp" -#: lib/poptI.c:164 +#: lib/poptI.c:165 msgid "malformed arbgoal time/date stamp argument" msgstr "argument arbgoal time/date stamp salah format" -#: lib/poptI.c:253 +#: lib/poptI.c:246 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:257 +#: lib/poptI.c:250 msgid "" "remove all packages which match <package> (normally an error is generated if " "<package> specified multiple packages)" msgstr "" -#: lib/poptI.c:263 lib/poptI.c:339 +#: lib/poptI.c:256 lib/poptI.c:330 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:267 +#: lib/poptI.c:260 msgid "relocate files in non-relocatable package" msgstr "relocate files dalam packages yang tidak relocateable" -#: lib/poptI.c:271 +#: lib/poptI.c:264 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:274 +#: lib/poptI.c:267 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:274 +#: lib/poptI.c:267 msgid "<package>+" msgstr "" -#: lib/poptI.c:277 lib/poptI.c:319 +#: lib/poptI.c:270 lib/poptI.c:310 msgid "do not install configuration files" msgstr "jangan menginstall file konfigurasi" -#: lib/poptI.c:280 lib/poptI.c:324 +#: lib/poptI.c:273 lib/poptI.c:315 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:282 +#: lib/poptI.c:275 msgid "skip files with leading component <path> " msgstr "" -#: lib/poptI.c:283 +#: lib/poptI.c:276 msgid "<path>" msgstr "" -#: lib/poptI.c:287 +#: lib/poptI.c:280 msgid "detect file conflicts between packages" msgstr "deteksi files konflik dalam package" -#: lib/poptI.c:289 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:293 +#: lib/poptI.c:284 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:294 lib/poptI.c:312 lib/poptI.c:412 +#: lib/poptI.c:285 lib/poptI.c:303 lib/poptI.c:403 msgid "<packagefile>+" msgstr "" -#: lib/poptI.c:296 +#: lib/poptI.c:287 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:300 +#: lib/poptI.c:291 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:303 +#: lib/poptI.c:294 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:307 +#: lib/poptI.c:298 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:309 +#: lib/poptI.c:300 msgid "install documentation" msgstr "" -#: lib/poptI.c:312 +#: lib/poptI.c:303 msgid "install package(s)" msgstr "" -#: lib/poptI.c:315 +#: lib/poptI.c:306 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:321 +#: lib/poptI.c:312 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:327 lib/poptI.c:329 lib/poptQV.c:357 lib/poptQV.c:360 -#: lib/poptQV.c:362 +#: lib/poptI.c:318 lib/poptI.c:320 lib/poptQV.c:348 lib/poptQV.c:351 +#: lib/poptQV.c:353 msgid "don't verify file digests" msgstr "jangan memverifikasi file digest" -#: lib/poptI.c:331 +#: lib/poptI.c:322 msgid "don't install file security contexts" msgstr "jangan menginstall file security context" -#: lib/poptI.c:335 +#: lib/poptI.c:326 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:343 +#: lib/poptI.c:334 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:346 +#: lib/poptI.c:337 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:349 +#: lib/poptI.c:340 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:352 +#: lib/poptI.c:343 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:362 +#: lib/poptI.c:353 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:365 +#: lib/poptI.c:356 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:368 +#: lib/poptI.c:359 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:371 +#: lib/poptI.c:362 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:374 +#: lib/poptI.c:365 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:378 +#: lib/poptI.c:369 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:382 +#: lib/poptI.c:373 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:384 +#: lib/poptI.c:375 msgid "relocate the package to <dir>, if relocatable" msgstr "" -#: lib/poptI.c:385 +#: lib/poptI.c:376 msgid "<dir>" msgstr "" -#: lib/poptI.c:387 +#: lib/poptI.c:378 msgid "relocate files from path <old> to <new>" msgstr "" -#: lib/poptI.c:388 +#: lib/poptI.c:379 msgid "<old>=<new>" msgstr "" -#: lib/poptI.c:391 +#: lib/poptI.c:382 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:394 +#: lib/poptI.c:385 msgid "ignore file conflicts between packages" msgstr "menghiraukan file konflik antar packages" -#: lib/poptI.c:397 +#: lib/poptI.c:388 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:399 +#: lib/poptI.c:390 msgid "deinstall new, reinstall old, package(s), back to <date>" msgstr "" -#: lib/poptI.c:400 lib/poptI.c:403 +#: lib/poptI.c:391 lib/poptI.c:394 msgid "<date>" msgstr "" -#: lib/poptI.c:402 +#: lib/poptI.c:393 msgid "If transaction fails rollback to <date>" msgstr "Jika transaksi gagal balik ke <tanggal>" -#: lib/poptI.c:405 +#: lib/poptI.c:396 msgid "Exclude Transaction I.D. from rollback" msgstr "Abaikan transaksi I.D. dari rollback" -#: lib/poptI.c:406 +#: lib/poptI.c:397 msgid "<tid>" msgstr "<tid>" -#: lib/poptI.c:408 +#: lib/poptI.c:399 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:411 +#: lib/poptI.c:402 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:115 +#: lib/poptQV.c:116 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:117 +#: lib/poptQV.c:118 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:119 +#: lib/poptQV.c:120 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:121 +#: lib/poptQV.c:122 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:123 +#: lib/poptQV.c:124 msgid "query/verify a package file" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:127 msgid "query/verify package(s) from TOP file tree walk" msgstr "query/verifikasi package(s) dari TOP file tree walk" -#: lib/poptQV.c:128 +#: lib/poptQV.c:129 msgid "query/verify package(s) from system HDLIST" msgstr "query/verifikasi package(s) dari system HDLIST" -#: lib/poptQV.c:131 +#: lib/poptQV.c:132 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:133 +#: lib/poptQV.c:134 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:135 +#: lib/poptQV.c:136 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:138 +#: lib/poptQV.c:139 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:140 +#: lib/poptQV.c:141 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:142 +#: lib/poptQV.c:143 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:142 lib/poptQV.c:144 +#: lib/poptQV.c:143 lib/poptQV.c:145 msgid "<spec>" msgstr "" -#: lib/poptQV.c:144 +#: lib/poptQV.c:145 msgid "query source metadata from spec file parse" msgstr "menanyakan sumber metadata dari spec file parse" -#: lib/poptQV.c:146 +#: lib/poptQV.c:147 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:148 +#: lib/poptQV.c:149 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:150 +#: lib/poptQV.c:151 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:152 +#: lib/poptQV.c:153 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:154 +#: lib/poptQV.c:155 msgid "query/verify the package(s) which require any contained provide" msgstr "" "menanyakan/memverifikasi package(s) yang membutuhkan apapun yang disediakan" -#: lib/poptQV.c:158 +#: lib/poptQV.c:159 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:161 +#: lib/poptQV.c:162 msgid "create transaction set" msgstr "membuat set transaksi" -#: lib/poptQV.c:163 +#: lib/poptQV.c:164 msgid "do not order transaction set" msgstr "jangan merubah urutan set transaksi" -#: lib/poptQV.c:165 +#: lib/poptQV.c:166 msgid "do not glob arguments" msgstr "jangan menyatukan argumen" -#: lib/poptQV.c:167 +#: lib/poptQV.c:168 msgid "do not process non-package files as manifests" msgstr "jangan memproses file tidak di-package sebagai implementasi" -#: lib/poptQV.c:169 +#: lib/poptQV.c:170 msgid "do not read headers" msgstr "jangan membaca headers" -#: lib/poptQV.c:284 +#: lib/poptQV.c:275 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:286 +#: lib/poptQV.c:277 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:288 +#: lib/poptQV.c:279 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:292 +#: lib/poptQV.c:283 msgid "list files in package" msgstr "" -#: lib/poptQV.c:301 lib/poptQV.c:348 +#: lib/poptQV.c:292 lib/poptQV.c:339 #, c-format msgid "skip %%config files" msgstr "lewatkan %%config files" -#: lib/poptQV.c:304 lib/poptQV.c:351 +#: lib/poptQV.c:295 lib/poptQV.c:342 #, c-format msgid "skip %%doc files" msgstr "lewatkan %%doc files" -#: lib/poptQV.c:307 +#: lib/poptQV.c:298 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:311 +#: lib/poptQV.c:302 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:314 +#: lib/poptQV.c:305 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:320 +#: lib/poptQV.c:311 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:320 +#: lib/poptQV.c:311 msgid "QUERYFORMAT" msgstr "FORMATQUERY" -#: lib/poptQV.c:322 +#: lib/poptQV.c:313 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:324 +#: lib/poptQV.c:315 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:366 +#: lib/poptQV.c:357 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:369 +#: lib/poptQV.c:360 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:372 +#: lib/poptQV.c:363 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:375 +#: lib/poptQV.c:366 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:378 +#: lib/poptQV.c:369 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:381 lib/poptQV.c:384 +#: lib/poptQV.c:372 lib/poptQV.c:375 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:387 +#: lib/poptQV.c:378 msgid "don't verify file security contexts" msgstr "jangan memverifikasi context file keamanan" -#: lib/poptQV.c:389 +#: lib/poptQV.c:380 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:392 lib/poptQV.c:395 +#: lib/poptQV.c:383 lib/poptQV.c:386 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:400 lib/poptQV.c:404 lib/poptQV.c:407 lib/poptQV.c:410 +#: lib/poptQV.c:391 lib/poptQV.c:395 lib/poptQV.c:398 lib/poptQV.c:401 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:444 +#: lib/poptQV.c:435 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:446 +#: lib/poptQV.c:437 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:448 +#: lib/poptQV.c:439 msgid "delete package signatures" msgstr "hapus tanda tangan package" -#: lib/poptQV.c:450 +#: lib/poptQV.c:441 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:452 +#: lib/poptQV.c:443 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:454 +#: lib/poptQV.c:445 msgid "generate signature" msgstr "" -#: lib/poptQV.c:457 +#: lib/poptQV.c:448 msgid "specify trust metric" msgstr "spesifikasikan ukuran kepercayaan" -#: lib/poptQV.c:460 +#: lib/poptQV.c:451 msgid "set ultimate trust when importing pubkey(s)" msgstr "set kepercayaan maksimal ketika mengimpor pubkey(s)" -#: lib/poptQV.c:463 +#: lib/poptQV.c:454 msgid "unset ultimate trust when importing pubkey(s)" msgstr "unset kepercayaan maksimal ketika mengimpor pubkey(s)" -#: lib/psm.c:203 +#: lib/psm.c:204 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:283 lib/psm.c:296 +#: lib/psm.c:284 lib/psm.c:297 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:329 +#: lib/psm.c:330 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:445 -#, c-format -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:637 -#, c-format -msgid "%s: %s(%s-%s-%s.%s) running <lua> scriptlet.\n" -msgstr "%s: %s(%s-%s-%s.%s) menjalankan <lua> scriptlet.\n" - -#: lib/psm.c:658 +#: lib/psm.c:880 lib/rpmfc.c:106 #, c-format -msgid "%s: %s(%s-%s-%s.%s) skipping redundant \"%s\".\n" -msgstr "%s: %s(%s-%s-%s.%s) melewati redundant \"%s\".\n" - -#: lib/psm.c:666 -#, c-format -msgid "%s: %s(%s-%s-%s.%s) %ssynchronous scriptlet start\n" -msgstr "%s: %s(%s-%s-%s.%s) %ssynchronous scriptlet start\n" - -#: lib/psm.c:878 -#, c-format -msgid "%s: %s(%s-%s-%s.%s)\texecv(%s) pid %d\n" -msgstr "%s: %s(%s-%s-%s.%s)\texecv(%s) pid %d\n" +msgid "Couldn't fork %s: %s\n" +msgstr "" -#: lib/psm.c:926 +#: lib/psm.c:891 #, c-format msgid "%s(%s-%s-%s.%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s(%s-%s-%s.%s) scriptlet gagal, waitpid(%d) rc %d: %s\n" -#: lib/psm.c:933 +#: lib/psm.c:898 #, c-format msgid "%s(%s-%s-%s.%s) scriptlet failed, signal %d\n" msgstr "%s(%s-%s-%s.%s) scriptlet gagal, sinyal %d\n" -#: lib/psm.c:937 +#: lib/psm.c:902 #, c-format msgid "%s(%s-%s-%s.%s) scriptlet failed, exit status %d\n" msgstr "%s(%s-%s-%s.%s) scriptlet gagal, status keluar %d\n" -#: lib/psm.c:1571 -#, c-format -msgid "%s: %s has %d files, test = %d\n" -msgstr "" - -#: lib/psm.c:1745 +#: lib/psm.c:1717 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1856 +#: lib/psm.c:1828 msgid "Unable to reload signature header\n" msgstr "" -#: lib/psm.c:1949 +#: lib/psm.c:1921 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1950 +#: lib/psm.c:1922 msgid " on file " msgstr "" -#: lib/psm.c:2127 +#: lib/psm.c:2099 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2130 +#: lib/psm.c:2102 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:123 +#: lib/query.c:124 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:194 +#: lib/query.c:195 msgid "(contains no files)" msgstr "" -#: lib/query.c:288 +#: lib/query.c:289 msgid "normal " msgstr "" -#: lib/query.c:291 +#: lib/query.c:292 msgid "replaced " msgstr "" -#: lib/query.c:294 +#: lib/query.c:295 msgid "not installed " msgstr "" -#: lib/query.c:297 +#: lib/query.c:298 msgid "net shared " msgstr "" -#: lib/query.c:300 +#: lib/query.c:301 msgid "wrong color " msgstr "warna salah " -#: lib/query.c:303 +#: lib/query.c:304 msgid "(no state) " msgstr "" -#: lib/query.c:306 +#: lib/query.c:307 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:325 +#: lib/query.c:326 msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:358 +#: lib/query.c:359 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:515 +#: lib/query.c:516 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:524 +#: lib/query.c:525 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:537 lib/query.c:558 lib/query.c:580 lib/query.c:615 +#: lib/query.c:538 lib/query.c:559 lib/query.c:581 lib/query.c:616 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:547 lib/query.c:564 lib/query.c:591 lib/query.c:620 +#: lib/query.c:548 lib/query.c:565 lib/query.c:592 lib/query.c:621 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:631 +#: lib/query.c:632 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:642 +#: lib/query.c:643 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:676 +#: lib/query.c:677 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:679 +#: lib/query.c:680 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:704 +#: lib/query.c:705 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:707 -#, c-format -msgid "package record number: %u\n" -msgstr "" - -#: lib/query.c:711 +#: lib/query.c:712 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:721 lib/query.c:727 lib/rpminstall.c:817 +#: lib/query.c:722 lib/query.c:728 lib/rpminstall.c:816 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:782 +#: lib/rpmal.c:774 msgid "(added files)" msgstr "" -#: lib/rpmal.c:861 +#: lib/rpmal.c:853 msgid "(added provide)" msgstr "" @@ -2655,7 +2542,7 @@ msgid "%s: Fflush failed: %s\n" msgstr "%s: Fflush gagal: %s\n" -#: lib/rpmchecksig.c:216 lib/rpmchecksig.c:755 +#: lib/rpmchecksig.c:216 lib/rpmchecksig.c:759 #, c-format msgid "%s: not an rpm package\n" msgstr "" @@ -2675,157 +2562,151 @@ msgid "%s: was already signed by key ID %s, skipping\n" msgstr "" -#: lib/rpmchecksig.c:375 +#: lib/rpmchecksig.c:379 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:381 +#: lib/rpmchecksig.c:385 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:609 +#: lib/rpmchecksig.c:613 #, c-format msgid "%s: import read failed(%d).\n" msgstr "%s: import read gagal(%d).\n" -#: lib/rpmchecksig.c:621 +#: lib/rpmchecksig.c:625 #, c-format msgid "%s: import failed.\n" msgstr "" -#: lib/rpmchecksig.c:657 +#: lib/rpmchecksig.c:661 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/rpmchecksig.c:671 +#: lib/rpmchecksig.c:675 #, c-format msgid "%s: headerGetEntry failed\n" msgstr "" -#: lib/rpmchecksig.c:761 +#: lib/rpmchecksig.c:765 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:870 -#, c-format -msgid "only V3 or V4 signatures can be verified, skipping V%u signature\n" -msgstr "" -"hanya tanda tangan V3 yang dapat diverifikasi, melewatkan tanda tangan V%u\n" - -#: lib/rpmchecksig.c:1036 +#: lib/rpmchecksig.c:1041 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:1037 lib/rpmchecksig.c:1051 +#: lib/rpmchecksig.c:1042 lib/rpmchecksig.c:1056 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:1039 lib/rpmchecksig.c:1053 +#: lib/rpmchecksig.c:1044 lib/rpmchecksig.c:1058 msgid ") " msgstr "" -#: lib/rpmchecksig.c:1040 lib/rpmchecksig.c:1054 +#: lib/rpmchecksig.c:1045 lib/rpmchecksig.c:1059 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:1042 lib/rpmchecksig.c:1056 +#: lib/rpmchecksig.c:1047 lib/rpmchecksig.c:1061 msgid ")" msgstr "" -#: lib/rpmchecksig.c:1050 +#: lib/rpmchecksig.c:1055 msgid "OK" msgstr "" -#: lib/rpmds.c:922 lib/rpmds.c:3711 +#: lib/rpmds.c:918 lib/rpmds.c:3709 msgid "NO " msgstr "" -#: lib/rpmds.c:922 lib/rpmds.c:3711 +#: lib/rpmds.c:918 lib/rpmds.c:3709 msgid "YES" msgstr "" -#: lib/rpmds.c:1414 +#: lib/rpmds.c:1410 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions." msgstr "" -#: lib/rpmds.c:1417 +#: lib/rpmds.c:1413 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path." msgstr "" -#: lib/rpmds.c:1420 +#: lib/rpmds.c:1416 msgid "package payload can be compressed using bzip2." msgstr "package payload dapat dikompres dengan menggunakan bzip2" -#: lib/rpmds.c:1423 +#: lib/rpmds.c:1419 msgid "package payload file(s) have \"./\" prefix." msgstr "" -#: lib/rpmds.c:1426 +#: lib/rpmds.c:1422 msgid "package name-version-release is not implicitly provided." msgstr "" -#: lib/rpmds.c:1429 +#: lib/rpmds.c:1425 msgid "header tags are always sorted after being loaded." msgstr "" -#: lib/rpmds.c:1432 +#: lib/rpmds.c:1428 msgid "the scriptlet interpreter can use arguments from header." msgstr "" -#: lib/rpmds.c:1435 +#: lib/rpmds.c:1431 msgid "a hardlink file set may be installed without being complete." msgstr "" -#: lib/rpmds.c:1438 +#: lib/rpmds.c:1434 msgid "package scriptlets may access the rpm database while installing." msgstr "" "package scriptlets mungkin mengakses database rpm ketika menginstallnya." -#: lib/rpmds.c:1442 +#: lib/rpmds.c:1438 msgid "internal support for lua scripts." msgstr "dukungan untuk script lua." -#: lib/rpmds.c:1446 +#: lib/rpmds.c:1442 msgid "header tags can be type int_64." msgstr "header tags dapat memiliki tipe int_64." -#: lib/rpmds.c:1449 +#: lib/rpmds.c:1445 msgid "package payload can be in ustar tar archive format." msgstr "package payload dapat dalam format ustar tar" -#: lib/rpmds.c:1452 +#: lib/rpmds.c:1448 msgid "package payload can be compressed using lzma." msgstr "package payload dapat dikompres dengan menggunakan lzma." -#: lib/rpmds.c:1455 +#: lib/rpmds.c:1451 msgid "file digests can be other than MD5." msgstr "file digests dapat lain dari MD5" -#: lib/rpmds.c:1545 lib/rpmds.c:3535 +#: lib/rpmds.c:1541 lib/rpmds.c:3533 #, c-format msgid "%s:%d \"%s\" has invalid name. Skipping ...\n" msgstr "%s:%d \"%s\" memiliki nama yang tidak valid. Melewatkan ...\n" -#: lib/rpmds.c:1569 lib/rpmds.c:3553 +#: lib/rpmds.c:1565 lib/rpmds.c:3551 #, c-format msgid "%s:%d \"%s\" has no comparison operator. Skipping ...\n" msgstr "%s:%d \"%s\" tidak memiliki operator pembanding. Melewatkan ...\n" -#: lib/rpmds.c:1580 lib/rpmds.c:3568 +#: lib/rpmds.c:1576 lib/rpmds.c:3566 #, c-format msgid "%s:%d \"%s\" has no EVR string. Skipping ...\n" msgstr "%s:%d \"%s\" tidak memiliki string EVR. Melewatkan ...\n" -#: lib/rpmds.c:3534 lib/rpmds.c:3552 lib/rpmds.c:3564 +#: lib/rpmds.c:3532 lib/rpmds.c:3550 lib/rpmds.c:3562 #, c-format msgid "running \"%s\" pipe command\n" msgstr "menjalankan \"%s\" perintah pipa\n" -#: lib/rpmds.c:3566 +#: lib/rpmds.c:3564 #, c-format msgid "" "\tline %d: No EVR comparison value found.\n" @@ -2834,505 +2715,317 @@ "\tbaris %d: Tidak ada perbandingan nilai EVR yang ditemukan.\n" " Melewatkan ..." -#: lib/rpmds.c:3675 +#: lib/rpmds.c:3673 #, c-format msgid "" "The \"B\" dependency needs an epoch (assuming same epoch as \"A\")\n" "\tA = \"%s\"\tB = \"%s\"\n" msgstr "" -#: lib/rpmds.c:3710 +#: lib/rpmds.c:3708 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/rpmds.c:3734 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpmfc.c:93 -#, c-format -msgid "\texecv(%s) pid %d\n" -msgstr "\texecv(%s) pid %d\n" - -#: lib/rpmfc.c:99 +#: lib/rpmfc.c:101 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: lib/rpmfc.c:104 -#, c-format -msgid "Couldn't fork %s: %s\n" -msgstr "" - -#: lib/rpmfc.c:189 -#, c-format -msgid "\twaitpid(%d) rc %d status %x\n" -msgstr "\twaitpid(%d) rc %d status %x\n" - -#: lib/rpmfc.c:196 +#: lib/rpmfc.c:198 #, c-format msgid "Command \"%s\" failed, exit(%d)\n" msgstr "Perintah \"%s\" gagal, exit(%d)\n" -#: lib/rpmfc.c:201 +#: lib/rpmfc.c:203 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: lib/rpmfc.c:1003 -#, c-format -msgid "magic_open(0x%x) failed: %s\n" -msgstr "magic_open(0x%x) gagal: %s\n" - -#: lib/rpmfc.c:1011 -#, c-format -msgid "magic_load(ms, \"%s\") failed: %s\n" -msgstr "magic_load(ms, \"%s\") gagal: %s\n" - -#: lib/rpmfc.c:1077 -#, c-format -msgid "magic_file(ms, \"%s\") failed: mode %06o %s\n" -msgstr "magic_file(ms, \"%s\") gagal: mode %06o %s\n" - -#: lib/rpmfc.c:1295 +#: lib/rpmfc.c:1291 #, c-format msgid "Finding %s: %s\n" msgstr "" -#: lib/rpmfc.c:1301 lib/rpmfc.c:1312 +#: lib/rpmfc.c:1297 lib/rpmfc.c:1308 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: lib/rpmfi.c:622 -#, c-format -msgid "%s skipped due to missingok flag\n" -msgstr "" - -#: lib/rpmfi.c:874 -msgid "========== relocations\n" -msgstr "" - -#: lib/rpmfi.c:878 -#, c-format -msgid "%5d exclude %s\n" -msgstr "" - -#: lib/rpmfi.c:881 -#, c-format -msgid "%5d relocate %s -> %s\n" -msgstr "" - -#: lib/rpmfi.c:1015 -#, c-format -msgid "excluding %s %s\n" -msgstr "" - -#: lib/rpmfi.c:1025 -#, c-format -msgid "relocating %s to %s\n" -msgstr "" - -#: lib/rpmfi.c:1117 -#, c-format -msgid "relocating directory %s to %s\n" -msgstr "" - -#: lib/rpmgi.c:91 lib/rpminstall.c:125 lib/rpminstall.c:493 -#: lib/rpminstall.c:622 lib/rpmrollback.c:166 lib/rpmts.c:553 +#: lib/rpmgi.c:96 lib/rpminstall.c:126 lib/rpminstall.c:492 +#: lib/rpminstall.c:621 lib/rpmrollback.c:167 lib/rpmts.c:553 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/rpmgi.c:423 +#: lib/rpmgi.c:428 #, c-format msgid "unknown tag: \"%s\"\n" msgstr "tag tidak diketahui: \"%s\"\n" -#: lib/rpmgi.c:764 lib/rpminstall.c:666 lib/rpminstall.c:851 +#: lib/rpmgi.c:769 lib/rpminstall.c:665 lib/rpminstall.c:850 msgid "Failed dependencies:\n" msgstr "" -#: lib/rpmgi.c:770 lib/rpminstall.c:673 +#: lib/rpmgi.c:775 lib/rpminstall.c:672 msgid " Suggested resolutions:\n" msgstr "" -#: lib/rpminstall.c:192 +#: lib/rpminstall.c:193 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:194 +#: lib/rpminstall.c:195 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:212 +#: lib/rpminstall.c:213 msgid "Repackaging..." msgstr "" -#: lib/rpminstall.c:214 +#: lib/rpminstall.c:215 msgid "Repackaging erased files..." msgstr "" -#: lib/rpminstall.c:233 +#: lib/rpminstall.c:234 msgid "Upgrading..." msgstr "" -#: lib/rpminstall.c:235 +#: lib/rpminstall.c:236 msgid "Upgrading packages..." msgstr "" -#: lib/rpminstall.c:331 lib/rpminstall.c:795 +#: lib/rpminstall.c:433 #, c-format -msgid "Autorollback Goal: %-24.24s (0x%08x)\n" -msgstr "Autorollback Target: %-24.24s (0x%08x):\n" +msgid "Retrieving %s\n" +msgstr "" -#: lib/rpminstall.c:422 -#, c-format -msgid "Adding goal: %s\n" -msgstr "Menambah target: %s\n" - -#: lib/rpminstall.c:438 -#, c-format -msgid "Retrieving %s\n" -msgstr "" - -#: lib/rpminstall.c:451 -#, c-format -msgid " ... as %s\n" -msgstr "" - -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:454 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:512 lib/rpminstall.c:911 +#: lib/rpminstall.c:511 lib/rpminstall.c:910 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:529 -#, c-format -msgid "\tadded source package [%d]\n" -msgstr "\tditambahkan package source [%d]\n" - -#: lib/rpminstall.c:554 +#: lib/rpminstall.c:553 #, c-format msgid "package %s is not relocatable\n" msgstr "package %s tidak dapat direlokasikan\n" -#: lib/rpminstall.c:599 -#, c-format -msgid "\tadded binary package [%d]\n" -msgstr "\tmenambahkan packages binary [%d]\n" - -#: lib/rpminstall.c:605 +#: lib/rpminstall.c:604 #, c-format msgid "package file %s was skipped\n" msgstr "file package %s dilewatkan\n" -#: lib/rpminstall.c:609 +#: lib/rpminstall.c:608 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:637 +#: lib/rpminstall.c:636 #, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "" -#: lib/rpminstall.c:652 -#, c-format -msgid "found %d source and %d binary packages\n" -msgstr "" - -#: lib/rpminstall.c:703 -msgid "installing binary packages\n" -msgstr "" - -#: lib/rpminstall.c:727 +#: lib/rpminstall.c:726 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:825 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:895 +#: lib/rpminstall.c:894 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:901 +#: lib/rpminstall.c:900 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:56 +#: lib/rpmlead.c:57 #, c-format msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmlock.c:149 lib/rpmlock.c:158 +#: lib/rpmlock.c:150 lib/rpmlock.c:159 #, c-format msgid "can't create transaction lock on %s\n" msgstr "tidak dapat membuat kunci transaksi pada %s\n" -#: lib/rpmlock.c:154 +#: lib/rpmlock.c:155 #, c-format msgid "waiting for transaction lock on %s\n" msgstr "menunggu untuk memperoleh kunci transaksi di %s\n" -#: lib/rpmps.c:201 +#: lib/rpmps.c:202 msgid "different" msgstr "" -#: lib/rpmps.c:209 +#: lib/rpmps.c:210 #, c-format msgid "package %s is intended for a %s platform" msgstr "package %s tidak ditujukan untuk platform %s" -#: lib/rpmps.c:214 +#: lib/rpmps.c:215 #, c-format msgid "package %s is already installed" msgstr "" -#: lib/rpmps.c:219 +#: lib/rpmps.c:220 #, c-format msgid "re-packaged package with %s: %s is missing" msgstr "membungkus kembali dengan %s: %s hilang" -#: lib/rpmps.c:224 +#: lib/rpmps.c:225 #, c-format msgid "path %s in package %s is not relocatable" msgstr "path %s dalam package %s tidak dapat direlokasikan" -#: lib/rpmps.c:229 +#: lib/rpmps.c:230 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/rpmps.c:234 +#: lib/rpmps.c:235 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/rpmps.c:239 +#: lib/rpmps.c:240 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" -#: lib/rpmps.c:244 +#: lib/rpmps.c:245 #, c-format msgid "installing package %s needs %lu%cB on the %s filesystem" msgstr "memasang package %s membutuhkan %lu%cB pada %s filesystem" -#: lib/rpmps.c:254 +#: lib/rpmps.c:255 #, c-format msgid "installing package %s needs %lu inodes on the %s filesystem" msgstr "menginstall package %s membutuhkan %lu inodes pada %s filesystem" -#: lib/rpmps.c:259 +#: lib/rpmps.c:260 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/rpmps.c:263 +#: lib/rpmps.c:264 #, c-format msgid "%s is needed by %s%s" msgstr "" -#: lib/rpmps.c:265 lib/rpmps.c:270 +#: lib/rpmps.c:266 lib/rpmps.c:271 msgid "(installed) " msgstr "" -#: lib/rpmps.c:268 +#: lib/rpmps.c:269 #, c-format msgid "%s conflicts with %s%s" msgstr "" -#: lib/rpmps.c:274 +#: lib/rpmps.c:275 #, c-format msgid "installing package %s on %s rdonly filesystem" msgstr "menginstall package %s pada %s filesystem read-only" -#: lib/rpmps.c:279 +#: lib/rpmps.c:280 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/rpmrc.c:191 -#, c-format -msgid "missing second ':' at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:194 -#, c-format -msgid "missing architecture name at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:360 -#, c-format -msgid "Incomplete data line at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:365 -#, c-format -msgid "Too many args in data line at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:373 -#, c-format -msgid "Bad arch/os number: %s (%s:%d)\n" -msgstr "" - -#: lib/rpmrc.c:410 -#, c-format -msgid "Incomplete default line at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:415 -#, c-format -msgid "Too many args in default line at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:675 -#, c-format -msgid "Failed to read %s: %s.\n" -msgstr "" - -#: lib/rpmrc.c:713 -#, c-format -msgid "missing ':' (found 0x%02x) at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:730 lib/rpmrc.c:793 -#, c-format -msgid "missing argument for %s at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:747 lib/rpmrc.c:769 -#, c-format -msgid "%s expansion failed at %s:%d \"%s\"\n" -msgstr "" - -#: lib/rpmrc.c:756 -#, c-format -msgid "cannot open %s at %s:%d: %s\n" -msgstr "" - -#: lib/rpmrc.c:785 -#, c-format -msgid "missing architecture for %s at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:852 -#, c-format -msgid "bad option '%s' at %s:%d\n" -msgstr "" - -#: lib/rpmrc.c:1919 -#, c-format -msgid "Cannot expand %s\n" -msgstr "" - -#: lib/rpmrc.c:1924 -#, c-format -msgid "Cannot read %s, HOME is too large.\n" -msgstr "" - -#: lib/rpmrc.c:1941 -#, c-format -msgid "Unable to open %s for reading: %s.\n" -msgstr "" - -#: lib/rpmrc.c:2086 +#: lib/rpmrc.c:947 #, c-format msgid "Configured system provides (from /etc/rpm/sysinfo):\n" msgstr "Pada sistem yang terkonfigurasi menyediakan (dari /etc/rpm/sysinfo):\n" -#: lib/rpmrc.c:2100 +#: lib/rpmrc.c:961 #, c-format msgid "Features provided by rpmlib installer:\n" msgstr "Feature disediakan oleh installer rpmlib:\n" -#: lib/rpmrc.c:2114 +#: lib/rpmrc.c:975 #, c-format msgid "Features provided by current cpuinfo (from /proc/cpuinfo):\n" msgstr "" "Feature disediakan oleh informasi saat ini dari cpuinfo (dari /proc/" "cpuinfo):\n" -#: lib/rpmrc.c:2128 +#: lib/rpmrc.c:989 #, c-format msgid "Features provided by current getconf:\n" msgstr "Feature disediakan oleh getconf:\n" -#: lib/rpmrc.c:2142 +#: lib/rpmrc.c:1003 #, c-format msgid "Features provided by current uname:\n" msgstr "Feature disediakan oleh uname:\n" -#: lib/rpmrollback.c:389 +#: lib/rpmrollback.c:392 msgid "Failed dependencies" msgstr "Gagal memenuhi ketergantungan" -#: lib/rpmrollback.c:394 +#: lib/rpmrollback.c:397 msgid "Ordering problems" msgstr "Masalah pengurutan" -#: lib/rpmrollback.c:399 +#: lib/rpmrollback.c:402 msgid "Rollback problems" msgstr "Masalah rollback" -#: lib/rpmrollback.c:518 +#: lib/rpmrollback.c:521 #, c-format msgid "Excluding TID from rollback: %-24.24s (0x%08x)\n" msgstr "Menghiraukan TID dari rollback: %-24.24s (0x%08x)\n" -#: lib/rpmrollback.c:620 +#: lib/rpmrollback.c:623 msgid "Missing re-packaged package(s)" msgstr "Hilang re-package package(s)" -#: lib/rpmrollback.c:628 +#: lib/rpmrollback.c:631 #, c-format msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n" msgstr "" -#: lib/rpmrollback.c:654 +#: lib/rpmrollback.c:657 msgid "Cleaning up repackaged packages:\n" msgstr "Membersihkan repackage package:\n" -#: lib/rpmrollback.c:661 +#: lib/rpmrollback.c:664 #, c-format msgid "\tRemoving %s:\n" msgstr "\tMenghapus %s:\n" -#: lib/rpmsx.c:374 +#: lib/rpmsx.c:375 #, c-format msgid "%s: no newline on line number %d (only read %s)\n" msgstr "%s: tidak ada baris baru pada baris %d (hanya membaca %s)\n" -#: lib/rpmsx.c:391 +#: lib/rpmsx.c:392 #, c-format msgid "%s: line number %d is missing fields (only read %s)\n" msgstr "%s: baris %d hilang fields (hanya membaca %s)\n" -#: lib/rpmsx.c:424 +#: lib/rpmsx.c:425 #, c-format msgid "%s: unable to compile regular expression %s on line number %d: %s\n" msgstr "%s: tidak dapat mengkompile regular expression %s di baris %d: %s\n" -#: lib/rpmsx.c:439 lib/rpmsx.c:454 +#: lib/rpmsx.c:440 lib/rpmsx.c:455 #, c-format msgid "%s: invalid type specifier %s on line number %d\n" msgstr "%s: tipe %s tidak valid di baris %d\n" -#: lib/rpmsx.c:467 +#: lib/rpmsx.c:468 #, c-format msgid "%s: invalid context %s on line number %d\n" msgstr "%s: context %s tidak valid di baris %d\n" @@ -3367,147 +3060,89 @@ msgid "incorrect solve path format: %s\n" msgstr "format solve path tidak benar: %s\n" -#: lib/rpmts.c:573 -#, c-format -msgid "Adding: %s\n" -msgstr "Menambahkan: %s\n" - -#: lib/rpmts.c:584 -#, c-format -msgid "Suggesting: %s\n" -msgstr "Disarankan: %s\n" - -#: lib/rpmts.c:1149 -msgid "mounted filesystems:\n" -msgstr "filesystems yang terpasang:\n" - -#: lib/rpmts.c:1151 -msgid " i dev bsize bavail iavail mount point\n" -msgstr " i dev bsize bavail iavail mount point\n" - -#: lib/rpmts.c:1232 -#, c-format -msgid "%5d 0x%08x %8u %12ld %12ld %s %s\n" -msgstr "%5d 0x%08x %8u %12ld %12ld %s %s\n" - -#: lib/signature.c:139 -#, c-format -msgid "Expected size: %12lu = lead(%d)+sigs(%d)+pad(%d)+data(%lu)\n" -msgstr "Ukuran diperkirakan: %12lu = lead(%d)+sigs(%d)+pad(%d)+data(%lu)\n" - -#: lib/signature.c:144 -#, c-format -msgid " Actual size: %12lu\n" -msgstr " Ukuran sebenarnya: %12lu\n" - -#: lib/signature.c:187 +#: lib/signature.c:188 #, c-format msgid "sigh size(%d): BAD, read returned %d\n" msgstr "sigh berukuran(%d): TIDAK BAIK, pembacaan memberikan %d\n" -#: lib/signature.c:192 +#: lib/signature.c:193 #, c-format msgid "sigh magic: BAD\n" msgstr "sigh magic: TIDAK BAIK\n" -#: lib/signature.c:200 +#: lib/signature.c:201 #, c-format msgid "sigh tags: BAD, no. of tags(%d) out of range\n" msgstr "sigh tags: TIDAK BAIK, jumlah dari tags(%d) diluar dari jangkauan\n" -#: lib/signature.c:208 +#: lib/signature.c:209 #, c-format msgid "sigh data: BAD, no. of bytes(%d) out of range\n" msgstr "sigh data: TIDAK BAIK, jumlah dari bytes(%d) diluar jangkauan\n" -#: lib/signature.c:224 +#: lib/signature.c:225 #, c-format msgid "sigh blob(%d): BAD, read returned %d\n" msgstr "sigh blob (%d): TIDAK BAIK, pembacaan memberikan %d\n" -#: lib/signature.c:302 +#: lib/signature.c:303 #, c-format msgid "sigh tag[%d]: BAD, tag %d type %d offset %d count %d\n" msgstr "sigh tag[%d]: TIDAK BAIK, tag %d tipe %d ofset %d terhitung %d\n" -#: lib/signature.c:312 +#: lib/signature.c:313 #, c-format msgid "sigh load: BAD\n" msgstr "sigh load: TIDAK BAIK\n" -#: lib/signature.c:324 +#: lib/signature.c:325 #, c-format msgid "sigh pad(%d): BAD, read %d bytes\n" msgstr "sigh pad(%d): TIDAK BAIK, dibaca %d bytes\n" -#: lib/signature.c:334 +#: lib/signature.c:335 #, c-format msgid "sigh sigSize(%d): BAD, fstat(2) failed\n" msgstr "sigh berukuran(%d): TIDAK BAIK, fstat(2) gagal\n" -#: lib/signature.c:371 -#, c-format -msgid "Signature: size(%d)+pad(%d)\n" -msgstr "" - -#: lib/signature.c:468 lib/signature.c:595 lib/signature.c:904 -#: lib/signature.c:943 +#: lib/signature.c:470 lib/signature.c:597 lib/signature.c:906 +#: lib/signature.c:945 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:484 +#: lib/signature.c:486 msgid "pgp failed\n" msgstr "" -#: lib/signature.c:491 +#: lib/signature.c:493 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:497 -#, c-format -msgid "PGP sig size: %d\n" -msgstr "" - -#: lib/signature.c:515 lib/signature.c:643 +#: lib/signature.c:517 lib/signature.c:645 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:520 -#, c-format -msgid "Got %d bytes of PGP sig\n" -msgstr "" - -#: lib/signature.c:612 +#: lib/signature.c:614 #, c-format msgid "gpg exec failed (%d)\n" msgstr "eksekusi gpg gagal (%d)\n" -#: lib/signature.c:619 +#: lib/signature.c:621 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:625 -#, c-format -msgid "GPG sig size: %d\n" -msgstr "" - -#: lib/signature.c:648 -#, c-format -msgid "Got %d bytes of GPG sig\n" -msgstr "" - -#: lib/signature.c:948 lib/signature.c:1001 +#: lib/signature.c:950 lib/signature.c:1003 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:981 +#: lib/signature.c:983 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:995 +#: lib/signature.c:997 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" @@ -3520,251 +3155,207 @@ msgid "MD5 digest: " msgstr "" -#: lib/signature.c:1144 +#: lib/signature.c:1143 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1225 lib/signature.c:1415 +#: lib/signature.c:1223 lib/signature.c:1413 msgid "Header " msgstr "" -#: lib/signature.c:1294 +#: lib/signature.c:1292 msgid " signature: " msgstr " tanda tangan: " -#: lib/signature.c:1421 +#: lib/signature.c:1419 msgid " DSA signature: " msgstr " DSA tanda tangan: " -#: lib/signature.c:1503 +#: lib/signature.c:1501 #, c-format msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1534 +#: lib/signature.c:1532 #, c-format msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1538 +#: lib/signature.c:1536 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:890 -#, c-format -msgid "excluding directory %s\n" -msgstr "" - -#: lib/transaction.c:1013 +#: lib/transaction.c:999 #, c-format msgid "rpmdb erase failed. NEVRA: %s\n" msgstr "rpmdb gagal menghapus. NEVRA: %s\n" -#: lib/transaction.c:1031 +#: lib/transaction.c:1017 #, c-format msgid "Rollback to %-24.24s (0x%08x)\n" msgstr "Rollback ke %-24.24s (0x%08x):\n" -#: lib/transaction.c:1178 +#: lib/transaction.c:1164 msgid "Invalid number of transaction elements.\n" msgstr "Jumlah element transaksi tidak valid.\n" -#: lib/transaction.c:1251 -#, c-format -msgid "sanity checking %d elements\n" -msgstr "sanity checking %d elements\n" - -#: lib/transaction.c:1324 -msgid "running pre-transaction scripts\n" -msgstr "menjalankan pre-transaksi script\n" - -#: lib/transaction.c:1399 -#, c-format -msgid "computing %d file fingerprints\n" -msgstr "" - -#: lib/transaction.c:1488 -msgid "computing file dispositions\n" -msgstr "" - -#: lib/transaction.c:1890 -msgid "running post-transaction scripts\n" -msgstr "menjalankan post-transaksi scripts\n" - -#: lib/verify.c:305 +#: lib/verify.c:306 #, c-format msgid "missing %c %s" msgstr "kehilangan %c %s" -#: lib/verify.c:424 +#: lib/verify.c:431 #, c-format msgid "Unsatisfied dependencies for %s:\n" msgstr "dependensi untuk %s tidak terpenuhi:\n" -#: rpmdb/db3.c:162 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:165 +#: rpmdb/db3.c:166 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:191 -#, c-format -msgid "closed db environment %s/%s\n" -msgstr "" - -#: rpmdb/db3.c:210 -#, c-format -msgid "removed db environment %s/%s\n" -msgstr "" - -#: rpmdb/db3.c:331 -#, c-format -msgid "opening db environment %s/%s %s\n" -msgstr "" - -#: rpmdb/db3.c:954 -#, c-format -msgid "closed db index %s/%s\n" -msgstr "" - -#: rpmdb/db3.c:1024 -#, c-format -msgid "verified db index %s/%s\n" -msgstr "" - -#: rpmdb/db3.c:1168 -#, c-format -msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" -msgstr "" -"unshared posix mutexes ditemukan(%d), menambahkan DB_PRIVATE, menggunakan " -"fnctl lock\n" - -#: rpmdb/db3.c:1274 +#: rpmdb/db3.c:1285 msgid "Runnning db->verify ...\n" msgstr "Menjalankan db-verify ...\n" -#: rpmdb/db3.c:1338 -#, c-format -msgid "opening db index %s/%s %s mode=0x%x\n" -msgstr "" - -#: rpmdb/db3.c:1579 +#: rpmdb/db3.c:1590 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1581 +#: rpmdb/db3.c:1592 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1581 +#: rpmdb/db3.c:1592 msgid "shared" msgstr "" -#: rpmdb/db3.c:1585 -#, c-format -msgid "locked db index %s/%s\n" -msgstr "" - -#: rpmdb/dbconfig.c:575 +#: rpmdb/dbconfig.c:714 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:615 +#: rpmdb/dbconfig.c:754 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:624 +#: rpmdb/dbconfig.c:763 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:633 +#: rpmdb/dbconfig.c:772 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: rpmdb/header.c:2833 +#: rpmdb/hdrfmt.c:90 rpmdb/hdrfmt.c:122 rpmdb/hdrfmt.c:157 rpmdb/hdrfmt.c:238 +#: rpmdb/hdrfmt.c:832 +msgid "(invalid type)" +msgstr "" + +#: rpmdb/hdrfmt.c:227 +msgid "(not base64)" +msgstr "" + +#: rpmdb/hdrfmt.c:266 rpmdb/hdrfmt.c:720 +msgid "(not a blob)" +msgstr "" + +#: rpmdb/hdrfmt.c:422 +msgid "(invalid xml type)" +msgstr "(tipe xml tidak valid)" + +#: rpmdb/hdrfmt.c:636 +msgid "(invalid yaml type)" +msgstr "(tipe yaml tidak valid)" + +#: rpmdb/hdrfmt.c:745 +msgid "(not an OpenPGP signature)" +msgstr "(bukan sebuah tanda tangan OpenPGP)" + +#: rpmdb/header.c:2895 msgid "missing { after %" msgstr "" -#: rpmdb/header.c:2863 +#: rpmdb/header.c:2925 msgid "missing } after %{" msgstr "" -#: rpmdb/header.c:2879 +#: rpmdb/header.c:2941 msgid "empty tag format" msgstr "" -#: rpmdb/header.c:2891 +#: rpmdb/header.c:2953 msgid "empty tag name" msgstr "" -#: rpmdb/header.c:2900 +#: rpmdb/header.c:2962 msgid "unknown tag" msgstr "" -#: rpmdb/header.c:2927 +#: rpmdb/header.c:2989 msgid "] expected at end of array" msgstr "" -#: rpmdb/header.c:2940 +#: rpmdb/header.c:3002 msgid "unexpected ]" msgstr "" -#: rpmdb/header.c:2953 +#: rpmdb/header.c:3015 msgid "unexpected }" msgstr "" -#: rpmdb/header.c:3017 +#: rpmdb/header.c:3079 msgid "? expected in expression" msgstr "" -#: rpmdb/header.c:3024 +#: rpmdb/header.c:3086 msgid "{ expected after ? in expression" msgstr "" -#: rpmdb/header.c:3036 rpmdb/header.c:3076 +#: rpmdb/header.c:3098 rpmdb/header.c:3138 msgid "} expected in expression" msgstr "" -#: rpmdb/header.c:3044 +#: rpmdb/header.c:3106 msgid ": expected following ? subexpression" msgstr "" -#: rpmdb/header.c:3062 +#: rpmdb/header.c:3124 msgid "{ expected after : in expression" msgstr "" -#: rpmdb/header.c:3084 +#: rpmdb/header.c:3146 msgid "| expected at end of expression" msgstr "" -#: rpmdb/header.c:3187 +#: rpmdb/header.c:3249 msgid "(index out of range)" msgstr "(index diluar dari jangkauan)" -#: rpmdb/header.c:3456 +#: rpmdb/header.c:3518 msgid "array iterator used with different sized arrays" msgstr "array dari iterasi digunakan dengan ukuran arrays yang berbeda" -#: rpmdb/header.c:3770 rpmdb/header.c:3807 rpmdb/header.c:3830 +#: rpmdb/header.c:3829 rpmdb/header.c:3866 rpmdb/header.c:3889 msgid "(not a number)" msgstr "" -#: rpmdb/header.c:3869 +#: rpmdb/header.c:3928 #, c-format msgid "%c" msgstr "%c" -#: rpmdb/header.c:3886 +#: rpmdb/header.c:3945 msgid "%a %b %d %Y" msgstr "%a %b %d %Y" @@ -3773,15 +3364,15 @@ msgid "Data type %d not supported\n" msgstr "" -#: rpmdb/poptDB.c:18 +#: rpmdb/poptDB.c:19 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:20 +#: rpmdb/poptDB.c:21 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:23 +#: rpmdb/poptDB.c:24 msgid "verify database files" msgstr "" @@ -3790,713 +3381,663 @@ msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:319 +#: rpmdb/rpmdb.c:320 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:339 +#: rpmdb/rpmdb.c:340 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:809 +#: rpmdb/rpmdb.c:798 #, c-format msgid "incorrect format: \"%s\": %s\n" msgstr "format tidak benar