lt.po 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834
  1. # Lithuanian translation for apt
  2. # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006
  3. # This file is distributed under the same license as the apt package.
  4. # Gintautas Miliauskas <gintas@akl.lt>, 2008.
  5. # Andrius Kokiančiks <napalm@mintis.lt>, 2008.
  6. #
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 1.0.5\n"
  10. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  11. "POT-Creation-Date: 2015-12-30 00:41+0100\n"
  12. "PO-Revision-Date: 2008-08-02 01:47-0400\n"
  13. "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
  14. "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
  15. "Language: lt\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
  20. "%100<10 || n%100>=20) ? 1 : 2;\n"
  21. "X-Launchpad-Export-Date: 2008-08-02 05:04+0000\n"
  22. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  23. #: apt-private/acqprogress.cc
  24. #, c-format
  25. msgid "Hit:%lu %s"
  26. msgstr "Imamas:%lu %s"
  27. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  28. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  29. #: apt-private/acqprogress.cc
  30. #, c-format
  31. msgid "Get:%lu %s"
  32. msgstr "Gauti:%lu %s"
  33. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  34. #. which failed to download, but the error is ignored (compare "Err:")
  35. #: apt-private/acqprogress.cc
  36. #, c-format
  37. msgid "Ign:%lu %s"
  38. msgstr "Ignoruotas:%lu %s"
  39. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  40. #. which failed to download and the error is critical (compare "Ign:")
  41. #: apt-private/acqprogress.cc
  42. #, c-format
  43. msgid "Err:%lu %s"
  44. msgstr "Klaida:%lu %s"
  45. #: apt-private/acqprogress.cc
  46. #, c-format
  47. msgid "Fetched %sB in %s (%sB/s)\n"
  48. msgstr "Parsiųsta %sB iš %s (%sB/s)\n"
  49. #: apt-private/acqprogress.cc
  50. msgid " [Working]"
  51. msgstr " [Vykdoma]"
  52. #: apt-private/acqprogress.cc
  53. #, fuzzy, c-format
  54. msgid ""
  55. "Media change: please insert the disc labeled\n"
  56. " '%s'\n"
  57. "in the drive '%s' and press [Enter]\n"
  58. msgstr ""
  59. "Laikmenos keitimas: įdėkite diską, pažymėtą\n"
  60. " „%s“,\n"
  61. "į įrenginį „%s“ ir paspauskite enter\n"
  62. #: apt-private/private-cachefile.cc
  63. msgid "Correcting dependencies..."
  64. msgstr "Taisomos priklausomybės..."
  65. #: apt-private/private-cachefile.cc
  66. msgid " failed."
  67. msgstr " nepavyko."
  68. #: apt-private/private-cachefile.cc
  69. msgid "Unable to correct dependencies"
  70. msgstr "Nepavyko patenkinti priklausomybių"
  71. #: apt-private/private-cachefile.cc
  72. #, fuzzy
  73. msgid "Unable to minimize the upgrade set"
  74. msgstr "Nepavyko minimizuoti atnaujinimo rinkinio"
  75. #: apt-private/private-cachefile.cc
  76. msgid " Done"
  77. msgstr " Įvykdyta"
  78. #: apt-private/private-cachefile.cc
  79. msgid "You might want to run 'apt-get -f install' to correct these."
  80. msgstr "Įvykdykite „apt-get -f install“, jei norite ištaisyti šias klaidas."
  81. #: apt-private/private-cachefile.cc
  82. msgid "Unmet dependencies. Try using -f."
  83. msgstr "Nepatenkintos priklausomybės. Bandykit naudoti -f."
  84. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  85. msgid "Sorting"
  86. msgstr ""
  87. #: apt-private/private-cacheset.cc
  88. #, fuzzy, c-format
  89. msgid "Note, selecting '%s' for task '%s'\n"
  90. msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n"
  91. #: apt-private/private-cacheset.cc
  92. #, fuzzy, c-format
  93. msgid "Note, selecting '%s' for glob '%s'\n"
  94. msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n"
  95. #: apt-private/private-cacheset.cc
  96. #, fuzzy, c-format
  97. msgid "Note, selecting '%s' for regex '%s'\n"
  98. msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n"
  99. #: apt-private/private-cacheset.cc
  100. #, c-format
  101. msgid "Package %s is a virtual package provided by:\n"
  102. msgstr "Paketas %s yra virtualus, pateiktas:\n"
  103. #: apt-private/private-cacheset.cc
  104. #, fuzzy
  105. msgid " [Installed]"
  106. msgstr " [Įdiegtas]"
  107. #: apt-private/private-cacheset.cc
  108. #, fuzzy
  109. msgid " [Not candidate version]"
  110. msgstr "Galimos versijos"
  111. #: apt-private/private-cacheset.cc
  112. msgid "You should explicitly select one to install."
  113. msgstr "Reikia pažymėti įdiegimui bent vieną."
  114. #: apt-private/private-cacheset.cc
  115. #, c-format
  116. msgid ""
  117. "Package %s is not available, but is referred to by another package.\n"
  118. "This may mean that the package is missing, has been obsoleted, or\n"
  119. "is only available from another source\n"
  120. msgstr ""
  121. "Paketo %s nėra, bet jis nurodytas prie kito paketo.\n"
  122. "Tai gali reikšti, kad paketas dingęs, nebenaudojamas \n"
  123. "arba prieinamas tik iš kitų šaltinių.\n"
  124. #: apt-private/private-cacheset.cc
  125. msgid "However the following packages replace it:"
  126. msgstr "Tačiau šie paketai jį pakeičia:"
  127. #: apt-private/private-cacheset.cc
  128. #, fuzzy, c-format
  129. msgid "Package '%s' has no installation candidate"
  130. msgstr "Paketas %s neturi diegimo kandidatų"
  131. #: apt-private/private-cacheset.cc
  132. #, c-format
  133. msgid "Virtual packages like '%s' can't be removed\n"
  134. msgstr ""
  135. #. TRANSLATORS: Note, this is not an interactive question
  136. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  137. #, fuzzy, c-format
  138. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  139. msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n"
  140. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  141. #, fuzzy, c-format
  142. msgid "Package '%s' is not installed, so not removed\n"
  143. msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n"
  144. #: apt-private/private-cacheset.cc
  145. #, fuzzy, c-format
  146. msgid "Note, selecting '%s' instead of '%s'\n"
  147. msgstr "Pastaba: pažymimas %s vietoje %s\n"
  148. #: apt-private/private-cmndline.cc
  149. msgid "Most used commands:"
  150. msgstr ""
  151. #: apt-private/private-cmndline.cc
  152. #, c-format
  153. msgid "See %s for more information about the available commands."
  154. msgstr ""
  155. #: apt-private/private-cmndline.cc
  156. msgid ""
  157. "Configuration options and syntax is detailed in apt.conf(5).\n"
  158. "Information about how to configure sources can be found in sources.list(5).\n"
  159. "Package and version choices can be expressed via apt_preferences(5).\n"
  160. "Security details are available in apt-secure(8).\n"
  161. msgstr ""
  162. #: apt-private/private-cmndline.cc
  163. msgid "This APT has Super Cow Powers."
  164. msgstr ""
  165. #: apt-private/private-cmndline.cc
  166. msgid "This APT helper has Super Meep Powers."
  167. msgstr ""
  168. #: apt-private/private-depends.cc apt-private/private-show.cc
  169. #: cmdline/apt-mark.cc
  170. msgid "No packages found"
  171. msgstr "Paketų nerasta"
  172. #: apt-private/private-download.cc
  173. msgid "WARNING: The following packages cannot be authenticated!"
  174. msgstr "DĖMESIO: Šie paketai negali būti autentifikuoti!"
  175. #: apt-private/private-download.cc
  176. msgid "Authentication warning overridden.\n"
  177. msgstr ""
  178. #: apt-private/private-download.cc
  179. msgid "Some packages could not be authenticated"
  180. msgstr "Nepavyko autentikuoti kai kurių paketų"
  181. #: apt-private/private-download.cc
  182. msgid "Install these packages without verification?"
  183. msgstr "Įdiegti šiuos paketus be patvirtinimo?"
  184. #: apt-private/private-download.cc apt-private/private-install.cc
  185. msgid ""
  186. "--force-yes is deprecated, use one of the options starting with --allow "
  187. "instead."
  188. msgstr ""
  189. #: apt-private/private-download.cc
  190. #, fuzzy
  191. msgid ""
  192. "There were unauthenticated packages and -y was used without --allow-"
  193. "unauthenticated"
  194. msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes"
  195. #: apt-private/private-download.cc
  196. #, c-format
  197. msgid "Failed to fetch %s %s\n"
  198. msgstr "Nepavyko parsiųsti %s %s\n"
  199. #: apt-private/private-download.cc
  200. #, c-format
  201. msgid "Couldn't determine free space in %s"
  202. msgstr "Nepavyko nustatyti %s laisvos vietos"
  203. #: apt-private/private-download.cc
  204. #, c-format
  205. msgid "You don't have enough free space in %s."
  206. msgstr "%s nėra pakankamai laisvos vietos."
  207. #: apt-private/private-download.cc
  208. msgid "Unable to lock the download directory"
  209. msgstr "Nepavyko užrakinti parsiuntimų aplanko"
  210. #: apt-private/private-install.cc
  211. msgid "Internal error, InstallPackages was called with broken packages!"
  212. msgstr ""
  213. #: apt-private/private-install.cc
  214. msgid "Packages need to be removed but remove is disabled."
  215. msgstr "Reikia pašalinti paketus, tačiau šalinimas išjungtas."
  216. #: apt-private/private-install.cc
  217. #, fuzzy
  218. msgid ""
  219. "Essential packages were removed and -y was used without --allow-remove-"
  220. "essential."
  221. msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes"
  222. #: apt-private/private-install.cc
  223. #, fuzzy
  224. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  225. msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes"
  226. #: apt-private/private-install.cc
  227. msgid ""
  228. "Held packages were changed and -y was used without --allow-change-held-"
  229. "packages."
  230. msgstr ""
  231. #: apt-private/private-install.cc
  232. msgid "Internal error, Ordering didn't finish"
  233. msgstr ""
  234. #: apt-private/private-install.cc
  235. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  236. msgstr "Keista... Dydis neatitinka, Parašykite laišką apt@packages.debian.org"
  237. #. TRANSLATOR: The required space between number and unit is already included
  238. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  239. #: apt-private/private-install.cc
  240. #, c-format
  241. msgid "Need to get %sB/%sB of archives.\n"
  242. msgstr "Reikia parsiųsti %sB/%sB archyvų.\n"
  243. #. TRANSLATOR: The required space between number and unit is already included
  244. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  245. #: apt-private/private-install.cc
  246. #, c-format
  247. msgid "Need to get %sB of archives.\n"
  248. msgstr "Reikia parsiųsti %sB archyvų.\n"
  249. #. TRANSLATOR: The required space between number and unit is already included
  250. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  251. #: apt-private/private-install.cc
  252. #, c-format
  253. msgid "After this operation, %sB of additional disk space will be used.\n"
  254. msgstr "Po šios operacijos bus naudojama %sB papildomos disko vietos.\n"
  255. #. TRANSLATOR: The required space between number and unit is already included
  256. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  257. #: apt-private/private-install.cc
  258. #, c-format
  259. msgid "After this operation, %sB disk space will be freed.\n"
  260. msgstr "Po šios operacijos bus atlaisvinta %sB disko vietos.\n"
  261. #: apt-private/private-install.cc
  262. msgid "Trivial Only specified but this is not a trivial operation."
  263. msgstr ""
  264. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  265. #. careful with hard to type or special characters (like non-breaking spaces)
  266. #: apt-private/private-install.cc
  267. msgid "Yes, do as I say!"
  268. msgstr "Taip, daryk kaip liepiu!"
  269. #: apt-private/private-install.cc
  270. #, c-format
  271. msgid ""
  272. "You are about to do something potentially harmful.\n"
  273. "To continue type in the phrase '%s'\n"
  274. " ?] "
  275. msgstr ""
  276. "Bandote atlikti tikėtinai pavojingą veiksmą.\n"
  277. "Jei norite tęsti, įveskite frazę „%s“\n"
  278. " ?] "
  279. #: apt-private/private-install.cc
  280. msgid "Abort."
  281. msgstr "Nutraukti."
  282. #: apt-private/private-install.cc
  283. msgid "Do you want to continue?"
  284. msgstr "Ar norite tęsti?"
  285. #: apt-private/private-install.cc
  286. msgid "Some files failed to download"
  287. msgstr "Nepavyko parsiųsti kai kurių failų"
  288. #: apt-private/private-install.cc apt-private/private-source.cc
  289. msgid "Download complete and in download only mode"
  290. msgstr "Pavyko parsiųsti tik parsiuntimo režime"
  291. #: apt-private/private-install.cc
  292. msgid ""
  293. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  294. "missing?"
  295. msgstr ""
  296. "Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ "
  297. "arba pabandykite su parametru --fix-missing?"
  298. #: apt-private/private-install.cc
  299. msgid "--fix-missing and media swapping is not currently supported"
  300. msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas"
  301. #: apt-private/private-install.cc
  302. msgid "Unable to correct missing packages."
  303. msgstr "Nepavyko pataisyti dingusių paketų."
  304. #: apt-private/private-install.cc
  305. msgid "Aborting install."
  306. msgstr "Diegimas nutraukiamas."
  307. #: apt-private/private-install.cc
  308. msgid ""
  309. "The following package disappeared from your system as\n"
  310. "all files have been overwritten by other packages:"
  311. msgid_plural ""
  312. "The following packages disappeared from your system as\n"
  313. "all files have been overwritten by other packages:"
  314. msgstr[0] ""
  315. msgstr[1] ""
  316. #: apt-private/private-install.cc
  317. msgid "Note: This is done automatically and on purpose by dpkg."
  318. msgstr ""
  319. #: apt-private/private-install.cc
  320. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  321. msgstr ""
  322. #: apt-private/private-install.cc
  323. msgid ""
  324. "Hmm, seems like the AutoRemover destroyed something which really\n"
  325. "shouldn't happen. Please file a bug report against apt."
  326. msgstr ""
  327. #.
  328. #. if (Packages == 1)
  329. #. {
  330. #. c1out << std::endl;
  331. #. c1out <<
  332. #. _("Since you only requested a single operation it is extremely likely that\n"
  333. #. "the package is simply not installable and a bug report against\n"
  334. #. "that package should be filed.") << std::endl;
  335. #. }
  336. #.
  337. #: apt-private/private-install.cc
  338. msgid "The following information may help to resolve the situation:"
  339. msgstr "Ši informacija gali padėti išspręsti šią situaciją:"
  340. #: apt-private/private-install.cc
  341. msgid "Internal Error, AutoRemover broke stuff"
  342. msgstr ""
  343. #: apt-private/private-install.cc
  344. #, fuzzy
  345. msgid ""
  346. "The following package was automatically installed and is no longer required:"
  347. msgid_plural ""
  348. "The following packages were automatically installed and are no longer "
  349. "required:"
  350. msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
  351. msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
  352. #: apt-private/private-install.cc
  353. #, fuzzy, c-format
  354. msgid "%lu package was automatically installed and is no longer required.\n"
  355. msgid_plural ""
  356. "%lu packages were automatically installed and are no longer required.\n"
  357. msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
  358. msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
  359. #: apt-private/private-install.cc
  360. #, fuzzy, c-format
  361. msgid "Use '%s' to remove it."
  362. msgid_plural "Use '%s' to remove them."
  363. msgstr[0] "Norėdami juos pašalinti, paleiskite „%s“"
  364. msgstr[1] "Norėdami juos pašalinti, paleiskite „%s“"
  365. #: apt-private/private-install.cc
  366. msgid "You might want to run 'apt-get -f install' to correct these:"
  367. msgstr "Jūs galite norėti paleisti 'apt-get -f install\" klaidų taisymui:"
  368. #: apt-private/private-install.cc
  369. msgid ""
  370. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  371. "solution)."
  372. msgstr ""
  373. "Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be "
  374. "nurodytų paketų (arba nurodykite išeitį)."
  375. #: apt-private/private-install.cc
  376. msgid ""
  377. "Some packages could not be installed. This may mean that you have\n"
  378. "requested an impossible situation or if you are using the unstable\n"
  379. "distribution that some required packages have not yet been created\n"
  380. "or been moved out of Incoming."
  381. msgstr ""
  382. "Nepavyko įdiegti kai kurių paketų. Tai gali reikšti, kad jūs\n"
  383. "paprašėte neįmanomo dalyko, arba, jei jūs naudojate nestabilų\n"
  384. "leidimą, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n"
  385. "pašalinti iš \"Incoming\" aplanko."
  386. #: apt-private/private-install.cc
  387. msgid "Broken packages"
  388. msgstr "Sugadinti paketai"
  389. #: apt-private/private-install.cc
  390. #, fuzzy
  391. msgid "The following additional packages will be installed:"
  392. msgstr "Bus įdiegti šie papildomi paketai:"
  393. #: apt-private/private-install.cc
  394. msgid "Suggested packages:"
  395. msgstr "Siūlomi paketai:"
  396. #: apt-private/private-install.cc
  397. msgid "Recommended packages:"
  398. msgstr "Rekomenduojami paketai:"
  399. #: apt-private/private-install.cc
  400. #, c-format
  401. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  402. msgstr ""
  403. "Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n"
  404. #: apt-private/private-install.cc
  405. #, fuzzy, c-format
  406. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  407. msgstr ""
  408. "Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n"
  409. #: apt-private/private-install.cc
  410. #, c-format
  411. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  412. msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n"
  413. #. TRANSLATORS: First string is package name, second is version
  414. #: apt-private/private-install.cc
  415. #, fuzzy, c-format
  416. msgid "%s is already the newest version (%s).\n"
  417. msgstr "%s ir taip jau yra naujausias.\n"
  418. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  419. #, c-format
  420. msgid "%s set to manually installed.\n"
  421. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  422. #: apt-private/private-install.cc
  423. #, fuzzy, c-format
  424. msgid "Selected version '%s' (%s) for '%s'\n"
  425. msgstr "Pažymėta versija %s (%s) paketui %s\n"
  426. #: apt-private/private-install.cc
  427. #, fuzzy, c-format
  428. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  429. msgstr "Pažymėta versija %s (%s) paketui %s\n"
  430. #: apt-private/private-list.cc
  431. msgid "Listing"
  432. msgstr ""
  433. #: apt-private/private-list.cc
  434. #, c-format
  435. msgid "There is %i additional version. Please use the '-a' switch to see it"
  436. msgid_plural ""
  437. "There are %i additional versions. Please use the '-a' switch to see them."
  438. msgstr[0] ""
  439. msgstr[1] ""
  440. #: apt-private/private-main.cc
  441. msgid ""
  442. "NOTE: This is only a simulation!\n"
  443. " apt-get needs root privileges for real execution.\n"
  444. " Keep also in mind that locking is deactivated,\n"
  445. " so don't depend on the relevance to the real current situation!"
  446. msgstr ""
  447. #: apt-private/private-output.cc apt-private/private-show.cc
  448. msgid "unknown"
  449. msgstr ""
  450. #: apt-private/private-output.cc
  451. #, fuzzy, c-format
  452. msgid "[installed,upgradable to: %s]"
  453. msgstr " [Įdiegtas]"
  454. #: apt-private/private-output.cc
  455. #, fuzzy
  456. msgid "[installed,local]"
  457. msgstr " [Įdiegtas]"
  458. #: apt-private/private-output.cc
  459. msgid "[installed,auto-removable]"
  460. msgstr ""
  461. #: apt-private/private-output.cc
  462. #, fuzzy
  463. msgid "[installed,automatic]"
  464. msgstr " [Įdiegtas]"
  465. #: apt-private/private-output.cc
  466. #, fuzzy
  467. msgid "[installed]"
  468. msgstr " [Įdiegtas]"
  469. #: apt-private/private-output.cc
  470. #, c-format
  471. msgid "[upgradable from: %s]"
  472. msgstr ""
  473. #: apt-private/private-output.cc
  474. msgid "[residual-config]"
  475. msgstr ""
  476. #: apt-private/private-output.cc
  477. #, c-format
  478. msgid "but %s is installed"
  479. msgstr "bet %s yra įdiegtas"
  480. #: apt-private/private-output.cc
  481. #, c-format
  482. msgid "but %s is to be installed"
  483. msgstr "bet %s bus įdiegtas"
  484. #: apt-private/private-output.cc
  485. msgid "but it is not installable"
  486. msgstr "tačiau jis negali būti įdiegtas"
  487. #: apt-private/private-output.cc
  488. msgid "but it is a virtual package"
  489. msgstr "bet tai yra virtualus paketas"
  490. #: apt-private/private-output.cc
  491. msgid "but it is not installed"
  492. msgstr "bet jis nėra įdiegtas"
  493. #: apt-private/private-output.cc
  494. msgid "but it is not going to be installed"
  495. msgstr "bet jis nebus įdiegtas"
  496. #: apt-private/private-output.cc
  497. msgid " or"
  498. msgstr " arba"
  499. #: apt-private/private-output.cc
  500. msgid "The following packages have unmet dependencies:"
  501. msgstr "Šie paketai turi neįdiegtų priklausomybių:"
  502. #: apt-private/private-output.cc
  503. msgid "The following NEW packages will be installed:"
  504. msgstr "Bus įdiegti šie NAUJI paketai:"
  505. #: apt-private/private-output.cc
  506. msgid "The following packages will be REMOVED:"
  507. msgstr "Bus PAŠALINTI šie paketai:"
  508. #: apt-private/private-output.cc
  509. msgid "The following packages have been kept back:"
  510. msgstr "Šių paketų atnaujinimas sulaikomas:"
  511. #: apt-private/private-output.cc
  512. msgid "The following packages will be upgraded:"
  513. msgstr "Bus atnaujinti šie paketai:"
  514. #: apt-private/private-output.cc
  515. msgid "The following packages will be DOWNGRADED:"
  516. msgstr "Bus PAKEISTI SENESNIAIS šie paketai:"
  517. #: apt-private/private-output.cc
  518. msgid "The following held packages will be changed:"
  519. msgstr "Bus pakeisti šie sulaikyti paketai:"
  520. #: apt-private/private-output.cc
  521. #, c-format
  522. msgid "%s (due to %s)"
  523. msgstr "%s (dėl %s)"
  524. #: apt-private/private-output.cc
  525. msgid ""
  526. "WARNING: The following essential packages will be removed.\n"
  527. "This should NOT be done unless you know exactly what you are doing!"
  528. msgstr ""
  529. "Įspėjimas: Šie būtini paketai bus pašalinti.\n"
  530. "Tai NETURĖTŲ būti daroma, kol tiksliai nežinote ką darote!"
  531. #: apt-private/private-output.cc
  532. #, c-format
  533. msgid "%lu upgraded, %lu newly installed, "
  534. msgstr "%lu atnaujinti, %lu naujai įdiegti, "
  535. #: apt-private/private-output.cc
  536. #, c-format
  537. msgid "%lu reinstalled, "
  538. msgstr "%lu įdiegti iš naujo, "
  539. #: apt-private/private-output.cc
  540. #, c-format
  541. msgid "%lu downgraded, "
  542. msgstr "%lu pasendinti, "
  543. #: apt-private/private-output.cc
  544. #, c-format
  545. msgid "%lu to remove and %lu not upgraded.\n"
  546. msgstr "%lu bus pašalinta ir %lu neatnaujinta.\n"
  547. #: apt-private/private-output.cc
  548. #, c-format
  549. msgid "%lu not fully installed or removed.\n"
  550. msgstr "%lu nepilnai įdiegti ar pašalinti.\n"
  551. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  552. #. e.g. "Do you want to continue? [Y/n] "
  553. #. The user has to answer with an input matching the
  554. #. YESEXPR/NOEXPR defined in your l10n.
  555. #: apt-private/private-output.cc
  556. msgid "[Y/n]"
  557. msgstr "[T/n]"
  558. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  559. #. e.g. "Should this file be removed? [y/N] "
  560. #. The user has to answer with an input matching the
  561. #. YESEXPR/NOEXPR defined in your l10n.
  562. #: apt-private/private-output.cc
  563. msgid "[y/N]"
  564. msgstr "[t/N]"
  565. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  566. #: apt-private/private-output.cc
  567. msgid "Y"
  568. msgstr "T"
  569. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  570. #: apt-private/private-output.cc
  571. msgid "N"
  572. msgstr ""
  573. #: apt-private/private-output.cc apt-pkg/cachefilter.cc
  574. #, c-format
  575. msgid "Regex compilation error - %s"
  576. msgstr ""
  577. #: apt-private/private-search.cc
  578. msgid "You must give at least one search pattern"
  579. msgstr ""
  580. #: apt-private/private-search.cc
  581. msgid "Full Text Search"
  582. msgstr ""
  583. #: apt-private/private-show.cc cmdline/apt-cache.cc
  584. #, c-format
  585. msgid "Package file %s is out of sync."
  586. msgstr ""
  587. #: apt-private/private-show.cc
  588. #, c-format
  589. msgid "There is %i additional record. Please use the '-a' switch to see it"
  590. msgid_plural ""
  591. "There are %i additional records. Please use the '-a' switch to see them."
  592. msgstr[0] ""
  593. msgstr[1] ""
  594. #: apt-private/private-show.cc
  595. msgid "not a real package (virtual)"
  596. msgstr ""
  597. #: apt-private/private-show.cc apt-pkg/cacheset.cc
  598. #, c-format
  599. msgid "Unable to locate package %s"
  600. msgstr "Nepavyko rasti paketo %s"
  601. #: apt-private/private-show.cc
  602. msgid "Package files:"
  603. msgstr "Paketų failai:"
  604. #: apt-private/private-show.cc
  605. msgid "Cache is out of sync, can't x-ref a package file"
  606. msgstr ""
  607. #. Show any packages have explicit pins
  608. #: apt-private/private-show.cc
  609. msgid "Pinned packages:"
  610. msgstr "Surišti paketai:"
  611. #: apt-private/private-show.cc
  612. msgid "(not found)"
  613. msgstr "(nerasta)"
  614. #. Print the package name and the version we are forcing to
  615. #: apt-private/private-show.cc
  616. #, c-format
  617. msgid "%s -> %s with priority %d\n"
  618. msgstr ""
  619. #: apt-private/private-show.cc
  620. msgid " Installed: "
  621. msgstr " Įdiegta: "
  622. #: apt-private/private-show.cc
  623. msgid " Candidate: "
  624. msgstr " Kandidatas: "
  625. #: apt-private/private-show.cc
  626. msgid "(none)"
  627. msgstr "(nėra)"
  628. #: apt-private/private-show.cc
  629. msgid " Package pin: "
  630. msgstr " Paketo susiejimai: "
  631. #. Show the priority tables
  632. #: apt-private/private-show.cc
  633. msgid " Version table:"
  634. msgstr " Versijų lentelė:"
  635. #: apt-private/private-source.cc
  636. #, fuzzy, c-format
  637. msgid "Can not find a package for architecture '%s'"
  638. msgstr "Nepavyko rasti paketo %s"
  639. #: apt-private/private-source.cc
  640. #, fuzzy, c-format
  641. msgid "Can not find a package '%s' with version '%s'"
  642. msgstr "Nepavyko rasti paketo %s"
  643. #: apt-private/private-source.cc
  644. #, fuzzy, c-format
  645. msgid "Can not find a package '%s' with release '%s'"
  646. msgstr "Nepavyko rasti paketo %s"
  647. #: apt-private/private-source.cc
  648. #, c-format
  649. msgid "Picking '%s' as source package instead of '%s'\n"
  650. msgstr ""
  651. #: apt-private/private-source.cc
  652. #, c-format
  653. msgid "Can not find version '%s' of package '%s'"
  654. msgstr ""
  655. #: apt-private/private-source.cc
  656. msgid "Must specify at least one package to fetch source for"
  657. msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą"
  658. #: apt-private/private-source.cc
  659. #, c-format
  660. msgid "Unable to find a source package for %s"
  661. msgstr "Nepavyko surasti išeities teksto paketo, skirto %s"
  662. #: apt-private/private-source.cc
  663. #, c-format
  664. msgid ""
  665. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  666. "%s\n"
  667. msgstr ""
  668. #: apt-private/private-source.cc
  669. #, c-format
  670. msgid ""
  671. "Please use:\n"
  672. "%s\n"
  673. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  674. msgstr ""
  675. #: apt-private/private-source.cc
  676. #, c-format
  677. msgid "Skipping already downloaded file '%s'\n"
  678. msgstr "Praleidžiama jau parsiųsta byla „%s“\n"
  679. #. TRANSLATOR: The required space between number and unit is already included
  680. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  681. #: apt-private/private-source.cc
  682. #, c-format
  683. msgid "Need to get %sB/%sB of source archives.\n"
  684. msgstr "Reikia parsiųsti %sB/%sB išeities archyvų.\n"
  685. #. TRANSLATOR: The required space between number and unit is already included
  686. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  687. #: apt-private/private-source.cc
  688. #, c-format
  689. msgid "Need to get %sB of source archives.\n"
  690. msgstr "Reikia parsiųsti %sB išeities archyvų.\n"
  691. #: apt-private/private-source.cc
  692. #, c-format
  693. msgid "Fetch source %s\n"
  694. msgstr "Parsiunčiamas archyvas %s\n"
  695. #: apt-private/private-source.cc
  696. msgid "Failed to fetch some archives."
  697. msgstr "Nepavyko gauti kai kurių arhcyvų."
  698. #: apt-private/private-source.cc
  699. #, c-format
  700. msgid "Skipping unpack of already unpacked source in %s\n"
  701. msgstr "Jau išpakuotas archyvas %s praleidžiama\n"
  702. #: apt-private/private-source.cc
  703. #, c-format
  704. msgid "Unpack command '%s' failed.\n"
  705. msgstr "Nepavyko įvykdyti išpakavimo komandos „%s“\n"
  706. #: apt-private/private-source.cc
  707. #, c-format
  708. msgid "Check if the 'dpkg-dev' package is installed.\n"
  709. msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n"
  710. #: apt-private/private-source.cc
  711. #, c-format
  712. msgid "Build command '%s' failed.\n"
  713. msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n"
  714. #: apt-private/private-source.cc
  715. #, fuzzy, c-format
  716. msgid ""
  717. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  718. "packages"
  719. msgstr ""
  720. "%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas"
  721. #: apt-private/private-source.cc
  722. #, c-format
  723. msgid ""
  724. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  725. "found"
  726. msgstr ""
  727. "%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas"
  728. #: apt-private/private-source.cc
  729. #, c-format
  730. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  731. msgstr ""
  732. "Nepavyko patenkinti %s priklausomybės %s paketui: Įdiegtas paketas %s yra "
  733. "per naujas"
  734. #: apt-private/private-source.cc
  735. #, fuzzy, c-format
  736. msgid ""
  737. "%s dependency for %s cannot be satisfied because candidate version of "
  738. "package %s can't satisfy version requirements"
  739. msgstr ""
  740. "%s priklausomybė %s paketui negali būti patenkinama, nes nėra tinkamos "
  741. "versijos %s paketo"
  742. #: apt-private/private-source.cc
  743. #, fuzzy, c-format
  744. msgid ""
  745. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  746. "version"
  747. msgstr ""
  748. "%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas"
  749. #: apt-private/private-source.cc
  750. #, c-format
  751. msgid "Failed to satisfy %s dependency for %s: %s"
  752. msgstr "Nepavyko patenkinti %s priklausomybės %s: %s"
  753. #: apt-private/private-source.cc
  754. #, c-format
  755. msgid "Build-dependencies for %s could not be satisfied."
  756. msgstr ""
  757. #: apt-private/private-source.cc
  758. #, c-format
  759. msgid "Unable to get build-dependency information for %s"
  760. msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s"
  761. #: apt-private/private-source.cc
  762. #, c-format
  763. msgid "%s has no build depends.\n"
  764. msgstr ""
  765. #: apt-private/private-source.cc
  766. msgid "Must specify at least one package to check builddeps for"
  767. msgstr "Būtina nurodyti bent vieną paketą, kuriam norite įvykdyti builddeps"
  768. #: apt-private/private-source.cc
  769. #, c-format
  770. msgid ""
  771. "No architecture information available for %s. See apt.conf(5) APT::"
  772. "Architectures for setup"
  773. msgstr ""
  774. #: apt-private/private-source.cc
  775. #, c-format
  776. msgid "Note, using directory '%s' to get the build dependencies\n"
  777. msgstr ""
  778. #: apt-private/private-source.cc
  779. #, c-format
  780. msgid "Note, using file '%s' to get the build dependencies\n"
  781. msgstr ""
  782. #: apt-private/private-source.cc
  783. msgid "Failed to process build dependencies"
  784. msgstr ""
  785. #: apt-private/private-sources.cc
  786. #, fuzzy, c-format
  787. msgid "Failed to parse %s. Edit again? "
  788. msgstr "Nepavyko pervadinti %s į %s"
  789. #: apt-private/private-sources.cc
  790. #, c-format
  791. msgid "Your '%s' file changed, please run 'apt-get update'."
  792. msgstr ""
  793. #: apt-private/private-unmet.cc
  794. #, c-format
  795. msgid "Package %s version %s has an unmet dep:\n"
  796. msgstr "Paketas %s versijos numeriu %s turi netenkinamą priklausomybę:\n"
  797. #: apt-private/private-update.cc
  798. msgid "The update command takes no arguments"
  799. msgstr "Atnaujinimo komandai argumentų nereikia"
  800. #: apt-private/private-update.cc
  801. #, c-format
  802. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  803. msgid_plural ""
  804. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  805. msgstr[0] ""
  806. msgstr[1] ""
  807. #: apt-private/private-update.cc
  808. msgid "All packages are up to date."
  809. msgstr ""
  810. #: cmdline/apt-cache.cc
  811. #, fuzzy
  812. msgid "apt-cache stats does not take any arguments"
  813. msgstr "Atnaujinimo komandai argumentų nereikia"
  814. #: cmdline/apt-cache.cc
  815. #, fuzzy
  816. msgid "Total package names: "
  817. msgstr "Visi paketų pavadinimai: "
  818. #: cmdline/apt-cache.cc
  819. #, fuzzy
  820. msgid "Total package structures: "
  821. msgstr "Visi paketų pavadinimai: "
  822. #: cmdline/apt-cache.cc
  823. msgid " Normal packages: "
  824. msgstr " Normalūs paketai: "
  825. #: cmdline/apt-cache.cc
  826. msgid " Pure virtual packages: "
  827. msgstr " Virtualūs paketai: "
  828. #: cmdline/apt-cache.cc
  829. msgid " Single virtual packages: "
  830. msgstr " Pavieniai virtualūs paketai: "
  831. #: cmdline/apt-cache.cc
  832. msgid " Mixed virtual packages: "
  833. msgstr " Mišrūs virtualūs paketai: "
  834. #: cmdline/apt-cache.cc
  835. msgid " Missing: "
  836. msgstr " Trūksta: "
  837. #: cmdline/apt-cache.cc
  838. msgid "Total distinct versions: "
  839. msgstr "Viso skirtingų versijų: "
  840. #: cmdline/apt-cache.cc
  841. #, fuzzy
  842. msgid "Total distinct descriptions: "
  843. msgstr "Viso skirtingų aprašymų: "
  844. #: cmdline/apt-cache.cc
  845. msgid "Total dependencies: "
  846. msgstr "Viso priklausomybių: "
  847. #: cmdline/apt-cache.cc
  848. msgid "Total ver/file relations: "
  849. msgstr "Viso versijų/failų santykių yra: "
  850. #: cmdline/apt-cache.cc
  851. msgid "Total Desc/File relations: "
  852. msgstr "Viso aprašymų/failų santykių yra: "
  853. #: cmdline/apt-cache.cc
  854. msgid "Total Provides mappings: "
  855. msgstr ""
  856. #: cmdline/apt-cache.cc
  857. msgid "Total globbed strings: "
  858. msgstr ""
  859. #: cmdline/apt-cache.cc
  860. msgid "Total slack space: "
  861. msgstr ""
  862. #: cmdline/apt-cache.cc
  863. msgid "Total space accounted for: "
  864. msgstr ""
  865. #: cmdline/apt-cache.cc
  866. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  867. msgstr ""
  868. #: cmdline/apt-cache.cc
  869. msgid ""
  870. "Usage: apt-cache [options] command\n"
  871. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  872. "\n"
  873. "apt-cache queries and displays available information about installed\n"
  874. "and installable packages. It works exclusively on the data acquired\n"
  875. "into the local cache via the 'update' command of e.g. apt-get. The\n"
  876. "displayed information may therefore be outdated if the last update was\n"
  877. "too long ago, but in exchange apt-cache works independently of the\n"
  878. "availability of the configured sources (e.g. offline).\n"
  879. msgstr ""
  880. #: cmdline/apt-cache.cc
  881. msgid "Show source records"
  882. msgstr ""
  883. #: cmdline/apt-cache.cc
  884. msgid "Search the package list for a regex pattern"
  885. msgstr ""
  886. #: cmdline/apt-cache.cc
  887. #, fuzzy
  888. msgid "Show raw dependency information for a package"
  889. msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s"
  890. #: cmdline/apt-cache.cc
  891. #, fuzzy
  892. msgid "Show reverse dependency information for a package"
  893. msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s"
  894. #: cmdline/apt-cache.cc
  895. msgid "Show a readable record for the package"
  896. msgstr ""
  897. #: cmdline/apt-cache.cc
  898. msgid "List the names of all packages in the system"
  899. msgstr ""
  900. #: cmdline/apt-cache.cc
  901. msgid "Show policy settings"
  902. msgstr ""
  903. #: cmdline/apt-cdrom.cc
  904. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  905. msgstr ""
  906. #: cmdline/apt-cdrom.cc
  907. #, fuzzy
  908. msgid "Please insert a Disc in the drive and press [Enter]"
  909. msgstr "Prašome įdėti diską į įrenginį ir paspausti Enter"
  910. #: cmdline/apt-cdrom.cc
  911. #, fuzzy, c-format
  912. msgid "Failed to mount '%s' to '%s'"
  913. msgstr "Nepavyko pervadinti %s į %s"
  914. #: cmdline/apt-cdrom.cc
  915. msgid ""
  916. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  917. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  918. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  919. "mount point."
  920. msgstr ""
  921. #: cmdline/apt-cdrom.cc
  922. msgid "Repeat this process for the rest of the CDs in your set."
  923. msgstr "Pakartokite šitą procesą su kitais CD savo rinkinyje."
  924. #: cmdline/apt-cdrom.cc
  925. msgid ""
  926. "Usage: apt-cdrom [options] command\n"
  927. "\n"
  928. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  929. "media types as package sources to APT. The mount point and device\n"
  930. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  931. msgstr ""
  932. #: cmdline/apt-config.cc
  933. msgid "Arguments not in pairs"
  934. msgstr "Parametrai nurodyti ne poromis"
  935. #: cmdline/apt-config.cc
  936. #, fuzzy
  937. msgid ""
  938. "Usage: apt-config [options] command\n"
  939. "\n"
  940. "apt-config is an interface to the configuration settings used by\n"
  941. "all APT tools, mainly intended for debugging and shell scripting.\n"
  942. msgstr ""
  943. "Panaudojimas: apt-config [parametrai] komanda\n"
  944. "\n"
  945. "apt-config yra paprastas įrankis nuskaityti APT konfigūracijos failui\n"
  946. #: cmdline/apt-config.cc
  947. msgid "get configuration values via shell evaluation"
  948. msgstr ""
  949. #: cmdline/apt-config.cc
  950. msgid "show the active configuration setting"
  951. msgstr ""
  952. #: cmdline/apt-get.cc
  953. #, c-format
  954. msgid "Couldn't find package %s"
  955. msgstr "Nepavyko rasti paketo %s"
  956. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  957. #, fuzzy, c-format
  958. msgid "%s set to automatically installed.\n"
  959. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  960. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  961. msgid ""
  962. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  963. "instead."
  964. msgstr ""
  965. #: cmdline/apt-get.cc
  966. msgid "Internal error, problem resolver broke stuff"
  967. msgstr "Vidinė klaida, problemos sprendimas kažką sugadino"
  968. #: cmdline/apt-get.cc
  969. msgid "Supported modules:"
  970. msgstr "Palaikomi moduliai:"
  971. #: cmdline/apt-get.cc
  972. msgid ""
  973. "Usage: apt-get [options] command\n"
  974. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  975. " apt-get [options] source pkg1 [pkg2 ...]\n"
  976. "\n"
  977. "apt-get is a command line interface for retrieval of packages\n"
  978. "and information about them from authenticated sources and\n"
  979. "for installation, upgrade and removal of packages together\n"
  980. "with their dependencies.\n"
  981. msgstr ""
  982. #: cmdline/apt-get.cc
  983. #, fuzzy
  984. msgid "Retrieve new lists of packages"
  985. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  986. #: cmdline/apt-get.cc
  987. msgid "Perform an upgrade"
  988. msgstr ""
  989. #: cmdline/apt-get.cc
  990. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  991. msgstr ""
  992. #: cmdline/apt-get.cc
  993. #, fuzzy
  994. msgid "Remove packages"
  995. msgstr "Sugadinti paketai"
  996. #: cmdline/apt-get.cc
  997. msgid "Remove packages and config files"
  998. msgstr ""
  999. #: cmdline/apt-get.cc cmdline/apt.cc
  1000. #, fuzzy
  1001. msgid "Remove automatically all unused packages"
  1002. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1003. #: cmdline/apt-get.cc
  1004. msgid "Distribution upgrade, see apt-get(8)"
  1005. msgstr ""
  1006. #: cmdline/apt-get.cc
  1007. msgid "Follow dselect selections"
  1008. msgstr ""
  1009. #: cmdline/apt-get.cc
  1010. msgid "Configure build-dependencies for source packages"
  1011. msgstr ""
  1012. #: cmdline/apt-get.cc
  1013. msgid "Erase downloaded archive files"
  1014. msgstr ""
  1015. #: cmdline/apt-get.cc
  1016. msgid "Erase old downloaded archive files"
  1017. msgstr ""
  1018. #: cmdline/apt-get.cc
  1019. msgid "Verify that there are no broken dependencies"
  1020. msgstr ""
  1021. #: cmdline/apt-get.cc
  1022. #, fuzzy
  1023. msgid "Download source archives"
  1024. msgstr "Reikia parsiųsti %sB išeities archyvų.\n"
  1025. #: cmdline/apt-get.cc
  1026. msgid "Download the binary package into the current directory"
  1027. msgstr ""
  1028. #: cmdline/apt-get.cc
  1029. msgid "Download and display the changelog for the given package"
  1030. msgstr ""
  1031. #: cmdline/apt-helper.cc
  1032. msgid "Need one URL as argument"
  1033. msgstr ""
  1034. #: cmdline/apt-helper.cc
  1035. #, fuzzy
  1036. msgid "Must specify at least one pair url/filename"
  1037. msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą"
  1038. #: cmdline/apt-helper.cc
  1039. msgid "Download Failed"
  1040. msgstr ""
  1041. #: cmdline/apt-helper.cc
  1042. #, c-format
  1043. msgid "GetSrvRec failed for %s"
  1044. msgstr ""
  1045. #: cmdline/apt-helper.cc
  1046. msgid ""
  1047. "Usage: apt-helper [options] command\n"
  1048. " apt-helper [options] cat-file file ...\n"
  1049. " apt-helper [options] download-file uri target-path\n"
  1050. "\n"
  1051. "apt-helper bundles a variety of commands for shell scripts to use\n"
  1052. "e.g. the same proxy configuration or acquire system as APT would.\n"
  1053. msgstr ""
  1054. #: cmdline/apt-helper.cc
  1055. msgid "download the given uri to the target-path"
  1056. msgstr ""
  1057. #: cmdline/apt-helper.cc
  1058. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  1059. msgstr ""
  1060. #: cmdline/apt-helper.cc
  1061. msgid "concatenate files, with automatic decompression"
  1062. msgstr ""
  1063. #: cmdline/apt-helper.cc
  1064. msgid "detect proxy using apt.conf"
  1065. msgstr ""
  1066. #: cmdline/apt-mark.cc
  1067. #, fuzzy, c-format
  1068. msgid "%s can not be marked as it is not installed.\n"
  1069. msgstr "bet jis nėra įdiegtas"
  1070. #: cmdline/apt-mark.cc
  1071. #, fuzzy, c-format
  1072. msgid "%s was already set to manually installed.\n"
  1073. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1074. #: cmdline/apt-mark.cc
  1075. #, fuzzy, c-format
  1076. msgid "%s was already set to automatically installed.\n"
  1077. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1078. #: cmdline/apt-mark.cc
  1079. #, fuzzy, c-format
  1080. msgid "%s was already set on hold.\n"
  1081. msgstr "%s ir taip jau yra naujausias.\n"
  1082. #: cmdline/apt-mark.cc
  1083. #, fuzzy, c-format
  1084. msgid "%s was already not hold.\n"
  1085. msgstr "%s ir taip jau yra naujausias.\n"
  1086. #: cmdline/apt-mark.cc
  1087. msgid "Executing dpkg failed. Are you root?"
  1088. msgstr ""
  1089. #: cmdline/apt-mark.cc
  1090. #, fuzzy, c-format
  1091. msgid "%s set on hold.\n"
  1092. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1093. #: cmdline/apt-mark.cc
  1094. #, fuzzy, c-format
  1095. msgid "Canceled hold on %s.\n"
  1096. msgstr "Nepavyko atverti %s"
  1097. #: cmdline/apt-mark.cc
  1098. #, c-format
  1099. msgid "Selected %s for purge.\n"
  1100. msgstr ""
  1101. #: cmdline/apt-mark.cc
  1102. #, c-format
  1103. msgid "Selected %s for removal.\n"
  1104. msgstr ""
  1105. #: cmdline/apt-mark.cc
  1106. #, c-format
  1107. msgid "Selected %s for installation.\n"
  1108. msgstr ""
  1109. #: cmdline/apt-mark.cc
  1110. msgid ""
  1111. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1112. "\n"
  1113. "apt-mark is a simple command line interface for marking packages\n"
  1114. "as manually or automatically installed. It can also be used to\n"
  1115. "manipulate the dpkg(1) selection states of packages, and to list\n"
  1116. "all packages with or without a certain marking.\n"
  1117. msgstr ""
  1118. #: cmdline/apt-mark.cc
  1119. #, fuzzy
  1120. msgid "Mark the given packages as automatically installed"
  1121. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1122. #: cmdline/apt-mark.cc
  1123. #, fuzzy
  1124. msgid "Mark the given packages as manually installed"
  1125. msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n"
  1126. #: cmdline/apt-mark.cc
  1127. msgid "Mark a package as held back"
  1128. msgstr ""
  1129. #: cmdline/apt-mark.cc
  1130. msgid "Unset a package set as held back"
  1131. msgstr ""
  1132. #: cmdline/apt-mark.cc
  1133. #, fuzzy
  1134. msgid "Print the list of automatically installed packages"
  1135. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1136. #: cmdline/apt-mark.cc
  1137. #, fuzzy
  1138. msgid "Print the list of manually installed packages"
  1139. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1140. #: cmdline/apt-mark.cc
  1141. msgid "Print the list of package on hold"
  1142. msgstr ""
  1143. #: cmdline/apt.cc
  1144. msgid ""
  1145. "Usage: apt [options] command\n"
  1146. "\n"
  1147. "apt is a commandline package manager and provides commands for\n"
  1148. "searching and managing as well as querying information about packages.\n"
  1149. "It provides the same functionality as the specialized APT tools,\n"
  1150. "like apt-get and apt-cache, but enables options more suitable for\n"
  1151. "interactive use by default.\n"
  1152. msgstr ""
  1153. #. query
  1154. #: cmdline/apt.cc
  1155. msgid "list packages based on package names"
  1156. msgstr ""
  1157. #: cmdline/apt.cc
  1158. #, fuzzy
  1159. msgid "search in package descriptions"
  1160. msgstr "Skaitomi paketų sąrašai"
  1161. #: cmdline/apt.cc
  1162. msgid "show package details"
  1163. msgstr ""
  1164. #. package stuff
  1165. #: cmdline/apt.cc
  1166. #, fuzzy
  1167. msgid "install packages"
  1168. msgstr "Surišti paketai:"
  1169. #: cmdline/apt.cc
  1170. #, fuzzy
  1171. msgid "remove packages"
  1172. msgstr "Sugadinti paketai"
  1173. #. system wide stuff
  1174. #: cmdline/apt.cc
  1175. #, fuzzy
  1176. msgid "update list of available packages"
  1177. msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n"
  1178. #: cmdline/apt.cc
  1179. msgid "upgrade the system by installing/upgrading packages"
  1180. msgstr ""
  1181. #: cmdline/apt.cc
  1182. msgid "upgrade the system by removing/installing/upgrading packages"
  1183. msgstr ""
  1184. #. misc
  1185. #: cmdline/apt.cc
  1186. #, fuzzy
  1187. msgid "edit the source information file"
  1188. msgstr "Skaitoma būsenos informacija"
  1189. #: methods/cdrom.cc
  1190. #, c-format
  1191. msgid "Unable to read the cdrom database %s"
  1192. msgstr "Nepavyko perskaityti cdrom duomenų bazės %s"
  1193. #: methods/cdrom.cc
  1194. msgid ""
  1195. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1196. "cannot be used to add new CD-ROMs"
  1197. msgstr ""
  1198. #: methods/cdrom.cc
  1199. msgid "Wrong CD-ROM"
  1200. msgstr "Klaidingas CD-ROM"
  1201. #: methods/cdrom.cc
  1202. #, c-format
  1203. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1204. msgstr "Nepavyko atjungti CD-ROM įrenginyje %s, galbūt jis vis dar naudojamas."
  1205. #: methods/cdrom.cc
  1206. msgid "Disk not found."
  1207. msgstr "Diskas nerastas."
  1208. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  1209. msgid "File not found"
  1210. msgstr "Failas nerastas"
  1211. #: methods/connect.cc
  1212. #, c-format
  1213. msgid "Connecting to %s (%s)"
  1214. msgstr "Jungiamasi prie %s (%s)"
  1215. #: methods/connect.cc
  1216. #, c-format
  1217. msgid "[IP: %s %s]"
  1218. msgstr "[IP: %s %s]"
  1219. #: methods/connect.cc
  1220. #, c-format
  1221. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1222. msgstr ""
  1223. #: methods/connect.cc
  1224. #, c-format
  1225. msgid "Cannot initiate the connection to %s:%s (%s)."
  1226. msgstr ""
  1227. #: methods/connect.cc
  1228. #, c-format
  1229. msgid "Could not connect to %s:%s (%s), connection timed out"
  1230. msgstr "Nepavyko prisijungti prie %s:%s (%s), prisijungimas per ilgai užtruko"
  1231. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  1232. msgid "Failed"
  1233. msgstr "Nepavyko"
  1234. #: methods/connect.cc
  1235. #, c-format
  1236. msgid "Could not connect to %s:%s (%s)."
  1237. msgstr "Nepavyko prisijungti prie %s:%s (%s)."
  1238. #. We say this mainly because the pause here is for the
  1239. #. ssh connection that is still going
  1240. #: methods/connect.cc methods/rsh.cc
  1241. #, c-format
  1242. msgid "Connecting to %s"
  1243. msgstr "Jungiamasi prie %s"
  1244. #: methods/connect.cc
  1245. #, c-format
  1246. msgid "Could not resolve '%s'"
  1247. msgstr "Nepavyko surasti vardo „%s“"
  1248. #: methods/connect.cc
  1249. #, c-format
  1250. msgid "Temporary failure resolving '%s'"
  1251. msgstr "Laikinas sutrikimas ieškant vardo „%s“"
  1252. #: methods/connect.cc
  1253. #, fuzzy, c-format
  1254. msgid "System error resolving '%s:%s'"
  1255. msgstr "Laikinas sutrikimas ieškant vardo „%s“"
  1256. #: methods/connect.cc
  1257. #, c-format
  1258. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1259. msgstr ""
  1260. #: methods/connect.cc
  1261. #, fuzzy, c-format
  1262. msgid "Unable to connect to %s:%s:"
  1263. msgstr "Nepavyko prisijungti prie %s %s:"
  1264. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1265. msgid "Failed to stat"
  1266. msgstr ""
  1267. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1268. msgid "Failed to set modification time"
  1269. msgstr ""
  1270. #: methods/file.cc
  1271. msgid "Invalid URI, local URIS must not start with //"
  1272. msgstr ""
  1273. #. Login must be before getpeername otherwise dante won't work.
  1274. #: methods/ftp.cc
  1275. msgid "Logging in"
  1276. msgstr "Jungiamasi"
  1277. #: methods/ftp.cc
  1278. msgid "Unable to determine the peer name"
  1279. msgstr ""
  1280. #: methods/ftp.cc
  1281. msgid "Unable to determine the local name"
  1282. msgstr ""
  1283. #: methods/ftp.cc
  1284. #, c-format
  1285. msgid "The server refused the connection and said: %s"
  1286. msgstr ""
  1287. #: methods/ftp.cc
  1288. #, c-format
  1289. msgid "USER failed, server said: %s"
  1290. msgstr ""
  1291. #: methods/ftp.cc
  1292. #, c-format
  1293. msgid "PASS failed, server said: %s"
  1294. msgstr ""
  1295. #: methods/ftp.cc
  1296. msgid ""
  1297. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1298. "is empty."
  1299. msgstr ""
  1300. #: methods/ftp.cc
  1301. #, c-format
  1302. msgid "Login script command '%s' failed, server said: %s"
  1303. msgstr ""
  1304. #: methods/ftp.cc
  1305. #, c-format
  1306. msgid "TYPE failed, server said: %s"
  1307. msgstr ""
  1308. #: methods/ftp.cc methods/rsh.cc
  1309. msgid "Connection timeout"
  1310. msgstr "Jungiamasi per ilgai"
  1311. #: methods/ftp.cc
  1312. msgid "Server closed the connection"
  1313. msgstr ""
  1314. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1315. msgid "Read error"
  1316. msgstr "Skaitymo klaida"
  1317. #: methods/ftp.cc methods/rsh.cc
  1318. msgid "A response overflowed the buffer."
  1319. msgstr ""
  1320. #: methods/ftp.cc
  1321. msgid "Protocol corruption"
  1322. msgstr ""
  1323. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1324. msgid "Write error"
  1325. msgstr "Rašymo klaida"
  1326. #: methods/ftp.cc
  1327. msgid "Could not create a socket"
  1328. msgstr ""
  1329. #: methods/ftp.cc
  1330. msgid "Could not connect data socket, connection timed out"
  1331. msgstr ""
  1332. #: methods/ftp.cc
  1333. msgid "Could not connect passive socket."
  1334. msgstr ""
  1335. #: methods/ftp.cc
  1336. msgid "getaddrinfo was unable to get a listening socket"
  1337. msgstr ""
  1338. #: methods/ftp.cc
  1339. msgid "Could not bind a socket"
  1340. msgstr ""
  1341. #: methods/ftp.cc
  1342. msgid "Could not listen on the socket"
  1343. msgstr ""
  1344. #: methods/ftp.cc
  1345. msgid "Could not determine the socket's name"
  1346. msgstr ""
  1347. #: methods/ftp.cc
  1348. msgid "Unable to send PORT command"
  1349. msgstr ""
  1350. #: methods/ftp.cc
  1351. #, c-format
  1352. msgid "Unknown address family %u (AF_*)"
  1353. msgstr ""
  1354. #: methods/ftp.cc
  1355. #, c-format
  1356. msgid "EPRT failed, server said: %s"
  1357. msgstr ""
  1358. #: methods/ftp.cc
  1359. msgid "Data socket connect timed out"
  1360. msgstr ""
  1361. #: methods/ftp.cc
  1362. msgid "Unable to accept connection"
  1363. msgstr ""
  1364. #: methods/ftp.cc methods/rsh.cc methods/server.cc
  1365. msgid "Problem hashing file"
  1366. msgstr ""
  1367. #: methods/ftp.cc
  1368. #, c-format
  1369. msgid "Unable to fetch file, server said '%s'"
  1370. msgstr "Nepavyko atsiųsti failo, serveris atsakė „%s“"
  1371. #: methods/ftp.cc methods/rsh.cc
  1372. msgid "Data socket timed out"
  1373. msgstr ""
  1374. #: methods/ftp.cc
  1375. #, c-format
  1376. msgid "Data transfer failed, server said '%s'"
  1377. msgstr ""
  1378. #. Get the files information
  1379. #: methods/ftp.cc
  1380. msgid "Query"
  1381. msgstr "Užklausti"
  1382. #: methods/ftp.cc
  1383. msgid "Unable to invoke "
  1384. msgstr ""
  1385. #: methods/gpgv.cc
  1386. msgid "At least one invalid signature was encountered."
  1387. msgstr ""
  1388. #: methods/gpgv.cc
  1389. msgid ""
  1390. "Internal error: Good signature, but could not determine key fingerprint?!"
  1391. msgstr ""
  1392. #: methods/gpgv.cc
  1393. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  1394. msgstr ""
  1395. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1396. #: methods/gpgv.cc apt-pkg/acquire-item.cc
  1397. #, c-format
  1398. msgid ""
  1399. "Clearsigned file isn't valid, got '%s' (does the network require "
  1400. "authentication?)"
  1401. msgstr ""
  1402. #: methods/gpgv.cc
  1403. msgid "Unknown error executing apt-key"
  1404. msgstr "Nežinoma klaida kviečiant apt-key"
  1405. #: methods/gpgv.cc
  1406. msgid "The following signatures were invalid:\n"
  1407. msgstr "Šie parašai buvo nevalidūs:\n"
  1408. #: methods/gpgv.cc
  1409. msgid ""
  1410. "The following signatures couldn't be verified because the public key is not "
  1411. "available:\n"
  1412. msgstr "Šių parašų nebuvo galima patikrinti, nes nėra viešojo rakto:\n"
  1413. #: methods/gzip.cc
  1414. msgid "Empty files can't be valid archives"
  1415. msgstr ""
  1416. #: methods/http.cc
  1417. msgid "Error writing to the file"
  1418. msgstr ""
  1419. #: methods/http.cc
  1420. msgid "Error reading from server. Remote end closed connection"
  1421. msgstr ""
  1422. #: methods/http.cc
  1423. msgid "Error reading from server"
  1424. msgstr ""
  1425. #: methods/http.cc
  1426. msgid "Error writing to file"
  1427. msgstr "Klaida bandant rašyti į failą"
  1428. #: methods/http.cc
  1429. msgid "Select failed"
  1430. msgstr ""
  1431. #: methods/http.cc
  1432. msgid "Connection timed out"
  1433. msgstr "Prisijungimo laiko limitas baigėsi"
  1434. #: methods/http.cc
  1435. msgid "Error writing to output file"
  1436. msgstr ""
  1437. #. Only warn if there are no sources.list.d.
  1438. #. Only warn if there is no sources.list file.
  1439. #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1440. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
  1441. #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
  1442. #, c-format
  1443. msgid "Unable to read %s"
  1444. msgstr "Nepavyko perskaityti %s"
  1445. #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1446. #: apt-pkg/contrib/cdromutl.cc
  1447. #, c-format
  1448. msgid "Unable to change to %s"
  1449. msgstr "Nepavyko pakeisti į %s"
  1450. #. FIXME: fallback to a default mirror here instead
  1451. #. and provide a config option to define that default
  1452. #: methods/mirror.cc
  1453. #, c-format
  1454. msgid "No mirror file '%s' found "
  1455. msgstr ""
  1456. #. FIXME: fallback to a default mirror here instead
  1457. #. and provide a config option to define that default
  1458. #: methods/mirror.cc
  1459. #, fuzzy, c-format
  1460. msgid "Can not read mirror file '%s'"
  1461. msgstr "Nepavyko atverti failo %s"
  1462. #: methods/mirror.cc
  1463. #, fuzzy, c-format
  1464. msgid "No entry found in mirror file '%s'"
  1465. msgstr "Nepavyko atverti failo %s"
  1466. #: methods/mirror.cc
  1467. #, c-format
  1468. msgid "[Mirror: %s]"
  1469. msgstr ""
  1470. #: methods/rsh.cc ftparchive/multicompress.cc
  1471. msgid "Failed to create IPC pipe to subprocess"
  1472. msgstr "Nepavyko subprocesui sukurti IPC gijos"
  1473. #: methods/rsh.cc
  1474. msgid "Connection closed prematurely"
  1475. msgstr ""
  1476. #: methods/server.cc
  1477. msgid "Waiting for headers"
  1478. msgstr "Laukiama antraščių"
  1479. #: methods/server.cc
  1480. msgid "Bad header line"
  1481. msgstr ""
  1482. #: methods/server.cc
  1483. msgid "The HTTP server sent an invalid reply header"
  1484. msgstr ""
  1485. #: methods/server.cc
  1486. msgid "The HTTP server sent an invalid Content-Length header"
  1487. msgstr ""
  1488. #: methods/server.cc
  1489. msgid "The HTTP server sent an invalid Content-Range header"
  1490. msgstr ""
  1491. #: methods/server.cc
  1492. msgid "This HTTP server has broken range support"
  1493. msgstr ""
  1494. #: methods/server.cc
  1495. msgid "Unknown date format"
  1496. msgstr ""
  1497. #: methods/server.cc
  1498. msgid "Bad header data"
  1499. msgstr ""
  1500. #: methods/server.cc
  1501. msgid "Connection failed"
  1502. msgstr "Prisijungti nepavyko"
  1503. #: methods/server.cc
  1504. #, c-format
  1505. msgid ""
  1506. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1507. "5 apt.conf)"
  1508. msgstr ""
  1509. #: methods/server.cc
  1510. msgid "Internal error"
  1511. msgstr "Vidinė klaida"
  1512. #: dselect/install:33
  1513. msgid "Bad default setting!"
  1514. msgstr "Blogi standartiniai nustatymai!"
  1515. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1516. #: dselect/install:106 dselect/update:45
  1517. #, fuzzy
  1518. msgid "Press [Enter] to continue."
  1519. msgstr "Jei norite tęsti, spauskite Enter."
  1520. #: dselect/install:92
  1521. msgid "Do you want to erase any previously downloaded .deb files?"
  1522. msgstr ""
  1523. #: dselect/install:102
  1524. #, fuzzy
  1525. msgid "Some errors occurred while unpacking. Packages that were installed"
  1526. msgstr "Išpakuojant įvyko klaidų. Bandysiu konfigūruoti"
  1527. #: dselect/install:103
  1528. #, fuzzy
  1529. msgid "will be configured. This may result in duplicate errors"
  1530. msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojančias klaidas"
  1531. #: dselect/install:104
  1532. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1533. msgstr ""
  1534. "arba klaidas, atsiradusias dėl trūkstamų priklausomybių. Viskas gerai, tik "
  1535. "klaidos,"
  1536. #: dselect/install:105
  1537. msgid ""
  1538. "above this message are important. Please fix them and run [I]nstall again"
  1539. msgstr ""
  1540. "esančios aukščiau šios žinutės, yra svarbios. Prašome jas ištaisyti ir vėl "
  1541. "paleisti [I]nstall"
  1542. #: dselect/update:30
  1543. msgid "Merging available information"
  1544. msgstr "Sujungiama turima informaija"
  1545. #: cmdline/apt-extracttemplates.cc
  1546. #, fuzzy
  1547. msgid ""
  1548. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1549. "\n"
  1550. "apt-extracttemplates is used to extract config and template files\n"
  1551. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  1552. "configuration questions before installation of packages.\n"
  1553. msgstr ""
  1554. "Naudojimas: apt-extracttemplates failas1 [failas2 ...]\n"
  1555. "\n"
  1556. "apt-extracttemplates tai įrankis skirtas konfigūracijų, bei šablonų "
  1557. "informacijos išskleidimui\n"
  1558. "iš debian paketų\n"
  1559. "\n"
  1560. "Parametrai:\n"
  1561. " -h Šis pagalbos tekstas\n"
  1562. " -t Nustatyti laikinąjį aplanką\n"
  1563. " -c=? Nuskaityti šį konfigūracijų failą\n"
  1564. " -o=? Nustatyti savarankiškas nuostatas, pvz.: -o dir::cache=/tmp\n"
  1565. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1566. #, fuzzy, c-format
  1567. msgid "Unable to mkstemp %s"
  1568. msgstr "Nepavyko sukurti %s"
  1569. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1570. #, c-format
  1571. msgid "Unable to write to %s"
  1572. msgstr "Nepavyko įrašyti į %s"
  1573. #: cmdline/apt-extracttemplates.cc
  1574. msgid "Cannot get debconf version. Is debconf installed?"
  1575. msgstr "Nepavyko sužinoti debconf versijos. Ar įdiegtas debconf?"
  1576. #: cmdline/apt-internal-solver.cc
  1577. #, fuzzy
  1578. msgid ""
  1579. "Usage: apt-internal-solver\n"
  1580. "\n"
  1581. "apt-internal-solver is an interface to use the current internal\n"
  1582. "resolver for the APT family like an external one, for debugging or\n"
  1583. "the like.\n"
  1584. msgstr ""
  1585. "Naudojimas: apt-extracttemplates failas1 [failas2 ...]\n"
  1586. "\n"
  1587. "apt-extracttemplates tai įrankis skirtas konfigūracijų, bei šablonų "
  1588. "informacijos išskleidimui\n"
  1589. "iš debian paketų\n"
  1590. "\n"
  1591. "Parametrai:\n"
  1592. " -h Šis pagalbos tekstas\n"
  1593. " -t Nustatyti laikinąjį aplanką\n"
  1594. " -c=? Nuskaityti šį konfigūracijų failą\n"
  1595. " -o=? Nustatyti savarankiškas nuostatas, pvz.: -o dir::cache=/tmp\n"
  1596. #: cmdline/apt-sortpkgs.cc
  1597. msgid "Unknown package record!"
  1598. msgstr "Nežinomas paketo įrašas!"
  1599. #: cmdline/apt-sortpkgs.cc
  1600. msgid ""
  1601. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1602. "\n"
  1603. "apt-sortpkgs is a simple tool to sort package information files.\n"
  1604. "By default it sorts by binary package information, but the -s option\n"
  1605. "can be used to switch to source package ordering instead.\n"
  1606. msgstr ""
  1607. #: ftparchive/apt-ftparchive.cc
  1608. msgid "Package extension list is too long"
  1609. msgstr "Paketo plėtinių sąrašas yra per ilgas"
  1610. #: ftparchive/apt-ftparchive.cc
  1611. #, c-format
  1612. msgid "Error processing directory %s"
  1613. msgstr "Klaida apdorojant aplanką %s"
  1614. #: ftparchive/apt-ftparchive.cc
  1615. msgid "Source extension list is too long"
  1616. msgstr "Šaltinio plėtinys yra per ilgas"
  1617. #: ftparchive/apt-ftparchive.cc
  1618. msgid "Error writing header to contents file"
  1619. msgstr "Klaida įrašant antraštę į turinio failą"
  1620. #: ftparchive/apt-ftparchive.cc
  1621. #, c-format
  1622. msgid "Error processing contents %s"
  1623. msgstr "Klaida apdorojant turinį %s"
  1624. #: ftparchive/apt-ftparchive.cc
  1625. msgid ""
  1626. "Usage: apt-ftparchive [options] command\n"
  1627. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1628. " sources srcpath [overridefile [pathprefix]]\n"
  1629. " contents path\n"
  1630. " release path\n"
  1631. " generate config [groups]\n"
  1632. " clean config\n"
  1633. "\n"
  1634. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1635. "many styles of generation from fully automated to functional replacements\n"
  1636. "for dpkg-scanpackages and dpkg-scansources\n"
  1637. "\n"
  1638. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1639. "Package file contains the contents of all the control fields from\n"
  1640. "each package as well as the MD5 hash and filesize. An override file\n"
  1641. "is supported to force the value of Priority and Section.\n"
  1642. "\n"
  1643. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1644. "The --source-override option can be used to specify a src override file\n"
  1645. "\n"
  1646. "The 'packages' and 'sources' command should be run in the root of the\n"
  1647. "tree. BinaryPath should point to the base of the recursive search and \n"
  1648. "override file should contain the override flags. Pathprefix is\n"
  1649. "appended to the filename fields if present. Example usage from the \n"
  1650. "Debian archive:\n"
  1651. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1652. " dists/potato/main/binary-i386/Packages\n"
  1653. "\n"
  1654. "Options:\n"
  1655. " -h This help text\n"
  1656. " --md5 Control MD5 generation\n"
  1657. " -s=? Source override file\n"
  1658. " -q Quiet\n"
  1659. " -d=? Select the optional caching database\n"
  1660. " --no-delink Enable delinking debug mode\n"
  1661. " --contents Control contents file generation\n"
  1662. " -c=? Read this configuration file\n"
  1663. " -o=? Set an arbitrary configuration option"
  1664. msgstr ""
  1665. "Naudojimas: apt-ftparchive [parametrai] komanda\n"
  1666. "Komandos: dvejatainių paketų kelias [perrašomasfailas [keliopriešdėlis]]\n"
  1667. " sources aplankas [perrašomasfailas [kelippriešdėlis]]\n"
  1668. " contents kelias\n"
  1669. " release kelias\n"
  1670. " generate parametras [grupės]\n"
  1671. " clean parametras\n"
  1672. "\n"
  1673. "apt-ftparchive generuoja indeksų failus, skirtus Debian archyvams. Palaikomi "
  1674. "keli \n"
  1675. "generavimo stiliai, įskaitant nuo pilnai automatizuoto iki funkcinių "
  1676. "pakeitimų\n"
  1677. "skirtų dpkg-scanpackages ir dpkg-scansources\n"
  1678. "\n"
  1679. "apt-ftparchive sugeneruoja paketų failus iš .debs medžio. Paketo failas turi "
  1680. "visus\n"
  1681. "kontrolinius kiekvieno paketo laukus, o taip pat ir MD5 hešą bei failų "
  1682. "dydžius. Perrašomasis\n"
  1683. "failas palaikomas tam, kad būtų priverstinai nustatytos Pirmenybių bei "
  1684. "Sekcijų reikšmės.\n"
  1685. "\n"
  1686. "Panašiai apt-ftparchive sugeneruoja ir Išeities failus iš .dscs medžio.\n"
  1687. "--source-override nuostata gali būti naudojama nustatant išeities "
  1688. "perrašomąjį failą\n"
  1689. "\n"
  1690. "\"Paketų\" bei \"Išeičių\" komandos turėtų būti paleistos failų medžio "
  1691. "šaknyje. BinaryPath turėtų\n"
  1692. "nurodyti kelią į rekursinės paieškos pagrindą bei perrašytas failas turėtų "
  1693. "turėti perrašymo žymes.\n"
  1694. "Keliopriešdėlis tai yra prirašomas prie failo vardų laikų jei tokių yra. "
  1695. "Vartosenos pavyzdys\n"
  1696. "naudojant Debian archyvą:\n"
  1697. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1698. " dists/potato/main/binary-i386/Packages\n"
  1699. "\n"
  1700. "Nuostatos:\n"
  1701. " -h Šis pagalbos tekstas\n"
  1702. " --md5 Valdyti MD5 generavimą\n"
  1703. " -s=? Šaltinio perrašomas failas\n"
  1704. " -q Tylėti\n"
  1705. " -d=? Pasirinkti papildomą kešo duomenų bazę\n"
  1706. " --no-delink Įjungti atjungiamąjį derinimo rėžimą\n"
  1707. " -c=? Perskaityti šį nuostatų failą\n"
  1708. " -o=? Nustatyti savarankišką konfigūracijos nuostatą"
  1709. #: ftparchive/apt-ftparchive.cc
  1710. msgid "No selections matched"
  1711. msgstr "Nėra atitikmenų"
  1712. #: ftparchive/apt-ftparchive.cc
  1713. #, c-format
  1714. msgid "Some files are missing in the package file group `%s'"
  1715. msgstr "Kai kurių failų nėra paketų grupėje „%s“"
  1716. #: ftparchive/cachedb.cc
  1717. #, c-format
  1718. msgid "DB was corrupted, file renamed to %s.old"
  1719. msgstr "Duomenų bazė pažeista, failas pervardintas į %s.old"
  1720. #: ftparchive/cachedb.cc
  1721. #, c-format
  1722. msgid "DB is old, attempting to upgrade %s"
  1723. msgstr "Duomenų bazė yra sena, bandoma atnaujinti %s"
  1724. #: ftparchive/cachedb.cc
  1725. #, fuzzy
  1726. msgid ""
  1727. "DB format is invalid. If you upgraded from an older version of apt, please "
  1728. "remove and re-create the database."
  1729. msgstr ""
  1730. "Duomenų bazės formatas yra netinkamas. Jei jūs atsinaujinote iš senesnės "
  1731. "versijos, prašome pašalinkite ir perkurkite duomenų bazę."
  1732. #: ftparchive/cachedb.cc
  1733. #, c-format
  1734. msgid "Unable to open DB file %s: %s"
  1735. msgstr "Nepavyko atverti DB failo %s: %s"
  1736. #: ftparchive/cachedb.cc apt-inst/extract.cc
  1737. #, c-format
  1738. msgid "Failed to stat %s"
  1739. msgstr "Nepavyko patikrinti %s"
  1740. #: ftparchive/cachedb.cc
  1741. #, fuzzy
  1742. msgid "Failed to read .dsc"
  1743. msgstr "Nepavyko nuskaityti nuorodos %s"
  1744. #: ftparchive/cachedb.cc
  1745. msgid "Archive has no control record"
  1746. msgstr ""
  1747. #: ftparchive/cachedb.cc
  1748. msgid "Unable to get a cursor"
  1749. msgstr ""
  1750. #: ftparchive/contents.cc
  1751. msgid "realloc - Failed to allocate memory"
  1752. msgstr "realloc - Nepavyko išskirti atminties"
  1753. #: ftparchive/multicompress.cc
  1754. #, c-format
  1755. msgid "Unknown compression algorithm '%s'"
  1756. msgstr "Nežinomas suspaudimo algoritmas „%s“"
  1757. #: ftparchive/multicompress.cc
  1758. #, c-format
  1759. msgid "Compressed output %s needs a compression set"
  1760. msgstr "Suspaustai išvesčiai %s reikia suspaudimo rinkinio"
  1761. #: ftparchive/multicompress.cc
  1762. msgid "Failed to fork"
  1763. msgstr ""
  1764. #: ftparchive/multicompress.cc
  1765. msgid "Compress child"
  1766. msgstr ""
  1767. #: ftparchive/multicompress.cc
  1768. #, c-format
  1769. msgid "Internal error, failed to create %s"
  1770. msgstr "Vidinė klaida, nepavyko sukurti %s"
  1771. #: ftparchive/multicompress.cc
  1772. msgid "IO to subprocess/file failed"
  1773. msgstr "Nepavyko Nusk/Įraš į subprocesą/failą"
  1774. #: ftparchive/multicompress.cc
  1775. msgid "Failed to read while computing MD5"
  1776. msgstr "Skaitymo klaida skaičiuojant MD5"
  1777. #: ftparchive/multicompress.cc apt-inst/extract.cc
  1778. #, c-format
  1779. msgid "Failed to rename %s to %s"
  1780. msgstr "Nepavyko pervadinti %s į %s"
  1781. #: ftparchive/override.cc
  1782. #, c-format
  1783. msgid "Unable to open %s"
  1784. msgstr "Nepavyko atverti %s"
  1785. #. skip spaces
  1786. #. find end of word
  1787. #: ftparchive/override.cc
  1788. #, fuzzy, c-format
  1789. msgid "Malformed override %s line %llu (%s)"
  1790. msgstr "Nekorektiškas perrašymas %s eilutėje %lu #1"
  1791. #: ftparchive/override.cc
  1792. #, c-format
  1793. msgid "Failed to read the override file %s"
  1794. msgstr "Nepavyko nuskaityti perrašymo failo %s"
  1795. #: ftparchive/override.cc
  1796. #, fuzzy, c-format
  1797. msgid "Malformed override %s line %llu #1"
  1798. msgstr "Nekorektiškas perrašymas %s eilutėje %lu #1"
  1799. #: ftparchive/override.cc
  1800. #, fuzzy, c-format
  1801. msgid "Malformed override %s line %llu #2"
  1802. msgstr "Nekorektiškas perrašymas %s eilutėje %lu #2"
  1803. #: ftparchive/override.cc
  1804. #, fuzzy, c-format
  1805. msgid "Malformed override %s line %llu #3"
  1806. msgstr "Nekorektiškas perrašymas %s eilutėje %lu #3"
  1807. #: ftparchive/writer.cc
  1808. #, c-format
  1809. msgid "W: Unable to read directory %s\n"
  1810. msgstr "Į: Nepavyko perskaityti aplanko %s\n"
  1811. #: ftparchive/writer.cc
  1812. #, c-format
  1813. msgid "W: Unable to stat %s\n"
  1814. msgstr "Į: Nepavyko patikrinti %s\n"
  1815. #: ftparchive/writer.cc
  1816. msgid "E: "
  1817. msgstr "K: "
  1818. #: ftparchive/writer.cc
  1819. msgid "W: "
  1820. msgstr "Į: "
  1821. #: ftparchive/writer.cc
  1822. msgid "E: Errors apply to file "
  1823. msgstr "K: Klaidos failui "
  1824. #: ftparchive/writer.cc
  1825. #, c-format
  1826. msgid "Failed to resolve %s"
  1827. msgstr "Nepavyko išspręsti %s"
  1828. #: ftparchive/writer.cc
  1829. msgid "Tree walking failed"
  1830. msgstr "Judesys medyje nepavyko"
  1831. #: ftparchive/writer.cc
  1832. #, c-format
  1833. msgid "Failed to open %s"
  1834. msgstr "Nepavyko atverti %s"
  1835. #: ftparchive/writer.cc
  1836. #, c-format
  1837. msgid " DeLink %s [%s]\n"
  1838. msgstr ""
  1839. #: ftparchive/writer.cc
  1840. #, c-format
  1841. msgid "Failed to readlink %s"
  1842. msgstr "Nepavyko nuskaityti nuorodos %s"
  1843. #: ftparchive/writer.cc
  1844. #, c-format
  1845. msgid "*** Failed to link %s to %s"
  1846. msgstr "*** Nepavyko susieti %s su %s"
  1847. #: ftparchive/writer.cc
  1848. #, c-format
  1849. msgid " DeLink limit of %sB hit.\n"
  1850. msgstr ""
  1851. #: ftparchive/writer.cc
  1852. msgid "Archive had no package field"
  1853. msgstr "Archyvas neturėjo paketo lauko"
  1854. #: ftparchive/writer.cc
  1855. #, c-format
  1856. msgid " %s has no override entry\n"
  1857. msgstr " %s neturi perrašymo įrašo\n"
  1858. #: ftparchive/writer.cc
  1859. #, c-format
  1860. msgid " %s maintainer is %s not %s\n"
  1861. msgstr " %s prižiūrėtojas yra %s, o ne %s\n"
  1862. #: ftparchive/writer.cc
  1863. #, c-format
  1864. msgid " %s has no source override entry\n"
  1865. msgstr ""
  1866. #: ftparchive/writer.cc
  1867. #, c-format
  1868. msgid " %s has no binary override entry either\n"
  1869. msgstr ""
  1870. #: apt-inst/contrib/arfile.cc
  1871. msgid "Invalid archive signature"
  1872. msgstr ""
  1873. #: apt-inst/contrib/arfile.cc
  1874. msgid "Error reading archive member header"
  1875. msgstr ""
  1876. #: apt-inst/contrib/arfile.cc
  1877. #, c-format
  1878. msgid "Invalid archive member header %s"
  1879. msgstr ""
  1880. #: apt-inst/contrib/arfile.cc
  1881. msgid "Invalid archive member header"
  1882. msgstr ""
  1883. #: apt-inst/contrib/arfile.cc
  1884. msgid "Archive is too short"
  1885. msgstr "Archyvas per trumpas"
  1886. #: apt-inst/contrib/arfile.cc
  1887. msgid "Failed to read the archive headers"
  1888. msgstr "Nepavyko perskaityti archyvo antraščių"
  1889. #: apt-inst/contrib/extracttar.cc
  1890. #, fuzzy, c-format
  1891. msgid "Cannot find a configured compressor for '%s'"
  1892. msgstr "Nepavyko rasti paketo %s"
  1893. #: apt-inst/contrib/extracttar.cc
  1894. msgid "Corrupted archive"
  1895. msgstr "Sugadintas archyvas"
  1896. #: apt-inst/contrib/extracttar.cc
  1897. msgid "Tar checksum failed, archive corrupted"
  1898. msgstr "Tar kontrolinė suma klaidinga, archyvas sugadintas"
  1899. #: apt-inst/contrib/extracttar.cc
  1900. #, c-format
  1901. msgid "Unknown TAR header type %u, member %s"
  1902. msgstr "Nežinomas TAR antraštės tipas %u. narys %s"
  1903. #: apt-inst/deb/debfile.cc
  1904. #, c-format
  1905. msgid "This is not a valid DEB archive, missing '%s' member"
  1906. msgstr ""
  1907. #: apt-inst/deb/debfile.cc
  1908. #, c-format
  1909. msgid "Internal error, could not locate member %s"
  1910. msgstr "Vidinė klaida, nepavyko aptikti nario %s"
  1911. #: apt-inst/deb/debfile.cc
  1912. msgid "Unparsable control file"
  1913. msgstr ""
  1914. #: apt-inst/dirstream.cc
  1915. #, c-format
  1916. msgid "Failed to write file %s"
  1917. msgstr ""
  1918. #: apt-inst/dirstream.cc
  1919. #, c-format
  1920. msgid "Failed to close file %s"
  1921. msgstr ""
  1922. #: apt-inst/extract.cc
  1923. #, c-format
  1924. msgid "The path %s is too long"
  1925. msgstr "Kelias %s per ilgas"
  1926. #: apt-inst/extract.cc
  1927. #, c-format
  1928. msgid "Unpacking %s more than once"
  1929. msgstr ""
  1930. #: apt-inst/extract.cc
  1931. #, c-format
  1932. msgid "The directory %s is diverted"
  1933. msgstr ""
  1934. #: apt-inst/extract.cc
  1935. #, c-format
  1936. msgid "The package is trying to write to the diversion target %s/%s"
  1937. msgstr ""
  1938. #: apt-inst/extract.cc
  1939. msgid "The diversion path is too long"
  1940. msgstr ""
  1941. #: apt-inst/extract.cc
  1942. #, c-format
  1943. msgid "The directory %s is being replaced by a non-directory"
  1944. msgstr ""
  1945. #: apt-inst/extract.cc
  1946. msgid "Failed to locate node in its hash bucket"
  1947. msgstr ""
  1948. #: apt-inst/extract.cc
  1949. msgid "The path is too long"
  1950. msgstr "Kelias per ilgas"
  1951. #: apt-inst/extract.cc
  1952. #, c-format
  1953. msgid "Overwrite package match with no version for %s"
  1954. msgstr ""
  1955. #: apt-inst/extract.cc
  1956. #, c-format
  1957. msgid "File %s/%s overwrites the one in the package %s"
  1958. msgstr ""
  1959. #: apt-inst/extract.cc
  1960. #, c-format
  1961. msgid "Unable to stat %s"
  1962. msgstr ""
  1963. #: apt-inst/filelist.cc
  1964. msgid "DropNode called on still linked node"
  1965. msgstr ""
  1966. #: apt-inst/filelist.cc
  1967. msgid "Failed to locate the hash element!"
  1968. msgstr ""
  1969. #: apt-inst/filelist.cc
  1970. msgid "Failed to allocate diversion"
  1971. msgstr ""
  1972. #: apt-inst/filelist.cc
  1973. msgid "Internal error in AddDiversion"
  1974. msgstr ""
  1975. #: apt-inst/filelist.cc
  1976. #, c-format
  1977. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1978. msgstr ""
  1979. #: apt-inst/filelist.cc
  1980. #, c-format
  1981. msgid "Double add of diversion %s -> %s"
  1982. msgstr ""
  1983. #: apt-inst/filelist.cc
  1984. #, c-format
  1985. msgid "Duplicate conf file %s/%s"
  1986. msgstr ""
  1987. #: apt-pkg/acquire-item.cc
  1988. msgid ""
  1989. "Updating from such a repository can't be done securely, and is therefore "
  1990. "disabled by default."
  1991. msgstr ""
  1992. #: apt-pkg/acquire-item.cc
  1993. msgid ""
  1994. "Data from such a repository can't be authenticated and is therefore "
  1995. "potentially dangerous to use."
  1996. msgstr ""
  1997. #: apt-pkg/acquire-item.cc
  1998. msgid ""
  1999. "See apt-secure(8) manpage for repository creation and user configuration "
  2000. "details."
  2001. msgstr ""
  2002. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  2003. #, c-format
  2004. msgid "rename failed, %s (%s -> %s)."
  2005. msgstr ""
  2006. #: apt-pkg/acquire-item.cc
  2007. msgid "Hash Sum mismatch"
  2008. msgstr "Maišos sumos nesutapimas"
  2009. #: apt-pkg/acquire-item.cc
  2010. msgid "Size mismatch"
  2011. msgstr "Neatitinka dydžiai"
  2012. #: apt-pkg/acquire-item.cc
  2013. #, fuzzy
  2014. msgid "Invalid file format"
  2015. msgstr "Klaidingas veiksmas %s"
  2016. #: apt-pkg/acquire-item.cc
  2017. #, fuzzy
  2018. msgid "Signature error"
  2019. msgstr "Rašymo klaida"
  2020. #: apt-pkg/acquire-item.cc
  2021. #, c-format
  2022. msgid ""
  2023. "An error occurred during the signature verification. The repository is not "
  2024. "updated and the previous index files will be used. GPG error: %s: %s"
  2025. msgstr ""
  2026. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2027. #: apt-pkg/acquire-item.cc
  2028. #, c-format
  2029. msgid "GPG error: %s: %s"
  2030. msgstr "GPG klaida: %s: %s"
  2031. #: apt-pkg/acquire-item.cc
  2032. #, c-format
  2033. msgid ""
  2034. "Skipping acquire of configured file '%s' as repository '%s' doesn't support "
  2035. "architecture '%s'"
  2036. msgstr ""
  2037. #: apt-pkg/acquire-item.cc
  2038. #, c-format
  2039. msgid ""
  2040. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2041. "or malformed file)"
  2042. msgstr ""
  2043. #: apt-pkg/acquire-item.cc
  2044. #, c-format
  2045. msgid ""
  2046. "Skipping acquire of configured file '%s' as repository '%s' provides only "
  2047. "weak security information for it"
  2048. msgstr ""
  2049. #: apt-pkg/acquire-item.cc
  2050. msgid "There is no public key available for the following key IDs:\n"
  2051. msgstr ""
  2052. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2053. #. the time since then the file is invalid - formatted in the same way as in
  2054. #. the download progress display (e.g. 7d 3h 42min 1s)
  2055. #: apt-pkg/acquire-item.cc
  2056. #, c-format
  2057. msgid ""
  2058. "Release file for %s is expired (invalid since %s). Updates for this "
  2059. "repository will not be applied."
  2060. msgstr ""
  2061. #: apt-pkg/acquire-item.cc
  2062. #, c-format
  2063. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2064. msgstr ""
  2065. #. No Release file was present, or verification failed, so fall
  2066. #. back to queueing Packages files without verification
  2067. #. only allow going further if the user explicitly wants it
  2068. #: apt-pkg/acquire-item.cc
  2069. #, fuzzy, c-format
  2070. msgid "The repository '%s' is not signed."
  2071. msgstr "Kelias %s per ilgas"
  2072. #. No Release file was present so fall
  2073. #. back to queueing Packages files without verification
  2074. #. only allow going further if the user explicitly wants it
  2075. #: apt-pkg/acquire-item.cc
  2076. #, fuzzy, c-format
  2077. msgid "The repository '%s' does not have a Release file."
  2078. msgstr "Kelias %s per ilgas"
  2079. #: apt-pkg/acquire-item.cc
  2080. #, fuzzy, c-format
  2081. msgid "The repository '%s' is no longer signed."
  2082. msgstr "Kelias %s per ilgas"
  2083. #: apt-pkg/acquire-item.cc
  2084. msgid ""
  2085. "This is normally not allowed, but the option Acquire::"
  2086. "AllowDowngradeToInsecureRepositories was given to override it."
  2087. msgstr ""
  2088. #: apt-pkg/acquire-item.cc
  2089. #, c-format
  2090. msgid ""
  2091. "I wasn't able to locate a file for the %s package. This might mean you need "
  2092. "to manually fix this package. (due to missing arch)"
  2093. msgstr ""
  2094. #: apt-pkg/acquire-item.cc
  2095. #, c-format
  2096. msgid "Can't find a source to download version '%s' of '%s'"
  2097. msgstr ""
  2098. #: apt-pkg/acquire-item.cc
  2099. #, c-format
  2100. msgid ""
  2101. "The package index files are corrupted. No Filename: field for package %s."
  2102. msgstr ""
  2103. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  2104. #: apt-pkg/acquire-item.cc
  2105. #, fuzzy, c-format
  2106. msgid "Changelog unavailable for %s=%s"
  2107. msgstr "Jungiamasi prie %s (%s)"
  2108. #: apt-pkg/acquire-worker.cc
  2109. #, c-format
  2110. msgid "The method driver %s could not be found."
  2111. msgstr ""
  2112. #: apt-pkg/acquire-worker.cc
  2113. #, fuzzy, c-format
  2114. msgid "Is the package %s installed?"
  2115. msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n"
  2116. #: apt-pkg/acquire-worker.cc
  2117. #, c-format
  2118. msgid "Method %s did not start correctly"
  2119. msgstr ""
  2120. #: apt-pkg/acquire-worker.cc
  2121. #, fuzzy, c-format
  2122. msgid ""
  2123. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  2124. msgstr "Įdėkite diską „%s“ į įrenginį „%s“ ir paspauskite Enter."
  2125. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  2126. #, fuzzy, c-format
  2127. msgid "List directory %spartial is missing."
  2128. msgstr "Trūksta aplanko „%s“"
  2129. #: apt-pkg/acquire.cc
  2130. #, fuzzy, c-format
  2131. msgid "Archives directory %spartial is missing."
  2132. msgstr "Trūksta aplanko „%s“"
  2133. #: apt-pkg/acquire.cc
  2134. #, fuzzy, c-format
  2135. msgid "Unable to lock directory %s"
  2136. msgstr "Nepavyko užrakinti sąrašo aplanko"
  2137. #: apt-pkg/acquire.cc
  2138. #, c-format
  2139. msgid "No sandbox user '%s' on the system, can not drop privileges"
  2140. msgstr ""
  2141. #: apt-pkg/acquire.cc
  2142. #, c-format
  2143. msgid ""
  2144. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  2145. "user '%s'."
  2146. msgstr ""
  2147. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  2148. #, c-format
  2149. msgid "Clean of %s is not supported"
  2150. msgstr ""
  2151. #. only show the ETA if it makes sense
  2152. #. two days
  2153. #: apt-pkg/acquire.cc
  2154. #, c-format
  2155. msgid "Retrieving file %li of %li (%s remaining)"
  2156. msgstr "Parsiunčiamas %li failas iš %li (liko %s)"
  2157. #: apt-pkg/acquire.cc
  2158. #, c-format
  2159. msgid "Retrieving file %li of %li"
  2160. msgstr "Parsiunčiamas %li failas iš %li"
  2161. #: apt-pkg/algorithms.cc
  2162. #, c-format
  2163. msgid ""
  2164. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2165. msgstr ""
  2166. #: apt-pkg/algorithms.cc
  2167. msgid ""
  2168. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2169. "held packages."
  2170. msgstr ""
  2171. #: apt-pkg/algorithms.cc
  2172. msgid "Unable to correct problems, you have held broken packages."
  2173. msgstr ""
  2174. #: apt-pkg/cachefile.cc
  2175. msgid "The package lists or status file could not be parsed or opened."
  2176. msgstr "Nepavyko perskaityti arba atverti paketų sąrašo arba būklės failo."
  2177. #: apt-pkg/cachefile.cc
  2178. msgid "You may want to run apt-get update to correct these problems"
  2179. msgstr ""
  2180. "Greičiausiai norėsite paleisti „apt-get update“, kad šios problemos būtų "
  2181. "ištaisytos"
  2182. #: apt-pkg/cachefile.cc
  2183. msgid "The list of sources could not be read."
  2184. msgstr "Nepavyko perskaityti šaltinių sąrašo."
  2185. #: apt-pkg/cacheset.cc
  2186. #, c-format
  2187. msgid "Release '%s' for '%s' was not found"
  2188. msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“"
  2189. #: apt-pkg/cacheset.cc
  2190. #, c-format
  2191. msgid "Version '%s' for '%s' was not found"
  2192. msgstr "Nebuvo rasta „%s“ versija paketui „%s“"
  2193. #: apt-pkg/cacheset.cc
  2194. #, fuzzy, c-format
  2195. msgid "Couldn't find task '%s'"
  2196. msgstr "Nepavyko rasti užduoties %s"
  2197. #: apt-pkg/cacheset.cc
  2198. #, fuzzy, c-format
  2199. msgid "Couldn't find any package by regex '%s'"
  2200. msgstr "Nepavyko rasti paketo %s"
  2201. #: apt-pkg/cacheset.cc
  2202. #, fuzzy, c-format
  2203. msgid "Couldn't find any package by glob '%s'"
  2204. msgstr "Nepavyko rasti paketo %s"
  2205. #: apt-pkg/cacheset.cc
  2206. #, c-format
  2207. msgid "Can't select versions from package '%s' as it is purely virtual"
  2208. msgstr ""
  2209. #: apt-pkg/cacheset.cc
  2210. #, c-format
  2211. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2212. msgstr ""
  2213. #: apt-pkg/cacheset.cc
  2214. #, c-format
  2215. msgid "Can't select candidate version from package %s as it has no candidate"
  2216. msgstr ""
  2217. #: apt-pkg/cacheset.cc
  2218. #, c-format
  2219. msgid "Can't select installed version from package %s as it is not installed"
  2220. msgstr ""
  2221. #: apt-pkg/cacheset.cc
  2222. #, c-format
  2223. msgid ""
  2224. "Can't select installed nor candidate version from package '%s' as it has "
  2225. "neither of them"
  2226. msgstr ""
  2227. #: apt-pkg/cdrom.cc
  2228. #, c-format
  2229. msgid "Line %u too long in source list %s."
  2230. msgstr ""
  2231. #: apt-pkg/cdrom.cc
  2232. msgid "Unmounting CD-ROM...\n"
  2233. msgstr "Atjungiamas CD-ROM...\n"
  2234. #: apt-pkg/cdrom.cc
  2235. #, c-format
  2236. msgid "Using CD-ROM mount point %s\n"
  2237. msgstr "Naudojama CD-ROM prijungimo vieta %s\n"
  2238. #: apt-pkg/cdrom.cc
  2239. msgid "Waiting for disc...\n"
  2240. msgstr "Laukiama disko...\n"
  2241. #: apt-pkg/cdrom.cc
  2242. msgid "Mounting CD-ROM...\n"
  2243. msgstr "Prijungiamas CD-ROM...\n"
  2244. #: apt-pkg/cdrom.cc
  2245. msgid "Identifying... "
  2246. msgstr "Identifikuojama... "
  2247. #: apt-pkg/cdrom.cc
  2248. #, c-format
  2249. msgid "Stored label: %s\n"
  2250. msgstr ""
  2251. #: apt-pkg/cdrom.cc
  2252. msgid "Scanning disc for index files...\n"
  2253. msgstr ""
  2254. #: apt-pkg/cdrom.cc
  2255. #, c-format
  2256. msgid ""
  2257. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2258. "%zu signatures\n"
  2259. msgstr ""
  2260. #: apt-pkg/cdrom.cc
  2261. msgid ""
  2262. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2263. "wrong architecture?"
  2264. msgstr ""
  2265. #: apt-pkg/cdrom.cc
  2266. #, c-format
  2267. msgid "Found label '%s'\n"
  2268. msgstr "Rasta žymė „%s“\n"
  2269. #: apt-pkg/cdrom.cc
  2270. msgid "That is not a valid name, try again.\n"
  2271. msgstr ""
  2272. #: apt-pkg/cdrom.cc
  2273. #, c-format
  2274. msgid ""
  2275. "This disc is called: \n"
  2276. "'%s'\n"
  2277. msgstr ""
  2278. "Šio disko pavadinimas: \n"
  2279. "„%s“\n"
  2280. #: apt-pkg/cdrom.cc
  2281. msgid "Copying package lists..."
  2282. msgstr "Kopijuojami paketų sąrašai..."
  2283. #: apt-pkg/cdrom.cc
  2284. msgid "Writing new source list\n"
  2285. msgstr "Rašomas naujas šaltinių sąrašas\n"
  2286. #: apt-pkg/cdrom.cc
  2287. msgid "Source list entries for this disc are:\n"
  2288. msgstr ""
  2289. #: apt-pkg/clean.cc
  2290. #, c-format
  2291. msgid "Unable to stat %s."
  2292. msgstr ""
  2293. #: apt-pkg/contrib/cdromutl.cc
  2294. #, c-format
  2295. msgid "Unable to stat the mount point %s"
  2296. msgstr ""
  2297. #: apt-pkg/contrib/cdromutl.cc
  2298. msgid "Failed to stat the cdrom"
  2299. msgstr ""
  2300. #: apt-pkg/contrib/cmndline.cc
  2301. #, c-format
  2302. msgid ""
  2303. "Command line option '%c' [from %s] is not understood in combination with the "
  2304. "other options."
  2305. msgstr ""
  2306. #: apt-pkg/contrib/cmndline.cc
  2307. #, c-format
  2308. msgid ""
  2309. "Command line option %s is not understood in combination with the other "
  2310. "options"
  2311. msgstr ""
  2312. #: apt-pkg/contrib/cmndline.cc
  2313. #, c-format
  2314. msgid "Command line option %s is not boolean"
  2315. msgstr ""
  2316. #: apt-pkg/contrib/cmndline.cc
  2317. #, c-format
  2318. msgid "Option %s requires an argument."
  2319. msgstr "Parametrui %s reikia argumento."
  2320. #: apt-pkg/contrib/cmndline.cc
  2321. #, c-format
  2322. msgid "Option %s: Configuration item specification must have an =<val>."
  2323. msgstr ""
  2324. #: apt-pkg/contrib/cmndline.cc
  2325. #, c-format
  2326. msgid "Option %s requires an integer argument, not '%s'"
  2327. msgstr ""
  2328. #: apt-pkg/contrib/cmndline.cc
  2329. #, c-format
  2330. msgid "Option '%s' is too long"
  2331. msgstr ""
  2332. #: apt-pkg/contrib/cmndline.cc
  2333. #, c-format
  2334. msgid "Sense %s is not understood, try true or false."
  2335. msgstr ""
  2336. #: apt-pkg/contrib/cmndline.cc
  2337. #, c-format
  2338. msgid "Invalid operation %s"
  2339. msgstr "Klaidingas veiksmas %s"
  2340. #: apt-pkg/contrib/configuration.cc
  2341. #, c-format
  2342. msgid "Unrecognized type abbreviation: '%c'"
  2343. msgstr ""
  2344. #: apt-pkg/contrib/configuration.cc
  2345. #, c-format
  2346. msgid "Opening configuration file %s"
  2347. msgstr ""
  2348. #: apt-pkg/contrib/configuration.cc
  2349. #, c-format
  2350. msgid "Syntax error %s:%u: Block starts with no name."
  2351. msgstr ""
  2352. #: apt-pkg/contrib/configuration.cc
  2353. #, c-format
  2354. msgid "Syntax error %s:%u: Malformed tag"
  2355. msgstr ""
  2356. #: apt-pkg/contrib/configuration.cc
  2357. #, c-format
  2358. msgid "Syntax error %s:%u: Extra junk after value"
  2359. msgstr ""
  2360. #: apt-pkg/contrib/configuration.cc
  2361. #, c-format
  2362. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2363. msgstr ""
  2364. #: apt-pkg/contrib/configuration.cc
  2365. #, c-format
  2366. msgid "Syntax error %s:%u: Too many nested includes"
  2367. msgstr ""
  2368. #: apt-pkg/contrib/configuration.cc
  2369. #, c-format
  2370. msgid "Syntax error %s:%u: Included from here"
  2371. msgstr ""
  2372. #: apt-pkg/contrib/configuration.cc
  2373. #, c-format
  2374. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2375. msgstr ""
  2376. #: apt-pkg/contrib/configuration.cc
  2377. #, c-format
  2378. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2379. msgstr ""
  2380. #: apt-pkg/contrib/configuration.cc
  2381. #, c-format
  2382. msgid "Syntax error %s:%u: Extra junk at end of file"
  2383. msgstr ""
  2384. #: apt-pkg/contrib/fileutl.cc
  2385. #, fuzzy, c-format
  2386. msgid "Problem unlinking the file %s"
  2387. msgstr "Klaida užveriant failą"
  2388. #: apt-pkg/contrib/fileutl.cc
  2389. #, c-format
  2390. msgid "Not using locking for read only lock file %s"
  2391. msgstr ""
  2392. #: apt-pkg/contrib/fileutl.cc
  2393. #, c-format
  2394. msgid "Could not open lock file %s"
  2395. msgstr "Nepavyko atverti rakinimo failo %s"
  2396. #: apt-pkg/contrib/fileutl.cc
  2397. #, c-format
  2398. msgid "Not using locking for nfs mounted lock file %s"
  2399. msgstr ""
  2400. #: apt-pkg/contrib/fileutl.cc
  2401. #, c-format
  2402. msgid "Could not get lock %s"
  2403. msgstr "Nepavyko rezervuoti rakinimo failo %s"
  2404. #: apt-pkg/contrib/fileutl.cc
  2405. #, c-format
  2406. msgid "List of files can't be created as '%s' is not a directory"
  2407. msgstr ""
  2408. #: apt-pkg/contrib/fileutl.cc
  2409. #, c-format
  2410. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2411. msgstr ""
  2412. #: apt-pkg/contrib/fileutl.cc
  2413. #, c-format
  2414. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2415. msgstr ""
  2416. #: apt-pkg/contrib/fileutl.cc
  2417. #, c-format
  2418. msgid ""
  2419. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2420. msgstr ""
  2421. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  2422. #, c-format
  2423. msgid "Waited for %s but it wasn't there"
  2424. msgstr ""
  2425. #: apt-pkg/contrib/fileutl.cc
  2426. #, c-format
  2427. msgid "Sub-process %s received a segmentation fault."
  2428. msgstr "Procesas %s gavo segmentavimo klaidą"
  2429. #: apt-pkg/contrib/fileutl.cc
  2430. #, fuzzy, c-format
  2431. msgid "Sub-process %s received signal %u."
  2432. msgstr "Procesas %s gavo segmentavimo klaidą"
  2433. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2434. #, c-format
  2435. msgid "Sub-process %s returned an error code (%u)"
  2436. msgstr "Procesas %s grąžino klaidos kodą (%u)"
  2437. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2438. #, c-format
  2439. msgid "Sub-process %s exited unexpectedly"
  2440. msgstr "Procesas %s netikėtai išėjo"
  2441. #: apt-pkg/contrib/fileutl.cc
  2442. #, fuzzy, c-format
  2443. msgid "Problem closing the gzip file %s"
  2444. msgstr "Klaida užveriant failą"
  2445. #: apt-pkg/contrib/fileutl.cc
  2446. msgid "Failed to create subprocess IPC"
  2447. msgstr "Nepavyko sukurti subproceso IPC"
  2448. #: apt-pkg/contrib/fileutl.cc
  2449. msgid "Failed to exec compressor "
  2450. msgstr "Nepavyko paleisti suspaudėjo "
  2451. #: apt-pkg/contrib/fileutl.cc
  2452. #, c-format
  2453. msgid "Could not open file %s"
  2454. msgstr "Nepavyko atverti failo %s"
  2455. #: apt-pkg/contrib/fileutl.cc
  2456. #, fuzzy, c-format
  2457. msgid "Could not open file descriptor %d"
  2458. msgstr "Nepavyko atverti failo %s"
  2459. #: apt-pkg/contrib/fileutl.cc
  2460. #, c-format
  2461. msgid "read, still have %llu to read but none left"
  2462. msgstr ""
  2463. #: apt-pkg/contrib/fileutl.cc
  2464. #, c-format
  2465. msgid "write, still have %llu to write but couldn't"
  2466. msgstr ""
  2467. #: apt-pkg/contrib/fileutl.cc
  2468. #, fuzzy, c-format
  2469. msgid "Problem closing the file %s"
  2470. msgstr "Klaida užveriant failą"
  2471. #: apt-pkg/contrib/fileutl.cc
  2472. #, fuzzy, c-format
  2473. msgid "Problem renaming the file %s to %s"
  2474. msgstr "Klaida sinchronizuojant failą"
  2475. #: apt-pkg/contrib/fileutl.cc
  2476. msgid "Problem syncing the file"
  2477. msgstr "Klaida sinchronizuojant failą"
  2478. #: apt-pkg/contrib/mmap.cc
  2479. msgid "Can't mmap an empty file"
  2480. msgstr ""
  2481. #: apt-pkg/contrib/mmap.cc
  2482. #, c-format
  2483. msgid "Couldn't make mmap of %llu bytes"
  2484. msgstr ""
  2485. #: apt-pkg/contrib/mmap.cc
  2486. #, c-format
  2487. msgid "Couldn't duplicate file descriptor %i"
  2488. msgstr ""
  2489. #: apt-pkg/contrib/mmap.cc
  2490. #, fuzzy
  2491. msgid "Unable to close mmap"
  2492. msgstr "Nepavyko atverti %s"
  2493. #: apt-pkg/contrib/mmap.cc
  2494. #, fuzzy
  2495. msgid "Unable to synchronize mmap"
  2496. msgstr "Nepavyko pakeisti į %s"
  2497. #: apt-pkg/contrib/mmap.cc
  2498. #, c-format
  2499. msgid "Couldn't make mmap of %lu bytes"
  2500. msgstr ""
  2501. #: apt-pkg/contrib/mmap.cc
  2502. #, fuzzy
  2503. msgid "Failed to truncate file"
  2504. msgstr "Nepavyko patikrinti %s"
  2505. #: apt-pkg/contrib/mmap.cc
  2506. #, c-format
  2507. msgid ""
  2508. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2509. "Current value: %lu. (man 5 apt.conf)"
  2510. msgstr ""
  2511. #: apt-pkg/contrib/mmap.cc
  2512. #, c-format
  2513. msgid ""
  2514. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2515. "reached."
  2516. msgstr ""
  2517. #: apt-pkg/contrib/mmap.cc
  2518. msgid ""
  2519. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2520. msgstr ""
  2521. #: apt-pkg/contrib/progress.cc
  2522. #, c-format
  2523. msgid "%c%s... Error!"
  2524. msgstr "%c%s... Klaida!"
  2525. #: apt-pkg/contrib/progress.cc
  2526. #, c-format
  2527. msgid "%c%s... Done"
  2528. msgstr "%c%s... Baigta"
  2529. #: apt-pkg/contrib/progress.cc
  2530. msgid "..."
  2531. msgstr ""
  2532. #. Print the spinner
  2533. #: apt-pkg/contrib/progress.cc
  2534. #, fuzzy, c-format
  2535. msgid "%c%s... %u%%"
  2536. msgstr "%c%s... Baigta"
  2537. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2538. #: apt-pkg/contrib/strutl.cc
  2539. #, c-format
  2540. msgid "%lid %lih %limin %lis"
  2541. msgstr ""
  2542. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2543. #: apt-pkg/contrib/strutl.cc
  2544. #, c-format
  2545. msgid "%lih %limin %lis"
  2546. msgstr ""
  2547. #. TRANSLATOR: min means minutes, s means seconds
  2548. #: apt-pkg/contrib/strutl.cc
  2549. #, c-format
  2550. msgid "%limin %lis"
  2551. msgstr ""
  2552. #. TRANSLATOR: s means seconds
  2553. #: apt-pkg/contrib/strutl.cc
  2554. #, c-format
  2555. msgid "%lis"
  2556. msgstr ""
  2557. #: apt-pkg/contrib/strutl.cc
  2558. #, c-format
  2559. msgid "Selection %s not found"
  2560. msgstr ""
  2561. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2562. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2563. #. filename and linenumber of the sources.list entry currently parsed
  2564. #: apt-pkg/deb/debmetaindex.cc
  2565. #, c-format
  2566. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2567. msgstr ""
  2568. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2569. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2570. #. two sources.list entries
  2571. #: apt-pkg/deb/debmetaindex.cc
  2572. #, c-format
  2573. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2574. msgstr ""
  2575. #: apt-pkg/deb/debmetaindex.cc
  2576. #, fuzzy, c-format
  2577. msgid "Unable to parse Release file %s"
  2578. msgstr "Nepavyko atverti DB failo %s: %s"
  2579. #: apt-pkg/deb/debmetaindex.cc
  2580. #, fuzzy, c-format
  2581. msgid "No sections in Release file %s"
  2582. msgstr "Pastaba: pažymimas %s vietoje %s\n"
  2583. #: apt-pkg/deb/debmetaindex.cc
  2584. #, c-format
  2585. msgid "No Hash entry in Release file %s"
  2586. msgstr ""
  2587. #: apt-pkg/deb/debmetaindex.cc
  2588. #, c-format
  2589. msgid ""
  2590. "No Hash entry in Release file %s, which is considered strong enough for "
  2591. "security purposes"
  2592. msgstr ""
  2593. #: apt-pkg/deb/debmetaindex.cc
  2594. #, fuzzy, c-format
  2595. msgid "Invalid 'Date' entry in Release file %s"
  2596. msgstr "Nepavyko atverti DB failo %s: %s"
  2597. #: apt-pkg/deb/debmetaindex.cc
  2598. #, fuzzy, c-format
  2599. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2600. msgstr "Pastaba: pažymimas %s vietoje %s\n"
  2601. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2602. #: apt-pkg/deb/debmetaindex.cc
  2603. #, c-format
  2604. msgid "Conflicting values set for option %s regarding source %s %s"
  2605. msgstr ""
  2606. #: apt-pkg/deb/debmetaindex.cc
  2607. #, c-format
  2608. msgid "Invalid value set for option %s regarding source %s %s (%s)"
  2609. msgstr ""
  2610. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  2611. #, c-format
  2612. msgid "Unable to parse package file %s (%d)"
  2613. msgstr ""
  2614. #: apt-pkg/deb/debsystem.cc
  2615. #, c-format
  2616. msgid ""
  2617. "Unable to lock the administration directory (%s), is another process using "
  2618. "it?"
  2619. msgstr ""
  2620. #: apt-pkg/deb/debsystem.cc
  2621. #, fuzzy, c-format
  2622. msgid "Unable to lock the administration directory (%s), are you root?"
  2623. msgstr "Nepavyko užrakinti sąrašo aplanko"
  2624. #. TRANSLATORS: the %s contains the recovery command, usually
  2625. #. dpkg --configure -a
  2626. #: apt-pkg/deb/debsystem.cc
  2627. #, c-format
  2628. msgid ""
  2629. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2630. msgstr ""
  2631. #: apt-pkg/deb/debsystem.cc
  2632. msgid "Not locked"
  2633. msgstr ""
  2634. #: apt-pkg/deb/dpkgpm.cc
  2635. #, fuzzy, c-format
  2636. msgid "Installing %s"
  2637. msgstr "Įdiegta %s"
  2638. #: apt-pkg/deb/dpkgpm.cc
  2639. #, c-format
  2640. msgid "Configuring %s"
  2641. msgstr "Konfigūruojamas %s"
  2642. #: apt-pkg/deb/dpkgpm.cc
  2643. #, c-format
  2644. msgid "Removing %s"
  2645. msgstr "Šalinamas %s"
  2646. #: apt-pkg/deb/dpkgpm.cc
  2647. #, fuzzy, c-format
  2648. msgid "Completely removing %s"
  2649. msgstr "Visiškai pašalintas %s"
  2650. #: apt-pkg/deb/dpkgpm.cc
  2651. #, c-format
  2652. msgid "Noting disappearance of %s"
  2653. msgstr ""
  2654. #: apt-pkg/deb/dpkgpm.cc
  2655. #, c-format
  2656. msgid "Running post-installation trigger %s"
  2657. msgstr ""
  2658. #. FIXME: use a better string after freeze
  2659. #: apt-pkg/deb/dpkgpm.cc
  2660. #, c-format
  2661. msgid "Directory '%s' missing"
  2662. msgstr "Trūksta aplanko „%s“"
  2663. #: apt-pkg/deb/dpkgpm.cc
  2664. #, fuzzy, c-format
  2665. msgid "Could not open file '%s'"
  2666. msgstr "Nepavyko atverti failo %s"
  2667. #: apt-pkg/deb/dpkgpm.cc
  2668. #, c-format
  2669. msgid "Preparing %s"
  2670. msgstr "Ruošiamas %s"
  2671. #: apt-pkg/deb/dpkgpm.cc
  2672. #, c-format
  2673. msgid "Unpacking %s"
  2674. msgstr "Išpakuojamas %s"
  2675. #: apt-pkg/deb/dpkgpm.cc
  2676. #, c-format
  2677. msgid "Preparing to configure %s"
  2678. msgstr "Ruošiamasi konfigūruoti %s"
  2679. #: apt-pkg/deb/dpkgpm.cc
  2680. #, c-format
  2681. msgid "Installed %s"
  2682. msgstr "Įdiegta %s"
  2683. #: apt-pkg/deb/dpkgpm.cc
  2684. #, c-format
  2685. msgid "Preparing for removal of %s"
  2686. msgstr "Ruošiamasi %s pašalinimui"
  2687. #: apt-pkg/deb/dpkgpm.cc
  2688. #, c-format
  2689. msgid "Removed %s"
  2690. msgstr "Pašalintas %s"
  2691. #: apt-pkg/deb/dpkgpm.cc
  2692. #, c-format
  2693. msgid "Preparing to completely remove %s"
  2694. msgstr "Ruošiamasi visiškai pašalinti %s"
  2695. #: apt-pkg/deb/dpkgpm.cc
  2696. #, c-format
  2697. msgid "Completely removed %s"
  2698. msgstr "Visiškai pašalintas %s"
  2699. #: apt-pkg/deb/dpkgpm.cc
  2700. #, fuzzy, c-format
  2701. msgid "Can not write log (%s)"
  2702. msgstr "Nepavyko įrašyti į %s"
  2703. #: apt-pkg/deb/dpkgpm.cc
  2704. msgid "Is /dev/pts mounted?"
  2705. msgstr ""
  2706. #: apt-pkg/deb/dpkgpm.cc
  2707. msgid "Operation was interrupted before it could finish"
  2708. msgstr ""
  2709. #: apt-pkg/deb/dpkgpm.cc
  2710. msgid "No apport report written because MaxReports is reached already"
  2711. msgstr ""
  2712. #. check if its not a follow up error
  2713. #: apt-pkg/deb/dpkgpm.cc
  2714. msgid "dependency problems - leaving unconfigured"
  2715. msgstr ""
  2716. #: apt-pkg/deb/dpkgpm.cc
  2717. msgid ""
  2718. "No apport report written because the error message indicates its a followup "
  2719. "error from a previous failure."
  2720. msgstr ""
  2721. #: apt-pkg/deb/dpkgpm.cc
  2722. msgid ""
  2723. "No apport report written because the error message indicates a disk full "
  2724. "error"
  2725. msgstr ""
  2726. #: apt-pkg/deb/dpkgpm.cc
  2727. msgid ""
  2728. "No apport report written because the error message indicates a out of memory "
  2729. "error"
  2730. msgstr ""
  2731. #: apt-pkg/deb/dpkgpm.cc
  2732. msgid ""
  2733. "No apport report written because the error message indicates an issue on the "
  2734. "local system"
  2735. msgstr ""
  2736. #: apt-pkg/deb/dpkgpm.cc
  2737. msgid ""
  2738. "No apport report written because the error message indicates a dpkg I/O error"
  2739. msgstr ""
  2740. #: apt-pkg/depcache.cc
  2741. msgid "Building dependency tree"
  2742. msgstr "Konstruojamas priklausomybių medis"
  2743. #: apt-pkg/depcache.cc
  2744. msgid "Candidate versions"
  2745. msgstr "Galimos versijos"
  2746. #: apt-pkg/depcache.cc
  2747. msgid "Dependency generation"
  2748. msgstr "Priklausomybių generavimas"
  2749. #: apt-pkg/depcache.cc
  2750. msgid "Reading state information"
  2751. msgstr "Skaitoma būsenos informacija"
  2752. #: apt-pkg/depcache.cc
  2753. #, c-format
  2754. msgid "Failed to open StateFile %s"
  2755. msgstr ""
  2756. #: apt-pkg/depcache.cc
  2757. #, c-format
  2758. msgid "Failed to write temporary StateFile %s"
  2759. msgstr ""
  2760. #: apt-pkg/edsp.cc
  2761. msgid "Send scenario to solver"
  2762. msgstr ""
  2763. #: apt-pkg/edsp.cc
  2764. msgid "Send request to solver"
  2765. msgstr ""
  2766. #: apt-pkg/edsp.cc
  2767. msgid "Prepare for receiving solution"
  2768. msgstr ""
  2769. #: apt-pkg/edsp.cc
  2770. msgid "External solver failed without a proper error message"
  2771. msgstr ""
  2772. #: apt-pkg/edsp.cc
  2773. msgid "Execute external solver"
  2774. msgstr ""
  2775. #: apt-pkg/indexcopy.cc
  2776. #, c-format
  2777. msgid "Wrote %i records.\n"
  2778. msgstr ""
  2779. #: apt-pkg/indexcopy.cc
  2780. #, c-format
  2781. msgid "Wrote %i records with %i missing files.\n"
  2782. msgstr ""
  2783. #: apt-pkg/indexcopy.cc
  2784. #, c-format
  2785. msgid "Wrote %i records with %i mismatched files\n"
  2786. msgstr ""
  2787. #: apt-pkg/indexcopy.cc
  2788. #, c-format
  2789. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2790. msgstr ""
  2791. #: apt-pkg/indexcopy.cc
  2792. #, c-format
  2793. msgid "Can't find authentication record for: %s"
  2794. msgstr ""
  2795. #: apt-pkg/indexcopy.cc
  2796. #, fuzzy, c-format
  2797. msgid "Hash mismatch for: %s"
  2798. msgstr "Maišos sumos nesutapimas"
  2799. #: apt-pkg/init.cc
  2800. #, c-format
  2801. msgid "Packaging system '%s' is not supported"
  2802. msgstr ""
  2803. #: apt-pkg/init.cc
  2804. msgid "Unable to determine a suitable packaging system type"
  2805. msgstr ""
  2806. #: apt-pkg/install-progress.cc
  2807. #, c-format
  2808. msgid "Progress: [%3i%%]"
  2809. msgstr ""
  2810. #: apt-pkg/install-progress.cc
  2811. msgid "Running dpkg"
  2812. msgstr ""
  2813. #: apt-pkg/packagemanager.cc
  2814. #, c-format
  2815. msgid ""
  2816. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2817. "under APT::Immediate-Configure for details. (%d)"
  2818. msgstr ""
  2819. #: apt-pkg/packagemanager.cc
  2820. #, fuzzy, c-format
  2821. msgid "Could not configure '%s'. "
  2822. msgstr "Nepavyko atverti failo %s"
  2823. #: apt-pkg/packagemanager.cc
  2824. #, c-format
  2825. msgid ""
  2826. "This installation run will require temporarily removing the essential "
  2827. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2828. "you really want to do it, activate the APT::Force-LoopBreak option."
  2829. msgstr ""
  2830. #: apt-pkg/pkgcache.cc
  2831. msgid "Empty package cache"
  2832. msgstr ""
  2833. #: apt-pkg/pkgcache.cc
  2834. msgid "The package cache file is corrupted"
  2835. msgstr ""
  2836. #: apt-pkg/pkgcache.cc
  2837. msgid "The package cache file is an incompatible version"
  2838. msgstr ""
  2839. #: apt-pkg/pkgcache.cc
  2840. #, c-format
  2841. msgid "This APT does not support the versioning system '%s'"
  2842. msgstr ""
  2843. #: apt-pkg/pkgcache.cc
  2844. #, c-format
  2845. msgid "The package cache was built for different architectures: %s vs %s"
  2846. msgstr ""
  2847. #: apt-pkg/pkgcache.cc
  2848. msgid "The package cache file is corrupted, it has the wrong hash"
  2849. msgstr ""
  2850. #: apt-pkg/pkgcache.cc
  2851. msgid "Depends"
  2852. msgstr "Priklauso"
  2853. #: apt-pkg/pkgcache.cc
  2854. msgid "PreDepends"
  2855. msgstr "Priešpriklauso"
  2856. #: apt-pkg/pkgcache.cc
  2857. msgid "Suggests"
  2858. msgstr "Siūlo"
  2859. #: apt-pkg/pkgcache.cc
  2860. msgid "Recommends"
  2861. msgstr "Rekomenduoja"
  2862. #: apt-pkg/pkgcache.cc
  2863. msgid "Conflicts"
  2864. msgstr "Konfliktuoja"
  2865. #: apt-pkg/pkgcache.cc
  2866. msgid "Replaces"
  2867. msgstr "Pakeičia"
  2868. #: apt-pkg/pkgcache.cc
  2869. msgid "Obsoletes"
  2870. msgstr "Pakeičia"
  2871. #: apt-pkg/pkgcache.cc
  2872. msgid "Breaks"
  2873. msgstr "Sugadina"
  2874. #: apt-pkg/pkgcache.cc
  2875. msgid "Enhances"
  2876. msgstr ""
  2877. #: apt-pkg/pkgcache.cc
  2878. msgid "required"
  2879. msgstr "privaloma"
  2880. #: apt-pkg/pkgcache.cc
  2881. msgid "important"
  2882. msgstr "Svarbu"
  2883. #: apt-pkg/pkgcache.cc
  2884. msgid "standard"
  2885. msgstr "standartinis"
  2886. #: apt-pkg/pkgcache.cc
  2887. msgid "optional"
  2888. msgstr "nebūtinas"
  2889. #: apt-pkg/pkgcache.cc
  2890. msgid "extra"
  2891. msgstr "papildomas"
  2892. #: apt-pkg/pkgcachegen.cc
  2893. msgid "Cache has an incompatible versioning system"
  2894. msgstr ""
  2895. #. TRANSLATOR: The first placeholder is a package name,
  2896. #. the other two should be copied verbatim as they include debug info
  2897. #: apt-pkg/pkgcachegen.cc
  2898. #, fuzzy, c-format
  2899. msgid "Error occurred while processing %s (%s%d)"
  2900. msgstr "Klaida apdorojant turinį %s"
  2901. #: apt-pkg/pkgcachegen.cc
  2902. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2903. msgstr ""
  2904. #: apt-pkg/pkgcachegen.cc
  2905. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2906. msgstr ""
  2907. #: apt-pkg/pkgcachegen.cc
  2908. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2909. msgstr ""
  2910. #: apt-pkg/pkgcachegen.cc
  2911. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2912. msgstr ""
  2913. #: apt-pkg/pkgcachegen.cc
  2914. msgid "Reading package lists"
  2915. msgstr "Skaitomi paketų sąrašai"
  2916. #: apt-pkg/pkgcachegen.cc
  2917. msgid "IO Error saving source cache"
  2918. msgstr ""
  2919. #: apt-pkg/pkgrecords.cc
  2920. #, c-format
  2921. msgid "Index file type '%s' is not supported"
  2922. msgstr ""
  2923. #: apt-pkg/policy.cc
  2924. #, c-format
  2925. msgid ""
  2926. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2927. "available in the sources"
  2928. msgstr ""
  2929. #: apt-pkg/policy.cc
  2930. #, c-format
  2931. msgid "Invalid record in the preferences file %s, no Package header"
  2932. msgstr ""
  2933. #: apt-pkg/policy.cc
  2934. #, c-format
  2935. msgid "Did not understand pin type %s"
  2936. msgstr ""
  2937. #: apt-pkg/policy.cc
  2938. #, c-format
  2939. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  2940. msgstr ""
  2941. #: apt-pkg/policy.cc
  2942. msgid "No priority (or zero) specified for pin"
  2943. msgstr ""
  2944. #. 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
  2945. #: apt-pkg/sourcelist.cc
  2946. #, fuzzy, c-format
  2947. msgid "Malformed entry %u in %s file %s (%s)"
  2948. msgstr "Nekorektiškas perrašymas %s eilutėje %lu #1"
  2949. #: apt-pkg/sourcelist.cc
  2950. #, c-format
  2951. msgid "Opening %s"
  2952. msgstr "Atveriama %s"
  2953. #: apt-pkg/sourcelist.cc
  2954. #, c-format
  2955. msgid "Malformed line %u in source list %s (type)"
  2956. msgstr ""
  2957. #: apt-pkg/sourcelist.cc
  2958. #, c-format
  2959. msgid "Type '%s' is not known on line %u in source list %s"
  2960. msgstr ""
  2961. #: apt-pkg/sourcelist.cc
  2962. #, c-format
  2963. msgid "Malformed stanza %u in source list %s (type)"
  2964. msgstr ""
  2965. #: apt-pkg/sourcelist.cc
  2966. #, c-format
  2967. msgid "Type '%s' is not known on stanza %u in source list %s"
  2968. msgstr ""
  2969. #: apt-pkg/sourcelist.cc
  2970. #, c-format
  2971. msgid "Unsupported file %s given on commandline"
  2972. msgstr ""
  2973. #: apt-pkg/srcrecords.cc
  2974. msgid "You must put some 'source' URIs in your sources.list"
  2975. msgstr ""
  2976. #: apt-pkg/tagfile.cc
  2977. #, c-format
  2978. msgid "Cannot convert %s to integer: out of range"
  2979. msgstr ""
  2980. #: apt-pkg/update.cc
  2981. #, fuzzy, c-format
  2982. msgid "Failed to fetch %s %s"
  2983. msgstr "Nepavyko parsiųsti %s %s\n"
  2984. #: apt-pkg/update.cc
  2985. #, fuzzy
  2986. msgid ""
  2987. "Some index files failed to download. They have been ignored, or old ones "
  2988. "used instead."
  2989. msgstr ""
  2990. "Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje "
  2991. "jų panaudoti seni."
  2992. #: apt-pkg/upgrade.cc
  2993. msgid "Calculating upgrade"
  2994. msgstr "Skaičiuojami atnaujinimai"
  2995. #~ msgid "Failed to unlink %s"
  2996. #~ msgstr "Nepavyko atsieti nuorodos %s"
  2997. #~ msgid ""
  2998. #~ "Options:\n"
  2999. #~ " -h This help text.\n"
  3000. #~ " -c=? Read this configuration file\n"
  3001. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3002. #~ msgstr ""
  3003. #~ "Parinktys:\n"
  3004. #~ " -h Šis pagalbos ekranas.\n"
  3005. #~ " -c=? Nuskaityti pateiktą konfigūracijos failą\n"
  3006. #~ " -o=? Nurodyti tam tikrą konfigūracijos parametrą, pvz -o dir::cache=/"
  3007. #~ "tmp\n"
  3008. #~ msgid ""
  3009. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3010. #~ "\n"
  3011. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3012. #~ "used\n"
  3013. #~ "to indicate what kind of file it is.\n"
  3014. #~ "\n"
  3015. #~ "Options:\n"
  3016. #~ " -h This help text\n"
  3017. #~ " -s Use source file sorting\n"
  3018. #~ " -c=? Read this configuration file\n"
  3019. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3020. #~ msgstr ""
  3021. #~ "Naudojimas: apt-sortpkgs [parametrai] byla1 [byla2 ...]\n"
  3022. #~ "\n"
  3023. #~ "apt-sortpkgs - tai paprastas įrankis skirtas paketų rūšiavimui. -s "
  3024. #~ "nuostata naudojama\n"
  3025. #~ "norint nusakyti bylos tipą.\n"
  3026. #~ "\n"
  3027. #~ "Parametrai:\n"
  3028. #~ " -h Šis pagalbos tekstas\n"
  3029. #~ " -s Naudoti išeities kodo bylos rūšiavimą\n"
  3030. #~ " -c=? Nuskaityti šią konfigūracijos bylą\n"
  3031. #~ " -o=? Nurodyti savarankiškas nuostatas, pvz.: -o dir::cache=/tmp\n"
  3032. #~ msgid "Child process failed"
  3033. #~ msgstr "Klaida procese-palikuonyje"
  3034. #, fuzzy
  3035. #~ msgid "Must specifc at least one srv record"
  3036. #~ msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą"
  3037. #~ msgid "Failed to create FILE*"
  3038. #~ msgstr "Nepavyko sukurti FILE*"
  3039. #, fuzzy
  3040. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3041. #~ msgstr "Nepavyko atverti DB failo %s: %s"
  3042. #~ msgid "You don't have enough free space in %s"
  3043. #~ msgstr "Neturite pakankamai laisvos vietos %s"
  3044. #~ msgid "Done"
  3045. #~ msgstr "Įvykdyta"
  3046. #, fuzzy
  3047. #~ msgid "No keyring installed in %s."
  3048. #~ msgstr "Diegimas nutraukiamas."
  3049. #, fuzzy
  3050. #~ msgid "Internal error, Upgrade broke stuff"
  3051. #~ msgstr "Vidinė klaida, problemos sprendimas kažką sugadino"
  3052. #~ msgid "%s not a valid DEB package."
  3053. #~ msgstr "%s nėra tikras DEB paketas."
  3054. #~ msgid "MD5Sum mismatch"
  3055. #~ msgstr "MD5 sumos neatitikimas"
  3056. #, fuzzy
  3057. #~ msgid "Skipping nonexistent file %s"
  3058. #~ msgstr "Praleidžiama jau parsiųsta byla „%s“\n"
  3059. #~ msgid "Failed to remove %s"
  3060. #~ msgstr "Nepavyko pašalinti %s"
  3061. #~ msgid "Reading file listing"
  3062. #~ msgstr "Skaitomas failų sąrašas"
  3063. #, fuzzy
  3064. #~ msgid "Couldn't open pipe for %s"
  3065. #~ msgstr "Nepavyko atverti failo %s"
  3066. #~ msgid "Malformed override %s line %lu #1"
  3067. #~ msgstr "Nekorektiškas perrašymas %s eilutėje %lu #1"
  3068. #~ msgid "Malformed override %s line %lu #2"
  3069. #~ msgstr "Nekorektiškas perrašymas %s eilutėje %lu #2"
  3070. #~ msgid "Malformed override %s line %lu #3"
  3071. #~ msgstr "Nekorektiškas perrašymas %s eilutėje %lu #3"
  3072. #~ msgid "decompressor"
  3073. #~ msgstr "išskleidiklis"
  3074. #, fuzzy
  3075. #~| msgid "Could not open file %s"
  3076. #~ msgid "Could not patch file"
  3077. #~ msgstr "Nepavyko atverti failo %s"
  3078. #~ msgid " %4i %s\n"
  3079. #~ msgstr " %4i %s\n"
  3080. #~ msgid "%4i %s\n"
  3081. #~ msgstr "%4i %s\n"
  3082. #~ msgid "Processing triggers for %s"
  3083. #~ msgstr "Apdorojami %s trigeriai"
  3084. #~ msgid ""
  3085. #~ "Since you only requested a single operation it is extremely likely that\n"
  3086. #~ "the package is simply not installable and a bug report against\n"
  3087. #~ "that package should be filed."
  3088. #~ msgstr ""
  3089. #~ "Kadangi jūs paprašėte tik vienos operacijos, gan tikėtina, kad \n"
  3090. #~ "paketas tiesiog negali būti įdiegiamas, ir turėtų būti užpildytas "
  3091. #~ "klaidos\n"
  3092. #~ "pranešimas apie šį paketą."
  3093. #~ msgid "Line %d too long (max %u)"
  3094. #~ msgstr "Eilutė %d per ilga (leidžiama %u simbolių)"
  3095. #~ msgid "Apt Authentication issue"
  3096. #~ msgstr "Apt autentikacijos problema"
  3097. #~ msgid "Problem during package list update. "
  3098. #~ msgstr "Įvyko klaida atnaujinant paketų sąrašą. "