sl.po 83 KB

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