lt.po 90 KB

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