tl.po 115 KB

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