tl.po 109 KB

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