lt.po 72 KB

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