| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146 |
- # Tagalog messages for apt debconf.
- # Copyright (C) 2005 Software in the Public Interest, Inc.
- # This file is distributed under the same license as apt.
- # Itong talaksan ay ipinapamahagi sa parehong lisensya ng apt.
- # Eric Pareja <xenos@upm.edu.ph>, 2005
- # This file is maintained by Eric Pareja <xenos@upm.edu.ph>
- # Itong talaksan ay inaalagaan ni Eric Pareja <xenos@upm.edu.ph>
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: apt 1.0.5\n"
- "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
- "POT-Creation-Date: 2015-10-27 10:30+0100\n"
- "PO-Revision-Date: 2007-03-29 21:36+0800\n"
- "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
- "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
- "Language: tl\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=2; plural=n>1;\n"
- #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
- #: apt-private/acqprogress.cc
- #, c-format
- msgid "Hit:%lu %s"
- msgstr "Tumama:%lu %s"
- #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
- #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
- #: apt-private/acqprogress.cc
- #, c-format
- msgid "Get:%lu %s"
- msgstr "Kunin:%lu %s"
- #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
- #. which failed to download, but the error is ignored (compare "Err:")
- #: apt-private/acqprogress.cc
- #, c-format
- msgid "Ign:%lu %s"
- msgstr "DiPansin:%lu %s"
- #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
- #. which failed to download and the error is critical (compare "Ign:")
- #: apt-private/acqprogress.cc
- #, c-format
- msgid "Err:%lu %s"
- msgstr "Err:%lu %s"
- #: apt-private/acqprogress.cc
- #, c-format
- msgid "Fetched %sB in %s (%sB/s)\n"
- msgstr "Nakakuha ng %sB ng %s (%sB/s)\n"
- #: apt-private/acqprogress.cc
- msgid " [Working]"
- msgstr " [May ginagawa]"
- #: apt-private/acqprogress.cc
- #, fuzzy, c-format
- msgid ""
- "Media change: please insert the disc labeled\n"
- " '%s'\n"
- "in the drive '%s' and press [Enter]\n"
- msgstr ""
- "Pagpalit ng Media: Ikasa ang disk na may pangalang\n"
- " '%s'\n"
- "sa drive '%s' at pindutin ang enter\n"
- #: apt-private/private-cachefile.cc
- msgid "Correcting dependencies..."
- msgstr "Inaayos ang mga dependensiya..."
- #: apt-private/private-cachefile.cc
- msgid " failed."
- msgstr " ay bigo."
- #: apt-private/private-cachefile.cc
- msgid "Unable to correct dependencies"
- msgstr "Hindi maayos ang mga dependensiya"
- #: apt-private/private-cachefile.cc
- msgid "Unable to minimize the upgrade set"
- msgstr "Hindi mai-minimize ang upgrade set"
- #: apt-private/private-cachefile.cc
- msgid " Done"
- msgstr " Tapos"
- #: apt-private/private-cachefile.cc
- msgid "You might want to run 'apt-get -f install' to correct these."
- msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito."
- #: apt-private/private-cachefile.cc
- msgid "Unmet dependencies. Try using -f."
- msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f."
- #: apt-private/private-cacheset.cc apt-private/private-search.cc
- msgid "Sorting"
- msgstr ""
- #: apt-private/private-cacheset.cc
- #, fuzzy, c-format
- msgid "Note, selecting '%s' for task '%s'\n"
- msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
- #: apt-private/private-cacheset.cc
- #, fuzzy, c-format
- msgid "Note, selecting '%s' for glob '%s'\n"
- msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
- #: apt-private/private-cacheset.cc
- #, fuzzy, c-format
- msgid "Note, selecting '%s' for regex '%s'\n"
- msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
- #: apt-private/private-cacheset.cc
- #, c-format
- msgid "Package %s is a virtual package provided by:\n"
- msgstr "Ang paketeng %s ay paketeng birtwal na bigay ng:\n"
- #: apt-private/private-cacheset.cc
- #, fuzzy
- msgid " [Installed]"
- msgstr " [Nakaluklok]"
- #: apt-private/private-cacheset.cc
- #, fuzzy
- msgid " [Not candidate version]"
- msgstr "Bersyong Kandidato"
- #: apt-private/private-cacheset.cc
- msgid "You should explicitly select one to install."
- msgstr "Dapat kayong mamili ng isa na iluluklok."
- #: apt-private/private-cacheset.cc
- #, c-format
- msgid ""
- "Package %s is not available, but is referred to by another package.\n"
- "This may mean that the package is missing, has been obsoleted, or\n"
- "is only available from another source\n"
- msgstr ""
- "Hindi magamit ang %s, ngunit ito'y tinutukoy ng ibang pakete.\n"
- "Maaaring nawawala ang pakete, ito'y laos na, o ito'y makukuha lamang\n"
- "sa ibang pinagmulan.\n"
- #: apt-private/private-cacheset.cc
- msgid "However the following packages replace it:"
- msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:"
- #: apt-private/private-cacheset.cc
- #, fuzzy, c-format
- msgid "Package '%s' has no installation candidate"
- msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin"
- #: apt-private/private-cacheset.cc
- #, c-format
- msgid "Virtual packages like '%s' can't be removed\n"
- msgstr ""
- #. TRANSLATORS: Note, this is not an interactive question
- #: apt-private/private-cacheset.cc apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
- msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
- #: apt-private/private-cacheset.cc apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "Package '%s' is not installed, so not removed\n"
- msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
- #: apt-private/private-cacheset.cc
- #, fuzzy, c-format
- msgid "Note, selecting '%s' instead of '%s'\n"
- msgstr "Paunawa, pinili ang %s imbes na %s\n"
- #: apt-private/private-cmndline.cc
- msgid "Most used commands:"
- msgstr ""
- #: apt-private/private-cmndline.cc
- #, c-format
- msgid "See %s for more information about the available commands."
- msgstr ""
- #: apt-private/private-cmndline.cc
- msgid ""
- "Configuration options and syntax is detailed in apt.conf(5).\n"
- "Information about how to configure sources can be found in sources.list(5).\n"
- "Package and version choices can be expressed via apt_preferences(5).\n"
- "Security details are available in apt-secure(8).\n"
- msgstr ""
- #: apt-private/private-cmndline.cc
- msgid "This APT has Super Cow Powers."
- msgstr "Ang APT na ito ay may Kapangyarihan Super Kalabaw."
- #: apt-private/private-cmndline.cc
- msgid "This APT helper has Super Meep Powers."
- msgstr ""
- #: apt-private/private-depends.cc apt-private/private-show.cc
- #: cmdline/apt-mark.cc
- msgid "No packages found"
- msgstr "Walang nahanap na mga pakete"
- #: apt-private/private-download.cc
- msgid "WARNING: The following packages cannot be authenticated!"
- msgstr ""
- "BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!"
- #: apt-private/private-download.cc
- msgid "Authentication warning overridden.\n"
- msgstr ""
- "Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n"
- #: apt-private/private-download.cc
- msgid "Some packages could not be authenticated"
- msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko"
- #: apt-private/private-download.cc
- msgid "Install these packages without verification?"
- msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?"
- #: apt-private/private-download.cc apt-private/private-install.cc
- msgid ""
- "--force-yes is deprecated, use one of the options starting with --allow "
- "instead."
- msgstr ""
- #: apt-private/private-download.cc
- #, fuzzy
- msgid ""
- "There were unauthenticated packages and -y was used without --allow-"
- "unauthenticated"
- msgstr "May mga problema at -y ay ginamit na walang --force-yes"
- #: apt-private/private-download.cc
- #, c-format
- msgid "Failed to fetch %s %s\n"
- msgstr "Bigo sa pagkuha ng %s %s\n"
- #: apt-private/private-download.cc
- #, c-format
- msgid "Couldn't determine free space in %s"
- msgstr "Hindi matantsa ang libreng puwang sa %s"
- #: apt-private/private-download.cc
- #, c-format
- msgid "You don't have enough free space in %s."
- msgstr "Kulang kayo ng libreng puwang sa %s."
- #: apt-private/private-download.cc
- msgid "Unable to lock the download directory"
- msgstr "Hindi maaldaba ang directory ng download"
- #: apt-private/private-install.cc
- msgid "Internal error, InstallPackages was called with broken packages!"
- msgstr ""
- "Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!"
- #: apt-private/private-install.cc
- msgid "Packages need to be removed but remove is disabled."
- msgstr ""
- "May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove."
- #: apt-private/private-install.cc
- #, fuzzy
- msgid ""
- "Essential packages were removed and -y was used without --allow-remove-"
- "essential."
- msgstr "May mga problema at -y ay ginamit na walang --force-yes"
- #: apt-private/private-install.cc
- #, fuzzy
- msgid "Packages were downgraded and -y was used without --allow-downgrades."
- msgstr "May mga problema at -y ay ginamit na walang --force-yes"
- #: apt-private/private-install.cc
- msgid ""
- "Held packages were changed and -y was used without --allow-change-held-"
- "packages."
- msgstr ""
- #: apt-private/private-install.cc
- msgid "Internal error, Ordering didn't finish"
- msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod"
- #: apt-private/private-install.cc
- msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
- msgstr ""
- "Nakapagtataka... Hindi magkatugma ang laki, mag-email sa apt@packages.debian."
- "org"
- #. TRANSLATOR: The required space between number and unit is already included
- #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
- #: apt-private/private-install.cc
- #, c-format
- msgid "Need to get %sB/%sB of archives.\n"
- msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n"
- #. TRANSLATOR: The required space between number and unit is already included
- #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: apt-private/private-install.cc
- #, c-format
- msgid "Need to get %sB of archives.\n"
- msgstr "Kailangang kumuha ng %sB ng arkibo.\n"
- #. TRANSLATOR: The required space between number and unit is already included
- #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "After this operation, %sB of additional disk space will be used.\n"
- msgstr ""
- "Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n"
- #. TRANSLATOR: The required space between number and unit is already included
- #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "After this operation, %sB disk space will be freed.\n"
- msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n"
- #: apt-private/private-install.cc
- msgid "Trivial Only specified but this is not a trivial operation."
- msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial."
- #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
- #. careful with hard to type or special characters (like non-breaking spaces)
- #: apt-private/private-install.cc
- msgid "Yes, do as I say!"
- msgstr "Oo, gawin ang sinasabi ko!"
- #: apt-private/private-install.cc
- #, c-format
- msgid ""
- "You are about to do something potentially harmful.\n"
- "To continue type in the phrase '%s'\n"
- " ?] "
- msgstr ""
- "Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n"
- "Upang magpatuloy, ibigay ang pariralang '%s'\n"
- " ?] "
- #: apt-private/private-install.cc
- msgid "Abort."
- msgstr "Abort."
- #: apt-private/private-install.cc
- msgid "Do you want to continue?"
- msgstr "Nais niyo bang magpatuloy?"
- #: apt-private/private-install.cc
- msgid "Some files failed to download"
- msgstr "May mga talaksang hindi nakuha"
- #: apt-private/private-install.cc apt-private/private-source.cc
- msgid "Download complete and in download only mode"
- msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang"
- #: apt-private/private-install.cc
- msgid ""
- "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
- "missing?"
- msgstr ""
- "Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o "
- "subukang may --fix-missing?"
- #: apt-private/private-install.cc
- msgid "--fix-missing and media swapping is not currently supported"
- msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado"
- #: apt-private/private-install.cc
- msgid "Unable to correct missing packages."
- msgstr "Hindi maayos ang mga kulang na pakete."
- #: apt-private/private-install.cc
- msgid "Aborting install."
- msgstr "Ina-abort ang pag-instol."
- #: apt-private/private-install.cc
- msgid ""
- "The following package disappeared from your system as\n"
- "all files have been overwritten by other packages:"
- msgid_plural ""
- "The following packages disappeared from your system as\n"
- "all files have been overwritten by other packages:"
- msgstr[0] ""
- msgstr[1] ""
- #: apt-private/private-install.cc
- msgid "Note: This is done automatically and on purpose by dpkg."
- msgstr ""
- #: apt-private/private-install.cc
- msgid "We are not supposed to delete stuff, can't start AutoRemover"
- msgstr ""
- #: apt-private/private-install.cc
- msgid ""
- "Hmm, seems like the AutoRemover destroyed something which really\n"
- "shouldn't happen. Please file a bug report against apt."
- msgstr ""
- #.
- #. if (Packages == 1)
- #. {
- #. c1out << std::endl;
- #. c1out <<
- #. _("Since you only requested a single operation it is extremely likely that\n"
- #. "the package is simply not installable and a bug report against\n"
- #. "that package should be filed.") << std::endl;
- #. }
- #.
- #: apt-private/private-install.cc
- msgid "The following information may help to resolve the situation:"
- msgstr ""
- "Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:"
- #: apt-private/private-install.cc
- #, fuzzy
- msgid "Internal Error, AutoRemover broke stuff"
- msgstr "Error na internal, may nasira ang problem resolver"
- #: apt-private/private-install.cc
- #, fuzzy
- msgid ""
- "The following package was automatically installed and is no longer required:"
- msgid_plural ""
- "The following packages were automatically installed and are no longer "
- "required:"
- msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
- msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
- #: apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "%lu package was automatically installed and is no longer required.\n"
- msgid_plural ""
- "%lu packages were automatically installed and are no longer required.\n"
- msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
- msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
- #: apt-private/private-install.cc
- #, c-format
- msgid "Use '%s' to remove it."
- msgid_plural "Use '%s' to remove them."
- msgstr[0] ""
- msgstr[1] ""
- #: apt-private/private-install.cc
- msgid "You might want to run 'apt-get -f install' to correct these:"
- msgstr ""
- "Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:"
- #: apt-private/private-install.cc
- msgid ""
- "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
- "solution)."
- msgstr ""
- "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang "
- "mga pakete (o magtakda ng solusyon)."
- #: apt-private/private-install.cc
- msgid ""
- "Some packages could not be installed. This may mean that you have\n"
- "requested an impossible situation or if you are using the unstable\n"
- "distribution that some required packages have not yet been created\n"
- "or been moved out of Incoming."
- msgstr ""
- "May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n"
- "o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n"
- "kailangan na hindi pa nalikha o linipat mula sa Incoming."
- #: apt-private/private-install.cc
- msgid "Broken packages"
- msgstr "Sirang mga pakete"
- #: apt-private/private-install.cc
- #, fuzzy
- msgid "The following additional packages will be installed:"
- msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:"
- #: apt-private/private-install.cc
- msgid "Suggested packages:"
- msgstr "Mga paketeng mungkahi:"
- #: apt-private/private-install.cc
- msgid "Recommended packages:"
- msgstr "Mga paketeng rekomendado:"
- #: apt-private/private-install.cc
- #, c-format
- msgid "Skipping %s, it is already installed and upgrade is not set.\n"
- msgstr ""
- "Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n"
- #: apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
- msgstr ""
- "Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n"
- #: apt-private/private-install.cc
- #, c-format
- msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
- msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n"
- #. TRANSLATORS: First string is package name, second is version
- #: apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "%s is already the newest version (%s).\n"
- msgstr "%s ay pinakabagong bersyon na.\n"
- #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s set to manually installed.\n"
- msgstr "ngunit ang %s ay iluluklok"
- #: apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "Selected version '%s' (%s) for '%s'\n"
- msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
- #: apt-private/private-install.cc
- #, fuzzy, c-format
- msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
- msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
- #: apt-private/private-list.cc
- msgid "Listing"
- msgstr ""
- #: apt-private/private-list.cc
- #, c-format
- msgid "There is %i additional version. Please use the '-a' switch to see it"
- msgid_plural ""
- "There are %i additional versions. Please use the '-a' switch to see them."
- msgstr[0] ""
- msgstr[1] ""
- #: apt-private/private-main.cc
- msgid ""
- "NOTE: This is only a simulation!\n"
- " apt-get needs root privileges for real execution.\n"
- " Keep also in mind that locking is deactivated,\n"
- " so don't depend on the relevance to the real current situation!"
- msgstr ""
- #: apt-private/private-output.cc apt-private/private-show.cc
- msgid "unknown"
- msgstr ""
- #: apt-private/private-output.cc
- #, fuzzy, c-format
- msgid "[installed,upgradable to: %s]"
- msgstr " [Nakaluklok]"
- #: apt-private/private-output.cc
- #, fuzzy
- msgid "[installed,local]"
- msgstr " [Nakaluklok]"
- #: apt-private/private-output.cc
- msgid "[installed,auto-removable]"
- msgstr ""
- #: apt-private/private-output.cc
- #, fuzzy
- msgid "[installed,automatic]"
- msgstr " [Nakaluklok]"
- #: apt-private/private-output.cc
- #, fuzzy
- msgid "[installed]"
- msgstr " [Nakaluklok]"
- #: apt-private/private-output.cc
- #, c-format
- msgid "[upgradable from: %s]"
- msgstr ""
- #: apt-private/private-output.cc
- msgid "[residual-config]"
- msgstr ""
- #: apt-private/private-output.cc
- #, c-format
- msgid "but %s is installed"
- msgstr "ngunit ang %s ay nakaluklok"
- #: apt-private/private-output.cc
- #, c-format
- msgid "but %s is to be installed"
- msgstr "ngunit ang %s ay iluluklok"
- #: apt-private/private-output.cc
- msgid "but it is not installable"
- msgstr "ngunit hindi ito maaaring iluklok"
- #: apt-private/private-output.cc
- msgid "but it is a virtual package"
- msgstr "ngunit ito ay birtwal na pakete"
- #: apt-private/private-output.cc
- msgid "but it is not installed"
- msgstr "ngunit ito ay hindi nakaluklok"
- #: apt-private/private-output.cc
- msgid "but it is not going to be installed"
- msgstr "ngunit ito ay hindi iluluklok"
- #: apt-private/private-output.cc
- msgid " or"
- msgstr " o"
- #: apt-private/private-output.cc
- msgid "The following packages have unmet dependencies:"
- msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:"
- #: apt-private/private-output.cc
- msgid "The following NEW packages will be installed:"
- msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
- #: apt-private/private-output.cc
- msgid "The following packages will be REMOVED:"
- msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:"
- #: apt-private/private-output.cc
- msgid "The following packages have been kept back:"
- msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:"
- #: apt-private/private-output.cc
- msgid "The following packages will be upgraded:"
- msgstr "Ang susunod na mga pakete ay iu-upgrade:"
- #: apt-private/private-output.cc
- msgid "The following packages will be DOWNGRADED:"
- msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:"
- #: apt-private/private-output.cc
- msgid "The following held packages will be changed:"
- msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:"
- #: apt-private/private-output.cc
- #, c-format
- msgid "%s (due to %s)"
- msgstr "%s (dahil sa %s)"
- #: apt-private/private-output.cc
- msgid ""
- "WARNING: The following essential packages will be removed.\n"
- "This should NOT be done unless you know exactly what you are doing!"
- msgstr ""
- "BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n"
- "HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!"
- #: apt-private/private-output.cc
- #, c-format
- msgid "%lu upgraded, %lu newly installed, "
- msgstr "%lu na nai-upgrade, %lu na bagong luklok, "
- #: apt-private/private-output.cc
- #, c-format
- msgid "%lu reinstalled, "
- msgstr "%lu iniluklok muli, "
- #: apt-private/private-output.cc
- #, c-format
- msgid "%lu downgraded, "
- msgstr "%lu nai-downgrade, "
- #: apt-private/private-output.cc
- #, c-format
- msgid "%lu to remove and %lu not upgraded.\n"
- msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n"
- #: apt-private/private-output.cc
- #, c-format
- msgid "%lu not fully installed or removed.\n"
- msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n"
- #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
- #. e.g. "Do you want to continue? [Y/n] "
- #. The user has to answer with an input matching the
- #. YESEXPR/NOEXPR defined in your l10n.
- #: apt-private/private-output.cc
- msgid "[Y/n]"
- msgstr "[O/h]"
- #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
- #. e.g. "Should this file be removed? [y/N] "
- #. The user has to answer with an input matching the
- #. YESEXPR/NOEXPR defined in your l10n.
- #: apt-private/private-output.cc
- msgid "[y/N]"
- msgstr "[o/H]"
- #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
- #: apt-private/private-output.cc
- msgid "Y"
- msgstr "O"
- #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
- #: apt-private/private-output.cc
- msgid "N"
- msgstr "H"
- #: apt-private/private-output.cc apt-pkg/cachefilter.cc
- #, c-format
- msgid "Regex compilation error - %s"
- msgstr "Error sa pag-compile ng regex - %s"
- #: apt-private/private-search.cc
- #, fuzzy
- msgid "You must give at least one search pattern"
- msgstr "Kailangan niyong magbigay ng isa lamang na pattern"
- #: apt-private/private-search.cc
- msgid "Full Text Search"
- msgstr ""
- #: apt-private/private-show.cc cmdline/apt-cache.cc
- #, c-format
- msgid "Package file %s is out of sync."
- msgstr "Wala sa sync ang talaksan ng paketeng %s."
- #: apt-private/private-show.cc
- #, c-format
- msgid "There is %i additional record. Please use the '-a' switch to see it"
- msgid_plural ""
- "There are %i additional records. Please use the '-a' switch to see them."
- msgstr[0] ""
- msgstr[1] ""
- #: apt-private/private-show.cc
- msgid "not a real package (virtual)"
- msgstr ""
- #: apt-private/private-show.cc apt-pkg/cacheset.cc
- #, c-format
- msgid "Unable to locate package %s"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-private/private-show.cc
- msgid "Package files:"
- msgstr "Talaksang Pakete:"
- #: apt-private/private-show.cc
- msgid "Cache is out of sync, can't x-ref a package file"
- msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete"
- #. Show any packages have explicit pins
- #: apt-private/private-show.cc
- msgid "Pinned packages:"
- msgstr "Mga naka-Pin na Pakete:"
- #: apt-private/private-show.cc
- msgid "(not found)"
- msgstr "(hindi nahanap)"
- #. Print the package name and the version we are forcing to
- #: apt-private/private-show.cc
- #, c-format
- msgid "%s -> %s with priority %d\n"
- msgstr ""
- #: apt-private/private-show.cc
- msgid " Installed: "
- msgstr " Nakaluklok: "
- #: apt-private/private-show.cc
- msgid " Candidate: "
- msgstr " Kandidato: "
- #: apt-private/private-show.cc
- msgid "(none)"
- msgstr "(wala)"
- #: apt-private/private-show.cc
- msgid " Package pin: "
- msgstr " Naka-Pin na Pakete: "
- #. Show the priority tables
- #: apt-private/private-show.cc
- msgid " Version table:"
- msgstr " Talaang Bersyon:"
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid "Can not find a package for architecture '%s'"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid "Can not find a package '%s' with version '%s'"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid "Can not find a package '%s' with release '%s'"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid "Picking '%s' as source package instead of '%s'\n"
- msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Can not find version '%s' of package '%s'"
- msgstr ""
- #: apt-private/private-source.cc
- msgid "Must specify at least one package to fetch source for"
- msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Unable to find a source package for %s"
- msgstr "Hindi mahanap ang paketeng source para sa %s"
- #: apt-private/private-source.cc
- #, c-format
- msgid ""
- "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
- "%s\n"
- msgstr ""
- #: apt-private/private-source.cc
- #, c-format
- msgid ""
- "Please use:\n"
- "%s\n"
- "to retrieve the latest (possibly unreleased) updates to the package.\n"
- msgstr ""
- #: apt-private/private-source.cc
- #, c-format
- msgid "Skipping already downloaded file '%s'\n"
- msgstr "Linaktawan ang nakuha na na talaksan '%s'\n"
- #. TRANSLATOR: The required space between number and unit is already included
- #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
- #: apt-private/private-source.cc
- #, c-format
- msgid "Need to get %sB/%sB of source archives.\n"
- msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n"
- #. TRANSLATOR: The required space between number and unit is already included
- #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: apt-private/private-source.cc
- #, c-format
- msgid "Need to get %sB of source archives.\n"
- msgstr "Kailangang kumuha ng %sB ng arkibong source.\n"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Fetch source %s\n"
- msgstr "Kunin ang Source %s\n"
- #: apt-private/private-source.cc
- msgid "Failed to fetch some archives."
- msgstr "Bigo sa pagkuha ng ilang mga arkibo."
- #: apt-private/private-source.cc
- #, c-format
- msgid "Skipping unpack of already unpacked source in %s\n"
- msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Unpack command '%s' failed.\n"
- msgstr "Bigo ang utos ng pagbuklat '%s'.\n"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Check if the 'dpkg-dev' package is installed.\n"
- msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Build command '%s' failed.\n"
- msgstr "Utos na build '%s' ay bigo.\n"
- #: apt-private/private-source.cc
- msgid "Must specify at least one package to check builddeps for"
- msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps"
- #: apt-private/private-source.cc
- #, c-format
- msgid ""
- "No architecture information available for %s. See apt.conf(5) APT::"
- "Architectures for setup"
- msgstr ""
- #: apt-private/private-source.cc
- #, c-format
- msgid "Note, using directory '%s' to get the build dependencies\n"
- msgstr ""
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid "Note, using file '%s' to get the build dependencies\n"
- msgstr "Bigo sa pagproseso ng build dependencies"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Unable to get build-dependency information for %s"
- msgstr "Hindi makuha ang impormasyong build-dependency para sa %s"
- #: apt-private/private-source.cc
- #, c-format
- msgid "%s has no build depends.\n"
- msgstr "Walang build depends ang %s.\n"
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid ""
- "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
- "packages"
- msgstr ""
- "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
- "mahanap"
- #: apt-private/private-source.cc
- #, c-format
- msgid ""
- "%s dependency for %s cannot be satisfied because the package %s cannot be "
- "found"
- msgstr ""
- "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
- "mahanap"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
- msgstr ""
- "Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng "
- "%s ay bagong-bago pa lamang."
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid ""
- "%s dependency for %s cannot be satisfied because candidate version of "
- "package %s can't satisfy version requirements"
- msgstr ""
- "Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon "
- "ng paketeng %s na tumutugon sa kinakailangang bersyon"
- #: apt-private/private-source.cc
- #, fuzzy, c-format
- msgid ""
- "%s dependency for %s cannot be satisfied because package %s has no candidate "
- "version"
- msgstr ""
- "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
- "mahanap"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Failed to satisfy %s dependency for %s: %s"
- msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s"
- #: apt-private/private-source.cc
- #, c-format
- msgid "Build-dependencies for %s could not be satisfied."
- msgstr "Hindi mabuo ang build-dependencies para sa %s."
- #: apt-private/private-source.cc
- msgid "Failed to process build dependencies"
- msgstr "Bigo sa pagproseso ng build dependencies"
- #: apt-private/private-sources.cc
- #, fuzzy, c-format
- msgid "Failed to parse %s. Edit again? "
- msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
- #: apt-private/private-sources.cc
- #, c-format
- msgid "Your '%s' file changed, please run 'apt-get update'."
- msgstr ""
- #: apt-private/private-update.cc
- msgid "The update command takes no arguments"
- msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
- #: apt-private/private-update.cc
- #, c-format
- msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
- msgid_plural ""
- "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
- msgstr[0] ""
- msgstr[1] ""
- #: apt-private/private-update.cc
- msgid "All packages are up to date."
- msgstr ""
- #: cmdline/apt-cache.cc
- #, c-format
- msgid "Package %s version %s has an unmet dep:\n"
- msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n"
- #: cmdline/apt-cache.cc
- #, fuzzy
- msgid "apt-cache stats does not take any arguments"
- msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
- #: cmdline/apt-cache.cc
- msgid "Total package names: "
- msgstr "Kabuuan ng mga Pakete : "
- #: cmdline/apt-cache.cc
- #, fuzzy
- msgid "Total package structures: "
- msgstr "Kabuuan ng mga Pakete : "
- #: cmdline/apt-cache.cc
- msgid " Normal packages: "
- msgstr " Normal na Pakete: "
- #: cmdline/apt-cache.cc
- msgid " Pure virtual packages: "
- msgstr " Purong Birtwual na Pakete: "
- #: cmdline/apt-cache.cc
- msgid " Single virtual packages: "
- msgstr " Nag-iisang Birtwal na Pakete: "
- #: cmdline/apt-cache.cc
- msgid " Mixed virtual packages: "
- msgstr " Halong Birtwal na Pakete: "
- #: cmdline/apt-cache.cc
- msgid " Missing: "
- msgstr " Kulang/Nawawala: "
- #: cmdline/apt-cache.cc
- msgid "Total distinct versions: "
- msgstr "Kabuuan ng Natatanging mga Bersyon: "
- #: cmdline/apt-cache.cc
- #, fuzzy
- msgid "Total distinct descriptions: "
- msgstr "Kabuuan ng Natatanging mga Bersyon: "
- #: cmdline/apt-cache.cc
- msgid "Total dependencies: "
- msgstr "Kabuuan ng mga Dependensiya: "
- #: cmdline/apt-cache.cc
- msgid "Total ver/file relations: "
- msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
- #: cmdline/apt-cache.cc
- #, fuzzy
- msgid "Total Desc/File relations: "
- msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
- #: cmdline/apt-cache.cc
- msgid "Total Provides mappings: "
- msgstr "Kabuuan ng Mapping ng Provides: "
- #: cmdline/apt-cache.cc
- msgid "Total globbed strings: "
- msgstr "Kabuuan ng Globbed String: "
- #: cmdline/apt-cache.cc
- msgid "Total slack space: "
- msgstr "Kabuuan ng Hindi Nagamit na puwang: "
- #: cmdline/apt-cache.cc
- msgid "Total space accounted for: "
- msgstr "Kabuuan ng puwang na napag-tuosan: "
- #: cmdline/apt-cache.cc
- msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
- msgstr ""
- #: cmdline/apt-cache.cc
- msgid ""
- "Usage: apt-cache [options] command\n"
- " apt-cache [options] show pkg1 [pkg2 ...]\n"
- "\n"
- "apt-cache queries and displays available information about installed\n"
- "as well as installable packages. It works exclusively on the data\n"
- "acquired via the 'update' command of e.g. apt-get to the local cache.\n"
- "The displayed information can therefore be outdated if the last update\n"
- "is too long ago, but in exchange apt-cache works independently of the\n"
- "availability of the configured sources (e.g. offline).\n"
- msgstr ""
- #: cmdline/apt-cache.cc
- msgid "Show source records"
- msgstr "Ipakita ang mga record ng source"
- #: cmdline/apt-cache.cc
- msgid "Search the package list for a regex pattern"
- msgstr "Maghanap sa listahan ng mga pakete ng regex pattern"
- #: cmdline/apt-cache.cc
- msgid "Show raw dependency information for a package"
- msgstr "Ipakita ang impormasyon tungkol sa ganap na dependensiya ng pakete"
- #: cmdline/apt-cache.cc
- msgid "Show reverse dependency information for a package"
- msgstr "Ipakita ang impormasyong kabaliktarang dependensiya ng pakete"
- #: cmdline/apt-cache.cc
- msgid "Show a readable record for the package"
- msgstr "Ipakita ang nababasang record ng pakete"
- #: cmdline/apt-cache.cc
- msgid "List the names of all packages in the system"
- msgstr "Ipakita ang listahan ng pangalan ng lahat ng mga pakete"
- #: cmdline/apt-cache.cc
- msgid "Show policy settings"
- msgstr "Ipakita ang pagkaayos ng mga policy"
- #: cmdline/apt.cc
- msgid ""
- "Usage: apt [options] command\n"
- "\n"
- "apt is a commandline package manager and provides commands for\n"
- "searching and managing as well as querying information about packages.\n"
- "It provides the same functionality as the specialized APT tools,\n"
- "like apt-get and apt-cache, but enables options more suitable for\n"
- "interactive use by default.\n"
- msgstr ""
- #. query
- #: cmdline/apt.cc
- msgid "list packages based on package names"
- msgstr ""
- #: cmdline/apt.cc
- #, fuzzy
- msgid "search in package descriptions"
- msgstr "Binabasa ang Listahan ng mga Pakete"
- #: cmdline/apt.cc
- msgid "show package details"
- msgstr ""
- #. package stuff
- #: cmdline/apt.cc
- #, fuzzy
- msgid "install packages"
- msgstr "Mga naka-Pin na Pakete:"
- #: cmdline/apt.cc
- #, fuzzy
- msgid "remove packages"
- msgstr "Sirang mga pakete"
- #: cmdline/apt.cc cmdline/apt-get.cc
- msgid "Remove automatically all unused packages"
- msgstr ""
- #. system wide stuff
- #: cmdline/apt.cc
- #, fuzzy
- msgid "update list of available packages"
- msgstr "ngunit ito ay birtwal na pakete"
- #: cmdline/apt.cc
- msgid "upgrade the system by installing/upgrading packages"
- msgstr ""
- #: cmdline/apt.cc
- msgid "upgrade the system by removing/installing/upgrading packages"
- msgstr ""
- #. misc
- #: cmdline/apt.cc
- #, fuzzy
- msgid "edit the source information file"
- msgstr "Pinagsasama ang magagamit na impormasyon"
- #: cmdline/apt-cdrom.cc
- #, fuzzy
- msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
- msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'"
- #: cmdline/apt-cdrom.cc
- #, fuzzy
- msgid "Please insert a Disc in the drive and press [Enter]"
- msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter"
- #: cmdline/apt-cdrom.cc
- #, fuzzy, c-format
- msgid "Failed to mount '%s' to '%s'"
- msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
- #: cmdline/apt-cdrom.cc
- msgid ""
- "No CD-ROM could be auto-detected or found using the default mount point.\n"
- "You may try the --cdrom option to set the CD-ROM mount point.\n"
- "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
- "mount point."
- msgstr ""
- #: cmdline/apt-cdrom.cc
- msgid "Repeat this process for the rest of the CDs in your set."
- msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set."
- #: cmdline/apt-cdrom.cc
- msgid ""
- "Usage: apt-cdrom [options] command\n"
- "\n"
- "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
- "media types as package sources to APT. The mount point and device\n"
- "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
- msgstr ""
- #: cmdline/apt-config.cc
- msgid "Arguments not in pairs"
- msgstr "Mga argumento ay hindi naka-pares"
- #: cmdline/apt-config.cc
- msgid ""
- "Usage: apt-config [options] command\n"
- "\n"
- "apt-config is an interface to the configuration settings used by\n"
- "all APT tools to be used mainly in debugging and shell scripting.\n"
- msgstr ""
- #: cmdline/apt-config.cc
- msgid "get configuration values via shell evaluation"
- msgstr ""
- #: cmdline/apt-config.cc
- msgid "show the active configuration setting"
- msgstr ""
- #: cmdline/apt-get.cc
- #, c-format
- msgid "Couldn't find package %s"
- msgstr "Hindi mahanap ang paketeng %s"
- #: cmdline/apt-get.cc cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s set to automatically installed.\n"
- msgstr "ngunit ang %s ay iluluklok"
- #: cmdline/apt-get.cc cmdline/apt-mark.cc
- msgid ""
- "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
- "instead."
- msgstr ""
- #: cmdline/apt-get.cc
- msgid "Internal error, problem resolver broke stuff"
- msgstr "Error na internal, may nasira ang problem resolver"
- #: cmdline/apt-get.cc
- msgid "Supported modules:"
- msgstr "Suportadong mga Module:"
- #: cmdline/apt-get.cc
- #, fuzzy
- msgid ""
- "Usage: apt-get [options] command\n"
- " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
- " apt-get [options] source pkg1 [pkg2 ...]\n"
- "\n"
- "apt-get is a command line interface for retrieval of packages\n"
- "and information about them from authenticated sources and\n"
- "for installation, upgrade and removal of packages together\n"
- "with their dependencies.\n"
- msgstr ""
- "Pag-gamit: apt-get [mga option] utos\n"
- " apt-get [mga option] install|remove pkt1 [pkt2 ...]\n"
- " apt-get [mga option] source pkt1 [pkt2 ...]\n"
- "\n"
- "Ang apt-get ay payak na command line interface para sa pagkuha at\n"
- "pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n"
- "at install.\n"
- #: cmdline/apt-get.cc
- msgid "Retrieve new lists of packages"
- msgstr "Kunin ang bagong listahan ng mga pakete"
- #: cmdline/apt-get.cc
- msgid "Perform an upgrade"
- msgstr "Gumawa ng upgrade"
- #: cmdline/apt-get.cc
- msgid "Install new packages (pkg is libc6 not libc6.deb)"
- msgstr "Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)"
- #: cmdline/apt-get.cc
- msgid "Remove packages"
- msgstr "Mag-tanggal ng mga pakete"
- #: cmdline/apt-get.cc
- msgid "Remove packages and config files"
- msgstr ""
- #: cmdline/apt-get.cc
- msgid "Distribution upgrade, see apt-get(8)"
- msgstr "Mag-upgrade ng pamudmod, basahin ang apt-get(8)"
- #: cmdline/apt-get.cc
- msgid "Follow dselect selections"
- msgstr "Sundan ang mga pinili sa dselect"
- #: cmdline/apt-get.cc
- msgid "Configure build-dependencies for source packages"
- msgstr "Magsaayos ng build-dependencies para sa mga paketeng source"
- #: cmdline/apt-get.cc
- msgid "Erase downloaded archive files"
- msgstr "Burahin ang mga nakuhang mga talaksang naka-arkibo"
- #: cmdline/apt-get.cc
- msgid "Erase old downloaded archive files"
- msgstr "Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan"
- #: cmdline/apt-get.cc
- msgid "Verify that there are no broken dependencies"
- msgstr "Tiyakin na walang mga sirang dependensiya"
- #: cmdline/apt-get.cc
- msgid "Download source archives"
- msgstr "Kumuha ng arkibong source"
- #: cmdline/apt-get.cc
- msgid "Download the binary package into the current directory"
- msgstr ""
- #: cmdline/apt-get.cc
- msgid "Download and display the changelog for the given package"
- msgstr ""
- #: cmdline/apt-helper.cc
- msgid "Need one URL as argument"
- msgstr ""
- #: cmdline/apt-helper.cc
- #, fuzzy
- msgid "Must specify at least one pair url/filename"
- msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source"
- #: cmdline/apt-helper.cc
- msgid "Download Failed"
- msgstr ""
- #: cmdline/apt-helper.cc
- #, c-format
- msgid "GetSrvRec failed for %s"
- msgstr ""
- #: cmdline/apt-helper.cc
- msgid ""
- "Usage: apt-helper [options] command\n"
- " apt-helper [options] download-file uri target-path\n"
- "\n"
- "apt-helper bundles a variety of commands for shell scripts to use\n"
- "e.g. the same proxy configuration or acquire system as APT would do.\n"
- msgstr ""
- #: cmdline/apt-helper.cc
- msgid "download the given uri to the target-path"
- msgstr ""
- #: cmdline/apt-helper.cc
- msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
- msgstr ""
- #: cmdline/apt-helper.cc
- msgid "detect proxy using apt.conf"
- msgstr ""
- #: cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s can not be marked as it is not installed.\n"
- msgstr "ngunit ito ay hindi nakaluklok"
- #: cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s was already set to manually installed.\n"
- msgstr "ngunit ang %s ay iluluklok"
- #: cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s was already set to automatically installed.\n"
- msgstr "ngunit ang %s ay iluluklok"
- #: cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s was already set on hold.\n"
- msgstr "%s ay pinakabagong bersyon na.\n"
- #: cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s was already not hold.\n"
- msgstr "%s ay pinakabagong bersyon na.\n"
- #: cmdline/apt-mark.cc
- msgid "Executing dpkg failed. Are you root?"
- msgstr ""
- #: cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "%s set on hold.\n"
- msgstr "ngunit ang %s ay iluluklok"
- #: cmdline/apt-mark.cc
- #, fuzzy, c-format
- msgid "Canceled hold on %s.\n"
- msgstr "Bigo ang pagbukas ng %s"
- #: cmdline/apt-mark.cc
- #, c-format
- msgid "Selected %s for purge.\n"
- msgstr ""
- #: cmdline/apt-mark.cc
- #, c-format
- msgid "Selected %s for removal.\n"
- msgstr ""
- #: cmdline/apt-mark.cc
- #, c-format
- msgid "Selected %s for installation.\n"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid ""
- "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
- "\n"
- "apt-mark is a simple command line interface for marking packages\n"
- "as manually or automatically installed. It is also possible to\n"
- "manipulate the dpkg(1) selection states of packages with it.\n"
- "It can also list all packages with or without a certain marking.\n"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid "Mark the given packages as automatically installed"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid "Mark the given packages as manually installed"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid "Mark a package as held back"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid "Unset a package set as held back"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid "Print the list of automatically installed packages"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid "Print the list of manually installed packages"
- msgstr ""
- #: cmdline/apt-mark.cc
- msgid "Print the list of package on hold"
- msgstr ""
- #: methods/cdrom.cc
- #, c-format
- msgid "Unable to read the cdrom database %s"
- msgstr "Hindi mabasa ang database ng cdrom %s"
- #: methods/cdrom.cc
- msgid ""
- "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
- "cannot be used to add new CD-ROMs"
- msgstr ""
- "Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi "
- "maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD"
- #: methods/cdrom.cc
- msgid "Wrong CD-ROM"
- msgstr "Maling CD"
- #: methods/cdrom.cc
- #, c-format
- msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
- msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito."
- #: methods/cdrom.cc
- msgid "Disk not found."
- msgstr "Hindi nahanap ang Disk."
- #: methods/cdrom.cc methods/file.cc methods/rsh.cc
- msgid "File not found"
- msgstr "Hindi Nahanap ang Talaksan"
- #: methods/connect.cc
- #, c-format
- msgid "Connecting to %s (%s)"
- msgstr "Kumokonekta sa %s (%s)"
- #: methods/connect.cc
- #, c-format
- msgid "[IP: %s %s]"
- msgstr "[IP: %s %s]"
- #: methods/connect.cc
- #, c-format
- msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
- msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)"
- #: methods/connect.cc
- #, c-format
- msgid "Cannot initiate the connection to %s:%s (%s)."
- msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)."
- #: methods/connect.cc
- #, c-format
- msgid "Could not connect to %s:%s (%s), connection timed out"
- msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon"
- #: methods/connect.cc methods/ftp.cc methods/rsh.cc
- msgid "Failed"
- msgstr "Bigo"
- #: methods/connect.cc
- #, c-format
- msgid "Could not connect to %s:%s (%s)."
- msgstr "Hindi maka-konekta sa %s:%s (%s)."
- #. We say this mainly because the pause here is for the
- #. ssh connection that is still going
- #: methods/connect.cc methods/rsh.cc
- #, c-format
- msgid "Connecting to %s"
- msgstr "Kumokonekta sa %s"
- #: methods/connect.cc
- #, c-format
- msgid "Could not resolve '%s'"
- msgstr "Hindi maresolba ang '%s'"
- #: methods/connect.cc
- #, c-format
- msgid "Temporary failure resolving '%s'"
- msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'"
- #: methods/connect.cc
- #, fuzzy, c-format
- msgid "System error resolving '%s:%s'"
- msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)"
- #: methods/connect.cc
- #, fuzzy, c-format
- msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
- msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)"
- #: methods/connect.cc
- #, fuzzy, c-format
- msgid "Unable to connect to %s:%s:"
- msgstr "Hindi maka-konekta sa %s %s:"
- #: methods/copy.cc methods/gzip.cc methods/rred.cc
- msgid "Failed to stat"
- msgstr "Bigo ang pag-stat"
- #: methods/copy.cc methods/gzip.cc methods/rred.cc
- msgid "Failed to set modification time"
- msgstr "Bigo ang pagtakda ng oras ng pagbago"
- #: methods/file.cc
- msgid "Invalid URI, local URIS must not start with //"
- msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //"
- #. Login must be before getpeername otherwise dante won't work.
- #: methods/ftp.cc
- msgid "Logging in"
- msgstr "Pumapasok"
- #: methods/ftp.cc
- msgid "Unable to determine the peer name"
- msgstr "Hindi malaman ang pangalan ng peer"
- #: methods/ftp.cc
- msgid "Unable to determine the local name"
- msgstr "Hindi malaman ang pangalang lokal"
- #: methods/ftp.cc
- #, c-format
- msgid "The server refused the connection and said: %s"
- msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s"
- #: methods/ftp.cc
- #, c-format
- msgid "USER failed, server said: %s"
- msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s"
- #: methods/ftp.cc
- #, c-format
- msgid "PASS failed, server said: %s"
- msgstr "Bigo ang PASS, sabi ng server ay: %s"
- #: methods/ftp.cc
- msgid ""
- "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
- "is empty."
- msgstr ""
- "May tinakdang katuwang na server ngunit walang login script, walang laman "
- "ang Acquire::ftp::ProxyLogin."
- #: methods/ftp.cc
- #, c-format
- msgid "Login script command '%s' failed, server said: %s"
- msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s"
- #: methods/ftp.cc
- #, c-format
- msgid "TYPE failed, server said: %s"
- msgstr "Bigo ang TYPE, sabi ng server ay: %s"
- #: methods/ftp.cc methods/rsh.cc
- msgid "Connection timeout"
- msgstr "Lumipas ang koneksyon"
- #: methods/ftp.cc
- msgid "Server closed the connection"
- msgstr "Sinarhan ng server ang koneksyon"
- #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
- msgid "Read error"
- msgstr "Error sa pagbasa"
- #: methods/ftp.cc methods/rsh.cc
- msgid "A response overflowed the buffer."
- msgstr "May sagot na bumubo sa buffer."
- #: methods/ftp.cc
- msgid "Protocol corruption"
- msgstr "Sira ang protocol"
- #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
- msgid "Write error"
- msgstr "Error sa pagsulat"
- #: methods/ftp.cc
- msgid "Could not create a socket"
- msgstr "Hindi maka-likha ng socket"
- #: methods/ftp.cc
- msgid "Could not connect data socket, connection timed out"
- msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon"
- #: methods/ftp.cc
- msgid "Could not connect passive socket."
- msgstr "Hindi maka-konekta sa socket na passive."
- #: methods/ftp.cc
- msgid "getaddrinfo was unable to get a listening socket"
- msgstr "di makakuha ang getaddrinfo ng socket na nakikinig"
- #: methods/ftp.cc
- msgid "Could not bind a socket"
- msgstr "Hindi maka-bind ng socket"
- #: methods/ftp.cc
- msgid "Could not listen on the socket"
- msgstr "Hindi makarinig sa socket"
- #: methods/ftp.cc
- msgid "Could not determine the socket's name"
- msgstr "Hindi malaman ang pangalan ng socket"
- #: methods/ftp.cc
- msgid "Unable to send PORT command"
- msgstr "Hindi makapagpadala ng utos na PORT"
- #: methods/ftp.cc
- #, c-format
- msgid "Unknown address family %u (AF_*)"
- msgstr "Di kilalang pamilya ng address %u (AF_*)"
- #: methods/ftp.cc
- #, c-format
- msgid "EPRT failed, server said: %s"
- msgstr "Bigo ang EPRT, sabi ng server ay: %s"
- #: methods/ftp.cc
- msgid "Data socket connect timed out"
- msgstr "Nag-timeout ang socket ng datos"
- #: methods/ftp.cc
- msgid "Unable to accept connection"
- msgstr "Hindi makatanggap ng koneksyon"
- #: methods/ftp.cc methods/rsh.cc methods/server.cc
- msgid "Problem hashing file"
- msgstr "Problema sa pag-hash ng talaksan"
- #: methods/ftp.cc
- #, c-format
- msgid "Unable to fetch file, server said '%s'"
- msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'"
- #: methods/ftp.cc methods/rsh.cc
- msgid "Data socket timed out"
- msgstr "Nag-timeout ang socket ng datos"
- #: methods/ftp.cc
- #, c-format
- msgid "Data transfer failed, server said '%s'"
- msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'"
- #. Get the files information
- #: methods/ftp.cc
- msgid "Query"
- msgstr "Tanong"
- #: methods/ftp.cc
- msgid "Unable to invoke "
- msgstr "Hindi ma-invoke "
- #: methods/gpgv.cc
- msgid "At least one invalid signature was encountered."
- msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro."
- #: methods/gpgv.cc
- msgid ""
- "Internal error: Good signature, but could not determine key fingerprint?!"
- msgstr ""
- "Error na internal: Tanggap na lagda, ngunit hindi malaman ang key "
- "fingerprint?!"
- #: methods/gpgv.cc
- #, fuzzy
- msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
- msgstr ""
- "Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gnupg?)"
- #. TRANSLATORS: %s is a single techy word like 'NODATA'
- #: methods/gpgv.cc apt-pkg/acquire-item.cc
- #, c-format
- msgid ""
- "Clearsigned file isn't valid, got '%s' (does the network require "
- "authentication?)"
- msgstr ""
- #: methods/gpgv.cc
- msgid "Unknown error executing apt-key"
- msgstr "Hindi kilalang error sa pag-execute ng apt-key"
- #: methods/gpgv.cc
- msgid "The following signatures were invalid:\n"
- msgstr "Ang sumusunod na mga lagda ay imbalido:\n"
- #: methods/gpgv.cc
- msgid ""
- "The following signatures couldn't be verified because the public key is not "
- "available:\n"
- msgstr ""
- "Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi "
- "available:\n"
- #: methods/gzip.cc
- msgid "Empty files can't be valid archives"
- msgstr ""
- #: methods/http.cc
- msgid "Error writing to the file"
- msgstr "Error sa pagsusulat sa talaksan"
- #: methods/http.cc
- msgid "Error reading from server. Remote end closed connection"
- msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
- #: methods/http.cc
- msgid "Error reading from server"
- msgstr "Error sa pagbasa mula sa server"
- #: methods/http.cc
- msgid "Error writing to file"
- msgstr "Error sa pagsulat sa talaksan"
- #: methods/http.cc
- msgid "Select failed"
- msgstr "Bigo ang pagpili"
- #: methods/http.cc
- msgid "Connection timed out"
- msgstr "Nag-timeout ang koneksyon"
- #: methods/http.cc
- msgid "Error writing to output file"
- msgstr "Error sa pagsulat ng talaksang output"
- #. Only warn if there are no sources.list.d.
- #. Only warn if there is no sources.list file.
- #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
- #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
- #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
- #, c-format
- msgid "Unable to read %s"
- msgstr "Hindi mabasa ang %s"
- #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
- #: apt-pkg/contrib/cdromutl.cc
- #, c-format
- msgid "Unable to change to %s"
- msgstr "Di makalipat sa %s"
- #. FIXME: fallback to a default mirror here instead
- #. and provide a config option to define that default
- #: methods/mirror.cc
- #, c-format
- msgid "No mirror file '%s' found "
- msgstr ""
- #. FIXME: fallback to a default mirror here instead
- #. and provide a config option to define that default
- #: methods/mirror.cc
- #, fuzzy, c-format
- msgid "Can not read mirror file '%s'"
- msgstr "Hindi mabuksan ang talaksang %s"
- #: methods/mirror.cc
- #, fuzzy, c-format
- msgid "No entry found in mirror file '%s'"
- msgstr "Hindi mabuksan ang talaksang %s"
- #: methods/mirror.cc
- #, c-format
- msgid "[Mirror: %s]"
- msgstr ""
- #: methods/rsh.cc ftparchive/multicompress.cc
- msgid "Failed to create IPC pipe to subprocess"
- msgstr "Bigo sa paglikha ng IPC pipe sa subprocess"
- #: methods/rsh.cc
- msgid "Connection closed prematurely"
- msgstr "Nagsara ng maaga ang koneksyon"
- #: methods/server.cc
- msgid "Waiting for headers"
- msgstr "Naghihintay ng panimula"
- #: methods/server.cc
- msgid "Bad header line"
- msgstr "Maling linyang panimula"
- #: methods/server.cc
- msgid "The HTTP server sent an invalid reply header"
- msgstr "Nagpadala ang HTTP server ng di tanggap na reply header"
- #: methods/server.cc
- msgid "The HTTP server sent an invalid Content-Length header"
- msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header"
- #: methods/server.cc
- msgid "The HTTP server sent an invalid Content-Range header"
- msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header"
- #: methods/server.cc
- msgid "This HTTP server has broken range support"
- msgstr "Sira ang range support ng HTTP server na ito"
- #: methods/server.cc
- msgid "Unknown date format"
- msgstr "Di kilalang anyo ng petsa"
- #: methods/server.cc
- msgid "Bad header data"
- msgstr "Maling datos sa panimula"
- #: methods/server.cc
- msgid "Connection failed"
- msgstr "Bigo ang koneksyon"
- #: methods/server.cc
- #, c-format
- msgid ""
- "Automatically disabled %s due to incorrect response from server/proxy. (man "
- "5 apt.conf)"
- msgstr ""
- #: methods/server.cc
- msgid "Internal error"
- msgstr "Internal na error"
- #: dselect/install:33
- msgid "Bad default setting!"
- msgstr "Maling nakatakda na default!"
- #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
- #: dselect/install:106 dselect/update:45
- #, fuzzy
- msgid "Press [Enter] to continue."
- msgstr "Pindutin ang enter upang magpatuloy."
- #: dselect/install:92
- msgid "Do you want to erase any previously downloaded .deb files?"
- msgstr ""
- #: dselect/install:102
- #, fuzzy
- msgid "Some errors occurred while unpacking. Packages that were installed"
- msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang"
- #: dselect/install:103
- #, fuzzy
- msgid "will be configured. This may result in duplicate errors"
- msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble"
- #: dselect/install:104
- msgid "or errors caused by missing dependencies. This is OK, only the errors"
- msgstr ""
- "o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang"
- #: dselect/install:105
- msgid ""
- "above this message are important. Please fix them and run [I]nstall again"
- msgstr ""
- "sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin "
- "muli ang [I]luklok/Instol."
- #: dselect/update:30
- msgid "Merging available information"
- msgstr "Pinagsasama ang magagamit na impormasyon"
- #: cmdline/apt-extracttemplates.cc
- #, fuzzy
- msgid ""
- "Usage: apt-extracttemplates file1 [file2 ...]\n"
- "\n"
- "apt-extracttemplates is used to extract config and template files\n"
- "from debian packages. It is used mainly by debconf(1) to prompt for\n"
- "configuration questions before installation of packages.\n"
- msgstr ""
- "Pag-gamit: apt-extracttemplates talaksan1 [talaksan2 ...]\n"
- "\n"
- "Ang apt-extracttemplates ay kagamitan sa pagkuha ng info tungkol\n"
- "sa pagkaayos at template mula sa mga paketeng debian\n"
- "\n"
- "Mga opsyon:\n"
- " -h Itong tulong na ito\n"
- " -t Itakda ang dir na pansamantala\n"
- " -c=? Basahin ang talaksang pagkaayos na ito\n"
- " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n"
- #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "Unable to mkstemp %s"
- msgstr "Hindi ma-stat ang %s"
- #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Unable to write to %s"
- msgstr "Hindi makapagsulat sa %s"
- #: cmdline/apt-extracttemplates.cc
- msgid "Cannot get debconf version. Is debconf installed?"
- msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?"
- #: cmdline/apt-internal-solver.cc
- #, fuzzy
- msgid ""
- "Usage: apt-internal-solver\n"
- "\n"
- "apt-internal-solver is an interface to use the current internal\n"
- "like an external resolver for the APT family for debugging or alike.\n"
- msgstr ""
- "Pag-gamit: apt-extracttemplates talaksan1 [talaksan2 ...]\n"
- "\n"
- "Ang apt-extracttemplates ay kagamitan sa pagkuha ng info tungkol\n"
- "sa pagkaayos at template mula sa mga paketeng debian\n"
- "\n"
- "Mga opsyon:\n"
- " -h Itong tulong na ito\n"
- " -t Itakda ang dir na pansamantala\n"
- " -c=? Basahin ang talaksang pagkaayos na ito\n"
- " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n"
- #: cmdline/apt-sortpkgs.cc
- msgid "Unknown package record!"
- msgstr "Di kilalang record ng pakete!"
- #: cmdline/apt-sortpkgs.cc
- msgid ""
- "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
- "\n"
- "apt-sortpkgs is a simple tool to sort package information files.\n"
- "It sorts by default by binary package information, but the -s option\n"
- "can be used to switch to source package ordering instead.\n"
- msgstr ""
- #: ftparchive/apt-ftparchive.cc
- msgid "Package extension list is too long"
- msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete"
- #: ftparchive/apt-ftparchive.cc
- #, c-format
- msgid "Error processing directory %s"
- msgstr "Error sa pagproseso ng directory %s"
- #: ftparchive/apt-ftparchive.cc
- msgid "Source extension list is too long"
- msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)"
- #: ftparchive/apt-ftparchive.cc
- msgid "Error writing header to contents file"
- msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)"
- #: ftparchive/apt-ftparchive.cc
- #, c-format
- msgid "Error processing contents %s"
- msgstr "Error sa pagproseso ng Contents %s"
- #: ftparchive/apt-ftparchive.cc
- msgid ""
- "Usage: apt-ftparchive [options] command\n"
- "Commands: packages binarypath [overridefile [pathprefix]]\n"
- " sources srcpath [overridefile [pathprefix]]\n"
- " contents path\n"
- " release path\n"
- " generate config [groups]\n"
- " clean config\n"
- "\n"
- "apt-ftparchive generates index files for Debian archives. It supports\n"
- "many styles of generation from fully automated to functional replacements\n"
- "for dpkg-scanpackages and dpkg-scansources\n"
- "\n"
- "apt-ftparchive generates Package files from a tree of .debs. The\n"
- "Package file contains the contents of all the control fields from\n"
- "each package as well as the MD5 hash and filesize. An override file\n"
- "is supported to force the value of Priority and Section.\n"
- "\n"
- "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
- "The --source-override option can be used to specify a src override file\n"
- "\n"
- "The 'packages' and 'sources' command should be run in the root of the\n"
- "tree. BinaryPath should point to the base of the recursive search and \n"
- "override file should contain the override flags. Pathprefix is\n"
- "appended to the filename fields if present. Example usage from the \n"
- "Debian archive:\n"
- " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
- " dists/potato/main/binary-i386/Packages\n"
- "\n"
- "Options:\n"
- " -h This help text\n"
- " --md5 Control MD5 generation\n"
- " -s=? Source override file\n"
- " -q Quiet\n"
- " -d=? Select the optional caching database\n"
- " --no-delink Enable delinking debug mode\n"
- " --contents Control contents file generation\n"
- " -c=? Read this configuration file\n"
- " -o=? Set an arbitrary configuration option"
- msgstr ""
- "Pag-gamit: apt-ftparchive [mga option] utos\n"
- "Mga utos: packages binarypath [overridefile [pathprefix]]\n"
- " sources srcpath [overridefile [pathprefix]]\n"
- " contents path\n"
- " release path\n"
- " generate config [mga grupo]\n"
- " clean config\n"
- "\n"
- "Ang apt-ftparchive ay gumagawa ng talaksang index para sa arkibong Debian.\n"
- "Suportado nito ang maraming estilo ng pagbuo mula sa awtomatikong buo\n"
- "at kapalit ng dpkg-scanpackages at dpkg-scansources\n"
- "\n"
- "Bumubuo ang apt-ftparchive ng mga talaksang Package mula sa puno ng mga\n"
- ".deb. Ang talaksang Package ay naglalaman ng laman ng lahat ng control "
- "field\n"
- "mula sa bawat pakete pati na rin ang MD5 hash at laki ng talaksan. "
- "Suportado\n"
- "ang pag-gamit ng talaksang override upang pilitin ang halaga ng Priority at "
- "Section.\n"
- "\n"
- "Bumubuo din ang apt-ftparchive ng talaksang Sources mula sa puno ng mga\n"
- ".dsc. Ang option na --source-override ay maaaring gamitin upang itakda\n"
- "ang talaksang override ng src\n"
- "\n"
- "Ang mga utos na 'packages' at 'sources' ay dapat patakbuhin sa ugat ng\n"
- "puno. Kailangan nakaturo ang BinaryPath sa ugat ng paghahanap na recursive\n"
- "at ang talaksang override ay dapat naglalaman ng mga flag na override. Ang\n"
- "pathprefix ay dinudugtong sa harap ng mga pangalan ng talaksan kung "
- "mayroon.\n"
- "Halimbawa ng pag-gamit mula sa arkibong Debian:\n"
- " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
- " dists/potato/main/binary-i386/Packages\n"
- "\n"
- "Mga option:\n"
- " -h Itong tulong na ito\n"
- " --md5 Pagbuo ng MD5\n"
- " -s=? Talaksang override ng source\n"
- " -q Tahimik\n"
- " -d=? Piliin ang optional caching database\n"
- " --no-delink Enable delinking debug mode\n"
- " --contents Pagbuo ng talaksang contents\n"
- " -c=? Basahin itong talaksang pagkaayos\n"
- " -o=? Itakda ang isang option na pagkaayos"
- #: ftparchive/apt-ftparchive.cc
- msgid "No selections matched"
- msgstr "Walang mga pinili na tugma"
- #: ftparchive/apt-ftparchive.cc
- #, c-format
- msgid "Some files are missing in the package file group `%s'"
- msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'"
- #: ftparchive/cachedb.cc
- #, c-format
- msgid "DB was corrupted, file renamed to %s.old"
- msgstr "Nasira ang DB, pinalitan ng pangalan ang talaksan sa %s.old"
- #: ftparchive/cachedb.cc
- #, c-format
- msgid "DB is old, attempting to upgrade %s"
- msgstr "Luma ang DB, sinusubukang maupgrade ang %s"
- #: ftparchive/cachedb.cc
- #, fuzzy
- msgid ""
- "DB format is invalid. If you upgraded from an older version of apt, please "
- "remove and re-create the database."
- msgstr ""
- "Hindi tanggap ang anyo ng DB. Kung kayo ay nagsariwa mula sa nakaraang "
- "bersiyon ng apt, tanggalin at likhain muli ang database."
- #: ftparchive/cachedb.cc
- #, c-format
- msgid "Unable to open DB file %s: %s"
- msgstr "Hindi mabuksan ang talaksang DB %s: %s"
- #: ftparchive/cachedb.cc apt-inst/extract.cc
- #, c-format
- msgid "Failed to stat %s"
- msgstr "Bigo ang pag-stat ng %s"
- #: ftparchive/cachedb.cc
- #, fuzzy
- msgid "Failed to read .dsc"
- msgstr "Bigo ang pagbasa ng link %s"
- #: ftparchive/cachedb.cc
- msgid "Archive has no control record"
- msgstr "Walang kontrol rekord ang arkibo"
- #: ftparchive/cachedb.cc
- msgid "Unable to get a cursor"
- msgstr "Hindi makakuha ng cursor"
- #: ftparchive/contents.cc
- msgid "realloc - Failed to allocate memory"
- msgstr "realloc - Bigo ang pagreserba ng memory"
- #: ftparchive/multicompress.cc
- #, c-format
- msgid "Unknown compression algorithm '%s'"
- msgstr "Hindi kilalang algorithmong compression '%s'"
- #: ftparchive/multicompress.cc
- #, c-format
- msgid "Compressed output %s needs a compression set"
- msgstr "Kailangan ng compression set ang compressed output %s"
- #: ftparchive/multicompress.cc
- msgid "Failed to fork"
- msgstr "Bigo ang pag-fork"
- #: ftparchive/multicompress.cc
- msgid "Compress child"
- msgstr "Anak para sa pag-Compress"
- #: ftparchive/multicompress.cc
- #, c-format
- msgid "Internal error, failed to create %s"
- msgstr "Error na internal, bigo ang paglikha ng %s"
- #: ftparchive/multicompress.cc
- msgid "IO to subprocess/file failed"
- msgstr "Bigo ang IO sa subprocess/talaksan"
- #: ftparchive/multicompress.cc
- msgid "Failed to read while computing MD5"
- msgstr "Bigo ang pagbasa habang tinutuos ang MD5"
- #: ftparchive/multicompress.cc
- #, c-format
- msgid "Problem unlinking %s"
- msgstr "Problema sa pag-unlink ng %s"
- #: ftparchive/multicompress.cc apt-inst/extract.cc
- #, c-format
- msgid "Failed to rename %s to %s"
- msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
- #: ftparchive/override.cc
- #, c-format
- msgid "Unable to open %s"
- msgstr "Hindi mabuksan %s"
- #. skip spaces
- #. find end of word
- #: ftparchive/override.cc
- #, fuzzy, c-format
- msgid "Malformed override %s line %llu (%s)"
- msgstr "Maling anyo ng override %s linya %lu #1"
- #: ftparchive/override.cc
- #, c-format
- msgid "Failed to read the override file %s"
- msgstr "Bigo ang pagbasa ng talaksang override %s"
- #: ftparchive/override.cc
- #, fuzzy, c-format
- msgid "Malformed override %s line %llu #1"
- msgstr "Maling anyo ng override %s linya %lu #1"
- #: ftparchive/override.cc
- #, fuzzy, c-format
- msgid "Malformed override %s line %llu #2"
- msgstr "Maling anyo ng override %s linya %lu #2"
- #: ftparchive/override.cc
- #, fuzzy, c-format
- msgid "Malformed override %s line %llu #3"
- msgstr "Maling anyo ng override %s linya %lu #3"
- #: ftparchive/writer.cc
- #, c-format
- msgid "W: Unable to read directory %s\n"
- msgstr "W: Hindi mabasa ang directory %s\n"
- #: ftparchive/writer.cc
- #, c-format
- msgid "W: Unable to stat %s\n"
- msgstr "W: Hindi ma-stat %s\n"
- #: ftparchive/writer.cc
- msgid "E: "
- msgstr "E: "
- #: ftparchive/writer.cc
- msgid "W: "
- msgstr "W: "
- #: ftparchive/writer.cc
- msgid "E: Errors apply to file "
- msgstr "E: Mga error ay tumutukoy sa talaksang "
- #: ftparchive/writer.cc
- #, c-format
- msgid "Failed to resolve %s"
- msgstr "Bigo sa pag-resolba ng %s"
- #: ftparchive/writer.cc
- msgid "Tree walking failed"
- msgstr "Bigo ang paglakad sa puno"
- #: ftparchive/writer.cc
- #, c-format
- msgid "Failed to open %s"
- msgstr "Bigo ang pagbukas ng %s"
- #: ftparchive/writer.cc
- #, c-format
- msgid " DeLink %s [%s]\n"
- msgstr " DeLink %s [%s]\n"
- #: ftparchive/writer.cc
- #, c-format
- msgid "Failed to readlink %s"
- msgstr "Bigo ang pagbasa ng link %s"
- #: ftparchive/writer.cc
- #, c-format
- msgid "Failed to unlink %s"
- msgstr "Bigo ang pag-unlink ng %s"
- #: ftparchive/writer.cc
- #, c-format
- msgid "*** Failed to link %s to %s"
- msgstr "*** Bigo ang pag-link ng %s sa %s"
- #: ftparchive/writer.cc
- #, c-format
- msgid " DeLink limit of %sB hit.\n"
- msgstr " DeLink limit na %sB tinamaan.\n"
- #: ftparchive/writer.cc
- msgid "Archive had no package field"
- msgstr "Walang field ng pakete ang arkibo"
- #: ftparchive/writer.cc
- #, c-format
- msgid " %s has no override entry\n"
- msgstr " %s ay walang override entry\n"
- #: ftparchive/writer.cc
- #, c-format
- msgid " %s maintainer is %s not %s\n"
- msgstr " Tagapangalaga ng %s ay %s hindi %s\n"
- #: ftparchive/writer.cc
- #, c-format
- msgid " %s has no source override entry\n"
- msgstr " %s ay walang override entry para sa pinagmulan\n"
- #: ftparchive/writer.cc
- #, c-format
- msgid " %s has no binary override entry either\n"
- msgstr " %s ay wala ring override entry na binary\n"
- #: apt-inst/contrib/arfile.cc
- msgid "Invalid archive signature"
- msgstr "Hindi tanggap na signature ng arkibo"
- #: apt-inst/contrib/arfile.cc
- msgid "Error reading archive member header"
- msgstr "Error sa pagbasa ng header ng miyembro ng arkibo"
- #: apt-inst/contrib/arfile.cc
- #, fuzzy, c-format
- msgid "Invalid archive member header %s"
- msgstr "Hindi tanggap na header ng miyembro ng arkibo"
- #: apt-inst/contrib/arfile.cc
- msgid "Invalid archive member header"
- msgstr "Hindi tanggap na header ng miyembro ng arkibo"
- #: apt-inst/contrib/arfile.cc
- msgid "Archive is too short"
- msgstr "Bitin ang arkibo. Sobrang iksi."
- #: apt-inst/contrib/arfile.cc
- msgid "Failed to read the archive headers"
- msgstr "Bigo ang pagbasa ng header ng arkibo"
- #: apt-inst/contrib/extracttar.cc
- #, fuzzy, c-format
- msgid "Cannot find a configured compressor for '%s'"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-inst/contrib/extracttar.cc
- msgid "Corrupted archive"
- msgstr "Sirang arkibo"
- #: apt-inst/contrib/extracttar.cc
- msgid "Tar checksum failed, archive corrupted"
- msgstr "Bigo ang checksum ng tar, sira ang arkibo"
- #: apt-inst/contrib/extracttar.cc
- #, c-format
- msgid "Unknown TAR header type %u, member %s"
- msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s"
- #: apt-inst/deb/debfile.cc
- #, c-format
- msgid "This is not a valid DEB archive, missing '%s' member"
- msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'"
- #: apt-inst/deb/debfile.cc
- #, c-format
- msgid "Internal error, could not locate member %s"
- msgstr "Internal error, hindi mahanap ang miyembrong %s"
- #: apt-inst/deb/debfile.cc
- msgid "Unparsable control file"
- msgstr "Di maintindihang talaksang control"
- #: apt-inst/dirstream.cc
- #, c-format
- msgid "Failed to write file %s"
- msgstr "Bigo sa pagsulat ng talaksang %s"
- #: apt-inst/dirstream.cc
- #, c-format
- msgid "Failed to close file %s"
- msgstr "Bigo sa pagsara ng talaksang %s"
- #: apt-inst/extract.cc
- #, c-format
- msgid "The path %s is too long"
- msgstr "Sobrang haba ang path na %s"
- #: apt-inst/extract.cc
- #, c-format
- msgid "Unpacking %s more than once"
- msgstr "Binubuklat ang %s ng labis sa isang beses"
- #: apt-inst/extract.cc
- #, c-format
- msgid "The directory %s is diverted"
- msgstr "Ang directory %s ay divertado"
- #: apt-inst/extract.cc
- #, c-format
- msgid "The package is trying to write to the diversion target %s/%s"
- msgstr "Ang pakete ay sumusubok na magsulat sa target na diversion %s/%s"
- #: apt-inst/extract.cc
- msgid "The diversion path is too long"
- msgstr "Sobrang haba ng path na diversion"
- #: apt-inst/extract.cc
- #, c-format
- msgid "The directory %s is being replaced by a non-directory"
- msgstr "Ang directory %s ay papalitan ng hindi-directory"
- #: apt-inst/extract.cc
- msgid "Failed to locate node in its hash bucket"
- msgstr "Bigo ang paghanap ng node sa kanyang hash bucket"
- #: apt-inst/extract.cc
- msgid "The path is too long"
- msgstr "Sobrang haba ng path"
- #: apt-inst/extract.cc
- #, c-format
- msgid "Overwrite package match with no version for %s"
- msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s"
- #: apt-inst/extract.cc
- #, c-format
- msgid "File %s/%s overwrites the one in the package %s"
- msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s"
- #: apt-inst/extract.cc
- #, c-format
- msgid "Unable to stat %s"
- msgstr "Hindi ma-stat ang %s"
- #: apt-inst/filelist.cc
- msgid "DropNode called on still linked node"
- msgstr "Tinawagan ang DropNode sa naka-link pa na node"
- #: apt-inst/filelist.cc
- msgid "Failed to locate the hash element!"
- msgstr "Bigo sa paghanap ng elemento ng hash!"
- #: apt-inst/filelist.cc
- msgid "Failed to allocate diversion"
- msgstr "Bigo ang pagreserba ng diversion"
- #: apt-inst/filelist.cc
- msgid "Internal error in AddDiversion"
- msgstr "Internal error sa AddDiversion"
- #: apt-inst/filelist.cc
- #, c-format
- msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
- msgstr "Sinusubukang patungan ang diversion, %s -> %s at %s/%s"
- #: apt-inst/filelist.cc
- #, c-format
- msgid "Double add of diversion %s -> %s"
- msgstr "Dobleng pagdagdag ng diversion %s -> %s"
- #: apt-inst/filelist.cc
- #, c-format
- msgid "Duplicate conf file %s/%s"
- msgstr "Nadobleng talaksang conf %s/%s"
- #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
- #, fuzzy, c-format
- msgid "List directory %spartial is missing."
- msgstr "Nawawala ang directory ng talaan %spartial."
- #: apt-pkg/acquire.cc
- #, fuzzy, c-format
- msgid "Archives directory %spartial is missing."
- msgstr "Nawawala ang directory ng arkibo %spartial."
- #: apt-pkg/acquire.cc
- #, fuzzy, c-format
- msgid "Unable to lock directory %s"
- msgstr "Hindi maaldaba ang directory ng talaan"
- #: apt-pkg/acquire.cc
- #, c-format
- msgid ""
- "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
- "user '%s'."
- msgstr ""
- #: apt-pkg/acquire.cc apt-pkg/clean.cc
- #, fuzzy, c-format
- msgid "Clean of %s is not supported"
- msgstr "Hindi suportado ang uri ng talaksang index na '%s'"
- #. only show the ETA if it makes sense
- #. two days
- #: apt-pkg/acquire.cc
- #, c-format
- msgid "Retrieving file %li of %li (%s remaining)"
- msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)"
- #: apt-pkg/acquire.cc
- #, c-format
- msgid "Retrieving file %li of %li"
- msgstr "Kinukuha ang talaksang %li ng %li"
- #: apt-pkg/acquire-item.cc
- msgid ""
- "Updating such a repository securily is impossible and therefore disabled by "
- "default."
- msgstr ""
- #: apt-pkg/acquire-item.cc
- msgid ""
- "Data from such a repository can not be authenticated and is therefore "
- "potentially dangerous to use."
- msgstr ""
- #: apt-pkg/acquire-item.cc
- msgid ""
- "See apt-secure(8) manpage for repository creation and user configuration "
- "details."
- msgstr ""
- #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "rename failed, %s (%s -> %s)."
- msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)."
- #: apt-pkg/acquire-item.cc
- #, fuzzy
- msgid "Hash Sum mismatch"
- msgstr "Di tugmang MD5Sum"
- #: apt-pkg/acquire-item.cc
- msgid "Size mismatch"
- msgstr "Di tugmang laki"
- #: apt-pkg/acquire-item.cc
- #, fuzzy
- msgid "Invalid file format"
- msgstr "Di tanggap na operasyon %s"
- #: apt-pkg/acquire-item.cc
- #, fuzzy
- msgid "Signature error"
- msgstr "Error sa pagsulat"
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid ""
- "An error occurred during the signature verification. The repository is not "
- "updated and the previous index files will be used. GPG error: %s: %s"
- msgstr ""
- #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid "GPG error: %s: %s"
- msgstr ""
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid ""
- "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
- "or malformed file)"
- msgstr ""
- #: apt-pkg/acquire-item.cc
- msgid "There is no public key available for the following key IDs:\n"
- msgstr "Walang public key na magamit para sa sumusunod na key ID:\n"
- #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
- #. the time since then the file is invalid - formatted in the same way as in
- #. the download progress display (e.g. 7d 3h 42min 1s)
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid ""
- "Release file for %s is expired (invalid since %s). Updates for this "
- "repository will not be applied."
- msgstr ""
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid "Conflicting distribution: %s (expected %s but got %s)"
- msgstr ""
- #. No Release file was present, or verification failed, so fall
- #. back to queueing Packages files without verification
- #. only allow going further if the users explicitely wants it
- #: apt-pkg/acquire-item.cc
- #, fuzzy, c-format
- msgid "The repository '%s' is not signed."
- msgstr "Ang directory %s ay divertado"
- #. No Release file was present so fall
- #. back to queueing Packages files without verification
- #. only allow going further if the users explicitely wants it
- #: apt-pkg/acquire-item.cc
- #, fuzzy, c-format
- msgid "The repository '%s' does not have a Release file."
- msgstr "Ang directory %s ay divertado"
- #: apt-pkg/acquire-item.cc
- #, fuzzy, c-format
- msgid "The repository '%s' is no longer signed."
- msgstr "Ang directory %s ay divertado"
- #: apt-pkg/acquire-item.cc
- msgid ""
- "This is normally not allowed, but the option Acquire::"
- "AllowDowngradeToInsecureRepositories was given to override it."
- msgstr ""
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid ""
- "I wasn't able to locate a file for the %s package. This might mean you need "
- "to manually fix this package. (due to missing arch)"
- msgstr ""
- "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
- "niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)"
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid "Can't find a source to download version '%s' of '%s'"
- msgstr ""
- #: apt-pkg/acquire-item.cc
- #, c-format
- msgid ""
- "The package index files are corrupted. No Filename: field for package %s."
- msgstr ""
- "Sira ang talaksang index ng mga pakete. Walang Filename: field para sa "
- "paketeng %s."
- #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
- #: apt-pkg/acquire-item.cc
- #, fuzzy, c-format
- msgid "Changelog unavailable for %s=%s"
- msgstr "Kumokonekta sa %s (%s)"
- #: apt-pkg/acquire-worker.cc
- #, c-format
- msgid "The method driver %s could not be found."
- msgstr "Ang driver ng paraang %s ay hindi mahanap."
- #: apt-pkg/acquire-worker.cc
- #, fuzzy, c-format
- msgid "Is the package %s installed?"
- msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n"
- #: apt-pkg/acquire-worker.cc
- #, c-format
- msgid "Method %s did not start correctly"
- msgstr "Hindi umandar ng tama ang paraang %s"
- #: apt-pkg/acquire-worker.cc
- #, fuzzy, c-format
- msgid ""
- "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
- msgstr ""
- "Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter."
- #: apt-pkg/algorithms.cc
- #, c-format
- msgid ""
- "The package %s needs to be reinstalled, but I can't find an archive for it."
- msgstr ""
- "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo "
- "para dito."
- #: apt-pkg/algorithms.cc
- msgid ""
- "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
- "held packages."
- msgstr ""
- "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot "
- "ito ng mga paketeng naka-hold."
- #: apt-pkg/algorithms.cc
- msgid "Unable to correct problems, you have held broken packages."
- msgstr ""
- "Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold."
- #: apt-pkg/cachefile.cc
- msgid "The package lists or status file could not be parsed or opened."
- msgstr ""
- "Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado."
- #: apt-pkg/cachefile.cc
- msgid "You may want to run apt-get update to correct these problems"
- msgstr ""
- "Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang "
- "ito"
- #: apt-pkg/cachefile.cc
- msgid "The list of sources could not be read."
- msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)."
- #: apt-pkg/cacheset.cc
- #, c-format
- msgid "Release '%s' for '%s' was not found"
- msgstr "Release '%s' para sa '%s' ay hindi nahanap"
- #: apt-pkg/cacheset.cc
- #, c-format
- msgid "Version '%s' for '%s' was not found"
- msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap"
- #: apt-pkg/cacheset.cc
- #, fuzzy, c-format
- msgid "Couldn't find task '%s'"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-pkg/cacheset.cc
- #, fuzzy, c-format
- msgid "Couldn't find any package by regex '%s'"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-pkg/cacheset.cc
- #, fuzzy, c-format
- msgid "Couldn't find any package by glob '%s'"
- msgstr "Hindi mahanap ang paketeng %s"
- #: apt-pkg/cacheset.cc
- #, c-format
- msgid "Can't select versions from package '%s' as it is purely virtual"
- msgstr ""
- #: apt-pkg/cacheset.cc
- #, c-format
- msgid "Can't select newest version from package '%s' as it is purely virtual"
- msgstr ""
- #: apt-pkg/cacheset.cc
- #, c-format
- msgid "Can't select candidate version from package %s as it has no candidate"
- msgstr ""
- #: apt-pkg/cacheset.cc
- #, c-format
- msgid "Can't select installed version from package %s as it is not installed"
- msgstr ""
- #: apt-pkg/cacheset.cc
- #, c-format
- msgid ""
- "Can't select installed nor candidate version from package '%s' as it has "
- "neither of them"
- msgstr ""
- #: apt-pkg/cdrom.cc
- #, c-format
- msgid "Line %u too long in source list %s."
- msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s."
- #: apt-pkg/cdrom.cc
- msgid "Unmounting CD-ROM...\n"
- msgstr "Ina-unmount ang CD-ROM...\n"
- #: apt-pkg/cdrom.cc
- #, c-format
- msgid "Using CD-ROM mount point %s\n"
- msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n"
- #: apt-pkg/cdrom.cc
- msgid "Waiting for disc...\n"
- msgstr "Hinihintay ang disc...\n"
- #: apt-pkg/cdrom.cc
- msgid "Mounting CD-ROM...\n"
- msgstr "Sinasalang ang CD-ROM...\n"
- #: apt-pkg/cdrom.cc
- msgid "Identifying... "
- msgstr "Kinikilala..."
- #: apt-pkg/cdrom.cc
- #, c-format
- msgid "Stored label: %s\n"
- msgstr "Naka-imbak na Label: %s \n"
- #: apt-pkg/cdrom.cc
- msgid "Scanning disc for index files...\n"
- msgstr "Sinisiyasat ang Disc para sa talaksang index...\n"
- #: apt-pkg/cdrom.cc
- #, fuzzy, c-format
- msgid ""
- "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
- "%zu signatures\n"
- msgstr ""
- "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
- "signature\n"
- #: apt-pkg/cdrom.cc
- msgid ""
- "Unable to locate any package files, perhaps this is not a Debian Disc or the "
- "wrong architecture?"
- msgstr ""
- #: apt-pkg/cdrom.cc
- #, fuzzy, c-format
- msgid "Found label '%s'\n"
- msgstr "Naka-imbak na Label: %s \n"
- #: apt-pkg/cdrom.cc
- msgid "That is not a valid name, try again.\n"
- msgstr "Hindi yan tanggap na pangalan, subukan muli.\n"
- #: apt-pkg/cdrom.cc
- #, c-format
- msgid ""
- "This disc is called: \n"
- "'%s'\n"
- msgstr ""
- "Ang Disc na ito ay nagngangalang: \n"
- "'%s'\n"
- #: apt-pkg/cdrom.cc
- msgid "Copying package lists..."
- msgstr "Kinokopya ang Listahan ng mga Pakete"
- #: apt-pkg/cdrom.cc
- msgid "Writing new source list\n"
- msgstr "Sinusulat ang bagong listahan ng pagkukunan\n"
- #: apt-pkg/cdrom.cc
- msgid "Source list entries for this disc are:\n"
- msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n"
- #: apt-pkg/clean.cc
- #, c-format
- msgid "Unable to stat %s."
- msgstr "Hindi ma-stat ang %s"
- #: apt-pkg/contrib/cdromutl.cc
- #, c-format
- msgid "Unable to stat the mount point %s"
- msgstr "Di mai-stat ang mount point %s"
- #: apt-pkg/contrib/cdromutl.cc
- msgid "Failed to stat the cdrom"
- msgstr "Bigo sa pag-stat ng cdrom"
- #: apt-pkg/contrib/cmndline.cc
- #, fuzzy, c-format
- msgid ""
- "Command line option '%c' [from %s] is not understood in combination with the "
- "other options."
- msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala."
- #: apt-pkg/contrib/cmndline.cc
- #, fuzzy, c-format
- msgid ""
- "Command line option %s is not understood in combination with the other "
- "options"
- msgstr "Opsyon sa command line %s ay di naintindihan."
- #: apt-pkg/contrib/cmndline.cc
- #, c-format
- msgid "Command line option %s is not boolean"
- msgstr "Opsyon sa command line %s ay hindi boolean"
- #: apt-pkg/contrib/cmndline.cc
- #, c-format
- msgid "Option %s requires an argument."
- msgstr "Opsyon %s ay nangangailangan ng argumento"
- #: apt-pkg/contrib/cmndline.cc
- #, c-format
- msgid "Option %s: Configuration item specification must have an =<val>."
- msgstr ""
- "Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng "
- "=<halaga>."
- #: apt-pkg/contrib/cmndline.cc
- #, c-format
- msgid "Option %s requires an integer argument, not '%s'"
- msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'"
- #: apt-pkg/contrib/cmndline.cc
- #, c-format
- msgid "Option '%s' is too long"
- msgstr "Opsyon '%s' ay labis ang haba"
- #: apt-pkg/contrib/cmndline.cc
- #, c-format
- msgid "Sense %s is not understood, try true or false."
- msgstr "Hindi naintindihan ang %s, subukan ang true o false."
- #: apt-pkg/contrib/cmndline.cc
- #, c-format
- msgid "Invalid operation %s"
- msgstr "Di tanggap na operasyon %s"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Unrecognized type abbreviation: '%c'"
- msgstr "Hindi kilalang katagang uri: '%c'"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Opening configuration file %s"
- msgstr "Binubuksan ang talaksang pagsasaayos %s"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Block starts with no name."
- msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan."
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Malformed tag"
- msgstr "Syntax error %s:%u: Maling anyo ng Tag"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Extra junk after value"
- msgstr "Syntax error %s:%u: May basura matapos ng halaga"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Directives can only be done at the top level"
- msgstr ""
- "Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Too many nested includes"
- msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Included from here"
- msgstr "Syntax error %s:%u: Sinama mula dito"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Unsupported directive '%s'"
- msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'"
- #: apt-pkg/contrib/configuration.cc
- #, fuzzy, c-format
- msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
- msgstr ""
- "Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
- #: apt-pkg/contrib/configuration.cc
- #, c-format
- msgid "Syntax error %s:%u: Extra junk at end of file"
- msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan"
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Not using locking for read only lock file %s"
- msgstr ""
- "Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s"
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Could not open lock file %s"
- msgstr "Hindi mabuksan ang talaksang aldaba %s"
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Not using locking for nfs mounted lock file %s"
- msgstr ""
- "Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa "
- "nfs"
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Could not get lock %s"
- msgstr "hindi makuha ang aldaba %s"
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "List of files can't be created as '%s' is not a directory"
- msgstr ""
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
- msgstr ""
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
- msgstr ""
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid ""
- "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
- msgstr ""
- #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
- #, c-format
- msgid "Waited for %s but it wasn't there"
- msgstr "Naghintay, para sa %s ngunit wala nito doon"
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Sub-process %s received a segmentation fault."
- msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "Sub-process %s received signal %u."
- msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
- #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
- #, c-format
- msgid "Sub-process %s returned an error code (%u)"
- msgstr "Naghudyat ang sub-process %s ng error code (%u)"
- #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
- #, c-format
- msgid "Sub-process %s exited unexpectedly"
- msgstr "Ang sub-process %s ay lumabas ng di inaasahan"
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "Problem closing the gzip file %s"
- msgstr "Problema sa pagsara ng talaksan"
- #: apt-pkg/contrib/fileutl.cc
- #, c-format
- msgid "Could not open file %s"
- msgstr "Hindi mabuksan ang talaksang %s"
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "Could not open file descriptor %d"
- msgstr "Hindi makapag-bukas ng pipe para sa %s"
- #: apt-pkg/contrib/fileutl.cc
- msgid "Failed to create subprocess IPC"
- msgstr "Bigo ang paglikha ng subprocess IPC"
- #: apt-pkg/contrib/fileutl.cc
- msgid "Failed to exec compressor "
- msgstr "Bigo ang pag-exec ng taga-compress"
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "read, still have %llu to read but none left"
- msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "write, still have %llu to write but couldn't"
- msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "Problem closing the file %s"
- msgstr "Problema sa pagsara ng talaksan"
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "Problem renaming the file %s to %s"
- msgstr "Problema sa pag-sync ng talaksan"
- #: apt-pkg/contrib/fileutl.cc
- #, fuzzy, c-format
- msgid "Problem unlinking the file %s"
- msgstr "Problema sa pag-unlink ng talaksan"
- #: apt-pkg/contrib/fileutl.cc
- msgid "Problem syncing the file"
- msgstr "Problema sa pag-sync ng talaksan"
- #: apt-pkg/contrib/mmap.cc
- msgid "Can't mmap an empty file"
- msgstr "Hindi mai-mmap ang talaksang walang laman"
- #: apt-pkg/contrib/mmap.cc
- #, fuzzy, c-format
- msgid "Couldn't duplicate file descriptor %i"
- msgstr "Hindi makapag-bukas ng pipe para sa %s"
- #: apt-pkg/contrib/mmap.cc
- #, fuzzy, c-format
- msgid "Couldn't make mmap of %llu bytes"
- msgstr "Hindi makagawa ng mmap ng %lu na byte"
- #: apt-pkg/contrib/mmap.cc
- #, fuzzy
- msgid "Unable to close mmap"
- msgstr "Hindi mabuksan %s"
- #: apt-pkg/contrib/mmap.cc
- #, fuzzy
- msgid "Unable to synchronize mmap"
- msgstr "Hindi ma-invoke "
- #: apt-pkg/contrib/mmap.cc
- #, c-format
- msgid "Couldn't make mmap of %lu bytes"
- msgstr "Hindi makagawa ng mmap ng %lu na byte"
- #: apt-pkg/contrib/mmap.cc
- #, fuzzy
- msgid "Failed to truncate file"
- msgstr "Bigo sa pagsulat ng talaksang %s"
- #: apt-pkg/contrib/mmap.cc
- #, c-format
- msgid ""
- "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
- "Current value: %lu. (man 5 apt.conf)"
- msgstr ""
- #: apt-pkg/contrib/mmap.cc
- #, c-format
- msgid ""
- "Unable to increase the size of the MMap as the limit of %lu bytes is already "
- "reached."
- msgstr ""
- #: apt-pkg/contrib/mmap.cc
- msgid ""
- "Unable to increase size of the MMap as automatic growing is disabled by user."
- msgstr ""
- #: apt-pkg/contrib/progress.cc
- #, c-format
- msgid "%c%s... Error!"
- msgstr "%c%s... Error!"
- #: apt-pkg/contrib/progress.cc
- #, c-format
- msgid "%c%s... Done"
- msgstr "%c%s... Tapos"
- #: apt-pkg/contrib/progress.cc
- msgid "..."
- msgstr ""
- #. Print the spinner
- #: apt-pkg/contrib/progress.cc
- #, fuzzy, c-format
- msgid "%c%s... %u%%"
- msgstr "%c%s... Tapos"
- #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
- #: apt-pkg/contrib/strutl.cc
- #, c-format
- msgid "%lid %lih %limin %lis"
- msgstr ""
- #. TRANSLATOR: h means hours, min means minutes, s means seconds
- #: apt-pkg/contrib/strutl.cc
- #, c-format
- msgid "%lih %limin %lis"
- msgstr ""
- #. TRANSLATOR: min means minutes, s means seconds
- #: apt-pkg/contrib/strutl.cc
- #, c-format
- msgid "%limin %lis"
- msgstr ""
- #. TRANSLATOR: s means seconds
- #: apt-pkg/contrib/strutl.cc
- #, c-format
- msgid "%lis"
- msgstr ""
- #: apt-pkg/contrib/strutl.cc
- #, c-format
- msgid "Selection %s not found"
- msgstr "Piniling %s ay hindi nahanap"
- #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
- #. a file like main/binary-amd64/Packages; another identifier like Contents;
- #. filename and linenumber of the sources.list entry currently parsed
- #: apt-pkg/deb/debmetaindex.cc
- #, c-format
- msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
- msgstr ""
- #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
- #. a file like main/binary-amd64/Packages; filename and linenumber of
- #. two sources.list entries
- #: apt-pkg/deb/debmetaindex.cc
- #, c-format
- msgid "Target %s (%s) is configured multiple times in %s and %s"
- msgstr ""
- #: apt-pkg/deb/debmetaindex.cc
- #, fuzzy, c-format
- msgid "Unable to parse Release file %s"
- msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
- #: apt-pkg/deb/debmetaindex.cc
- #, fuzzy, c-format
- msgid "No sections in Release file %s"
- msgstr "Paunawa, pinili ang %s imbes na %s\n"
- #: apt-pkg/deb/debmetaindex.cc
- #, c-format
- msgid "No Hash entry in Release file %s"
- msgstr ""
- #: apt-pkg/deb/debmetaindex.cc
- #, fuzzy, c-format
- msgid "Invalid 'Date' entry in Release file %s"
- msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
- #: apt-pkg/deb/debmetaindex.cc
- #, fuzzy, c-format
- msgid "Invalid 'Valid-Until' entry in Release file %s"
- msgstr "Di tanggap na linya sa talaksang diversion: %s"
- #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
- #: apt-pkg/deb/debmetaindex.cc
- #, c-format
- msgid "Conflicting values set for option %s concerning source %s %s"
- msgstr ""
- #: apt-pkg/deb/debmetaindex.cc
- #, c-format
- msgid "Invalid value set for option %s concerning source %s %s (%s)"
- msgstr ""
- #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
- #, c-format
- msgid "Unable to parse package file %s (%d)"
- msgstr "Hindi ma-parse ang talaksang pakete %s (%d)"
- #: apt-pkg/deb/debsystem.cc
- #, c-format
- msgid ""
- "Unable to lock the administration directory (%s), is another process using "
- "it?"
- msgstr ""
- #: apt-pkg/deb/debsystem.cc
- #, fuzzy, c-format
- msgid "Unable to lock the administration directory (%s), are you root?"
- msgstr "Hindi maaldaba ang directory ng talaan"
- #. TRANSLATORS: the %s contains the recovery command, usually
- #. dpkg --configure -a
- #: apt-pkg/deb/debsystem.cc
- #, c-format
- msgid ""
- "dpkg was interrupted, you must manually run '%s' to correct the problem. "
- msgstr ""
- #: apt-pkg/deb/debsystem.cc
- msgid "Not locked"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- #, fuzzy, c-format
- msgid "Installing %s"
- msgstr "Iniluklok ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Configuring %s"
- msgstr "Isasaayos ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Removing %s"
- msgstr "Tinatanggal ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, fuzzy, c-format
- msgid "Completely removing %s"
- msgstr "Natanggal ng lubusan ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Noting disappearance of %s"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Running post-installation trigger %s"
- msgstr ""
- #. FIXME: use a better string after freeze
- #: apt-pkg/deb/dpkgpm.cc
- #, fuzzy, c-format
- msgid "Directory '%s' missing"
- msgstr "Nawawala ang directory ng talaan %spartial."
- #: apt-pkg/deb/dpkgpm.cc
- #, fuzzy, c-format
- msgid "Could not open file '%s'"
- msgstr "Hindi mabuksan ang talaksang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Preparing %s"
- msgstr "Hinahanda ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Unpacking %s"
- msgstr "Binubuklat ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Preparing to configure %s"
- msgstr "Hinahanda ang %s upang isaayos"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Installed %s"
- msgstr "Iniluklok ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Preparing for removal of %s"
- msgstr "Naghahanda para sa pagtanggal ng %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Removed %s"
- msgstr "Tinanggal ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Preparing to completely remove %s"
- msgstr "Naghahanda upang tanggalin ng lubusan ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, c-format
- msgid "Completely removed %s"
- msgstr "Natanggal ng lubusan ang %s"
- #: apt-pkg/deb/dpkgpm.cc
- #, fuzzy, c-format
- msgid "Can not write log (%s)"
- msgstr "Hindi makapagsulat sa %s"
- #: apt-pkg/deb/dpkgpm.cc
- msgid "Is /dev/pts mounted?"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- msgid "Operation was interrupted before it could finish"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- msgid "No apport report written because MaxReports is reached already"
- msgstr ""
- #. check if its not a follow up error
- #: apt-pkg/deb/dpkgpm.cc
- msgid "dependency problems - leaving unconfigured"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- msgid ""
- "No apport report written because the error message indicates its a followup "
- "error from a previous failure."
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- msgid ""
- "No apport report written because the error message indicates a disk full "
- "error"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- msgid ""
- "No apport report written because the error message indicates a out of memory "
- "error"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- msgid ""
- "No apport report written because the error message indicates an issue on the "
- "local system"
- msgstr ""
- #: apt-pkg/deb/dpkgpm.cc
- msgid ""
- "No apport report written because the error message indicates a dpkg I/O error"
- msgstr ""
- #: apt-pkg/depcache.cc
- msgid "Building dependency tree"
- msgstr "Ginagawa ang puno ng mga dependensiya"
- #: apt-pkg/depcache.cc
- msgid "Candidate versions"
- msgstr "Bersyong Kandidato"
- #: apt-pkg/depcache.cc
- msgid "Dependency generation"
- msgstr "Pagbuo ng Dependensiya"
- #: apt-pkg/depcache.cc
- #, fuzzy
- msgid "Reading state information"
- msgstr "Pinagsasama ang magagamit na impormasyon"
- #: apt-pkg/depcache.cc
- #, fuzzy, c-format
- msgid "Failed to open StateFile %s"
- msgstr "Bigo ang pagbukas ng %s"
- #: apt-pkg/depcache.cc
- #, fuzzy, c-format
- msgid "Failed to write temporary StateFile %s"
- msgstr "Bigo sa pagsulat ng talaksang %s"
- #: apt-pkg/edsp.cc
- msgid "Send scenario to solver"
- msgstr ""
- #: apt-pkg/edsp.cc
- msgid "Send request to solver"
- msgstr ""
- #: apt-pkg/edsp.cc
- msgid "Prepare for receiving solution"
- msgstr ""
- #: apt-pkg/edsp.cc
- msgid "External solver failed without a proper error message"
- msgstr ""
- #: apt-pkg/edsp.cc
- msgid "Execute external solver"
- msgstr ""
- #: apt-pkg/indexcopy.cc
- #, c-format
- msgid "Wrote %i records.\n"
- msgstr "Nagsulat ng %i na record.\n"
- #: apt-pkg/indexcopy.cc
- #, c-format
- msgid "Wrote %i records with %i missing files.\n"
- msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n"
- #: apt-pkg/indexcopy.cc
- #, c-format
- msgid "Wrote %i records with %i mismatched files\n"
- msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n"
- #: apt-pkg/indexcopy.cc
- #, c-format
- msgid "Wrote %i records with %i missing files and %i mismatched files\n"
- msgstr ""
- "Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang "
- "mismatch\n"
- #: apt-pkg/indexcopy.cc
- #, c-format
- msgid "Can't find authentication record for: %s"
- msgstr ""
- #: apt-pkg/indexcopy.cc
- #, fuzzy, c-format
- msgid "Hash mismatch for: %s"
- msgstr "Di tugmang MD5Sum"
- #: apt-pkg/init.cc
- #, c-format
- msgid "Packaging system '%s' is not supported"
- msgstr "Hindi suportado ang sistema ng paketeng '%s'"
- #: apt-pkg/init.cc
- msgid "Unable to determine a suitable packaging system type"
- msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete "
- #: apt-pkg/install-progress.cc
- #, c-format
- msgid "Progress: [%3i%%]"
- msgstr ""
- #: apt-pkg/install-progress.cc
- msgid "Running dpkg"
- msgstr ""
- #: apt-pkg/packagemanager.cc
- #, c-format
- msgid ""
- "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
- "under APT::Immediate-Configure for details. (%d)"
- msgstr ""
- #: apt-pkg/packagemanager.cc
- #, fuzzy, c-format
- msgid "Could not configure '%s'. "
- msgstr "Hindi mabuksan ang talaksang %s"
- #: apt-pkg/packagemanager.cc
- #, c-format
- msgid ""
- "This installation run will require temporarily removing the essential "
- "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
- "you really want to do it, activate the APT::Force-LoopBreak option."
- msgstr ""
- "Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang "
- "pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends "
- "loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-"
- "activate ang APT::Force-LoopBreak na option."
- #: apt-pkg/pkgcache.cc
- msgid "Empty package cache"
- msgstr "Walang laman ang cache ng pakete"
- #: apt-pkg/pkgcache.cc
- msgid "The package cache file is corrupted"
- msgstr "Sira ang talaksan ng cache ng pakete"
- #: apt-pkg/pkgcache.cc
- msgid "The package cache file is an incompatible version"
- msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon"
- #: apt-pkg/pkgcache.cc
- #, fuzzy
- msgid "The package cache file is corrupted, it is too small"
- msgstr "Sira ang talaksan ng cache ng pakete"
- #: apt-pkg/pkgcache.cc
- #, c-format
- msgid "This APT does not support the versioning system '%s'"
- msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'"
- #: apt-pkg/pkgcache.cc
- #, fuzzy, c-format
- msgid "The package cache was built for different architectures: %s vs %s"
- msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura"
- #: apt-pkg/pkgcache.cc
- msgid "Depends"
- msgstr "Dependensiya"
- #: apt-pkg/pkgcache.cc
- msgid "PreDepends"
- msgstr "PreDepends"
- #: apt-pkg/pkgcache.cc
- msgid "Suggests"
- msgstr "Mungkahi"
- #: apt-pkg/pkgcache.cc
- msgid "Recommends"
- msgstr "Rekomendado"
- #: apt-pkg/pkgcache.cc
- msgid "Conflicts"
- msgstr "Tunggali"
- #: apt-pkg/pkgcache.cc
- msgid "Replaces"
- msgstr "Pumapalit"
- #: apt-pkg/pkgcache.cc
- msgid "Obsoletes"
- msgstr "Linalaos"
- #: apt-pkg/pkgcache.cc
- msgid "Breaks"
- msgstr ""
- #: apt-pkg/pkgcache.cc
- msgid "Enhances"
- msgstr ""
- #: apt-pkg/pkgcache.cc
- msgid "important"
- msgstr "importante"
- #: apt-pkg/pkgcache.cc
- msgid "required"
- msgstr "kailangan"
- #: apt-pkg/pkgcache.cc
- msgid "standard"
- msgstr "standard"
- #: apt-pkg/pkgcache.cc
- msgid "optional"
- msgstr "optional"
- #: apt-pkg/pkgcache.cc
- msgid "extra"
- msgstr "extra"
- #: apt-pkg/pkgcachegen.cc
- msgid "Cache has an incompatible versioning system"
- msgstr "Hindi akma ang versioning system ng cache"
- #. TRANSLATOR: The first placeholder is a package name,
- #. the other two should be copied verbatim as they include debug info
- #: apt-pkg/pkgcachegen.cc
- #, fuzzy, c-format
- msgid "Error occurred while processing %s (%s%d)"
- msgstr "May naganap na error habang prinoseso ang %s (FindPkg)"
- #: apt-pkg/pkgcachegen.cc
- msgid "Wow, you exceeded the number of package names this APT is capable of."
- msgstr ""
- "Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito."
- #: apt-pkg/pkgcachegen.cc
- msgid "Wow, you exceeded the number of versions this APT is capable of."
- msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
- #: apt-pkg/pkgcachegen.cc
- #, fuzzy
- msgid "Wow, you exceeded the number of descriptions this APT is capable of."
- msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
- #: apt-pkg/pkgcachegen.cc
- msgid "Wow, you exceeded the number of dependencies this APT is capable of."
- msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito."
- #: apt-pkg/pkgcachegen.cc
- msgid "Reading package lists"
- msgstr "Binabasa ang Listahan ng mga Pakete"
- #: apt-pkg/pkgcachegen.cc
- msgid "IO Error saving source cache"
- msgstr "IO Error sa pag-imbak ng source cache"
- #: apt-pkg/pkgrecords.cc
- #, c-format
- msgid "Index file type '%s' is not supported"
- msgstr "Hindi suportado ang uri ng talaksang index na '%s'"
- #: apt-pkg/policy.cc
- #, c-format
- msgid ""
- "The value '%s' is invalid for APT::Default-Release as such a release is not "
- "available in the sources"
- msgstr ""
- #: apt-pkg/policy.cc
- #, fuzzy, c-format
- msgid "Invalid record in the preferences file %s, no Package header"
- msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header"
- #: apt-pkg/policy.cc
- #, c-format
- msgid "Did not understand pin type %s"
- msgstr "Hindi naintindihan ang uri ng pin %s"
- #: apt-pkg/policy.cc
- #, c-format
- msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
- msgstr ""
- #: apt-pkg/policy.cc
- msgid "No priority (or zero) specified for pin"
- msgstr "Walang prioridad (o sero) na nakatakda para sa pin"
- #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
- #: apt-pkg/sourcelist.cc
- #, fuzzy, c-format
- msgid "Malformed entry %u in %s file %s (%s)"
- msgstr "Maling anyo ng override %s linya %lu #1"
- #: apt-pkg/sourcelist.cc
- #, c-format
- msgid "Opening %s"
- msgstr "Binubuksan %s"
- #: apt-pkg/sourcelist.cc
- #, c-format
- msgid "Malformed line %u in source list %s (type)"
- msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)"
- #: apt-pkg/sourcelist.cc
- #, c-format
- msgid "Type '%s' is not known on line %u in source list %s"
- msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s"
- #: apt-pkg/sourcelist.cc
- #, fuzzy, c-format
- msgid "Malformed stanza %u in source list %s (type)"
- msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)"
- #: apt-pkg/sourcelist.cc
- #, fuzzy, c-format
- msgid "Type '%s' is not known on stanza %u in source list %s"
- msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s"
- #: apt-pkg/sourcelist.cc
- #, c-format
- msgid "Unsupported file %s given on commandline"
- msgstr ""
- #: apt-pkg/srcrecords.cc
- msgid "You must put some 'source' URIs in your sources.list"
- msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list"
- #: apt-pkg/tagfile.cc
- #, c-format
- msgid "Cannot convert %s to integer"
- msgstr ""
- #: apt-pkg/update.cc
- #, fuzzy, c-format
- msgid "Failed to fetch %s %s"
- msgstr "Bigo sa pagkuha ng %s %s\n"
- #: apt-pkg/update.cc
- #, fuzzy
- msgid ""
- "Some index files failed to download. They have been ignored, or old ones "
- "used instead."
- msgstr ""
- "May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang "
- "mga luma na lamang."
- #: apt-pkg/upgrade.cc
- msgid "Calculating upgrade"
- msgstr "Sinusuri ang pag-upgrade"
- #~ msgid ""
- #~ "Usage: apt-cache [options] command\n"
- #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
- #~ "\n"
- #~ "apt-cache is a low-level tool used to query information\n"
- #~ "from APT's binary cache files\n"
- #~ msgstr ""
- #~ "Pag-gamit: apt-cache [mga option] utos\n"
- #~ " apt-cache [mga option] show pkt1 [pkt2 ...]\n"
- #~ "\n"
- #~ "apt-cache ay isang kagamitang low-level para sa pag-manipula\n"
- #~ "ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n"
- #~ "impormasyon mula sa kanila\n"
- #~ msgid ""
- #~ "Options:\n"
- #~ " -h This help text.\n"
- #~ " -p=? The package cache.\n"
- #~ " -s=? The source cache.\n"
- #~ " -q Disable progress indicator.\n"
- #~ " -i Show only important deps for the unmet command.\n"
- #~ " -c=? Read this configuration file\n"
- #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
- #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
- #~ msgstr ""
- #~ "Mga option:\n"
- #~ " -h Itong tulong na ito.\n"
- #~ " -p=? Ang cache ng mga pakete.\n"
- #~ " -s=? Ang cache ng mga source.\n"
- #~ " -q Huwag ipakita ang hudyat ng progreso.\n"
- #~ " -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n"
- #~ " -c=? Basahin ang talaksang pagkaayos na ito\n"
- #~ " -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
- #~ "Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n"
- #~ "karagdagang impormasyon\n"
- #~ msgid ""
- #~ "Usage: apt-config [options] command\n"
- #~ "\n"
- #~ "apt-config is a simple tool to read the APT config file\n"
- #~ msgstr ""
- #~ "Pag-gamit: apt-config [mga option] utos\n"
- #~ "\n"
- #~ "Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos ng "
- #~ "APT\n"
- #~ msgid ""
- #~ "Options:\n"
- #~ " -h This help text.\n"
- #~ " -c=? Read this configuration file\n"
- #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
- #~ msgstr ""
- #~ "Mga option:\n"
- #~ " -h Itong tulong na ito.\n"
- #~ " -c=? Basahin itong talaksang pagkaayos\n"
- #~ " -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n"
- #~ msgid ""
- #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
- #~ "\n"
- #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
- #~ "used\n"
- #~ "to indicate what kind of file it is.\n"
- #~ "\n"
- #~ "Options:\n"
- #~ " -h This help text\n"
- #~ " -s Use source file sorting\n"
- #~ " -c=? Read this configuration file\n"
- #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
- #~ msgstr ""
- #~ "Pag-gamit: apt-sortpkgs [mga option] talaksan1 [talaksan2 ...]\n"
- #~ "\n"
- #~ "Ang apt-sortpkgs ay payak na kagamitan upang makapag-sort ng talaksang "
- #~ "pakete.\n"
- #~ "Ang option -s ay ginagamit upang ipaalam kung anong klaseng talaksan "
- #~ "ito.\n"
- #~ "\n"
- #~ "Mga option:\n"
- #~ " -h Itong tulong na ito\n"
- #~ " -s Gamitin ang pag-sort ng talaksang source\n"
- #~ " -c=? Basahin ang talaksang pagkaayos na ito\n"
- #~ " -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
- #~ msgid "Child process failed"
- #~ msgstr "Bigo ang prosesong anak"
- #, fuzzy
- #~ msgid "Must specifc at least one srv record"
- #~ msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source"
- #~ msgid "Failed to create pipes"
- #~ msgstr "Bigo sa paglikha ng mga pipe"
- #~ msgid "Failed to exec gzip "
- #~ msgstr "Bigo sa pagtakbo ng gzip "
- #, fuzzy
- #~ msgid "%s %s for %s compiled on %s %s\n"
- #~ msgstr "%s %s para sa %s %s kinompile noong %s %s\n"
- #~ msgid "Failed to create FILE*"
- #~ msgstr "Bigo ang paglikha ng FILE*"
- #, fuzzy
- #~ msgid "Malformed stanza %u in source list %s (URI parse)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)"
- #, fuzzy
- #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
- #, fuzzy
- #~ msgid "Malformed line %lu in source list %s ([option] too short)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)"
- #, fuzzy
- #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
- #, fuzzy
- #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
- #, fuzzy
- #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
- #~ msgid "Malformed line %lu in source list %s (URI)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)"
- #~ msgid "Malformed line %lu in source list %s (dist)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)"
- #~ msgid "Malformed line %lu in source list %s (URI parse)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)"
- #~ msgid "Malformed line %lu in source list %s (absolute dist)"
- #~ msgstr ""
- #~ "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)"
- #~ msgid "Malformed line %lu in source list %s (dist parse)"
- #~ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
- #~ msgid "Package %s %s was not found while processing file dependencies"
- #~ msgstr ""
- #~ "Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya."
- #~ msgid "Couldn't stat source package list %s"
- #~ msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
- #~ msgid "Collecting File Provides"
- #~ msgstr "Kinukuha ang Talaksang Provides"
- #, fuzzy
- #~ msgid "Unable to find hash sum for '%s' in Release file"
- #~ msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
- #~ msgid "Vendor block %s contains no fingerprint"
- #~ msgstr "Block ng nagbebenta %s ay walang fingerprint"
- #~ msgid "Total dependency version space: "
- #~ msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: "
- #~ msgid "You don't have enough free space in %s"
- #~ msgstr "Kulang kayo ng libreng puwang sa %s"
- #~ msgid "Done"
- #~ msgstr "Tapos"
- #, fuzzy
- #~ msgid "No keyring installed in %s."
- #~ msgstr "Ina-abort ang pag-instol."
- #, fuzzy
- #~ msgid "Internal error, Upgrade broke stuff"
- #~ msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade"
- #~ msgid "%s not a valid DEB package."
- #~ msgstr "%s ay hindi balido na paketeng DEB."
- #~ msgid ""
- #~ "Using CD-ROM mount point %s\n"
- #~ "Mounting CD-ROM\n"
- #~ msgstr ""
- #~ "Ginagamit ang %s bilang mount point ng CD-ROM\n"
- #~ "Sinasalang ang CD-ROM\n"
- #, fuzzy
- #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
- #~ msgstr ""
- #~ "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s' o '%s'"
- #~ msgid "MD5Sum mismatch"
- #~ msgstr "Di tugmang MD5Sum"
- #~ msgid ""
- #~ "I wasn't able to locate a file for the %s package. This might mean you "
- #~ "need to manually fix this package."
- #~ msgstr ""
- #~ "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
- #~ "niyong ayusin ng de kamay ang paketeng ito."
- #, fuzzy
- #~ msgid "Skipping nonexistent file %s"
- #~ msgstr "Binubuksan ang talaksang pagsasaayos %s"
- #~ msgid "Failed to remove %s"
- #~ msgstr "Bigo sa pagtanggal ng %s"
- #~ msgid "Unable to create %s"
- #~ msgstr "Hindi malikha ang %s"
- #~ msgid "Failed to stat %sinfo"
- #~ msgstr "Bigo sa pag-stat ng %sinfo"
- #~ msgid "The info and temp directories need to be on the same filesystem"
- #~ msgstr "Ang info at temp directory ay kailangang nasa parehong filesystem"
- #~ msgid "Failed to change to the admin dir %sinfo"
- #~ msgstr "Bigo sa paglipat sa admin dir %sinfo"
- #~ msgid "Internal error getting a package name"
- #~ msgstr "Internal error sa pagkuha ng pangalan ng pakete"
- #~ msgid "Reading file listing"
- #~ msgstr "Binabasa ang Talaksang Listahan"
- #~ msgid ""
- #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
- #~ "then make it empty and immediately re-install the same version of the "
- #~ "package!"
- #~ msgstr ""
- #~ "Bigo sa pagbukas ng talaksang listahan '%sinfo/%s'. Kung hindi niyo "
- #~ "maibalik ang talaksang ito, gawin itong walang laman at muling instolahin "
- #~ "kaagad ang parehong bersyon ng pakete!"
- #~ msgid "Failed reading the list file %sinfo/%s"
- #~ msgstr "Bigo sa pagbasa ng talaksang listahan %sinfo/%s"
- #~ msgid "Internal error getting a node"
- #~ msgstr "Internal error sa pagkuha ng Node"
- #~ msgid "Failed to open the diversions file %sdiversions"
- #~ msgstr "Bigo sa pagbukas ng talaksang diversions %sdiversions"
- #~ msgid "The diversion file is corrupted"
- #~ msgstr "Ang talaksang diversion ay sira"
- #~ msgid "Invalid line in the diversion file: %s"
- #~ msgstr "Di tanggap na linya sa talaksang diversion: %s"
- #~ msgid "Internal error adding a diversion"
- #~ msgstr "Internal error sa pagdagdag ng diversion"
- #~ msgid "The pkg cache must be initialized first"
- #~ msgstr "Ang cache ng pkg ay dapat ma-initialize muna"
- #~ msgid "Failed to find a Package: header, offset %lu"
- #~ msgstr "Bigo sa paghanap ng Pakete: Header, offset %lu"
- #~ msgid "Bad ConfFile section in the status file. Offset %lu"
- #~ msgstr "Maling ConfFile section sa talaksang status. Offset %lu"
- #~ msgid "Error parsing MD5. Offset %lu"
- #~ msgstr "Error sa pag-parse ng MD5. Offset %lu"
- #~ msgid "Couldn't change to %s"
- #~ msgstr "Hindi makalipat sa %s"
- #~ msgid "Failed to locate a valid control file"
- #~ msgstr "Bigo sa paghanap ng tanggap na talaksang control"
- #~ msgid "Couldn't open pipe for %s"
- #~ msgstr "Hindi makapag-bukas ng pipe para sa %s"
- #~ msgid "Read error from %s process"
- #~ msgstr "Error sa pagbasa mula sa prosesong %s"
- #~ msgid "Got a single header line over %u chars"
- #~ msgstr "Nakatanggap ng isang linyang panimula mula %u na mga karakter"
- #~ msgid "Malformed override %s line %lu #1"
- #~ msgstr "Maling anyo ng override %s linya %lu #1"
- #~ msgid "Malformed override %s line %lu #2"
- #~ msgstr "Maling anyo ng override %s linya %lu #2"
- #~ msgid "Malformed override %s line %lu #3"
- #~ msgstr "Maling anyo ng override %s linya %lu #3"
- #~ msgid "decompressor"
- #~ msgstr "taga-decompress"
- #~ msgid "read, still have %lu to read but none left"
- #~ msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
- #~ msgid "write, still have %lu to write but couldn't"
- #~ msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
- #~ msgid "Error occurred while processing %s (NewPackage)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewPackage)"
- #~ msgid "Error occurred while processing %s (UsePackage1)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (UsePackage1)"
- #, fuzzy
- #~ msgid "Error occurred while processing %s (NewFileDesc1)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
- #~ msgid "Error occurred while processing %s (UsePackage2)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (UsePackage2)"
- #~ msgid "Error occurred while processing %s (NewFileVer1)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
- #, fuzzy
- #~ msgid "Error occurred while processing %s (NewVersion%d)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewVersion1)"
- #~ msgid "Error occurred while processing %s (UsePackage3)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (UsePackage3)"
- #, fuzzy
- #~ msgid "Error occurred while processing %s (NewFileDesc2)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
- #~ msgid "Error occurred while processing %s (FindPkg)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (FindPkg)"
- #~ msgid "Error occurred while processing %s (CollectFileProvides)"
- #~ msgstr "May naganap na Error habang prinoseso ang %s (CollectFileProvides)"
- #~ msgid "Internal error, could not locate member"
- #~ msgstr "Internal error, hindi mahanap ang miyembro"
- #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
- #~ msgstr ""
- #~ "E: Sobrang haba ng talaan ng argumento mula sa Acquire::gpgv::Options. "
- #~ "Lalabas."
- #~ msgid "Error occurred while processing %s (NewVersion2)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewVersion2)"
- #~ msgid "Malformed line %u in source list %s (vendor id)"
- #~ msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (vendor id)"
- #~ msgid "Couldn't access keyring: '%s'"
- #~ msgstr "Hindi mabasa ang keyring: '%s'"
- #~ msgid "Could not patch file"
- #~ msgstr "Hindi mai-patch ang talaksan"
- #~ msgid " %4i %s\n"
- #~ msgstr " %4i %s\n"
- #~ msgid "%4i %s\n"
- #~ msgstr "%4i %s\n"
- #, fuzzy
- #~ msgid "Processing triggers for %s"
- #~ msgstr "Error sa pagproseso ng directory %s"
- #~ msgid ""
- #~ "Since you only requested a single operation it is extremely likely that\n"
- #~ "the package is simply not installable and a bug report against\n"
- #~ "that package should be filed."
- #~ msgstr ""
- #~ "Dahil ang hiniling niyo ay mag-isang operasyon, malamang ay ang pakete "
- #~ "ay\n"
- #~ "hindi talaga mailuklok at kailangang magpadala ng bug report tungkol sa\n"
- #~ "pakete na ito."
- #, fuzzy
- #~ msgid "Line %d too long (max %lu)"
- #~ msgstr "Labis ang haba ng linyang %d (max %d)"
- #, fuzzy
- #~ msgid "Line %d too long (max %d)"
- #~ msgstr "Labis ang haba ng linyang %d (max %d)"
- #, fuzzy
- #~ msgid "Error occured while processing %s (NewFileDesc1)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
- #, fuzzy
- #~ msgid "Error occured while processing %s (NewFileDesc2)"
- #~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
- #, fuzzy
- #~ msgid "Stored label: %s \n"
- #~ msgstr "Naka-imbak na Label: %s \n"
- #, fuzzy
- #~ msgid ""
- #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
- #~ "%i signatures\n"
- #~ msgstr ""
- #~ "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
- #~ "signature\n"
- #, fuzzy
- #~ msgid "openpty failed\n"
- #~ msgstr "Bigo ang pagpili"
- #~ msgid "File date has changed %s"
- #~ msgstr "Nagbago ang petsa ng talaksang %s"
- #~ msgid "Reading file list"
- #~ msgstr "Binabasa ang Talaksang Listahan"
- #~ msgid "Could not execute "
- #~ msgstr "Hindi ma-execute ang "
- #~ msgid "Preparing for remove with config %s"
- #~ msgstr "Naghahanda upang tanggalin ang %s kasama ang pagkasaayos nito"
- #~ msgid "Removed with config %s"
- #~ msgstr "Tinanggal ang %s kasama ang pagkasaayos nito"
- #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
- #~ msgstr ""
- #~ "Hindi kilalang vendor ID '%s' sa linya %u ng talaksang pagkukunan %s"
|