lt.po 89 KB

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