sl.po 78 KB

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