sl.po 86 KB

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