lt.po 95 KB

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