lt.po 75 KB

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