tl.po 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657
  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: APT Development Team <deity@lists.debian.org>\n"
  13. "POT-Creation-Date: 2012-10-15 09:49+0200\n"
  14. "PO-Revision-Date: 2007-03-29 21:36+0800\n"
  15. "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
  16. "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
  17. "Language: tl\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Plural-Forms: nplurals=2; plural=n>1;\n"
  22. #: cmdline/apt-cache.cc:158
  23. #, c-format
  24. msgid "Package %s version %s has an unmet dep:\n"
  25. msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n"
  26. #: cmdline/apt-cache.cc:286
  27. msgid "Total package names: "
  28. msgstr "Kabuuan ng mga Pakete : "
  29. #: cmdline/apt-cache.cc:288
  30. #, fuzzy
  31. msgid "Total package structures: "
  32. msgstr "Kabuuan ng mga Pakete : "
  33. #: cmdline/apt-cache.cc:328
  34. msgid " Normal packages: "
  35. msgstr " Normal na Pakete: "
  36. #: cmdline/apt-cache.cc:329
  37. msgid " Pure virtual packages: "
  38. msgstr " Purong Birtwual na Pakete: "
  39. #: cmdline/apt-cache.cc:330
  40. msgid " Single virtual packages: "
  41. msgstr " Nag-iisang Birtwal na Pakete: "
  42. #: cmdline/apt-cache.cc:331
  43. msgid " Mixed virtual packages: "
  44. msgstr " Halong Birtwal na Pakete: "
  45. #: cmdline/apt-cache.cc:332
  46. msgid " Missing: "
  47. msgstr " Kulang/Nawawala: "
  48. #: cmdline/apt-cache.cc:334
  49. msgid "Total distinct versions: "
  50. msgstr "Kabuuan ng Natatanging mga Bersyon: "
  51. #: cmdline/apt-cache.cc:336
  52. #, fuzzy
  53. msgid "Total distinct descriptions: "
  54. msgstr "Kabuuan ng Natatanging mga Bersyon: "
  55. #: cmdline/apt-cache.cc:338
  56. msgid "Total dependencies: "
  57. msgstr "Kabuuan ng mga Dependensiya: "
  58. #: cmdline/apt-cache.cc:341
  59. msgid "Total ver/file relations: "
  60. msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
  61. #: cmdline/apt-cache.cc:343
  62. #, fuzzy
  63. msgid "Total Desc/File relations: "
  64. msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
  65. #: cmdline/apt-cache.cc:345
  66. msgid "Total Provides mappings: "
  67. msgstr "Kabuuan ng Mapping ng Provides: "
  68. #: cmdline/apt-cache.cc:357
  69. msgid "Total globbed strings: "
  70. msgstr "Kabuuan ng Globbed String: "
  71. #: cmdline/apt-cache.cc:371
  72. msgid "Total dependency version space: "
  73. msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: "
  74. #: cmdline/apt-cache.cc:376
  75. msgid "Total slack space: "
  76. msgstr "Kabuuan ng Hindi Nagamit na puwang: "
  77. #: cmdline/apt-cache.cc:384
  78. msgid "Total space accounted for: "
  79. msgstr "Kabuuan ng puwang na napag-tuosan: "
  80. #: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1147
  81. #, c-format
  82. msgid "Package file %s is out of sync."
  83. msgstr "Wala sa sync ang talaksan ng paketeng %s."
  84. #: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1382
  85. #: cmdline/apt-cache.cc:1384 cmdline/apt-cache.cc:1461 cmdline/apt-mark.cc:46
  86. #: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
  87. msgid "No packages found"
  88. msgstr "Walang nahanap na mga pakete"
  89. #: cmdline/apt-cache.cc:1226
  90. #, fuzzy
  91. msgid "You must give at least one search pattern"
  92. msgstr "Kailangan niyong magbigay ng isa lamang na pattern"
  93. #: cmdline/apt-cache.cc:1361
  94. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  95. msgstr ""
  96. #: cmdline/apt-cache.cc:1456 apt-pkg/cacheset.cc:510
  97. #, c-format
  98. msgid "Unable to locate package %s"
  99. msgstr "Hindi mahanap ang paketeng %s"
  100. #: cmdline/apt-cache.cc:1486
  101. msgid "Package files:"
  102. msgstr "Talaksang Pakete:"
  103. #: cmdline/apt-cache.cc:1493 cmdline/apt-cache.cc:1584
  104. msgid "Cache is out of sync, can't x-ref a package file"
  105. msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete"
  106. #. Show any packages have explicit pins
  107. #: cmdline/apt-cache.cc:1507
  108. msgid "Pinned packages:"
  109. msgstr "Mga naka-Pin na Pakete:"
  110. #: cmdline/apt-cache.cc:1519 cmdline/apt-cache.cc:1564
  111. msgid "(not found)"
  112. msgstr "(hindi nahanap)"
  113. #: cmdline/apt-cache.cc:1527
  114. msgid " Installed: "
  115. msgstr " Nakaluklok: "
  116. #: cmdline/apt-cache.cc:1528
  117. msgid " Candidate: "
  118. msgstr " Kandidato: "
  119. #: cmdline/apt-cache.cc:1546 cmdline/apt-cache.cc:1554
  120. msgid "(none)"
  121. msgstr "(wala)"
  122. #: cmdline/apt-cache.cc:1561
  123. msgid " Package pin: "
  124. msgstr " Naka-Pin na Pakete: "
  125. #. Show the priority tables
  126. #: cmdline/apt-cache.cc:1570
  127. msgid " Version table:"
  128. msgstr " Talaang Bersyon:"
  129. #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81
  130. #: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375
  131. #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590
  132. #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
  133. #, fuzzy, c-format
  134. msgid "%s %s for %s compiled on %s %s\n"
  135. msgstr "%s %s para sa %s %s kinompile noong %s %s\n"
  136. #: cmdline/apt-cache.cc:1690
  137. #, fuzzy
  138. msgid ""
  139. "Usage: apt-cache [options] command\n"
  140. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  141. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  142. "\n"
  143. "apt-cache is a low-level tool used to query information\n"
  144. "from APT's binary cache files\n"
  145. "\n"
  146. "Commands:\n"
  147. " gencaches - Build both the package and source cache\n"
  148. " showpkg - Show some general information for a single package\n"
  149. " showsrc - Show source records\n"
  150. " stats - Show some basic statistics\n"
  151. " dump - Show the entire file in a terse form\n"
  152. " dumpavail - Print an available file to stdout\n"
  153. " unmet - Show unmet dependencies\n"
  154. " search - Search the package list for a regex pattern\n"
  155. " show - Show a readable record for the package\n"
  156. " depends - Show raw dependency information for a package\n"
  157. " rdepends - Show reverse dependency information for a package\n"
  158. " pkgnames - List the names of all packages in the system\n"
  159. " dotty - Generate package graphs for GraphViz\n"
  160. " xvcg - Generate package graphs for xvcg\n"
  161. " policy - Show policy settings\n"
  162. "\n"
  163. "Options:\n"
  164. " -h This help text.\n"
  165. " -p=? The package cache.\n"
  166. " -s=? The source cache.\n"
  167. " -q Disable progress indicator.\n"
  168. " -i Show only important deps for the unmet command.\n"
  169. " -c=? Read this configuration file\n"
  170. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  171. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  172. msgstr ""
  173. "Pag-gamit: apt-cache [mga option] utos\n"
  174. " apt-cache [mga option] add talaksan1 [talaksan2 ...]\n"
  175. " apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n"
  176. " apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n"
  177. "\n"
  178. "apt-cache ay isang kagamitang low-level para sa pag-manipula\n"
  179. "ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n"
  180. "impormasyon mula sa kanila\n"
  181. "\n"
  182. "Mga utos:\n"
  183. " add - Magdagdag ng talaksang pakete sa source cache\n"
  184. " gencaches - Buuin pareho ang cache ng pakete at source\n"
  185. " showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n"
  186. " showsrc - Ipakita ang mga record ng source\n"
  187. " stats - Ipakita ang ilang mga estadistika\n"
  188. " dump - Ipakita ang buong talaksan sa anyong maikli\n"
  189. " dumpavail - Ipakita ang talaksang available sa stdout\n"
  190. " unmet - Ipakita ang mga kulang na mga dependensiya\n"
  191. " search - Maghanap sa listahan ng mga pakete ng regex pattern\n"
  192. " show - Ipakita ang nababasang record ng pakete\n"
  193. " depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n"
  194. " ng pakete\n"
  195. " rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n"
  196. " pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n"
  197. " dotty - Bumuo ng graph ng mga pakete para sa GraphViz\n"
  198. " xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n"
  199. " policy - Ipakita ang pagkaayos ng mga policy\n"
  200. "\n"
  201. "Mga option:\n"
  202. " -h Itong tulong na ito.\n"
  203. " -p=? Ang cache ng mga pakete.\n"
  204. " -s=? Ang cache ng mga source.\n"
  205. " -q Huwag ipakita ang hudyat ng progreso.\n"
  206. " -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n"
  207. " -c=? Basahin ang talaksang pagkaayos na ito\n"
  208. " -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
  209. "Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n"
  210. "karagdagang impormasyon\n"
  211. #: cmdline/apt-cdrom.cc:79
  212. #, fuzzy
  213. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  214. msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'"
  215. #: cmdline/apt-cdrom.cc:94
  216. msgid "Please insert a Disc in the drive and press enter"
  217. msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter"
  218. #: cmdline/apt-cdrom.cc:129
  219. #, fuzzy, c-format
  220. msgid "Failed to mount '%s' to '%s'"
  221. msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
  222. #: cmdline/apt-cdrom.cc:163
  223. msgid "Repeat this process for the rest of the CDs in your set."
  224. msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set."
  225. #: cmdline/apt-config.cc:46
  226. msgid "Arguments not in pairs"
  227. msgstr "Mga argumento ay hindi naka-pares"
  228. #: cmdline/apt-config.cc:87
  229. msgid ""
  230. "Usage: apt-config [options] command\n"
  231. "\n"
  232. "apt-config is a simple tool to read the APT config file\n"
  233. "\n"
  234. "Commands:\n"
  235. " shell - Shell mode\n"
  236. " dump - Show the configuration\n"
  237. "\n"
  238. "Options:\n"
  239. " -h This help text.\n"
  240. " -c=? Read this configuration file\n"
  241. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  242. msgstr ""
  243. "Pag-gamit: apt-config [mga option] utos\n"
  244. "\n"
  245. "Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n"
  246. "ng APT\n"
  247. "\n"
  248. "Mga utos:\n"
  249. " shell - modong shell\n"
  250. " dump - ipakita ang pagkaayos\n"
  251. "Mga option:\n"
  252. " -h Itong tulong na ito.\n"
  253. " -c=? Basahin itong talaksang pagkaayos\n"
  254. " -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n"
  255. #: cmdline/apt-get.cc:135
  256. msgid "Y"
  257. msgstr "O"
  258. #: cmdline/apt-get.cc:140
  259. msgid "N"
  260. msgstr ""
  261. #: cmdline/apt-get.cc:162 apt-pkg/cachefilter.cc:33
  262. #, c-format
  263. msgid "Regex compilation error - %s"
  264. msgstr "Error sa pag-compile ng regex - %s"
  265. #: cmdline/apt-get.cc:260
  266. msgid "The following packages have unmet dependencies:"
  267. msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:"
  268. #: cmdline/apt-get.cc:350
  269. #, c-format
  270. msgid "but %s is installed"
  271. msgstr "ngunit ang %s ay nakaluklok"
  272. #: cmdline/apt-get.cc:352
  273. #, c-format
  274. msgid "but %s is to be installed"
  275. msgstr "ngunit ang %s ay iluluklok"
  276. #: cmdline/apt-get.cc:359
  277. msgid "but it is not installable"
  278. msgstr "ngunit hindi ito maaaring iluklok"
  279. #: cmdline/apt-get.cc:361
  280. msgid "but it is a virtual package"
  281. msgstr "ngunit ito ay birtwal na pakete"
  282. #: cmdline/apt-get.cc:364
  283. msgid "but it is not installed"
  284. msgstr "ngunit ito ay hindi nakaluklok"
  285. #: cmdline/apt-get.cc:364
  286. msgid "but it is not going to be installed"
  287. msgstr "ngunit ito ay hindi iluluklok"
  288. #: cmdline/apt-get.cc:369
  289. msgid " or"
  290. msgstr " o"
  291. #: cmdline/apt-get.cc:398
  292. msgid "The following NEW packages will be installed:"
  293. msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
  294. #: cmdline/apt-get.cc:424
  295. msgid "The following packages will be REMOVED:"
  296. msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:"
  297. #: cmdline/apt-get.cc:446
  298. msgid "The following packages have been kept back:"
  299. msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:"
  300. #: cmdline/apt-get.cc:467
  301. msgid "The following packages will be upgraded:"
  302. msgstr "Ang susunod na mga pakete ay iu-upgrade:"
  303. #: cmdline/apt-get.cc:488
  304. msgid "The following packages will be DOWNGRADED:"
  305. msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:"
  306. #: cmdline/apt-get.cc:508
  307. msgid "The following held packages will be changed:"
  308. msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:"
  309. #: cmdline/apt-get.cc:563
  310. #, c-format
  311. msgid "%s (due to %s) "
  312. msgstr "%s (dahil sa %s) "
  313. #: cmdline/apt-get.cc:571
  314. msgid ""
  315. "WARNING: The following essential packages will be removed.\n"
  316. "This should NOT be done unless you know exactly what you are doing!"
  317. msgstr ""
  318. "BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n"
  319. "HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!"
  320. #: cmdline/apt-get.cc:602
  321. #, c-format
  322. msgid "%lu upgraded, %lu newly installed, "
  323. msgstr "%lu na nai-upgrade, %lu na bagong luklok, "
  324. #: cmdline/apt-get.cc:606
  325. #, c-format
  326. msgid "%lu reinstalled, "
  327. msgstr "%lu iniluklok muli, "
  328. #: cmdline/apt-get.cc:608
  329. #, c-format
  330. msgid "%lu downgraded, "
  331. msgstr "%lu nai-downgrade, "
  332. #: cmdline/apt-get.cc:610
  333. #, c-format
  334. msgid "%lu to remove and %lu not upgraded.\n"
  335. msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n"
  336. #: cmdline/apt-get.cc:614
  337. #, c-format
  338. msgid "%lu not fully installed or removed.\n"
  339. msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n"
  340. #: cmdline/apt-get.cc:635
  341. #, fuzzy, c-format
  342. msgid "Note, selecting '%s' for task '%s'\n"
  343. msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
  344. #: cmdline/apt-get.cc:640
  345. #, fuzzy, c-format
  346. msgid "Note, selecting '%s' for regex '%s'\n"
  347. msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
  348. #: cmdline/apt-get.cc:657
  349. #, c-format
  350. msgid "Package %s is a virtual package provided by:\n"
  351. msgstr "Ang paketeng %s ay paketeng birtwal na bigay ng:\n"
  352. #: cmdline/apt-get.cc:668
  353. msgid " [Installed]"
  354. msgstr " [Nakaluklok]"
  355. #: cmdline/apt-get.cc:677
  356. #, fuzzy
  357. msgid " [Not candidate version]"
  358. msgstr "Bersyong Kandidato"
  359. #: cmdline/apt-get.cc:679
  360. msgid "You should explicitly select one to install."
  361. msgstr "Dapat kayong mamili ng isa na iluluklok."
  362. #: cmdline/apt-get.cc:682
  363. #, c-format
  364. msgid ""
  365. "Package %s is not available, but is referred to by another package.\n"
  366. "This may mean that the package is missing, has been obsoleted, or\n"
  367. "is only available from another source\n"
  368. msgstr ""
  369. "Hindi magamit ang %s, ngunit ito'y tinutukoy ng ibang pakete.\n"
  370. "Maaaring nawawala ang pakete, ito'y laos na, o ito'y makukuha lamang\n"
  371. "sa ibang pinagmulan.\n"
  372. #: cmdline/apt-get.cc:700
  373. msgid "However the following packages replace it:"
  374. msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:"
  375. #: cmdline/apt-get.cc:712
  376. #, fuzzy, c-format
  377. msgid "Package '%s' has no installation candidate"
  378. msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin"
  379. #: cmdline/apt-get.cc:725
  380. #, c-format
  381. msgid "Virtual packages like '%s' can't be removed\n"
  382. msgstr ""
  383. #. TRANSLATORS: Note, this is not an interactive question
  384. #: cmdline/apt-get.cc:737 cmdline/apt-get.cc:940
  385. #, fuzzy, c-format
  386. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  387. msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
  388. #: cmdline/apt-get.cc:743 cmdline/apt-get.cc:946
  389. #, fuzzy, c-format
  390. msgid "Package '%s' is not installed, so not removed\n"
  391. msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
  392. #: cmdline/apt-get.cc:788
  393. #, fuzzy, c-format
  394. msgid "Note, selecting '%s' instead of '%s'\n"
  395. msgstr "Paunawa, pinili ang %s imbes na %s\n"
  396. #: cmdline/apt-get.cc:818
  397. #, c-format
  398. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  399. msgstr ""
  400. "Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n"
  401. #: cmdline/apt-get.cc:822
  402. #, fuzzy, c-format
  403. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  404. msgstr ""
  405. "Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n"
  406. #: cmdline/apt-get.cc:834
  407. #, c-format
  408. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  409. msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n"
  410. #: cmdline/apt-get.cc:839
  411. #, c-format
  412. msgid "%s is already the newest version.\n"
  413. msgstr "%s ay pinakabagong bersyon na.\n"
  414. #: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68
  415. #, fuzzy, c-format
  416. msgid "%s set to manually installed.\n"
  417. msgstr "ngunit ang %s ay iluluklok"
  418. #: cmdline/apt-get.cc:884
  419. #, fuzzy, c-format
  420. msgid "Selected version '%s' (%s) for '%s'\n"
  421. msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
  422. #: cmdline/apt-get.cc:889
  423. #, fuzzy, c-format
  424. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  425. msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
  426. #: cmdline/apt-get.cc:1025
  427. msgid "Correcting dependencies..."
  428. msgstr "Inaayos ang mga dependensiya..."
  429. #: cmdline/apt-get.cc:1028
  430. msgid " failed."
  431. msgstr " ay bigo."
  432. #: cmdline/apt-get.cc:1031
  433. msgid "Unable to correct dependencies"
  434. msgstr "Hindi maayos ang mga dependensiya"
  435. #: cmdline/apt-get.cc:1034
  436. msgid "Unable to minimize the upgrade set"
  437. msgstr "Hindi mai-minimize ang upgrade set"
  438. #: cmdline/apt-get.cc:1036
  439. msgid " Done"
  440. msgstr " Tapos"
  441. #: cmdline/apt-get.cc:1040
  442. msgid "You might want to run 'apt-get -f install' to correct these."
  443. msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito."
  444. #: cmdline/apt-get.cc:1043
  445. msgid "Unmet dependencies. Try using -f."
  446. msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f."
  447. #: cmdline/apt-get.cc:1068
  448. msgid "WARNING: The following packages cannot be authenticated!"
  449. msgstr ""
  450. "BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!"
  451. #: cmdline/apt-get.cc:1072
  452. msgid "Authentication warning overridden.\n"
  453. msgstr ""
  454. "Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n"
  455. #: cmdline/apt-get.cc:1079
  456. msgid "Install these packages without verification [y/N]? "
  457. msgstr "Iluklok ang mga paketeng ito na walang beripikasyon [o/H]? "
  458. #: cmdline/apt-get.cc:1081
  459. msgid "Some packages could not be authenticated"
  460. msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko"
  461. #: cmdline/apt-get.cc:1090 cmdline/apt-get.cc:1251
  462. msgid "There are problems and -y was used without --force-yes"
  463. msgstr "May mga problema at -y ay ginamit na walang --force-yes"
  464. #: cmdline/apt-get.cc:1131
  465. msgid "Internal error, InstallPackages was called with broken packages!"
  466. msgstr ""
  467. "Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!"
  468. #: cmdline/apt-get.cc:1140
  469. msgid "Packages need to be removed but remove is disabled."
  470. msgstr ""
  471. "May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove."
  472. #: cmdline/apt-get.cc:1151
  473. msgid "Internal error, Ordering didn't finish"
  474. msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod"
  475. #: cmdline/apt-get.cc:1189
  476. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  477. msgstr ""
  478. "Nakapagtataka.. Hindi magkatugma ang laki, mag-email sa apt@packages.debian."
  479. "org"
  480. #. TRANSLATOR: The required space between number and unit is already included
  481. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  482. #: cmdline/apt-get.cc:1196
  483. #, c-format
  484. msgid "Need to get %sB/%sB of archives.\n"
  485. msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n"
  486. #. TRANSLATOR: The required space between number and unit is already included
  487. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  488. #: cmdline/apt-get.cc:1201
  489. #, c-format
  490. msgid "Need to get %sB of archives.\n"
  491. msgstr "Kailangang kumuha ng %sB ng arkibo.\n"
  492. #. TRANSLATOR: The required space between number and unit is already included
  493. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  494. #: cmdline/apt-get.cc:1208
  495. #, fuzzy, c-format
  496. msgid "After this operation, %sB of additional disk space will be used.\n"
  497. msgstr ""
  498. "Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n"
  499. #. TRANSLATOR: The required space between number and unit is already included
  500. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  501. #: cmdline/apt-get.cc:1213
  502. #, fuzzy, c-format
  503. msgid "After this operation, %sB disk space will be freed.\n"
  504. msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n"
  505. #: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589
  506. #: cmdline/apt-get.cc:2592
  507. #, c-format
  508. msgid "Couldn't determine free space in %s"
  509. msgstr "Hindi matantsa ang libreng puwang sa %s"
  510. #: cmdline/apt-get.cc:1241
  511. #, c-format
  512. msgid "You don't have enough free space in %s."
  513. msgstr "Kulang kayo ng libreng puwang sa %s."
  514. #: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277
  515. msgid "Trivial Only specified but this is not a trivial operation."
  516. msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial."
  517. #: cmdline/apt-get.cc:1259
  518. msgid "Yes, do as I say!"
  519. msgstr "Oo, gawin ang sinasabi ko!"
  520. #: cmdline/apt-get.cc:1261
  521. #, c-format
  522. msgid ""
  523. "You are about to do something potentially harmful.\n"
  524. "To continue type in the phrase '%s'\n"
  525. " ?] "
  526. msgstr ""
  527. "Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n"
  528. "Upang magpatuloy, ibigay ang pariralang '%s'\n"
  529. " ?] "
  530. #: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286
  531. msgid "Abort."
  532. msgstr "Abort."
  533. #: cmdline/apt-get.cc:1282
  534. msgid "Do you want to continue [Y/n]? "
  535. msgstr "Nais niyo bang magpatuloy [O/h]? "
  536. #: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548
  537. #, c-format
  538. msgid "Failed to fetch %s %s\n"
  539. msgstr "Bigo sa pagkuha ng %s %s\n"
  540. #: cmdline/apt-get.cc:1372
  541. msgid "Some files failed to download"
  542. msgstr "May mga talaksang hindi nakuha"
  543. #: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666
  544. msgid "Download complete and in download only mode"
  545. msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang"
  546. #: cmdline/apt-get.cc:1379
  547. msgid ""
  548. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  549. "missing?"
  550. msgstr ""
  551. "Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o "
  552. "subukang may --fix-missing?"
  553. #: cmdline/apt-get.cc:1383
  554. msgid "--fix-missing and media swapping is not currently supported"
  555. msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado"
  556. #: cmdline/apt-get.cc:1388
  557. msgid "Unable to correct missing packages."
  558. msgstr "Hindi maayos ang mga kulang na pakete."
  559. #: cmdline/apt-get.cc:1389
  560. msgid "Aborting install."
  561. msgstr "Ina-abort ang pag-instol."
  562. #: cmdline/apt-get.cc:1417
  563. msgid ""
  564. "The following package disappeared from your system as\n"
  565. "all files have been overwritten by other packages:"
  566. msgid_plural ""
  567. "The following packages disappeared from your system as\n"
  568. "all files have been overwritten by other packages:"
  569. msgstr[0] ""
  570. msgstr[1] ""
  571. #: cmdline/apt-get.cc:1421
  572. msgid "Note: This is done automatically and on purpose by dpkg."
  573. msgstr ""
  574. #: cmdline/apt-get.cc:1559
  575. #, c-format
  576. msgid "Ignore unavailable target release '%s' of package '%s'"
  577. msgstr ""
  578. #: cmdline/apt-get.cc:1591
  579. #, fuzzy, c-format
  580. msgid "Picking '%s' as source package instead of '%s'\n"
  581. msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
  582. #. if (VerTag.empty() == false && Last == 0)
  583. #: cmdline/apt-get.cc:1629
  584. #, c-format
  585. msgid "Ignore unavailable version '%s' of package '%s'"
  586. msgstr ""
  587. #: cmdline/apt-get.cc:1645
  588. msgid "The update command takes no arguments"
  589. msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
  590. #: cmdline/apt-get.cc:1711
  591. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  592. msgstr ""
  593. #: cmdline/apt-get.cc:1815
  594. msgid ""
  595. "Hmm, seems like the AutoRemover destroyed something which really\n"
  596. "shouldn't happen. Please file a bug report against apt."
  597. msgstr ""
  598. #.
  599. #. if (Packages == 1)
  600. #. {
  601. #. c1out << endl;
  602. #. c1out <<
  603. #. _("Since you only requested a single operation it is extremely likely that\n"
  604. #. "the package is simply not installable and a bug report against\n"
  605. #. "that package should be filed.") << endl;
  606. #. }
  607. #.
  608. #: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987
  609. msgid "The following information may help to resolve the situation:"
  610. msgstr ""
  611. "Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:"
  612. #: cmdline/apt-get.cc:1822
  613. #, fuzzy
  614. msgid "Internal Error, AutoRemover broke stuff"
  615. msgstr "Error na internal, may nasira ang problem resolver"
  616. #: cmdline/apt-get.cc:1829
  617. #, fuzzy
  618. msgid ""
  619. "The following package was automatically installed and is no longer required:"
  620. msgid_plural ""
  621. "The following packages were automatically installed and are no longer "
  622. "required:"
  623. msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
  624. msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
  625. #: cmdline/apt-get.cc:1833
  626. #, fuzzy, c-format
  627. msgid "%lu package was automatically installed and is no longer required.\n"
  628. msgid_plural ""
  629. "%lu packages were automatically installed and are no longer required.\n"
  630. msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
  631. msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
  632. #: cmdline/apt-get.cc:1835
  633. msgid "Use 'apt-get autoremove' to remove it."
  634. msgid_plural "Use 'apt-get autoremove' to remove them."
  635. msgstr[0] ""
  636. msgstr[1] ""
  637. #: cmdline/apt-get.cc:1854
  638. msgid "Internal error, AllUpgrade broke stuff"
  639. msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade"
  640. #: cmdline/apt-get.cc:1953
  641. msgid "You might want to run 'apt-get -f install' to correct these:"
  642. msgstr ""
  643. "Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:"
  644. #: cmdline/apt-get.cc:1957
  645. msgid ""
  646. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  647. "solution)."
  648. msgstr ""
  649. "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang "
  650. "mga pakete (o magtakda ng solusyon)."
  651. #: cmdline/apt-get.cc:1972
  652. msgid ""
  653. "Some packages could not be installed. This may mean that you have\n"
  654. "requested an impossible situation or if you are using the unstable\n"
  655. "distribution that some required packages have not yet been created\n"
  656. "or been moved out of Incoming."
  657. msgstr ""
  658. "May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n"
  659. "o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n"
  660. "kailangan na hindi pa nalikha o linipat mula sa Incoming."
  661. #: cmdline/apt-get.cc:1993
  662. msgid "Broken packages"
  663. msgstr "Sirang mga pakete"
  664. #: cmdline/apt-get.cc:2019
  665. msgid "The following extra packages will be installed:"
  666. msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:"
  667. #: cmdline/apt-get.cc:2109
  668. msgid "Suggested packages:"
  669. msgstr "Mga paketeng mungkahi:"
  670. #: cmdline/apt-get.cc:2110
  671. msgid "Recommended packages:"
  672. msgstr "Mga paketeng rekomendado:"
  673. #: cmdline/apt-get.cc:2152
  674. #, c-format
  675. msgid "Couldn't find package %s"
  676. msgstr "Hindi mahanap ang paketeng %s"
  677. #: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70
  678. #, fuzzy, c-format
  679. msgid "%s set to automatically installed.\n"
  680. msgstr "ngunit ang %s ay iluluklok"
  681. #: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114
  682. msgid ""
  683. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  684. "instead."
  685. msgstr ""
  686. #: cmdline/apt-get.cc:2183
  687. msgid "Calculating upgrade... "
  688. msgstr "Sinusuri ang pag-upgrade... "
  689. #: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115
  690. msgid "Failed"
  691. msgstr "Bigo"
  692. #: cmdline/apt-get.cc:2191
  693. msgid "Done"
  694. msgstr "Tapos"
  695. #: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266
  696. msgid "Internal error, problem resolver broke stuff"
  697. msgstr "Error na internal, may nasira ang problem resolver"
  698. #: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330
  699. msgid "Unable to lock the download directory"
  700. msgstr "Hindi maaldaba ang directory ng download"
  701. #: cmdline/apt-get.cc:2386
  702. #, c-format
  703. msgid "Can't find a source to download version '%s' of '%s'"
  704. msgstr ""
  705. #: cmdline/apt-get.cc:2391
  706. #, c-format
  707. msgid "Downloading %s %s"
  708. msgstr ""
  709. #: cmdline/apt-get.cc:2451
  710. msgid "Must specify at least one package to fetch source for"
  711. msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source"
  712. #: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803
  713. #, c-format
  714. msgid "Unable to find a source package for %s"
  715. msgstr "Hindi mahanap ang paketeng source para sa %s"
  716. #: cmdline/apt-get.cc:2508
  717. #, c-format
  718. msgid ""
  719. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  720. "%s\n"
  721. msgstr ""
  722. #: cmdline/apt-get.cc:2513
  723. #, c-format
  724. msgid ""
  725. "Please use:\n"
  726. "bzr branch %s\n"
  727. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  728. msgstr ""
  729. #: cmdline/apt-get.cc:2566
  730. #, c-format
  731. msgid "Skipping already downloaded file '%s'\n"
  732. msgstr "Linaktawan ang nakuha na na talaksan '%s'\n"
  733. #: cmdline/apt-get.cc:2603
  734. #, c-format
  735. msgid "You don't have enough free space in %s"
  736. msgstr "Kulang kayo ng libreng puwang sa %s"
  737. #. TRANSLATOR: The required space between number and unit is already included
  738. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  739. #: cmdline/apt-get.cc:2612
  740. #, c-format
  741. msgid "Need to get %sB/%sB of source archives.\n"
  742. msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n"
  743. #. TRANSLATOR: The required space between number and unit is already included
  744. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  745. #: cmdline/apt-get.cc:2617
  746. #, c-format
  747. msgid "Need to get %sB of source archives.\n"
  748. msgstr "Kailangang kumuha ng %sB ng arkibong source.\n"
  749. #: cmdline/apt-get.cc:2623
  750. #, c-format
  751. msgid "Fetch source %s\n"
  752. msgstr "Kunin ang Source %s\n"
  753. #: cmdline/apt-get.cc:2661
  754. msgid "Failed to fetch some archives."
  755. msgstr "Bigo sa pagkuha ng ilang mga arkibo."
  756. #: cmdline/apt-get.cc:2692
  757. #, c-format
  758. msgid "Skipping unpack of already unpacked source in %s\n"
  759. msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n"
  760. #: cmdline/apt-get.cc:2704
  761. #, c-format
  762. msgid "Unpack command '%s' failed.\n"
  763. msgstr "Bigo ang utos ng pagbuklat '%s'.\n"
  764. #: cmdline/apt-get.cc:2705
  765. #, c-format
  766. msgid "Check if the 'dpkg-dev' package is installed.\n"
  767. msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n"
  768. #: cmdline/apt-get.cc:2727
  769. #, c-format
  770. msgid "Build command '%s' failed.\n"
  771. msgstr "Utos na build '%s' ay bigo.\n"
  772. #: cmdline/apt-get.cc:2747
  773. msgid "Child process failed"
  774. msgstr "Bigo ang prosesong anak"
  775. #: cmdline/apt-get.cc:2766
  776. msgid "Must specify at least one package to check builddeps for"
  777. msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps"
  778. #: cmdline/apt-get.cc:2791
  779. #, c-format
  780. msgid ""
  781. "No architecture information available for %s. See apt.conf(5) APT::"
  782. "Architectures for setup"
  783. msgstr ""
  784. #: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818
  785. #, c-format
  786. msgid "Unable to get build-dependency information for %s"
  787. msgstr "Hindi makuha ang impormasyong build-dependency para sa %s"
  788. #: cmdline/apt-get.cc:2838
  789. #, c-format
  790. msgid "%s has no build depends.\n"
  791. msgstr "Walang build depends ang %s.\n"
  792. #: cmdline/apt-get.cc:3008
  793. #, fuzzy, c-format
  794. msgid ""
  795. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  796. "packages"
  797. msgstr ""
  798. "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
  799. "mahanap"
  800. #: cmdline/apt-get.cc:3026
  801. #, c-format
  802. msgid ""
  803. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  804. "found"
  805. msgstr ""
  806. "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
  807. "mahanap"
  808. #: cmdline/apt-get.cc:3049
  809. #, c-format
  810. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  811. msgstr ""
  812. "Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng "
  813. "%s ay bagong-bago pa lamang."
  814. #: cmdline/apt-get.cc:3088
  815. #, fuzzy, c-format
  816. msgid ""
  817. "%s dependency for %s cannot be satisfied because candidate version of "
  818. "package %s can't satisfy version requirements"
  819. msgstr ""
  820. "Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon "
  821. "ng paketeng %s na tumutugon sa kinakailangang bersyon"
  822. #: cmdline/apt-get.cc:3094
  823. #, fuzzy, c-format
  824. msgid ""
  825. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  826. "version"
  827. msgstr ""
  828. "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
  829. "mahanap"
  830. #: cmdline/apt-get.cc:3117
  831. #, c-format
  832. msgid "Failed to satisfy %s dependency for %s: %s"
  833. msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s"
  834. #: cmdline/apt-get.cc:3133
  835. #, c-format
  836. msgid "Build-dependencies for %s could not be satisfied."
  837. msgstr "Hindi mabuo ang build-dependencies para sa %s."
  838. #: cmdline/apt-get.cc:3138
  839. msgid "Failed to process build dependencies"
  840. msgstr "Bigo sa pagproseso ng build dependencies"
  841. #: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243
  842. #, fuzzy, c-format
  843. msgid "Changelog for %s (%s)"
  844. msgstr "Kumokonekta sa %s (%s)"
  845. #: cmdline/apt-get.cc:3366
  846. msgid "Supported modules:"
  847. msgstr "Suportadong mga Module:"
  848. #: cmdline/apt-get.cc:3407
  849. #, fuzzy
  850. msgid ""
  851. "Usage: apt-get [options] command\n"
  852. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  853. " apt-get [options] source pkg1 [pkg2 ...]\n"
  854. "\n"
  855. "apt-get is a simple command line interface for downloading and\n"
  856. "installing packages. The most frequently used commands are update\n"
  857. "and install.\n"
  858. "\n"
  859. "Commands:\n"
  860. " update - Retrieve new lists of packages\n"
  861. " upgrade - Perform an upgrade\n"
  862. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  863. " remove - Remove packages\n"
  864. " autoremove - Remove automatically all unused packages\n"
  865. " purge - Remove packages and config files\n"
  866. " source - Download source archives\n"
  867. " build-dep - Configure build-dependencies for source packages\n"
  868. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  869. " dselect-upgrade - Follow dselect selections\n"
  870. " clean - Erase downloaded archive files\n"
  871. " autoclean - Erase old downloaded archive files\n"
  872. " check - Verify that there are no broken dependencies\n"
  873. " changelog - Download and display the changelog for the given package\n"
  874. " download - Download the binary package into the current directory\n"
  875. "\n"
  876. "Options:\n"
  877. " -h This help text.\n"
  878. " -q Loggable output - no progress indicator\n"
  879. " -qq No output except for errors\n"
  880. " -d Download only - do NOT install or unpack archives\n"
  881. " -s No-act. Perform ordering simulation\n"
  882. " -y Assume Yes to all queries and do not prompt\n"
  883. " -f Attempt to correct a system with broken dependencies in place\n"
  884. " -m Attempt to continue if archives are unlocatable\n"
  885. " -u Show a list of upgraded packages as well\n"
  886. " -b Build the source package after fetching it\n"
  887. " -V Show verbose version numbers\n"
  888. " -c=? Read this configuration file\n"
  889. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  890. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  891. "pages for more information and options.\n"
  892. " This APT has Super Cow Powers.\n"
  893. msgstr ""
  894. "Pag-gamit: apt-get [mga option] utos\n"
  895. " apt-get [mga option] install|remove pkt1 [pkt2 ...]\n"
  896. " apt-get [mga option] source pkt1 [pkt2 ...]\n"
  897. "\n"
  898. "Ang apt-get ay payak na command line interface para sa pagkuha at\n"
  899. "pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n"
  900. "at install.\n"
  901. "\n"
  902. "Mga utos:\n"
  903. " update - Kunin ang bagong listahan ng mga pakete\n"
  904. " upgrade - Gumawa ng upgrade\n"
  905. " install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n"
  906. " remove - Mag-tanggal ng mga pakete\n"
  907. " source - Kumuha ng arkibong source\n"
  908. " build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n"
  909. " dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n"
  910. " dselect-upgrade - Sundan ang mga pinili sa dselect\n"
  911. " clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n"
  912. " autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n"
  913. " check - Tiyakin na walang mga sirang dependensiya\n"
  914. "\n"
  915. "Mga option:\n"
  916. " -h Itong tulong na ito.\n"
  917. " -q Output na maaaring itala - walang indikator ng progreso\n"
  918. " -qq Walang output maliban sa mga error\n"
  919. " -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n"
  920. " -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n"
  921. " -y Assume Yes to all queries and do not prompt\n"
  922. " -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n"
  923. " -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n"
  924. " -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n"
  925. " -b Ibuo ang paketeng source matapos kunin ito\n"
  926. " -V Ipakita ng buo ang bilang ng bersyon\n"
  927. " -c=? Basahin itong talaksang pagkaayos\n"
  928. " -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
  929. "Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n"
  930. "para sa karagdagang impormasyon at mga option.\n"
  931. " Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n"
  932. #: cmdline/apt-get.cc:3572
  933. msgid ""
  934. "NOTE: This is only a simulation!\n"
  935. " apt-get needs root privileges for real execution.\n"
  936. " Keep also in mind that locking is deactivated,\n"
  937. " so don't depend on the relevance to the real current situation!"
  938. msgstr ""
  939. #: cmdline/acqprogress.cc:60
  940. msgid "Hit "
  941. msgstr "Tumama "
  942. #: cmdline/acqprogress.cc:84
  943. msgid "Get:"
  944. msgstr "Kunin: "
  945. #: cmdline/acqprogress.cc:115
  946. msgid "Ign "
  947. msgstr "DiPansin "
  948. #: cmdline/acqprogress.cc:119
  949. msgid "Err "
  950. msgstr "Err "
  951. #: cmdline/acqprogress.cc:140
  952. #, c-format
  953. msgid "Fetched %sB in %s (%sB/s)\n"
  954. msgstr "Nakakuha ng %sB ng %s (%sB/s)\n"
  955. #: cmdline/acqprogress.cc:230
  956. #, c-format
  957. msgid " [Working]"
  958. msgstr " [May ginagawa]"
  959. #: cmdline/acqprogress.cc:286
  960. #, c-format
  961. msgid ""
  962. "Media change: please insert the disc labeled\n"
  963. " '%s'\n"
  964. "in the drive '%s' and press enter\n"
  965. msgstr ""
  966. "Pagpalit ng Media: Ikasa ang disk na may pangalang\n"
  967. " '%s'\n"
  968. "sa drive '%s' at pindutin ang enter\n"
  969. #: cmdline/apt-mark.cc:55
  970. #, fuzzy, c-format
  971. msgid "%s can not be marked as it is not installed.\n"
  972. msgstr "ngunit ito ay hindi nakaluklok"
  973. #: cmdline/apt-mark.cc:61
  974. #, fuzzy, c-format
  975. msgid "%s was already set to manually installed.\n"
  976. msgstr "ngunit ang %s ay iluluklok"
  977. #: cmdline/apt-mark.cc:63
  978. #, fuzzy, c-format
  979. msgid "%s was already set to automatically installed.\n"
  980. msgstr "ngunit ang %s ay iluluklok"
  981. #: cmdline/apt-mark.cc:228
  982. #, fuzzy, c-format
  983. msgid "%s was already set on hold.\n"
  984. msgstr "%s ay pinakabagong bersyon na.\n"
  985. #: cmdline/apt-mark.cc:230
  986. #, fuzzy, c-format
  987. msgid "%s was already not hold.\n"
  988. msgstr "%s ay pinakabagong bersyon na.\n"
  989. #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
  990. #: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002
  991. #, c-format
  992. msgid "Waited for %s but it wasn't there"
  993. msgstr "Naghintay, para sa %s ngunit wala nito doon"
  994. #: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
  995. #, fuzzy, c-format
  996. msgid "%s set on hold.\n"
  997. msgstr "ngunit ang %s ay iluluklok"
  998. #: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
  999. #, fuzzy, c-format
  1000. msgid "Canceled hold on %s.\n"
  1001. msgstr "Bigo ang pagbukas ng %s"
  1002. #: cmdline/apt-mark.cc:332
  1003. msgid "Executing dpkg failed. Are you root?"
  1004. msgstr ""
  1005. #: cmdline/apt-mark.cc:379
  1006. msgid ""
  1007. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1008. "\n"
  1009. "apt-mark is a simple command line interface for marking packages\n"
  1010. "as manually or automatically installed. It can also list marks.\n"
  1011. "\n"
  1012. "Commands:\n"
  1013. " auto - Mark the given packages as automatically installed\n"
  1014. " manual - Mark the given packages as manually installed\n"
  1015. "\n"
  1016. "Options:\n"
  1017. " -h This help text.\n"
  1018. " -q Loggable output - no progress indicator\n"
  1019. " -qq No output except for errors\n"
  1020. " -s No-act. Just prints what would be done.\n"
  1021. " -f read/write auto/manual marking in the given file\n"
  1022. " -c=? Read this configuration file\n"
  1023. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1024. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  1025. msgstr ""
  1026. #: methods/cdrom.cc:203
  1027. #, c-format
  1028. msgid "Unable to read the cdrom database %s"
  1029. msgstr "Hindi mabasa ang database ng cdrom %s"
  1030. #: methods/cdrom.cc:212
  1031. msgid ""
  1032. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1033. "cannot be used to add new CD-ROMs"
  1034. msgstr ""
  1035. "Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi "
  1036. "maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD"
  1037. #: methods/cdrom.cc:222
  1038. msgid "Wrong CD-ROM"
  1039. msgstr "Maling CD"
  1040. #: methods/cdrom.cc:249
  1041. #, c-format
  1042. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1043. msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito."
  1044. #: methods/cdrom.cc:254
  1045. msgid "Disk not found."
  1046. msgstr "Hindi nahanap ang Disk."
  1047. #: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:273
  1048. msgid "File not found"
  1049. msgstr "Hindi Nahanap ang Talaksan"
  1050. #: methods/copy.cc:46 methods/gzip.cc:105 methods/gzip.cc:114
  1051. #: methods/rred.cc:512 methods/rred.cc:521
  1052. msgid "Failed to stat"
  1053. msgstr "Bigo ang pag-stat"
  1054. #: methods/copy.cc:83 methods/gzip.cc:111 methods/rred.cc:518
  1055. msgid "Failed to set modification time"
  1056. msgstr "Bigo ang pagtakda ng oras ng pagbago"
  1057. #: methods/file.cc:47
  1058. msgid "Invalid URI, local URIS must not start with //"
  1059. msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //"
  1060. #. Login must be before getpeername otherwise dante won't work.
  1061. #: methods/ftp.cc:173
  1062. msgid "Logging in"
  1063. msgstr "Pumapasok"
  1064. #: methods/ftp.cc:179
  1065. msgid "Unable to determine the peer name"
  1066. msgstr "Hindi malaman ang pangalan ng peer"
  1067. #: methods/ftp.cc:184
  1068. msgid "Unable to determine the local name"
  1069. msgstr "Hindi malaman ang pangalang lokal"
  1070. #: methods/ftp.cc:215 methods/ftp.cc:243
  1071. #, c-format
  1072. msgid "The server refused the connection and said: %s"
  1073. msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s"
  1074. #: methods/ftp.cc:221
  1075. #, c-format
  1076. msgid "USER failed, server said: %s"
  1077. msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s"
  1078. #: methods/ftp.cc:228
  1079. #, c-format
  1080. msgid "PASS failed, server said: %s"
  1081. msgstr "Bigo ang PASS, sabi ng server ay: %s"
  1082. #: methods/ftp.cc:248
  1083. msgid ""
  1084. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1085. "is empty."
  1086. msgstr ""
  1087. "May tinakdang katuwang na server ngunit walang login script, walang laman "
  1088. "ang Acquire::ftp::ProxyLogin."
  1089. #: methods/ftp.cc:276
  1090. #, c-format
  1091. msgid "Login script command '%s' failed, server said: %s"
  1092. msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s"
  1093. #: methods/ftp.cc:302
  1094. #, c-format
  1095. msgid "TYPE failed, server said: %s"
  1096. msgstr "Bigo ang TYPE, sabi ng server ay: %s"
  1097. #: methods/ftp.cc:340 methods/ftp.cc:451 methods/rsh.cc:192 methods/rsh.cc:235
  1098. msgid "Connection timeout"
  1099. msgstr "Lumipas ang koneksyon"
  1100. #: methods/ftp.cc:346
  1101. msgid "Server closed the connection"
  1102. msgstr "Sinarhan ng server ang koneksyon"
  1103. #: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1254
  1104. #: apt-pkg/contrib/fileutl.cc:1263 apt-pkg/contrib/fileutl.cc:1266
  1105. msgid "Read error"
  1106. msgstr "Error sa pagbasa"
  1107. #: methods/ftp.cc:356 methods/rsh.cc:206
  1108. msgid "A response overflowed the buffer."
  1109. msgstr "May sagot na bumubo sa buffer."
  1110. #: methods/ftp.cc:373 methods/ftp.cc:385
  1111. msgid "Protocol corruption"
  1112. msgstr "Sira ang protocol"
  1113. #: methods/ftp.cc:457 methods/rred.cc:238 methods/rsh.cc:241
  1114. #: apt-pkg/contrib/fileutl.cc:1352 apt-pkg/contrib/fileutl.cc:1361
  1115. #: apt-pkg/contrib/fileutl.cc:1364 apt-pkg/contrib/fileutl.cc:1390
  1116. msgid "Write error"
  1117. msgstr "Error sa pagsulat"
  1118. #: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737
  1119. msgid "Could not create a socket"
  1120. msgstr "Hindi maka-likha ng socket"
  1121. #: methods/ftp.cc:707
  1122. msgid "Could not connect data socket, connection timed out"
  1123. msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon"
  1124. #: methods/ftp.cc:713
  1125. msgid "Could not connect passive socket."
  1126. msgstr "Hindi maka-konekta sa socket na passive."
  1127. #: methods/ftp.cc:730
  1128. msgid "getaddrinfo was unable to get a listening socket"
  1129. msgstr "di makakuha ang getaddrinfo ng socket na nakikinig"
  1130. #: methods/ftp.cc:744
  1131. msgid "Could not bind a socket"
  1132. msgstr "Hindi maka-bind ng socket"
  1133. #: methods/ftp.cc:748
  1134. msgid "Could not listen on the socket"
  1135. msgstr "Hindi makarinig sa socket"
  1136. #: methods/ftp.cc:755
  1137. msgid "Could not determine the socket's name"
  1138. msgstr "Hindi malaman ang pangalan ng socket"
  1139. #: methods/ftp.cc:787
  1140. msgid "Unable to send PORT command"
  1141. msgstr "Hindi makapagpadala ng utos na PORT"
  1142. #: methods/ftp.cc:797
  1143. #, c-format
  1144. msgid "Unknown address family %u (AF_*)"
  1145. msgstr "Di kilalang pamilya ng address %u (AF_*)"
  1146. #: methods/ftp.cc:806
  1147. #, c-format
  1148. msgid "EPRT failed, server said: %s"
  1149. msgstr "Bigo ang EPRT, sabi ng server ay: %s"
  1150. #: methods/ftp.cc:826
  1151. msgid "Data socket connect timed out"
  1152. msgstr "Nag-timeout ang socket ng datos"
  1153. #: methods/ftp.cc:833
  1154. msgid "Unable to accept connection"
  1155. msgstr "Hindi makatanggap ng koneksyon"
  1156. #: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311
  1157. msgid "Problem hashing file"
  1158. msgstr "Problema sa pag-hash ng talaksan"
  1159. #: methods/ftp.cc:885
  1160. #, c-format
  1161. msgid "Unable to fetch file, server said '%s'"
  1162. msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'"
  1163. #: methods/ftp.cc:900 methods/rsh.cc:330
  1164. msgid "Data socket timed out"
  1165. msgstr "Nag-timeout ang socket ng datos"
  1166. #: methods/ftp.cc:930
  1167. #, c-format
  1168. msgid "Data transfer failed, server said '%s'"
  1169. msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'"
  1170. #. Get the files information
  1171. #: methods/ftp.cc:1007
  1172. msgid "Query"
  1173. msgstr "Tanong"
  1174. #: methods/ftp.cc:1119
  1175. msgid "Unable to invoke "
  1176. msgstr "Hindi ma-invoke "
  1177. #: methods/connect.cc:75
  1178. #, c-format
  1179. msgid "Connecting to %s (%s)"
  1180. msgstr "Kumokonekta sa %s (%s)"
  1181. #: methods/connect.cc:86
  1182. #, c-format
  1183. msgid "[IP: %s %s]"
  1184. msgstr "[IP: %s %s]"
  1185. #: methods/connect.cc:93
  1186. #, c-format
  1187. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1188. msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)"
  1189. #: methods/connect.cc:99
  1190. #, c-format
  1191. msgid "Cannot initiate the connection to %s:%s (%s)."
  1192. msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)."
  1193. #: methods/connect.cc:107
  1194. #, c-format
  1195. msgid "Could not connect to %s:%s (%s), connection timed out"
  1196. msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon"
  1197. #: methods/connect.cc:125
  1198. #, c-format
  1199. msgid "Could not connect to %s:%s (%s)."
  1200. msgstr "Hindi maka-konekta sa %s:%s (%s)."
  1201. #. We say this mainly because the pause here is for the
  1202. #. ssh connection that is still going
  1203. #: methods/connect.cc:153 methods/rsh.cc:433
  1204. #, c-format
  1205. msgid "Connecting to %s"
  1206. msgstr "Kumokonekta sa %s"
  1207. #: methods/connect.cc:172 methods/connect.cc:191
  1208. #, c-format
  1209. msgid "Could not resolve '%s'"
  1210. msgstr "Hindi maresolba ang '%s'"
  1211. #: methods/connect.cc:197
  1212. #, c-format
  1213. msgid "Temporary failure resolving '%s'"
  1214. msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'"
  1215. #: methods/connect.cc:200
  1216. #, fuzzy, c-format
  1217. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1218. msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)"
  1219. #: methods/connect.cc:247
  1220. #, fuzzy, c-format
  1221. msgid "Unable to connect to %s:%s:"
  1222. msgstr "Hindi maka-konekta sa %s %s:"
  1223. #: methods/gpgv.cc:180
  1224. msgid ""
  1225. "Internal error: Good signature, but could not determine key fingerprint?!"
  1226. msgstr ""
  1227. "Error na internal: Tanggap na lagda, ngunit hindi malaman ang key "
  1228. "fingerprint?!"
  1229. #: methods/gpgv.cc:185
  1230. msgid "At least one invalid signature was encountered."
  1231. msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro."
  1232. #: methods/gpgv.cc:189
  1233. #, fuzzy
  1234. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1235. msgstr ""
  1236. "Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gpgv?)"
  1237. #: methods/gpgv.cc:194
  1238. msgid "Unknown error executing gpgv"
  1239. msgstr "Hindi kilalang error sa pag-execute ng gpgv"
  1240. #: methods/gpgv.cc:228 methods/gpgv.cc:235
  1241. msgid "The following signatures were invalid:\n"
  1242. msgstr "Ang sumusunod na mga lagda ay imbalido:\n"
  1243. #: methods/gpgv.cc:242
  1244. msgid ""
  1245. "The following signatures couldn't be verified because the public key is not "
  1246. "available:\n"
  1247. msgstr ""
  1248. "Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi "
  1249. "available:\n"
  1250. #: methods/gzip.cc:65
  1251. msgid "Empty files can't be valid archives"
  1252. msgstr ""
  1253. #: methods/http.cc:394
  1254. msgid "Waiting for headers"
  1255. msgstr "Naghihintay ng panimula"
  1256. #: methods/http.cc:544
  1257. msgid "Bad header line"
  1258. msgstr "Maling linyang panimula"
  1259. #: methods/http.cc:569 methods/http.cc:576
  1260. msgid "The HTTP server sent an invalid reply header"
  1261. msgstr "Nagpadala ang HTTP server ng di tanggap na reply header"
  1262. #: methods/http.cc:606
  1263. msgid "The HTTP server sent an invalid Content-Length header"
  1264. msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header"
  1265. #: methods/http.cc:621
  1266. msgid "The HTTP server sent an invalid Content-Range header"
  1267. msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header"
  1268. #: methods/http.cc:623
  1269. msgid "This HTTP server has broken range support"
  1270. msgstr "Sira ang range support ng HTTP server na ito"
  1271. #: methods/http.cc:647
  1272. msgid "Unknown date format"
  1273. msgstr "Di kilalang anyo ng petsa"
  1274. #: methods/http.cc:818
  1275. msgid "Select failed"
  1276. msgstr "Bigo ang pagpili"
  1277. #: methods/http.cc:823
  1278. msgid "Connection timed out"
  1279. msgstr "Nag-timeout ang koneksyon"
  1280. #: methods/http.cc:846
  1281. msgid "Error writing to output file"
  1282. msgstr "Error sa pagsulat ng talaksang output"
  1283. #: methods/http.cc:877
  1284. msgid "Error writing to file"
  1285. msgstr "Error sa pagsulat sa talaksan"
  1286. #: methods/http.cc:905
  1287. msgid "Error writing to the file"
  1288. msgstr "Error sa pagsusulat sa talaksan"
  1289. #: methods/http.cc:919
  1290. msgid "Error reading from server. Remote end closed connection"
  1291. msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
  1292. #: methods/http.cc:921
  1293. msgid "Error reading from server"
  1294. msgstr "Error sa pagbasa mula sa server"
  1295. #: methods/http.cc:1194
  1296. msgid "Bad header data"
  1297. msgstr "Maling datos sa panimula"
  1298. #: methods/http.cc:1211 methods/http.cc:1266
  1299. msgid "Connection failed"
  1300. msgstr "Bigo ang koneksyon"
  1301. #: methods/http.cc:1358
  1302. msgid "Internal error"
  1303. msgstr "Internal na error"
  1304. #. Only warn if there are no sources.list.d.
  1305. #. Only warn if there is no sources.list file.
  1306. #: methods/mirror.cc:95 apt-inst/extract.cc:465
  1307. #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400
  1308. #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208
  1309. #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
  1310. #: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
  1311. #, c-format
  1312. msgid "Unable to read %s"
  1313. msgstr "Hindi mabasa ang %s"
  1314. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:179
  1315. #: apt-pkg/contrib/cdromutl.cc:213 apt-pkg/acquire.cc:491
  1316. #: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60
  1317. #: apt-pkg/clean.cc:123
  1318. #, c-format
  1319. msgid "Unable to change to %s"
  1320. msgstr "Di makalipat sa %s"
  1321. #. FIXME: fallback to a default mirror here instead
  1322. #. and provide a config option to define that default
  1323. #: methods/mirror.cc:280
  1324. #, c-format
  1325. msgid "No mirror file '%s' found "
  1326. msgstr ""
  1327. #. FIXME: fallback to a default mirror here instead
  1328. #. and provide a config option to define that default
  1329. #: methods/mirror.cc:287
  1330. #, fuzzy, c-format
  1331. msgid "Can not read mirror file '%s'"
  1332. msgstr "Hindi mabuksan ang talaksang %s"
  1333. #: methods/mirror.cc:442
  1334. #, c-format
  1335. msgid "[Mirror: %s]"
  1336. msgstr ""
  1337. #: methods/rred.cc:491
  1338. #, c-format
  1339. msgid ""
  1340. "Could not patch %s with mmap and with file operation usage - the patch seems "
  1341. "to be corrupt."
  1342. msgstr ""
  1343. #: methods/rred.cc:496
  1344. #, c-format
  1345. msgid ""
  1346. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  1347. "to be corrupt."
  1348. msgstr ""
  1349. #: methods/rsh.cc:99 ftparchive/multicompress.cc:168
  1350. msgid "Failed to create IPC pipe to subprocess"
  1351. msgstr "Bigo sa paglikha ng IPC pipe sa subprocess"
  1352. #: methods/rsh.cc:338
  1353. msgid "Connection closed prematurely"
  1354. msgstr "Nagsara ng maaga ang koneksyon"
  1355. #: dselect/install:32
  1356. msgid "Bad default setting!"
  1357. msgstr "Maling nakatakda na default!"
  1358. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1359. #: dselect/install:105 dselect/update:45
  1360. msgid "Press enter to continue."
  1361. msgstr "Pindutin ang enter upang magpatuloy."
  1362. #: dselect/install:91
  1363. msgid "Do you want to erase any previously downloaded .deb files?"
  1364. msgstr ""
  1365. #: dselect/install:101
  1366. #, fuzzy
  1367. msgid "Some errors occurred while unpacking. Packages that were installed"
  1368. msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang"
  1369. #: dselect/install:102
  1370. #, fuzzy
  1371. msgid "will be configured. This may result in duplicate errors"
  1372. msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble"
  1373. #: dselect/install:103
  1374. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1375. msgstr ""
  1376. "o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang"
  1377. #: dselect/install:104
  1378. msgid ""
  1379. "above this message are important. Please fix them and run [I]nstall again"
  1380. msgstr ""
  1381. "sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin "
  1382. "muli ang [I]luklok/Instol."
  1383. #: dselect/update:30
  1384. msgid "Merging available information"
  1385. msgstr "Pinagsasama ang magagamit na impormasyon"
  1386. #: cmdline/apt-extracttemplates.cc:102
  1387. #, c-format
  1388. msgid "%s not a valid DEB package."
  1389. msgstr "%s ay hindi balido na paketeng DEB."
  1390. #: cmdline/apt-extracttemplates.cc:236
  1391. msgid ""
  1392. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1393. "\n"
  1394. "apt-extracttemplates is a tool to extract config and template info\n"
  1395. "from debian packages\n"
  1396. "\n"
  1397. "Options:\n"
  1398. " -h This help text\n"
  1399. " -t Set the temp dir\n"
  1400. " -c=? Read this configuration file\n"
  1401. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1402. msgstr ""
  1403. "Pag-gamit: apt-extracttemplates talaksan1 [talaksan2 ...]\n"
  1404. "\n"
  1405. "Ang apt-extracttemplates ay kagamitan sa pagkuha ng info tungkol\n"
  1406. "sa pagkaayos at template mula sa mga paketeng debian\n"
  1407. "\n"
  1408. "Mga opsyon:\n"
  1409. " -h Itong tulong na ito\n"
  1410. " -t Itakda ang dir na pansamantala\n"
  1411. " -c=? Basahin ang talaksang pagkaayos na ito\n"
  1412. " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n"
  1413. #: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335
  1414. #, c-format
  1415. msgid "Unable to write to %s"
  1416. msgstr "Hindi makapagsulat sa %s"
  1417. #: cmdline/apt-extracttemplates.cc:313
  1418. msgid "Cannot get debconf version. Is debconf installed?"
  1419. msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?"
  1420. #: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348
  1421. msgid "Package extension list is too long"
  1422. msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete"
  1423. #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190
  1424. #: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263
  1425. #: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299
  1426. #, c-format
  1427. msgid "Error processing directory %s"
  1428. msgstr "Error sa pagproseso ng directory %s"
  1429. #: ftparchive/apt-ftparchive.cc:261
  1430. msgid "Source extension list is too long"
  1431. msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)"
  1432. #: ftparchive/apt-ftparchive.cc:378
  1433. msgid "Error writing header to contents file"
  1434. msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)"
  1435. #: ftparchive/apt-ftparchive.cc:408
  1436. #, c-format
  1437. msgid "Error processing contents %s"
  1438. msgstr "Error sa pagproseso ng Contents %s"
  1439. #: ftparchive/apt-ftparchive.cc:596
  1440. msgid ""
  1441. "Usage: apt-ftparchive [options] command\n"
  1442. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1443. " sources srcpath [overridefile [pathprefix]]\n"
  1444. " contents path\n"
  1445. " release path\n"
  1446. " generate config [groups]\n"
  1447. " clean config\n"
  1448. "\n"
  1449. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1450. "many styles of generation from fully automated to functional replacements\n"
  1451. "for dpkg-scanpackages and dpkg-scansources\n"
  1452. "\n"
  1453. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1454. "Package file contains the contents of all the control fields from\n"
  1455. "each package as well as the MD5 hash and filesize. An override file\n"
  1456. "is supported to force the value of Priority and Section.\n"
  1457. "\n"
  1458. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1459. "The --source-override option can be used to specify a src override file\n"
  1460. "\n"
  1461. "The 'packages' and 'sources' command should be run in the root of the\n"
  1462. "tree. BinaryPath should point to the base of the recursive search and \n"
  1463. "override file should contain the override flags. Pathprefix is\n"
  1464. "appended to the filename fields if present. Example usage from the \n"
  1465. "Debian archive:\n"
  1466. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1467. " dists/potato/main/binary-i386/Packages\n"
  1468. "\n"
  1469. "Options:\n"
  1470. " -h This help text\n"
  1471. " --md5 Control MD5 generation\n"
  1472. " -s=? Source override file\n"
  1473. " -q Quiet\n"
  1474. " -d=? Select the optional caching database\n"
  1475. " --no-delink Enable delinking debug mode\n"
  1476. " --contents Control contents file generation\n"
  1477. " -c=? Read this configuration file\n"
  1478. " -o=? Set an arbitrary configuration option"
  1479. msgstr ""
  1480. "Pag-gamit: apt-ftparchive [mga option] utos\n"
  1481. "Mga utos: packages binarypath [overridefile [pathprefix]]\n"
  1482. " sources srcpath [overridefile [pathprefix]]\n"
  1483. " contents path\n"
  1484. " release path\n"
  1485. " generate config [mga grupo]\n"
  1486. " clean config\n"
  1487. "\n"
  1488. "Ang apt-ftparchive ay gumagawa ng talaksang index para sa arkibong Debian.\n"
  1489. "Suportado nito ang maraming estilo ng pagbuo mula sa awtomatikong buo\n"
  1490. "at kapalit ng dpkg-scanpackages at dpkg-scansources\n"
  1491. "\n"
  1492. "Bumubuo ang apt-ftparchive ng mga talaksang Package mula sa puno ng mga\n"
  1493. ".deb. Ang talaksang Package ay naglalaman ng laman ng lahat ng control "
  1494. "field\n"
  1495. "mula sa bawat pakete pati na rin ang MD5 hash at laki ng talaksan. "
  1496. "Suportado\n"
  1497. "ang pag-gamit ng talaksang override upang pilitin ang halaga ng Priority at "
  1498. "Section.\n"
  1499. "\n"
  1500. "Bumubuo din ang apt-ftparchive ng talaksang Sources mula sa puno ng mga\n"
  1501. ".dsc. Ang option na --source-override ay maaaring gamitin upang itakda\n"
  1502. "ang talaksang override ng src\n"
  1503. "\n"
  1504. "Ang mga utos na 'packages' at 'sources' ay dapat patakbuhin sa ugat ng\n"
  1505. "puno. Kailangan nakaturo ang BinaryPath sa ugat ng paghahanap na recursive\n"
  1506. "at ang talaksang override ay dapat naglalaman ng mga flag na override. Ang\n"
  1507. "pathprefix ay dinudugtong sa harap ng mga pangalan ng talaksan kung "
  1508. "mayroon.\n"
  1509. "Halimbawa ng pag-gamit mula sa arkibong Debian:\n"
  1510. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1511. " dists/potato/main/binary-i386/Packages\n"
  1512. "\n"
  1513. "Mga option:\n"
  1514. " -h Itong tulong na ito\n"
  1515. " --md5 Pagbuo ng MD5\n"
  1516. " -s=? Talaksang override ng source\n"
  1517. " -q Tahimik\n"
  1518. " -d=? Piliin ang optional caching database\n"
  1519. " --no-delink Enable delinking debug mode\n"
  1520. " --contents Pagbuo ng talaksang contents\n"
  1521. " -c=? Basahin itong talaksang pagkaayos\n"
  1522. " -o=? Itakda ang isang option na pagkaayos"
  1523. #: ftparchive/apt-ftparchive.cc:802
  1524. msgid "No selections matched"
  1525. msgstr "Walang mga pinili na tugma"
  1526. #: ftparchive/apt-ftparchive.cc:880
  1527. #, c-format
  1528. msgid "Some files are missing in the package file group `%s'"
  1529. msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'"
  1530. #: ftparchive/cachedb.cc:47
  1531. #, c-format
  1532. msgid "DB was corrupted, file renamed to %s.old"
  1533. msgstr "Nasira ang DB, pinalitan ng pangalan ang talaksan sa %s.old"
  1534. #: ftparchive/cachedb.cc:65
  1535. #, c-format
  1536. msgid "DB is old, attempting to upgrade %s"
  1537. msgstr "Luma ang DB, sinusubukang maupgrade ang %s"
  1538. #: ftparchive/cachedb.cc:76
  1539. #, fuzzy
  1540. msgid ""
  1541. "DB format is invalid. If you upgraded from an older version of apt, please "
  1542. "remove and re-create the database."
  1543. msgstr ""
  1544. "Hindi tanggap ang anyo ng DB. Kung kayo ay nagsariwa mula sa nakaraang "
  1545. "bersiyon ng apt, tanggalin at likhain muli ang database."
  1546. #: ftparchive/cachedb.cc:81
  1547. #, c-format
  1548. msgid "Unable to open DB file %s: %s"
  1549. msgstr "Hindi mabuksan ang talaksang DB %s: %s"
  1550. #: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  1551. #: apt-inst/extract.cc:210
  1552. #, c-format
  1553. msgid "Failed to stat %s"
  1554. msgstr "Bigo ang pag-stat ng %s"
  1555. #: ftparchive/cachedb.cc:249
  1556. msgid "Archive has no control record"
  1557. msgstr "Walang kontrol rekord ang arkibo"
  1558. #: ftparchive/cachedb.cc:490
  1559. msgid "Unable to get a cursor"
  1560. msgstr "Hindi makakuha ng cursor"
  1561. #: ftparchive/writer.cc:80
  1562. #, c-format
  1563. msgid "W: Unable to read directory %s\n"
  1564. msgstr "W: Hindi mabasa ang directory %s\n"
  1565. #: ftparchive/writer.cc:85
  1566. #, c-format
  1567. msgid "W: Unable to stat %s\n"
  1568. msgstr "W: Hindi ma-stat %s\n"
  1569. #: ftparchive/writer.cc:141
  1570. msgid "E: "
  1571. msgstr "E: "
  1572. #: ftparchive/writer.cc:143
  1573. msgid "W: "
  1574. msgstr "W: "
  1575. #: ftparchive/writer.cc:150
  1576. msgid "E: Errors apply to file "
  1577. msgstr "E: Mga error ay tumutukoy sa talaksang "
  1578. #: ftparchive/writer.cc:168 ftparchive/writer.cc:200
  1579. #, c-format
  1580. msgid "Failed to resolve %s"
  1581. msgstr "Bigo sa pag-resolba ng %s"
  1582. #: ftparchive/writer.cc:181
  1583. msgid "Tree walking failed"
  1584. msgstr "Bigo ang paglakad sa puno"
  1585. #: ftparchive/writer.cc:208
  1586. #, c-format
  1587. msgid "Failed to open %s"
  1588. msgstr "Bigo ang pagbukas ng %s"
  1589. #: ftparchive/writer.cc:267
  1590. #, c-format
  1591. msgid " DeLink %s [%s]\n"
  1592. msgstr " DeLink %s [%s]\n"
  1593. #: ftparchive/writer.cc:275
  1594. #, c-format
  1595. msgid "Failed to readlink %s"
  1596. msgstr "Bigo ang pagbasa ng link %s"
  1597. #: ftparchive/writer.cc:279
  1598. #, c-format
  1599. msgid "Failed to unlink %s"
  1600. msgstr "Bigo ang pag-unlink ng %s"
  1601. #: ftparchive/writer.cc:286
  1602. #, c-format
  1603. msgid "*** Failed to link %s to %s"
  1604. msgstr "*** Bigo ang pag-link ng %s sa %s"
  1605. #: ftparchive/writer.cc:296
  1606. #, c-format
  1607. msgid " DeLink limit of %sB hit.\n"
  1608. msgstr " DeLink limit na %sB tinamaan.\n"
  1609. #: ftparchive/writer.cc:401
  1610. msgid "Archive had no package field"
  1611. msgstr "Walang field ng pakete ang arkibo"
  1612. #: ftparchive/writer.cc:409 ftparchive/writer.cc:711
  1613. #, c-format
  1614. msgid " %s has no override entry\n"
  1615. msgstr " %s ay walang override entry\n"
  1616. #: ftparchive/writer.cc:477 ftparchive/writer.cc:827
  1617. #, c-format
  1618. msgid " %s maintainer is %s not %s\n"
  1619. msgstr " Tagapangalaga ng %s ay %s hindi %s\n"
  1620. #: ftparchive/writer.cc:721
  1621. #, c-format
  1622. msgid " %s has no source override entry\n"
  1623. msgstr " %s ay walang override entry para sa pinagmulan\n"
  1624. #: ftparchive/writer.cc:725
  1625. #, c-format
  1626. msgid " %s has no binary override entry either\n"
  1627. msgstr " %s ay wala ring override entry na binary\n"
  1628. #: ftparchive/contents.cc:341 ftparchive/contents.cc:372
  1629. msgid "realloc - Failed to allocate memory"
  1630. msgstr "realloc - Bigo ang pagreserba ng memory"
  1631. #: ftparchive/override.cc:35 ftparchive/override.cc:143
  1632. #, c-format
  1633. msgid "Unable to open %s"
  1634. msgstr "Hindi mabuksan %s"
  1635. #: ftparchive/override.cc:61 ftparchive/override.cc:167
  1636. #, fuzzy, c-format
  1637. msgid "Malformed override %s line %llu #1"
  1638. msgstr "Maling anyo ng override %s linya %lu #1"
  1639. #: ftparchive/override.cc:75 ftparchive/override.cc:179
  1640. #, fuzzy, c-format
  1641. msgid "Malformed override %s line %llu #2"
  1642. msgstr "Maling anyo ng override %s linya %lu #2"
  1643. #: ftparchive/override.cc:89 ftparchive/override.cc:192
  1644. #, fuzzy, c-format
  1645. msgid "Malformed override %s line %llu #3"
  1646. msgstr "Maling anyo ng override %s linya %lu #3"
  1647. #: ftparchive/override.cc:128 ftparchive/override.cc:202
  1648. #, c-format
  1649. msgid "Failed to read the override file %s"
  1650. msgstr "Bigo ang pagbasa ng talaksang override %s"
  1651. #: ftparchive/multicompress.cc:70
  1652. #, c-format
  1653. msgid "Unknown compression algorithm '%s'"
  1654. msgstr "Hindi kilalang algorithmong compression '%s'"
  1655. #: ftparchive/multicompress.cc:100
  1656. #, c-format
  1657. msgid "Compressed output %s needs a compression set"
  1658. msgstr "Kailangan ng compression set ang compressed output %s"
  1659. #: ftparchive/multicompress.cc:189
  1660. msgid "Failed to create FILE*"
  1661. msgstr "Bigo ang paglikha ng FILE*"
  1662. #: ftparchive/multicompress.cc:192
  1663. msgid "Failed to fork"
  1664. msgstr "Bigo ang pag-fork"
  1665. #: ftparchive/multicompress.cc:206
  1666. msgid "Compress child"
  1667. msgstr "Anak para sa pag-Compress"
  1668. #: ftparchive/multicompress.cc:229
  1669. #, c-format
  1670. msgid "Internal error, failed to create %s"
  1671. msgstr "Error na internal, bigo ang paglikha ng %s"
  1672. #: ftparchive/multicompress.cc:304
  1673. msgid "IO to subprocess/file failed"
  1674. msgstr "Bigo ang IO sa subprocess/talaksan"
  1675. #: ftparchive/multicompress.cc:342
  1676. msgid "Failed to read while computing MD5"
  1677. msgstr "Bigo ang pagbasa habang tinutuos ang MD5"
  1678. #: ftparchive/multicompress.cc:358
  1679. #, c-format
  1680. msgid "Problem unlinking %s"
  1681. msgstr "Problema sa pag-unlink ng %s"
  1682. #: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188
  1683. #, c-format
  1684. msgid "Failed to rename %s to %s"
  1685. msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
  1686. #: cmdline/apt-internal-solver.cc:37
  1687. #, fuzzy
  1688. msgid ""
  1689. "Usage: apt-internal-solver\n"
  1690. "\n"
  1691. "apt-internal-solver is an interface to use the current internal\n"
  1692. "like an external resolver for the APT family for debugging or alike\n"
  1693. "\n"
  1694. "Options:\n"
  1695. " -h This help text.\n"
  1696. " -q Loggable output - no progress indicator\n"
  1697. " -c=? Read this configuration file\n"
  1698. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1699. msgstr ""
  1700. "Pag-gamit: apt-extracttemplates talaksan1 [talaksan2 ...]\n"
  1701. "\n"
  1702. "Ang apt-extracttemplates ay kagamitan sa pagkuha ng info tungkol\n"
  1703. "sa pagkaayos at template mula sa mga paketeng debian\n"
  1704. "\n"
  1705. "Mga opsyon:\n"
  1706. " -h Itong tulong na ito\n"
  1707. " -t Itakda ang dir na pansamantala\n"
  1708. " -c=? Basahin ang talaksang pagkaayos na ito\n"
  1709. " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n"
  1710. #: cmdline/apt-sortpkgs.cc:89
  1711. msgid "Unknown package record!"
  1712. msgstr "Di kilalang record ng pakete!"
  1713. #: cmdline/apt-sortpkgs.cc:153
  1714. msgid ""
  1715. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1716. "\n"
  1717. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1718. "to indicate what kind of file it is.\n"
  1719. "\n"
  1720. "Options:\n"
  1721. " -h This help text\n"
  1722. " -s Use source file sorting\n"
  1723. " -c=? Read this configuration file\n"
  1724. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1725. msgstr ""
  1726. "Pag-gamit: apt-sortpkgs [mga option] talaksan1 [talaksan2 ...]\n"
  1727. "\n"
  1728. "Ang apt-sortpkgs ay payak na kagamitan upang makapag-sort ng talaksang "
  1729. "pakete.\n"
  1730. "Ang option -s ay ginagamit upang ipaalam kung anong klaseng talaksan ito.\n"
  1731. "\n"
  1732. "Mga option:\n"
  1733. " -h Itong tulong na ito\n"
  1734. " -s Gamitin ang pag-sort ng talaksang source\n"
  1735. " -c=? Basahin ang talaksang pagkaayos na ito\n"
  1736. " -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
  1737. #: apt-inst/contrib/extracttar.cc:117
  1738. msgid "Failed to create pipes"
  1739. msgstr "Bigo sa paglikha ng mga pipe"
  1740. #: apt-inst/contrib/extracttar.cc:144
  1741. msgid "Failed to exec gzip "
  1742. msgstr "Bigo sa pagtakbo ng gzip "
  1743. #: apt-inst/contrib/extracttar.cc:181 apt-inst/contrib/extracttar.cc:211
  1744. msgid "Corrupted archive"
  1745. msgstr "Sirang arkibo"
  1746. #: apt-inst/contrib/extracttar.cc:196
  1747. msgid "Tar checksum failed, archive corrupted"
  1748. msgstr "Bigo ang checksum ng tar, sira ang arkibo"
  1749. #: apt-inst/contrib/extracttar.cc:303
  1750. #, c-format
  1751. msgid "Unknown TAR header type %u, member %s"
  1752. msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s"
  1753. #: apt-inst/contrib/arfile.cc:74
  1754. msgid "Invalid archive signature"
  1755. msgstr "Hindi tanggap na signature ng arkibo"
  1756. #: apt-inst/contrib/arfile.cc:82
  1757. msgid "Error reading archive member header"
  1758. msgstr "Error sa pagbasa ng header ng miyembro ng arkibo"
  1759. #: apt-inst/contrib/arfile.cc:94
  1760. #, fuzzy, c-format
  1761. msgid "Invalid archive member header %s"
  1762. msgstr "Hindi tanggap na header ng miyembro ng arkibo"
  1763. #: apt-inst/contrib/arfile.cc:106
  1764. msgid "Invalid archive member header"
  1765. msgstr "Hindi tanggap na header ng miyembro ng arkibo"
  1766. #: apt-inst/contrib/arfile.cc:132
  1767. msgid "Archive is too short"
  1768. msgstr "Bitin ang arkibo. Sobrang iksi."
  1769. #: apt-inst/contrib/arfile.cc:136
  1770. msgid "Failed to read the archive headers"
  1771. msgstr "Bigo ang pagbasa ng header ng arkibo"
  1772. #: apt-inst/filelist.cc:382
  1773. msgid "DropNode called on still linked node"
  1774. msgstr "Tinawagan ang DropNode sa naka-link pa na node"
  1775. #: apt-inst/filelist.cc:414
  1776. msgid "Failed to locate the hash element!"
  1777. msgstr "Bigo sa paghanap ng elemento ng hash!"
  1778. #: apt-inst/filelist.cc:461
  1779. msgid "Failed to allocate diversion"
  1780. msgstr "Bigo ang pagreserba ng diversion"
  1781. #: apt-inst/filelist.cc:466
  1782. msgid "Internal error in AddDiversion"
  1783. msgstr "Internal error sa AddDiversion"
  1784. #: apt-inst/filelist.cc:479
  1785. #, c-format
  1786. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1787. msgstr "Sinusubukang patungan ang diversion, %s -> %s at %s/%s"
  1788. #: apt-inst/filelist.cc:508
  1789. #, c-format
  1790. msgid "Double add of diversion %s -> %s"
  1791. msgstr "Dobleng pagdagdag ng diversion %s -> %s"
  1792. #: apt-inst/filelist.cc:551
  1793. #, c-format
  1794. msgid "Duplicate conf file %s/%s"
  1795. msgstr "Nadobleng talaksang conf %s/%s"
  1796. #: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55
  1797. #, c-format
  1798. msgid "Failed to write file %s"
  1799. msgstr "Bigo sa pagsulat ng talaksang %s"
  1800. #: apt-inst/dirstream.cc:98 apt-inst/dirstream.cc:106
  1801. #, c-format
  1802. msgid "Failed to close file %s"
  1803. msgstr "Bigo sa pagsara ng talaksang %s"
  1804. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1805. #, c-format
  1806. msgid "The path %s is too long"
  1807. msgstr "Sobrang haba ang path na %s"
  1808. #: apt-inst/extract.cc:127
  1809. #, c-format
  1810. msgid "Unpacking %s more than once"
  1811. msgstr "Binubuklat ang %s ng labis sa isang beses"
  1812. #: apt-inst/extract.cc:137
  1813. #, c-format
  1814. msgid "The directory %s is diverted"
  1815. msgstr "Ang directory %s ay divertado"
  1816. #: apt-inst/extract.cc:147
  1817. #, c-format
  1818. msgid "The package is trying to write to the diversion target %s/%s"
  1819. msgstr "Ang pakete ay sumusubok na magsulat sa target na diversion %s/%s"
  1820. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1821. msgid "The diversion path is too long"
  1822. msgstr "Sobrang haba ng path na diversion"
  1823. #: apt-inst/extract.cc:243
  1824. #, c-format
  1825. msgid "The directory %s is being replaced by a non-directory"
  1826. msgstr "Ang directory %s ay papalitan ng hindi-directory"
  1827. #: apt-inst/extract.cc:283
  1828. msgid "Failed to locate node in its hash bucket"
  1829. msgstr "Bigo ang paghanap ng node sa kanyang hash bucket"
  1830. #: apt-inst/extract.cc:287
  1831. msgid "The path is too long"
  1832. msgstr "Sobrang haba ng path"
  1833. #: apt-inst/extract.cc:415
  1834. #, c-format
  1835. msgid "Overwrite package match with no version for %s"
  1836. msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s"
  1837. #: apt-inst/extract.cc:432
  1838. #, c-format
  1839. msgid "File %s/%s overwrites the one in the package %s"
  1840. msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s"
  1841. #: apt-inst/extract.cc:492
  1842. #, c-format
  1843. msgid "Unable to stat %s"
  1844. msgstr "Hindi ma-stat ang %s"
  1845. #: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
  1846. #, c-format
  1847. msgid "This is not a valid DEB archive, missing '%s' member"
  1848. msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'"
  1849. #. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
  1850. #: apt-inst/deb/debfile.cc:55
  1851. #, fuzzy, c-format
  1852. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1853. msgstr ""
  1854. "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s' o '%s'"
  1855. #: apt-inst/deb/debfile.cc:120
  1856. #, c-format
  1857. msgid "Internal error, could not locate member %s"
  1858. msgstr "Internal error, hindi mahanap ang miyembrong %s"
  1859. #: apt-inst/deb/debfile.cc:214
  1860. msgid "Unparsable control file"
  1861. msgstr "Di maintindihang talaksang control"
  1862. #: apt-pkg/contrib/mmap.cc:79
  1863. msgid "Can't mmap an empty file"
  1864. msgstr "Hindi mai-mmap ang talaksang walang laman"
  1865. #: apt-pkg/contrib/mmap.cc:111
  1866. #, fuzzy, c-format
  1867. msgid "Couldn't duplicate file descriptor %i"
  1868. msgstr "Hindi makapag-bukas ng pipe para sa %s"
  1869. #: apt-pkg/contrib/mmap.cc:119
  1870. #, fuzzy, c-format
  1871. msgid "Couldn't make mmap of %llu bytes"
  1872. msgstr "Hindi makagawa ng mmap ng %lu na byte"
  1873. #: apt-pkg/contrib/mmap.cc:146
  1874. #, fuzzy
  1875. msgid "Unable to close mmap"
  1876. msgstr "Hindi mabuksan %s"
  1877. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  1878. #, fuzzy
  1879. msgid "Unable to synchronize mmap"
  1880. msgstr "Hindi ma-invoke "
  1881. #: apt-pkg/contrib/mmap.cc:290
  1882. #, c-format
  1883. msgid "Couldn't make mmap of %lu bytes"
  1884. msgstr "Hindi makagawa ng mmap ng %lu na byte"
  1885. #: apt-pkg/contrib/mmap.cc:322
  1886. #, fuzzy
  1887. msgid "Failed to truncate file"
  1888. msgstr "Bigo sa pagsulat ng talaksang %s"
  1889. #: apt-pkg/contrib/mmap.cc:341
  1890. #, c-format
  1891. msgid ""
  1892. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  1893. "Current value: %lu. (man 5 apt.conf)"
  1894. msgstr ""
  1895. #: apt-pkg/contrib/mmap.cc:440
  1896. #, c-format
  1897. msgid ""
  1898. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1899. "reached."
  1900. msgstr ""
  1901. #: apt-pkg/contrib/mmap.cc:443
  1902. msgid ""
  1903. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1904. msgstr ""
  1905. #. d means days, h means hours, min means minutes, s means seconds
  1906. #: apt-pkg/contrib/strutl.cc:372
  1907. #, c-format
  1908. msgid "%lid %lih %limin %lis"
  1909. msgstr ""
  1910. #. h means hours, min means minutes, s means seconds
  1911. #: apt-pkg/contrib/strutl.cc:379
  1912. #, c-format
  1913. msgid "%lih %limin %lis"
  1914. msgstr ""
  1915. #. min means minutes, s means seconds
  1916. #: apt-pkg/contrib/strutl.cc:386
  1917. #, c-format
  1918. msgid "%limin %lis"
  1919. msgstr ""
  1920. #. s means seconds
  1921. #: apt-pkg/contrib/strutl.cc:391
  1922. #, c-format
  1923. msgid "%lis"
  1924. msgstr ""
  1925. #: apt-pkg/contrib/strutl.cc:1166
  1926. #, c-format
  1927. msgid "Selection %s not found"
  1928. msgstr "Piniling %s ay hindi nahanap"
  1929. #: apt-pkg/contrib/configuration.cc:491
  1930. #, c-format
  1931. msgid "Unrecognized type abbreviation: '%c'"
  1932. msgstr "Hindi kilalang katagang uri: '%c'"
  1933. #: apt-pkg/contrib/configuration.cc:605
  1934. #, c-format
  1935. msgid "Opening configuration file %s"
  1936. msgstr "Binubuksan ang talaksang pagsasaayos %s"
  1937. #: apt-pkg/contrib/configuration.cc:773
  1938. #, c-format
  1939. msgid "Syntax error %s:%u: Block starts with no name."
  1940. msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan."
  1941. #: apt-pkg/contrib/configuration.cc:792
  1942. #, c-format
  1943. msgid "Syntax error %s:%u: Malformed tag"
  1944. msgstr "Syntax error %s:%u: Maling anyo ng Tag"
  1945. #: apt-pkg/contrib/configuration.cc:809
  1946. #, c-format
  1947. msgid "Syntax error %s:%u: Extra junk after value"
  1948. msgstr "Syntax error %s:%u: May basura matapos ng halaga"
  1949. #: apt-pkg/contrib/configuration.cc:849
  1950. #, c-format
  1951. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1952. msgstr ""
  1953. "Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
  1954. #: apt-pkg/contrib/configuration.cc:856
  1955. #, c-format
  1956. msgid "Syntax error %s:%u: Too many nested includes"
  1957. msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include"
  1958. #: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
  1959. #, c-format
  1960. msgid "Syntax error %s:%u: Included from here"
  1961. msgstr "Syntax error %s:%u: Sinama mula dito"
  1962. #: apt-pkg/contrib/configuration.cc:869
  1963. #, c-format
  1964. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1965. msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'"
  1966. #: apt-pkg/contrib/configuration.cc:872
  1967. #, fuzzy, c-format
  1968. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1969. msgstr ""
  1970. "Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
  1971. #: apt-pkg/contrib/configuration.cc:922
  1972. #, c-format
  1973. msgid "Syntax error %s:%u: Extra junk at end of file"
  1974. msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan"
  1975. #: apt-pkg/contrib/progress.cc:146
  1976. #, c-format
  1977. msgid "%c%s... Error!"
  1978. msgstr "%c%s... Error!"
  1979. #: apt-pkg/contrib/progress.cc:148
  1980. #, c-format
  1981. msgid "%c%s... Done"
  1982. msgstr "%c%s... Tapos"
  1983. #: apt-pkg/contrib/cmndline.cc:80
  1984. #, c-format
  1985. msgid "Command line option '%c' [from %s] is not known."
  1986. msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala."
  1987. #: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
  1988. #: apt-pkg/contrib/cmndline.cc:122
  1989. #, c-format
  1990. msgid "Command line option %s is not understood"
  1991. msgstr "Opsyon sa command line %s ay di naintindihan."
  1992. #: apt-pkg/contrib/cmndline.cc:127
  1993. #, c-format
  1994. msgid "Command line option %s is not boolean"
  1995. msgstr "Opsyon sa command line %s ay hindi boolean"
  1996. #: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
  1997. #, c-format
  1998. msgid "Option %s requires an argument."
  1999. msgstr "Opsyon %s ay nangangailangan ng argumento"
  2000. #: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
  2001. #, c-format
  2002. msgid "Option %s: Configuration item specification must have an =<val>."
  2003. msgstr ""
  2004. "Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng "
  2005. "=<halaga>."
  2006. #: apt-pkg/contrib/cmndline.cc:237
  2007. #, c-format
  2008. msgid "Option %s requires an integer argument, not '%s'"
  2009. msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'"
  2010. #: apt-pkg/contrib/cmndline.cc:268
  2011. #, c-format
  2012. msgid "Option '%s' is too long"
  2013. msgstr "Opsyon '%s' ay labis ang haba"
  2014. #: apt-pkg/contrib/cmndline.cc:300
  2015. #, c-format
  2016. msgid "Sense %s is not understood, try true or false."
  2017. msgstr "Hindi naintindihan ang %s, subukan ang true o false."
  2018. #: apt-pkg/contrib/cmndline.cc:350
  2019. #, c-format
  2020. msgid "Invalid operation %s"
  2021. msgstr "Di tanggap na operasyon %s"
  2022. #: apt-pkg/contrib/cdromutl.cc:56
  2023. #, c-format
  2024. msgid "Unable to stat the mount point %s"
  2025. msgstr "Di mai-stat ang mount point %s"
  2026. #: apt-pkg/contrib/cdromutl.cc:224
  2027. msgid "Failed to stat the cdrom"
  2028. msgstr "Bigo sa pag-stat ng cdrom"
  2029. #: apt-pkg/contrib/fileutl.cc:93
  2030. #, fuzzy, c-format
  2031. msgid "Problem closing the gzip file %s"
  2032. msgstr "Problema sa pagsara ng talaksan"
  2033. #: apt-pkg/contrib/fileutl.cc:225
  2034. #, c-format
  2035. msgid "Not using locking for read only lock file %s"
  2036. msgstr ""
  2037. "Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s"
  2038. #: apt-pkg/contrib/fileutl.cc:230
  2039. #, c-format
  2040. msgid "Could not open lock file %s"
  2041. msgstr "Hindi mabuksan ang talaksang aldaba %s"
  2042. #: apt-pkg/contrib/fileutl.cc:248
  2043. #, c-format
  2044. msgid "Not using locking for nfs mounted lock file %s"
  2045. msgstr ""
  2046. "Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa "
  2047. "nfs"
  2048. #: apt-pkg/contrib/fileutl.cc:252
  2049. #, c-format
  2050. msgid "Could not get lock %s"
  2051. msgstr "hindi makuha ang aldaba %s"
  2052. #: apt-pkg/contrib/fileutl.cc:392 apt-pkg/contrib/fileutl.cc:506
  2053. #, c-format
  2054. msgid "List of files can't be created as '%s' is not a directory"
  2055. msgstr ""
  2056. #: apt-pkg/contrib/fileutl.cc:426
  2057. #, c-format
  2058. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2059. msgstr ""
  2060. #: apt-pkg/contrib/fileutl.cc:444
  2061. #, c-format
  2062. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2063. msgstr ""
  2064. #: apt-pkg/contrib/fileutl.cc:453
  2065. #, c-format
  2066. msgid ""
  2067. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2068. msgstr ""
  2069. #: apt-pkg/contrib/fileutl.cc:840
  2070. #, c-format
  2071. msgid "Sub-process %s received a segmentation fault."
  2072. msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
  2073. #: apt-pkg/contrib/fileutl.cc:842
  2074. #, fuzzy, c-format
  2075. msgid "Sub-process %s received signal %u."
  2076. msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
  2077. #: apt-pkg/contrib/fileutl.cc:846
  2078. #, c-format
  2079. msgid "Sub-process %s returned an error code (%u)"
  2080. msgstr "Naghudyat ang sub-process %s ng error code (%u)"
  2081. #: apt-pkg/contrib/fileutl.cc:848
  2082. #, c-format
  2083. msgid "Sub-process %s exited unexpectedly"
  2084. msgstr "Ang sub-process %s ay lumabas ng di inaasahan"
  2085. #: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661
  2086. #, c-format
  2087. msgid "Could not open file %s"
  2088. msgstr "Hindi mabuksan ang talaksang %s"
  2089. #: apt-pkg/contrib/fileutl.cc:1046
  2090. #, fuzzy, c-format
  2091. msgid "Could not open file descriptor %d"
  2092. msgstr "Hindi makapag-bukas ng pipe para sa %s"
  2093. #: apt-pkg/contrib/fileutl.cc:1136
  2094. msgid "Failed to create subprocess IPC"
  2095. msgstr "Bigo ang paglikha ng subprocess IPC"
  2096. #: apt-pkg/contrib/fileutl.cc:1192
  2097. msgid "Failed to exec compressor "
  2098. msgstr "Bigo ang pag-exec ng taga-compress"
  2099. #: apt-pkg/contrib/fileutl.cc:1289
  2100. #, fuzzy, c-format
  2101. msgid "read, still have %llu to read but none left"
  2102. msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
  2103. #: apt-pkg/contrib/fileutl.cc:1378 apt-pkg/contrib/fileutl.cc:1400
  2104. #, fuzzy, c-format
  2105. msgid "write, still have %llu to write but couldn't"
  2106. msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
  2107. #: apt-pkg/contrib/fileutl.cc:1716
  2108. #, fuzzy, c-format
  2109. msgid "Problem closing the file %s"
  2110. msgstr "Problema sa pagsara ng talaksan"
  2111. #: apt-pkg/contrib/fileutl.cc:1728
  2112. #, fuzzy, c-format
  2113. msgid "Problem renaming the file %s to %s"
  2114. msgstr "Problema sa pag-sync ng talaksan"
  2115. #: apt-pkg/contrib/fileutl.cc:1739
  2116. #, fuzzy, c-format
  2117. msgid "Problem unlinking the file %s"
  2118. msgstr "Problema sa pag-unlink ng talaksan"
  2119. #: apt-pkg/contrib/fileutl.cc:1754
  2120. msgid "Problem syncing the file"
  2121. msgstr "Problema sa pag-sync ng talaksan"
  2122. #: apt-pkg/pkgcache.cc:148
  2123. msgid "Empty package cache"
  2124. msgstr "Walang laman ang cache ng pakete"
  2125. #: apt-pkg/pkgcache.cc:154
  2126. msgid "The package cache file is corrupted"
  2127. msgstr "Sira ang talaksan ng cache ng pakete"
  2128. #: apt-pkg/pkgcache.cc:159
  2129. msgid "The package cache file is an incompatible version"
  2130. msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon"
  2131. #: apt-pkg/pkgcache.cc:162
  2132. #, fuzzy
  2133. msgid "The package cache file is corrupted, it is too small"
  2134. msgstr "Sira ang talaksan ng cache ng pakete"
  2135. #: apt-pkg/pkgcache.cc:167
  2136. #, c-format
  2137. msgid "This APT does not support the versioning system '%s'"
  2138. msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'"
  2139. #: apt-pkg/pkgcache.cc:172
  2140. msgid "The package cache was built for a different architecture"
  2141. msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura"
  2142. #: apt-pkg/pkgcache.cc:305
  2143. msgid "Depends"
  2144. msgstr "Dependensiya"
  2145. #: apt-pkg/pkgcache.cc:305
  2146. msgid "PreDepends"
  2147. msgstr "PreDepends"
  2148. #: apt-pkg/pkgcache.cc:305
  2149. msgid "Suggests"
  2150. msgstr "Mungkahi"
  2151. #: apt-pkg/pkgcache.cc:306
  2152. msgid "Recommends"
  2153. msgstr "Rekomendado"
  2154. #: apt-pkg/pkgcache.cc:306
  2155. msgid "Conflicts"
  2156. msgstr "Tunggali"
  2157. #: apt-pkg/pkgcache.cc:306
  2158. msgid "Replaces"
  2159. msgstr "Pumapalit"
  2160. #: apt-pkg/pkgcache.cc:307
  2161. msgid "Obsoletes"
  2162. msgstr "Linalaos"
  2163. #: apt-pkg/pkgcache.cc:307
  2164. msgid "Breaks"
  2165. msgstr ""
  2166. #: apt-pkg/pkgcache.cc:307
  2167. msgid "Enhances"
  2168. msgstr ""
  2169. #: apt-pkg/pkgcache.cc:318
  2170. msgid "important"
  2171. msgstr "importante"
  2172. #: apt-pkg/pkgcache.cc:318
  2173. msgid "required"
  2174. msgstr "kailangan"
  2175. #: apt-pkg/pkgcache.cc:318
  2176. msgid "standard"
  2177. msgstr "standard"
  2178. #: apt-pkg/pkgcache.cc:319
  2179. msgid "optional"
  2180. msgstr "optional"
  2181. #: apt-pkg/pkgcache.cc:319
  2182. msgid "extra"
  2183. msgstr "extra"
  2184. #: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161
  2185. msgid "Building dependency tree"
  2186. msgstr "Ginagawa ang puno ng mga dependensiya"
  2187. #: apt-pkg/depcache.cc:133
  2188. msgid "Candidate versions"
  2189. msgstr "Bersyong Kandidato"
  2190. #: apt-pkg/depcache.cc:162
  2191. msgid "Dependency generation"
  2192. msgstr "Pagbuo ng Dependensiya"
  2193. #: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219
  2194. #, fuzzy
  2195. msgid "Reading state information"
  2196. msgstr "Pinagsasama ang magagamit na impormasyon"
  2197. #: apt-pkg/depcache.cc:244
  2198. #, fuzzy, c-format
  2199. msgid "Failed to open StateFile %s"
  2200. msgstr "Bigo ang pagbukas ng %s"
  2201. #: apt-pkg/depcache.cc:250
  2202. #, fuzzy, c-format
  2203. msgid "Failed to write temporary StateFile %s"
  2204. msgstr "Bigo sa pagsulat ng talaksang %s"
  2205. #: apt-pkg/tagfile.cc:129
  2206. #, c-format
  2207. msgid "Unable to parse package file %s (1)"
  2208. msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
  2209. #: apt-pkg/tagfile.cc:216
  2210. #, c-format
  2211. msgid "Unable to parse package file %s (2)"
  2212. msgstr "Hindi ma-parse ang talaksang pakete %s (2)"
  2213. #: apt-pkg/sourcelist.cc:96
  2214. #, fuzzy, c-format
  2215. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2216. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
  2217. #: apt-pkg/sourcelist.cc:99
  2218. #, fuzzy, c-format
  2219. msgid "Malformed line %lu in source list %s ([option] too short)"
  2220. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)"
  2221. #: apt-pkg/sourcelist.cc:110
  2222. #, fuzzy, c-format
  2223. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2224. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
  2225. #: apt-pkg/sourcelist.cc:116
  2226. #, fuzzy, c-format
  2227. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2228. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
  2229. #: apt-pkg/sourcelist.cc:119
  2230. #, fuzzy, c-format
  2231. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2232. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
  2233. #: apt-pkg/sourcelist.cc:132
  2234. #, c-format
  2235. msgid "Malformed line %lu in source list %s (URI)"
  2236. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)"
  2237. #: apt-pkg/sourcelist.cc:134
  2238. #, c-format
  2239. msgid "Malformed line %lu in source list %s (dist)"
  2240. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)"
  2241. #: apt-pkg/sourcelist.cc:137
  2242. #, c-format
  2243. msgid "Malformed line %lu in source list %s (URI parse)"
  2244. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)"
  2245. #: apt-pkg/sourcelist.cc:143
  2246. #, c-format
  2247. msgid "Malformed line %lu in source list %s (absolute dist)"
  2248. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)"
  2249. #: apt-pkg/sourcelist.cc:150
  2250. #, c-format
  2251. msgid "Malformed line %lu in source list %s (dist parse)"
  2252. msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
  2253. #: apt-pkg/sourcelist.cc:248
  2254. #, c-format
  2255. msgid "Opening %s"
  2256. msgstr "Binubuksan %s"
  2257. #: apt-pkg/sourcelist.cc:265 apt-pkg/cdrom.cc:495
  2258. #, c-format
  2259. msgid "Line %u too long in source list %s."
  2260. msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s."
  2261. #: apt-pkg/sourcelist.cc:285
  2262. #, c-format
  2263. msgid "Malformed line %u in source list %s (type)"
  2264. msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)"
  2265. #: apt-pkg/sourcelist.cc:289
  2266. #, c-format
  2267. msgid "Type '%s' is not known on line %u in source list %s"
  2268. msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s"
  2269. #: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896
  2270. #, c-format
  2271. msgid ""
  2272. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2273. "under APT::Immediate-Configure for details. (%d)"
  2274. msgstr ""
  2275. #: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503
  2276. #, fuzzy, c-format
  2277. msgid "Could not configure '%s'. "
  2278. msgstr "Hindi mabuksan ang talaksang %s"
  2279. #: apt-pkg/packagemanager.cc:545
  2280. #, c-format
  2281. msgid ""
  2282. "This installation run will require temporarily removing the essential "
  2283. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2284. "you really want to do it, activate the APT::Force-LoopBreak option."
  2285. msgstr ""
  2286. "Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang "
  2287. "pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends "
  2288. "loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-"
  2289. "activate ang APT::Force-LoopBreak na option."
  2290. #: apt-pkg/pkgrecords.cc:34
  2291. #, c-format
  2292. msgid "Index file type '%s' is not supported"
  2293. msgstr "Hindi suportado ang uri ng talaksang index na '%s'"
  2294. #: apt-pkg/algorithms.cc:266
  2295. #, c-format
  2296. msgid ""
  2297. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2298. msgstr ""
  2299. "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo "
  2300. "para dito."
  2301. #: apt-pkg/algorithms.cc:1228
  2302. msgid ""
  2303. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2304. "held packages."
  2305. msgstr ""
  2306. "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot "
  2307. "ito ng mga paketeng naka-hold."
  2308. #: apt-pkg/algorithms.cc:1230
  2309. msgid "Unable to correct problems, you have held broken packages."
  2310. msgstr ""
  2311. "Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold."
  2312. #: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576
  2313. #, fuzzy
  2314. msgid ""
  2315. "Some index files failed to download. They have been ignored, or old ones "
  2316. "used instead."
  2317. msgstr ""
  2318. "May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang "
  2319. "mga luma na lamang."
  2320. #: apt-pkg/acquire.cc:81
  2321. #, fuzzy, c-format
  2322. msgid "List directory %spartial is missing."
  2323. msgstr "Nawawala ang directory ng talaan %spartial."
  2324. #: apt-pkg/acquire.cc:85
  2325. #, fuzzy, c-format
  2326. msgid "Archives directory %spartial is missing."
  2327. msgstr "Nawawala ang directory ng arkibo %spartial."
  2328. #: apt-pkg/acquire.cc:93
  2329. #, fuzzy, c-format
  2330. msgid "Unable to lock directory %s"
  2331. msgstr "Hindi maaldaba ang directory ng talaan"
  2332. #. only show the ETA if it makes sense
  2333. #. two days
  2334. #: apt-pkg/acquire.cc:893
  2335. #, c-format
  2336. msgid "Retrieving file %li of %li (%s remaining)"
  2337. msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)"
  2338. #: apt-pkg/acquire.cc:895
  2339. #, c-format
  2340. msgid "Retrieving file %li of %li"
  2341. msgstr "Kinukuha ang talaksang %li ng %li"
  2342. #: apt-pkg/acquire-worker.cc:112
  2343. #, c-format
  2344. msgid "The method driver %s could not be found."
  2345. msgstr "Ang driver ng paraang %s ay hindi mahanap."
  2346. #: apt-pkg/acquire-worker.cc:161
  2347. #, c-format
  2348. msgid "Method %s did not start correctly"
  2349. msgstr "Hindi umandar ng tama ang paraang %s"
  2350. #: apt-pkg/acquire-worker.cc:440
  2351. #, c-format
  2352. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2353. msgstr ""
  2354. "Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter."
  2355. #: apt-pkg/init.cc:151
  2356. #, c-format
  2357. msgid "Packaging system '%s' is not supported"
  2358. msgstr "Hindi suportado ang sistema ng paketeng '%s'"
  2359. #: apt-pkg/init.cc:167
  2360. msgid "Unable to determine a suitable packaging system type"
  2361. msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete "
  2362. #: apt-pkg/clean.cc:57
  2363. #, c-format
  2364. msgid "Unable to stat %s."
  2365. msgstr "Hindi ma-stat ang %s"
  2366. #: apt-pkg/srcrecords.cc:47
  2367. msgid "You must put some 'source' URIs in your sources.list"
  2368. msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list"
  2369. #: apt-pkg/cachefile.cc:87
  2370. msgid "The package lists or status file could not be parsed or opened."
  2371. msgstr ""
  2372. "Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado."
  2373. #: apt-pkg/cachefile.cc:91
  2374. msgid "You may want to run apt-get update to correct these problems"
  2375. msgstr ""
  2376. "Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang "
  2377. "ito"
  2378. #: apt-pkg/cachefile.cc:109
  2379. msgid "The list of sources could not be read."
  2380. msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)."
  2381. #: apt-pkg/policy.cc:75
  2382. #, c-format
  2383. msgid ""
  2384. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2385. "available in the sources"
  2386. msgstr ""
  2387. #: apt-pkg/policy.cc:399
  2388. #, fuzzy, c-format
  2389. msgid "Invalid record in the preferences file %s, no Package header"
  2390. msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header"
  2391. #: apt-pkg/policy.cc:421
  2392. #, c-format
  2393. msgid "Did not understand pin type %s"
  2394. msgstr "Hindi naintindihan ang uri ng pin %s"
  2395. #: apt-pkg/policy.cc:429
  2396. msgid "No priority (or zero) specified for pin"
  2397. msgstr "Walang prioridad (o sero) na nakatakda para sa pin"
  2398. #: apt-pkg/pkgcachegen.cc:87
  2399. msgid "Cache has an incompatible versioning system"
  2400. msgstr "Hindi akma ang versioning system ng cache"
  2401. #. TRANSLATOR: The first placeholder is a package name,
  2402. #. the other two should be copied verbatim as they include debug info
  2403. #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228
  2404. #: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325
  2405. #: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375
  2406. #: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396
  2407. #: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410
  2408. #: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435
  2409. #: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517
  2410. #: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556
  2411. #: apt-pkg/pkgcachegen.cc:570
  2412. #, fuzzy, c-format
  2413. msgid "Error occurred while processing %s (%s%d)"
  2414. msgstr "May naganap na error habang prinoseso ang %s (FindPkg)"
  2415. #: apt-pkg/pkgcachegen.cc:251
  2416. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2417. msgstr ""
  2418. "Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito."
  2419. #: apt-pkg/pkgcachegen.cc:254
  2420. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2421. msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
  2422. #: apt-pkg/pkgcachegen.cc:257
  2423. #, fuzzy
  2424. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2425. msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
  2426. #: apt-pkg/pkgcachegen.cc:260
  2427. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2428. msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito."
  2429. #: apt-pkg/pkgcachegen.cc:577
  2430. #, c-format
  2431. msgid "Package %s %s was not found while processing file dependencies"
  2432. msgstr ""
  2433. "Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya."
  2434. #: apt-pkg/pkgcachegen.cc:1146
  2435. #, c-format
  2436. msgid "Couldn't stat source package list %s"
  2437. msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
  2438. #: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338
  2439. #: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501
  2440. msgid "Reading package lists"
  2441. msgstr "Binabasa ang Listahan ng mga Pakete"
  2442. #: apt-pkg/pkgcachegen.cc:1251
  2443. msgid "Collecting File Provides"
  2444. msgstr "Kinukuha ang Talaksang Provides"
  2445. #: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450
  2446. msgid "IO Error saving source cache"
  2447. msgstr "IO Error sa pag-imbak ng source cache"
  2448. #: apt-pkg/acquire-item.cc:139
  2449. #, c-format
  2450. msgid "rename failed, %s (%s -> %s)."
  2451. msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)."
  2452. #: apt-pkg/acquire-item.cc:599
  2453. msgid "MD5Sum mismatch"
  2454. msgstr "Di tugmang MD5Sum"
  2455. #: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859
  2456. #: apt-pkg/acquire-item.cc:2002
  2457. #, fuzzy
  2458. msgid "Hash Sum mismatch"
  2459. msgstr "Di tugmang MD5Sum"
  2460. #: apt-pkg/acquire-item.cc:1370
  2461. #, c-format
  2462. msgid ""
  2463. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2464. "or malformed file)"
  2465. msgstr ""
  2466. #: apt-pkg/acquire-item.cc:1386
  2467. #, fuzzy, c-format
  2468. msgid "Unable to find hash sum for '%s' in Release file"
  2469. msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
  2470. #: apt-pkg/acquire-item.cc:1428
  2471. msgid "There is no public key available for the following key IDs:\n"
  2472. msgstr "Walang public key na magamit para sa sumusunod na key ID:\n"
  2473. #: apt-pkg/acquire-item.cc:1466
  2474. #, c-format
  2475. msgid ""
  2476. "Release file for %s is expired (invalid since %s). Updates for this "
  2477. "repository will not be applied."
  2478. msgstr ""
  2479. #: apt-pkg/acquire-item.cc:1488
  2480. #, c-format
  2481. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2482. msgstr ""
  2483. #: apt-pkg/acquire-item.cc:1521
  2484. #, c-format
  2485. msgid ""
  2486. "A error occurred during the signature verification. The repository is not "
  2487. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2488. msgstr ""
  2489. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2490. #: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536
  2491. #, c-format
  2492. msgid "GPG error: %s: %s"
  2493. msgstr ""
  2494. #: apt-pkg/acquire-item.cc:1635
  2495. #, c-format
  2496. msgid ""
  2497. "I wasn't able to locate a file for the %s package. This might mean you need "
  2498. "to manually fix this package. (due to missing arch)"
  2499. msgstr ""
  2500. "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
  2501. "niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)"
  2502. #: apt-pkg/acquire-item.cc:1694
  2503. #, c-format
  2504. msgid ""
  2505. "I wasn't able to locate a file for the %s package. This might mean you need "
  2506. "to manually fix this package."
  2507. msgstr ""
  2508. "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
  2509. "niyong ayusin ng de kamay ang paketeng ito."
  2510. #: apt-pkg/acquire-item.cc:1753
  2511. #, c-format
  2512. msgid ""
  2513. "The package index files are corrupted. No Filename: field for package %s."
  2514. msgstr ""
  2515. "Sira ang talaksang index ng mga pakete. Walang Filename: field para sa "
  2516. "paketeng %s."
  2517. #: apt-pkg/acquire-item.cc:1851
  2518. msgid "Size mismatch"
  2519. msgstr "Di tugmang laki"
  2520. #: apt-pkg/indexrecords.cc:64
  2521. #, fuzzy, c-format
  2522. msgid "Unable to parse Release file %s"
  2523. msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
  2524. #: apt-pkg/indexrecords.cc:74
  2525. #, fuzzy, c-format
  2526. msgid "No sections in Release file %s"
  2527. msgstr "Paunawa, pinili ang %s imbes na %s\n"
  2528. #: apt-pkg/indexrecords.cc:108
  2529. #, c-format
  2530. msgid "No Hash entry in Release file %s"
  2531. msgstr ""
  2532. #: apt-pkg/indexrecords.cc:121
  2533. #, fuzzy, c-format
  2534. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2535. msgstr "Di tanggap na linya sa talaksang diversion: %s"
  2536. #: apt-pkg/indexrecords.cc:140
  2537. #, fuzzy, c-format
  2538. msgid "Invalid 'Date' entry in Release file %s"
  2539. msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
  2540. #: apt-pkg/vendorlist.cc:78
  2541. #, c-format
  2542. msgid "Vendor block %s contains no fingerprint"
  2543. msgstr "Block ng nagbebenta %s ay walang fingerprint"
  2544. #: apt-pkg/cdrom.cc:576
  2545. #, c-format
  2546. msgid ""
  2547. "Using CD-ROM mount point %s\n"
  2548. "Mounting CD-ROM\n"
  2549. msgstr ""
  2550. "Ginagamit ang %s bilang mount point ng CD-ROM\n"
  2551. "Sinasalang ang CD-ROM\n"
  2552. #: apt-pkg/cdrom.cc:585 apt-pkg/cdrom.cc:682
  2553. msgid "Identifying.. "
  2554. msgstr "Kinikilala..."
  2555. #: apt-pkg/cdrom.cc:613
  2556. #, c-format
  2557. msgid "Stored label: %s\n"
  2558. msgstr "Naka-imbak na Label: %s \n"
  2559. #: apt-pkg/cdrom.cc:622 apt-pkg/cdrom.cc:907
  2560. #, fuzzy
  2561. msgid "Unmounting CD-ROM...\n"
  2562. msgstr "Ina-unmount ang CD-ROM..."
  2563. #: apt-pkg/cdrom.cc:642
  2564. #, c-format
  2565. msgid "Using CD-ROM mount point %s\n"
  2566. msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n"
  2567. #: apt-pkg/cdrom.cc:660
  2568. msgid "Unmounting CD-ROM\n"
  2569. msgstr "Ina-unmount ang CD-ROM\n"
  2570. #: apt-pkg/cdrom.cc:665
  2571. msgid "Waiting for disc...\n"
  2572. msgstr "Hinihintay ang disc...\n"
  2573. #: apt-pkg/cdrom.cc:674
  2574. msgid "Mounting CD-ROM...\n"
  2575. msgstr "Sinasalang ang CD-ROM...\n"
  2576. #: apt-pkg/cdrom.cc:693
  2577. msgid "Scanning disc for index files..\n"
  2578. msgstr "Sinisiyasat ang Disc para sa talaksang index...\n"
  2579. #: apt-pkg/cdrom.cc:744
  2580. #, fuzzy, c-format
  2581. msgid ""
  2582. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2583. "%zu signatures\n"
  2584. msgstr ""
  2585. "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
  2586. "signature\n"
  2587. #: apt-pkg/cdrom.cc:755
  2588. msgid ""
  2589. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2590. "wrong architecture?"
  2591. msgstr ""
  2592. #: apt-pkg/cdrom.cc:782
  2593. #, fuzzy, c-format
  2594. msgid "Found label '%s'\n"
  2595. msgstr "Naka-imbak na Label: %s \n"
  2596. #: apt-pkg/cdrom.cc:811
  2597. msgid "That is not a valid name, try again.\n"
  2598. msgstr "Hindi yan tanggap na pangalan, subukan muli.\n"
  2599. #: apt-pkg/cdrom.cc:828
  2600. #, c-format
  2601. msgid ""
  2602. "This disc is called: \n"
  2603. "'%s'\n"
  2604. msgstr ""
  2605. "Ang Disc na ito ay nagngangalang: \n"
  2606. "'%s'\n"
  2607. #: apt-pkg/cdrom.cc:830
  2608. msgid "Copying package lists..."
  2609. msgstr "Kinokopya ang Listahan ng mga Pakete"
  2610. #: apt-pkg/cdrom.cc:857
  2611. msgid "Writing new source list\n"
  2612. msgstr "Sinusulat ang bagong listahan ng pagkukunan\n"
  2613. #: apt-pkg/cdrom.cc:865
  2614. msgid "Source list entries for this disc are:\n"
  2615. msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n"
  2616. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884
  2617. #, c-format
  2618. msgid "Wrote %i records.\n"
  2619. msgstr "Nagsulat ng %i na record.\n"
  2620. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886
  2621. #, c-format
  2622. msgid "Wrote %i records with %i missing files.\n"
  2623. msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n"
  2624. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889
  2625. #, c-format
  2626. msgid "Wrote %i records with %i mismatched files\n"
  2627. msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n"
  2628. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892
  2629. #, c-format
  2630. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2631. msgstr ""
  2632. "Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang "
  2633. "mismatch\n"
  2634. #: apt-pkg/indexcopy.cc:515
  2635. #, c-format
  2636. msgid "Can't find authentication record for: %s"
  2637. msgstr ""
  2638. #: apt-pkg/indexcopy.cc:521
  2639. #, fuzzy, c-format
  2640. msgid "Hash mismatch for: %s"
  2641. msgstr "Di tugmang MD5Sum"
  2642. #: apt-pkg/indexcopy.cc:665
  2643. #, c-format
  2644. msgid "File %s doesn't start with a clearsigned message"
  2645. msgstr ""
  2646. #. TRANSLATOR: %s is the trusted keyring parts directory
  2647. #: apt-pkg/indexcopy.cc:696
  2648. #, fuzzy, c-format
  2649. msgid "No keyring installed in %s."
  2650. msgstr "Ina-abort ang pag-instol."
  2651. #: apt-pkg/cacheset.cc:403
  2652. #, c-format
  2653. msgid "Release '%s' for '%s' was not found"
  2654. msgstr "Release '%s' para sa '%s' ay hindi nahanap"
  2655. #: apt-pkg/cacheset.cc:406
  2656. #, c-format
  2657. msgid "Version '%s' for '%s' was not found"
  2658. msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap"
  2659. #: apt-pkg/cacheset.cc:517
  2660. #, fuzzy, c-format
  2661. msgid "Couldn't find task '%s'"
  2662. msgstr "Hindi mahanap ang paketeng %s"
  2663. #: apt-pkg/cacheset.cc:523
  2664. #, fuzzy, c-format
  2665. msgid "Couldn't find any package by regex '%s'"
  2666. msgstr "Hindi mahanap ang paketeng %s"
  2667. #: apt-pkg/cacheset.cc:534
  2668. #, c-format
  2669. msgid "Can't select versions from package '%s' as it is purely virtual"
  2670. msgstr ""
  2671. #: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
  2672. #, c-format
  2673. msgid ""
  2674. "Can't select installed nor candidate version from package '%s' as it has "
  2675. "neither of them"
  2676. msgstr ""
  2677. #: apt-pkg/cacheset.cc:555
  2678. #, c-format
  2679. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2680. msgstr ""
  2681. #: apt-pkg/cacheset.cc:563
  2682. #, c-format
  2683. msgid "Can't select candidate version from package %s as it has no candidate"
  2684. msgstr ""
  2685. #: apt-pkg/cacheset.cc:571
  2686. #, c-format
  2687. msgid "Can't select installed version from package %s as it is not installed"
  2688. msgstr ""
  2689. #: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61
  2690. msgid "Send scenario to solver"
  2691. msgstr ""
  2692. #: apt-pkg/edsp.cc:209
  2693. msgid "Send request to solver"
  2694. msgstr ""
  2695. #: apt-pkg/edsp.cc:279
  2696. msgid "Prepare for receiving solution"
  2697. msgstr ""
  2698. #: apt-pkg/edsp.cc:286
  2699. msgid "External solver failed without a proper error message"
  2700. msgstr ""
  2701. #: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565
  2702. msgid "Execute external solver"
  2703. msgstr ""
  2704. #: apt-pkg/deb/dpkgpm.cc:73
  2705. #, fuzzy, c-format
  2706. msgid "Installing %s"
  2707. msgstr "Iniluklok ang %s"
  2708. #: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:952
  2709. #, c-format
  2710. msgid "Configuring %s"
  2711. msgstr "Isasaayos ang %s"
  2712. #: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:959
  2713. #, c-format
  2714. msgid "Removing %s"
  2715. msgstr "Tinatanggal ang %s"
  2716. #: apt-pkg/deb/dpkgpm.cc:76
  2717. #, fuzzy, c-format
  2718. msgid "Completely removing %s"
  2719. msgstr "Natanggal ng lubusan ang %s"
  2720. #: apt-pkg/deb/dpkgpm.cc:77
  2721. #, c-format
  2722. msgid "Noting disappearance of %s"
  2723. msgstr ""
  2724. #: apt-pkg/deb/dpkgpm.cc:78
  2725. #, c-format
  2726. msgid "Running post-installation trigger %s"
  2727. msgstr ""
  2728. #. FIXME: use a better string after freeze
  2729. #: apt-pkg/deb/dpkgpm.cc:705
  2730. #, fuzzy, c-format
  2731. msgid "Directory '%s' missing"
  2732. msgstr "Nawawala ang directory ng talaan %spartial."
  2733. #: apt-pkg/deb/dpkgpm.cc:720 apt-pkg/deb/dpkgpm.cc:740
  2734. #, fuzzy, c-format
  2735. msgid "Could not open file '%s'"
  2736. msgstr "Hindi mabuksan ang talaksang %s"
  2737. #: apt-pkg/deb/dpkgpm.cc:945
  2738. #, c-format
  2739. msgid "Preparing %s"
  2740. msgstr "Hinahanda ang %s"
  2741. #: apt-pkg/deb/dpkgpm.cc:946
  2742. #, c-format
  2743. msgid "Unpacking %s"
  2744. msgstr "Binubuklat ang %s"
  2745. #: apt-pkg/deb/dpkgpm.cc:951
  2746. #, c-format
  2747. msgid "Preparing to configure %s"
  2748. msgstr "Hinahanda ang %s upang isaayos"
  2749. #: apt-pkg/deb/dpkgpm.cc:953
  2750. #, c-format
  2751. msgid "Installed %s"
  2752. msgstr "Iniluklok ang %s"
  2753. #: apt-pkg/deb/dpkgpm.cc:958
  2754. #, c-format
  2755. msgid "Preparing for removal of %s"
  2756. msgstr "Naghahanda para sa pagtanggal ng %s"
  2757. #: apt-pkg/deb/dpkgpm.cc:960
  2758. #, c-format
  2759. msgid "Removed %s"
  2760. msgstr "Tinanggal ang %s"
  2761. #: apt-pkg/deb/dpkgpm.cc:965
  2762. #, c-format
  2763. msgid "Preparing to completely remove %s"
  2764. msgstr "Naghahanda upang tanggalin ng lubusan ang %s"
  2765. #: apt-pkg/deb/dpkgpm.cc:966
  2766. #, c-format
  2767. msgid "Completely removed %s"
  2768. msgstr "Natanggal ng lubusan ang %s"
  2769. #: apt-pkg/deb/dpkgpm.cc:1213
  2770. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2771. msgstr ""
  2772. #: apt-pkg/deb/dpkgpm.cc:1243
  2773. msgid "Running dpkg"
  2774. msgstr ""
  2775. #: apt-pkg/deb/dpkgpm.cc:1415
  2776. msgid "Operation was interrupted before it could finish"
  2777. msgstr ""
  2778. #: apt-pkg/deb/dpkgpm.cc:1477
  2779. msgid "No apport report written because MaxReports is reached already"
  2780. msgstr ""
  2781. #. check if its not a follow up error
  2782. #: apt-pkg/deb/dpkgpm.cc:1482
  2783. msgid "dependency problems - leaving unconfigured"
  2784. msgstr ""
  2785. #: apt-pkg/deb/dpkgpm.cc:1484
  2786. msgid ""
  2787. "No apport report written because the error message indicates its a followup "
  2788. "error from a previous failure."
  2789. msgstr ""
  2790. #: apt-pkg/deb/dpkgpm.cc:1490
  2791. msgid ""
  2792. "No apport report written because the error message indicates a disk full "
  2793. "error"
  2794. msgstr ""
  2795. #: apt-pkg/deb/dpkgpm.cc:1496
  2796. msgid ""
  2797. "No apport report written because the error message indicates a out of memory "
  2798. "error"
  2799. msgstr ""
  2800. #: apt-pkg/deb/dpkgpm.cc:1503
  2801. msgid ""
  2802. "No apport report written because the error message indicates a dpkg I/O error"
  2803. msgstr ""
  2804. #: apt-pkg/deb/debsystem.cc:84
  2805. #, c-format
  2806. msgid ""
  2807. "Unable to lock the administration directory (%s), is another process using "
  2808. "it?"
  2809. msgstr ""
  2810. #: apt-pkg/deb/debsystem.cc:87
  2811. #, fuzzy, c-format
  2812. msgid "Unable to lock the administration directory (%s), are you root?"
  2813. msgstr "Hindi maaldaba ang directory ng talaan"
  2814. #. TRANSLATORS: the %s contains the recovery command, usually
  2815. #. dpkg --configure -a
  2816. #: apt-pkg/deb/debsystem.cc:103
  2817. #, c-format
  2818. msgid ""
  2819. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2820. msgstr ""
  2821. #: apt-pkg/deb/debsystem.cc:121
  2822. msgid "Not locked"
  2823. msgstr ""
  2824. #, fuzzy
  2825. #~ msgid "Skipping nonexistent file %s"
  2826. #~ msgstr "Binubuksan ang talaksang pagsasaayos %s"
  2827. #~ msgid "Failed to remove %s"
  2828. #~ msgstr "Bigo sa pagtanggal ng %s"
  2829. #~ msgid "Unable to create %s"
  2830. #~ msgstr "Hindi malikha ang %s"
  2831. #~ msgid "Failed to stat %sinfo"
  2832. #~ msgstr "Bigo sa pag-stat ng %sinfo"
  2833. #~ msgid "The info and temp directories need to be on the same filesystem"
  2834. #~ msgstr "Ang info at temp directory ay kailangang nasa parehong filesystem"
  2835. #~ msgid "Failed to change to the admin dir %sinfo"
  2836. #~ msgstr "Bigo sa paglipat sa admin dir %sinfo"
  2837. #~ msgid "Internal error getting a package name"
  2838. #~ msgstr "Internal error sa pagkuha ng pangalan ng pakete"
  2839. #~ msgid "Reading file listing"
  2840. #~ msgstr "Binabasa ang Talaksang Listahan"
  2841. #~ msgid ""
  2842. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  2843. #~ "then make it empty and immediately re-install the same version of the "
  2844. #~ "package!"
  2845. #~ msgstr ""
  2846. #~ "Bigo sa pagbukas ng talaksang listahan '%sinfo/%s'. Kung hindi niyo "
  2847. #~ "maibalik ang talaksang ito, gawin itong walang laman at muling instolahin "
  2848. #~ "kaagad ang parehong bersyon ng pakete!"
  2849. #~ msgid "Failed reading the list file %sinfo/%s"
  2850. #~ msgstr "Bigo sa pagbasa ng talaksang listahan %sinfo/%s"
  2851. #~ msgid "Internal error getting a node"
  2852. #~ msgstr "Internal error sa pagkuha ng Node"
  2853. #~ msgid "Failed to open the diversions file %sdiversions"
  2854. #~ msgstr "Bigo sa pagbukas ng talaksang diversions %sdiversions"
  2855. #~ msgid "The diversion file is corrupted"
  2856. #~ msgstr "Ang talaksang diversion ay sira"
  2857. #~ msgid "Invalid line in the diversion file: %s"
  2858. #~ msgstr "Di tanggap na linya sa talaksang diversion: %s"
  2859. #~ msgid "Internal error adding a diversion"
  2860. #~ msgstr "Internal error sa pagdagdag ng diversion"
  2861. #~ msgid "The pkg cache must be initialized first"
  2862. #~ msgstr "Ang cache ng pkg ay dapat ma-initialize muna"
  2863. #~ msgid "Failed to find a Package: header, offset %lu"
  2864. #~ msgstr "Bigo sa paghanap ng Pakete: Header, offset %lu"
  2865. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  2866. #~ msgstr "Maling ConfFile section sa talaksang status. Offset %lu"
  2867. #~ msgid "Error parsing MD5. Offset %lu"
  2868. #~ msgstr "Error sa pag-parse ng MD5. Offset %lu"
  2869. #~ msgid "Couldn't change to %s"
  2870. #~ msgstr "Hindi makalipat sa %s"
  2871. #~ msgid "Failed to locate a valid control file"
  2872. #~ msgstr "Bigo sa paghanap ng tanggap na talaksang control"
  2873. #~ msgid "Couldn't open pipe for %s"
  2874. #~ msgstr "Hindi makapag-bukas ng pipe para sa %s"
  2875. #~ msgid "Read error from %s process"
  2876. #~ msgstr "Error sa pagbasa mula sa prosesong %s"
  2877. #~ msgid "Got a single header line over %u chars"
  2878. #~ msgstr "Nakatanggap ng isang linyang panimula mula %u na mga karakter"
  2879. #~ msgid "Malformed override %s line %lu #1"
  2880. #~ msgstr "Maling anyo ng override %s linya %lu #1"
  2881. #~ msgid "Malformed override %s line %lu #2"
  2882. #~ msgstr "Maling anyo ng override %s linya %lu #2"
  2883. #~ msgid "Malformed override %s line %lu #3"
  2884. #~ msgstr "Maling anyo ng override %s linya %lu #3"
  2885. #~ msgid "decompressor"
  2886. #~ msgstr "taga-decompress"
  2887. #~ msgid "read, still have %lu to read but none left"
  2888. #~ msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
  2889. #~ msgid "write, still have %lu to write but couldn't"
  2890. #~ msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
  2891. #~ msgid "Error occurred while processing %s (NewPackage)"
  2892. #~ msgstr "May naganap na error habang prinoseso ang %s (NewPackage)"
  2893. #~ msgid "Error occurred while processing %s (UsePackage1)"
  2894. #~ msgstr "May naganap na error habang prinoseso ang %s (UsePackage1)"
  2895. #, fuzzy
  2896. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  2897. #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
  2898. #~ msgid "Error occurred while processing %s (UsePackage2)"
  2899. #~ msgstr "May naganap na error habang prinoseso ang %s (UsePackage2)"
  2900. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  2901. #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
  2902. #, fuzzy
  2903. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  2904. #~ msgstr "May naganap na error habang prinoseso ang %s (NewVersion1)"
  2905. #~ msgid "Error occurred while processing %s (UsePackage3)"
  2906. #~ msgstr "May naganap na error habang prinoseso ang %s (UsePackage3)"
  2907. #, fuzzy
  2908. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  2909. #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
  2910. #~ msgid "Error occurred while processing %s (FindPkg)"
  2911. #~ msgstr "May naganap na error habang prinoseso ang %s (FindPkg)"
  2912. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  2913. #~ msgstr "May naganap na Error habang prinoseso ang %s (CollectFileProvides)"
  2914. #~ msgid "Internal error, could not locate member"
  2915. #~ msgstr "Internal error, hindi mahanap ang miyembro"
  2916. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  2917. #~ msgstr ""
  2918. #~ "E: Sobrang haba ng talaan ng argumento mula sa Acquire::gpgv::Options. "
  2919. #~ "Lalabas."
  2920. #~ msgid "Error occurred while processing %s (NewVersion2)"
  2921. #~ msgstr "May naganap na error habang prinoseso ang %s (NewVersion2)"
  2922. #~ msgid "Malformed line %u in source list %s (vendor id)"
  2923. #~ msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (vendor id)"
  2924. #~ msgid "Couldn't access keyring: '%s'"
  2925. #~ msgstr "Hindi mabasa ang keyring: '%s'"
  2926. #~ msgid "Could not patch file"
  2927. #~ msgstr "Hindi mai-patch ang talaksan"
  2928. #~ msgid " %4i %s\n"
  2929. #~ msgstr " %4i %s\n"
  2930. #~ msgid "%4i %s\n"
  2931. #~ msgstr "%4i %s\n"
  2932. #, fuzzy
  2933. #~ msgid "Processing triggers for %s"
  2934. #~ msgstr "Error sa pagproseso ng directory %s"
  2935. #~ msgid ""
  2936. #~ "Since you only requested a single operation it is extremely likely that\n"
  2937. #~ "the package is simply not installable and a bug report against\n"
  2938. #~ "that package should be filed."
  2939. #~ msgstr ""
  2940. #~ "Dahil ang hiniling niyo ay mag-isang operasyon, malamang ay ang pakete "
  2941. #~ "ay\n"
  2942. #~ "hindi talaga mailuklok at kailangang magpadala ng bug report tungkol sa\n"
  2943. #~ "pakete na ito."
  2944. #, fuzzy
  2945. #~ msgid "Line %d too long (max %lu)"
  2946. #~ msgstr "Labis ang haba ng linyang %d (max %d)"
  2947. #, fuzzy
  2948. #~ msgid "Line %d too long (max %d)"
  2949. #~ msgstr "Labis ang haba ng linyang %d (max %d)"
  2950. #, fuzzy
  2951. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2952. #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
  2953. #, fuzzy
  2954. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2955. #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
  2956. #, fuzzy
  2957. #~ msgid "Stored label: %s \n"
  2958. #~ msgstr "Naka-imbak na Label: %s \n"
  2959. #, fuzzy
  2960. #~ msgid ""
  2961. #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
  2962. #~ "%i signatures\n"
  2963. #~ msgstr ""
  2964. #~ "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
  2965. #~ "signature\n"
  2966. #, fuzzy
  2967. #~ msgid "openpty failed\n"
  2968. #~ msgstr "Bigo ang pagpili"
  2969. #~ msgid "File date has changed %s"
  2970. #~ msgstr "Nagbago ang petsa ng talaksang %s"
  2971. #~ msgid "Reading file list"
  2972. #~ msgstr "Binabasa ang Talaksang Listahan"
  2973. #~ msgid "Could not execute "
  2974. #~ msgstr "Hindi ma-execute ang "
  2975. #~ msgid "Preparing for remove with config %s"
  2976. #~ msgstr "Naghahanda upang tanggalin ang %s kasama ang pagkasaayos nito"
  2977. #~ msgid "Removed with config %s"
  2978. #~ msgstr "Tinanggal ang %s kasama ang pagkasaayos nito"
  2979. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2980. #~ msgstr ""
  2981. #~ "Hindi kilalang vendor ID '%s' sa linya %u ng talaksang pagkukunan %s"