sl.po 75 KB

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