tl.po 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754
  1. # Tagalog messages for apt debconf.
  2. # Copyright (C) 2005 Software in the Public Interest, Inc.
  3. # This file is distributed under the same license as apt.
  4. # Itong talaksan ay ipinapamahagi sa parehong lisensya ng apt.
  5. # Eric Pareja <xenos@upm.edu.ph>, 2005
  6. # This file is maintained by Eric Pareja <xenos@upm.edu.ph>
  7. # Itong talaksan ay inaalagaan ni Eric Pareja <xenos@upm.edu.ph>
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: apt\n"
  12. "Report-Msgid-Bugs-To: \n"
  13. "POT-Creation-Date: 2005-10-25 18:41+0200\n"
  14. "PO-Revision-Date: 2005-11-03 03:35+0800\n"
  15. "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
  16. "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: 8bit\n"
  20. "Plural-Forms: nplurals=2; plural=n>1;\n"
  21. #: cmdline/apt-cache.cc:135
  22. #, c-format
  23. msgid "Package %s version %s has an unmet dep:\n"
  24. msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n"
  25. #: cmdline/apt-cache.cc:175 cmdline/apt-cache.cc:527 cmdline/apt-cache.cc:615
  26. #: cmdline/apt-cache.cc:771 cmdline/apt-cache.cc:989 cmdline/apt-cache.cc:1357
  27. #: cmdline/apt-cache.cc:1508
  28. #, c-format
  29. msgid "Unable to locate package %s"
  30. msgstr "Hindi mahanap ang paketeng %s"
  31. #: cmdline/apt-cache.cc:232
  32. msgid "Total package names : "
  33. msgstr "Kabuuan ng mga Pakete : "
  34. #: cmdline/apt-cache.cc:272
  35. msgid " Normal packages: "
  36. msgstr " Normal na Pakete: "
  37. #: cmdline/apt-cache.cc:273
  38. msgid " Pure virtual packages: "
  39. msgstr " Purong Birtwual na Pakete: "
  40. #: cmdline/apt-cache.cc:274
  41. msgid " Single virtual packages: "
  42. msgstr " Nag-iisang Birtwal na Pakete: "
  43. #: cmdline/apt-cache.cc:275
  44. msgid " Mixed virtual packages: "
  45. msgstr " Halong Birtwal na Pakete: "
  46. #: cmdline/apt-cache.cc:276
  47. msgid " Missing: "
  48. msgstr " Kulang/Nawawala: "
  49. #: cmdline/apt-cache.cc:278
  50. msgid "Total distinct versions: "
  51. msgstr "Kabuuan ng Natatanging mga Bersyon: "
  52. #: cmdline/apt-cache.cc:280
  53. msgid "Total dependencies: "
  54. msgstr "Kabuuan ng mga Dependensiya: "
  55. #: cmdline/apt-cache.cc:283
  56. msgid "Total ver/file relations: "
  57. msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
  58. #: cmdline/apt-cache.cc:285
  59. msgid "Total Provides mappings: "
  60. msgstr "Kabuuan ng Mapping ng Provides: "
  61. #: cmdline/apt-cache.cc:297
  62. msgid "Total globbed strings: "
  63. msgstr "Kabuuan ng Globbed String: "
  64. #: cmdline/apt-cache.cc:311
  65. msgid "Total dependency version space: "
  66. msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: "
  67. #: cmdline/apt-cache.cc:316
  68. msgid "Total slack space: "
  69. msgstr "Kabuuan ng Hindi Nagamit na puwang: "
  70. #: cmdline/apt-cache.cc:324
  71. msgid "Total space accounted for: "
  72. msgstr "Kabuuan ng puwang na napag-tuosan: "
  73. #: cmdline/apt-cache.cc:446 cmdline/apt-cache.cc:1189
  74. #, c-format
  75. msgid "Package file %s is out of sync."
  76. msgstr "Wala sa sync ang talaksan ng paketeng %s."
  77. #: cmdline/apt-cache.cc:1231
  78. msgid "You must give exactly one pattern"
  79. msgstr "Kailangan niyong magbigay ng isa lamang na pattern"
  80. #: cmdline/apt-cache.cc:1385
  81. msgid "No packages found"
  82. msgstr "Walang nahanap na mga pakete"
  83. #: cmdline/apt-cache.cc:1462
  84. msgid "Package files:"
  85. msgstr "Talaksang Pakete:"
  86. #: cmdline/apt-cache.cc:1469 cmdline/apt-cache.cc:1555
  87. msgid "Cache is out of sync, can't x-ref a package file"
  88. msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete"
  89. #: cmdline/apt-cache.cc:1470
  90. #, c-format
  91. msgid "%4i %s\n"
  92. msgstr "%4i %s\n"
  93. #. Show any packages have explicit pins
  94. #: cmdline/apt-cache.cc:1482
  95. msgid "Pinned packages:"
  96. msgstr "Mga naka-Pin na Pakete:"
  97. #: cmdline/apt-cache.cc:1494 cmdline/apt-cache.cc:1535
  98. msgid "(not found)"
  99. msgstr "(hindi nahanap)"
  100. #. Installed version
  101. #: cmdline/apt-cache.cc:1515
  102. msgid " Installed: "
  103. msgstr " Nakaluklok: "
  104. #: cmdline/apt-cache.cc:1517 cmdline/apt-cache.cc:1525
  105. msgid "(none)"
  106. msgstr "(wala)"
  107. #. Candidate Version
  108. #: cmdline/apt-cache.cc:1522
  109. msgid " Candidate: "
  110. msgstr " Kandidato: "
  111. #: cmdline/apt-cache.cc:1532
  112. msgid " Package pin: "
  113. msgstr " Naka-Pin na Pakete: "
  114. #. Show the priority tables
  115. #: cmdline/apt-cache.cc:1541
  116. msgid " Version table:"
  117. msgstr " Talaang Bersyon:"
  118. #: cmdline/apt-cache.cc:1556
  119. #, c-format
  120. msgid " %4i %s\n"
  121. msgstr " %4i %s\n"
  122. #: cmdline/apt-cache.cc:1651 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
  123. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:550
  124. #: cmdline/apt-get.cc:2356 cmdline/apt-sortpkgs.cc:144
  125. #, c-format
  126. msgid "%s %s for %s %s compiled on %s %s\n"
  127. msgstr "%s %s para sa %s %s kinompile noong %s %s\n"
  128. #: cmdline/apt-cache.cc:1658
  129. msgid ""
  130. "Usage: apt-cache [options] command\n"
  131. " apt-cache [options] add file1 [file2 ...]\n"
  132. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  133. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  134. "\n"
  135. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  136. "cache files, and query information from them\n"
  137. "\n"
  138. "Commands:\n"
  139. " add - Add a package file to the source cache\n"
  140. " gencaches - Build both the package and source cache\n"
  141. " showpkg - Show some general information for a single package\n"
  142. " showsrc - Show source records\n"
  143. " stats - Show some basic statistics\n"
  144. " dump - Show the entire file in a terse form\n"
  145. " dumpavail - Print an available file to stdout\n"
  146. " unmet - Show unmet dependencies\n"
  147. " search - Search the package list for a regex pattern\n"
  148. " show - Show a readable record for the package\n"
  149. " depends - Show raw dependency information for a package\n"
  150. " rdepends - Show reverse dependency information for a package\n"
  151. " pkgnames - List the names of all packages\n"
  152. " dotty - Generate package graphs for GraphVis\n"
  153. " xvcg - Generate package graphs for xvcg\n"
  154. " policy - Show policy settings\n"
  155. "\n"
  156. "Options:\n"
  157. " -h This help text.\n"
  158. " -p=? The package cache.\n"
  159. " -s=? The source cache.\n"
  160. " -q Disable progress indicator.\n"
  161. " -i Show only important deps for the unmet command.\n"
  162. " -c=? Read this configuration file\n"
  163. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  164. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  165. msgstr ""
  166. "Pag-gamit: apt-cache [mga option] utos\n"
  167. " apt-cache [mga option] add talaksan1 [talaksan2 ...]\n"
  168. " apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n"
  169. " apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n"
  170. "\n"
  171. "apt-cache ay isang kagamitang low-level para sa pag-manipula\n"
  172. "ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n"
  173. "impormasyon mula sa kanila\n"
  174. "\n"
  175. "Mga utos:\n"
  176. " add - Magdagdag ng talaksang pakete sa source cache\n"
  177. " gencaches - Buuin pareho ang cache ng pakete at source\n"
  178. " showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n"
  179. " showsrc - Ipakita ang mga record ng source\n"
  180. " stats - Ipakita ang ilang mga estadistika\n"
  181. " dump - Ipakita ang buong talaksan sa anyong maikli\n"
  182. " dumpavail - Ipakita ang talaksang available sa stdout\n"
  183. " unmet - Ipakita ang mga kulang na mga dependensiya\n"
  184. " search - Maghanap sa listahan ng mga pakete ng regex pattern\n"
  185. " show - Ipakita ang nababasang record ng pakete\n"
  186. " depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n"
  187. " ng pakete\n"
  188. " rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n"
  189. " pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n"
  190. " dotty - Bumuo ng graph ng mga pakete para sa GraphVis\n"
  191. " xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n"
  192. " policy - Ipakita ang pagkaayos ng mga policy\n"
  193. "\n"
  194. "Mga option:\n"
  195. " -h Itong tulong na ito.\n"
  196. " -p=? Ang cache ng mga pakete.\n"
  197. " -s=? Ang cache ng mga source.\n"
  198. " -q Huwag ipakita ang hudyat ng progreso.\n"
  199. " -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n"
  200. " -c=? Basahin ang talaksang pagkaayos na ito\n"
  201. " -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
  202. "Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n"
  203. "karagdagang impormasyon\n"
  204. #: cmdline/apt-cdrom.cc:78
  205. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  206. msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'"
  207. #: cmdline/apt-cdrom.cc:93
  208. msgid "Please insert a Disc in the drive and press enter"
  209. msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter"
  210. #: cmdline/apt-cdrom.cc:117
  211. msgid "Repeat this process for the rest of the CDs in your set."
  212. msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set."
  213. #: cmdline/apt-config.cc:41
  214. msgid "Arguments not in pairs"
  215. msgstr "Mga argumento ay hindi naka-pares"
  216. #: cmdline/apt-config.cc:76
  217. msgid ""
  218. "Usage: apt-config [options] command\n"
  219. "\n"
  220. "apt-config is a simple tool to read the APT config file\n"
  221. "\n"
  222. "Commands:\n"
  223. " shell - Shell mode\n"
  224. " dump - Show the configuration\n"
  225. "\n"
  226. "Options:\n"
  227. " -h This help text.\n"
  228. " -c=? Read this configuration file\n"
  229. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  230. msgstr ""
  231. "Pag-gamit: apt-config [mga option] utos\n"
  232. "\n"
  233. "Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n"
  234. "ng APT\n"
  235. "\n"
  236. "Mga utos:\n"
  237. " shell - modong shell\n"
  238. " dump - ipakita ang pagkaayos\n"
  239. "Mga option:\n"
  240. " -h Itong tulong na ito.\n"
  241. " -c=? Basahin itong talaksang pagkaayos\n"
  242. " -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n"
  243. #: cmdline/apt-extracttemplates.cc:98
  244. #, c-format
  245. msgid "%s not a valid DEB package."
  246. msgstr "%s ay hindi balido na paketeng DEB."
  247. #: cmdline/apt-extracttemplates.cc:232
  248. msgid ""
  249. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  250. "\n"
  251. "apt-extracttemplates is a tool to extract config and template info\n"
  252. "from debian packages\n"
  253. "\n"
  254. "Options:\n"
  255. " -h This help text\n"
  256. " -t Set the temp dir\n"
  257. " -c=? Read this configuration file\n"
  258. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  259. msgstr ""
  260. "Pag-gamit: apt-extracttemplates talaksan1 [talaksan2 ...]\n"
  261. "\n"
  262. "Ang apt-extracttemplates ay kagamitan sa pagkuha ng info tungkol\n"
  263. "sa pagkaayos at template mula sa mga paketeng debian\n"
  264. "\n"
  265. "Mga opsyon:\n"
  266. " -h Itong tulong na ito\n"
  267. " -t Itakda ang dir na pansamantala\n"
  268. " -c=? Basahin ang talaksang pagkaayos na ito\n"
  269. " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n"
  270. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:710
  271. #, c-format
  272. msgid "Unable to write to %s"
  273. msgstr "Hindi makasulat sa %s"
  274. #: cmdline/apt-extracttemplates.cc:310
  275. msgid "Cannot get debconf version. Is debconf installed?"
  276. msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?"
  277. #: ftparchive/apt-ftparchive.cc:167 ftparchive/apt-ftparchive.cc:341
  278. msgid "Package extension list is too long"
  279. msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete"
  280. #: ftparchive/apt-ftparchive.cc:169 ftparchive/apt-ftparchive.cc:183
  281. #: ftparchive/apt-ftparchive.cc:206 ftparchive/apt-ftparchive.cc:256
  282. #: ftparchive/apt-ftparchive.cc:270 ftparchive/apt-ftparchive.cc:292
  283. #, c-format
  284. msgid "Error processing directory %s"
  285. msgstr "Error sa pagproseso ng directory %s"
  286. #: ftparchive/apt-ftparchive.cc:254
  287. msgid "Source extension list is too long"
  288. msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)"
  289. #: ftparchive/apt-ftparchive.cc:371
  290. msgid "Error writing header to contents file"
  291. msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)"
  292. #: ftparchive/apt-ftparchive.cc:401
  293. #, c-format
  294. msgid "Error processing contents %s"
  295. msgstr "Error sa pagproseso ng Contents %s"
  296. #: ftparchive/apt-ftparchive.cc:556
  297. msgid ""
  298. "Usage: apt-ftparchive [options] command\n"
  299. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  300. " sources srcpath [overridefile [pathprefix]]\n"
  301. " contents path\n"
  302. " release path\n"
  303. " generate config [groups]\n"
  304. " clean config\n"
  305. "\n"
  306. "apt-ftparchive generates index files for Debian archives. It supports\n"
  307. "many styles of generation from fully automated to functional replacements\n"
  308. "for dpkg-scanpackages and dpkg-scansources\n"
  309. "\n"
  310. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  311. "Package file contains the contents of all the control fields from\n"
  312. "each package as well as the MD5 hash and filesize. An override file\n"
  313. "is supported to force the value of Priority and Section.\n"
  314. "\n"
  315. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  316. "The --source-override option can be used to specify a src override file\n"
  317. "\n"
  318. "The 'packages' and 'sources' command should be run in the root of the\n"
  319. "tree. BinaryPath should point to the base of the recursive search and \n"
  320. "override file should contain the override flags. Pathprefix is\n"
  321. "appended to the filename fields if present. Example usage from the \n"
  322. "Debian archive:\n"
  323. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  324. " dists/potato/main/binary-i386/Packages\n"
  325. "\n"
  326. "Options:\n"
  327. " -h This help text\n"
  328. " --md5 Control MD5 generation\n"
  329. " -s=? Source override file\n"
  330. " -q Quiet\n"
  331. " -d=? Select the optional caching database\n"
  332. " --no-delink Enable delinking debug mode\n"
  333. " --contents Control contents file generation\n"
  334. " -c=? Read this configuration file\n"
  335. " -o=? Set an arbitrary configuration option"
  336. msgstr ""
  337. "Pag-gamit: apt-ftparchive [mga option] utos\n"
  338. "Mga utos: packages binarypath [overridefile [pathprefix]]\n"
  339. " sources srcpath [overridefile [pathprefix]]\n"
  340. " contents path\n"
  341. " release path\n"
  342. " generate config [mga grupo]\n"
  343. " clean config\n"
  344. "\n"
  345. "Ang apt-ftparchive ay gumagawa ng talaksang index para sa arkibong Debian.\n"
  346. "Suportado nito ang maraming estilo ng pagbuo mula sa awtomatikong buo\n"
  347. "at kapalit ng dpkg-scanpackages at dpkg-scansources\n"
  348. "\n"
  349. "Bumubuo ang apt-ftparchive ng mga talaksang Package mula sa puno ng mga\n"
  350. ".deb. Ang talaksang Package ay naglalaman ng laman ng lahat ng control field\n"
  351. "mula sa bawat pakete pati na rin ang MD5 hash at laki ng talaksan. Suportado\n"
  352. "ang pag-gamit ng talaksang override upang pilitin ang halaga ng Priority at Section.\n"
  353. "\n"
  354. "Bumubuo din ang apt-ftparchive ng talaksang Sources mula sa puno ng mga\n"
  355. ".dsc. Ang option na --source-override ay maaaring gamitin upang itakda\n"
  356. "ang talaksang override ng src\n"
  357. "\n"
  358. "Ang mga utos na 'packages' at 'sources' ay dapat patakbuhin sa ugat ng\n"
  359. "puno. Kailangan nakaturo ang BinaryPath sa ugat ng paghahanap na recursive\n"
  360. "at ang talaksang override ay dapat naglalaman ng mga flag na override. Ang\n"
  361. "pathprefix ay dinudugtong sa harap ng mga pangalan ng talaksan kung mayroon.\n"
  362. "Halimbawa ng pag-gamit mula sa arkibong Debian:\n"
  363. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  364. " dists/potato/main/binary-i386/Packages\n"
  365. "\n"
  366. "Mga option:\n"
  367. " -h Itong tulong na ito\n"
  368. " --md5 Pagbuo ng MD5\n"
  369. " -s=? Talaksang override ng source\n"
  370. " -q Tahimik\n"
  371. " -d=? Piliin ang optional caching database\n"
  372. " --no-delink Enable delinking debug mode\n"
  373. " --contents Pagbuo ng talaksang contents\n"
  374. " -c=? Basahin itong talaksang pagkaayos\n"
  375. " -o=? Itakda ang isang option na pagkaayos"
  376. #: ftparchive/apt-ftparchive.cc:762
  377. msgid "No selections matched"
  378. msgstr "Walang mga pinili na tugma"
  379. #: ftparchive/apt-ftparchive.cc:835
  380. #, c-format
  381. msgid "Some files are missing in the package file group `%s'"
  382. msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'"
  383. #: ftparchive/cachedb.cc:45
  384. #, c-format
  385. msgid "DB was corrupted, file renamed to %s.old"
  386. msgstr "Nasira ang DB, pinalitan ng pangalan ang talaksan sa %s.old"
  387. #: ftparchive/cachedb.cc:63
  388. #, c-format
  389. msgid "DB is old, attempting to upgrade %s"
  390. msgstr "Luma ang DB, sinusubukang maupgrade %s"
  391. #: ftparchive/cachedb.cc:73
  392. #, c-format
  393. msgid "Unable to open DB file %s: %s"
  394. msgstr "Hindi mabuksan ang talaksang DB %s: %s"
  395. #: ftparchive/cachedb.cc:114
  396. #, c-format
  397. msgid "File date has changed %s"
  398. msgstr "Nagbago ang petsa ng talaksan %s"
  399. #: ftparchive/cachedb.cc:155
  400. msgid "Archive has no control record"
  401. msgstr "Walang kontrol rekord ang arkibo"
  402. #: ftparchive/cachedb.cc:267
  403. msgid "Unable to get a cursor"
  404. msgstr "Hindi makakuha ng cursor"
  405. #: ftparchive/writer.cc:78
  406. #, c-format
  407. msgid "W: Unable to read directory %s\n"
  408. msgstr "W: Hindi mabasa ang directory %s\n"
  409. #: ftparchive/writer.cc:83
  410. #, c-format
  411. msgid "W: Unable to stat %s\n"
  412. msgstr "W: Hindi ma-stat %s\n"
  413. #: ftparchive/writer.cc:125
  414. msgid "E: "
  415. msgstr "E: "
  416. #: ftparchive/writer.cc:127
  417. msgid "W: "
  418. msgstr "W: "
  419. #: ftparchive/writer.cc:134
  420. msgid "E: Errors apply to file "
  421. msgstr "E: Mga error ay tumutukoy sa talaksang "
  422. #: ftparchive/writer.cc:151 ftparchive/writer.cc:181
  423. #, c-format
  424. msgid "Failed to resolve %s"
  425. msgstr "Bigo sa pag-resolba ng %s"
  426. #: ftparchive/writer.cc:163
  427. msgid "Tree walking failed"
  428. msgstr "Bigo ang paglakad sa puno"
  429. #: ftparchive/writer.cc:188
  430. #, c-format
  431. msgid "Failed to open %s"
  432. msgstr "Bigo ang pagbukas ng %s"
  433. #: ftparchive/writer.cc:245
  434. #, c-format
  435. msgid " DeLink %s [%s]\n"
  436. msgstr " DeLink %s [%s]\n"
  437. #: ftparchive/writer.cc:253
  438. #, c-format
  439. msgid "Failed to readlink %s"
  440. msgstr "Bigo ang pagbasa ng link %s"
  441. #: ftparchive/writer.cc:257
  442. #, c-format
  443. msgid "Failed to unlink %s"
  444. msgstr "Bigo ang pag-unlink ng %s"
  445. #: ftparchive/writer.cc:264
  446. #, c-format
  447. msgid "*** Failed to link %s to %s"
  448. msgstr "*** Bigo ang pag-link ng %s sa %s"
  449. #: ftparchive/writer.cc:274
  450. #, c-format
  451. msgid " DeLink limit of %sB hit.\n"
  452. msgstr " DeLink limit na %sB tinamaan.\n"
  453. #: ftparchive/writer.cc:358 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  454. #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121 methods/gpgv.cc:256
  455. #, c-format
  456. msgid "Failed to stat %s"
  457. msgstr "Bigo ang pag-stat ng %s"
  458. #: ftparchive/writer.cc:386
  459. msgid "Archive had no package field"
  460. msgstr "Walang field ng pakete ang arkibo"
  461. #: ftparchive/writer.cc:394 ftparchive/writer.cc:603
  462. #, c-format
  463. msgid " %s has no override entry\n"
  464. msgstr " %s ay walang override entry\n"
  465. #: ftparchive/writer.cc:437 ftparchive/writer.cc:689
  466. #, c-format
  467. msgid " %s maintainer is %s not %s\n"
  468. msgstr " Maintainer ng %s ay %s hindi %s\n"
  469. #: ftparchive/contents.cc:317
  470. #, c-format
  471. msgid "Internal error, could not locate member %s"
  472. msgstr "Internal error, hindi mahanap ang miyembrong %s"
  473. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  474. msgid "realloc - Failed to allocate memory"
  475. msgstr "realloc - Bigo ang pagreserba ng memory"
  476. #: ftparchive/override.cc:38 ftparchive/override.cc:146
  477. #, c-format
  478. msgid "Unable to open %s"
  479. msgstr "Hindi mabuksan %s"
  480. #: ftparchive/override.cc:64 ftparchive/override.cc:170
  481. #, c-format
  482. msgid "Malformed override %s line %lu #1"
  483. msgstr "Maling anyo ng override %s linya %lu #1"
  484. #: ftparchive/override.cc:78 ftparchive/override.cc:182
  485. #, c-format
  486. msgid "Malformed override %s line %lu #2"
  487. msgstr "Maling anyo ng override %s linya %lu #2"
  488. #: ftparchive/override.cc:92 ftparchive/override.cc:195
  489. #, c-format
  490. msgid "Malformed override %s line %lu #3"
  491. msgstr "Maling anyo ng override %s linya %lu #3"
  492. #: ftparchive/override.cc:131 ftparchive/override.cc:205
  493. #, c-format
  494. msgid "Failed to read the override file %s"
  495. msgstr "Bigo ang pagbasa ng talaksang override %s"
  496. #: ftparchive/multicompress.cc:75
  497. #, c-format
  498. msgid "Unknown compression algorithm '%s'"
  499. msgstr "Hindi kilalang algorithmong compression '%s'"
  500. #: ftparchive/multicompress.cc:105
  501. #, c-format
  502. msgid "Compressed output %s needs a compression set"
  503. msgstr "Kailangan ng compression set ang compressed output %s"
  504. #: ftparchive/multicompress.cc:172 methods/rsh.cc:91
  505. msgid "Failed to create IPC pipe to subprocess"
  506. msgstr "Bigo sa paglikha ng IPC pipe sa subprocess"
  507. #: ftparchive/multicompress.cc:198
  508. msgid "Failed to create FILE*"
  509. msgstr "Bigo ang paglikha ng FILE*"
  510. #: ftparchive/multicompress.cc:201
  511. msgid "Failed to fork"
  512. msgstr "Bigo ang pag-fork"
  513. #: ftparchive/multicompress.cc:215
  514. msgid "Compress child"
  515. msgstr "Anak para sa pag-Compress"
  516. #: ftparchive/multicompress.cc:238
  517. #, c-format
  518. msgid "Internal error, failed to create %s"
  519. msgstr "Error na internal, bigo ang paglikha ng %s"
  520. #: ftparchive/multicompress.cc:289
  521. msgid "Failed to create subprocess IPC"
  522. msgstr "Bigo ang paglikha ng subprocess IPC"
  523. #: ftparchive/multicompress.cc:324
  524. msgid "Failed to exec compressor "
  525. msgstr "Bigo ang pag-exec ng taga-compress"
  526. #: ftparchive/multicompress.cc:363
  527. msgid "decompressor"
  528. msgstr "taga-decompress"
  529. #: ftparchive/multicompress.cc:406
  530. msgid "IO to subprocess/file failed"
  531. msgstr "Bigo ang IO sa subprocess/talaksan"
  532. #: ftparchive/multicompress.cc:458
  533. msgid "Failed to read while computing MD5"
  534. msgstr "Bigo ang pagbasa habang tinutuos ang MD5"
  535. #: ftparchive/multicompress.cc:475
  536. #, c-format
  537. msgid "Problem unlinking %s"
  538. msgstr "Problema sa pag-unlink ng %s"
  539. #: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
  540. #, c-format
  541. msgid "Failed to rename %s to %s"
  542. msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
  543. #: cmdline/apt-get.cc:118
  544. msgid "Y"
  545. msgstr "O"
  546. #: cmdline/apt-get.cc:140 cmdline/apt-get.cc:1517
  547. #, c-format
  548. msgid "Regex compilation error - %s"
  549. msgstr "Error sa pag-compile ng regex - %s"
  550. #: cmdline/apt-get.cc:235
  551. msgid "The following packages have unmet dependencies:"
  552. msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:"
  553. #: cmdline/apt-get.cc:325
  554. #, c-format
  555. msgid "but %s is installed"
  556. msgstr "ngunit ang %s ay nakaluklok"
  557. #: cmdline/apt-get.cc:327
  558. #, c-format
  559. msgid "but %s is to be installed"
  560. msgstr "ngunit ang %s ay iluluklok"
  561. #: cmdline/apt-get.cc:334
  562. msgid "but it is not installable"
  563. msgstr "ngunit hindi ito maaaring iluklok"
  564. #: cmdline/apt-get.cc:336
  565. msgid "but it is a virtual package"
  566. msgstr "ngunit ito ay birtwal na pakete"
  567. #: cmdline/apt-get.cc:339
  568. msgid "but it is not installed"
  569. msgstr "ngunit ito ay hindi nakaluklok"
  570. #: cmdline/apt-get.cc:339
  571. msgid "but it is not going to be installed"
  572. msgstr "ngunit ito ay hindi iluluklok"
  573. #: cmdline/apt-get.cc:344
  574. msgid " or"
  575. msgstr " o"
  576. #: cmdline/apt-get.cc:373
  577. msgid "The following NEW packages will be installed:"
  578. msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
  579. #: cmdline/apt-get.cc:399
  580. msgid "The following packages will be REMOVED:"
  581. msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:"
  582. #: cmdline/apt-get.cc:421
  583. msgid "The following packages have been kept back:"
  584. msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:"
  585. #: cmdline/apt-get.cc:442
  586. msgid "The following packages will be upgraded:"
  587. msgstr "Ang susunod na mga pakete ay iu-upgrade:"
  588. #: cmdline/apt-get.cc:463
  589. msgid "The following packages will be DOWNGRADED:"
  590. msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:"
  591. #: cmdline/apt-get.cc:483
  592. msgid "The following held packages will be changed:"
  593. msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:"
  594. #: cmdline/apt-get.cc:536
  595. #, c-format
  596. msgid "%s (due to %s) "
  597. msgstr "%s (dahil sa %s) "
  598. #: cmdline/apt-get.cc:544
  599. msgid ""
  600. "WARNING: The following essential packages will be removed.\n"
  601. "This should NOT be done unless you know exactly what you are doing!"
  602. msgstr ""
  603. "BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n"
  604. "HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!"
  605. #: cmdline/apt-get.cc:575
  606. #, c-format
  607. msgid "%lu upgraded, %lu newly installed, "
  608. msgstr "%lu nai-upgrade, %lu bagong luklok, "
  609. #: cmdline/apt-get.cc:579
  610. #, c-format
  611. msgid "%lu reinstalled, "
  612. msgstr "%lu iniluklok muli, "
  613. #: cmdline/apt-get.cc:581
  614. #, c-format
  615. msgid "%lu downgraded, "
  616. msgstr "%lu nai-downgrade, "
  617. #: cmdline/apt-get.cc:583
  618. #, c-format
  619. msgid "%lu to remove and %lu not upgraded.\n"
  620. msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n"
  621. #: cmdline/apt-get.cc:587
  622. #, c-format
  623. msgid "%lu not fully installed or removed.\n"
  624. msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n"
  625. #: cmdline/apt-get.cc:647
  626. msgid "Correcting dependencies..."
  627. msgstr "Inaayos ang mga dependensiya..."
  628. #: cmdline/apt-get.cc:650
  629. msgid " failed."
  630. msgstr " ay bigo."
  631. #: cmdline/apt-get.cc:653
  632. msgid "Unable to correct dependencies"
  633. msgstr "Hindi maayos ang mga dependensiya"
  634. #: cmdline/apt-get.cc:656
  635. msgid "Unable to minimize the upgrade set"
  636. msgstr "Hindi mai-minimize ang upgrade set"
  637. #: cmdline/apt-get.cc:658
  638. msgid " Done"
  639. msgstr " Tapos"
  640. #: cmdline/apt-get.cc:662
  641. msgid "You might want to run `apt-get -f install' to correct these."
  642. msgstr "Maaari ninyong patakbuhin ang `apt-get -f install' upang ayusin ito."
  643. #: cmdline/apt-get.cc:665
  644. msgid "Unmet dependencies. Try using -f."
  645. msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f."
  646. #: cmdline/apt-get.cc:687
  647. msgid "WARNING: The following packages cannot be authenticated!"
  648. msgstr ""
  649. "BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!"
  650. #: cmdline/apt-get.cc:691
  651. msgid "Authentication warning overridden.\n"
  652. msgstr "Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n"
  653. #: cmdline/apt-get.cc:698
  654. msgid "Install these packages without verification [y/N]? "
  655. msgstr "Iluklok ang mga paketeng ito na walang beripikasyon [o/H]? "
  656. #: cmdline/apt-get.cc:700
  657. msgid "Some packages could not be authenticated"
  658. msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko"
  659. #: cmdline/apt-get.cc:709 cmdline/apt-get.cc:856
  660. msgid "There are problems and -y was used without --force-yes"
  661. msgstr "May mga problema at -y ay ginamit na walang --force-yes"
  662. #: cmdline/apt-get.cc:753
  663. msgid "Internal error, InstallPackages was called with broken packages!"
  664. msgstr "Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!"
  665. #: cmdline/apt-get.cc:762
  666. msgid "Packages need to be removed but remove is disabled."
  667. msgstr ""
  668. "May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove."
  669. #: cmdline/apt-get.cc:773
  670. msgid "Internal error, Ordering didn't finish"
  671. msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod"
  672. #: cmdline/apt-get.cc:789 cmdline/apt-get.cc:1811 cmdline/apt-get.cc:1844
  673. msgid "Unable to lock the download directory"
  674. msgstr "Hindi maaldaba ang directory ng download"
  675. #: cmdline/apt-get.cc:799 cmdline/apt-get.cc:1892 cmdline/apt-get.cc:2104
  676. #: apt-pkg/cachefile.cc:67
  677. msgid "The list of sources could not be read."
  678. msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)."
  679. #: cmdline/apt-get.cc:814
  680. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  681. msgstr "Nakapagtataka.. Hindi magkatugma ang laki, mag-email sa apt@packages.debian.org"
  682. #: cmdline/apt-get.cc:819
  683. #, c-format
  684. msgid "Need to get %sB/%sB of archives.\n"
  685. msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n"
  686. #: cmdline/apt-get.cc:822
  687. #, c-format
  688. msgid "Need to get %sB of archives.\n"
  689. msgstr "Kailangang kumuha ng %sB ng arkibo.\n"
  690. #: cmdline/apt-get.cc:827
  691. #, c-format
  692. msgid "After unpacking %sB of additional disk space will be used.\n"
  693. msgstr "Matapos magbuklat ay %sB na karagdagang puwang sa disk ay magagamit.\n"
  694. #: cmdline/apt-get.cc:830
  695. #, c-format
  696. msgid "After unpacking %sB disk space will be freed.\n"
  697. msgstr "Matapos magbuklat %sB na puwang sa disk ay mapapalaya.\n"
  698. #: cmdline/apt-get.cc:844 cmdline/apt-get.cc:1958
  699. #, c-format
  700. msgid "Couldn't determine free space in %s"
  701. msgstr "Hindi matantsa ang libreng puwang sa %s"
  702. #: cmdline/apt-get.cc:847
  703. #, c-format
  704. msgid "You don't have enough free space in %s."
  705. msgstr "Kulang kayo ng libreng puwang sa %s."
  706. #: cmdline/apt-get.cc:862 cmdline/apt-get.cc:882
  707. msgid "Trivial Only specified but this is not a trivial operation."
  708. msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial."
  709. #: cmdline/apt-get.cc:864
  710. msgid "Yes, do as I say!"
  711. msgstr "Oo, gawin ang sinasabi ko!"
  712. #: cmdline/apt-get.cc:866
  713. #, c-format
  714. msgid ""
  715. "You are about to do something potentially harmful.\n"
  716. "To continue type in the phrase '%s'\n"
  717. " ?] "
  718. msgstr ""
  719. "Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n"
  720. "Upang magpatuloy, ibigay ang pariralang '%s'\n"
  721. " ?] "
  722. #: cmdline/apt-get.cc:872 cmdline/apt-get.cc:891
  723. msgid "Abort."
  724. msgstr "Abort."
  725. #: cmdline/apt-get.cc:887
  726. msgid "Do you want to continue [Y/n]? "
  727. msgstr "Nais niyo bang magpatuloy [O/h]? "
  728. #: cmdline/apt-get.cc:959 cmdline/apt-get.cc:1367 cmdline/apt-get.cc:2001
  729. #, c-format
  730. msgid "Failed to fetch %s %s\n"
  731. msgstr "Bigo sa pagkuha ng %s %s\n"
  732. #: cmdline/apt-get.cc:977
  733. msgid "Some files failed to download"
  734. msgstr "May mga talaksang hindi nakuha"
  735. #: cmdline/apt-get.cc:978 cmdline/apt-get.cc:2010
  736. msgid "Download complete and in download only mode"
  737. msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang"
  738. #: cmdline/apt-get.cc:984
  739. msgid ""
  740. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  741. "missing?"
  742. msgstr ""
  743. "Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o "
  744. "subukang may --fix-missing?"
  745. #: cmdline/apt-get.cc:988
  746. msgid "--fix-missing and media swapping is not currently supported"
  747. msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado"
  748. #: cmdline/apt-get.cc:993
  749. msgid "Unable to correct missing packages."
  750. msgstr "Hindi maayos ang mga kulang na pakete."
  751. #: cmdline/apt-get.cc:994
  752. msgid "Aborting install."
  753. msgstr "Ina-abort ang pag-instol."
  754. #: cmdline/apt-get.cc:1028
  755. #, c-format
  756. msgid "Note, selecting %s instead of %s\n"
  757. msgstr "Paunawa, pinili ang %s imbes na %s\n"
  758. #: cmdline/apt-get.cc:1038
  759. #, c-format
  760. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  761. msgstr ""
  762. "Linaktawan ang %s, ito'y naka-instol na at hindi nakatakda ang upgrade.\n"
  763. #: cmdline/apt-get.cc:1056
  764. #, c-format
  765. msgid "Package %s is not installed, so not removed\n"
  766. msgstr "Hindi naka-instol ang paketeng %s, kaya't hindi ito tinanggal\n"
  767. #: cmdline/apt-get.cc:1067
  768. #, c-format
  769. msgid "Package %s is a virtual package provided by:\n"
  770. msgstr "Ang paketeng %s ay paketeng birtwal na bigay ng:\n"
  771. #: cmdline/apt-get.cc:1079
  772. msgid " [Installed]"
  773. msgstr " [Naka-instol]"
  774. #: cmdline/apt-get.cc:1084
  775. msgid "You should explicitly select one to install."
  776. msgstr "Dapat ninyong piliin ang isa na instolahin."
  777. #: cmdline/apt-get.cc:1089
  778. #, c-format
  779. msgid ""
  780. "Package %s is not available, but is referred to by another package.\n"
  781. "This may mean that the package is missing, has been obsoleted, or\n"
  782. "is only available from another source\n"
  783. msgstr ""
  784. "Hindi magamit ang %s, ngunit ito'y tinutukoy ng ibang pakete.\n"
  785. "Maaaring nawawala ang pakete, o ito'y laos na, o ito'y makukuha lamang\n"
  786. "sa ibang pinagmulan.\n"
  787. #: cmdline/apt-get.cc:1108
  788. msgid "However the following packages replace it:"
  789. msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:"
  790. #: cmdline/apt-get.cc:1111
  791. #, c-format
  792. msgid "Package %s has no installation candidate"
  793. msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin"
  794. #: cmdline/apt-get.cc:1131
  795. #, c-format
  796. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  797. msgstr "Ang pag-instol muli ng %s ay hindi maaari, hindi ito makuha.\n"
  798. #: cmdline/apt-get.cc:1139
  799. #, c-format
  800. msgid "%s is already the newest version.\n"
  801. msgstr "%s ay pinakabagong bersyon na.\n"
  802. #: cmdline/apt-get.cc:1166
  803. #, c-format
  804. msgid "Release '%s' for '%s' was not found"
  805. msgstr "Release '%s' para sa '%s' ay hindi nahanap"
  806. #: cmdline/apt-get.cc:1168
  807. #, c-format
  808. msgid "Version '%s' for '%s' was not found"
  809. msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap"
  810. #: cmdline/apt-get.cc:1174
  811. #, c-format
  812. msgid "Selected version %s (%s) for %s\n"
  813. msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
  814. #: cmdline/apt-get.cc:1315
  815. msgid "The update command takes no arguments"
  816. msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
  817. #: cmdline/apt-get.cc:1328 cmdline/apt-get.cc:1422
  818. msgid "Unable to lock the list directory"
  819. msgstr "Hindi maaldaba ang directory ng talaan"
  820. #: cmdline/apt-get.cc:1386
  821. msgid ""
  822. "Some index files failed to download, they have been ignored, or old ones "
  823. "used instead."
  824. msgstr ""
  825. "May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang "
  826. "mga luma na lamang."
  827. #: cmdline/apt-get.cc:1405
  828. msgid "Internal error, AllUpgrade broke stuff"
  829. msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade"
  830. #: cmdline/apt-get.cc:1504 cmdline/apt-get.cc:1540
  831. #, c-format
  832. msgid "Couldn't find package %s"
  833. msgstr "Hindi mahanap ang paketeng %s"
  834. #: cmdline/apt-get.cc:1527
  835. #, c-format
  836. msgid "Note, selecting %s for regex '%s'\n"
  837. msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
  838. #: cmdline/apt-get.cc:1557
  839. msgid "You might want to run `apt-get -f install' to correct these:"
  840. msgstr ""
  841. "Maaaring patakbuhin niyo ang `apt-get -f install' upang ayusin ang mga ito:"
  842. #: cmdline/apt-get.cc:1560
  843. msgid ""
  844. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  845. "solution)."
  846. msgstr ""
  847. "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang "
  848. "mga pakete (o magtakda ng solusyon)."
  849. #: cmdline/apt-get.cc:1572
  850. msgid ""
  851. "Some packages could not be installed. This may mean that you have\n"
  852. "requested an impossible situation or if you are using the unstable\n"
  853. "distribution that some required packages have not yet been created\n"
  854. "or been moved out of Incoming."
  855. msgstr ""
  856. "May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n"
  857. "o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n"
  858. "kailangan na hindi pa nalikha o linipat mula sa Incoming."
  859. #: cmdline/apt-get.cc:1580
  860. msgid ""
  861. "Since you only requested a single operation it is extremely likely that\n"
  862. "the package is simply not installable and a bug report against\n"
  863. "that package should be filed."
  864. msgstr ""
  865. "Dahil ang hiniling niyo ay mag-isang operasyon, malamang ay ang pakete ay\n"
  866. "hindi talaga ma-instol at kailangang magpadala ng bug report tungkol sa\n"
  867. "pakete na ito."
  868. #: cmdline/apt-get.cc:1585
  869. msgid "The following information may help to resolve the situation:"
  870. msgstr ""
  871. "Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:"
  872. #: cmdline/apt-get.cc:1588
  873. msgid "Broken packages"
  874. msgstr "Sirang mga pakete"
  875. #: cmdline/apt-get.cc:1614
  876. msgid "The following extra packages will be installed:"
  877. msgstr "Ang mga sumusunod na extra na pakete ay iinstolahin:"
  878. #: cmdline/apt-get.cc:1685
  879. msgid "Suggested packages:"
  880. msgstr "Mga paketeng mungkahi:"
  881. #: cmdline/apt-get.cc:1686
  882. msgid "Recommended packages:"
  883. msgstr "Mga paketeng rekomendado:"
  884. #: cmdline/apt-get.cc:1706
  885. msgid "Calculating upgrade... "
  886. msgstr "Kinakalkula ang upgrade... "
  887. #: cmdline/apt-get.cc:1709 methods/ftp.cc:702 methods/connect.cc:101
  888. msgid "Failed"
  889. msgstr "Bigo"
  890. #: cmdline/apt-get.cc:1714
  891. msgid "Done"
  892. msgstr "Tapos"
  893. #: cmdline/apt-get.cc:1779 cmdline/apt-get.cc:1787
  894. msgid "Internal error, problem resolver broke stuff"
  895. msgstr "Error na internal, may nasira ang problem resolver"
  896. #: cmdline/apt-get.cc:1887
  897. msgid "Must specify at least one package to fetch source for"
  898. msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source"
  899. #: cmdline/apt-get.cc:1914 cmdline/apt-get.cc:2122
  900. #, c-format
  901. msgid "Unable to find a source package for %s"
  902. msgstr "Hindi mahanap ang paketeng source para sa %s"
  903. #: cmdline/apt-get.cc:1961
  904. #, c-format
  905. msgid "You don't have enough free space in %s"
  906. msgstr "Kulang kayo ng libreng puwang sa %s"
  907. #: cmdline/apt-get.cc:1966
  908. #, c-format
  909. msgid "Need to get %sB/%sB of source archives.\n"
  910. msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n"
  911. #: cmdline/apt-get.cc:1969
  912. #, c-format
  913. msgid "Need to get %sB of source archives.\n"
  914. msgstr "Kailangang kumuha ng %sB ng arkibong source.\n"
  915. #: cmdline/apt-get.cc:1975
  916. #, c-format
  917. msgid "Fetch source %s\n"
  918. msgstr "Kunin ang Source %s\n"
  919. #: cmdline/apt-get.cc:2006
  920. msgid "Failed to fetch some archives."
  921. msgstr "Bigo sa pagkuha ng ilang mga arkibo."
  922. #: cmdline/apt-get.cc:2034
  923. #, c-format
  924. msgid "Skipping unpack of already unpacked source in %s\n"
  925. msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n"
  926. #: cmdline/apt-get.cc:2046
  927. #, c-format
  928. msgid "Unpack command '%s' failed.\n"
  929. msgstr "Bigo ang utos ng pagbuklat '%s'.\n"
  930. #: cmdline/apt-get.cc:2047
  931. #, c-format
  932. msgid "Check if the 'dpkg-dev' package is installed.\n"
  933. msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n"
  934. #: cmdline/apt-get.cc:2064
  935. #, c-format
  936. msgid "Build command '%s' failed.\n"
  937. msgstr "Utos na build '%s' ay bigo.\n"
  938. #: cmdline/apt-get.cc:2083
  939. msgid "Child process failed"
  940. msgstr "Bigo ang prosesong anak"
  941. #: cmdline/apt-get.cc:2099
  942. msgid "Must specify at least one package to check builddeps for"
  943. msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps"
  944. #: cmdline/apt-get.cc:2127
  945. #, c-format
  946. msgid "Unable to get build-dependency information for %s"
  947. msgstr "Hindi makuha ang impormasyong build-dependency para sa %s"
  948. #: cmdline/apt-get.cc:2147
  949. #, c-format
  950. msgid "%s has no build depends.\n"
  951. msgstr "Walang build depends ang %s.\n"
  952. #: cmdline/apt-get.cc:2199
  953. #, c-format
  954. msgid ""
  955. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  956. "found"
  957. msgstr ""
  958. "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
  959. "mahanap"
  960. #: cmdline/apt-get.cc:2251
  961. #, c-format
  962. msgid ""
  963. "%s dependency for %s cannot be satisfied because no available versions of "
  964. "package %s can satisfy version requirements"
  965. msgstr ""
  966. "Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon "
  967. "ng paketeng %s na tumutugon sa kinakailangang bersyon"
  968. #: cmdline/apt-get.cc:2286
  969. #, c-format
  970. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  971. msgstr ""
  972. "Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng %"
  973. "s ay bagong-bago pa lamang."
  974. #: cmdline/apt-get.cc:2311
  975. #, c-format
  976. msgid "Failed to satisfy %s dependency for %s: %s"
  977. msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s"
  978. #: cmdline/apt-get.cc:2325
  979. #, c-format
  980. msgid "Build-dependencies for %s could not be satisfied."
  981. msgstr "Hindi mabuo ang build-dependencies para sa %s."
  982. #: cmdline/apt-get.cc:2329
  983. msgid "Failed to process build dependencies"
  984. msgstr "Bigo sa pagproseso ng build dependencies"
  985. #: cmdline/apt-get.cc:2361
  986. msgid "Supported modules:"
  987. msgstr "Suportadong mga Module:"
  988. #: cmdline/apt-get.cc:2402
  989. msgid ""
  990. "Usage: apt-get [options] command\n"
  991. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  992. " apt-get [options] source pkg1 [pkg2 ...]\n"
  993. "\n"
  994. "apt-get is a simple command line interface for downloading and\n"
  995. "installing packages. The most frequently used commands are update\n"
  996. "and install.\n"
  997. "\n"
  998. "Commands:\n"
  999. " update - Retrieve new lists of packages\n"
  1000. " upgrade - Perform an upgrade\n"
  1001. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1002. " remove - Remove packages\n"
  1003. " source - Download source archives\n"
  1004. " build-dep - Configure build-dependencies for source packages\n"
  1005. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1006. " dselect-upgrade - Follow dselect selections\n"
  1007. " clean - Erase downloaded archive files\n"
  1008. " autoclean - Erase old downloaded archive files\n"
  1009. " check - Verify that there are no broken dependencies\n"
  1010. "\n"
  1011. "Options:\n"
  1012. " -h This help text.\n"
  1013. " -q Loggable output - no progress indicator\n"
  1014. " -qq No output except for errors\n"
  1015. " -d Download only - do NOT install or unpack archives\n"
  1016. " -s No-act. Perform ordering simulation\n"
  1017. " -y Assume Yes to all queries and do not prompt\n"
  1018. " -f Attempt to continue if the integrity check fails\n"
  1019. " -m Attempt to continue if archives are unlocatable\n"
  1020. " -u Show a list of upgraded packages as well\n"
  1021. " -b Build the source package after fetching it\n"
  1022. " -V Show verbose version numbers\n"
  1023. " -c=? Read this configuration file\n"
  1024. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1025. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1026. "pages for more information and options.\n"
  1027. " This APT has Super Cow Powers.\n"
  1028. msgstr ""
  1029. "Pag-gamit: apt-get [mga option] utos\n"
  1030. " apt-get [mga option] install|remove pkt1 [pkt2 ...]\n"
  1031. " apt-get [mga option] source pkt1 [pkt2 ...]\n"
  1032. "\n"
  1033. "Ang apt-get ay payak na command line interface para sa pagkuha at\n"
  1034. "pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n"
  1035. "at install.\n"
  1036. "\n"
  1037. "Mga utos:\n"
  1038. " update - Kunin ang bagong listahan ng mga pakete\n"
  1039. " upgrade - Gumawa ng upgrade\n"
  1040. " install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n"
  1041. " remove - Mag-tanggal ng mga pakete\n"
  1042. " source - Kumuha ng arkibong source\n"
  1043. " build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n"
  1044. " dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n"
  1045. " dselect-upgrade - Sundan ang mga pinili sa dselect\n"
  1046. " clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n"
  1047. " autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n"
  1048. " check - Tiyakin na walang mga sirang dependensiya\n"
  1049. "\n"
  1050. "Mga option:\n"
  1051. " -h Itong tulong na ito.\n"
  1052. " -q Output na maaaring itala - walang indikator ng progreso\n"
  1053. " -qq Walang output maliban sa mga error\n"
  1054. " -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n"
  1055. " -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n"
  1056. " -y Assume Yes to all queries and do not prompt\n"
  1057. " -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n"
  1058. " -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n"
  1059. " -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n"
  1060. " -b Ibuo ang paketeng source matapos kunin ito\n"
  1061. " -V Ipakita ng buo ang bilang ng bersyon\n"
  1062. " -c=? Basahin itong talaksang pagkaayos\n"
  1063. " -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
  1064. "Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n"
  1065. "para sa karagdagang impormasyon at mga option.\n"
  1066. " Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n"
  1067. #: cmdline/acqprogress.cc:55
  1068. msgid "Hit "
  1069. msgstr "Tumama "
  1070. #: cmdline/acqprogress.cc:79
  1071. msgid "Get:"
  1072. msgstr "Kunin: "
  1073. #: cmdline/acqprogress.cc:110
  1074. msgid "Ign "
  1075. msgstr "DiPansin "
  1076. #: cmdline/acqprogress.cc:114
  1077. msgid "Err "
  1078. msgstr "Err "
  1079. #: cmdline/acqprogress.cc:135
  1080. #, c-format
  1081. msgid "Fetched %sB in %s (%sB/s)\n"
  1082. msgstr "Nakakuha ng %sB ng %s (%sB/s)\n"
  1083. #: cmdline/acqprogress.cc:225
  1084. #, c-format
  1085. msgid " [Working]"
  1086. msgstr " [May Ginagawa]"
  1087. #: cmdline/acqprogress.cc:271
  1088. #, c-format
  1089. msgid ""
  1090. "Media change: please insert the disc labeled\n"
  1091. " '%s'\n"
  1092. "in the drive '%s' and press enter\n"
  1093. msgstr ""
  1094. "Pagpalit ng Media: Ikasa ang disk na may pangalang\n"
  1095. " '%s'\n"
  1096. "sa drive '%s' at pindutin ang enter\n"
  1097. #: cmdline/apt-sortpkgs.cc:86
  1098. msgid "Unknown package record!"
  1099. msgstr "Di kilalang record ng pakete!"
  1100. #: cmdline/apt-sortpkgs.cc:150
  1101. msgid ""
  1102. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1103. "\n"
  1104. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1105. "to indicate what kind of file it is.\n"
  1106. "\n"
  1107. "Options:\n"
  1108. " -h This help text\n"
  1109. " -s Use source file sorting\n"
  1110. " -c=? Read this configuration file\n"
  1111. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1112. msgstr ""
  1113. "Pag-gamit: apt-sortpkgs [mga option] talaksan1 [talaksan2 ...]\n"
  1114. "\n"
  1115. "Ang apt-sortpkgs ay payak na kagamitan upang makapag-sort ng talaksang "
  1116. "pakete.\n"
  1117. "Ang option -s ay ginagamit upang ipaalam kung anong klaseng talaksan ito.\n"
  1118. "\n"
  1119. "Mga option:\n"
  1120. " -h Itong tulong na ito\n"
  1121. " -s Gamitin ang pag-sort ng talaksang source\n"
  1122. " -c=? Basahin ang talaksang pagkaayos na ito\n"
  1123. " -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
  1124. #: dselect/install:32
  1125. msgid "Bad default setting!"
  1126. msgstr "Maling nakatakda na default!"
  1127. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1128. #: dselect/install:104 dselect/update:45
  1129. msgid "Press enter to continue."
  1130. msgstr "Pindutin ang enter upang magpatuloy."
  1131. #: dselect/install:100
  1132. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1133. msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang"
  1134. #: dselect/install:101
  1135. msgid "packages that were installed. This may result in duplicate errors"
  1136. msgstr "mga paketeng na-instol. Maaaring dumulot ito ng mga error na doble"
  1137. #: dselect/install:102
  1138. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1139. msgstr ""
  1140. "o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang"
  1141. #: dselect/install:103
  1142. msgid ""
  1143. "above this message are important. Please fix them and run [I]nstall again"
  1144. msgstr ""
  1145. "sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin "
  1146. "muli ang [I]nstol."
  1147. #: dselect/update:30
  1148. msgid "Merging available information"
  1149. msgstr "Pinagsasama ang magagamit na impormasyon"
  1150. #: apt-inst/contrib/extracttar.cc:117
  1151. msgid "Failed to create pipes"
  1152. msgstr "Bigo sa paglikha ng mga pipe"
  1153. #: apt-inst/contrib/extracttar.cc:143
  1154. msgid "Failed to exec gzip "
  1155. msgstr "Bigo sa pagtakbo ng gzip "
  1156. #: apt-inst/contrib/extracttar.cc:180 apt-inst/contrib/extracttar.cc:206
  1157. msgid "Corrupted archive"
  1158. msgstr "Sirang arkibo"
  1159. #: apt-inst/contrib/extracttar.cc:195
  1160. msgid "Tar checksum failed, archive corrupted"
  1161. msgstr "Bigo ang checksum ng tar, sira ang arkibo"
  1162. #: apt-inst/contrib/extracttar.cc:298
  1163. #, c-format
  1164. msgid "Unknown TAR header type %u, member %s"
  1165. msgstr "Di kilalang uri ng TAR header %u, miyembrong %s"
  1166. #: apt-inst/contrib/arfile.cc:73
  1167. msgid "Invalid archive signature"
  1168. msgstr "Di tanggap na signature ng arkibo"
  1169. #: apt-inst/contrib/arfile.cc:81
  1170. msgid "Error reading archive member header"
  1171. msgstr "Error sa pagbasa ng header ng miyembro ng arkibo"
  1172. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1173. msgid "Invalid archive member header"
  1174. msgstr "Di tanggap na header ng miyembro ng arkibo"
  1175. #: apt-inst/contrib/arfile.cc:131
  1176. msgid "Archive is too short"
  1177. msgstr "Bitin ang arkibo. Sobrang iksi."
  1178. #: apt-inst/contrib/arfile.cc:135
  1179. msgid "Failed to read the archive headers"
  1180. msgstr "Bigo ang pagbasa ng header ng arkibo"
  1181. #: apt-inst/filelist.cc:384
  1182. msgid "DropNode called on still linked node"
  1183. msgstr "Tinawagan ang DropNode sa naka-link pa na node"
  1184. #: apt-inst/filelist.cc:416
  1185. msgid "Failed to locate the hash element!"
  1186. msgstr "Bigo sa paghanap ng elemento ng hash!"
  1187. #: apt-inst/filelist.cc:463
  1188. msgid "Failed to allocate diversion"
  1189. msgstr "Bigo ang pagreserba ng diversion"
  1190. #: apt-inst/filelist.cc:468
  1191. msgid "Internal error in AddDiversion"
  1192. msgstr "Internal error sa AddDiversion"
  1193. #: apt-inst/filelist.cc:481
  1194. #, c-format
  1195. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1196. msgstr "Sinusubukang patungan ang diversion, %s -> %s at %s/%s"
  1197. #: apt-inst/filelist.cc:510
  1198. #, c-format
  1199. msgid "Double add of diversion %s -> %s"
  1200. msgstr "Dobleng pagdagdag ng diversion %s -> %s"
  1201. #: apt-inst/filelist.cc:553
  1202. #, c-format
  1203. msgid "Duplicate conf file %s/%s"
  1204. msgstr "Nadobleng talaksang conf %s/%s"
  1205. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1206. #, c-format
  1207. msgid "Failed to write file %s"
  1208. msgstr "Bigo sa pagsulat ng talaksang %s"
  1209. #: apt-inst/dirstream.cc:80 apt-inst/dirstream.cc:88
  1210. #, c-format
  1211. msgid "Failed to close file %s"
  1212. msgstr "Bigo sa pagsara ng talaksang %s"
  1213. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1214. #, c-format
  1215. msgid "The path %s is too long"
  1216. msgstr "Sobrang haba ang path na %s"
  1217. #: apt-inst/extract.cc:127
  1218. #, c-format
  1219. msgid "Unpacking %s more than once"
  1220. msgstr "Binubuklat ang %s ng labis sa isang beses"
  1221. #: apt-inst/extract.cc:137
  1222. #, c-format
  1223. msgid "The directory %s is diverted"
  1224. msgstr "Ang directory %s ay divertado"
  1225. #: apt-inst/extract.cc:147
  1226. #, c-format
  1227. msgid "The package is trying to write to the diversion target %s/%s"
  1228. msgstr "Ang pakete ay sumusubok na magsulat sa target na diversion %s/%s"
  1229. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1230. msgid "The diversion path is too long"
  1231. msgstr "Sobrang haba ng path na diversion"
  1232. #: apt-inst/extract.cc:243
  1233. #, c-format
  1234. msgid "The directory %s is being replaced by a non-directory"
  1235. msgstr "Ang directory %s ay papalitan ng hindi-directory"
  1236. #: apt-inst/extract.cc:283
  1237. msgid "Failed to locate node in its hash bucket"
  1238. msgstr "Bigo ang paghanap ng node sa kanyang hash bucket"
  1239. #: apt-inst/extract.cc:287
  1240. msgid "The path is too long"
  1241. msgstr "Sobrang haba ng path"
  1242. #: apt-inst/extract.cc:417
  1243. #, c-format
  1244. msgid "Overwrite package match with no version for %s"
  1245. msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s"
  1246. #: apt-inst/extract.cc:434
  1247. #, c-format
  1248. msgid "File %s/%s overwrites the one in the package %s"
  1249. msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s"
  1250. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:750
  1251. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/acquire.cc:417 apt-pkg/clean.cc:38
  1252. #, c-format
  1253. msgid "Unable to read %s"
  1254. msgstr "Hindi mabasa ang %s"
  1255. #: apt-inst/extract.cc:494
  1256. #, c-format
  1257. msgid "Unable to stat %s"
  1258. msgstr "Hindi ma-stat ang %s"
  1259. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1260. #, c-format
  1261. msgid "Failed to remove %s"
  1262. msgstr "Bigo sa pagtanggal ng %s"
  1263. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1264. #, c-format
  1265. msgid "Unable to create %s"
  1266. msgstr "Hindi malikha ang %s"
  1267. #: apt-inst/deb/dpkgdb.cc:118
  1268. #, c-format
  1269. msgid "Failed to stat %sinfo"
  1270. msgstr "Bigo sa pag-stat ng %sinfo"
  1271. #: apt-inst/deb/dpkgdb.cc:123
  1272. msgid "The info and temp directories need to be on the same filesystem"
  1273. msgstr "Ang info at temp directory ay kailangang nasa parehong filesystem"
  1274. #. Build the status cache
  1275. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:643
  1276. #: apt-pkg/pkgcachegen.cc:712 apt-pkg/pkgcachegen.cc:717
  1277. #: apt-pkg/pkgcachegen.cc:840
  1278. msgid "Reading package lists"
  1279. msgstr "Binabasa ang Listahan ng mga Pakete"
  1280. #: apt-inst/deb/dpkgdb.cc:180
  1281. #, c-format
  1282. msgid "Failed to change to the admin dir %sinfo"
  1283. msgstr "Bigo sa paglipat sa admin dir %sinfo"
  1284. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1285. #: apt-inst/deb/dpkgdb.cc:448
  1286. msgid "Internal error getting a package name"
  1287. msgstr "Internal error sa pagkuha ng pangalan ng pakete"
  1288. #: apt-inst/deb/dpkgdb.cc:205
  1289. msgid "Reading file listing"
  1290. msgstr "Binabasa ang Talaksang Listahan"
  1291. #: apt-inst/deb/dpkgdb.cc:216
  1292. #, c-format
  1293. msgid ""
  1294. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1295. "then make it empty and immediately re-install the same version of the "
  1296. "package!"
  1297. msgstr ""
  1298. "Bigo sa pagbukas ng talaksang listahan '%sinfo/%s'. Kung hindi niyo maibalik "
  1299. "ang talaksang ito, gawin itong walang laman at muling instolahin kaagad ang "
  1300. "parehong bersyon ng pakete!"
  1301. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1302. #, c-format
  1303. msgid "Failed reading the list file %sinfo/%s"
  1304. msgstr "Bigo sa pagbasa ng talaksang listahan %sinfo/%s"
  1305. #: apt-inst/deb/dpkgdb.cc:266
  1306. msgid "Internal error getting a node"
  1307. msgstr "Internal error sa pagkuha ng Node"
  1308. #: apt-inst/deb/dpkgdb.cc:309
  1309. #, c-format
  1310. msgid "Failed to open the diversions file %sdiversions"
  1311. msgstr "Bigo sa pagbukas ng talaksang diversions %sdiversions"
  1312. #: apt-inst/deb/dpkgdb.cc:324
  1313. msgid "The diversion file is corrupted"
  1314. msgstr "Ang talaksang diversion ay sira"
  1315. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1316. #: apt-inst/deb/dpkgdb.cc:341
  1317. #, c-format
  1318. msgid "Invalid line in the diversion file: %s"
  1319. msgstr "Di tanggap na linya sa talaksang diversion: %s"
  1320. #: apt-inst/deb/dpkgdb.cc:362
  1321. msgid "Internal error adding a diversion"
  1322. msgstr "Internal error sa pagdagdag ng diversion"
  1323. #: apt-inst/deb/dpkgdb.cc:383
  1324. msgid "The pkg cache must be initialized first"
  1325. msgstr "Ang cache ng pkg ay dapat ma-initialize muna"
  1326. #: apt-inst/deb/dpkgdb.cc:386
  1327. msgid "Reading file list"
  1328. msgstr "Binabasa ang Talaksang Listahan"
  1329. #: apt-inst/deb/dpkgdb.cc:443
  1330. #, c-format
  1331. msgid "Failed to find a Package: header, offset %lu"
  1332. msgstr "Bigo sa paghanap ng Pakete: Header, offset %lu"
  1333. #: apt-inst/deb/dpkgdb.cc:465
  1334. #, c-format
  1335. msgid "Bad ConfFile section in the status file. Offset %lu"
  1336. msgstr "Maling ConfFile section sa talaksang status. Offset %lu"
  1337. #: apt-inst/deb/dpkgdb.cc:470
  1338. #, c-format
  1339. msgid "Error parsing MD5. Offset %lu"
  1340. msgstr "Error sa pag-parse ng MD5. Offset %lu"
  1341. #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  1342. #, c-format
  1343. msgid "This is not a valid DEB archive, missing '%s' member"
  1344. msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'"
  1345. #: apt-inst/deb/debfile.cc:52
  1346. #, c-format
  1347. msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
  1348. msgstr ""
  1349. "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s' o '%s'"
  1350. #: apt-inst/deb/debfile.cc:112
  1351. #, c-format
  1352. msgid "Couldn't change to %s"
  1353. msgstr "Hindi makalipat sa %s"
  1354. #: apt-inst/deb/debfile.cc:138
  1355. msgid "Internal error, could not locate member"
  1356. msgstr "Internal error, hindi mahanap ang miyembro"
  1357. #: apt-inst/deb/debfile.cc:171
  1358. msgid "Failed to locate a valid control file"
  1359. msgstr "Bigo sa paghanap ng tanggap na talaksang control"
  1360. #: apt-inst/deb/debfile.cc:256
  1361. msgid "Unparsable control file"
  1362. msgstr "Di maintindihang talaksang control"
  1363. #: methods/cdrom.cc:114
  1364. #, c-format
  1365. msgid "Unable to read the cdrom database %s"
  1366. msgstr "Hindi mabasa ang database ng cdrom %s"
  1367. #: methods/cdrom.cc:123
  1368. msgid ""
  1369. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1370. "cannot be used to add new CD-ROMs"
  1371. msgstr ""
  1372. "Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi "
  1373. "maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD"
  1374. #: methods/cdrom.cc:131
  1375. msgid "Wrong CD-ROM"
  1376. msgstr "Maling CD"
  1377. #: methods/cdrom.cc:164
  1378. #, c-format
  1379. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1380. msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito."
  1381. #: methods/cdrom.cc:169
  1382. msgid "Disk not found."
  1383. msgstr "Hindi nahanap ang Disk."
  1384. #: methods/cdrom.cc:177 methods/file.cc:79 methods/rsh.cc:264
  1385. msgid "File not found"
  1386. msgstr "Hindi Nahanap ang Talaksan"
  1387. #: methods/copy.cc:42 methods/gpgv.cc:265 methods/gzip.cc:133
  1388. #: methods/gzip.cc:142
  1389. msgid "Failed to stat"
  1390. msgstr "Bigo ang pag-stat"
  1391. #: methods/copy.cc:79 methods/gpgv.cc:262 methods/gzip.cc:139
  1392. msgid "Failed to set modification time"
  1393. msgstr "Bigo ang pagtakda ng oras ng pagbago"
  1394. #: methods/file.cc:44
  1395. msgid "Invalid URI, local URIS must not start with //"
  1396. msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //"
  1397. #. Login must be before getpeername otherwise dante won't work.
  1398. #: methods/ftp.cc:162
  1399. msgid "Logging in"
  1400. msgstr "Pumapasok"
  1401. #: methods/ftp.cc:168
  1402. msgid "Unable to determine the peer name"
  1403. msgstr "Hindi malaman ang pangalan ng peer"
  1404. #: methods/ftp.cc:173
  1405. msgid "Unable to determine the local name"
  1406. msgstr "Hindi malaman ang pangalang lokal"
  1407. #: methods/ftp.cc:204 methods/ftp.cc:232
  1408. #, c-format
  1409. msgid "The server refused the connection and said: %s"
  1410. msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s"
  1411. #: methods/ftp.cc:210
  1412. #, c-format
  1413. msgid "USER failed, server said: %s"
  1414. msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s"
  1415. #: methods/ftp.cc:217
  1416. #, c-format
  1417. msgid "PASS failed, server said: %s"
  1418. msgstr "Bigo ang PASS, sabi ng server ay: %s"
  1419. #: methods/ftp.cc:237
  1420. msgid ""
  1421. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1422. "is empty."
  1423. msgstr ""
  1424. "May tinakdang katuwang na server ngunit walang login script, walang laman "
  1425. "ang Acquire::ftp::ProxyLogin."
  1426. #: methods/ftp.cc:265
  1427. #, c-format
  1428. msgid "Login script command '%s' failed, server said: %s"
  1429. msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s"
  1430. #: methods/ftp.cc:291
  1431. #, c-format
  1432. msgid "TYPE failed, server said: %s"
  1433. msgstr "Bigo ang TYPE, sabi ng server ay: %s"
  1434. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1435. msgid "Connection timeout"
  1436. msgstr "Lumipas ang koneksyon"
  1437. #: methods/ftp.cc:335
  1438. msgid "Server closed the connection"
  1439. msgstr "Sinarhan ng server ang koneksyon"
  1440. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
  1441. msgid "Read error"
  1442. msgstr "Error sa pagbasa"
  1443. #: methods/ftp.cc:345 methods/rsh.cc:197
  1444. msgid "A response overflowed the buffer."
  1445. msgstr "May sagot na bumubo sa buffer."
  1446. #: methods/ftp.cc:362 methods/ftp.cc:374
  1447. msgid "Protocol corruption"
  1448. msgstr "Sira ang protocol"
  1449. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
  1450. msgid "Write error"
  1451. msgstr "Error sa pagsulat"
  1452. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1453. msgid "Could not create a socket"
  1454. msgstr "Hindi maka-likha ng socket"
  1455. #: methods/ftp.cc:698
  1456. msgid "Could not connect data socket, connection timed out"
  1457. msgstr "Hindi maka-konek sa socket ng datos, nag-time-out ang koneksyon"
  1458. #: methods/ftp.cc:704
  1459. msgid "Could not connect passive socket."
  1460. msgstr "Hindi maka-konek sa socket na passive."
  1461. #: methods/ftp.cc:722
  1462. msgid "getaddrinfo was unable to get a listening socket"
  1463. msgstr "di makakuha ang getaddrinfo ng socket na nakikinig"
  1464. #: methods/ftp.cc:736
  1465. msgid "Could not bind a socket"
  1466. msgstr "Hindi maka-bind ng socket"
  1467. #: methods/ftp.cc:740
  1468. msgid "Could not listen on the socket"
  1469. msgstr "Hindi makarinig sa socket"
  1470. #: methods/ftp.cc:747
  1471. msgid "Could not determine the socket's name"
  1472. msgstr "Hindi malaman ang pangalan ng socket"
  1473. #: methods/ftp.cc:779
  1474. msgid "Unable to send PORT command"
  1475. msgstr "Hindi makapagpadala ng utos na PORT"
  1476. #: methods/ftp.cc:789
  1477. #, c-format
  1478. msgid "Unknown address family %u (AF_*)"
  1479. msgstr "Di kilalang pamilya ng address %u (AF_*)"
  1480. #: methods/ftp.cc:798
  1481. #, c-format
  1482. msgid "EPRT failed, server said: %s"
  1483. msgstr "Bigo ang EPRT, sabi ng server ay: %s"
  1484. #: methods/ftp.cc:818
  1485. msgid "Data socket connect timed out"
  1486. msgstr "Nag-timeout ang socket ng datos"
  1487. #: methods/ftp.cc:825
  1488. msgid "Unable to accept connection"
  1489. msgstr "Hindi makatanggap ng koneksyon"
  1490. #: methods/ftp.cc:864 methods/http.cc:920 methods/rsh.cc:303
  1491. msgid "Problem hashing file"
  1492. msgstr "Problema sa pag-hash ng talaksan"
  1493. #: methods/ftp.cc:877
  1494. #, c-format
  1495. msgid "Unable to fetch file, server said '%s'"
  1496. msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'"
  1497. #: methods/ftp.cc:892 methods/rsh.cc:322
  1498. msgid "Data socket timed out"
  1499. msgstr "Nag-timeout ang socket ng datos"
  1500. #: methods/ftp.cc:922
  1501. #, c-format
  1502. msgid "Data transfer failed, server said '%s'"
  1503. msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'"
  1504. #. Get the files information
  1505. #: methods/ftp.cc:997
  1506. msgid "Query"
  1507. msgstr "Query"
  1508. #: methods/ftp.cc:1106
  1509. msgid "Unable to invoke "
  1510. msgstr "Hindi ma-invoke "
  1511. #: methods/connect.cc:64
  1512. #, c-format
  1513. msgid "Connecting to %s (%s)"
  1514. msgstr "Kumokonek sa %s (%s)"
  1515. #: methods/connect.cc:71
  1516. #, c-format
  1517. msgid "[IP: %s %s]"
  1518. msgstr "[IP: %s %s]"
  1519. #: methods/connect.cc:80
  1520. #, c-format
  1521. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1522. msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)"
  1523. #: methods/connect.cc:86
  1524. #, c-format
  1525. msgid "Cannot initiate the connection to %s:%s (%s)."
  1526. msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)."
  1527. #: methods/connect.cc:93
  1528. #, c-format
  1529. msgid "Could not connect to %s:%s (%s), connection timed out"
  1530. msgstr "Hindi maka-konek sa %s:%s (%s), nag-timeout ang koneksyon"
  1531. #: methods/connect.cc:106
  1532. #, c-format
  1533. msgid "Could not connect to %s:%s (%s)."
  1534. msgstr "Hindi maka-konek sa %s:%s (%s)."
  1535. #. We say this mainly because the pause here is for the
  1536. #. ssh connection that is still going
  1537. #: methods/connect.cc:134 methods/rsh.cc:425
  1538. #, c-format
  1539. msgid "Connecting to %s"
  1540. msgstr "Kumokonek sa %s"
  1541. #: methods/connect.cc:165
  1542. #, c-format
  1543. msgid "Could not resolve '%s'"
  1544. msgstr "Hindi maresolba ang '%s'"
  1545. #: methods/connect.cc:171
  1546. #, c-format
  1547. msgid "Temporary failure resolving '%s'"
  1548. msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'"
  1549. #: methods/connect.cc:174
  1550. #, c-format
  1551. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1552. msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)"
  1553. #: methods/connect.cc:221
  1554. #, c-format
  1555. msgid "Unable to connect to %s %s:"
  1556. msgstr "Hindi maka-konek sa %s %s:"
  1557. #: methods/gpgv.cc:92
  1558. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1559. msgstr "E: Sobrang haba ng talaan ng argumento mula sa Acquire::gpgv::Options. Lalabas."
  1560. #: methods/gpgv.cc:191
  1561. msgid ""
  1562. "Internal error: Good signature, but could not determine key fingerprint?!"
  1563. msgstr "Error na internal: Tanggap na lagda, ngunit hindi malaman ang key fingerprint?!"
  1564. #: methods/gpgv.cc:196
  1565. msgid "At least one invalid signature was encountered."
  1566. msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro."
  1567. #. FIXME String concatenation considered harmful.
  1568. #: methods/gpgv.cc:201
  1569. msgid "Could not execute "
  1570. msgstr "Hindi ma-execute ang "
  1571. #: methods/gpgv.cc:202
  1572. msgid " to verify signature (is gnupg installed?)"
  1573. msgstr " upang maberipika ang lagda (nakaluklok ba ang gnupg?)"
  1574. #: methods/gpgv.cc:206
  1575. msgid "Unknown error executing gpgv"
  1576. msgstr "Hindi kilalang error sa pag-execute ng gpgv"
  1577. #: methods/gpgv.cc:237
  1578. msgid "The following signatures were invalid:\n"
  1579. msgstr "Ang sumusunod na mga lagda ay imbalido:\n"
  1580. #: methods/gpgv.cc:244
  1581. msgid ""
  1582. "The following signatures couldn't be verified because the public key is not "
  1583. "available:\n"
  1584. msgstr ""
  1585. "Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi "
  1586. "available:\n"
  1587. #: methods/gzip.cc:57
  1588. #, c-format
  1589. msgid "Couldn't open pipe for %s"
  1590. msgstr "Hindi makapag-bukas ng pipe para sa %s"
  1591. #: methods/gzip.cc:102
  1592. #, c-format
  1593. msgid "Read error from %s process"
  1594. msgstr "Error sa pagbasa mula sa prosesong %s"
  1595. #: methods/http.cc:344
  1596. msgid "Waiting for headers"
  1597. msgstr "Naghihintay ng mga header"
  1598. #: methods/http.cc:490
  1599. #, c-format
  1600. msgid "Got a single header line over %u chars"
  1601. msgstr "Nakatanggap ng isang linyang header mula %u na mga karakter"
  1602. #: methods/http.cc:498
  1603. msgid "Bad header line"
  1604. msgstr "Maling linyang header"
  1605. #: methods/http.cc:517 methods/http.cc:524
  1606. msgid "The HTTP server sent an invalid reply header"
  1607. msgstr "Nagpadala ang HTTP server ng di tanggap na reply header"
  1608. #: methods/http.cc:553
  1609. msgid "The HTTP server sent an invalid Content-Length header"
  1610. msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header"
  1611. #: methods/http.cc:568
  1612. msgid "The HTTP server sent an invalid Content-Range header"
  1613. msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header"
  1614. #: methods/http.cc:570
  1615. msgid "This HTTP server has broken range support"
  1616. msgstr "Sira ang range support ng HTTP server na ito"
  1617. #: methods/http.cc:594
  1618. msgid "Unknown date format"
  1619. msgstr "Di kilalang anyo ng petsa"
  1620. #: methods/http.cc:741
  1621. msgid "Select failed"
  1622. msgstr "Bigo ang pagpili"
  1623. #: methods/http.cc:746
  1624. msgid "Connection timed out"
  1625. msgstr "Nag-timeout ang koneksyon"
  1626. #: methods/http.cc:769
  1627. msgid "Error writing to output file"
  1628. msgstr "Error sa pagsulat ng talaksang output"
  1629. #: methods/http.cc:797
  1630. msgid "Error writing to file"
  1631. msgstr "Error sa pagsulat sa talaksan"
  1632. #: methods/http.cc:822
  1633. msgid "Error writing to the file"
  1634. msgstr "Error sa pagsusulat sa talaksan"
  1635. #: methods/http.cc:836
  1636. msgid "Error reading from server. Remote end closed connection"
  1637. msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
  1638. #: methods/http.cc:838
  1639. msgid "Error reading from server"
  1640. msgstr "Error sa pagbasa mula sa server"
  1641. #: methods/http.cc:1069
  1642. msgid "Bad header data"
  1643. msgstr "Maling datos sa header"
  1644. #: methods/http.cc:1086
  1645. msgid "Connection failed"
  1646. msgstr "Bigo ang koneksyon"
  1647. #: methods/http.cc:1177
  1648. msgid "Internal error"
  1649. msgstr "Internal na error"
  1650. #: apt-pkg/contrib/mmap.cc:82
  1651. msgid "Can't mmap an empty file"
  1652. msgstr "Hindi mai-mmap ang talaksang walang laman"
  1653. #: apt-pkg/contrib/mmap.cc:87
  1654. #, c-format
  1655. msgid "Couldn't make mmap of %lu bytes"
  1656. msgstr "Hindi makagawa ng mmap ng %lu na byte"
  1657. #: apt-pkg/contrib/strutl.cc:941
  1658. #, c-format
  1659. msgid "Selection %s not found"
  1660. msgstr "Piniling %s ay hindi nahanap"
  1661. #: apt-pkg/contrib/configuration.cc:436
  1662. #, c-format
  1663. msgid "Unrecognized type abbreviation: '%c'"
  1664. msgstr "Hindi kilalang katagang uri: '%c'"
  1665. #: apt-pkg/contrib/configuration.cc:494
  1666. #, c-format
  1667. msgid "Opening configuration file %s"
  1668. msgstr "Binubuksan ang talaksang pagsasaayos %s"
  1669. #: apt-pkg/contrib/configuration.cc:512
  1670. #, c-format
  1671. msgid "Line %d too long (max %d)"
  1672. msgstr "Labis ang haba ng linyang %d (max %d)"
  1673. #: apt-pkg/contrib/configuration.cc:608
  1674. #, c-format
  1675. msgid "Syntax error %s:%u: Block starts with no name."
  1676. msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan."
  1677. #: apt-pkg/contrib/configuration.cc:627
  1678. #, c-format
  1679. msgid "Syntax error %s:%u: Malformed tag"
  1680. msgstr "Syntax error %s:%u: Maling anyo ng Tag"
  1681. #: apt-pkg/contrib/configuration.cc:644
  1682. #, c-format
  1683. msgid "Syntax error %s:%u: Extra junk after value"
  1684. msgstr "Syntax error %s:%u: May basura matapos ng halaga"
  1685. #: apt-pkg/contrib/configuration.cc:684
  1686. #, c-format
  1687. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1688. msgstr ""
  1689. "Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
  1690. #: apt-pkg/contrib/configuration.cc:691
  1691. #, c-format
  1692. msgid "Syntax error %s:%u: Too many nested includes"
  1693. msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include"
  1694. #: apt-pkg/contrib/configuration.cc:695 apt-pkg/contrib/configuration.cc:700
  1695. #, c-format
  1696. msgid "Syntax error %s:%u: Included from here"
  1697. msgstr "Syntax error %s:%u: Sinama mula dito"
  1698. #: apt-pkg/contrib/configuration.cc:704
  1699. #, c-format
  1700. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1701. msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'"
  1702. #: apt-pkg/contrib/configuration.cc:738
  1703. #, c-format
  1704. msgid "Syntax error %s:%u: Extra junk at end of file"
  1705. msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan"
  1706. #: apt-pkg/contrib/progress.cc:154
  1707. #, c-format
  1708. msgid "%c%s... Error!"
  1709. msgstr "%c%s... Error!"
  1710. #: apt-pkg/contrib/progress.cc:156
  1711. #, c-format
  1712. msgid "%c%s... Done"
  1713. msgstr "%c%s... Tapos"
  1714. #: apt-pkg/contrib/cmndline.cc:80
  1715. #, c-format
  1716. msgid "Command line option '%c' [from %s] is not known."
  1717. msgstr "Option sa command line '%c' [mula %s] ay di kilala."
  1718. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1719. #: apt-pkg/contrib/cmndline.cc:122
  1720. #, c-format
  1721. msgid "Command line option %s is not understood"
  1722. msgstr "Option sa command line %s ay di naintindihan."
  1723. #: apt-pkg/contrib/cmndline.cc:127
  1724. #, c-format
  1725. msgid "Command line option %s is not boolean"
  1726. msgstr "Option sa command line %s ay hindi boolean"
  1727. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1728. #, c-format
  1729. msgid "Option %s requires an argument."
  1730. msgstr "Option %s ay nangangailangan ng argumento"
  1731. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1732. #, c-format
  1733. msgid "Option %s: Configuration item specification must have an =<val>."
  1734. msgstr ""
  1735. "Option %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng "
  1736. "=<halaga>."
  1737. #: apt-pkg/contrib/cmndline.cc:237
  1738. #, c-format
  1739. msgid "Option %s requires an integer argument, not '%s'"
  1740. msgstr "Option %s ay nangangailangan ng argumentong integer, hindi '%s'"
  1741. #: apt-pkg/contrib/cmndline.cc:268
  1742. #, c-format
  1743. msgid "Option '%s' is too long"
  1744. msgstr "Option '%s' ay labis ang haba"
  1745. #: apt-pkg/contrib/cmndline.cc:301
  1746. #, c-format
  1747. msgid "Sense %s is not understood, try true or false."
  1748. msgstr "Hindi naintindihan ang %s, subukan ang true o false."
  1749. #: apt-pkg/contrib/cmndline.cc:351
  1750. #, c-format
  1751. msgid "Invalid operation %s"
  1752. msgstr "Di tanggap na operasyon %s"
  1753. #: apt-pkg/contrib/cdromutl.cc:55
  1754. #, c-format
  1755. msgid "Unable to stat the mount point %s"
  1756. msgstr "Di mai-stat ang mount point %s"
  1757. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:423 apt-pkg/clean.cc:44
  1758. #, c-format
  1759. msgid "Unable to change to %s"
  1760. msgstr "Di makalipat sa %s"
  1761. #: apt-pkg/contrib/cdromutl.cc:190
  1762. msgid "Failed to stat the cdrom"
  1763. msgstr "Bigo sa pag-stat ng cdrom"
  1764. #: apt-pkg/contrib/fileutl.cc:82
  1765. #, c-format
  1766. msgid "Not using locking for read only lock file %s"
  1767. msgstr ""
  1768. "Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s"
  1769. #: apt-pkg/contrib/fileutl.cc:87
  1770. #, c-format
  1771. msgid "Could not open lock file %s"
  1772. msgstr "Hindi mabuksan ang talaksang aldaba %s"
  1773. #: apt-pkg/contrib/fileutl.cc:105
  1774. #, c-format
  1775. msgid "Not using locking for nfs mounted lock file %s"
  1776. msgstr ""
  1777. "Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa nfs"
  1778. #: apt-pkg/contrib/fileutl.cc:109
  1779. #, c-format
  1780. msgid "Could not get lock %s"
  1781. msgstr "hindi makuha ang aldaba %s"
  1782. #: apt-pkg/contrib/fileutl.cc:377
  1783. #, c-format
  1784. msgid "Waited for %s but it wasn't there"
  1785. msgstr "Naghintay, para sa %s ngunit wala nito doon"
  1786. #: apt-pkg/contrib/fileutl.cc:387
  1787. #, c-format
  1788. msgid "Sub-process %s received a segmentation fault."
  1789. msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
  1790. #: apt-pkg/contrib/fileutl.cc:390
  1791. #, c-format
  1792. msgid "Sub-process %s returned an error code (%u)"
  1793. msgstr "Naghudyat ang sub-process %s ng error code (%u)"
  1794. #: apt-pkg/contrib/fileutl.cc:392
  1795. #, c-format
  1796. msgid "Sub-process %s exited unexpectedly"
  1797. msgstr "Ang sub-process %s ay lumabas ng di inaasahan"
  1798. #: apt-pkg/contrib/fileutl.cc:436
  1799. #, c-format
  1800. msgid "Could not open file %s"
  1801. msgstr "Hindi mabuksan ang talaksang %s"
  1802. #: apt-pkg/contrib/fileutl.cc:492
  1803. #, c-format
  1804. msgid "read, still have %lu to read but none left"
  1805. msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
  1806. #: apt-pkg/contrib/fileutl.cc:522
  1807. #, c-format
  1808. msgid "write, still have %lu to write but couldn't"
  1809. msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
  1810. #: apt-pkg/contrib/fileutl.cc:597
  1811. msgid "Problem closing the file"
  1812. msgstr "Problema sa pagsara ng talaksan"
  1813. #: apt-pkg/contrib/fileutl.cc:603
  1814. msgid "Problem unlinking the file"
  1815. msgstr "Problema sa pag-unlink ng talaksan"
  1816. #: apt-pkg/contrib/fileutl.cc:614
  1817. msgid "Problem syncing the file"
  1818. msgstr "Problema sa pag-sync ng talaksan"
  1819. #: apt-pkg/pkgcache.cc:126
  1820. msgid "Empty package cache"
  1821. msgstr "Walang laman ang cache ng pakete"
  1822. #: apt-pkg/pkgcache.cc:132
  1823. msgid "The package cache file is corrupted"
  1824. msgstr "Sira ang talaksan ng cache ng pakete"
  1825. #: apt-pkg/pkgcache.cc:137
  1826. msgid "The package cache file is an incompatible version"
  1827. msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon"
  1828. #: apt-pkg/pkgcache.cc:142
  1829. #, c-format
  1830. msgid "This APT does not support the versioning system '%s'"
  1831. msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'"
  1832. #: apt-pkg/pkgcache.cc:147
  1833. msgid "The package cache was built for a different architecture"
  1834. msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura"
  1835. #: apt-pkg/pkgcache.cc:218
  1836. msgid "Depends"
  1837. msgstr "Dependensiya"
  1838. #: apt-pkg/pkgcache.cc:218
  1839. msgid "PreDepends"
  1840. msgstr "PreDepends"
  1841. #: apt-pkg/pkgcache.cc:218
  1842. msgid "Suggests"
  1843. msgstr "Mungkahi"
  1844. #: apt-pkg/pkgcache.cc:219
  1845. msgid "Recommends"
  1846. msgstr "Rekomendado"
  1847. #: apt-pkg/pkgcache.cc:219
  1848. msgid "Conflicts"
  1849. msgstr "Conflict"
  1850. #: apt-pkg/pkgcache.cc:219
  1851. msgid "Replaces"
  1852. msgstr "Pumapalit"
  1853. #: apt-pkg/pkgcache.cc:220
  1854. msgid "Obsoletes"
  1855. msgstr "Linalaos"
  1856. #: apt-pkg/pkgcache.cc:231
  1857. msgid "important"
  1858. msgstr "importante"
  1859. #: apt-pkg/pkgcache.cc:231
  1860. msgid "required"
  1861. msgstr "kailangan"
  1862. #: apt-pkg/pkgcache.cc:231
  1863. msgid "standard"
  1864. msgstr "standard"
  1865. #: apt-pkg/pkgcache.cc:232
  1866. msgid "optional"
  1867. msgstr "optional"
  1868. #: apt-pkg/pkgcache.cc:232
  1869. msgid "extra"
  1870. msgstr "extra"
  1871. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1872. msgid "Building dependency tree"
  1873. msgstr "Ginagawa ang puno ng mga dependensiya"
  1874. #: apt-pkg/depcache.cc:61
  1875. msgid "Candidate versions"
  1876. msgstr "Bersyong Kandidato"
  1877. #: apt-pkg/depcache.cc:90
  1878. msgid "Dependency generation"
  1879. msgstr "Pagbuo ng Dependensiya"
  1880. #: apt-pkg/tagfile.cc:73
  1881. #, c-format
  1882. msgid "Unable to parse package file %s (1)"
  1883. msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
  1884. #: apt-pkg/tagfile.cc:160
  1885. #, c-format
  1886. msgid "Unable to parse package file %s (2)"
  1887. msgstr "Hindi ma-parse ang talaksang pakete %s (2)"
  1888. #: apt-pkg/sourcelist.cc:87
  1889. #, c-format
  1890. msgid "Malformed line %lu in source list %s (URI)"
  1891. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)"
  1892. #: apt-pkg/sourcelist.cc:89
  1893. #, c-format
  1894. msgid "Malformed line %lu in source list %s (dist)"
  1895. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)"
  1896. #: apt-pkg/sourcelist.cc:92
  1897. #, c-format
  1898. msgid "Malformed line %lu in source list %s (URI parse)"
  1899. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)"
  1900. #: apt-pkg/sourcelist.cc:98
  1901. #, c-format
  1902. msgid "Malformed line %lu in source list %s (absolute dist)"
  1903. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)"
  1904. #: apt-pkg/sourcelist.cc:105
  1905. #, c-format
  1906. msgid "Malformed line %lu in source list %s (dist parse)"
  1907. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
  1908. #: apt-pkg/sourcelist.cc:156
  1909. #, c-format
  1910. msgid "Opening %s"
  1911. msgstr "Binubuksan %s"
  1912. #: apt-pkg/sourcelist.cc:170 apt-pkg/cdrom.cc:426
  1913. #, c-format
  1914. msgid "Line %u too long in source list %s."
  1915. msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s."
  1916. #: apt-pkg/sourcelist.cc:187
  1917. #, c-format
  1918. msgid "Malformed line %u in source list %s (type)"
  1919. msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)"
  1920. #: apt-pkg/sourcelist.cc:191
  1921. #, c-format
  1922. msgid "Type '%s' is not known on line %u in source list %s"
  1923. msgstr "Di kilalang uri '%s' sa linyang %u sa talaksang pagkukunan %s"
  1924. #: apt-pkg/sourcelist.cc:199 apt-pkg/sourcelist.cc:202
  1925. #, c-format
  1926. msgid "Malformed line %u in source list %s (vendor id)"
  1927. msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (vendor id)"
  1928. #: apt-pkg/packagemanager.cc:402
  1929. #, c-format
  1930. msgid ""
  1931. "This installation run will require temporarily removing the essential "
  1932. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1933. "you really want to do it, activate the APT::Force-LoopBreak option."
  1934. msgstr ""
  1935. "Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang "
  1936. "pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends "
  1937. "loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-"
  1938. "activate ang APT::Force-LoopBreak na option."
  1939. #: apt-pkg/pkgrecords.cc:37
  1940. #, c-format
  1941. msgid "Index file type '%s' is not supported"
  1942. msgstr "Hindi suportado ang uri ng talaksang index na '%s'"
  1943. #: apt-pkg/algorithms.cc:241
  1944. #, c-format
  1945. msgid ""
  1946. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1947. msgstr ""
  1948. "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo "
  1949. "para dito."
  1950. #: apt-pkg/algorithms.cc:1059
  1951. msgid ""
  1952. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1953. "held packages."
  1954. msgstr ""
  1955. "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot "
  1956. "ito ng mga paketeng naka-hold."
  1957. #: apt-pkg/algorithms.cc:1061
  1958. msgid "Unable to correct problems, you have held broken packages."
  1959. msgstr ""
  1960. "Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold."
  1961. #: apt-pkg/acquire.cc:62
  1962. #, c-format
  1963. msgid "Lists directory %spartial is missing."
  1964. msgstr "Nawawala ang directory ng talaan %spartial."
  1965. #: apt-pkg/acquire.cc:66
  1966. #, c-format
  1967. msgid "Archive directory %spartial is missing."
  1968. msgstr "Nawawala ang directory ng arkibo %spartial."
  1969. #: apt-pkg/acquire.cc:817
  1970. #, c-format
  1971. msgid "Downloading file %li of %li (%s remaining)"
  1972. msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)"
  1973. #: apt-pkg/acquire-worker.cc:113
  1974. #, c-format
  1975. msgid "The method driver %s could not be found."
  1976. msgstr "Ang driver ng paraang %s ay hindi mahanap."
  1977. #: apt-pkg/acquire-worker.cc:162
  1978. #, c-format
  1979. msgid "Method %s did not start correctly"
  1980. msgstr "Hindi umandar ng tama ang paraang %s"
  1981. #: apt-pkg/acquire-worker.cc:377
  1982. #, c-format
  1983. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1984. msgstr "Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter."
  1985. #: apt-pkg/init.cc:119
  1986. #, c-format
  1987. msgid "Packaging system '%s' is not supported"
  1988. msgstr "Hindi suportado ang sistema ng paketeng '%s'"
  1989. #: apt-pkg/init.cc:135
  1990. msgid "Unable to determine a suitable packaging system type"
  1991. msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete "
  1992. #: apt-pkg/clean.cc:61
  1993. #, c-format
  1994. msgid "Unable to stat %s."
  1995. msgstr "Hindi ma-stat ang %s"
  1996. #: apt-pkg/srcrecords.cc:48
  1997. msgid "You must put some 'source' URIs in your sources.list"
  1998. msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list"
  1999. #: apt-pkg/cachefile.cc:73
  2000. msgid "The package lists or status file could not be parsed or opened."
  2001. msgstr ""
  2002. "Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado."
  2003. #: apt-pkg/cachefile.cc:77
  2004. msgid "You may want to run apt-get update to correct these problems"
  2005. msgstr ""
  2006. "Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang "
  2007. "ito"
  2008. #: apt-pkg/policy.cc:269
  2009. msgid "Invalid record in the preferences file, no Package header"
  2010. msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header"
  2011. #: apt-pkg/policy.cc:291
  2012. #, c-format
  2013. msgid "Did not understand pin type %s"
  2014. msgstr "Hindi naintindihan ang uri ng pin %s"
  2015. #: apt-pkg/policy.cc:299
  2016. msgid "No priority (or zero) specified for pin"
  2017. msgstr "Walang prioridad (o sero) na nakatakda para sa pin"
  2018. #: apt-pkg/pkgcachegen.cc:74
  2019. msgid "Cache has an incompatible versioning system"
  2020. msgstr "Hindi akma ang versioning system ng cache"
  2021. #: apt-pkg/pkgcachegen.cc:117
  2022. #, c-format
  2023. msgid "Error occurred while processing %s (NewPackage)"
  2024. msgstr "May naganap na error habang prinoseso ang %s (NewPackage)"
  2025. #: apt-pkg/pkgcachegen.cc:129
  2026. #, c-format
  2027. msgid "Error occurred while processing %s (UsePackage1)"
  2028. msgstr "May naganap na error habang prinoseso ang %s (UsePackage1)"
  2029. #: apt-pkg/pkgcachegen.cc:150
  2030. #, c-format
  2031. msgid "Error occurred while processing %s (UsePackage2)"
  2032. msgstr "May naganap na error habang prinoseso ang %s (UsePackage2)"
  2033. #: apt-pkg/pkgcachegen.cc:154
  2034. #, c-format
  2035. msgid "Error occurred while processing %s (NewFileVer1)"
  2036. msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
  2037. #: apt-pkg/pkgcachegen.cc:184
  2038. #, c-format
  2039. msgid "Error occurred while processing %s (NewVersion1)"
  2040. msgstr "May naganap na error habang prinoseso ang %s (NewVersion1)"
  2041. #: apt-pkg/pkgcachegen.cc:188
  2042. #, c-format
  2043. msgid "Error occurred while processing %s (UsePackage3)"
  2044. msgstr "May naganap na error habang prinoseso ang %s (UsePackage3)"
  2045. #: apt-pkg/pkgcachegen.cc:192
  2046. #, c-format
  2047. msgid "Error occurred while processing %s (NewVersion2)"
  2048. msgstr "May naganap na error habang prinoseso ang %s (NewVersion2)"
  2049. #: apt-pkg/pkgcachegen.cc:207
  2050. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2051. msgstr ""
  2052. "Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito."
  2053. #: apt-pkg/pkgcachegen.cc:210
  2054. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2055. msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
  2056. #: apt-pkg/pkgcachegen.cc:213
  2057. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2058. msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito."
  2059. #: apt-pkg/pkgcachegen.cc:241
  2060. #, c-format
  2061. msgid "Error occurred while processing %s (FindPkg)"
  2062. msgstr "May naganap na error habang prinoseso ang %s (FindPkg)"
  2063. #: apt-pkg/pkgcachegen.cc:254
  2064. #, c-format
  2065. msgid "Error occurred while processing %s (CollectFileProvides)"
  2066. msgstr "May naganap na Error habang prinoseso ang %s (CollectFileProvides)"
  2067. #: apt-pkg/pkgcachegen.cc:260
  2068. #, c-format
  2069. msgid "Package %s %s was not found while processing file dependencies"
  2070. msgstr ""
  2071. "Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya."
  2072. #: apt-pkg/pkgcachegen.cc:574
  2073. #, c-format
  2074. msgid "Couldn't stat source package list %s"
  2075. msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
  2076. #: apt-pkg/pkgcachegen.cc:658
  2077. msgid "Collecting File Provides"
  2078. msgstr "Kinukuha ang Talaksang Provides"
  2079. #: apt-pkg/pkgcachegen.cc:785 apt-pkg/pkgcachegen.cc:792
  2080. msgid "IO Error saving source cache"
  2081. msgstr "IO Error sa pag-imbak ng source cache"
  2082. #: apt-pkg/acquire-item.cc:126
  2083. #, c-format
  2084. msgid "rename failed, %s (%s -> %s)."
  2085. msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)."
  2086. #: apt-pkg/acquire-item.cc:236 apt-pkg/acquire-item.cc:908
  2087. msgid "MD5Sum mismatch"
  2088. msgstr "Di tugmang MD5Sum"
  2089. #: apt-pkg/acquire-item.cc:722
  2090. #, c-format
  2091. msgid ""
  2092. "I wasn't able to locate a file for the %s package. This might mean you need "
  2093. "to manually fix this package. (due to missing arch)"
  2094. msgstr ""
  2095. "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
  2096. "niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)"
  2097. #: apt-pkg/acquire-item.cc:775
  2098. #, c-format
  2099. msgid ""
  2100. "I wasn't able to locate file for the %s package. This might mean you need to "
  2101. "manually fix this package."
  2102. msgstr ""
  2103. "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
  2104. "niyong ayusin ng de kamay ang paketeng ito."
  2105. #: apt-pkg/acquire-item.cc:811
  2106. #, c-format
  2107. msgid ""
  2108. "The package index files are corrupted. No Filename: field for package %s."
  2109. msgstr ""
  2110. "Sira ang talaksang index ng mga pakete. Walang Filename: field para sa "
  2111. "paketeng %s."
  2112. #: apt-pkg/acquire-item.cc:898
  2113. msgid "Size mismatch"
  2114. msgstr "Di tugmang laki"
  2115. #: apt-pkg/vendorlist.cc:66
  2116. #, c-format
  2117. msgid "Vendor block %s contains no fingerprint"
  2118. msgstr "Block ng nagbebenta %s ay walang fingerprint"
  2119. #: apt-pkg/cdrom.cc:507
  2120. #, c-format
  2121. msgid ""
  2122. "Using CD-ROM mount point %s\n"
  2123. "Mounting CD-ROM\n"
  2124. msgstr ""
  2125. "Ginagamit ang %s bilang mount point ng CD-ROM\n"
  2126. "Sinasalang ang CD-ROM\n"
  2127. #: apt-pkg/cdrom.cc:516 apt-pkg/cdrom.cc:598
  2128. msgid "Identifying.. "
  2129. msgstr "Kinikilala..."
  2130. #: apt-pkg/cdrom.cc:541
  2131. #, c-format
  2132. msgid "Stored label: %s \n"
  2133. msgstr "Naka-imbak na Label: %s \n"
  2134. #: apt-pkg/cdrom.cc:561
  2135. #, c-format
  2136. msgid "Using CD-ROM mount point %s\n"
  2137. msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n"
  2138. #: apt-pkg/cdrom.cc:579
  2139. msgid "Unmounting CD-ROM\n"
  2140. msgstr "Ina-unmount ang CD-ROM\n"
  2141. #: apt-pkg/cdrom.cc:583
  2142. msgid "Waiting for disc...\n"
  2143. msgstr "Hinihintay ang disc...\n"
  2144. #. Mount the new CDROM
  2145. #: apt-pkg/cdrom.cc:591
  2146. msgid "Mounting CD-ROM...\n"
  2147. msgstr "Sinasalang ang CD-ROM...\n"
  2148. #: apt-pkg/cdrom.cc:609
  2149. msgid "Scanning disc for index files..\n"
  2150. msgstr "Sinisiyasat ang Disc para sa talaksang index...\n"
  2151. #: apt-pkg/cdrom.cc:647
  2152. #, c-format
  2153. msgid "Found %i package indexes, %i source indexes and %i signatures\n"
  2154. msgstr ""
  2155. "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
  2156. "signature\n"
  2157. #: apt-pkg/cdrom.cc:710
  2158. msgid "That is not a valid name, try again.\n"
  2159. msgstr "Hindi yan tanggap na pangalan, subukan muli.\n"
  2160. #: apt-pkg/cdrom.cc:726
  2161. #, c-format
  2162. msgid ""
  2163. "This disc is called: \n"
  2164. "'%s'\n"
  2165. msgstr ""
  2166. "Ang Disc na ito ay nagngangalang: \n"
  2167. "'%s'\n"
  2168. #: apt-pkg/cdrom.cc:730
  2169. msgid "Copying package lists..."
  2170. msgstr "Kinokopya ang Listahan ng mga Pakete"
  2171. #: apt-pkg/cdrom.cc:754
  2172. msgid "Writing new source list\n"
  2173. msgstr "Sinusulat ang bagong listahan ng pagkukunan\n"
  2174. #: apt-pkg/cdrom.cc:763
  2175. msgid "Source list entries for this disc are:\n"
  2176. msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n"
  2177. #: apt-pkg/cdrom.cc:803
  2178. msgid "Unmounting CD-ROM..."
  2179. msgstr "Ina-unmount ang CD-ROM..."
  2180. #: apt-pkg/indexcopy.cc:261
  2181. #, c-format
  2182. msgid "Wrote %i records.\n"
  2183. msgstr "Nagsulat ng %i na record.\n"
  2184. #: apt-pkg/indexcopy.cc:263
  2185. #, c-format
  2186. msgid "Wrote %i records with %i missing files.\n"
  2187. msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n"
  2188. #: apt-pkg/indexcopy.cc:266
  2189. #, c-format
  2190. msgid "Wrote %i records with %i mismatched files\n"
  2191. msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n"
  2192. #: apt-pkg/indexcopy.cc:269
  2193. #, c-format
  2194. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2195. msgstr ""
  2196. "Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang "
  2197. "mismatch\n"
  2198. #: apt-pkg/deb/dpkgpm.cc:358
  2199. #, c-format
  2200. msgid "Preparing %s"
  2201. msgstr "Hinahanda ang %s"
  2202. #: apt-pkg/deb/dpkgpm.cc:359
  2203. #, c-format
  2204. msgid "Unpacking %s"
  2205. msgstr "Binubuklat ang %s"
  2206. #: apt-pkg/deb/dpkgpm.cc:364
  2207. #, c-format
  2208. msgid "Preparing to configure %s"
  2209. msgstr "Hinahanda ang %s upang isaayos"
  2210. #: apt-pkg/deb/dpkgpm.cc:365
  2211. #, c-format
  2212. msgid "Configuring %s"
  2213. msgstr "Isasaayos ang %s"
  2214. #: apt-pkg/deb/dpkgpm.cc:366
  2215. #, c-format
  2216. msgid "Installed %s"
  2217. msgstr "Iniluklok ang %s"
  2218. #: apt-pkg/deb/dpkgpm.cc:371
  2219. #, c-format
  2220. msgid "Preparing for removal of %s"
  2221. msgstr "Naghahanda para sa pagtanggal ng %s"
  2222. #: apt-pkg/deb/dpkgpm.cc:372
  2223. #, c-format
  2224. msgid "Removing %s"
  2225. msgstr "Tinatanggal ang %s"
  2226. #: apt-pkg/deb/dpkgpm.cc:373
  2227. #, c-format
  2228. msgid "Removed %s"
  2229. msgstr "Tinanggal ang %s"
  2230. #: apt-pkg/deb/dpkgpm.cc:378
  2231. #, c-format
  2232. msgid "Preparing for remove with config %s"
  2233. msgstr "Naghahanda upang tanggalin ang %s kasama ang pagkasaayos nito"
  2234. #: apt-pkg/deb/dpkgpm.cc:379
  2235. #, c-format
  2236. msgid "Removed with config %s"
  2237. msgstr "Tinanggal ang %s kasama ang pagkasaayos nito"
  2238. #: methods/rsh.cc:330
  2239. msgid "Connection closed prematurely"
  2240. msgstr "Nagsara ng maaga ang koneksyon"
  2241. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2242. #~ msgstr "Hindi kilalang vendor ID '%s' sa linya %u ng talaksang pagkukunan %s"