lt.po 85 KB

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