lt.po 88 KB

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