sl.po 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045
  1. # translation of apt.po to Slovenian
  2. # Matjaz Horvat <matjaz@owca.info>, 2004.
  3. msgid ""
  4. msgstr ""
  5. "Project-Id-Version: apt 0.5.5\n"
  6. "Report-Msgid-Bugs-To: \n"
  7. "POT-Creation-Date: 2009-08-27 19:43+0200\n"
  8. "PO-Revision-Date: 2005-02-16 22:18+0100\n"
  9. "Last-Translator: Jure Cuhalev <gandalf@owca.info>\n"
  10. "Language-Team: Slovenian <sl@li.org>\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=ISO-8859-2\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. #: cmdline/apt-cache.cc:141
  15. #, c-format
  16. msgid "Package %s version %s has an unmet dep:\n"
  17. msgstr "Paket %s razlièica %s ima nere¹ene odvisnosti:\n"
  18. #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644
  19. #: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021
  20. #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575
  21. #, c-format
  22. msgid "Unable to locate package %s"
  23. msgstr "Ne najdem paketa %s"
  24. #: cmdline/apt-cache.cc:245
  25. msgid "Total package names: "
  26. msgstr "Vseh imen paketov:"
  27. #: cmdline/apt-cache.cc:285
  28. msgid " Normal packages: "
  29. msgstr " Navadni paketi:"
  30. #: cmdline/apt-cache.cc:286
  31. msgid " Pure virtual packages: "
  32. msgstr " Èisti navidezni paketi:"
  33. #: cmdline/apt-cache.cc:287
  34. msgid " Single virtual packages: "
  35. msgstr " Posamezni navidezni paketi:"
  36. #: cmdline/apt-cache.cc:288
  37. msgid " Mixed virtual packages: "
  38. msgstr " Me¹ani navidezni paketi:"
  39. #: cmdline/apt-cache.cc:289
  40. msgid " Missing: "
  41. msgstr " Manjka: "
  42. #: cmdline/apt-cache.cc:291
  43. msgid "Total distinct versions: "
  44. msgstr "Vseh razlièic:"
  45. #: cmdline/apt-cache.cc:293
  46. #, fuzzy
  47. msgid "Total distinct descriptions: "
  48. msgstr "Vseh razlièic:"
  49. #: cmdline/apt-cache.cc:295
  50. msgid "Total dependencies: "
  51. msgstr "Vseh odvisnosti:"
  52. #: cmdline/apt-cache.cc:298
  53. msgid "Total ver/file relations: "
  54. msgstr "Vseh povezava Raz/Dat:"
  55. #: cmdline/apt-cache.cc:300
  56. #, fuzzy
  57. msgid "Total Desc/File relations: "
  58. msgstr "Vseh povezava Raz/Dat:"
  59. #: cmdline/apt-cache.cc:302
  60. msgid "Total Provides mappings: "
  61. msgstr "Vseh dobljenih preslikav: "
  62. #: cmdline/apt-cache.cc:314
  63. msgid "Total globbed strings: "
  64. msgstr "Vseh raz¹irjenih nizov: "
  65. #: cmdline/apt-cache.cc:328
  66. msgid "Total dependency version space: "
  67. msgstr "Celotna velikost z odvisnostmi: "
  68. #: cmdline/apt-cache.cc:333
  69. msgid "Total slack space: "
  70. msgstr "Celotna ohlapna velikost: "
  71. #: cmdline/apt-cache.cc:341
  72. msgid "Total space accounted for: "
  73. msgstr "Celotna velikost, izraèunana za: "
  74. #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221
  75. #, c-format
  76. msgid "Package file %s is out of sync."
  77. msgstr "Paketna datoteka %s ni usklajena."
  78. #: cmdline/apt-cache.cc:1297
  79. msgid "You must give exactly one pattern"
  80. msgstr "Podati morate natanèno en vzorec"
  81. #: cmdline/apt-cache.cc:1451
  82. msgid "No packages found"
  83. msgstr "Nobena datoteka ni bila najdena"
  84. #: cmdline/apt-cache.cc:1528
  85. msgid "Package files:"
  86. msgstr "Paketne datoteke:"
  87. #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622
  88. msgid "Cache is out of sync, can't x-ref a package file"
  89. msgstr "Predpomnilnik ni usklajen, x-ref paketne datotek ni mogoè"
  90. #. Show any packages have explicit pins
  91. #: cmdline/apt-cache.cc:1549
  92. msgid "Pinned packages:"
  93. msgstr "Pripeti paketi:"
  94. #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602
  95. msgid "(not found)"
  96. msgstr "(ni najden)"
  97. #. Installed version
  98. #: cmdline/apt-cache.cc:1582
  99. msgid " Installed: "
  100. msgstr " Name¹èen: "
  101. #: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592
  102. msgid "(none)"
  103. msgstr "(brez)"
  104. #. Candidate Version
  105. #: cmdline/apt-cache.cc:1589
  106. msgid " Candidate: "
  107. msgstr " Kandidat:"
  108. #: cmdline/apt-cache.cc:1599
  109. msgid " Package pin: "
  110. msgstr " Zaponka paketa:"
  111. #. Show the priority tables
  112. #: cmdline/apt-cache.cc:1608
  113. msgid " Version table:"
  114. msgstr " Tabela razlièic:"
  115. #: cmdline/apt-cache.cc:1623
  116. #, c-format
  117. msgid " %4i %s\n"
  118. msgstr " %4i %s\n"
  119. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  120. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  121. #: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144
  122. #, fuzzy, c-format
  123. msgid "%s %s for %s compiled on %s %s\n"
  124. msgstr "%s %s za %s %s preveden na %s %s\n"
  125. #: cmdline/apt-cache.cc:1725
  126. #, fuzzy
  127. msgid ""
  128. "Usage: apt-cache [options] command\n"
  129. " apt-cache [options] add file1 [file2 ...]\n"
  130. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  131. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  132. "\n"
  133. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  134. "cache files, and query information from them\n"
  135. "\n"
  136. "Commands:\n"
  137. " add - Add a package file to the source cache\n"
  138. " gencaches - Build both the package and source cache\n"
  139. " showpkg - Show some general information for a single package\n"
  140. " showsrc - Show source records\n"
  141. " stats - Show some basic statistics\n"
  142. " dump - Show the entire file in a terse form\n"
  143. " dumpavail - Print an available file to stdout\n"
  144. " unmet - Show unmet dependencies\n"
  145. " search - Search the package list for a regex pattern\n"
  146. " show - Show a readable record for the package\n"
  147. " depends - Show raw dependency information for a package\n"
  148. " rdepends - Show reverse dependency information for a package\n"
  149. " pkgnames - List the names of all packages in the system\n"
  150. " dotty - Generate package graphs for GraphViz\n"
  151. " xvcg - Generate package graphs for xvcg\n"
  152. " policy - Show policy settings\n"
  153. "\n"
  154. "Options:\n"
  155. " -h This help text.\n"
  156. " -p=? The package cache.\n"
  157. " -s=? The source cache.\n"
  158. " -q Disable progress indicator.\n"
  159. " -i Show only important deps for the unmet command.\n"
  160. " -c=? Read this configuration file\n"
  161. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  162. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  163. msgstr ""
  164. "Uporaba: apt-cache [mo¾nosti] ukaz\n"
  165. " apt-cache [mo¾nosti] add dat1 [dat2 ...]\n"
  166. " apt-cache [mo¾nosti] showpkg pak1 [pak2 ...]\n"
  167. " apt-cache [mo¾nosti] showsrc pak1 [pak2 ...]\n"
  168. "\n"
  169. "apt-cache je orodje za upravljanje binarnih datotek v APT-jevem\n"
  170. "pomnilniku in za pridobivanje informacij o njih\n"
  171. "\n"
  172. "Ukazi:\n"
  173. " add - Doda paketno datoteko v izvorni pomnilnik\n"
  174. " gencaches - Zgradi paket in izvorni pomnilnik\n"
  175. " showpkg - Prika¾e osnovne informacije o paketu\n"
  176. " showsrc - Prika¾e izvorne zapise\n"
  177. " stats - Prika¾e osnovno statistiko\n"
  178. " dump - Prika¾e celotno datoteko v jedrnati obliki\n"
  179. " dumpavail - Razpolo¾ljivo datoteko izpi¹e v stdout\n"
  180. " unmet - Prika¾e nere¹ene odvisnosti\n"
  181. " search - Poi¹èe vzorec v seznamu paketov\n"
  182. " show - Prika¾e berljiv zapis o paketu\n"
  183. " depends - Prika¾e grobe informacije o odvisnostih paketa\n"
  184. " rdepends - Prika¾e informacije o odvisnostih paketa za nazaj\n"
  185. " pkgnames - Prika¾e seznam vsem paketov\n"
  186. " dotty - Ustvari grafe paketov za GraphViz\n"
  187. " xvcg - Ustvari grafe paketov za xvcg\n"
  188. " policy - Prika¾e politiko nastavitev\n"
  189. "\n"
  190. "Mo¾nosti:\n"
  191. " -h To besedilo.\n"
  192. " -p=? Pomnilnik paketov.\n"
  193. " -s=? Pomnilnik virov.\n"
  194. " -q Onemogoèi kazalec napredka.\n"
  195. " -i Prika¾e samo pomembne odvisnosti za nere¹en ukaz.\n"
  196. " -c=? Prebere podano datoteko z nastavitvami\n"
  197. " -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
  198. "Za veè informacij si oglejte strani man apt-cache(8) in apt.conf(5).\n"
  199. #: cmdline/apt-cdrom.cc:77
  200. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  201. msgstr ""
  202. #: cmdline/apt-cdrom.cc:92
  203. #, fuzzy
  204. msgid "Please insert a Disc in the drive and press enter"
  205. msgstr ""
  206. "Sprememba medija: vstavite disk z oznako\n"
  207. " '%s'\n"
  208. "v enoto '%s' in pritisnite enter\n"
  209. #: cmdline/apt-cdrom.cc:114
  210. msgid "Repeat this process for the rest of the CDs in your set."
  211. msgstr ""
  212. #: cmdline/apt-config.cc:41
  213. msgid "Arguments not in pairs"
  214. msgstr "Argumenti niso v parih"
  215. #: cmdline/apt-config.cc:76
  216. msgid ""
  217. "Usage: apt-config [options] command\n"
  218. "\n"
  219. "apt-config is a simple tool to read the APT config file\n"
  220. "\n"
  221. "Commands:\n"
  222. " shell - Shell mode\n"
  223. " dump - Show the configuration\n"
  224. "\n"
  225. "Options:\n"
  226. " -h This help text.\n"
  227. " -c=? Read this configuration file\n"
  228. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  229. msgstr ""
  230. "Uporaba: apt-config [mo¾nosti] ukaz\n"
  231. "\n"
  232. "apt-config je preprosto orodje za branje nastavitvene datoteke APT\n"
  233. "\n"
  234. "Ukazi:\n"
  235. " shell - Lupinski naèin\n"
  236. " dump - Prika¾e nastavitve\n"
  237. "\n"
  238. "Mo¾nosti:\n"
  239. " -h To besedilo.\n"
  240. " -c=? Prebere podano datoteko z nastavitvami\n"
  241. " -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
  242. #: cmdline/apt-extracttemplates.cc:98
  243. #, c-format
  244. msgid "%s not a valid DEB package."
  245. msgstr "%s ni veljaven paket DEB."
  246. #: cmdline/apt-extracttemplates.cc:232
  247. msgid ""
  248. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  249. "\n"
  250. "apt-extracttemplates is a tool to extract config and template info\n"
  251. "from debian packages\n"
  252. "\n"
  253. "Options:\n"
  254. " -h This help text\n"
  255. " -t Set the temp dir\n"
  256. " -c=? Read this configuration file\n"
  257. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  258. msgstr ""
  259. "Uporaba: apt-extracttemplates dat1 [dat2 ...]\n"
  260. "\n"
  261. "apt-extracttemplates je orodje za pridobivanje informacij o\n"
  262. "nastavitvah in predlogah debianovih paketov\n"
  263. "\n"
  264. "Mo¾nosti:\n"
  265. " -h To besedilo\n"
  266. " -t Nastavi zaèasni imenik\n"
  267. " -c=? Prebere podano datoteko z nastavitvami\n"
  268. " -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
  269. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830
  270. #, c-format
  271. msgid "Unable to write to %s"
  272. msgstr "Ni mogoèe pisati na %s"
  273. #: cmdline/apt-extracttemplates.cc:310
  274. msgid "Cannot get debconf version. Is debconf installed?"
  275. msgstr "Ni mogoèe ugotoviti razlièice debconfa. Je sploh name¹èen?"
  276. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  277. msgid "Package extension list is too long"
  278. msgstr "Seznam raz¹iritev paketov je predolg"
  279. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  280. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  281. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  282. #, c-format
  283. msgid "Error processing directory %s"
  284. msgstr "Napaka pri obdelavi imenika %s"
  285. #: ftparchive/apt-ftparchive.cc:251
  286. msgid "Source extension list is too long"
  287. msgstr "Seznam raz¹iritev virov je predolg"
  288. #: ftparchive/apt-ftparchive.cc:368
  289. msgid "Error writing header to contents file"
  290. msgstr "Napaka pri pisanju glave v vsebinsko datoteko"
  291. #: ftparchive/apt-ftparchive.cc:398
  292. #, c-format
  293. msgid "Error processing contents %s"
  294. msgstr "Napaka pri obdelavi vsebine %s"
  295. #: ftparchive/apt-ftparchive.cc:553
  296. #, fuzzy
  297. msgid ""
  298. "Usage: apt-ftparchive [options] command\n"
  299. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  300. " sources srcpath [overridefile [pathprefix]]\n"
  301. " contents path\n"
  302. " release path\n"
  303. " generate config [groups]\n"
  304. " clean config\n"
  305. "\n"
  306. "apt-ftparchive generates index files for Debian archives. It supports\n"
  307. "many styles of generation from fully automated to functional replacements\n"
  308. "for dpkg-scanpackages and dpkg-scansources\n"
  309. "\n"
  310. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  311. "Package file contains the contents of all the control fields from\n"
  312. "each package as well as the MD5 hash and filesize. An override file\n"
  313. "is supported to force the value of Priority and Section.\n"
  314. "\n"
  315. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  316. "The --source-override option can be used to specify a src override file\n"
  317. "\n"
  318. "The 'packages' and 'sources' command should be run in the root of the\n"
  319. "tree. BinaryPath should point to the base of the recursive search and \n"
  320. "override file should contain the override flags. Pathprefix is\n"
  321. "appended to the filename fields if present. Example usage from the \n"
  322. "Debian archive:\n"
  323. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  324. " dists/potato/main/binary-i386/Packages\n"
  325. "\n"
  326. "Options:\n"
  327. " -h This help text\n"
  328. " --md5 Control MD5 generation\n"
  329. " -s=? Source override file\n"
  330. " -q Quiet\n"
  331. " -d=? Select the optional caching database\n"
  332. " --no-delink Enable delinking debug mode\n"
  333. " --contents Control contents file generation\n"
  334. " -c=? Read this configuration file\n"
  335. " -o=? Set an arbitrary configuration option"
  336. msgstr ""
  337. "Uporaba: apt-ftparchive [mo¾nosti] ukaz\n"
  338. "Ukazi: packages binarypath [overridefile [pathprefix]]\n"
  339. " sources srcpath [overridefile [pathprefix]]\n"
  340. " contents path\n"
  341. " release path\n"
  342. " generate config [groups]\n"
  343. " clean config\n"
  344. "\n"
  345. "apt-ftparchive ustvari kazalo Debianovih arhivov. Podpira ¹tevilne\n"
  346. "sloge ustvarjanja, od popolnoma samodejnih do enakovrednih zamenjav\n"
  347. "za dpkg-scanpackages in dpkg-scansources\n"
  348. "\n"
  349. "apt-ftparchive ustvari paketne datoteke z drevesa .deb-ov. Paketna\n"
  350. "datoteka hrani vsebino vseh nadzornih polj vsakega paketa in tudi\n"
  351. "razpr¹eno kodo MD5 ter velikost datoteke. Prekrivna datoteka\n"
  352. "lahko vsili vrednost Prioriteta in Odsek.\n"
  353. "\n"
  354. "Podobno apt-ftparchive ustvari tudi izvorne datoteke iz .dsc-jev.\n"
  355. "Mo¾nost --source-override lahko nastavi prekrivno datoteko.\n"
  356. "\n"
  357. "Ukaz 'paketi' in 'izvorne datoteke' se uporablja v korenu drevesa.\n"
  358. "BinarnaPot mora kazati na osnovo rekurzivnega iskanja, prekrivna\n"
  359. "datoteka pa naj vsebuje prekrivne zastavice. Predponapoti se\n"
  360. "doda poljem z imeni datotek, èe je podana. Primer uporabe iz\n"
  361. "Debianovega arhiva:\n"
  362. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  363. " dists/potato/main/binary-i386/Packages\n"
  364. "\n"
  365. "Mo¾nosti:\n"
  366. " -h To besedilo\n"
  367. " --md5 Nadzoruje ustvarjanje MD5\n"
  368. " -s=? Prekrivna datoteka izvorne datoteke\n"
  369. " -q Tiho\n"
  370. " -d=? Izbere poljubno pomnilni¹ko zbirko\n"
  371. " --no-delink Omogoèi razhro¹èevalni naèin z razvezovanjem\n"
  372. " --contents Nadzoruje ustvarjanje vsebinskih datotek\n"
  373. " -c=? Prebere podano datoteko z nastavitvami\n"
  374. " -o=? Nastavi poljubno nastavitveno mo¾nost"
  375. #: ftparchive/apt-ftparchive.cc:759
  376. msgid "No selections matched"
  377. msgstr "Nobena izbira se ne ujema"
  378. #: ftparchive/apt-ftparchive.cc:832
  379. #, c-format
  380. msgid "Some files are missing in the package file group `%s'"
  381. msgstr "Nekatere datoteke manjkajo v skupini paketnih datotek '%s'"
  382. #: ftparchive/cachedb.cc:43
  383. #, c-format
  384. msgid "DB was corrupted, file renamed to %s.old"
  385. msgstr "ZP je pokvarjena, datoteka je preimenovana v %s.old"
  386. #: ftparchive/cachedb.cc:61
  387. #, c-format
  388. msgid "DB is old, attempting to upgrade %s"
  389. msgstr "ZP je stara, posku¹am nadgraditi %s"
  390. #: ftparchive/cachedb.cc:72
  391. msgid ""
  392. "DB format is invalid. If you upgraded from a older version of apt, please "
  393. "remove and re-create the database."
  394. msgstr ""
  395. #: ftparchive/cachedb.cc:77
  396. #, c-format
  397. msgid "Unable to open DB file %s: %s"
  398. msgstr "Ni mogoèe odprti datoteke ZP %s: %s"
  399. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  400. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  401. #, c-format
  402. msgid "Failed to stat %s"
  403. msgstr "Napaka pri postavitvi %s"
  404. #: ftparchive/cachedb.cc:238
  405. msgid "Archive has no control record"
  406. msgstr "Arhiv nima nadzornega zapisa"
  407. #: ftparchive/cachedb.cc:444
  408. msgid "Unable to get a cursor"
  409. msgstr "Ni mogoèe najti kazalca"
  410. #: ftparchive/writer.cc:76
  411. #, c-format
  412. msgid "W: Unable to read directory %s\n"
  413. msgstr "O: ni mogoèe brati imenika %s\n"
  414. #: ftparchive/writer.cc:81
  415. #, c-format
  416. msgid "W: Unable to stat %s\n"
  417. msgstr "O: Ni mogoèe nastaviti %s\n"
  418. #: ftparchive/writer.cc:132
  419. msgid "E: "
  420. msgstr "E: "
  421. #: ftparchive/writer.cc:134
  422. msgid "W: "
  423. msgstr "O: "
  424. #: ftparchive/writer.cc:141
  425. msgid "E: Errors apply to file "
  426. msgstr "N: Napake se sklicujejo na datoteko"
  427. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  428. #, c-format
  429. msgid "Failed to resolve %s"
  430. msgstr "Ni mogoèe razre¹iti %s"
  431. #: ftparchive/writer.cc:170
  432. msgid "Tree walking failed"
  433. msgstr "Hoja drevesa ni uspela"
  434. #: ftparchive/writer.cc:195
  435. #, c-format
  436. msgid "Failed to open %s"
  437. msgstr "Ni mogoèe odprti %s"
  438. #: ftparchive/writer.cc:254
  439. #, c-format
  440. msgid " DeLink %s [%s]\n"
  441. msgstr " RazVe¾i %s [%s]\n"
  442. #: ftparchive/writer.cc:262
  443. #, c-format
  444. msgid "Failed to readlink %s"
  445. msgstr "Napaka pri branju povezave %s"
  446. #: ftparchive/writer.cc:266
  447. #, c-format
  448. msgid "Failed to unlink %s"
  449. msgstr "Napaka pri odvezovanju %s"
  450. #: ftparchive/writer.cc:273
  451. #, c-format
  452. msgid "*** Failed to link %s to %s"
  453. msgstr "*** Napaka pri povezovanju %s z %s"
  454. #: ftparchive/writer.cc:283
  455. #, c-format
  456. msgid " DeLink limit of %sB hit.\n"
  457. msgstr " Dose¾ena meja RazVezovanja %sB.\n"
  458. #: ftparchive/writer.cc:387
  459. msgid "Archive had no package field"
  460. msgstr "Arhiv ni imel polja s paketom"
  461. #: ftparchive/writer.cc:395 ftparchive/writer.cc:610
  462. #, c-format
  463. msgid " %s has no override entry\n"
  464. msgstr " %s nima prekrivnega vnosa\n"
  465. #: ftparchive/writer.cc:440 ftparchive/writer.cc:698
  466. #, c-format
  467. msgid " %s maintainer is %s not %s\n"
  468. msgstr " Vzdr¾evalec %s je %s in ne %s\n"
  469. #: ftparchive/writer.cc:620
  470. #, fuzzy, c-format
  471. msgid " %s has no source override entry\n"
  472. msgstr " %s nima prekrivnega vnosa\n"
  473. #: ftparchive/writer.cc:624
  474. #, fuzzy, c-format
  475. msgid " %s has no binary override entry either\n"
  476. msgstr " %s nima prekrivnega vnosa\n"
  477. #: ftparchive/contents.cc:321
  478. #, c-format
  479. msgid "Internal error, could not locate member %s"
  480. msgstr "Notranja napaka. Ni mogoèe najti èlana %s."
  481. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  482. msgid "realloc - Failed to allocate memory"
  483. msgstr "realloc - Napaka pri dodeljevanju prostora"
  484. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  485. #, c-format
  486. msgid "Unable to open %s"
  487. msgstr "Ne morem odpreti %s"
  488. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  489. #, c-format
  490. msgid "Malformed override %s line %lu #1"
  491. msgstr "Napaèno prekrivanje %s vrstica %lu #1"
  492. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  493. #, c-format
  494. msgid "Malformed override %s line %lu #2"
  495. msgstr "Napaèno prekrivanje %s vrstica %lu #2"
  496. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  497. #, c-format
  498. msgid "Malformed override %s line %lu #3"
  499. msgstr "Napaèno prekrivanje %s vrstica %lu #3"
  500. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  501. #, c-format
  502. msgid "Failed to read the override file %s"
  503. msgstr "Napaka pri branju prekrite datoteke %s"
  504. #: ftparchive/multicompress.cc:72
  505. #, c-format
  506. msgid "Unknown compression algorithm '%s'"
  507. msgstr "Neznan algoritem stiskanja '%s'"
  508. #: ftparchive/multicompress.cc:102
  509. #, c-format
  510. msgid "Compressed output %s needs a compression set"
  511. msgstr "Stisnjen izhod %s potrebuje niz stiskanja"
  512. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  513. msgid "Failed to create IPC pipe to subprocess"
  514. msgstr "Ustvarjanje pipe IPC podprocesa ni uspelo"
  515. #: ftparchive/multicompress.cc:195
  516. msgid "Failed to create FILE*"
  517. msgstr "Ustvarjanje DATOTEKE* ni uspelo"
  518. #: ftparchive/multicompress.cc:198
  519. msgid "Failed to fork"
  520. msgstr "Vejitev ni uspela"
  521. #: ftparchive/multicompress.cc:212
  522. msgid "Compress child"
  523. msgstr "Otrok stiskanja"
  524. #: ftparchive/multicompress.cc:235
  525. #, c-format
  526. msgid "Internal error, failed to create %s"
  527. msgstr "Notranja napaka. Ni mogoèe ustvariti %s"
  528. #: ftparchive/multicompress.cc:286
  529. msgid "Failed to create subprocess IPC"
  530. msgstr "Ni mogoèe ustvariti podprocesa IPD"
  531. #: ftparchive/multicompress.cc:321
  532. msgid "Failed to exec compressor "
  533. msgstr "Ni mogoèe izvesti stiskanja"
  534. #: ftparchive/multicompress.cc:360
  535. msgid "decompressor"
  536. msgstr "program za dekompresijo"
  537. #: ftparchive/multicompress.cc:403
  538. msgid "IO to subprocess/file failed"
  539. msgstr "IO podprocesa/datoteke je spodletel"
  540. #: ftparchive/multicompress.cc:455
  541. msgid "Failed to read while computing MD5"
  542. msgstr "Med raèunanjem MD5 ni mogoèe brati"
  543. #: ftparchive/multicompress.cc:472
  544. #, c-format
  545. msgid "Problem unlinking %s"
  546. msgstr "Napaka pri odvezovanju %s"
  547. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  548. #, c-format
  549. msgid "Failed to rename %s to %s"
  550. msgstr "Ni mogoèe preimenovati %s v %s"
  551. #: cmdline/apt-get.cc:127
  552. msgid "Y"
  553. msgstr "Y"
  554. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695
  555. #, c-format
  556. msgid "Regex compilation error - %s"
  557. msgstr "Napaka pri prevajanju regex - %s"
  558. #: cmdline/apt-get.cc:244
  559. msgid "The following packages have unmet dependencies:"
  560. msgstr "Naslednji paketi imajo nere¹ene odvisnosti:"
  561. #: cmdline/apt-get.cc:334
  562. #, c-format
  563. msgid "but %s is installed"
  564. msgstr "vendar je paket %s name¹èen"
  565. #: cmdline/apt-get.cc:336
  566. #, c-format
  567. msgid "but %s is to be installed"
  568. msgstr "vendar bo paket %s name¹èen"
  569. #: cmdline/apt-get.cc:343
  570. msgid "but it is not installable"
  571. msgstr "vendar se ga ne da namestiti"
  572. #: cmdline/apt-get.cc:345
  573. msgid "but it is a virtual package"
  574. msgstr "vendar je navidezen paket"
  575. #: cmdline/apt-get.cc:348
  576. msgid "but it is not installed"
  577. msgstr "vendar ni name¹èen"
  578. #: cmdline/apt-get.cc:348
  579. msgid "but it is not going to be installed"
  580. msgstr "vendar ne bo name¹èen"
  581. #: cmdline/apt-get.cc:353
  582. msgid " or"
  583. msgstr " ali"
  584. #: cmdline/apt-get.cc:382
  585. msgid "The following NEW packages will be installed:"
  586. msgstr "Naslednji NOVI paketi bodo name¹èeni:"
  587. #: cmdline/apt-get.cc:408
  588. msgid "The following packages will be REMOVED:"
  589. msgstr "Naslednji novi paketi bodo ODSTRANJENI:"
  590. #: cmdline/apt-get.cc:430
  591. msgid "The following packages have been kept back:"
  592. msgstr "Naslednji paketi so bili zadr¾ani:"
  593. #: cmdline/apt-get.cc:451
  594. msgid "The following packages will be upgraded:"
  595. msgstr "Naslednji paketi bodo nadgrajeni:"
  596. #: cmdline/apt-get.cc:472
  597. msgid "The following packages will be DOWNGRADED:"
  598. msgstr "Naslednji paketi bodo POSTARANI:"
  599. #: cmdline/apt-get.cc:492
  600. msgid "The following held packages will be changed:"
  601. msgstr "Naslednji zadr¾ani paketi bodo spremenjeni:"
  602. #: cmdline/apt-get.cc:545
  603. #, c-format
  604. msgid "%s (due to %s) "
  605. msgstr "%s (zaradi %s) "
  606. #: cmdline/apt-get.cc:553
  607. #, fuzzy
  608. msgid ""
  609. "WARNING: The following essential packages will be removed.\n"
  610. "This should NOT be done unless you know exactly what you are doing!"
  611. msgstr ""
  612. "OPOZORILO: Naslednji kljuèni paketi bodo odstranjeni.\n"
  613. "To NI priporoèljivo, razen èe natanèno veste, kaj poènete."
  614. #: cmdline/apt-get.cc:584
  615. #, c-format
  616. msgid "%lu upgraded, %lu newly installed, "
  617. msgstr "%lu nadgrajenih, %lu na novo name¹èenih, "
  618. #: cmdline/apt-get.cc:588
  619. #, c-format
  620. msgid "%lu reinstalled, "
  621. msgstr "%lu posodobljenih, "
  622. #: cmdline/apt-get.cc:590
  623. #, c-format
  624. msgid "%lu downgraded, "
  625. msgstr "%lu postaranih, "
  626. #: cmdline/apt-get.cc:592
  627. #, c-format
  628. msgid "%lu to remove and %lu not upgraded.\n"
  629. msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n"
  630. #: cmdline/apt-get.cc:596
  631. #, c-format
  632. msgid "%lu not fully installed or removed.\n"
  633. msgstr "%lu ne popolnoma name¹èenih ali odstranjenih.\n"
  634. #: cmdline/apt-get.cc:669
  635. msgid "Correcting dependencies..."
  636. msgstr "Popravljanje odvisnosti ..."
  637. #: cmdline/apt-get.cc:672
  638. msgid " failed."
  639. msgstr " spodletelo."
  640. #: cmdline/apt-get.cc:675
  641. msgid "Unable to correct dependencies"
  642. msgstr "Ni mogoèe popraviti odvisnosti"
  643. #: cmdline/apt-get.cc:678
  644. msgid "Unable to minimize the upgrade set"
  645. msgstr "Ni mogoèe pomanj¹ati zbirke za nadgradnjo"
  646. #: cmdline/apt-get.cc:680
  647. msgid " Done"
  648. msgstr " Opravljeno"
  649. #: cmdline/apt-get.cc:684
  650. msgid "You might want to run `apt-get -f install' to correct these."
  651. msgstr "Èe ¾elite popraviti napake, poskusite pognati 'apt-get -f install'."
  652. #: cmdline/apt-get.cc:687
  653. msgid "Unmet dependencies. Try using -f."
  654. msgstr "Nere¹ene odvisnosti. Poskusite uporabiti -f."
  655. #: cmdline/apt-get.cc:712
  656. msgid "WARNING: The following packages cannot be authenticated!"
  657. msgstr "POZORO: Naslednjih paketov ni bilo mogoèe avtenticirati!"
  658. #: cmdline/apt-get.cc:716
  659. msgid "Authentication warning overridden.\n"
  660. msgstr ""
  661. #: cmdline/apt-get.cc:723
  662. msgid "Install these packages without verification [y/N]? "
  663. msgstr "Namestim te pakete brez prevejanje [y/N]? "
  664. #: cmdline/apt-get.cc:725
  665. msgid "Some packages could not be authenticated"
  666. msgstr "Nisem uspel avtenticirati nekaterih paketkov"
  667. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886
  668. msgid "There are problems and -y was used without --force-yes"
  669. msgstr "Pri¹lo je do te¾av in -y je bil uporabljen brez --force-yes"
  670. #: cmdline/apt-get.cc:775
  671. msgid "Internal error, InstallPackages was called with broken packages!"
  672. msgstr ""
  673. #: cmdline/apt-get.cc:784
  674. msgid "Packages need to be removed but remove is disabled."
  675. msgstr "Odstraniti je potrebno pakete, a je Odstranjevanje onemogoèeno."
  676. #: cmdline/apt-get.cc:795
  677. #, fuzzy
  678. msgid "Internal error, Ordering didn't finish"
  679. msgstr "Notranja napaka pri dodajanju odklona"
  680. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070
  681. msgid "Unable to lock the download directory"
  682. msgstr "Ni mogoèe zakleniti imenika za prenose"
  683. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367
  684. #: apt-pkg/cachefile.cc:65
  685. msgid "The list of sources could not be read."
  686. msgstr "Seznama virov ni mogoèe brati."
  687. #: cmdline/apt-get.cc:836
  688. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  689. msgstr ""
  690. #: cmdline/apt-get.cc:841
  691. #, c-format
  692. msgid "Need to get %sB/%sB of archives.\n"
  693. msgstr "Potrebno je dobiti %sB/%sB arhivov.\n"
  694. #: cmdline/apt-get.cc:844
  695. #, c-format
  696. msgid "Need to get %sB of archives.\n"
  697. msgstr "Potrebno je dobiti %sB arhivov.\n"
  698. #: cmdline/apt-get.cc:849
  699. #, fuzzy, c-format
  700. msgid "After this operation, %sB of additional disk space will be used.\n"
  701. msgstr "Po odpakiranju bo uporabljenega %sB dodatnega prostora na disku.\n"
  702. #: cmdline/apt-get.cc:852
  703. #, fuzzy, c-format
  704. msgid "After this operation, %sB disk space will be freed.\n"
  705. msgstr "Po odpakiranju bo spro¹èenega %sB prostora na disku.\n"
  706. #: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213
  707. #, fuzzy, c-format
  708. msgid "Couldn't determine free space in %s"
  709. msgstr "Nimate dovolj prostora na %s"
  710. #: cmdline/apt-get.cc:876
  711. #, c-format
  712. msgid "You don't have enough free space in %s."
  713. msgstr "V %s je premalo prostora."
  714. #: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912
  715. msgid "Trivial Only specified but this is not a trivial operation."
  716. msgstr "Izbrana je mo¾nost Samo preprosto, a to opravilo ni preprosto."
  717. #: cmdline/apt-get.cc:894
  718. msgid "Yes, do as I say!"
  719. msgstr "Da, naredi tako kot pravim!"
  720. #: cmdline/apt-get.cc:896
  721. #, fuzzy, c-format
  722. msgid ""
  723. "You are about to do something potentially harmful.\n"
  724. "To continue type in the phrase '%s'\n"
  725. " ?] "
  726. msgstr ""
  727. "Obstaja mo¾nost, da po¹kodujete va¹ sistem.\n"
  728. "Za nadaljevanje vnesite frazo '%s'\n"
  729. " ?] "
  730. #: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921
  731. msgid "Abort."
  732. msgstr "Prekini."
  733. #: cmdline/apt-get.cc:917
  734. msgid "Do you want to continue [Y/n]? "
  735. msgstr "Ali ¾elite nadaljevati [Y/n]? "
  736. #: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389
  737. #, c-format
  738. msgid "Failed to fetch %s %s\n"
  739. msgstr "Ni mogoèe dobiti %s %s\n"
  740. #: cmdline/apt-get.cc:1007
  741. msgid "Some files failed to download"
  742. msgstr "Prenos nekaterih datotek ni uspel"
  743. #: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273
  744. msgid "Download complete and in download only mode"
  745. msgstr "Prenos dokonèan in uporabljen naèin samo prenos"
  746. #: cmdline/apt-get.cc:1014
  747. msgid ""
  748. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  749. "missing?"
  750. msgstr ""
  751. "Nekaterih arhivov ni mogoèe dobiti. Poskusite uporabiti apt-get update ali --"
  752. "fix-missing."
  753. #: cmdline/apt-get.cc:1018
  754. msgid "--fix-missing and media swapping is not currently supported"
  755. msgstr "--fix-missing in izmenjava medija trenutno nista podprta"
  756. #: cmdline/apt-get.cc:1023
  757. msgid "Unable to correct missing packages."
  758. msgstr "Ni mogoèe popraviti manjkajoèih paketov."
  759. #: cmdline/apt-get.cc:1024
  760. msgid "Aborting install."
  761. msgstr "Prekinjanje namestitve."
  762. #: cmdline/apt-get.cc:1058
  763. #, c-format
  764. msgid "Note, selecting %s instead of %s\n"
  765. msgstr "Opomba: izbran %s namesto %s \n"
  766. #: cmdline/apt-get.cc:1068
  767. #, c-format
  768. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  769. msgstr "%s preskoèen, ker je ¾e name¹èen in ne potrebuje nadgradnje.\n"
  770. #: cmdline/apt-get.cc:1086
  771. #, c-format
  772. msgid "Package %s is not installed, so not removed\n"
  773. msgstr "Paket %s ni name¹èen, zato ni odstranjen\n"
  774. #: cmdline/apt-get.cc:1097
  775. #, c-format
  776. msgid "Package %s is a virtual package provided by:\n"
  777. msgstr "Paket %s je navidezen in ga je priskrbel:\n"
  778. #: cmdline/apt-get.cc:1109
  779. msgid " [Installed]"
  780. msgstr " [Name¹èeno]"
  781. #: cmdline/apt-get.cc:1114
  782. msgid "You should explicitly select one to install."
  783. msgstr "Sami izberite paket, ki ga ¾elite namestiti."
  784. #: cmdline/apt-get.cc:1119
  785. #, c-format
  786. msgid ""
  787. "Package %s is not available, but is referred to by another package.\n"
  788. "This may mean that the package is missing, has been obsoleted, or\n"
  789. "is only available from another source\n"
  790. msgstr ""
  791. "Paket %s nima navedene razlièice, vendar se nek drug paket nana¹a nanj.\n"
  792. "To ponavadi pomeni, da paket manjka, je zastaran ali\n"
  793. "pa je na voljo samo iz drugega vira.\n"
  794. #: cmdline/apt-get.cc:1138
  795. msgid "However the following packages replace it:"
  796. msgstr "Kakorkoli, naslednji paketi ga nadomestijo:"
  797. #: cmdline/apt-get.cc:1141
  798. #, c-format
  799. msgid "Package %s has no installation candidate"
  800. msgstr "Paket %s nima kandidata za namestitev"
  801. #: cmdline/apt-get.cc:1161
  802. #, c-format
  803. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  804. msgstr "Ponovna namestitev %s ni mo¾na, ker ni mo¾en prenos.\n"
  805. #: cmdline/apt-get.cc:1169
  806. #, c-format
  807. msgid "%s is already the newest version.\n"
  808. msgstr "Najnovej¹a razlièica %s je ¾e name¹èena.\n"
  809. #: cmdline/apt-get.cc:1198
  810. #, c-format
  811. msgid "Release '%s' for '%s' was not found"
  812. msgstr "Izdaje '%s' za '%s' ni mogoèe najti"
  813. #: cmdline/apt-get.cc:1200
  814. #, c-format
  815. msgid "Version '%s' for '%s' was not found"
  816. msgstr "Razlièice '%s' za '%s' ni mogoèe najti"
  817. #: cmdline/apt-get.cc:1206
  818. #, c-format
  819. msgid "Selected version %s (%s) for %s\n"
  820. msgstr "Izbrana razlièica %s (%s) za %s\n"
  821. #: cmdline/apt-get.cc:1323
  822. #, c-format
  823. msgid "No source package '%s' picking '%s' instead\n"
  824. msgstr ""
  825. #: cmdline/apt-get.cc:1360
  826. msgid "The update command takes no arguments"
  827. msgstr "Ukaz update ne potrebuje argumentov"
  828. #: cmdline/apt-get.cc:1373
  829. msgid "Unable to lock the list directory"
  830. msgstr "Imenika seznamov ni mogoèe zakleniti"
  831. #: cmdline/apt-get.cc:1429
  832. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  833. msgstr ""
  834. #: cmdline/apt-get.cc:1478
  835. #, fuzzy
  836. msgid ""
  837. "The following packages were automatically installed and are no longer "
  838. "required:"
  839. msgstr "Naslednji NOVI paketi bodo name¹èeni:"
  840. #: cmdline/apt-get.cc:1480
  841. #, fuzzy, c-format
  842. msgid "%lu packages were automatically installed and are no longer required.\n"
  843. msgstr "Naslednji NOVI paketi bodo name¹èeni:"
  844. #: cmdline/apt-get.cc:1481
  845. msgid "Use 'apt-get autoremove' to remove them."
  846. msgstr ""
  847. #: cmdline/apt-get.cc:1486
  848. msgid ""
  849. "Hmm, seems like the AutoRemover destroyed something which really\n"
  850. "shouldn't happen. Please file a bug report against apt."
  851. msgstr ""
  852. #.
  853. #. if (Packages == 1)
  854. #. {
  855. #. c1out << endl;
  856. #. c1out <<
  857. #. _("Since you only requested a single operation it is extremely likely that\n"
  858. #. "the package is simply not installable and a bug report against\n"
  859. #. "that package should be filed.") << endl;
  860. #. }
  861. #.
  862. #: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779
  863. msgid "The following information may help to resolve the situation:"
  864. msgstr "Naslednji podatki vam bodo morda pomagali re¹iti te¾avo:"
  865. #: cmdline/apt-get.cc:1493
  866. #, fuzzy
  867. msgid "Internal Error, AutoRemover broke stuff"
  868. msgstr "Notranja napaka zaradi AllUpgrade."
  869. #: cmdline/apt-get.cc:1512
  870. msgid "Internal error, AllUpgrade broke stuff"
  871. msgstr "Notranja napaka zaradi AllUpgrade."
  872. #: cmdline/apt-get.cc:1567
  873. #, fuzzy, c-format
  874. msgid "Couldn't find task %s"
  875. msgstr "Ni mogoèe najti paketa %s"
  876. #: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718
  877. #, c-format
  878. msgid "Couldn't find package %s"
  879. msgstr "Ni mogoèe najti paketa %s"
  880. #: cmdline/apt-get.cc:1705
  881. #, c-format
  882. msgid "Note, selecting %s for regex '%s'\n"
  883. msgstr "Opomba: izbran %s namesto regex '%s'\n"
  884. #: cmdline/apt-get.cc:1736
  885. #, fuzzy, c-format
  886. msgid "%s set to manually installed.\n"
  887. msgstr "vendar bo paket %s name¹èen"
  888. #: cmdline/apt-get.cc:1749
  889. msgid "You might want to run `apt-get -f install' to correct these:"
  890. msgstr "Poskusite zagnati 'apt-get -f install', èe ¾elite popraviti:"
  891. #: cmdline/apt-get.cc:1752
  892. msgid ""
  893. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  894. "solution)."
  895. msgstr ""
  896. "Nere¹ene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali "
  897. "podajte re¹itev)."
  898. #: cmdline/apt-get.cc:1764
  899. msgid ""
  900. "Some packages could not be installed. This may mean that you have\n"
  901. "requested an impossible situation or if you are using the unstable\n"
  902. "distribution that some required packages have not yet been created\n"
  903. "or been moved out of Incoming."
  904. msgstr ""
  905. "Nekaterih paketov ni mogoèe namestiti. To lahko pomeni, da ste zahtevali\n"
  906. "nemogoè polo¾aj, èe uporabljate nestabilno izdajo pa, da nekateri zahtevani "
  907. "paketi ¹e niso ustvarjeni ali prene¹eni iz Prihajajoèe."
  908. #: cmdline/apt-get.cc:1782
  909. msgid "Broken packages"
  910. msgstr "Pokvarjeni paketi"
  911. #: cmdline/apt-get.cc:1811
  912. msgid "The following extra packages will be installed:"
  913. msgstr "Naslednji dodatni paketi bodo name¹èeni:"
  914. #: cmdline/apt-get.cc:1900
  915. msgid "Suggested packages:"
  916. msgstr "Predlagani paketi:"
  917. #: cmdline/apt-get.cc:1901
  918. msgid "Recommended packages:"
  919. msgstr "Priporoèeni paketi:"
  920. #: cmdline/apt-get.cc:1930
  921. msgid "Calculating upgrade... "
  922. msgstr "Preraèunavanje nadgradnje ... "
  923. #: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112
  924. msgid "Failed"
  925. msgstr "Spodletelo"
  926. #: cmdline/apt-get.cc:1938
  927. msgid "Done"
  928. msgstr "Opravljeno"
  929. #: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013
  930. #, fuzzy
  931. msgid "Internal error, problem resolver broke stuff"
  932. msgstr "Notranja napaka zaradi AllUpgrade."
  933. #: cmdline/apt-get.cc:2113
  934. msgid "Must specify at least one package to fetch source for"
  935. msgstr ""
  936. "Potrebno je navesti vsaj en paket, za katerega ¾elite dobiti izorno kodo"
  937. #: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385
  938. #, c-format
  939. msgid "Unable to find a source package for %s"
  940. msgstr "Izvornega paketa za %s ni mogoèe najti"
  941. #: cmdline/apt-get.cc:2192
  942. #, fuzzy, c-format
  943. msgid "Skipping already downloaded file '%s'\n"
  944. msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n"
  945. #: cmdline/apt-get.cc:2223
  946. #, c-format
  947. msgid "You don't have enough free space in %s"
  948. msgstr "Nimate dovolj prostora na %s"
  949. #: cmdline/apt-get.cc:2229
  950. #, c-format
  951. msgid "Need to get %sB/%sB of source archives.\n"
  952. msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n"
  953. #: cmdline/apt-get.cc:2232
  954. #, c-format
  955. msgid "Need to get %sB of source archives.\n"
  956. msgstr "Potrebno je dobiti %sB izvornih arhivov.\n"
  957. #: cmdline/apt-get.cc:2238
  958. #, c-format
  959. msgid "Fetch source %s\n"
  960. msgstr "Dobi vir %s\n"
  961. #: cmdline/apt-get.cc:2269
  962. msgid "Failed to fetch some archives."
  963. msgstr "Nekaterih arhivov ni mogoèe dobiti."
  964. #: cmdline/apt-get.cc:2297
  965. #, c-format
  966. msgid "Skipping unpack of already unpacked source in %s\n"
  967. msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n"
  968. #: cmdline/apt-get.cc:2309
  969. #, c-format
  970. msgid "Unpack command '%s' failed.\n"
  971. msgstr "Ukaz odpakiranja '%s' ni uspel.\n"
  972. #: cmdline/apt-get.cc:2310
  973. #, c-format
  974. msgid "Check if the 'dpkg-dev' package is installed.\n"
  975. msgstr ""
  976. #: cmdline/apt-get.cc:2327
  977. #, c-format
  978. msgid "Build command '%s' failed.\n"
  979. msgstr "Ukaz gradnje '%s' ni uspel.\n"
  980. #: cmdline/apt-get.cc:2346
  981. msgid "Child process failed"
  982. msgstr "Otro¹ki proces ni uspel"
  983. #: cmdline/apt-get.cc:2362
  984. msgid "Must specify at least one package to check builddeps for"
  985. msgstr ""
  986. "Potrebno je navesti vsaj en paket, za katerega ¾elite preveriti odvisnosti "
  987. "za gradnjo"
  988. #: cmdline/apt-get.cc:2390
  989. #, c-format
  990. msgid "Unable to get build-dependency information for %s"
  991. msgstr "Ni mogoèe dobiti informacij o odvisnostih za gradnjo za %s"
  992. #: cmdline/apt-get.cc:2410
  993. #, c-format
  994. msgid "%s has no build depends.\n"
  995. msgstr "%s nima odvisnosti za gradnjo.\n"
  996. #: cmdline/apt-get.cc:2462
  997. #, c-format
  998. msgid ""
  999. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1000. "found"
  1001. msgstr "%s odvisnosti za %s ni mogoèe zadostiti, ker ni mogoèe najti paketa %s"
  1002. #: cmdline/apt-get.cc:2515
  1003. #, c-format
  1004. msgid ""
  1005. "%s dependency for %s cannot be satisfied because no available versions of "
  1006. "package %s can satisfy version requirements"
  1007. msgstr ""
  1008. "%s odvisnosti za %s ni mogoèe zadostiti, ker nobena razlièica paketa %s ne "
  1009. "more zadostiti zahtevi po razlièici"
  1010. #: cmdline/apt-get.cc:2551
  1011. #, c-format
  1012. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1013. msgstr ""
  1014. "Ni mogoèe zadostiti %s odvisnosti za %s. Name¹èen paket %s je preveè nov"
  1015. #: cmdline/apt-get.cc:2578
  1016. #, c-format
  1017. msgid "Failed to satisfy %s dependency for %s: %s"
  1018. msgstr "Ni mogoèe zadostiti %s odvisnosti za %s. %s"
  1019. #: cmdline/apt-get.cc:2594
  1020. #, c-format
  1021. msgid "Build-dependencies for %s could not be satisfied."
  1022. msgstr "Odvisnostim za gradnjo %s ni mogoèe zadostiti."
  1023. #: cmdline/apt-get.cc:2599
  1024. msgid "Failed to process build dependencies"
  1025. msgstr "Obdelava odvisnosti za gradnjo ni uspela"
  1026. #: cmdline/apt-get.cc:2631
  1027. msgid "Supported modules:"
  1028. msgstr "Podprti moduli:"
  1029. #: cmdline/apt-get.cc:2672
  1030. #, fuzzy
  1031. msgid ""
  1032. "Usage: apt-get [options] command\n"
  1033. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1034. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1035. "\n"
  1036. "apt-get is a simple command line interface for downloading and\n"
  1037. "installing packages. The most frequently used commands are update\n"
  1038. "and install.\n"
  1039. "\n"
  1040. "Commands:\n"
  1041. " update - Retrieve new lists of packages\n"
  1042. " upgrade - Perform an upgrade\n"
  1043. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1044. " remove - Remove packages\n"
  1045. " autoremove - Remove automatically all unused packages\n"
  1046. " purge - Remove packages and config files\n"
  1047. " source - Download source archives\n"
  1048. " build-dep - Configure build-dependencies for source packages\n"
  1049. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1050. " dselect-upgrade - Follow dselect selections\n"
  1051. " clean - Erase downloaded archive files\n"
  1052. " autoclean - Erase old downloaded archive files\n"
  1053. " check - Verify that there are no broken dependencies\n"
  1054. "\n"
  1055. "Options:\n"
  1056. " -h This help text.\n"
  1057. " -q Loggable output - no progress indicator\n"
  1058. " -qq No output except for errors\n"
  1059. " -d Download only - do NOT install or unpack archives\n"
  1060. " -s No-act. Perform ordering simulation\n"
  1061. " -y Assume Yes to all queries and do not prompt\n"
  1062. " -f Attempt to correct a system with broken dependencies in place\n"
  1063. " -m Attempt to continue if archives are unlocatable\n"
  1064. " -u Show a list of upgraded packages as well\n"
  1065. " -b Build the source package after fetching it\n"
  1066. " -V Show verbose version numbers\n"
  1067. " -c=? Read this configuration file\n"
  1068. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1069. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1070. "pages for more information and options.\n"
  1071. " This APT has Super Cow Powers.\n"
  1072. msgstr ""
  1073. "Uporaba: apt-get [mo¾nosti] ukaz\n"
  1074. " apt-get [mo¾nosti] install|remove pak1 [pak2 ...]\n"
  1075. " apt-get [mo¾nosti] source pak1 [pak2 ...]\n"
  1076. "\n"
  1077. "apt-get je preprost vmesnik ukazne vrstice za prena¹anje in\n"
  1078. "name¹èanje paketov. Najpogosteje uporabljena ukaza sta update\n"
  1079. "in install.\n"
  1080. "\n"
  1081. "Ukazi:\n"
  1082. " update - Posodobi seznam paketov\n"
  1083. " upgrade - Izvedi nadgradnjo\n"
  1084. " install - Namesti nove pakete (pak je libc6 in ne libc6.deb)\n"
  1085. " remove - Odstrani pakete\n"
  1086. " source - Prenesi izvorne arhive\n"
  1087. " build-dep - Nastavi odvisnosti za gradnjo za izvorne pakete\n"
  1088. " dist-upgrade - Nadgradnja distribucije, glejte apt-get(8)\n"
  1089. " dselect-upgrade - Sledi izbiram dselecta\n"
  1090. " clean - Odstrani prene¹ene datoteke z arhivi\n"
  1091. " autoclean - Odstrani stare prene¹ene datoteke z arhivi\n"
  1092. " check - Preveri, da ni nobene pokvarjene odvisnosti\n"
  1093. "\n"
  1094. "Mo¾nosti:\n"
  1095. " -h To besedilo.\n"
  1096. " -q Dnevni¹ki izpis - brez kazalca napredka\n"
  1097. " -qq Brez izpisa, razen napak\n"
  1098. " -d Samo prenos - NE namesti in odpakira arhivov\n"
  1099. " -s Brez dejanj. Izvede simulacijo urejanja\n"
  1100. " -y Privzame Da za vse poizvedbe in ne spra¹uje\n"
  1101. " -f Poskusi nadaljevati, èe preskus celovitosti spodleti\n"
  1102. " -m Poskusi nadaljevati, èe ni mogoèe najti arhivov\n"
  1103. " -u Prika¾e tudi seznam nadgrajenih paketov\n"
  1104. " -b Ko dobi izvoren paket, ga zgradi\n"
  1105. " -V Prika¾e podrobne ¹tevilke razlièic\n"
  1106. " -c=? Prebere podano datoteko z nastavitvami\n"
  1107. " -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
  1108. "Za veè informacij in mo¾nosti si oglejte strani man apt-get(8),\n"
  1109. "sources.list(5) in apt.conf(5).\n"
  1110. " APT ima moè Super Krave.\n"
  1111. #: cmdline/apt-get.cc:2839
  1112. msgid ""
  1113. "NOTE: This is only a simulation!\n"
  1114. " apt-get needs root privileges for real execution.\n"
  1115. " Keep also in mind that locking is deactivated,\n"
  1116. " so don't depend on the relevance to the real current situation!"
  1117. msgstr ""
  1118. #: cmdline/acqprogress.cc:55
  1119. msgid "Hit "
  1120. msgstr "Zadetek "
  1121. #: cmdline/acqprogress.cc:79
  1122. msgid "Get:"
  1123. msgstr "Dobi:"
  1124. #: cmdline/acqprogress.cc:110
  1125. msgid "Ign "
  1126. msgstr "Prz "
  1127. #: cmdline/acqprogress.cc:114
  1128. msgid "Err "
  1129. msgstr "Nap "
  1130. #: cmdline/acqprogress.cc:135
  1131. #, c-format
  1132. msgid "Fetched %sB in %s (%sB/s)\n"
  1133. msgstr "Dobljenih %sB v %s (%sB/s)\n"
  1134. #: cmdline/acqprogress.cc:225
  1135. #, c-format
  1136. msgid " [Working]"
  1137. msgstr " [Delam]"
  1138. #: cmdline/acqprogress.cc:271
  1139. #, c-format
  1140. msgid ""
  1141. "Media change: please insert the disc labeled\n"
  1142. " '%s'\n"
  1143. "in the drive '%s' and press enter\n"
  1144. msgstr ""
  1145. "Sprememba medija: vstavite disk z oznako\n"
  1146. " '%s'\n"
  1147. "v enoto '%s' in pritisnite enter\n"
  1148. #: cmdline/apt-sortpkgs.cc:86
  1149. msgid "Unknown package record!"
  1150. msgstr "Neznan zapis paketa!"
  1151. #: cmdline/apt-sortpkgs.cc:150
  1152. msgid ""
  1153. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1154. "\n"
  1155. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1156. "to indicate what kind of file it is.\n"
  1157. "\n"
  1158. "Options:\n"
  1159. " -h This help text\n"
  1160. " -s Use source file sorting\n"
  1161. " -c=? Read this configuration file\n"
  1162. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1163. msgstr ""
  1164. "Uporaba: apt-sortpkgs [mo¾nosti] dat1 [dat2 ...]\n"
  1165. "\n"
  1166. "apt-sortpkgs je preprosto orodje za razvr¹èanje paketnih datotek. Mo¾nost -"
  1167. "s\n"
  1168. "doloèa vrsto datoteke.\n"
  1169. "\n"
  1170. "Mo¾nosti:\n"
  1171. " -h To besedilo\n"
  1172. " -s Uporabi razvr¹èanje izvornih datotek\n"
  1173. " -c=? Prebere podano datoteko z nastavitvami\n"
  1174. " -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
  1175. #: dselect/install:32
  1176. msgid "Bad default setting!"
  1177. msgstr "Napaèna privzeta nastavitev!"
  1178. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1179. #: dselect/install:105 dselect/update:45
  1180. msgid "Press enter to continue."
  1181. msgstr "Za nadaljevanje pritisnite enter."
  1182. #: dselect/install:91
  1183. msgid "Do you want to erase any previously downloaded .deb files?"
  1184. msgstr ""
  1185. #: dselect/install:101
  1186. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1187. msgstr "Med odpakiranjem je pri¹lo do napak. Nastavil bom"
  1188. #: dselect/install:102
  1189. msgid "packages that were installed. This may result in duplicate errors"
  1190. msgstr "pakete, ki so bili name¹èeni. To lahko privede do dvojnih napak"
  1191. #: dselect/install:103
  1192. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1193. msgstr ""
  1194. "ali do napak zaradi manjkajoèih odvisnosti. To je v redu, pomembne so samo "
  1195. "napake"
  1196. #: dselect/install:104
  1197. msgid ""
  1198. "above this message are important. Please fix them and run [I]nstall again"
  1199. msgstr "nad tem sporoèilom. Popravite jih in po¾enite Namest[I]tev ¹e enkrat"
  1200. #: dselect/update:30
  1201. msgid "Merging available information"
  1202. msgstr "Spajanje informacij na voljo"
  1203. #: apt-inst/contrib/extracttar.cc:114
  1204. msgid "Failed to create pipes"
  1205. msgstr "Ni mogoèe ustvariti pip"
  1206. #: apt-inst/contrib/extracttar.cc:141
  1207. msgid "Failed to exec gzip "
  1208. msgstr "Ni mogoèe izvesti gzip"
  1209. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1210. msgid "Corrupted archive"
  1211. msgstr "Pokvarjen arhiv"
  1212. #: apt-inst/contrib/extracttar.cc:193
  1213. msgid "Tar checksum failed, archive corrupted"
  1214. msgstr "Kontrolna vsota tar ni uspela, arhiv je pokvarjen"
  1215. #: apt-inst/contrib/extracttar.cc:296
  1216. #, c-format
  1217. msgid "Unknown TAR header type %u, member %s"
  1218. msgstr "Neznan tip glave TAR %u, èlan %s"
  1219. #: apt-inst/contrib/arfile.cc:70
  1220. msgid "Invalid archive signature"
  1221. msgstr "Napaèen podpis arhiva"
  1222. #: apt-inst/contrib/arfile.cc:78
  1223. msgid "Error reading archive member header"
  1224. msgstr "Napaka pri branju glave èlana arhiva"
  1225. #: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
  1226. msgid "Invalid archive member header"
  1227. msgstr "Napaèna glava èlana arhiva"
  1228. #: apt-inst/contrib/arfile.cc:128
  1229. msgid "Archive is too short"
  1230. msgstr "Arhiv je prekratek"
  1231. #: apt-inst/contrib/arfile.cc:132
  1232. msgid "Failed to read the archive headers"
  1233. msgstr "Glav arhiva ni mogoèe brati"
  1234. #: apt-inst/filelist.cc:380
  1235. msgid "DropNode called on still linked node"
  1236. msgstr "DropNode je poklical stabilno povezano vozli¹èe"
  1237. #: apt-inst/filelist.cc:412
  1238. msgid "Failed to locate the hash element!"
  1239. msgstr "Ni mogoèe najti razpr¹enega elementa!"
  1240. #: apt-inst/filelist.cc:459
  1241. msgid "Failed to allocate diversion"
  1242. msgstr "Ni mogoèe dodeliti odklona"
  1243. #: apt-inst/filelist.cc:464
  1244. msgid "Internal error in AddDiversion"
  1245. msgstr "Notranja napaka v AddDiversion"
  1246. #: apt-inst/filelist.cc:477
  1247. #, c-format
  1248. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1249. msgstr "Posku¹am prepisati odklon, %s -> %s in %s/%s"
  1250. #: apt-inst/filelist.cc:506
  1251. #, c-format
  1252. msgid "Double add of diversion %s -> %s"
  1253. msgstr "Dvojni se¹tevek odklona %s -> %s"
  1254. #: apt-inst/filelist.cc:549
  1255. #, c-format
  1256. msgid "Duplicate conf file %s/%s"
  1257. msgstr "Dvojnik datoteke z nastavitvami %s/%s"
  1258. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1259. #, fuzzy, c-format
  1260. msgid "Failed to write file %s"
  1261. msgstr "Napaka pri pisanju datoteke %s"
  1262. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1263. #, c-format
  1264. msgid "Failed to close file %s"
  1265. msgstr "Napaka pri zapiranju datoteke %s"
  1266. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1267. #, c-format
  1268. msgid "The path %s is too long"
  1269. msgstr "Pot %s je predolga"
  1270. #: apt-inst/extract.cc:124
  1271. #, c-format
  1272. msgid "Unpacking %s more than once"
  1273. msgstr "Odpakiranje %s veè kot enkrat"
  1274. #: apt-inst/extract.cc:134
  1275. #, c-format
  1276. msgid "The directory %s is diverted"
  1277. msgstr "Imenik %s je odklonjen"
  1278. #: apt-inst/extract.cc:144
  1279. #, c-format
  1280. msgid "The package is trying to write to the diversion target %s/%s"
  1281. msgstr "Paket posku¹a pisati v tarèo odklona %s/%s"
  1282. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1283. msgid "The diversion path is too long"
  1284. msgstr "Pot odklona je predloga"
  1285. #: apt-inst/extract.cc:240
  1286. #, c-format
  1287. msgid "The directory %s is being replaced by a non-directory"
  1288. msgstr "Imenik %s je bil zamenjan z ne-imenikom"
  1289. #: apt-inst/extract.cc:280
  1290. msgid "Failed to locate node in its hash bucket"
  1291. msgstr "Iskanje vozli¹èa v njegovem razpr¹enem vedru ni uspelo"
  1292. #: apt-inst/extract.cc:284
  1293. msgid "The path is too long"
  1294. msgstr "Pot je predolga"
  1295. #: apt-inst/extract.cc:414
  1296. #, c-format
  1297. msgid "Overwrite package match with no version for %s"
  1298. msgstr "Prepi¹i zadetek paketa brez vnosa razlièice za %s"
  1299. #: apt-inst/extract.cc:431
  1300. #, c-format
  1301. msgid "File %s/%s overwrites the one in the package %s"
  1302. msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s"
  1303. #. Only warn if there are no sources.list.d.
  1304. #. Only warn if there is no sources.list file.
  1305. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:822
  1306. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1307. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1308. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1309. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1310. #, c-format
  1311. msgid "Unable to read %s"
  1312. msgstr "Ni mogoèe brati %s"
  1313. #: apt-inst/extract.cc:491
  1314. #, c-format
  1315. msgid "Unable to stat %s"
  1316. msgstr "Ni mogoèe doloèiti %s"
  1317. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1318. #, c-format
  1319. msgid "Failed to remove %s"
  1320. msgstr "Odstranitev %s ni uspela"
  1321. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1322. #, c-format
  1323. msgid "Unable to create %s"
  1324. msgstr "Ni mogoèe ustvariti %s"
  1325. #: apt-inst/deb/dpkgdb.cc:114
  1326. #, c-format
  1327. msgid "Failed to stat %sinfo"
  1328. msgstr "Doloèitev %sinfo ni uspela"
  1329. #: apt-inst/deb/dpkgdb.cc:119
  1330. msgid "The info and temp directories need to be on the same filesystem"
  1331. msgstr "Podatki in zaèasni imeniki morajo biti v istem datoteènem sistemu"
  1332. #. Build the status cache
  1333. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1334. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1335. #: apt-pkg/pkgcachegen.cc:961
  1336. msgid "Reading package lists"
  1337. msgstr "Branje seznama paketov"
  1338. #: apt-inst/deb/dpkgdb.cc:176
  1339. #, c-format
  1340. msgid "Failed to change to the admin dir %sinfo"
  1341. msgstr "Premik v skrbnikov imenik %sinfo ni uspel"
  1342. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1343. #: apt-inst/deb/dpkgdb.cc:444
  1344. msgid "Internal error getting a package name"
  1345. msgstr "Notranja napaka pri sprejemanju imena paketa"
  1346. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1347. msgid "Reading file listing"
  1348. msgstr "Branje seznama datotek"
  1349. #: apt-inst/deb/dpkgdb.cc:212
  1350. #, c-format
  1351. msgid ""
  1352. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1353. "then make it empty and immediately re-install the same version of the "
  1354. "package!"
  1355. msgstr ""
  1356. "Odpiranje datoteke s seznamom '%sinfo/%s' ni uspelo. Èe ne morete povrniti "
  1357. "datoteke, jo izpraznite in takoj ponovno namestite enako razlièico paketa!"
  1358. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1359. #, c-format
  1360. msgid "Failed reading the list file %sinfo/%s"
  1361. msgstr "Branje datoteke s seznamom %sinfo/%s ni uspelo"
  1362. #: apt-inst/deb/dpkgdb.cc:262
  1363. msgid "Internal error getting a node"
  1364. msgstr "Notranja napaka pri sprejemanju vozli¹èa"
  1365. #: apt-inst/deb/dpkgdb.cc:305
  1366. #, c-format
  1367. msgid "Failed to open the diversions file %sdiversions"
  1368. msgstr "Odpiranje datoteke z odklonom %sdiversions ni uspelo"
  1369. #: apt-inst/deb/dpkgdb.cc:320
  1370. msgid "The diversion file is corrupted"
  1371. msgstr "Datoteka z odklonom je pokvarjena"
  1372. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1373. #: apt-inst/deb/dpkgdb.cc:337
  1374. #, c-format
  1375. msgid "Invalid line in the diversion file: %s"
  1376. msgstr "Napaèna vrstica v datoteki z odklonom: %s"
  1377. #: apt-inst/deb/dpkgdb.cc:358
  1378. msgid "Internal error adding a diversion"
  1379. msgstr "Notranja napaka pri dodajanju odklona"
  1380. #: apt-inst/deb/dpkgdb.cc:379
  1381. msgid "The pkg cache must be initialized first"
  1382. msgstr "Najprej se mora izvesti predpomnilnik paketov"
  1383. #: apt-inst/deb/dpkgdb.cc:439
  1384. #, c-format
  1385. msgid "Failed to find a Package: header, offset %lu"
  1386. msgstr "Napaka pri iskanju paketa: glava, odmik %lu"
  1387. #: apt-inst/deb/dpkgdb.cc:461
  1388. #, c-format
  1389. msgid "Bad ConfFile section in the status file. Offset %lu"
  1390. msgstr "Napaèna izbira ConfFile v datoteki stanja. Odmik %lu"
  1391. #: apt-inst/deb/dpkgdb.cc:466
  1392. #, c-format
  1393. msgid "Error parsing MD5. Offset %lu"
  1394. msgstr "Napaka pri razèlenjevanju MD5. Odmik %lu"
  1395. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1396. #, c-format
  1397. msgid "This is not a valid DEB archive, missing '%s' member"
  1398. msgstr "To ni veljaven arhiv DEB. Manjka èlan '%s'."
  1399. #: apt-inst/deb/debfile.cc:50
  1400. #, fuzzy, c-format
  1401. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1402. msgstr "To ni veljaven arhiv DEB. Manjka èlan '%s' ali '%s'."
  1403. #: apt-inst/deb/debfile.cc:110
  1404. #, c-format
  1405. msgid "Couldn't change to %s"
  1406. msgstr "Ni mogoèe spremeniti v %s"
  1407. #: apt-inst/deb/debfile.cc:140
  1408. msgid "Internal error, could not locate member"
  1409. msgstr "Notranja napaka. Ni mogoèe najti èlana."
  1410. #: apt-inst/deb/debfile.cc:173
  1411. msgid "Failed to locate a valid control file"
  1412. msgstr "Ni mogoèe najti veljavne nadzorne datoteka"
  1413. #: apt-inst/deb/debfile.cc:258
  1414. msgid "Unparsable control file"
  1415. msgstr "Nadzorne datoteke ni mogoèe razèleniti"
  1416. #: methods/cdrom.cc:200
  1417. #, c-format
  1418. msgid "Unable to read the cdrom database %s"
  1419. msgstr "Ni mogoèe brati zbirke %s na CD-ROM-u"
  1420. #: methods/cdrom.cc:209
  1421. msgid ""
  1422. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1423. "cannot be used to add new CD-ROMs"
  1424. msgstr ""
  1425. "Uporabite apt-cdrom, èe ¾elite, da APT prepozna CD. apt-get update ne more "
  1426. "sam dodati novih CD-jev"
  1427. #: methods/cdrom.cc:219
  1428. msgid "Wrong CD-ROM"
  1429. msgstr "Napaèen C"
  1430. #: methods/cdrom.cc:245
  1431. #, c-format
  1432. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1433. msgstr "Ni mogoèe odklopiti CD-ROM-a v %s, ker je morda ¹e v uporabi."
  1434. #: methods/cdrom.cc:250
  1435. #, fuzzy
  1436. msgid "Disk not found."
  1437. msgstr "Datoteke ni mogoèe najti"
  1438. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1439. msgid "File not found"
  1440. msgstr "Datoteke ni mogoèe najti"
  1441. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1442. #: methods/rred.cc:234 methods/rred.cc:243
  1443. msgid "Failed to stat"
  1444. msgstr "Doloèitev ni uspela"
  1445. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1446. msgid "Failed to set modification time"
  1447. msgstr "Nastavitev èasa spremembe ni uspela"
  1448. #: methods/file.cc:44
  1449. msgid "Invalid URI, local URIS must not start with //"
  1450. msgstr "Napaèen URI. Lokalni URI-ji se morajo zaèeti z /"
  1451. #. Login must be before getpeername otherwise dante won't work.
  1452. #: methods/ftp.cc:167
  1453. msgid "Logging in"
  1454. msgstr "Prijavljam se"
  1455. #: methods/ftp.cc:173
  1456. msgid "Unable to determine the peer name"
  1457. msgstr "Ni mogoèe ugotoviti imena gostitelja"
  1458. #: methods/ftp.cc:178
  1459. msgid "Unable to determine the local name"
  1460. msgstr "Ni mogoèe ugotoviti lokalnega imena"
  1461. #: methods/ftp.cc:209 methods/ftp.cc:237
  1462. #, c-format
  1463. msgid "The server refused the connection and said: %s"
  1464. msgstr "Stre¾nik je zavrnil na¹o povezavo in sporoèil: %s"
  1465. #: methods/ftp.cc:215
  1466. #, c-format
  1467. msgid "USER failed, server said: %s"
  1468. msgstr "USER ni uspel, stre¾nik je odgovoril: %s"
  1469. #: methods/ftp.cc:222
  1470. #, c-format
  1471. msgid "PASS failed, server said: %s"
  1472. msgstr "PASS ni uspel, stre¾nik je odgovoril: %s"
  1473. #: methods/ftp.cc:242
  1474. msgid ""
  1475. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1476. "is empty."
  1477. msgstr ""
  1478. "Naveden je bil proxy-stre¾nik, ne pa tudi prijavna skripta. Acquire::ftp::"
  1479. "ProxyLogin je prazen."
  1480. #: methods/ftp.cc:270
  1481. #, c-format
  1482. msgid "Login script command '%s' failed, server said: %s"
  1483. msgstr "Ukaz prijavne skripte '%s' ni uspel, stre¾nik je odgovoril: %s"
  1484. #: methods/ftp.cc:296
  1485. #, c-format
  1486. msgid "TYPE failed, server said: %s"
  1487. msgstr "TYPE ni uspel, stre¾nik je odgovoril: %s"
  1488. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1489. msgid "Connection timeout"
  1490. msgstr "Povezava potekla"
  1491. #: methods/ftp.cc:340
  1492. msgid "Server closed the connection"
  1493. msgstr "Stre¾nik je zaprl povezavo"
  1494. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1495. msgid "Read error"
  1496. msgstr "Napaka pri branju"
  1497. #: methods/ftp.cc:350 methods/rsh.cc:197
  1498. msgid "A response overflowed the buffer."
  1499. msgstr "Odgovor je prekoraèil vmesnik."
  1500. #: methods/ftp.cc:367 methods/ftp.cc:379
  1501. msgid "Protocol corruption"
  1502. msgstr "Okvara protokola"
  1503. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1504. msgid "Write error"
  1505. msgstr "Napaka pri pisanju"
  1506. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1507. msgid "Could not create a socket"
  1508. msgstr "Ni mogoèe ustvariti vtiènice"
  1509. #: methods/ftp.cc:703
  1510. msgid "Could not connect data socket, connection timed out"
  1511. msgstr "Ni mogoèe priklopiti podatkovne vtiènice. Povezava potekla."
  1512. #: methods/ftp.cc:709
  1513. msgid "Could not connect passive socket."
  1514. msgstr "Ni mogoèe priklopiti pasivne vtiènice."
  1515. #: methods/ftp.cc:727
  1516. msgid "getaddrinfo was unable to get a listening socket"
  1517. msgstr "getaddrinfo ni mogel dobiti poslu¹ajoèe vtiènice"
  1518. #: methods/ftp.cc:741
  1519. msgid "Could not bind a socket"
  1520. msgstr "Ni mogoèe povezati vtiènice"
  1521. #: methods/ftp.cc:745
  1522. msgid "Could not listen on the socket"
  1523. msgstr "Ni mogoèe poslu¹ati na vtiènici"
  1524. #: methods/ftp.cc:752
  1525. msgid "Could not determine the socket's name"
  1526. msgstr "Ni mogoèe ugotoviti imena vtiènice"
  1527. #: methods/ftp.cc:784
  1528. msgid "Unable to send PORT command"
  1529. msgstr "Ni mogoèe poslati ukaza PORT"
  1530. #: methods/ftp.cc:794
  1531. #, c-format
  1532. msgid "Unknown address family %u (AF_*)"
  1533. msgstr "Neznan naslov dru¾ine %u (AF_*)"
  1534. #: methods/ftp.cc:803
  1535. #, c-format
  1536. msgid "EPRT failed, server said: %s"
  1537. msgstr "EPRT ni uspel, stre¾nik je odgovoril: %s"
  1538. #: methods/ftp.cc:823
  1539. msgid "Data socket connect timed out"
  1540. msgstr "Povezava podatkovne vtiènice potekla"
  1541. #: methods/ftp.cc:830
  1542. msgid "Unable to accept connection"
  1543. msgstr "Ni mogoèe sprejeti povezave"
  1544. #: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303
  1545. msgid "Problem hashing file"
  1546. msgstr "Te¾ava pri razpr¹evanju datoteke"
  1547. #: methods/ftp.cc:882
  1548. #, c-format
  1549. msgid "Unable to fetch file, server said '%s'"
  1550. msgstr "Ni mogoèe dobiti datoteke, stre¾nik je odgovoril '%s'"
  1551. #: methods/ftp.cc:897 methods/rsh.cc:322
  1552. msgid "Data socket timed out"
  1553. msgstr "Podatkovna vtiènica je potekla"
  1554. #: methods/ftp.cc:927
  1555. #, c-format
  1556. msgid "Data transfer failed, server said '%s'"
  1557. msgstr "Prenos podatkov ni uspel, stre¾nik je odgovoril '%s'"
  1558. #. Get the files information
  1559. #: methods/ftp.cc:1002
  1560. msgid "Query"
  1561. msgstr "Poizvedba"
  1562. #: methods/ftp.cc:1114
  1563. msgid "Unable to invoke "
  1564. msgstr "Ni mogoèe zagnati "
  1565. #: methods/connect.cc:70
  1566. #, c-format
  1567. msgid "Connecting to %s (%s)"
  1568. msgstr "Povezovanje z %s (%s)"
  1569. #: methods/connect.cc:81
  1570. #, c-format
  1571. msgid "[IP: %s %s]"
  1572. msgstr "[IP: %s %s]"
  1573. #: methods/connect.cc:90
  1574. #, c-format
  1575. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1576. msgstr "Ni mogoèe ustvariti vtiènice za %s (f=%u t=%u p=%u)"
  1577. #: methods/connect.cc:96
  1578. #, c-format
  1579. msgid "Cannot initiate the connection to %s:%s (%s)."
  1580. msgstr "Ni mogoèe zaèeti povezave z %s:%s (%s)."
  1581. #: methods/connect.cc:104
  1582. #, c-format
  1583. msgid "Could not connect to %s:%s (%s), connection timed out"
  1584. msgstr "Ni se mogoèe povezati z %s:%s (%s). Povezava potekla."
  1585. #: methods/connect.cc:119
  1586. #, c-format
  1587. msgid "Could not connect to %s:%s (%s)."
  1588. msgstr "Ni se mogoèe povezati z %s:%s (%s)."
  1589. #. We say this mainly because the pause here is for the
  1590. #. ssh connection that is still going
  1591. #: methods/connect.cc:147 methods/rsh.cc:425
  1592. #, c-format
  1593. msgid "Connecting to %s"
  1594. msgstr "Povezujem se z %s"
  1595. #: methods/connect.cc:165 methods/connect.cc:184
  1596. #, c-format
  1597. msgid "Could not resolve '%s'"
  1598. msgstr "Ni mogoèe razre¹iti '%s'"
  1599. #: methods/connect.cc:190
  1600. #, c-format
  1601. msgid "Temporary failure resolving '%s'"
  1602. msgstr "Zaèasna napaka pri razre¹evanju '%s'"
  1603. #: methods/connect.cc:193
  1604. #, c-format
  1605. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1606. msgstr "Pri¹lo je do napake pri razre¹evanju '%s:%s' (%i)"
  1607. #: methods/connect.cc:240
  1608. #, c-format
  1609. msgid "Unable to connect to %s %s:"
  1610. msgstr "Ni se mogoèe povezati z %s %s:"
  1611. #: methods/gpgv.cc:71
  1612. #, fuzzy, c-format
  1613. msgid "Couldn't access keyring: '%s'"
  1614. msgstr "Ni mogoèe razre¹iti '%s'"
  1615. #: methods/gpgv.cc:107
  1616. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1617. msgstr ""
  1618. #: methods/gpgv.cc:223
  1619. msgid ""
  1620. "Internal error: Good signature, but could not determine key fingerprint?!"
  1621. msgstr ""
  1622. #: methods/gpgv.cc:228
  1623. msgid "At least one invalid signature was encountered."
  1624. msgstr ""
  1625. #: methods/gpgv.cc:232
  1626. #, c-format
  1627. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1628. msgstr ""
  1629. #: methods/gpgv.cc:237
  1630. msgid "Unknown error executing gpgv"
  1631. msgstr ""
  1632. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1633. #, fuzzy
  1634. msgid "The following signatures were invalid:\n"
  1635. msgstr "Naslednji dodatni paketi bodo name¹èeni:"
  1636. #: methods/gpgv.cc:285
  1637. msgid ""
  1638. "The following signatures couldn't be verified because the public key is not "
  1639. "available:\n"
  1640. msgstr ""
  1641. #: methods/gzip.cc:64
  1642. #, c-format
  1643. msgid "Couldn't open pipe for %s"
  1644. msgstr "Ni mogoèe odprti %s"
  1645. #: methods/gzip.cc:109
  1646. #, c-format
  1647. msgid "Read error from %s process"
  1648. msgstr "Napaka pri branju iz procesa %s"
  1649. #: methods/http.cc:384
  1650. msgid "Waiting for headers"
  1651. msgstr "Èakanje na glave"
  1652. #: methods/http.cc:530
  1653. #, c-format
  1654. msgid "Got a single header line over %u chars"
  1655. msgstr "Dobljena je ena vrstica glave preko %u znakov"
  1656. #: methods/http.cc:538
  1657. msgid "Bad header line"
  1658. msgstr "Napaèna vrstica glave"
  1659. #: methods/http.cc:557 methods/http.cc:564
  1660. msgid "The HTTP server sent an invalid reply header"
  1661. msgstr "Stre¾nik HTTP je poslal napaèno glavo odgovora"
  1662. #: methods/http.cc:593
  1663. msgid "The HTTP server sent an invalid Content-Length header"
  1664. msgstr "Stre¾nik HTTP je poslal glavo z napaèno dol¾ino vsebine"
  1665. #: methods/http.cc:608
  1666. msgid "The HTTP server sent an invalid Content-Range header"
  1667. msgstr "Stre¾nik HTTP je poslal glavo z napaènim obsegom vsebine"
  1668. #: methods/http.cc:610
  1669. msgid "This HTTP server has broken range support"
  1670. msgstr "Ta stre¾nik HTTP ima pokvarjen obseg podpore"
  1671. #: methods/http.cc:634
  1672. msgid "Unknown date format"
  1673. msgstr "Neznana oblika datuma"
  1674. #: methods/http.cc:787
  1675. msgid "Select failed"
  1676. msgstr "Izbira ni uspela"
  1677. #: methods/http.cc:792
  1678. msgid "Connection timed out"
  1679. msgstr "Èas za povezavo se je iztekel"
  1680. #: methods/http.cc:815
  1681. msgid "Error writing to output file"
  1682. msgstr "Napaka pri pisanju v izhodno datoteko"
  1683. #: methods/http.cc:846
  1684. msgid "Error writing to file"
  1685. msgstr "Napaka pri pisanju v datoteko"
  1686. #: methods/http.cc:874
  1687. msgid "Error writing to the file"
  1688. msgstr "Napaka pri pisanju v datoteko"
  1689. #: methods/http.cc:888
  1690. msgid "Error reading from server. Remote end closed connection"
  1691. msgstr "Napaka pri branju oddaljene in zaprte povezave s stre¾nika "
  1692. #: methods/http.cc:890
  1693. msgid "Error reading from server"
  1694. msgstr "Napaka pri branju s stre¾nika"
  1695. #: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215
  1696. #, fuzzy
  1697. msgid "Failed to truncate file"
  1698. msgstr "Napaka pri pisanju datoteke %s"
  1699. #: methods/http.cc:1146
  1700. msgid "Bad header data"
  1701. msgstr "Napaèni podatki glave"
  1702. #: methods/http.cc:1163 methods/http.cc:1218
  1703. msgid "Connection failed"
  1704. msgstr "Povezava ni uspela"
  1705. #: methods/http.cc:1310
  1706. msgid "Internal error"
  1707. msgstr "Notranja napaka"
  1708. #: apt-pkg/contrib/mmap.cc:76
  1709. msgid "Can't mmap an empty file"
  1710. msgstr "mmap prazne datoteke ni mogoè"
  1711. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187
  1712. #, c-format
  1713. msgid "Couldn't make mmap of %lu bytes"
  1714. msgstr "Ni mogoèe narediti mmap %lu bajtov"
  1715. #: apt-pkg/contrib/mmap.cc:234
  1716. #, c-format
  1717. msgid ""
  1718. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1719. "Current value: %lu. (man 5 apt.conf)"
  1720. msgstr ""
  1721. #. d means days, h means hours, min means minutes, s means seconds
  1722. #: apt-pkg/contrib/strutl.cc:335
  1723. #, c-format
  1724. msgid "%lid %lih %limin %lis"
  1725. msgstr ""
  1726. #. h means hours, min means minutes, s means seconds
  1727. #: apt-pkg/contrib/strutl.cc:342
  1728. #, c-format
  1729. msgid "%lih %limin %lis"
  1730. msgstr ""
  1731. #. min means minutes, s means seconds
  1732. #: apt-pkg/contrib/strutl.cc:349
  1733. #, c-format
  1734. msgid "%limin %lis"
  1735. msgstr ""
  1736. #. s means seconds
  1737. #: apt-pkg/contrib/strutl.cc:354
  1738. #, c-format
  1739. msgid "%lis"
  1740. msgstr ""
  1741. #: apt-pkg/contrib/strutl.cc:1029
  1742. #, c-format
  1743. msgid "Selection %s not found"
  1744. msgstr "Izbira %s ni mogoèe najti"
  1745. #: apt-pkg/contrib/configuration.cc:439
  1746. #, c-format
  1747. msgid "Unrecognized type abbreviation: '%c'"
  1748. msgstr "Ne-prepoznan tip okraj¹ave: '%c'"
  1749. #: apt-pkg/contrib/configuration.cc:497
  1750. #, c-format
  1751. msgid "Opening configuration file %s"
  1752. msgstr "Odpiranje nastavitvene datoteke %s"
  1753. #: apt-pkg/contrib/configuration.cc:663
  1754. #, c-format
  1755. msgid "Syntax error %s:%u: Block starts with no name."
  1756. msgstr "Skladenjska napaka %s:%u: Blok se zaène brez imena."
  1757. #: apt-pkg/contrib/configuration.cc:682
  1758. #, c-format
  1759. msgid "Syntax error %s:%u: Malformed tag"
  1760. msgstr "Skladenjska napaka %s:%u: Nepravilna znaèka."
  1761. #: apt-pkg/contrib/configuration.cc:699
  1762. #, c-format
  1763. msgid "Syntax error %s:%u: Extra junk after value"
  1764. msgstr "Skladenjska napaka %s:%u: Dodatno smetje za vrednostjo."
  1765. #: apt-pkg/contrib/configuration.cc:739
  1766. #, c-format
  1767. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1768. msgstr ""
  1769. "Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnjem nivoju."
  1770. #: apt-pkg/contrib/configuration.cc:746
  1771. #, c-format
  1772. msgid "Syntax error %s:%u: Too many nested includes"
  1773. msgstr "Skladenjska napaka %s:%u: Preveè ugnezdenih vkljuèitev."
  1774. #: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755
  1775. #, c-format
  1776. msgid "Syntax error %s:%u: Included from here"
  1777. msgstr "Skladenjska napaka %s:%u: Vkljuèen od tu."
  1778. #: apt-pkg/contrib/configuration.cc:759
  1779. #, c-format
  1780. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1781. msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'"
  1782. #: apt-pkg/contrib/configuration.cc:810
  1783. #, c-format
  1784. msgid "Syntax error %s:%u: Extra junk at end of file"
  1785. msgstr "Skladenjska napaka %s:%u: Dodatno smetje na koncu datoteke"
  1786. #: apt-pkg/contrib/progress.cc:153
  1787. #, c-format
  1788. msgid "%c%s... Error!"
  1789. msgstr "%c%s ... Napaka!"
  1790. #: apt-pkg/contrib/progress.cc:155
  1791. #, c-format
  1792. msgid "%c%s... Done"
  1793. msgstr "%c%s... Narejeno"
  1794. #: apt-pkg/contrib/cmndline.cc:77
  1795. #, c-format
  1796. msgid "Command line option '%c' [from %s] is not known."
  1797. msgstr "Mo¾nost ukazne vrstice '%c' [iz %s] ni poznana."
  1798. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1799. #: apt-pkg/contrib/cmndline.cc:119
  1800. #, c-format
  1801. msgid "Command line option %s is not understood"
  1802. msgstr "Ne razumem mo¾nosti ukazne vrstice %s"
  1803. #: apt-pkg/contrib/cmndline.cc:124
  1804. #, c-format
  1805. msgid "Command line option %s is not boolean"
  1806. msgstr "Mo¾nost ukazne vrstice %s ni boolean"
  1807. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1808. #, c-format
  1809. msgid "Option %s requires an argument."
  1810. msgstr "Mo¾nost %s zahteva argument."
  1811. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1812. #, c-format
  1813. msgid "Option %s: Configuration item specification must have an =<val>."
  1814. msgstr "Mo¾nost %s: Podrobnosti predmeta za nastavitve potrebujejo =<val>."
  1815. #: apt-pkg/contrib/cmndline.cc:234
  1816. #, c-format
  1817. msgid "Option %s requires an integer argument, not '%s'"
  1818. msgstr "Mo¾nost %s zahteva celo¹tevilski argument, ne '%s'"
  1819. #: apt-pkg/contrib/cmndline.cc:265
  1820. #, c-format
  1821. msgid "Option '%s' is too long"
  1822. msgstr "Mo¾nost '%s' je predolga"
  1823. #: apt-pkg/contrib/cmndline.cc:298
  1824. #, c-format
  1825. msgid "Sense %s is not understood, try true or false."
  1826. msgstr "Pomena %s ni mogoèe razumeti, poskusite pravilno ali napaèno."
  1827. #: apt-pkg/contrib/cmndline.cc:348
  1828. #, c-format
  1829. msgid "Invalid operation %s"
  1830. msgstr "Napaèna operacija %s"
  1831. #: apt-pkg/contrib/cdromutl.cc:52
  1832. #, c-format
  1833. msgid "Unable to stat the mount point %s"
  1834. msgstr "Ni mogoèe doloèiti priklopne toèke %s"
  1835. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1836. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1837. #, c-format
  1838. msgid "Unable to change to %s"
  1839. msgstr "Ni mogoèe spremeniti v %s"
  1840. #: apt-pkg/contrib/cdromutl.cc:195
  1841. msgid "Failed to stat the cdrom"
  1842. msgstr "Ni mogoèe doloèiti CD-ROM-a"
  1843. #: apt-pkg/contrib/fileutl.cc:149
  1844. #, c-format
  1845. msgid "Not using locking for read only lock file %s"
  1846. msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko samo za branje %s"
  1847. #: apt-pkg/contrib/fileutl.cc:154
  1848. #, c-format
  1849. msgid "Could not open lock file %s"
  1850. msgstr "Ni mogoèe odprti zaklenjene datoteke %s"
  1851. #: apt-pkg/contrib/fileutl.cc:172
  1852. #, c-format
  1853. msgid "Not using locking for nfs mounted lock file %s"
  1854. msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS"
  1855. #: apt-pkg/contrib/fileutl.cc:176
  1856. #, c-format
  1857. msgid "Could not get lock %s"
  1858. msgstr "Ni mogoèe dobiti zaklenjene datoteke %s"
  1859. #: apt-pkg/contrib/fileutl.cc:444
  1860. #, c-format
  1861. msgid "Waited for %s but it wasn't there"
  1862. msgstr "Èakal, a %s ni bil tam"
  1863. #: apt-pkg/contrib/fileutl.cc:456
  1864. #, c-format
  1865. msgid "Sub-process %s received a segmentation fault."
  1866. msgstr "Napaka pri razèlenjenosti podprocesa %s."
  1867. #: apt-pkg/contrib/fileutl.cc:458
  1868. #, fuzzy, c-format
  1869. msgid "Sub-process %s received signal %u."
  1870. msgstr "Napaka pri razèlenjenosti podprocesa %s."
  1871. #: apt-pkg/contrib/fileutl.cc:462
  1872. #, c-format
  1873. msgid "Sub-process %s returned an error code (%u)"
  1874. msgstr "Podproces %s je vrnil kodo napake (%u)"
  1875. #: apt-pkg/contrib/fileutl.cc:464
  1876. #, c-format
  1877. msgid "Sub-process %s exited unexpectedly"
  1878. msgstr "Podproces %s se je neprièakovano zakljuèil"
  1879. #: apt-pkg/contrib/fileutl.cc:508
  1880. #, c-format
  1881. msgid "Could not open file %s"
  1882. msgstr "Ne morem odpreti datoteke %s"
  1883. #: apt-pkg/contrib/fileutl.cc:564
  1884. #, c-format
  1885. msgid "read, still have %lu to read but none left"
  1886. msgstr "berem, ¹e vedno %lu za branje, a nobeden ostal"
  1887. #: apt-pkg/contrib/fileutl.cc:594
  1888. #, c-format
  1889. msgid "write, still have %lu to write but couldn't"
  1890. msgstr "pi¹em, ¹e vedno %lu za pisanje, a ni mogoèe"
  1891. #: apt-pkg/contrib/fileutl.cc:669
  1892. msgid "Problem closing the file"
  1893. msgstr "Te¾ava pri zapiranju datoteke"
  1894. #: apt-pkg/contrib/fileutl.cc:675
  1895. msgid "Problem unlinking the file"
  1896. msgstr "Te¾ava pri odvezovanju datoteke"
  1897. #: apt-pkg/contrib/fileutl.cc:686
  1898. msgid "Problem syncing the file"
  1899. msgstr "Te¾ava pri usklajevanju datoteke"
  1900. #: apt-pkg/pkgcache.cc:133
  1901. msgid "Empty package cache"
  1902. msgstr "Prazen predpomnilnik paketov"
  1903. #: apt-pkg/pkgcache.cc:139
  1904. msgid "The package cache file is corrupted"
  1905. msgstr "Datoteka s predpomnilnikom paketov je pokvarjena"
  1906. #: apt-pkg/pkgcache.cc:144
  1907. msgid "The package cache file is an incompatible version"
  1908. msgstr "Razlièica datoteke s predpomnilnikom paketov ni ustrezna"
  1909. #: apt-pkg/pkgcache.cc:149
  1910. #, c-format
  1911. msgid "This APT does not support the versioning system '%s'"
  1912. msgstr "Ta APT ne podpira sistema razlièic '%s'"
  1913. #: apt-pkg/pkgcache.cc:154
  1914. msgid "The package cache was built for a different architecture"
  1915. msgstr "Predpomnilnik paketov je bil zgrajen za drugaèno arhitekturo"
  1916. #: apt-pkg/pkgcache.cc:225
  1917. msgid "Depends"
  1918. msgstr "Odvisen od"
  1919. #: apt-pkg/pkgcache.cc:225
  1920. msgid "PreDepends"
  1921. msgstr "Predodvisnost"
  1922. #: apt-pkg/pkgcache.cc:225
  1923. msgid "Suggests"
  1924. msgstr "Priporoèa"
  1925. #: apt-pkg/pkgcache.cc:226
  1926. msgid "Recommends"
  1927. msgstr "Priporoèa"
  1928. #: apt-pkg/pkgcache.cc:226
  1929. msgid "Conflicts"
  1930. msgstr "V sporu z"
  1931. #: apt-pkg/pkgcache.cc:226
  1932. msgid "Replaces"
  1933. msgstr "Zamenja"
  1934. #: apt-pkg/pkgcache.cc:227
  1935. msgid "Obsoletes"
  1936. msgstr "Zastarani"
  1937. #: apt-pkg/pkgcache.cc:227
  1938. msgid "Breaks"
  1939. msgstr ""
  1940. #: apt-pkg/pkgcache.cc:227
  1941. msgid "Enhances"
  1942. msgstr ""
  1943. #: apt-pkg/pkgcache.cc:238
  1944. msgid "important"
  1945. msgstr "pomembno"
  1946. #: apt-pkg/pkgcache.cc:238
  1947. msgid "required"
  1948. msgstr "obvezno"
  1949. #: apt-pkg/pkgcache.cc:238
  1950. msgid "standard"
  1951. msgstr "standardno"
  1952. #: apt-pkg/pkgcache.cc:239
  1953. msgid "optional"
  1954. msgstr "izbirno"
  1955. #: apt-pkg/pkgcache.cc:239
  1956. msgid "extra"
  1957. msgstr "dodatno"
  1958. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  1959. msgid "Building dependency tree"
  1960. msgstr "Gradnja drevesa odvisnosti"
  1961. #: apt-pkg/depcache.cc:124
  1962. msgid "Candidate versions"
  1963. msgstr "Razlièice kandidatov"
  1964. #: apt-pkg/depcache.cc:153
  1965. msgid "Dependency generation"
  1966. msgstr "Ustvarjanje odvisnosti"
  1967. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  1968. #, fuzzy
  1969. msgid "Reading state information"
  1970. msgstr "Spajanje informacij na voljo"
  1971. #: apt-pkg/depcache.cc:223
  1972. #, fuzzy, c-format
  1973. msgid "Failed to open StateFile %s"
  1974. msgstr "Ni mogoèe odprti %s"
  1975. #: apt-pkg/depcache.cc:229
  1976. #, fuzzy, c-format
  1977. msgid "Failed to write temporary StateFile %s"
  1978. msgstr "Napaka pri pisanju datoteke %s"
  1979. #: apt-pkg/tagfile.cc:102
  1980. #, c-format
  1981. msgid "Unable to parse package file %s (1)"
  1982. msgstr "Ni mogoèe razèleniti paketne datoteke %s (1)"
  1983. #: apt-pkg/tagfile.cc:189
  1984. #, c-format
  1985. msgid "Unable to parse package file %s (2)"
  1986. msgstr "Ni mogoèe razèleniti paketne datoteke %s (2)"
  1987. #: apt-pkg/sourcelist.cc:90
  1988. #, c-format
  1989. msgid "Malformed line %lu in source list %s (URI)"
  1990. msgstr "Napaèna vrstica %lu v seznamu virov %s (URI)"
  1991. #: apt-pkg/sourcelist.cc:92
  1992. #, c-format
  1993. msgid "Malformed line %lu in source list %s (dist)"
  1994. msgstr "Napaèna vrstica %lu v seznamu virov %s (distribucija)"
  1995. #: apt-pkg/sourcelist.cc:95
  1996. #, c-format
  1997. msgid "Malformed line %lu in source list %s (URI parse)"
  1998. msgstr "Napaèna vrstica %lu v seznamu virov %s (razèlenitev URI)"
  1999. #: apt-pkg/sourcelist.cc:101
  2000. #, c-format
  2001. msgid "Malformed line %lu in source list %s (absolute dist)"
  2002. msgstr "Napaèna vrstica %lu v seznamu virov %s (absolutna distribucija)"
  2003. #: apt-pkg/sourcelist.cc:108
  2004. #, c-format
  2005. msgid "Malformed line %lu in source list %s (dist parse)"
  2006. msgstr "Napaèna vrstica %lu v seznamu virov %s (razèlenitev distribucije)"
  2007. #: apt-pkg/sourcelist.cc:206
  2008. #, c-format
  2009. msgid "Opening %s"
  2010. msgstr "Odpiram %s"
  2011. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  2012. #, c-format
  2013. msgid "Line %u too long in source list %s."
  2014. msgstr "Vrstica %u v seznamu virov %s je predolga."
  2015. #: apt-pkg/sourcelist.cc:243
  2016. #, c-format
  2017. msgid "Malformed line %u in source list %s (type)"
  2018. msgstr "Napaèna vrstica %u v seznamu virov %s (vrsta)"
  2019. #: apt-pkg/sourcelist.cc:247
  2020. #, fuzzy, c-format
  2021. msgid "Type '%s' is not known on line %u in source list %s"
  2022. msgstr "Vrsta '%s' v vrstici %u v seznamu virov %s ni znana"
  2023. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  2024. #, c-format
  2025. msgid "Malformed line %u in source list %s (vendor id)"
  2026. msgstr "Napaèna vrstica %u v seznamu virov %s (ID ponudnika)"
  2027. #: apt-pkg/packagemanager.cc:426
  2028. #, c-format
  2029. msgid ""
  2030. "This installation run will require temporarily removing the essential "
  2031. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2032. "you really want to do it, activate the APT::Force-LoopBreak option."
  2033. msgstr ""
  2034. "Ta krog namestitve zahteva zaèasno odstranitev kljuènega paketa %s zaradi "
  2035. "zanke spora/predodvisnosti. To je ponavadi slabo, toda èe zares ¾elite "
  2036. "odstranitev, vkljuèite mo¾nost APT::Force-LoopBreak."
  2037. #: apt-pkg/pkgrecords.cc:32
  2038. #, c-format
  2039. msgid "Index file type '%s' is not supported"
  2040. msgstr "Vrsta datoteke s kazalom '%s' ni podprta"
  2041. #: apt-pkg/algorithms.cc:248
  2042. #, c-format
  2043. msgid ""
  2044. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2045. msgstr ""
  2046. "Paket %s mora biti ponovno name¹èen, vendar ne morem najti arhiva zanj."
  2047. #: apt-pkg/algorithms.cc:1138
  2048. msgid ""
  2049. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2050. "held packages."
  2051. msgstr ""
  2052. "Napaka. pkgProblemResolver::Napake pri razre¹itvi, ki so jih morda "
  2053. "povzroèili zadr¾ani paketi."
  2054. #: apt-pkg/algorithms.cc:1140
  2055. msgid "Unable to correct problems, you have held broken packages."
  2056. msgstr "Ni mogoèe popraviti te¾av. Imate zadr¾ane pakete."
  2057. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2058. msgid ""
  2059. "Some index files failed to download, they have been ignored, or old ones "
  2060. "used instead."
  2061. msgstr ""
  2062. "Nekaterih kazal ni mogoèe prenesti, zato so preklicana, ali pa so "
  2063. "uporabljena starej¹a."
  2064. #: apt-pkg/acquire.cc:60
  2065. #, c-format
  2066. msgid "Lists directory %spartial is missing."
  2067. msgstr "Manjka imenik s seznami %spartial."
  2068. #: apt-pkg/acquire.cc:64
  2069. #, c-format
  2070. msgid "Archive directory %spartial is missing."
  2071. msgstr "Manjka imenik z arhivi %spartial."
  2072. #. only show the ETA if it makes sense
  2073. #. two days
  2074. #: apt-pkg/acquire.cc:826
  2075. #, c-format
  2076. msgid "Retrieving file %li of %li (%s remaining)"
  2077. msgstr ""
  2078. #: apt-pkg/acquire.cc:828
  2079. #, fuzzy, c-format
  2080. msgid "Retrieving file %li of %li"
  2081. msgstr "Branje seznama datotek"
  2082. #: apt-pkg/acquire-worker.cc:110
  2083. #, c-format
  2084. msgid "The method driver %s could not be found."
  2085. msgstr "Ni mogoèe najti gonilnika metod %s."
  2086. #: apt-pkg/acquire-worker.cc:159
  2087. #, c-format
  2088. msgid "Method %s did not start correctly"
  2089. msgstr "Metoda %s se ni zaèela pravilno"
  2090. #: apt-pkg/acquire-worker.cc:413
  2091. #, fuzzy, c-format
  2092. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2093. msgstr ""
  2094. "Sprememba medija: vstavite disk z oznako\n"
  2095. " '%s'\n"
  2096. "v enoto '%s' in pritisnite enter\n"
  2097. #: apt-pkg/init.cc:132
  2098. #, c-format
  2099. msgid "Packaging system '%s' is not supported"
  2100. msgstr "Paketni sistem '%s' ni podprt"
  2101. #: apt-pkg/init.cc:148
  2102. msgid "Unable to determine a suitable packaging system type"
  2103. msgstr "Ni mogoèe ugotoviti ustrezne vrste paketnega sistema"
  2104. #: apt-pkg/clean.cc:56
  2105. #, c-format
  2106. msgid "Unable to stat %s."
  2107. msgstr "Ni mogoèe doloèiti %s."
  2108. #: apt-pkg/srcrecords.cc:44
  2109. msgid "You must put some 'source' URIs in your sources.list"
  2110. msgstr "V sources.list morate vstaviti URI-je z viri"
  2111. #: apt-pkg/cachefile.cc:71
  2112. msgid "The package lists or status file could not be parsed or opened."
  2113. msgstr "Ni mogoèe odprti ali razèleniti seznama paketov ali datoteke stanja."
  2114. #: apt-pkg/cachefile.cc:75
  2115. msgid "You may want to run apt-get update to correct these problems"
  2116. msgstr "Èe ¾elite odpraviti te¾ave, poskusite zagnati apt-get update."
  2117. #: apt-pkg/policy.cc:347
  2118. #, fuzzy, c-format
  2119. msgid "Invalid record in the preferences file %s, no Package header"
  2120. msgstr "Napaèen zapis v datoteki z nastavitvami. Ni glave paketa"
  2121. #: apt-pkg/policy.cc:369
  2122. #, c-format
  2123. msgid "Did not understand pin type %s"
  2124. msgstr "Ni mogoèe razumeti vrste zaponke %s"
  2125. #: apt-pkg/policy.cc:377
  2126. msgid "No priority (or zero) specified for pin"
  2127. msgstr "Prioriteta zaponke ni doloèena ali pa je niè."
  2128. #: apt-pkg/pkgcachegen.cc:74
  2129. msgid "Cache has an incompatible versioning system"
  2130. msgstr "Predpomnilnik ima neustrezen sistem razlièic"
  2131. #: apt-pkg/pkgcachegen.cc:117
  2132. #, c-format
  2133. msgid "Error occurred while processing %s (NewPackage)"
  2134. msgstr "Pri¹lo je do napake pri obdelavi %s (Nov paket)"
  2135. #: apt-pkg/pkgcachegen.cc:132
  2136. #, c-format
  2137. msgid "Error occurred while processing %s (UsePackage1)"
  2138. msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 1)"
  2139. #: apt-pkg/pkgcachegen.cc:166
  2140. #, fuzzy, c-format
  2141. msgid "Error occurred while processing %s (NewFileDesc1)"
  2142. msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
  2143. #: apt-pkg/pkgcachegen.cc:191
  2144. #, c-format
  2145. msgid "Error occurred while processing %s (UsePackage2)"
  2146. msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 2)"
  2147. #: apt-pkg/pkgcachegen.cc:195
  2148. #, c-format
  2149. msgid "Error occurred while processing %s (NewFileVer1)"
  2150. msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
  2151. #: apt-pkg/pkgcachegen.cc:226
  2152. #, c-format
  2153. msgid "Error occurred while processing %s (NewVersion1)"
  2154. msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica 1)"
  2155. #: apt-pkg/pkgcachegen.cc:230
  2156. #, c-format
  2157. msgid "Error occurred while processing %s (UsePackage3)"
  2158. msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 3)"
  2159. #: apt-pkg/pkgcachegen.cc:234
  2160. #, c-format
  2161. msgid "Error occurred while processing %s (NewVersion2)"
  2162. msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica 2)"
  2163. #: apt-pkg/pkgcachegen.cc:258
  2164. #, fuzzy, c-format
  2165. msgid "Error occurred while processing %s (NewFileDesc2)"
  2166. msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
  2167. #: apt-pkg/pkgcachegen.cc:264
  2168. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2169. msgstr "Uau, presegli ste ¹tevilo imen paketov, ki jih zmore APT."
  2170. #: apt-pkg/pkgcachegen.cc:267
  2171. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2172. msgstr "Uau, presegli ste ¹tevilo razlièic, ki jih zmore APT."
  2173. #: apt-pkg/pkgcachegen.cc:270
  2174. #, fuzzy
  2175. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2176. msgstr "Uau, presegli ste ¹tevilo razlièic, ki jih zmore APT."
  2177. #: apt-pkg/pkgcachegen.cc:273
  2178. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2179. msgstr "Uau, presegli ste ¹tevilo odvisnosti, ki jih zmore APT."
  2180. #: apt-pkg/pkgcachegen.cc:301
  2181. #, c-format
  2182. msgid "Error occurred while processing %s (FindPkg)"
  2183. msgstr "Pri¹lo je do napake pri obdelavi %s (Najdi paket)"
  2184. #: apt-pkg/pkgcachegen.cc:314
  2185. #, c-format
  2186. msgid "Error occurred while processing %s (CollectFileProvides)"
  2187. msgstr "Pri¹lo je do napake pri obdelavi %s (Zberi dobavitelje datotek)"
  2188. #: apt-pkg/pkgcachegen.cc:320
  2189. #, c-format
  2190. msgid "Package %s %s was not found while processing file dependencies"
  2191. msgstr "Paketa %s %s ni bilo mogoèe najti med obdelavo odvisnosti"
  2192. #: apt-pkg/pkgcachegen.cc:693
  2193. #, c-format
  2194. msgid "Couldn't stat source package list %s"
  2195. msgstr "Ni mogoèe doloèiti seznama izvornih paketov %s"
  2196. #: apt-pkg/pkgcachegen.cc:778
  2197. msgid "Collecting File Provides"
  2198. msgstr "Zbiranje dobaviteljev datotek"
  2199. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2200. msgid "IO Error saving source cache"
  2201. msgstr "Napaka IO pri shranjevanju predpomnilnika virov"
  2202. #: apt-pkg/acquire-item.cc:128
  2203. #, c-format
  2204. msgid "rename failed, %s (%s -> %s)."
  2205. msgstr "preimenovanje spodletelo, %s (%s -> %s)."
  2206. #: apt-pkg/acquire-item.cc:395
  2207. msgid "MD5Sum mismatch"
  2208. msgstr "Neujemanje vsote MD5"
  2209. #: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411
  2210. #, fuzzy
  2211. msgid "Hash Sum mismatch"
  2212. msgstr "Neujemanje vsote MD5"
  2213. #: apt-pkg/acquire-item.cc:1106
  2214. msgid "There is no public key available for the following key IDs:\n"
  2215. msgstr ""
  2216. #: apt-pkg/acquire-item.cc:1216
  2217. #, c-format
  2218. msgid ""
  2219. "I wasn't able to locate a file for the %s package. This might mean you need "
  2220. "to manually fix this package. (due to missing arch)"
  2221. msgstr ""
  2222. "Ni bilo mogoèe najti datoteke za paket %s. Morda boste morali roèno "
  2223. "popraviti ta paket (zaradi manjkajoèega arhiva)."
  2224. #: apt-pkg/acquire-item.cc:1275
  2225. #, c-format
  2226. msgid ""
  2227. "I wasn't able to locate file for the %s package. This might mean you need to "
  2228. "manually fix this package."
  2229. msgstr ""
  2230. "Ni bilo mogoèe najti datoteke za paket %s. Morda boste morali roèno "
  2231. "popraviti ta paket."
  2232. #: apt-pkg/acquire-item.cc:1316
  2233. #, c-format
  2234. msgid ""
  2235. "The package index files are corrupted. No Filename: field for package %s."
  2236. msgstr ""
  2237. "Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje alu paket "
  2238. "%s."
  2239. #: apt-pkg/acquire-item.cc:1403
  2240. msgid "Size mismatch"
  2241. msgstr "Neujemanje velikosti"
  2242. #: apt-pkg/indexrecords.cc:40
  2243. #, fuzzy, c-format
  2244. msgid "Unable to parse Release file %s"
  2245. msgstr "Ni mogoèe razèleniti paketne datoteke %s (1)"
  2246. #: apt-pkg/indexrecords.cc:47
  2247. #, fuzzy, c-format
  2248. msgid "No sections in Release file %s"
  2249. msgstr "Opomba: izbran %s namesto %s \n"
  2250. #: apt-pkg/indexrecords.cc:81
  2251. #, c-format
  2252. msgid "No Hash entry in Release file %s"
  2253. msgstr ""
  2254. #: apt-pkg/vendorlist.cc:66
  2255. #, c-format
  2256. msgid "Vendor block %s contains no fingerprint"
  2257. msgstr "Ponudnikov blok %s ne vsebuje podpisa"
  2258. #: apt-pkg/cdrom.cc:525
  2259. #, c-format
  2260. msgid ""
  2261. "Using CD-ROM mount point %s\n"
  2262. "Mounting CD-ROM\n"
  2263. msgstr ""
  2264. "Uporabljam CD-ROM priklopno toèko %s\n"
  2265. "Priklapljam CD-ROM\n"
  2266. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2267. msgid "Identifying.. "
  2268. msgstr "Identificiram.."
  2269. #: apt-pkg/cdrom.cc:559
  2270. #, c-format
  2271. msgid "Stored label: %s\n"
  2272. msgstr "Shranjena oznaka: %s \n"
  2273. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2274. #, fuzzy
  2275. msgid "Unmounting CD-ROM...\n"
  2276. msgstr "Odklapljam CD-ROM..."
  2277. #: apt-pkg/cdrom.cc:585
  2278. #, c-format
  2279. msgid "Using CD-ROM mount point %s\n"
  2280. msgstr "Uporabljam CD-ROM priklopno toèko %s\n"
  2281. #: apt-pkg/cdrom.cc:603
  2282. msgid "Unmounting CD-ROM\n"
  2283. msgstr "Odklapljam CD-ROM\n"
  2284. #: apt-pkg/cdrom.cc:607
  2285. msgid "Waiting for disc...\n"
  2286. msgstr "Èakam na medij...\n"
  2287. #. Mount the new CDROM
  2288. #: apt-pkg/cdrom.cc:615
  2289. msgid "Mounting CD-ROM...\n"
  2290. msgstr "Priklapljam CD-ROM...\n"
  2291. #: apt-pkg/cdrom.cc:633
  2292. msgid "Scanning disc for index files..\n"
  2293. msgstr "Preverjam medij za datoteke s kazalom..\n"
  2294. #: apt-pkg/cdrom.cc:673
  2295. #, fuzzy, c-format
  2296. msgid ""
  2297. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2298. "zu signatures\n"
  2299. msgstr "Na¹el sem %i kazal paketov, %i kazal izvornih paketov in %i podpisov\n"
  2300. #: apt-pkg/cdrom.cc:684
  2301. msgid ""
  2302. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2303. "wrong architecture?"
  2304. msgstr ""
  2305. #: apt-pkg/cdrom.cc:710
  2306. #, fuzzy, c-format
  2307. msgid "Found label '%s'\n"
  2308. msgstr "Shranjena oznaka: %s \n"
  2309. #: apt-pkg/cdrom.cc:739
  2310. msgid "That is not a valid name, try again.\n"
  2311. msgstr "To ni veljavno ime, poskusite ¹e enkrat.\n"
  2312. #: apt-pkg/cdrom.cc:755
  2313. #, c-format
  2314. msgid ""
  2315. "This disc is called: \n"
  2316. "'%s'\n"
  2317. msgstr ""
  2318. "Ta medij se imenuje: \n"
  2319. "'%s'\n"
  2320. #: apt-pkg/cdrom.cc:759
  2321. msgid "Copying package lists..."
  2322. msgstr "Kopiranje seznama paketov..."
  2323. #: apt-pkg/cdrom.cc:785
  2324. msgid "Writing new source list\n"
  2325. msgstr "Pi¹em nov seznam virov\n"
  2326. #: apt-pkg/cdrom.cc:794
  2327. msgid "Source list entries for this disc are:\n"
  2328. msgstr "Izvorni vnosi za ta medij so:\n"
  2329. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2330. #, c-format
  2331. msgid "Wrote %i records.\n"
  2332. msgstr "Zapisal %i zapisov.\n"
  2333. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2334. #, c-format
  2335. msgid "Wrote %i records with %i missing files.\n"
  2336. msgstr "Zapisal %i zapisov z %i manjkajoèimi datotekami.\n"
  2337. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2338. #, c-format
  2339. msgid "Wrote %i records with %i mismatched files\n"
  2340. msgstr "Zapisal %i zapisov z %i neujemajoèimi datotekami.\n"
  2341. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2342. #, c-format
  2343. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2344. msgstr ""
  2345. "Zapisal %i zapisov z %i manjkajoèimi datotekami in %i neujemajoèimi "
  2346. "datotekami.\n"
  2347. #: apt-pkg/deb/dpkgpm.cc:49
  2348. #, fuzzy, c-format
  2349. msgid "Installing %s"
  2350. msgstr " Name¹èen: "
  2351. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642
  2352. #, fuzzy, c-format
  2353. msgid "Configuring %s"
  2354. msgstr "Povezujem se z %s"
  2355. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649
  2356. #, fuzzy, c-format
  2357. msgid "Removing %s"
  2358. msgstr "Odpiram %s"
  2359. #: apt-pkg/deb/dpkgpm.cc:52
  2360. #, c-format
  2361. msgid "Running post-installation trigger %s"
  2362. msgstr ""
  2363. #: apt-pkg/deb/dpkgpm.cc:546
  2364. #, fuzzy, c-format
  2365. msgid "Directory '%s' missing"
  2366. msgstr "Manjka imenik s seznami %spartial."
  2367. #: apt-pkg/deb/dpkgpm.cc:635
  2368. #, fuzzy, c-format
  2369. msgid "Preparing %s"
  2370. msgstr "Odpiram %s"
  2371. #: apt-pkg/deb/dpkgpm.cc:636
  2372. #, fuzzy, c-format
  2373. msgid "Unpacking %s"
  2374. msgstr "Odpiram %s"
  2375. #: apt-pkg/deb/dpkgpm.cc:641
  2376. #, fuzzy, c-format
  2377. msgid "Preparing to configure %s"
  2378. msgstr "Odpiranje nastavitvene datoteke %s"
  2379. #: apt-pkg/deb/dpkgpm.cc:643
  2380. #, fuzzy, c-format
  2381. msgid "Installed %s"
  2382. msgstr " Name¹èen: "
  2383. #: apt-pkg/deb/dpkgpm.cc:648
  2384. #, c-format
  2385. msgid "Preparing for removal of %s"
  2386. msgstr ""
  2387. #: apt-pkg/deb/dpkgpm.cc:650
  2388. #, fuzzy, c-format
  2389. msgid "Removed %s"
  2390. msgstr "Priporoèa"
  2391. #: apt-pkg/deb/dpkgpm.cc:655
  2392. #, fuzzy, c-format
  2393. msgid "Preparing to completely remove %s"
  2394. msgstr "Odpiranje nastavitvene datoteke %s"
  2395. #: apt-pkg/deb/dpkgpm.cc:656
  2396. #, fuzzy, c-format
  2397. msgid "Completely removed %s"
  2398. msgstr "Odstranitev %s ni uspela"
  2399. #: apt-pkg/deb/dpkgpm.cc:820
  2400. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2401. msgstr ""
  2402. #: apt-pkg/deb/dpkgpm.cc:848
  2403. msgid "Running dpkg"
  2404. msgstr ""
  2405. #: apt-pkg/deb/debsystem.cc:70
  2406. #, c-format
  2407. msgid ""
  2408. "Unable to lock the administration directory (%s), is another process using "
  2409. "it?"
  2410. msgstr ""
  2411. #: apt-pkg/deb/debsystem.cc:73
  2412. #, fuzzy, c-format
  2413. msgid "Unable to lock the administration directory (%s), are you root?"
  2414. msgstr "Imenika seznamov ni mogoèe zakleniti"
  2415. #: apt-pkg/deb/debsystem.cc:82
  2416. msgid ""
  2417. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2418. "the problem. "
  2419. msgstr ""
  2420. #: apt-pkg/deb/debsystem.cc:100
  2421. msgid "Not locked"
  2422. msgstr ""
  2423. #: methods/rred.cc:219
  2424. #, fuzzy
  2425. msgid "Could not patch file"
  2426. msgstr "Ne morem odpreti datoteke %s"
  2427. #: methods/rsh.cc:330
  2428. msgid "Connection closed prematurely"
  2429. msgstr "Povezava se je prezgodaj zaprla"
  2430. #~ msgid "%4i %s\n"
  2431. #~ msgstr "%4i %s\n"
  2432. #, fuzzy
  2433. #~ msgid "Processing triggers for %s"
  2434. #~ msgstr "Napaka pri obdelavi imenika %s"
  2435. #~ msgid ""
  2436. #~ "Since you only requested a single operation it is extremely likely that\n"
  2437. #~ "the package is simply not installable and a bug report against\n"
  2438. #~ "that package should be filed."
  2439. #~ msgstr ""
  2440. #~ "Ker ste zahtevali samo eno opravilo, je zelo verjetno, da se paketa\n"
  2441. #~ "preprosto ne da namestiti in je potrebno vlo¾iti poroèilo o hro¹èu\n"
  2442. #~ "o tem paketu."
  2443. #, fuzzy
  2444. #~ msgid "Line %d too long (max %lu)"
  2445. #~ msgstr "Vrstica %d je predolga (najveè %d)"
  2446. #, fuzzy
  2447. #~ msgid "Line %d too long (max %d)"
  2448. #~ msgstr "Vrstica %d je predolga (najveè %d)"
  2449. #, fuzzy
  2450. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2451. #~ msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
  2452. #, fuzzy
  2453. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2454. #~ msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
  2455. #, fuzzy
  2456. #~ msgid "Stored label: %s \n"
  2457. #~ msgstr "Shranjena oznaka: %s \n"
  2458. #, fuzzy
  2459. #~ msgid ""
  2460. #~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
  2461. #~ "i signatures\n"
  2462. #~ msgstr ""
  2463. #~ "Na¹el sem %i kazal paketov, %i kazal izvornih paketov in %i podpisov\n"
  2464. #, fuzzy
  2465. #~ msgid "openpty failed\n"
  2466. #~ msgstr "Izbira ni uspela"
  2467. #~ msgid "File date has changed %s"
  2468. #~ msgstr "Datum datoteke se je spremenil %s"
  2469. #~ msgid "Reading file list"
  2470. #~ msgstr "Branje seznama datotek"
  2471. #, fuzzy
  2472. #~ msgid "Could not execute "
  2473. #~ msgstr "Ni mogoèe dobiti zaklenjene datoteke %s"
  2474. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  2475. #~ msgstr "Neznan ID ponudnika '%s' v vrstici %u v seznamu virov %s"