sl.po 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378
  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: 2010-09-28 17:23+0200\n"
  8. "PO-Revision-Date: 2010-09-05 20:35+0100\n"
  9. "Last-Translator: Andrej Znidarąič <andrej.znidarsic@gmail.com>\n"
  10. "Language-Team: Slovenian <sl@li.org>\n"
  11. "Language: sl\n"
  12. "MIME-Version: 1.0\n"
  13. "Content-Type: text/plain; charset=UTF-8\n"
  14. "Content-Transfer-Encoding: 8bit\n"
  15. "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
  16. "%100==4 ? 3 : 0);\n"
  17. "X-Launchpad-Export-Date: 2010-09-04 12:16+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. "X-Poedit-Language: Slovenian\n"
  20. "X-Poedit-Country: SLOVENIA\n"
  21. "X-Poedit-SourceCharset: utf-8\n"
  22. #: cmdline/apt-cache.cc:156
  23. #, c-format
  24. msgid "Package %s version %s has an unmet dep:\n"
  25. msgstr "Paket %s različica %s ima nereąene odvisnosti:\n"
  26. #: cmdline/apt-cache.cc:284
  27. msgid "Total package names: "
  28. msgstr "Vseh imen paketov: "
  29. #: cmdline/apt-cache.cc:286
  30. msgid "Total package structures: "
  31. msgstr "Skupno struktur paketov"
  32. #: cmdline/apt-cache.cc:326
  33. msgid " Normal packages: "
  34. msgstr " Običajni paketi: "
  35. #: cmdline/apt-cache.cc:327
  36. msgid " Pure virtual packages: "
  37. msgstr " Čisti navidezni paketi: "
  38. #: cmdline/apt-cache.cc:328
  39. msgid " Single virtual packages: "
  40. msgstr " Posamezni navidezni paketi: "
  41. #: cmdline/apt-cache.cc:329
  42. msgid " Mixed virtual packages: "
  43. msgstr " Meąani navidezni paketi: "
  44. #: cmdline/apt-cache.cc:330
  45. msgid " Missing: "
  46. msgstr " Manjka: "
  47. #: cmdline/apt-cache.cc:332
  48. msgid "Total distinct versions: "
  49. msgstr "Vseh različic: "
  50. #: cmdline/apt-cache.cc:334
  51. msgid "Total distinct descriptions: "
  52. msgstr "Skupno različnih opisov:"
  53. #: cmdline/apt-cache.cc:336
  54. msgid "Total dependencies: "
  55. msgstr "Vseh odvisnosti: "
  56. #: cmdline/apt-cache.cc:339
  57. msgid "Total ver/file relations: "
  58. msgstr "Vseh povezav Raz/Dat: "
  59. #: cmdline/apt-cache.cc:341
  60. msgid "Total Desc/File relations: "
  61. msgstr "Skupno razmerij opisov/datotek:"
  62. #: cmdline/apt-cache.cc:343
  63. msgid "Total Provides mappings: "
  64. msgstr "Vseh dobljenih preslikav: "
  65. #: cmdline/apt-cache.cc:355
  66. msgid "Total globbed strings: "
  67. msgstr "Vseh raząirjenih nizov: "
  68. #: cmdline/apt-cache.cc:369
  69. msgid "Total dependency version space: "
  70. msgstr "Celotna velikost z odvisnostmi različice: "
  71. #: cmdline/apt-cache.cc:374
  72. msgid "Total slack space: "
  73. msgstr "Celotna ohlapna velikost: "
  74. #: cmdline/apt-cache.cc:382
  75. msgid "Total space accounted for: "
  76. msgstr "Celotna velikost, izračunana za: "
  77. #: cmdline/apt-cache.cc:513 cmdline/apt-cache.cc:1194
  78. #, c-format
  79. msgid "Package file %s is out of sync."
  80. msgstr "Datoteka paketa %s ni usklajena."
  81. #: cmdline/apt-cache.cc:1273
  82. msgid "You must give at least one search pattern"
  83. msgstr "Podati morate vsaj en iskalni vzorec"
  84. #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431
  85. #: cmdline/apt-cache.cc:1508
  86. msgid "No packages found"
  87. msgstr "Nobena paket ni bil najden"
  88. #: cmdline/apt-cache.cc:1503 apt-pkg/cacheset.cc:440
  89. #, c-format
  90. msgid "Unable to locate package %s"
  91. msgstr "Ni mogoče najti paketa %s"
  92. #: cmdline/apt-cache.cc:1533
  93. msgid "Package files:"
  94. msgstr "Datoteke paketa:"
  95. #: cmdline/apt-cache.cc:1540 cmdline/apt-cache.cc:1638
  96. msgid "Cache is out of sync, can't x-ref a package file"
  97. msgstr "Predpomnilnik ni usklajen, x-ref datoteke paketa ni mogoč"
  98. #. Show any packages have explicit pins
  99. #: cmdline/apt-cache.cc:1554
  100. msgid "Pinned packages:"
  101. msgstr "Pripeti paketi:"
  102. #: cmdline/apt-cache.cc:1566 cmdline/apt-cache.cc:1618
  103. msgid "(not found)"
  104. msgstr "(ni najdeno)"
  105. #: cmdline/apt-cache.cc:1575
  106. msgid " Installed: "
  107. msgstr " Nameąčen: "
  108. #: cmdline/apt-cache.cc:1576
  109. msgid " Candidate: "
  110. msgstr " Kandidat: "
  111. #: cmdline/apt-cache.cc:1600 cmdline/apt-cache.cc:1608
  112. msgid "(none)"
  113. msgstr "(brez)"
  114. #: cmdline/apt-cache.cc:1615
  115. msgid " Package pin: "
  116. msgstr " Bucika paketa:"
  117. #. Show the priority tables
  118. #: cmdline/apt-cache.cc:1624
  119. msgid " Version table:"
  120. msgstr " Preglednica različic:"
  121. #: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70
  122. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589
  123. #: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144
  124. #, c-format
  125. msgid "%s %s for %s compiled on %s %s\n"
  126. msgstr "%s %s za %s preveden na %s %s\n"
  127. #: cmdline/apt-cache.cc:1745
  128. msgid ""
  129. "Usage: apt-cache [options] command\n"
  130. " apt-cache [options] add file1 [file2 ...]\n"
  131. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  132. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  133. "\n"
  134. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  135. "cache files, and query information from them\n"
  136. "\n"
  137. "Commands:\n"
  138. " add - Add a package file to the source cache\n"
  139. " gencaches - Build both the package and source cache\n"
  140. " showpkg - Show some general information for a single package\n"
  141. " showsrc - Show source records\n"
  142. " stats - Show some basic statistics\n"
  143. " dump - Show the entire file in a terse form\n"
  144. " dumpavail - Print an available file to stdout\n"
  145. " unmet - Show unmet dependencies\n"
  146. " search - Search the package list for a regex pattern\n"
  147. " show - Show a readable record for the package\n"
  148. " showauto - Display a list of automatically installed packages\n"
  149. " depends - Show raw dependency information for a package\n"
  150. " rdepends - Show reverse dependency information for a package\n"
  151. " pkgnames - List the names of all packages in the system\n"
  152. " dotty - Generate package graphs for GraphViz\n"
  153. " xvcg - Generate package graphs for xvcg\n"
  154. " policy - Show policy settings\n"
  155. "\n"
  156. "Options:\n"
  157. " -h This help text.\n"
  158. " -p=? The package cache.\n"
  159. " -s=? The source cache.\n"
  160. " -q Disable progress indicator.\n"
  161. " -i Show only important deps for the unmet command.\n"
  162. " -c=? Read this configuration file\n"
  163. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  164. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  165. msgstr ""
  166. "Uporaba: apt-cache [moľnosti] ukaz\n"
  167. " apt-cache [moľnosti] add datoteka1 [datoteka2 ...]\n"
  168. " apt-cache [moľnosti] showpkg paket1 [paket2 ...]\n"
  169. " apt-cache [moľnosti] showsrc paket 1 [paket2 ...]\n"
  170. "\n"
  171. "apt-cache je orodje nizke ravni, ki se uporablja za upravljanje APT-ovih\n"
  172. "binarnih datotek predpomnilnika in za poizvedbo podatkov iz njih\n"
  173. "\n"
  174. "Ukazi: add - dodat datoteko paketa v predpomnilnik vira\n"
  175. " gencaches - izgradi tako paket kot izvorni predpomnilnik\n"
  176. " showpkg - pokaľe nekaj sploąnih podatkov za posamezen paket\n"
  177. " showsrc - pokaľe zapise vira\n"
  178. " stats - pokaľe nekaj osnovne statistike\n"
  179. " dump - pokaľe celotno datoteko v obliki terse\n"
  180. " dumpavail - izpiąe razpoloľljivo datoteko na standardni izhod\n"
  181. " unmet - pokaľe nerazreąene odvisnosti\n"
  182. " search - iąče seznam paketov za vzorec logičnega izraza\n"
  183. " show - iąče berljiv zapis paketa\n"
  184. " showauto - pokaľe seznam samodejno nameąčenih paketov\n"
  185. " depends - pokaľe surove podatke odvisnosti za paket\n"
  186. " rdepends - pokaľe obratne podatke odvisnosti za paket\n"
  187. " pkgnames - naąteje imena vseh paketov na sistemu\n"
  188. " dotty - ustvari grafe paketov za GraphViz\n"
  189. " xvcg - ustvari grafe paketov za xvcg\n"
  190. " policy - pokaľe nastavitve pravil\n"
  191. "\n"
  192. "Moľnosti:\n"
  193. " -h to besedilo pomoči\n"
  194. " -p=? predpomnilnik paketa\n"
  195. " -s=? predpomnilnik vira\n"
  196. " -q onemogoči pokazatelj napredka\n"
  197. " -i pokaľe le pomembne odvisnosti za ukaz unmet.\n"
  198. " -c=? prebere podano datoteko nastavitev\n"
  199. " -o=? nastavi poljubno moľnost nastavitev, na primer -o dir::cache=/tmp\n"
  200. "Za več podrobnosti si oglejte strani priročnikov apt-cache(8) in apt-conf"
  201. "(5).\n"
  202. #: cmdline/apt-cdrom.cc:77
  203. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  204. msgstr "Navedite ime tega diska, kot je naprimer 'Debian 5.0.3 disk 1'"
  205. #: cmdline/apt-cdrom.cc:92
  206. msgid "Please insert a Disc in the drive and press enter"
  207. msgstr "Vstavite disk v pogon in pritisnite vnosno tipko"
  208. #: cmdline/apt-cdrom.cc:127
  209. #, c-format
  210. msgid "Failed to mount '%s' to '%s'"
  211. msgstr "Priklapljanje '%s' na '%s' je spodletelo"
  212. #: cmdline/apt-cdrom.cc:162
  213. msgid "Repeat this process for the rest of the CDs in your set."
  214. msgstr "Ponovi to opravilo za preostanek CD-jev v vaąi zbirki."
  215. #: cmdline/apt-config.cc:41
  216. msgid "Arguments not in pairs"
  217. msgstr "Argumenti niso v parih"
  218. #: cmdline/apt-config.cc:76
  219. msgid ""
  220. "Usage: apt-config [options] command\n"
  221. "\n"
  222. "apt-config is a simple tool to read the APT config file\n"
  223. "\n"
  224. "Commands:\n"
  225. " shell - Shell mode\n"
  226. " dump - Show the configuration\n"
  227. "\n"
  228. "Options:\n"
  229. " -h This help text.\n"
  230. " -c=? Read this configuration file\n"
  231. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  232. msgstr ""
  233. "Uporaba: apt-config [moľnosti] ukaz\n"
  234. "\n"
  235. "apt-config je preprosto orodje za branje nastavitvene datoteke APT\n"
  236. "\n"
  237. "Ukazi:\n"
  238. " shell - Lupinski način\n"
  239. " dump - Prikaľe nastavitve\n"
  240. "\n"
  241. "Moľnosti:\n"
  242. " -h To besedilo pomoči.\n"
  243. " -c=? Prebere podano datoteko z nastavitvami\n"
  244. " -o=? Nastavi poljubno nastavitveno moľnost, na primer. -o dir::cache=/tmp\n"
  245. #: cmdline/apt-extracttemplates.cc:98
  246. #, c-format
  247. msgid "%s not a valid DEB package."
  248. msgstr "%s ni veljaven paket DEB."
  249. #: cmdline/apt-extracttemplates.cc:232
  250. msgid ""
  251. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  252. "\n"
  253. "apt-extracttemplates is a tool to extract config and template info\n"
  254. "from debian packages\n"
  255. "\n"
  256. "Options:\n"
  257. " -h This help text\n"
  258. " -t Set the temp dir\n"
  259. " -c=? Read this configuration file\n"
  260. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  261. msgstr ""
  262. "Uporaba: apt-extracttemplates dat1 [dat2 ...]\n"
  263. "\n"
  264. "apt-extracttemplates je orodje za pridobivanje podatkov o\n"
  265. "nastavitvah in predlogah debianovih paketov\n"
  266. "\n"
  267. "Moľnosti:\n"
  268. " -h To besedilo pomoči\n"
  269. " -t Nastavi začasno mapo\n"
  270. " -c=? Prebere podano datoteko z nastavitvami\n"
  271. " -o=? Nastavi poljubno nastavitveno moľnost, na primer. -o dir::cache=/tmp\n"
  272. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1171
  273. #, c-format
  274. msgid "Unable to write to %s"
  275. msgstr "Ni mogoče pisati na %s"
  276. #: cmdline/apt-extracttemplates.cc:309
  277. msgid "Cannot get debconf version. Is debconf installed?"
  278. msgstr "Ni mogoče ugotoviti različice debconfa. Je sploh nameąčen?"
  279. #: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347
  280. msgid "Package extension list is too long"
  281. msgstr "Seznam raząiritev paketov je predolg"
  282. #: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189
  283. #: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262
  284. #: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298
  285. #, c-format
  286. msgid "Error processing directory %s"
  287. msgstr "Napaka med obdelavo mape %s"
  288. #: ftparchive/apt-ftparchive.cc:260
  289. msgid "Source extension list is too long"
  290. msgstr "Seznam raząiritev virov je predolg"
  291. #: ftparchive/apt-ftparchive.cc:377
  292. msgid "Error writing header to contents file"
  293. msgstr "Napaka med pisanjem glave v datoteko vsebine"
  294. #: ftparchive/apt-ftparchive.cc:407
  295. #, c-format
  296. msgid "Error processing contents %s"
  297. msgstr "Napaka med obdelavo vsebine %s"
  298. #: ftparchive/apt-ftparchive.cc:595
  299. msgid ""
  300. "Usage: apt-ftparchive [options] command\n"
  301. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  302. " sources srcpath [overridefile [pathprefix]]\n"
  303. " contents path\n"
  304. " release path\n"
  305. " generate config [groups]\n"
  306. " clean config\n"
  307. "\n"
  308. "apt-ftparchive generates index files for Debian archives. It supports\n"
  309. "many styles of generation from fully automated to functional replacements\n"
  310. "for dpkg-scanpackages and dpkg-scansources\n"
  311. "\n"
  312. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  313. "Package file contains the contents of all the control fields from\n"
  314. "each package as well as the MD5 hash and filesize. An override file\n"
  315. "is supported to force the value of Priority and Section.\n"
  316. "\n"
  317. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  318. "The --source-override option can be used to specify a src override file\n"
  319. "\n"
  320. "The 'packages' and 'sources' command should be run in the root of the\n"
  321. "tree. BinaryPath should point to the base of the recursive search and \n"
  322. "override file should contain the override flags. Pathprefix is\n"
  323. "appended to the filename fields if present. Example usage from the \n"
  324. "Debian archive:\n"
  325. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  326. " dists/potato/main/binary-i386/Packages\n"
  327. "\n"
  328. "Options:\n"
  329. " -h This help text\n"
  330. " --md5 Control MD5 generation\n"
  331. " -s=? Source override file\n"
  332. " -q Quiet\n"
  333. " -d=? Select the optional caching database\n"
  334. " --no-delink Enable delinking debug mode\n"
  335. " --contents Control contents file generation\n"
  336. " -c=? Read this configuration file\n"
  337. " -o=? Set an arbitrary configuration option"
  338. msgstr ""
  339. "Uporaba: apt-ftparchive [moľnosti] ukaz\n"
  340. "Ukazi: packages, binarypath [datoteka prepisa [predpona poti]]\n"
  341. " sources srcpath [datoteka prepisa [predpona poti]]\n"
  342. " contents path\n"
  343. " release path\n"
  344. " generate config [skupine]\n"
  345. " clean config\n"
  346. "\n"
  347. "apt-ftparchive ustvari datoteke kazala za arhive Debian. Podpira\n"
  348. "več slogov ustvarjanja od popolnoma samodejnih do funkcionalnih zamenjav\n"
  349. "za dpkg-scanpackages in dpkg-scansources\n"
  350. "\n"
  351. "apt-ftparchive ustvari datoteke paketov iz drevesa .debs. Datoteka\n"
  352. "paketa vsebuje vsebino vseh nadzornih polj iz vsakega paketa kot tudi\n"
  353. "razprąilo MD5 in velikost datoteke. Datoteka prepisa podpira vsiljenje\n"
  354. "vrednosti Prednosti in Odseka.\n"
  355. "\n"
  356. "Podobno apt-ftparchive ustvari datoteke paketov iz drevesa .dscs.\n"
  357. "Moľnost --source-override je mogoče uporabiti za navedbo datoteke prepisa "
  358. "src\n"
  359. "\n"
  360. "Ukaza 'packages' in 'sources' je treba zagnati v korenu drevesa.\n"
  361. "BinaryPath bi morala kazati na osnovno mapo rekurzivnega iskanja in\n"
  362. "datoteka prepisa bi morala vsebovati zastavice prepisa Predpona je pripeta\n"
  363. "v polja imena datoteke, če je prisotna. Primer uporabe iz arhiva Debian:\n"
  364. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  365. " dists/potato/main/binary-i386/Packages\n"
  366. "\n"
  367. "Moľnosti:\n"
  368. " -h To besedilo pomoči\n"
  369. " --md5 ustvarjanje nadzorne vsote MD5\n"
  370. " -s=? datoteka prepisa vira\n"
  371. " -q tiho\n"
  372. " -d=? izbere izbirno podatkovno zbirko pomnilnika\n"
  373. " --no-delink omogoči način razhroąčevanja razvezovanja\n"
  374. " --contents nadzira ustvarjanje datoteke vsebine\n"
  375. " -c=? prebere to nastavitveno datoteko\n"
  376. " -o=? nastavi poljubno moľnost nastavitve"
  377. #: ftparchive/apt-ftparchive.cc:801
  378. msgid "No selections matched"
  379. msgstr "Nobena izbira se ne ujema"
  380. #: ftparchive/apt-ftparchive.cc:879
  381. #, c-format
  382. msgid "Some files are missing in the package file group `%s'"
  383. msgstr "Nekatere datoteke manjkajo v skupini datotek paketov `%s'"
  384. #: ftparchive/cachedb.cc:43
  385. #, c-format
  386. msgid "DB was corrupted, file renamed to %s.old"
  387. msgstr "PZ je pokvarjena, datoteka je preimenovana v %s.old"
  388. #: ftparchive/cachedb.cc:61
  389. #, c-format
  390. msgid "DB is old, attempting to upgrade %s"
  391. msgstr "PZ je star, poskuąanje nadgradnje %s"
  392. #: ftparchive/cachedb.cc:72
  393. msgid ""
  394. "DB format is invalid. If you upgraded from an older version of apt, please "
  395. "remove and re-create the database."
  396. msgstr ""
  397. "Oblika podatkovne zbirke je neveljavna. V kolikor ste nadgradili s starejąe "
  398. "različice apt, podatkovno zbirko odstranite in jo znova ustvarite."
  399. #: ftparchive/cachedb.cc:77
  400. #, c-format
  401. msgid "Unable to open DB file %s: %s"
  402. msgstr "Ni mogoče odprti datoteke PZ %s: %s"
  403. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  404. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  405. #, c-format
  406. msgid "Failed to stat %s"
  407. msgstr "Napaka med določitvijo %s"
  408. #: ftparchive/cachedb.cc:242
  409. msgid "Archive has no control record"
  410. msgstr "Arhiv nima nadzornega zapisa"
  411. #: ftparchive/cachedb.cc:448
  412. msgid "Unable to get a cursor"
  413. msgstr "Ni mogoče najti kazalke"
  414. #: ftparchive/writer.cc:73
  415. #, c-format
  416. msgid "W: Unable to read directory %s\n"
  417. msgstr "O: ni mogoče brati mape %s\n"
  418. #: ftparchive/writer.cc:78
  419. #, c-format
  420. msgid "W: Unable to stat %s\n"
  421. msgstr "O: Ni mogoče določiti %s\n"
  422. #: ftparchive/writer.cc:134
  423. msgid "E: "
  424. msgstr "E: "
  425. #: ftparchive/writer.cc:136
  426. msgid "W: "
  427. msgstr "O: "
  428. #: ftparchive/writer.cc:143
  429. msgid "E: Errors apply to file "
  430. msgstr "N: Napake se sklicujejo na datoteko "
  431. #: ftparchive/writer.cc:161 ftparchive/writer.cc:193
  432. #, c-format
  433. msgid "Failed to resolve %s"
  434. msgstr "Ni mogoče razreąiti %s"
  435. #: ftparchive/writer.cc:174
  436. msgid "Tree walking failed"
  437. msgstr "Hoja drevesa je spodletela"
  438. #: ftparchive/writer.cc:201
  439. #, c-format
  440. msgid "Failed to open %s"
  441. msgstr "Ni mogoče odprti %s"
  442. #: ftparchive/writer.cc:260
  443. #, c-format
  444. msgid " DeLink %s [%s]\n"
  445. msgstr " RazVeľi %s [%s]\n"
  446. #: ftparchive/writer.cc:268
  447. #, c-format
  448. msgid "Failed to readlink %s"
  449. msgstr "Napaka med branjem povezave %s"
  450. #: ftparchive/writer.cc:272
  451. #, c-format
  452. msgid "Failed to unlink %s"
  453. msgstr "Napaka med odvezovanjem %s"
  454. #: ftparchive/writer.cc:279
  455. #, c-format
  456. msgid "*** Failed to link %s to %s"
  457. msgstr "*** Napaka med povezovanju %s z %s"
  458. #: ftparchive/writer.cc:289
  459. #, c-format
  460. msgid " DeLink limit of %sB hit.\n"
  461. msgstr " Doseľena meja RazVezovanja %sB.\n"
  462. #: ftparchive/writer.cc:393
  463. msgid "Archive had no package field"
  464. msgstr "Arhiv ni imel polja s paketom"
  465. #: ftparchive/writer.cc:401 ftparchive/writer.cc:688
  466. #, c-format
  467. msgid " %s has no override entry\n"
  468. msgstr " %s nima prepisanega vnosa\n"
  469. #: ftparchive/writer.cc:464 ftparchive/writer.cc:793
  470. #, c-format
  471. msgid " %s maintainer is %s not %s\n"
  472. msgstr " Vzdrľevalec %s je %s in ne %s\n"
  473. #: ftparchive/writer.cc:698
  474. #, c-format
  475. msgid " %s has no source override entry\n"
  476. msgstr " %s nima izvornega vnosa prepisa\n"
  477. #: ftparchive/writer.cc:702
  478. #, c-format
  479. msgid " %s has no binary override entry either\n"
  480. msgstr " %s nima tudi binarnega vnosa prepisa\n"
  481. #: ftparchive/contents.cc:321
  482. #, c-format
  483. msgid "Internal error, could not locate member %s"
  484. msgstr "Notranja napaka. Ni mogoče najti člana %s."
  485. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  486. msgid "realloc - Failed to allocate memory"
  487. msgstr "realloc - Napaka med dodeljevanjem pomnilnika"
  488. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  489. #, c-format
  490. msgid "Unable to open %s"
  491. msgstr "Ni mogoče odpreti %s"
  492. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  493. #, c-format
  494. msgid "Malformed override %s line %lu #1"
  495. msgstr "Napačno oblikovana prepisana vrstica %s %lu #1"
  496. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  497. #, c-format
  498. msgid "Malformed override %s line %lu #2"
  499. msgstr "Napačno oblikovana prepisana vrstica %s %lu #2"
  500. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  501. #, c-format
  502. msgid "Malformed override %s line %lu #3"
  503. msgstr "Napačno oblikovanje prepisane vrstice %s %lu #3"
  504. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  505. #, c-format
  506. msgid "Failed to read the override file %s"
  507. msgstr "Napaka med branjem preprisane datoteke %s"
  508. #: ftparchive/multicompress.cc:72
  509. #, c-format
  510. msgid "Unknown compression algorithm '%s'"
  511. msgstr "Neznan algoritem stiskanja '%s'"
  512. #: ftparchive/multicompress.cc:102
  513. #, c-format
  514. msgid "Compressed output %s needs a compression set"
  515. msgstr "Stisnjen izhod %s potrebuje niz stiskanja"
  516. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  517. msgid "Failed to create IPC pipe to subprocess"
  518. msgstr "Ustvarjanje cevi IPC podopravila ni uspelo"
  519. #: ftparchive/multicompress.cc:195
  520. msgid "Failed to create FILE*"
  521. msgstr "Ustvarjanje DATOTEKE* ni uspelo"
  522. #: ftparchive/multicompress.cc:198
  523. msgid "Failed to fork"
  524. msgstr "Vejitev ni uspela"
  525. #: ftparchive/multicompress.cc:212
  526. msgid "Compress child"
  527. msgstr "Podrejeni predmet stiskanja"
  528. #: ftparchive/multicompress.cc:235
  529. #, c-format
  530. msgid "Internal error, failed to create %s"
  531. msgstr "Notranja napaka. Ni mogoče ustvariti %s"
  532. #: ftparchive/multicompress.cc:286
  533. msgid "Failed to create subprocess IPC"
  534. msgstr "Ni mogoče ustvariti podopravila IPD"
  535. #: ftparchive/multicompress.cc:321
  536. msgid "Failed to exec compressor "
  537. msgstr "Ni mogoče izvesti stiskanja "
  538. #: ftparchive/multicompress.cc:360
  539. msgid "decompressor"
  540. msgstr "program za raząirjanje"
  541. #: ftparchive/multicompress.cc:403
  542. msgid "IO to subprocess/file failed"
  543. msgstr "VI podopravila/datoteke je spodletel"
  544. #: ftparchive/multicompress.cc:455
  545. msgid "Failed to read while computing MD5"
  546. msgstr "Med računanjem MD5 ni mogoče brati"
  547. #: ftparchive/multicompress.cc:472
  548. #, c-format
  549. msgid "Problem unlinking %s"
  550. msgstr "Napaka med odvezovanjem %s"
  551. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  552. #, c-format
  553. msgid "Failed to rename %s to %s"
  554. msgstr "Ni mogoče preimenovati %s v %s"
  555. #: cmdline/apt-get.cc:135
  556. msgid "Y"
  557. msgstr "Y"
  558. #: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29
  559. #, c-format
  560. msgid "Regex compilation error - %s"
  561. msgstr "Napaka med prevajanjem logičnega izraza - %s"
  562. #: cmdline/apt-get.cc:252
  563. msgid "The following packages have unmet dependencies:"
  564. msgstr "Naslednji paketi imajo nereąene odvisnosti:"
  565. #: cmdline/apt-get.cc:342
  566. #, c-format
  567. msgid "but %s is installed"
  568. msgstr "vendar je paket %s nameąčen"
  569. #: cmdline/apt-get.cc:344
  570. #, c-format
  571. msgid "but %s is to be installed"
  572. msgstr "vendar bo paket %s nameąčen"
  573. #: cmdline/apt-get.cc:351
  574. msgid "but it is not installable"
  575. msgstr "vendar se ga ne da namestiti"
  576. #: cmdline/apt-get.cc:353
  577. msgid "but it is a virtual package"
  578. msgstr "vendar je navidezen paket"
  579. #: cmdline/apt-get.cc:356
  580. msgid "but it is not installed"
  581. msgstr "vendar ni nameąčen"
  582. #: cmdline/apt-get.cc:356
  583. msgid "but it is not going to be installed"
  584. msgstr "vendar ne bo nameąčen"
  585. #: cmdline/apt-get.cc:361
  586. msgid " or"
  587. msgstr " ali"
  588. #: cmdline/apt-get.cc:392
  589. msgid "The following NEW packages will be installed:"
  590. msgstr "Naslednji NOVI paketi bodo nameąčeni:"
  591. #: cmdline/apt-get.cc:420
  592. msgid "The following packages will be REMOVED:"
  593. msgstr "Naslednji paketi bodo ODSTRANJENI:"
  594. #: cmdline/apt-get.cc:442
  595. msgid "The following packages have been kept back:"
  596. msgstr "Naslednji paketi so bili zadrľani:"
  597. #: cmdline/apt-get.cc:465
  598. msgid "The following packages will be upgraded:"
  599. msgstr "Naslednji paketi bodo nadgrajeni:"
  600. #: cmdline/apt-get.cc:488
  601. msgid "The following packages will be DOWNGRADED:"
  602. msgstr "Naslednji paketi bodo POSTARANI:"
  603. #: cmdline/apt-get.cc:508
  604. msgid "The following held packages will be changed:"
  605. msgstr "Naslednji zadrľani paketi bodo spremenjeni:"
  606. #: cmdline/apt-get.cc:561
  607. #, c-format
  608. msgid "%s (due to %s) "
  609. msgstr "%s (zaradi %s) "
  610. #: cmdline/apt-get.cc:569
  611. msgid ""
  612. "WARNING: The following essential packages will be removed.\n"
  613. "This should NOT be done unless you know exactly what you are doing!"
  614. msgstr ""
  615. "OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n"
  616. "Tega NE storite, razen če ne veste natanko kaj počenjate!"
  617. #: cmdline/apt-get.cc:603
  618. #, c-format
  619. msgid "%lu upgraded, %lu newly installed, "
  620. msgstr "%lu nadgrajenih, %lu na novo nameąčenih, "
  621. #: cmdline/apt-get.cc:607
  622. #, c-format
  623. msgid "%lu reinstalled, "
  624. msgstr "%lu posodobljenih, "
  625. #: cmdline/apt-get.cc:609
  626. #, c-format
  627. msgid "%lu downgraded, "
  628. msgstr "%lu postaranih, "
  629. #: cmdline/apt-get.cc:611
  630. #, c-format
  631. msgid "%lu to remove and %lu not upgraded.\n"
  632. msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n"
  633. #: cmdline/apt-get.cc:615
  634. #, c-format
  635. msgid "%lu not fully installed or removed.\n"
  636. msgstr "%lu ne popolnoma nameąčenih ali odstranjenih.\n"
  637. #: cmdline/apt-get.cc:635
  638. #, c-format
  639. msgid "Note, selecting '%s' for task '%s'\n"
  640. msgstr "Izbiranje '%s' za nalogo '%s'\n"
  641. #: cmdline/apt-get.cc:641
  642. #, c-format
  643. msgid "Note, selecting '%s' for regex '%s'\n"
  644. msgstr "Izbiranje '%s' za logični izraz '%s'\n"
  645. #: cmdline/apt-get.cc:648
  646. #, c-format
  647. msgid "Selected version '%s' (%s) for '%s'\n"
  648. msgstr "Izbrana različica '%s' (%s) za '%s'\n"
  649. #: cmdline/apt-get.cc:658
  650. #, c-format
  651. msgid "Package %s is a virtual package provided by:\n"
  652. msgstr "Paket %s je navidezen in ga je priskrbel:\n"
  653. #: cmdline/apt-get.cc:669
  654. msgid " [Installed]"
  655. msgstr " [Nameąčeno]"
  656. #: cmdline/apt-get.cc:678
  657. msgid " [Not candidate version]"
  658. msgstr "[Ni različica kandidata]"
  659. #: cmdline/apt-get.cc:680
  660. msgid "You should explicitly select one to install."
  661. msgstr "Sami izberite paket, ki ga ľelite namestiti."
  662. #: cmdline/apt-get.cc:683
  663. #, c-format
  664. msgid ""
  665. "Package %s is not available, but is referred to by another package.\n"
  666. "This may mean that the package is missing, has been obsoleted, or\n"
  667. "is only available from another source\n"
  668. msgstr ""
  669. "Paket %s nima navedene različice, vendar se nanj nanaąa nek drug paket.\n"
  670. "To ponavadi pomeni, da paket manjka, je zastaran ali\n"
  671. "pa je na voljo samo iz drugega vira.\n"
  672. #: cmdline/apt-get.cc:701
  673. msgid "However the following packages replace it:"
  674. msgstr "Vendar ga naslednji paketi nadomestijo:"
  675. #: cmdline/apt-get.cc:713
  676. #, c-format
  677. msgid "Package '%s' has no installation candidate"
  678. msgstr "Paket '%s' nima namestitvenega kandidata"
  679. #: cmdline/apt-get.cc:724
  680. #, c-format
  681. msgid "Virtual packages like '%s' can't be removed\n"
  682. msgstr "Navideznih paketov kot je '%s' ni mogoče odstraniti\n"
  683. #: cmdline/apt-get.cc:755
  684. #, c-format
  685. msgid "Note, selecting '%s' instead of '%s'\n"
  686. msgstr "Izbiranje '%s' namesto '%s'\n"
  687. #: cmdline/apt-get.cc:785
  688. #, c-format
  689. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  690. msgstr "%s je preskočen, ker je ľe nameąčen in ne potrebuje nadgradnje.\n"
  691. #: cmdline/apt-get.cc:789
  692. #, c-format
  693. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  694. msgstr "Preskok %s, ni nameąčen in zahtevane so le nadgradnje.\n"
  695. #: cmdline/apt-get.cc:799
  696. #, c-format
  697. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  698. msgstr "Ponovna namestitev %s ni moľna, ker prejem ni moľen.\n"
  699. #: cmdline/apt-get.cc:804
  700. #, c-format
  701. msgid "%s is already the newest version.\n"
  702. msgstr "Najnovejąa različica %s je ľe nameąčena.\n"
  703. #: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992
  704. #, c-format
  705. msgid "%s set to manually installed.\n"
  706. msgstr "%s je bil nastavljen na ročno nameąčen.\n"
  707. #: cmdline/apt-get.cc:863
  708. #, c-format
  709. msgid "Package %s is not installed, so not removed\n"
  710. msgstr "Paket %s ni nameąčen, zato ni odstranjen\n"
  711. #: cmdline/apt-get.cc:938
  712. msgid "Correcting dependencies..."
  713. msgstr "Popravljanje odvisnosti ..."
  714. #: cmdline/apt-get.cc:941
  715. msgid " failed."
  716. msgstr " spodletelo."
  717. #: cmdline/apt-get.cc:944
  718. msgid "Unable to correct dependencies"
  719. msgstr "Ni mogoče popraviti odvisnosti"
  720. #: cmdline/apt-get.cc:947
  721. msgid "Unable to minimize the upgrade set"
  722. msgstr "Ni mogoče pomanjąati zbirke za nadgradnjo"
  723. #: cmdline/apt-get.cc:949
  724. msgid " Done"
  725. msgstr " Opravljeno"
  726. #: cmdline/apt-get.cc:953
  727. msgid "You might want to run 'apt-get -f install' to correct these."
  728. msgstr "Če ľelite popraviti napake, poskusite pognati 'apt-get -f install'."
  729. #: cmdline/apt-get.cc:956
  730. msgid "Unmet dependencies. Try using -f."
  731. msgstr "Nereąene odvisnosti. Poskusite uporabiti -f."
  732. #: cmdline/apt-get.cc:981
  733. msgid "WARNING: The following packages cannot be authenticated!"
  734. msgstr "POZOR: Naslednjih paketov ni bilo mogoče overiti!"
  735. #: cmdline/apt-get.cc:985
  736. msgid "Authentication warning overridden.\n"
  737. msgstr "Opozorilo overitve je bilo prepisano.\n"
  738. #: cmdline/apt-get.cc:992
  739. msgid "Install these packages without verification [y/N]? "
  740. msgstr "Ali ľelite te pakete namestiti brez prevejanja [y/N]? "
  741. #: cmdline/apt-get.cc:994
  742. msgid "Some packages could not be authenticated"
  743. msgstr "Nekaterih paketkov bi bilo mogoče overiti"
  744. #: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166
  745. msgid "There are problems and -y was used without --force-yes"
  746. msgstr "Priąlo je do teľav in -y je bil uporabljen brez --force-yes"
  747. #: cmdline/apt-get.cc:1044
  748. msgid "Internal error, InstallPackages was called with broken packages!"
  749. msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!"
  750. #: cmdline/apt-get.cc:1053
  751. msgid "Packages need to be removed but remove is disabled."
  752. msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogočeno."
  753. #: cmdline/apt-get.cc:1064
  754. msgid "Internal error, Ordering didn't finish"
  755. msgstr "Notranja napaka, Urejanje se ni končalo"
  756. #: cmdline/apt-get.cc:1104
  757. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  758. msgstr ""
  759. "Kako čudno .. Velikosti se ne ujemata, poąljite sporočilo na apt@packages."
  760. "debian.org"
  761. #. TRANSLATOR: The required space between number and unit is already included
  762. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  763. #: cmdline/apt-get.cc:1111
  764. #, c-format
  765. msgid "Need to get %sB/%sB of archives.\n"
  766. msgstr "Potrebno je dobiti %sB/%sB arhivov.\n"
  767. #. TRANSLATOR: The required space between number and unit is already included
  768. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  769. #: cmdline/apt-get.cc:1116
  770. #, c-format
  771. msgid "Need to get %sB of archives.\n"
  772. msgstr "Potrebno je dobiti %sB arhivov.\n"
  773. #. TRANSLATOR: The required space between number and unit is already included
  774. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  775. #: cmdline/apt-get.cc:1123
  776. #, c-format
  777. msgid "After this operation, %sB of additional disk space will be used.\n"
  778. msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n"
  779. #. TRANSLATOR: The required space between number and unit is already included
  780. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  781. #: cmdline/apt-get.cc:1128
  782. #, c-format
  783. msgid "After this operation, %sB disk space will be freed.\n"
  784. msgstr "Po tem opravilu bo sproąčenega %sB prostora na disku.\n"
  785. #: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332
  786. #: cmdline/apt-get.cc:2335
  787. #, c-format
  788. msgid "Couldn't determine free space in %s"
  789. msgstr "Ni mogoče določiti prostega prostora v %s"
  790. #: cmdline/apt-get.cc:1156
  791. #, c-format
  792. msgid "You don't have enough free space in %s."
  793. msgstr "Na %s je premalo prostora."
  794. #: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192
  795. msgid "Trivial Only specified but this is not a trivial operation."
  796. msgstr "Navedena je moľnost Samo preprosto, a to opravilo ni preprosto."
  797. #: cmdline/apt-get.cc:1174
  798. msgid "Yes, do as I say!"
  799. msgstr "Da, naredi tako kot pravim!"
  800. #: cmdline/apt-get.cc:1176
  801. #, c-format
  802. msgid ""
  803. "You are about to do something potentially harmful.\n"
  804. "To continue type in the phrase '%s'\n"
  805. " ?] "
  806. msgstr ""
  807. "Naredili boste nekaj, kar je morda lahko ąkodljivo.\n"
  808. "Za nadaljevanje vtipkajte frazo '%s'\n"
  809. " ?] "
  810. #: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201
  811. msgid "Abort."
  812. msgstr "Prekini."
  813. #: cmdline/apt-get.cc:1197
  814. msgid "Do you want to continue [Y/n]? "
  815. msgstr "Ali ľelite nadaljevati [Y/n]? "
  816. #: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462
  817. #, c-format
  818. msgid "Failed to fetch %s %s\n"
  819. msgstr "Ni mogoče dobiti %s %s\n"
  820. #: cmdline/apt-get.cc:1287
  821. msgid "Some files failed to download"
  822. msgstr "Prejem nekaterih datotek ni uspel"
  823. #: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401
  824. msgid "Download complete and in download only mode"
  825. msgstr "Prejem je dokončan in uporabljen je način samo prejema"
  826. #: cmdline/apt-get.cc:1294
  827. msgid ""
  828. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  829. "missing?"
  830. msgstr ""
  831. "Nekaterih arhivov ni mogoče dobiti. Poskusite uporabiti apt-get update ali --"
  832. "fix-missing."
  833. #: cmdline/apt-get.cc:1298
  834. msgid "--fix-missing and media swapping is not currently supported"
  835. msgstr "--fix-missing in izmenjava medija trenutno nista podprta"
  836. #: cmdline/apt-get.cc:1303
  837. msgid "Unable to correct missing packages."
  838. msgstr "Ni mogoče popraviti manjkajočih paketov."
  839. #: cmdline/apt-get.cc:1304
  840. msgid "Aborting install."
  841. msgstr "Prekinjanje namestitve."
  842. #: cmdline/apt-get.cc:1332
  843. msgid ""
  844. "The following package disappeared from your system as\n"
  845. "all files have been overwritten by other packages:"
  846. msgid_plural ""
  847. "The following packages disappeared from your system as\n"
  848. "all files have been overwritten by other packages:"
  849. msgstr[0] ""
  850. "Naslednji paketi so izginili z vaąega sistema, ker so vse\n"
  851. "datoteke prepisali drugi paketi:"
  852. msgstr[1] ""
  853. "Naslednji paketi je izginil z vaąega sistema, ker so vse\n"
  854. "datoteke prepisali drugi paketi:"
  855. msgstr[2] ""
  856. "Naslednja paketa sta izginila z vaąega sistema, ker so vse\n"
  857. "datoteke prepisali drugi paketi:"
  858. msgstr[3] ""
  859. "Naslednji paketi so izginili z vaąega sistema, ker so vse\n"
  860. "datoteke prepisali drugi paketi:"
  861. #: cmdline/apt-get.cc:1336
  862. msgid "Note: This is done automatic and on purpose by dpkg."
  863. msgstr "Opomba: To je dpkg storil samodejno in namenoma."
  864. #: cmdline/apt-get.cc:1466
  865. #, c-format
  866. msgid "Ignore unavailable target release '%s' of package '%s'"
  867. msgstr "Prezri nerazpoloľljiv cilj izdaje '%s' paketa '%s'"
  868. #: cmdline/apt-get.cc:1498
  869. #, c-format
  870. msgid "Picking '%s' as source package instead of '%s'\n"
  871. msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n"
  872. #. if (VerTag.empty() == false && Last == 0)
  873. #: cmdline/apt-get.cc:1536
  874. #, c-format
  875. msgid "Ignore unavailable version '%s' of package '%s'"
  876. msgstr "Prezri nerazpoloľljivo različico '%s' paketa '%s'"
  877. #: cmdline/apt-get.cc:1552
  878. msgid "The update command takes no arguments"
  879. msgstr "Ukaz update ne sprejema argumentov"
  880. #: cmdline/apt-get.cc:1618
  881. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  882. msgstr ""
  883. "Program ne bi smel brisati stvari, ni mogoče zagnati "
  884. "SamodejnegaOdstranjevalnika"
  885. #: cmdline/apt-get.cc:1666
  886. msgid ""
  887. "The following package was automatically installed and is no longer required:"
  888. msgid_plural ""
  889. "The following packages were automatically installed and are no longer "
  890. "required:"
  891. msgstr[0] "Naslednji paketi so bili samodejno nameąčeni in niso več zahtevani:"
  892. msgstr[1] "Naslednji paket je bil samodejno nameąčen in ni več zahtevan:"
  893. msgstr[2] ""
  894. "Naslednja paketa sta bila samodejno nameąčena in nista več zahtevana:"
  895. msgstr[3] "Naslednji paketi so bili samodejno nameąčeni in niso več zahtevani:"
  896. #: cmdline/apt-get.cc:1670
  897. #, c-format
  898. msgid "%lu package was automatically installed and is no longer required.\n"
  899. msgid_plural ""
  900. "%lu packages were automatically installed and are no longer required.\n"
  901. msgstr[0] "%lu paketov je bilo samodejno nameąčenih in niso več zahtevane.\n"
  902. msgstr[1] "%lu paket je bil samodejno nameąčen in ni bil več zahtevan.\n"
  903. msgstr[2] "%lu paketa sta bila samodejno nameąčena in nista več zahtevana.\n"
  904. msgstr[3] "%lu paketi so bili samodejno nameąčeni in niso več zahtevani.\n"
  905. #: cmdline/apt-get.cc:1672
  906. msgid "Use 'apt-get autoremove' to remove them."
  907. msgstr "Uporabite 'apt-get autoremove' za njihovo odstranitev. "
  908. #: cmdline/apt-get.cc:1677
  909. msgid ""
  910. "Hmm, seems like the AutoRemover destroyed something which really\n"
  911. "shouldn't happen. Please file a bug report against apt."
  912. msgstr ""
  913. "Videti je, da je SamodejniOdstranjevalnik nekaj uničil, kar se ne bi smelo "
  914. "zgoditi\n"
  915. "Poąljite poročilo o hroąču v apt. "
  916. #.
  917. #. if (Packages == 1)
  918. #. {
  919. #. c1out << endl;
  920. #. c1out <<
  921. #. _("Since you only requested a single operation it is extremely likely that\n"
  922. #. "the package is simply not installable and a bug report against\n"
  923. #. "that package should be filed.") << endl;
  924. #. }
  925. #.
  926. #: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822
  927. msgid "The following information may help to resolve the situation:"
  928. msgstr "Naslednji podatki vam bodo morda pomagali reąiti teľavo:"
  929. #: cmdline/apt-get.cc:1684
  930. msgid "Internal Error, AutoRemover broke stuff"
  931. msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari"
  932. #: cmdline/apt-get.cc:1703
  933. msgid "Internal error, AllUpgrade broke stuff"
  934. msgstr "Notranja napaka zaradi AllUpgrade."
  935. #: cmdline/apt-get.cc:1792
  936. msgid "You might want to run 'apt-get -f install' to correct these:"
  937. msgstr "Poskusite zagnati 'apt-get -f install', če ľelite popraviti naslednje:"
  938. #: cmdline/apt-get.cc:1795
  939. msgid ""
  940. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  941. "solution)."
  942. msgstr ""
  943. "Nereąene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali "
  944. "navedite reąitev)."
  945. #: cmdline/apt-get.cc:1807
  946. msgid ""
  947. "Some packages could not be installed. This may mean that you have\n"
  948. "requested an impossible situation or if you are using the unstable\n"
  949. "distribution that some required packages have not yet been created\n"
  950. "or been moved out of Incoming."
  951. msgstr ""
  952. "Nekaterih paketov ni mogoče namestiti. To lahko pomeni, da ste zahtevali\n"
  953. "nemogoč poloľaj, če uporabljate nestabilno izdajo pa\n"
  954. ", da nekateri zahtevani paketi ąe niso ustvarjeni ali premaknjeni\n"
  955. " iz Prihajajočega."
  956. #: cmdline/apt-get.cc:1825
  957. msgid "Broken packages"
  958. msgstr "Pokvarjeni paketi"
  959. #: cmdline/apt-get.cc:1854
  960. msgid "The following extra packages will be installed:"
  961. msgstr "Naslednji dodatni paketi bodo nameąčeni:"
  962. #: cmdline/apt-get.cc:1944
  963. msgid "Suggested packages:"
  964. msgstr "Predlagani paketi:"
  965. #: cmdline/apt-get.cc:1945
  966. msgid "Recommended packages:"
  967. msgstr "Priporočeni paketi:"
  968. #: cmdline/apt-get.cc:1987
  969. #, c-format
  970. msgid "Couldn't find package %s"
  971. msgstr "Ni mogoče najti paketa %s"
  972. #: cmdline/apt-get.cc:1994
  973. #, c-format
  974. msgid "%s set to automatically installed.\n"
  975. msgstr "%s je nastavljen na samodejno nameąčen.\n"
  976. #: cmdline/apt-get.cc:2015
  977. msgid "Calculating upgrade... "
  978. msgstr "Preračunavanje nadgradnje ... "
  979. #: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111
  980. msgid "Failed"
  981. msgstr "Spodletelo"
  982. #: cmdline/apt-get.cc:2023
  983. msgid "Done"
  984. msgstr "Opravljeno"
  985. #: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098
  986. msgid "Internal error, problem resolver broke stuff"
  987. msgstr "Notranja napaka, reąevalnik teľav je pokvaril stvari"
  988. #: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155
  989. msgid "Unable to lock the download directory"
  990. msgstr "Ni mogoče zakleniti mape prejemov"
  991. #: cmdline/apt-get.cc:2198
  992. msgid "Must specify at least one package to fetch source for"
  993. msgstr ""
  994. "Potrebno je navesti vsaj en paket, za katerega ľelite dobiti izvorno kodo"
  995. #: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519
  996. #, c-format
  997. msgid "Unable to find a source package for %s"
  998. msgstr "Izvornega paketa za %s ni mogoče najti"
  999. #: cmdline/apt-get.cc:2254
  1000. #, c-format
  1001. msgid ""
  1002. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  1003. "%s\n"
  1004. msgstr ""
  1005. "OPOMBA: pakiranje '%s' vzdrľevano v sistemu nadzora različice '%s' na:\n"
  1006. "%s\n"
  1007. #: cmdline/apt-get.cc:2259
  1008. #, c-format
  1009. msgid ""
  1010. "Please use:\n"
  1011. "bzr get %s\n"
  1012. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  1013. msgstr ""
  1014. "Uporabite:\n"
  1015. "bzr get %s\n"
  1016. "za pridobivanje zadnjih (morda neizdanih) posodobitev paketa.\n"
  1017. #: cmdline/apt-get.cc:2310
  1018. #, c-format
  1019. msgid "Skipping already downloaded file '%s'\n"
  1020. msgstr "Preskok ľe prejete datoteke '%s'\n"
  1021. #: cmdline/apt-get.cc:2345
  1022. #, c-format
  1023. msgid "You don't have enough free space in %s"
  1024. msgstr "Nimate dovolj prostora na %s"
  1025. #. TRANSLATOR: The required space between number and unit is already included
  1026. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1027. #: cmdline/apt-get.cc:2353
  1028. #, c-format
  1029. msgid "Need to get %sB/%sB of source archives.\n"
  1030. msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n"
  1031. #. TRANSLATOR: The required space between number and unit is already included
  1032. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1033. #: cmdline/apt-get.cc:2358
  1034. #, c-format
  1035. msgid "Need to get %sB of source archives.\n"
  1036. msgstr "Potrebno je dobiti %sB izvornih arhivov.\n"
  1037. #: cmdline/apt-get.cc:2364
  1038. #, c-format
  1039. msgid "Fetch source %s\n"
  1040. msgstr "Dobi vir %s\n"
  1041. #: cmdline/apt-get.cc:2397
  1042. msgid "Failed to fetch some archives."
  1043. msgstr "Nekaterih arhivov ni mogoče pridobiti."
  1044. #: cmdline/apt-get.cc:2427
  1045. #, c-format
  1046. msgid "Skipping unpack of already unpacked source in %s\n"
  1047. msgstr "Odpakiranje ľe odpakiranih izvornih paketov v %s je bilo preskočeno\n"
  1048. #: cmdline/apt-get.cc:2439
  1049. #, c-format
  1050. msgid "Unpack command '%s' failed.\n"
  1051. msgstr "Ukaz odpakiranja '%s' ni uspel.\n"
  1052. #: cmdline/apt-get.cc:2440
  1053. #, c-format
  1054. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1055. msgstr "Izberite, če je paket 'dpkg-dev' nameąčen.\n"
  1056. #: cmdline/apt-get.cc:2457
  1057. #, c-format
  1058. msgid "Build command '%s' failed.\n"
  1059. msgstr "Ukaz gradnje '%s' ni uspel.\n"
  1060. #: cmdline/apt-get.cc:2477
  1061. msgid "Child process failed"
  1062. msgstr "Podrejeno opravilo ni uspelo"
  1063. #: cmdline/apt-get.cc:2493
  1064. msgid "Must specify at least one package to check builddeps for"
  1065. msgstr ""
  1066. "Potrebno je navesti vsaj en paket, za katerega ľelite preveriti odvisnosti "
  1067. "za gradnjo"
  1068. #: cmdline/apt-get.cc:2524
  1069. #, c-format
  1070. msgid "Unable to get build-dependency information for %s"
  1071. msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s"
  1072. #: cmdline/apt-get.cc:2544
  1073. #, c-format
  1074. msgid "%s has no build depends.\n"
  1075. msgstr "%s nima odvisnosti za gradnjo.\n"
  1076. #: cmdline/apt-get.cc:2595
  1077. #, c-format
  1078. msgid ""
  1079. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1080. "found"
  1081. msgstr "%s odvisnosti za %s ni mogoče zadostiti, ker ni mogoče najti paketa %s"
  1082. #: cmdline/apt-get.cc:2648
  1083. #, c-format
  1084. msgid ""
  1085. "%s dependency for %s cannot be satisfied because no available versions of "
  1086. "package %s can satisfy version requirements"
  1087. msgstr ""
  1088. "%s odvisnosti za %s ni mogoče zadostiti, ker nobena različica paketa %s ne "
  1089. "more zadostiti zahtevi po različici"
  1090. #: cmdline/apt-get.cc:2684
  1091. #, c-format
  1092. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1093. msgstr ""
  1094. "Ni mogoče zadostiti %s odvisnosti za %s. Nameąčen paket %s je preveč nov"
  1095. #: cmdline/apt-get.cc:2711
  1096. #, c-format
  1097. msgid "Failed to satisfy %s dependency for %s: %s"
  1098. msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s"
  1099. #: cmdline/apt-get.cc:2727
  1100. #, c-format
  1101. msgid "Build-dependencies for %s could not be satisfied."
  1102. msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti."
  1103. #: cmdline/apt-get.cc:2732
  1104. msgid "Failed to process build dependencies"
  1105. msgstr "Obdelava odvisnosti za gradnjo je spodletela"
  1106. #: cmdline/apt-get.cc:2763
  1107. msgid "Supported modules:"
  1108. msgstr "Podprti moduli:"
  1109. #: cmdline/apt-get.cc:2804
  1110. msgid ""
  1111. "Usage: apt-get [options] command\n"
  1112. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1113. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1114. "\n"
  1115. "apt-get is a simple command line interface for downloading and\n"
  1116. "installing packages. The most frequently used commands are update\n"
  1117. "and install.\n"
  1118. "\n"
  1119. "Commands:\n"
  1120. " update - Retrieve new lists of packages\n"
  1121. " upgrade - Perform an upgrade\n"
  1122. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1123. " remove - Remove packages\n"
  1124. " autoremove - Remove automatically all unused packages\n"
  1125. " purge - Remove packages and config files\n"
  1126. " source - Download source archives\n"
  1127. " build-dep - Configure build-dependencies for source packages\n"
  1128. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1129. " dselect-upgrade - Follow dselect selections\n"
  1130. " clean - Erase downloaded archive files\n"
  1131. " autoclean - Erase old downloaded archive files\n"
  1132. " check - Verify that there are no broken dependencies\n"
  1133. " markauto - Mark the given packages as automatically installed\n"
  1134. " unmarkauto - Mark the given packages as manually installed\n"
  1135. "\n"
  1136. "Options:\n"
  1137. " -h This help text.\n"
  1138. " -q Loggable output - no progress indicator\n"
  1139. " -qq No output except for errors\n"
  1140. " -d Download only - do NOT install or unpack archives\n"
  1141. " -s No-act. Perform ordering simulation\n"
  1142. " -y Assume Yes to all queries and do not prompt\n"
  1143. " -f Attempt to correct a system with broken dependencies in place\n"
  1144. " -m Attempt to continue if archives are unlocatable\n"
  1145. " -u Show a list of upgraded packages as well\n"
  1146. " -b Build the source package after fetching it\n"
  1147. " -V Show verbose version numbers\n"
  1148. " -c=? Read this configuration file\n"
  1149. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1150. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1151. "pages for more information and options.\n"
  1152. " This APT has Super Cow Powers.\n"
  1153. msgstr ""
  1154. "Uporaba: apt-get [moľnosti] ukaz\n"
  1155. " apt-get [moľnosti] install|remove paket1 [paket2 ...]\n"
  1156. " apt-get [moľnosti] source paket1 [paket2 ...]\n"
  1157. "\n"
  1158. "apt-get je enostaven vmesnik ukazne vrstice za prejemanje in\n"
  1159. "nameąčanje paketov. Najpogosteje uporabljana ukaza sta update\n"
  1160. "in install.\n"
  1161. "\n"
  1162. "Ukazi:\n"
  1163. " update - pridobi nov seznam paketov\n"
  1164. " upgrade - izvede nadgradnjo install - namesti nove pakete (paket je libc6 "
  1165. "ne libc6.deb)\n"
  1166. " remove - odstrani pakete\n"
  1167. " autoremove - samodejno odstrani vse neuporabljene pakete\n"
  1168. " purge - odstrani pakete in nastavitvene datoteke\n"
  1169. " source - prejme izvorne arhive\n"
  1170. " build-deb - nastavi odvisnosti gradnje za izvorne pakete\n"
  1171. " dist-upgrade - nadgradi distribucijo, oglejte si apt-get(8)\n"
  1172. " dselect-upgrade - sledi naslednjim izbiram\n"
  1173. " clean - izbriąe prejete datoteke arhivov\n"
  1174. " markauto - označi dane pakete kot samodejno nameąčene\n"
  1175. " unmarkauto - odstrani dane pakete kot ročno nameąčene\n"
  1176. "\n"
  1177. "Moľnosti:\n"
  1178. " -h to besedilo pomoči\n"
  1179. " -q beleľljiv izhod - brez pokazatelja napredka\n"
  1180. " -qq brez izhoda razen za napake\n"
  1181. " -d le prejme - NE namesti ali razpakira arhivov\n"
  1182. " -s izvede simulacijo ukaza.\n"
  1183. " -y predpostavi y za vsa vpraąanja in ne spraąuje\n"
  1184. " -f poskuąa popraviti sistem s pokvarjenimi odvisnostmi\n"
  1185. " -m poskuąa nadaljevati, če arhivov ni mogoče najti\n"
  1186. " -u pokaľe tudi seznam nadgrajenih paketov\n"
  1187. " -b izgradi izvorni paket po njegovem pridobivanju\n"
  1188. " -V pokaľe podroben izpis ątevila različice\n"
  1189. " -c=? prebere to nastavitveno datoteko\n"
  1190. " -o=? nastavi poljubno nastavitveno moľnost, na primer -0 dir::cache=/tmp\n"
  1191. "Oglejte si strani apt-get(8), sources.list(5) in priročnik apt.conf(5)\n"
  1192. " za več podrobnosti in moľnosti.\n"
  1193. " Ta APT ima moči Super Krav.\n"
  1194. #: cmdline/apt-get.cc:2960
  1195. msgid ""
  1196. "NOTE: This is only a simulation!\n"
  1197. " apt-get needs root privileges for real execution.\n"
  1198. " Keep also in mind that locking is deactivated,\n"
  1199. " so don't depend on the relevance to the real current situation!"
  1200. msgstr ""
  1201. "OPOMBA: To je samo simulacija!\n"
  1202. " apt-get za pravo izvajanje potrebuje privilegije skrbnika.\n"
  1203. " Zaklepanje je onemogočeno, zato se ne zanaąajte\n"
  1204. " na pomembnost trenutnega pravega stanja!"
  1205. #: cmdline/acqprogress.cc:55
  1206. msgid "Hit "
  1207. msgstr "Zadetek "
  1208. #: cmdline/acqprogress.cc:79
  1209. msgid "Get:"
  1210. msgstr "Dobi:"
  1211. #: cmdline/acqprogress.cc:110
  1212. msgid "Ign "
  1213. msgstr "Prezri"
  1214. #: cmdline/acqprogress.cc:114
  1215. msgid "Err "
  1216. msgstr "Nap "
  1217. #: cmdline/acqprogress.cc:135
  1218. #, c-format
  1219. msgid "Fetched %sB in %s (%sB/s)\n"
  1220. msgstr "Pridobljenih %sB v %s (%sB/s)\n"
  1221. #: cmdline/acqprogress.cc:225
  1222. #, c-format
  1223. msgid " [Working]"
  1224. msgstr " [Delo]"
  1225. #: cmdline/acqprogress.cc:271
  1226. #, c-format
  1227. msgid ""
  1228. "Media change: please insert the disc labeled\n"
  1229. " '%s'\n"
  1230. "in the drive '%s' and press enter\n"
  1231. msgstr ""
  1232. "Sprememba medija: vstavite disk z oznako\n"
  1233. " '%s'\n"
  1234. "v enoto '%s' in pritisnite vnosno tipko\n"
  1235. #: cmdline/apt-sortpkgs.cc:86
  1236. msgid "Unknown package record!"
  1237. msgstr "Neznan zapis paketa!"
  1238. #: cmdline/apt-sortpkgs.cc:150
  1239. msgid ""
  1240. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1241. "\n"
  1242. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1243. "to indicate what kind of file it is.\n"
  1244. "\n"
  1245. "Options:\n"
  1246. " -h This help text\n"
  1247. " -s Use source file sorting\n"
  1248. " -c=? Read this configuration file\n"
  1249. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1250. msgstr ""
  1251. "Uporaba: apt-sortpkgs [moľnosti] dat1 [dat2 ...]\n"
  1252. "\n"
  1253. "apt-sortpkgs je preprosto orodje za razvrąčanje paketnih datotek. Moľnost -"
  1254. "s\n"
  1255. "določa vrsto datoteke.\n"
  1256. "\n"
  1257. "Moľnosti:\n"
  1258. " -h to besedilo pomoči\n"
  1259. " -s uporabi razvrąčanje izvornih datotek\n"
  1260. " -c=? Prebere podano datoteko z nastavitvami\n"
  1261. " -o=? Nastavi poljubno nastavitveno moľnost, npr. -o dir::cache=/tmp\n"
  1262. #: dselect/install:32
  1263. msgid "Bad default setting!"
  1264. msgstr "Napačna privzeta nastavitev!"
  1265. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1266. #: dselect/install:105 dselect/update:45
  1267. msgid "Press enter to continue."
  1268. msgstr "Za nadaljevanje pritisnite vnosno tipko."
  1269. #: dselect/install:91
  1270. msgid "Do you want to erase any previously downloaded .deb files?"
  1271. msgstr "Ali ľelite izbrisati vse predhodno prejete datoteke .deb?"
  1272. #: dselect/install:101
  1273. msgid "Some errors occurred while unpacking. Packages that were installed"
  1274. msgstr ""
  1275. "Med raząirajanjem je priąlo do nekaterih napak. Paketi, ki so bili nameąčeni"
  1276. #: dselect/install:102
  1277. msgid "will be configured. This may result in duplicate errors"
  1278. msgstr "bodo bili nastavljeni. To lahko povzroči podvojene napake"
  1279. #: dselect/install:103
  1280. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1281. msgstr ""
  1282. "ali do napak zaradi manjkajočih odvisnosti. To je v redu, pomembne so samo "
  1283. "napake"
  1284. #: dselect/install:104
  1285. msgid ""
  1286. "above this message are important. Please fix them and run [I]nstall again"
  1287. msgstr "nad tem sporočilom. Popravite jih in poľenite Namest[I]tev ąe enkrat"
  1288. #: dselect/update:30
  1289. msgid "Merging available information"
  1290. msgstr "Zdruľevanje razpoloľljivih podaktov"
  1291. #: apt-inst/contrib/extracttar.cc:114
  1292. msgid "Failed to create pipes"
  1293. msgstr "Ni mogoče ustvariti pip"
  1294. #: apt-inst/contrib/extracttar.cc:141
  1295. msgid "Failed to exec gzip "
  1296. msgstr "Ni mogoče izvesti gzip "
  1297. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1298. msgid "Corrupted archive"
  1299. msgstr "Pokvarjen arhiv"
  1300. #: apt-inst/contrib/extracttar.cc:193
  1301. msgid "Tar checksum failed, archive corrupted"
  1302. msgstr "Nadzorna vsota tar ni uspela, arhiv je pokvarjen"
  1303. #: apt-inst/contrib/extracttar.cc:296
  1304. #, c-format
  1305. msgid "Unknown TAR header type %u, member %s"
  1306. msgstr "Neznana vrsta glave TAR %u, član %s"
  1307. #: apt-inst/contrib/arfile.cc:70
  1308. msgid "Invalid archive signature"
  1309. msgstr "Neveljaven podpis arhiva"
  1310. #: apt-inst/contrib/arfile.cc:78
  1311. msgid "Error reading archive member header"
  1312. msgstr "Napaka med branjem glave člana arhiva"
  1313. #: apt-inst/contrib/arfile.cc:90
  1314. #, c-format
  1315. msgid "Invalid archive member header %s"
  1316. msgstr "Neveljavna glava arhiva člana %s"
  1317. #: apt-inst/contrib/arfile.cc:102
  1318. msgid "Invalid archive member header"
  1319. msgstr "Neveljavna glava člana arhiva"
  1320. #: apt-inst/contrib/arfile.cc:128
  1321. msgid "Archive is too short"
  1322. msgstr "Arhiv je prekratek"
  1323. #: apt-inst/contrib/arfile.cc:132
  1324. msgid "Failed to read the archive headers"
  1325. msgstr "Glav arhiva ni mogoče brati"
  1326. #: apt-inst/filelist.cc:380
  1327. msgid "DropNode called on still linked node"
  1328. msgstr "DropNode je poklical stabilno povezano vozliąče"
  1329. #: apt-inst/filelist.cc:412
  1330. msgid "Failed to locate the hash element!"
  1331. msgstr "Ni mogoče najti razprąenega elementa!"
  1332. #: apt-inst/filelist.cc:459
  1333. msgid "Failed to allocate diversion"
  1334. msgstr "Ni mogoče dodeliti odklona"
  1335. #: apt-inst/filelist.cc:464
  1336. msgid "Internal error in AddDiversion"
  1337. msgstr "Notranja napaka v AddDiversion"
  1338. #: apt-inst/filelist.cc:477
  1339. #, c-format
  1340. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1341. msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s"
  1342. #: apt-inst/filelist.cc:506
  1343. #, c-format
  1344. msgid "Double add of diversion %s -> %s"
  1345. msgstr "Dvojni seątevek odklona %s -> %s"
  1346. #: apt-inst/filelist.cc:549
  1347. #, c-format
  1348. msgid "Duplicate conf file %s/%s"
  1349. msgstr "Dvojnik datoteke z nastavitvami %s/%s"
  1350. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1351. #, c-format
  1352. msgid "Failed to write file %s"
  1353. msgstr "Zapisovanje datoteke %s je spodletelo"
  1354. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1355. #, c-format
  1356. msgid "Failed to close file %s"
  1357. msgstr "Napaka med zapiranjem datoteke %s"
  1358. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1359. #, c-format
  1360. msgid "The path %s is too long"
  1361. msgstr "Pot %s je predolga"
  1362. #: apt-inst/extract.cc:124
  1363. #, c-format
  1364. msgid "Unpacking %s more than once"
  1365. msgstr "Odpakiranje %s več kot enkrat"
  1366. #: apt-inst/extract.cc:134
  1367. #, c-format
  1368. msgid "The directory %s is diverted"
  1369. msgstr "Mapa %s je odklonjena"
  1370. #: apt-inst/extract.cc:144
  1371. #, c-format
  1372. msgid "The package is trying to write to the diversion target %s/%s"
  1373. msgstr "Paket poskuąa pisati v tarčo odklona %s/%s"
  1374. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1375. msgid "The diversion path is too long"
  1376. msgstr "Pot odklona je predloga"
  1377. #: apt-inst/extract.cc:240
  1378. #, c-format
  1379. msgid "The directory %s is being replaced by a non-directory"
  1380. msgstr "Mapa %s je bil zamenjana z ne-mapo"
  1381. #: apt-inst/extract.cc:280
  1382. msgid "Failed to locate node in its hash bucket"
  1383. msgstr "Iskanje vozliąča v njegovem razprąenem vedru ni uspelo"
  1384. #: apt-inst/extract.cc:284
  1385. msgid "The path is too long"
  1386. msgstr "Pot je predolga"
  1387. #: apt-inst/extract.cc:414
  1388. #, c-format
  1389. msgid "Overwrite package match with no version for %s"
  1390. msgstr "Prepiąi zadetek paketa brez vnosa različice za %s"
  1391. #: apt-inst/extract.cc:431
  1392. #, c-format
  1393. msgid "File %s/%s overwrites the one in the package %s"
  1394. msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s"
  1395. #. Only warn if there are no sources.list.d.
  1396. #. Only warn if there is no sources.list file.
  1397. #: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179
  1398. #: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204
  1399. #: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100
  1400. #: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307
  1401. #: methods/mirror.cc:87
  1402. #, c-format
  1403. msgid "Unable to read %s"
  1404. msgstr "Ni mogoče brati %s"
  1405. #: apt-inst/extract.cc:491
  1406. #, c-format
  1407. msgid "Unable to stat %s"
  1408. msgstr "Ni mogoče določiti %s"
  1409. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1410. #, c-format
  1411. msgid "Failed to remove %s"
  1412. msgstr "Odstranitev %s ni uspela"
  1413. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1414. #, c-format
  1415. msgid "Unable to create %s"
  1416. msgstr "Ni mogoče ustvariti %s"
  1417. #: apt-inst/deb/dpkgdb.cc:114
  1418. #, c-format
  1419. msgid "Failed to stat %sinfo"
  1420. msgstr "Določitev %sinfo ni uspela"
  1421. #: apt-inst/deb/dpkgdb.cc:119
  1422. msgid "The info and temp directories need to be on the same filesystem"
  1423. msgstr "Podatki in začasne mape morajo biti na istem datotečnem sistemu"
  1424. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:1070
  1425. #: apt-pkg/pkgcachegen.cc:1174 apt-pkg/pkgcachegen.cc:1180
  1426. #: apt-pkg/pkgcachegen.cc:1326
  1427. msgid "Reading package lists"
  1428. msgstr "Branje seznama paketov"
  1429. #: apt-inst/deb/dpkgdb.cc:176
  1430. #, c-format
  1431. msgid "Failed to change to the admin dir %sinfo"
  1432. msgstr "Sprememba v skrbnikovo mapo %sinfo ni uspela"
  1433. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1434. #: apt-inst/deb/dpkgdb.cc:444
  1435. msgid "Internal error getting a package name"
  1436. msgstr "Notranja napaka med dobivanjem imena paketa"
  1437. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1438. msgid "Reading file listing"
  1439. msgstr "Branje seznama datotek"
  1440. #: apt-inst/deb/dpkgdb.cc:212
  1441. #, c-format
  1442. msgid ""
  1443. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1444. "then make it empty and immediately re-install the same version of the "
  1445. "package!"
  1446. msgstr ""
  1447. "Odpiranje datoteke s seznamom '%sinfo/%s' ni uspelo. Če ne morete obnoviti "
  1448. "datoteke, jo izpraznite in takoj znova namestite enako različico paketa!"
  1449. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1450. #, c-format
  1451. msgid "Failed reading the list file %sinfo/%s"
  1452. msgstr "Branje datoteke s seznamom %sinfo/%s ni uspelo"
  1453. #: apt-inst/deb/dpkgdb.cc:262
  1454. msgid "Internal error getting a node"
  1455. msgstr "Notranja napaka med dobivanjem vozliąča"
  1456. #: apt-inst/deb/dpkgdb.cc:305
  1457. #, c-format
  1458. msgid "Failed to open the diversions file %sdiversions"
  1459. msgstr "Odpiranje datoteke z odklonom %sdiversions ni uspelo"
  1460. #: apt-inst/deb/dpkgdb.cc:320
  1461. msgid "The diversion file is corrupted"
  1462. msgstr "Datoteka z odklonom je pokvarjena"
  1463. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1464. #: apt-inst/deb/dpkgdb.cc:337
  1465. #, c-format
  1466. msgid "Invalid line in the diversion file: %s"
  1467. msgstr "Neveljavna vrstica v datoteki z odklonom: %s"
  1468. #: apt-inst/deb/dpkgdb.cc:358
  1469. msgid "Internal error adding a diversion"
  1470. msgstr "Notranja napaka med dodajanjem odklona"
  1471. #: apt-inst/deb/dpkgdb.cc:379
  1472. msgid "The pkg cache must be initialized first"
  1473. msgstr "Najprej se mora začeti predpomnilnik paketov"
  1474. #: apt-inst/deb/dpkgdb.cc:439
  1475. #, c-format
  1476. msgid "Failed to find a Package: header, offset %lu"
  1477. msgstr "Napaka med iskanjem paketa: glava, odmik %lu"
  1478. #: apt-inst/deb/dpkgdb.cc:461
  1479. #, c-format
  1480. msgid "Bad ConfFile section in the status file. Offset %lu"
  1481. msgstr "Napačna izbira ConfFile v datoteki stanja. Odmik %lu"
  1482. #: apt-inst/deb/dpkgdb.cc:466
  1483. #, c-format
  1484. msgid "Error parsing MD5. Offset %lu"
  1485. msgstr "Napaka med razčlenjevanjem MD5. Odmik %lu"
  1486. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1487. #, c-format
  1488. msgid "This is not a valid DEB archive, missing '%s' member"
  1489. msgstr "To ni veljaven arhiv DEB. Manjka član '%s'."
  1490. #: apt-inst/deb/debfile.cc:50
  1491. #, c-format
  1492. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1493. msgstr "To ni veljaven arhiv DEB, nima člana '%s', '%s' ali '%s'"
  1494. #: apt-inst/deb/debfile.cc:110
  1495. #, c-format
  1496. msgid "Couldn't change to %s"
  1497. msgstr "Ni mogoče spremeniti v %s"
  1498. #: apt-inst/deb/debfile.cc:140
  1499. msgid "Internal error, could not locate member"
  1500. msgstr "Notranja napaka. Ni mogoče najti člana."
  1501. #: apt-inst/deb/debfile.cc:173
  1502. msgid "Failed to locate a valid control file"
  1503. msgstr "Ni mogoče najti veljavne nadzorne datoteke"
  1504. #: apt-inst/deb/debfile.cc:258
  1505. msgid "Unparsable control file"
  1506. msgstr "Nadzorne datoteke ni mogoče razčleniti"
  1507. #: methods/bzip2.cc:65
  1508. #, c-format
  1509. msgid "Couldn't open pipe for %s"
  1510. msgstr "Ni mogoče odprti cevi za %s"
  1511. #: methods/bzip2.cc:109
  1512. #, c-format
  1513. msgid "Read error from %s process"
  1514. msgstr "Napaka med branjem iz opravila %s"
  1515. #: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43
  1516. #: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486
  1517. #: methods/rred.cc:495
  1518. msgid "Failed to stat"
  1519. msgstr "Določitev ni uspela"
  1520. #: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99
  1521. #: methods/rred.cc:492
  1522. msgid "Failed to set modification time"
  1523. msgstr "Nastavitev časa spremembe je spodletela"
  1524. #: methods/cdrom.cc:199
  1525. #, c-format
  1526. msgid "Unable to read the cdrom database %s"
  1527. msgstr "Ni mogoče brati podatkovne zbirke %s na CD-ROM-u"
  1528. #: methods/cdrom.cc:208
  1529. msgid ""
  1530. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1531. "cannot be used to add new CD-ROMs"
  1532. msgstr ""
  1533. "Uporabite apt-cdrom, če ľelite, da APT prepozna CD. apt-get update ne more "
  1534. "sam dodati novih CD-ROM-ov"
  1535. #: methods/cdrom.cc:218
  1536. msgid "Wrong CD-ROM"
  1537. msgstr "Napačen CD-ROM"
  1538. #: methods/cdrom.cc:245
  1539. #, c-format
  1540. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1541. msgstr "Ni mogoče odklopiti CD-ROM-a v %s, ker je morda ąe v uporabi."
  1542. #: methods/cdrom.cc:250
  1543. msgid "Disk not found."
  1544. msgstr "Diska ni mogoče najti."
  1545. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1546. msgid "File not found"
  1547. msgstr "Datoteke ni mogoče najti"
  1548. #: methods/file.cc:44
  1549. msgid "Invalid URI, local URIS must not start with //"
  1550. msgstr "Neveljaven URI. Krajevni URI-ji se morajo začeti z //"
  1551. #. Login must be before getpeername otherwise dante won't work.
  1552. #: methods/ftp.cc:168
  1553. msgid "Logging in"
  1554. msgstr "Prijavljanje"
  1555. #: methods/ftp.cc:174
  1556. msgid "Unable to determine the peer name"
  1557. msgstr "Ni mogoče ugotoviti imena gostitelja"
  1558. #: methods/ftp.cc:179
  1559. msgid "Unable to determine the local name"
  1560. msgstr "Ni mogoče določiti krajevnega imena"
  1561. #: methods/ftp.cc:210 methods/ftp.cc:238
  1562. #, c-format
  1563. msgid "The server refused the connection and said: %s"
  1564. msgstr "Streľnik je zavrnil povezavo in sporočil: %s"
  1565. #: methods/ftp.cc:216
  1566. #, c-format
  1567. msgid "USER failed, server said: %s"
  1568. msgstr "USER je spodletel, streľnik je odgovoril: %s"
  1569. #: methods/ftp.cc:223
  1570. #, c-format
  1571. msgid "PASS failed, server said: %s"
  1572. msgstr "PASS je spodletel, streľnik je odgovoril: %s"
  1573. #: methods/ftp.cc:243
  1574. msgid ""
  1575. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1576. "is empty."
  1577. msgstr ""
  1578. "Naveden je bil posredniąki streľnik, ne pa tudi prijavni skript. Acquire::"
  1579. "ftp::ProxyLogin je prazen."
  1580. #: methods/ftp.cc:271
  1581. #, c-format
  1582. msgid "Login script command '%s' failed, server said: %s"
  1583. msgstr "Ukaz prijavne skripte '%s' ni uspel, streľnik je odgovoril: %s"
  1584. #: methods/ftp.cc:297
  1585. #, c-format
  1586. msgid "TYPE failed, server said: %s"
  1587. msgstr "TYPE je spodletel, streľnik je odgovoril: %s"
  1588. #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:183 methods/rsh.cc:226
  1589. msgid "Connection timeout"
  1590. msgstr "Povezava je zakasnela"
  1591. #: methods/ftp.cc:341
  1592. msgid "Server closed the connection"
  1593. msgstr "Streľnik je zaprl povezavo"
  1594. #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190
  1595. msgid "Read error"
  1596. msgstr "Napaka branja"
  1597. #: methods/ftp.cc:351 methods/rsh.cc:197
  1598. msgid "A response overflowed the buffer."
  1599. msgstr "Odgovor je prekoračil predpomnilnik."
  1600. #: methods/ftp.cc:368 methods/ftp.cc:380
  1601. msgid "Protocol corruption"
  1602. msgstr "Okvara protokola"
  1603. #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232
  1604. msgid "Write error"
  1605. msgstr "Napaka pisanja"
  1606. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1607. msgid "Could not create a socket"
  1608. msgstr "Ni mogoče ustvariti vtiča"
  1609. #: methods/ftp.cc:703
  1610. msgid "Could not connect data socket, connection timed out"
  1611. msgstr "Ni mogoče povezati podatkovnega vtiča. Povezava je zakasnela."
  1612. #: methods/ftp.cc:709
  1613. msgid "Could not connect passive socket."
  1614. msgstr "Ni mogoče povezat pasivnega vtiča."
  1615. #: methods/ftp.cc:727
  1616. msgid "getaddrinfo was unable to get a listening socket"
  1617. msgstr "getaddrinfo ni mogel dobiti posluąajočega vtiča"
  1618. #: methods/ftp.cc:741
  1619. msgid "Could not bind a socket"
  1620. msgstr "Ni mogoče povezati vtiča"
  1621. #: methods/ftp.cc:745
  1622. msgid "Could not listen on the socket"
  1623. msgstr "Ni mogoče posluąati na vtiču"
  1624. #: methods/ftp.cc:752
  1625. msgid "Could not determine the socket's name"
  1626. msgstr "Ni mogoče določiti imena vtiča"
  1627. #: methods/ftp.cc:784
  1628. msgid "Unable to send PORT command"
  1629. msgstr "Ni mogoče poslati ukaza PORT"
  1630. #: methods/ftp.cc:794
  1631. #, c-format
  1632. msgid "Unknown address family %u (AF_*)"
  1633. msgstr "Neznan naslov druľine %u (AF_*)"
  1634. #: methods/ftp.cc:803
  1635. #, c-format
  1636. msgid "EPRT failed, server said: %s"
  1637. msgstr "EPRT ni uspel, streľnik je odgovoril: %s"
  1638. #: methods/ftp.cc:823
  1639. msgid "Data socket connect timed out"
  1640. msgstr "Povezava podatkovne vtičnice je zakasnela"
  1641. #: methods/ftp.cc:830
  1642. msgid "Unable to accept connection"
  1643. msgstr "Ni mogoče sprejeti povezave"
  1644. #: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302
  1645. msgid "Problem hashing file"
  1646. msgstr "Teľava med razprąevanjem datoteke"
  1647. #: methods/ftp.cc:882
  1648. #, c-format
  1649. msgid "Unable to fetch file, server said '%s'"
  1650. msgstr "Ni mogoče pridobiti datoteke, streľnik je odgovoril '%s'"
  1651. #: methods/ftp.cc:897 methods/rsh.cc:321
  1652. msgid "Data socket timed out"
  1653. msgstr "Podatkovna vtič je potekel"
  1654. #: methods/ftp.cc:927
  1655. #, c-format
  1656. msgid "Data transfer failed, server said '%s'"
  1657. msgstr "Prenos podatkov ni uspel, streľnik je odgovoril '%s'"
  1658. #. Get the files information
  1659. #: methods/ftp.cc:1004
  1660. msgid "Query"
  1661. msgstr "Poizvedba"
  1662. #: methods/ftp.cc:1116
  1663. msgid "Unable to invoke "
  1664. msgstr "Ni mogoče klicati "
  1665. #: methods/connect.cc:71
  1666. #, c-format
  1667. msgid "Connecting to %s (%s)"
  1668. msgstr "Povezovanje z %s (%s)"
  1669. #: methods/connect.cc:82
  1670. #, c-format
  1671. msgid "[IP: %s %s]"
  1672. msgstr "[IP: %s %s]"
  1673. #: methods/connect.cc:89
  1674. #, c-format
  1675. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1676. msgstr "Ni mogoče ustvariti vtiča za %s (f=%u t=%u p=%u)"
  1677. #: methods/connect.cc:95
  1678. #, c-format
  1679. msgid "Cannot initiate the connection to %s:%s (%s)."
  1680. msgstr "Ni mogoče začeti povezave z %s:%s (%s)."
  1681. #: methods/connect.cc:103
  1682. #, c-format
  1683. msgid "Could not connect to %s:%s (%s), connection timed out"
  1684. msgstr "Ni se mogoče povezati z %s:%s (%s). Povezava je zakasnela."
  1685. #: methods/connect.cc:121
  1686. #, c-format
  1687. msgid "Could not connect to %s:%s (%s)."
  1688. msgstr "Ni se mogoče povezati z %s:%s (%s)."
  1689. #. We say this mainly because the pause here is for the
  1690. #. ssh connection that is still going
  1691. #: methods/connect.cc:149 methods/rsh.cc:424
  1692. #, c-format
  1693. msgid "Connecting to %s"
  1694. msgstr "Povezovanje z %s"
  1695. #: methods/connect.cc:168 methods/connect.cc:187
  1696. #, c-format
  1697. msgid "Could not resolve '%s'"
  1698. msgstr "Ni mogoče razreąiti '%s'"
  1699. #: methods/connect.cc:193
  1700. #, c-format
  1701. msgid "Temporary failure resolving '%s'"
  1702. msgstr "Začasna napaka med razreąevanjem '%s'"
  1703. #: methods/connect.cc:196
  1704. #, c-format
  1705. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1706. msgstr "Nekaj čudnega se je zgodilo med razreąevanjem '%s:%s' (%i - %s)"
  1707. #: methods/connect.cc:243
  1708. #, c-format
  1709. msgid "Unable to connect to %s:%s:"
  1710. msgstr "Ni se mogoče povezati z %s:%s:"
  1711. #. TRANSLATOR: %s is the trusted keyring parts directory
  1712. #: methods/gpgv.cc:71
  1713. #, c-format
  1714. msgid "No keyring installed in %s."
  1715. msgstr "V %s ni nameąčenih zbirk ključev."
  1716. #: methods/gpgv.cc:163
  1717. msgid ""
  1718. "Internal error: Good signature, but could not determine key fingerprint?!"
  1719. msgstr ""
  1720. "Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!"
  1721. #: methods/gpgv.cc:168
  1722. msgid "At least one invalid signature was encountered."
  1723. msgstr "Najden je bil vsaj en neveljaven podpis."
  1724. #: methods/gpgv.cc:172
  1725. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1726. msgstr "Ni mogoče izvesti 'gpgv' za preverjanje podpisa (je gpgv nameąčen?)"
  1727. #: methods/gpgv.cc:177
  1728. msgid "Unknown error executing gpgv"
  1729. msgstr "Neznana napaka med izvajanjem gpgv"
  1730. #: methods/gpgv.cc:211 methods/gpgv.cc:218
  1731. msgid "The following signatures were invalid:\n"
  1732. msgstr "Naslednji podpisi so bili neveljavni:\n"
  1733. #: methods/gpgv.cc:225
  1734. msgid ""
  1735. "The following signatures couldn't be verified because the public key is not "
  1736. "available:\n"
  1737. msgstr ""
  1738. "Naslednjih podpisov ni mogoče preveriti, ker javni ključ ni na voljo:\n"
  1739. #: methods/http.cc:385
  1740. msgid "Waiting for headers"
  1741. msgstr "Čakanje na glave"
  1742. #: methods/http.cc:531
  1743. #, c-format
  1744. msgid "Got a single header line over %u chars"
  1745. msgstr "Dobljena je ena vrstica glave preko %u znakov"
  1746. #: methods/http.cc:539
  1747. msgid "Bad header line"
  1748. msgstr "Neveljavna vrstica glave"
  1749. #: methods/http.cc:564 methods/http.cc:571
  1750. msgid "The HTTP server sent an invalid reply header"
  1751. msgstr "Streľnik HTTP je poslal neveljavno glavo odgovora"
  1752. #: methods/http.cc:600
  1753. msgid "The HTTP server sent an invalid Content-Length header"
  1754. msgstr "Streľnik HTTP je poslal glavo z neveljavno dolľino vsebine"
  1755. #: methods/http.cc:615
  1756. msgid "The HTTP server sent an invalid Content-Range header"
  1757. msgstr "Streľnik HTTP je poslal glavo z neveljavnim obsegom vsebine"
  1758. #: methods/http.cc:617
  1759. msgid "This HTTP server has broken range support"
  1760. msgstr "Ta streľnik HTTP ima pokvarjen obseg podpore"
  1761. #: methods/http.cc:641
  1762. msgid "Unknown date format"
  1763. msgstr "Neznana oblika datuma"
  1764. #: methods/http.cc:799
  1765. msgid "Select failed"
  1766. msgstr "Izbira ni uspela"
  1767. #: methods/http.cc:804
  1768. msgid "Connection timed out"
  1769. msgstr "Povezava je zakasnela"
  1770. #: methods/http.cc:827
  1771. msgid "Error writing to output file"
  1772. msgstr "Napaka med pisanjem v izhodno datoteko"
  1773. #: methods/http.cc:858
  1774. msgid "Error writing to file"
  1775. msgstr "Napaka med pisanjem v datoteko"
  1776. #: methods/http.cc:886
  1777. msgid "Error writing to the file"
  1778. msgstr "Napaka med pisanjem v datoteko"
  1779. #: methods/http.cc:900
  1780. msgid "Error reading from server. Remote end closed connection"
  1781. msgstr "Napaka med branjem s streľnika. Oddaljeni del je zaprl povezavo"
  1782. #: methods/http.cc:902
  1783. msgid "Error reading from server"
  1784. msgstr "Napaka med branjem s streľnika"
  1785. #: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281
  1786. msgid "Failed to truncate file"
  1787. msgstr "Ni mogoče obrezati datoteke"
  1788. #: methods/http.cc:1160
  1789. msgid "Bad header data"
  1790. msgstr "Slabi podatki glave"
  1791. #: methods/http.cc:1177 methods/http.cc:1232
  1792. msgid "Connection failed"
  1793. msgstr "Povezava ni uspela"
  1794. #: methods/http.cc:1324
  1795. msgid "Internal error"
  1796. msgstr "Notranja napaka"
  1797. #: apt-pkg/contrib/mmap.cc:77
  1798. msgid "Can't mmap an empty file"
  1799. msgstr "mmap prazne datoteke ni mogoč"
  1800. #: apt-pkg/contrib/mmap.cc:89
  1801. #, c-format
  1802. msgid "Couldn't duplicate file descriptor %i"
  1803. msgstr "Ni mogoče podvojiti opisnika datotek %i"
  1804. #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250
  1805. #, c-format
  1806. msgid "Couldn't make mmap of %lu bytes"
  1807. msgstr "Ni mogoče narediti mmap %lu bajtov"
  1808. #: apt-pkg/contrib/mmap.cc:124
  1809. msgid "Unable to close mmap"
  1810. msgstr "Ni mogoče zapreti mmap"
  1811. #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180
  1812. msgid "Unable to synchronize mmap"
  1813. msgstr "Ni mogoče uskladiti mmap"
  1814. #: apt-pkg/contrib/mmap.cc:300
  1815. #, c-format
  1816. msgid ""
  1817. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1818. "Current value: %lu. (man 5 apt.conf)"
  1819. msgstr ""
  1820. "Dinamičnemu MMap je zmanjkalo prostora. Povečajte velikost APT::Omejitev-"
  1821. "Predpomnilnika. Trenutna vrednost: %lu. (man 5 apt.conf)"
  1822. #: apt-pkg/contrib/mmap.cc:399
  1823. #, c-format
  1824. msgid ""
  1825. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1826. "reached."
  1827. msgstr ""
  1828. "Ni mogoče povečati velikosti MMap, ker je omejitev %lu bajtov ľe doseľena."
  1829. #: apt-pkg/contrib/mmap.cc:402
  1830. msgid ""
  1831. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1832. msgstr ""
  1833. "Ni mogoče povečati velikosti MMap, ker je samodejno povečevanje onemogočeno."
  1834. #. d means days, h means hours, min means minutes, s means seconds
  1835. #: apt-pkg/contrib/strutl.cc:371
  1836. #, c-format
  1837. msgid "%lid %lih %limin %lis"
  1838. msgstr "%lid %lih %limin %lis"
  1839. #. h means hours, min means minutes, s means seconds
  1840. #: apt-pkg/contrib/strutl.cc:378
  1841. #, c-format
  1842. msgid "%lih %limin %lis"
  1843. msgstr "%lih %limin %lis"
  1844. #. min means minutes, s means seconds
  1845. #: apt-pkg/contrib/strutl.cc:385
  1846. #, c-format
  1847. msgid "%limin %lis"
  1848. msgstr "%limin %lis"
  1849. #. s means seconds
  1850. #: apt-pkg/contrib/strutl.cc:390
  1851. #, c-format
  1852. msgid "%lis"
  1853. msgstr "%lis"
  1854. #: apt-pkg/contrib/strutl.cc:1119
  1855. #, c-format
  1856. msgid "Selection %s not found"
  1857. msgstr "Izbire %s ni mogoče najti"
  1858. #: apt-pkg/contrib/configuration.cc:452
  1859. #, c-format
  1860. msgid "Unrecognized type abbreviation: '%c'"
  1861. msgstr "Neprepoznana vrsta okrająave: '%c'"
  1862. #: apt-pkg/contrib/configuration.cc:510
  1863. #, c-format
  1864. msgid "Opening configuration file %s"
  1865. msgstr "Odpiranje nastavitvene datoteke %s"
  1866. #: apt-pkg/contrib/configuration.cc:678
  1867. #, c-format
  1868. msgid "Syntax error %s:%u: Block starts with no name."
  1869. msgstr "Skladenjska napaka %s:%u: Blok se začne brez imena."
  1870. #: apt-pkg/contrib/configuration.cc:697
  1871. #, c-format
  1872. msgid "Syntax error %s:%u: Malformed tag"
  1873. msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka."
  1874. #: apt-pkg/contrib/configuration.cc:714
  1875. #, c-format
  1876. msgid "Syntax error %s:%u: Extra junk after value"
  1877. msgstr "Skladenjska napaka %s:%u: Dodatna krama za vrednostjo."
  1878. #: apt-pkg/contrib/configuration.cc:754
  1879. #, c-format
  1880. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1881. msgstr ""
  1882. "Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni."
  1883. #: apt-pkg/contrib/configuration.cc:761
  1884. #, c-format
  1885. msgid "Syntax error %s:%u: Too many nested includes"
  1886. msgstr "Skladenjska napaka %s:%u: Preveč vgnezdenih vključitev"
  1887. #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770
  1888. #, c-format
  1889. msgid "Syntax error %s:%u: Included from here"
  1890. msgstr "Skladenjska napaka %s:%u: Vključeno od tu"
  1891. #: apt-pkg/contrib/configuration.cc:774
  1892. #, c-format
  1893. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1894. msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'"
  1895. #: apt-pkg/contrib/configuration.cc:777
  1896. #, c-format
  1897. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1898. msgstr ""
  1899. "Skladenjska napaka %s:%u: počisti ukaz zahteva drevo moľnosti kot argument"
  1900. #: apt-pkg/contrib/configuration.cc:827
  1901. #, c-format
  1902. msgid "Syntax error %s:%u: Extra junk at end of file"
  1903. msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke"
  1904. #: apt-pkg/contrib/progress.cc:153
  1905. #, c-format
  1906. msgid "%c%s... Error!"
  1907. msgstr "%c%s ... Napaka!"
  1908. #: apt-pkg/contrib/progress.cc:155
  1909. #, c-format
  1910. msgid "%c%s... Done"
  1911. msgstr "%c%s ... Narejeno"
  1912. #: apt-pkg/contrib/cmndline.cc:77
  1913. #, c-format
  1914. msgid "Command line option '%c' [from %s] is not known."
  1915. msgstr "Moľnost ukazne vrstice '%c' [iz %s] ni poznana."
  1916. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1917. #: apt-pkg/contrib/cmndline.cc:119
  1918. #, c-format
  1919. msgid "Command line option %s is not understood"
  1920. msgstr "Moľnosti ukazne vrstice %s ni mogoče razumeti"
  1921. #: apt-pkg/contrib/cmndline.cc:124
  1922. #, c-format
  1923. msgid "Command line option %s is not boolean"
  1924. msgstr "Moľnost ukazne vrstice %s ni boolova vrednost"
  1925. #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186
  1926. #, c-format
  1927. msgid "Option %s requires an argument."
  1928. msgstr "Moľnost %s zahteva argument."
  1929. #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206
  1930. #, c-format
  1931. msgid "Option %s: Configuration item specification must have an =<val>."
  1932. msgstr "Moľnost %s: Določilo predmeta nastavitve zahtevajo =<val>."
  1933. #: apt-pkg/contrib/cmndline.cc:236
  1934. #, c-format
  1935. msgid "Option %s requires an integer argument, not '%s'"
  1936. msgstr "Moľnost %s zahteva celoątevilski argument, ne '%s'"
  1937. #: apt-pkg/contrib/cmndline.cc:267
  1938. #, c-format
  1939. msgid "Option '%s' is too long"
  1940. msgstr "Moľnost '%s' je predolga"
  1941. #: apt-pkg/contrib/cmndline.cc:300
  1942. #, c-format
  1943. msgid "Sense %s is not understood, try true or false."
  1944. msgstr "Pomena %s ni mogoče razumeti, poskusite pravilno ali napačno."
  1945. #: apt-pkg/contrib/cmndline.cc:350
  1946. #, c-format
  1947. msgid "Invalid operation %s"
  1948. msgstr "Neveljavno opravilo %s"
  1949. #: apt-pkg/contrib/cdromutl.cc:52
  1950. #, c-format
  1951. msgid "Unable to stat the mount point %s"
  1952. msgstr "Ni mogoče določiti priklopne točke %s"
  1953. #: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209
  1954. #: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39
  1955. #: methods/mirror.cc:93
  1956. #, c-format
  1957. msgid "Unable to change to %s"
  1958. msgstr "Ni mogoče spremeniti v %s"
  1959. #: apt-pkg/contrib/cdromutl.cc:217
  1960. msgid "Failed to stat the cdrom"
  1961. msgstr "Ni mogoče določiti CD-ROM-a"
  1962. #: apt-pkg/contrib/fileutl.cc:154
  1963. #, c-format
  1964. msgid "Not using locking for read only lock file %s"
  1965. msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s"
  1966. #: apt-pkg/contrib/fileutl.cc:159
  1967. #, c-format
  1968. msgid "Could not open lock file %s"
  1969. msgstr "Ni mogoče odprti zaklenjene datoteke %s"
  1970. #: apt-pkg/contrib/fileutl.cc:177
  1971. #, c-format
  1972. msgid "Not using locking for nfs mounted lock file %s"
  1973. msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS"
  1974. #: apt-pkg/contrib/fileutl.cc:181
  1975. #, c-format
  1976. msgid "Could not get lock %s"
  1977. msgstr "Ni mogoče zakleniti datoteke %s"
  1978. #: apt-pkg/contrib/fileutl.cc:643
  1979. #, c-format
  1980. msgid "Waited for %s but it wasn't there"
  1981. msgstr "Program je čakal na %s a ga ni bilo tam"
  1982. #: apt-pkg/contrib/fileutl.cc:655
  1983. #, c-format
  1984. msgid "Sub-process %s received a segmentation fault."
  1985. msgstr "Pod-opravilo %s je prejelo segmentacijsko napako."
  1986. #: apt-pkg/contrib/fileutl.cc:657
  1987. #, c-format
  1988. msgid "Sub-process %s received signal %u."
  1989. msgstr "Pod-opravilo %s je prejelo signal %u."
  1990. #: apt-pkg/contrib/fileutl.cc:661
  1991. #, c-format
  1992. msgid "Sub-process %s returned an error code (%u)"
  1993. msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)"
  1994. #: apt-pkg/contrib/fileutl.cc:663
  1995. #, c-format
  1996. msgid "Sub-process %s exited unexpectedly"
  1997. msgstr "Pod-opravilo %s se je nepričakovano zaključilo"
  1998. #: apt-pkg/contrib/fileutl.cc:728
  1999. #, c-format
  2000. msgid "Could not open file %s"
  2001. msgstr "Ni mogoče odpreti datoteke %s"
  2002. #: apt-pkg/contrib/fileutl.cc:745
  2003. #, c-format
  2004. msgid "Could not open file descriptor %d"
  2005. msgstr "Ni mogoče odpreti opisnika datotek %d"
  2006. #: apt-pkg/contrib/fileutl.cc:805
  2007. #, c-format
  2008. msgid "read, still have %lu to read but none left"
  2009. msgstr "branje, ąe vedno %lu za branje, a nobeden ni ostal"
  2010. #: apt-pkg/contrib/fileutl.cc:838
  2011. #, c-format
  2012. msgid "write, still have %lu to write but couldn't"
  2013. msgstr "pisanje, ąe vedno %lu za pisanje, a ni mogoče"
  2014. #: apt-pkg/contrib/fileutl.cc:937
  2015. #, c-format
  2016. msgid "Problem closing the gzip file %s"
  2017. msgstr "Teľava med zapiranjem gzip datoteke %s"
  2018. #: apt-pkg/contrib/fileutl.cc:940
  2019. #, c-format
  2020. msgid "Problem closing the file %s"
  2021. msgstr "Teľava med zapiranjem datoteke %s"
  2022. #: apt-pkg/contrib/fileutl.cc:945
  2023. #, c-format
  2024. msgid "Problem renaming the file %s to %s"
  2025. msgstr "Teľava med preimenovanje datoteke %s v %s"
  2026. #: apt-pkg/contrib/fileutl.cc:956
  2027. #, c-format
  2028. msgid "Problem unlinking the file %s"
  2029. msgstr "Teľava med razvezovanjem datoteke %s"
  2030. #: apt-pkg/contrib/fileutl.cc:969
  2031. msgid "Problem syncing the file"
  2032. msgstr "Teľava med usklajevanjem datoteke"
  2033. #: apt-pkg/pkgcache.cc:145
  2034. msgid "Empty package cache"
  2035. msgstr "Prazen predpomnilnik paketov"
  2036. #: apt-pkg/pkgcache.cc:151
  2037. msgid "The package cache file is corrupted"
  2038. msgstr "Datoteka s predpomnilnikom paketov je pokvarjena"
  2039. #: apt-pkg/pkgcache.cc:156
  2040. msgid "The package cache file is an incompatible version"
  2041. msgstr "Različica datoteke s predpomnilnikom paketov ni zdruľljiva"
  2042. #: apt-pkg/pkgcache.cc:161
  2043. #, c-format
  2044. msgid "This APT does not support the versioning system '%s'"
  2045. msgstr "Ta APT ne podpira sistema različic '%s'"
  2046. #: apt-pkg/pkgcache.cc:166
  2047. msgid "The package cache was built for a different architecture"
  2048. msgstr "Predpomnilnik paketov je bil izgrajen za drugačno arhitekturo"
  2049. #: apt-pkg/pkgcache.cc:293
  2050. msgid "Depends"
  2051. msgstr "Odvisen od"
  2052. #: apt-pkg/pkgcache.cc:293
  2053. msgid "PreDepends"
  2054. msgstr "Predodvisen od"
  2055. #: apt-pkg/pkgcache.cc:293
  2056. msgid "Suggests"
  2057. msgstr "Priporoča"
  2058. #: apt-pkg/pkgcache.cc:294
  2059. msgid "Recommends"
  2060. msgstr "Priporoča"
  2061. #: apt-pkg/pkgcache.cc:294
  2062. msgid "Conflicts"
  2063. msgstr "V sporu z"
  2064. #: apt-pkg/pkgcache.cc:294
  2065. msgid "Replaces"
  2066. msgstr "Zamenja"
  2067. #: apt-pkg/pkgcache.cc:295
  2068. msgid "Obsoletes"
  2069. msgstr "Zastara"
  2070. #: apt-pkg/pkgcache.cc:295
  2071. msgid "Breaks"
  2072. msgstr "Pokvari"
  2073. #: apt-pkg/pkgcache.cc:295
  2074. msgid "Enhances"
  2075. msgstr "Izboljąa"
  2076. #: apt-pkg/pkgcache.cc:306
  2077. msgid "important"
  2078. msgstr "pomembno"
  2079. #: apt-pkg/pkgcache.cc:306
  2080. msgid "required"
  2081. msgstr "zahtevano"
  2082. #: apt-pkg/pkgcache.cc:306
  2083. msgid "standard"
  2084. msgstr "običajni"
  2085. #: apt-pkg/pkgcache.cc:307
  2086. msgid "optional"
  2087. msgstr "izbirno"
  2088. #: apt-pkg/pkgcache.cc:307
  2089. msgid "extra"
  2090. msgstr "dodatno"
  2091. #: apt-pkg/depcache.cc:124 apt-pkg/depcache.cc:153
  2092. msgid "Building dependency tree"
  2093. msgstr "Gradnja drevesa odvisnosti"
  2094. #: apt-pkg/depcache.cc:125
  2095. msgid "Candidate versions"
  2096. msgstr "Različice kandidatov"
  2097. #: apt-pkg/depcache.cc:154
  2098. msgid "Dependency generation"
  2099. msgstr "Ustvarjanje odvisnosti"
  2100. #: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:207 apt-pkg/depcache.cc:211
  2101. msgid "Reading state information"
  2102. msgstr "Branje podatkov o stanju"
  2103. #: apt-pkg/depcache.cc:236
  2104. #, c-format
  2105. msgid "Failed to open StateFile %s"
  2106. msgstr "Odpiranje DatotekeStanja %s je spodletelo"
  2107. #: apt-pkg/depcache.cc:242
  2108. #, c-format
  2109. msgid "Failed to write temporary StateFile %s"
  2110. msgstr "Pisanje začasne DatotekeStanja %s je spodletelo"
  2111. #: apt-pkg/depcache.cc:921
  2112. #, c-format
  2113. msgid "Internal error, group '%s' has no installable pseudo package"
  2114. msgstr "Notranja napaka, skupina '%s' nima namestljivega psevdo paketa"
  2115. #: apt-pkg/tagfile.cc:102
  2116. #, c-format
  2117. msgid "Unable to parse package file %s (1)"
  2118. msgstr "Ni mogoče razčleniti datoteke paketa %s (1)"
  2119. #: apt-pkg/tagfile.cc:189
  2120. #, c-format
  2121. msgid "Unable to parse package file %s (2)"
  2122. msgstr "Ni mogoče razčleniti datoteke paketa %s (2)"
  2123. #: apt-pkg/sourcelist.cc:92
  2124. #, c-format
  2125. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2126. msgstr ""
  2127. "Slabo oblikovana vrstica %lu na seznamu virov %s ([moľnosti] ni mogoče "
  2128. "razčleniti)"
  2129. #: apt-pkg/sourcelist.cc:95
  2130. #, c-format
  2131. msgid "Malformed line %lu in source list %s ([option] too short)"
  2132. msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([moľnost] prekratka)"
  2133. #: apt-pkg/sourcelist.cc:106
  2134. #, c-format
  2135. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2136. msgstr "Slabo oblikovana vrstica %lu na seznamu vrstic %s ([%s] ni dodelitev)"
  2137. #: apt-pkg/sourcelist.cc:112
  2138. #, c-format
  2139. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2140. msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] nima ključa)"
  2141. #: apt-pkg/sourcelist.cc:115
  2142. #, c-format
  2143. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2144. msgstr ""
  2145. "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] ključ %s nima "
  2146. "vrednosti)"
  2147. #: apt-pkg/sourcelist.cc:128
  2148. #, c-format
  2149. msgid "Malformed line %lu in source list %s (URI)"
  2150. msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (URI)"
  2151. #: apt-pkg/sourcelist.cc:130
  2152. #, c-format
  2153. msgid "Malformed line %lu in source list %s (dist)"
  2154. msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (distribucija)"
  2155. #: apt-pkg/sourcelist.cc:133
  2156. #, c-format
  2157. msgid "Malformed line %lu in source list %s (URI parse)"
  2158. msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)"
  2159. #: apt-pkg/sourcelist.cc:139
  2160. #, c-format
  2161. msgid "Malformed line %lu in source list %s (absolute dist)"
  2162. msgstr ""
  2163. "Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)"
  2164. #: apt-pkg/sourcelist.cc:146
  2165. #, c-format
  2166. msgid "Malformed line %lu in source list %s (dist parse)"
  2167. msgstr ""
  2168. "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev distribucije)"
  2169. #: apt-pkg/sourcelist.cc:244
  2170. #, c-format
  2171. msgid "Opening %s"
  2172. msgstr "Odpiranje %s"
  2173. #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438
  2174. #, c-format
  2175. msgid "Line %u too long in source list %s."
  2176. msgstr "Vrstica %u v seznamu virov %s je predolga."
  2177. #: apt-pkg/sourcelist.cc:281
  2178. #, c-format
  2179. msgid "Malformed line %u in source list %s (type)"
  2180. msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)"
  2181. #: apt-pkg/sourcelist.cc:285
  2182. #, c-format
  2183. msgid "Type '%s' is not known on line %u in source list %s"
  2184. msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana "
  2185. #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616
  2186. msgid ""
  2187. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2188. "under APT::Immediate-Configure for details. (%d)"
  2189. msgstr ""
  2190. "Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod "
  2191. "APT::Takojąnja-nastavitev za podrobnosti. (%d)"
  2192. #: apt-pkg/packagemanager.cc:452
  2193. #, c-format
  2194. msgid ""
  2195. "This installation run will require temporarily removing the essential "
  2196. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2197. "you really want to do it, activate the APT::Force-LoopBreak option."
  2198. msgstr ""
  2199. "Ta krog namestitve zahteva začasno odstranitev ključnega paketa %s zaradi "
  2200. "zanke spora/predodvisnosti. To je ponavadi slabo, toda če zares ľelite "
  2201. "nadaljevati, vključite moľnost APT::Force-LoopBreak."
  2202. #: apt-pkg/packagemanager.cc:495
  2203. msgid ""
  2204. "Could not perform immediate configuration on already unpacked '%s'. Please "
  2205. "see man 5 apt.conf under APT::Immediate-Configure for details."
  2206. msgstr ""
  2207. "Ni mogoče izvesti takojąnje nastavitve ľe razpakiranega '%s'. Oglejte si man "
  2208. "5 apt.conf pod APT::Takojąnja-Nastavitev za podrobnosti"
  2209. #: apt-pkg/pkgrecords.cc:32
  2210. #, c-format
  2211. msgid "Index file type '%s' is not supported"
  2212. msgstr "Vrsta datoteke s kazalom '%s' ni podprta"
  2213. #: apt-pkg/algorithms.cc:292
  2214. #, c-format
  2215. msgid ""
  2216. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2217. msgstr "Paket %s mora biti znova nameąčen, vendar ni mogoče najti arhiva zanj."
  2218. #: apt-pkg/algorithms.cc:1210
  2219. msgid ""
  2220. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2221. "held packages."
  2222. msgstr ""
  2223. "Napaka. pkgProblemResolver::Napake pri razreąitvi, ki so jih morda "
  2224. "povzročili zadrľani paketi."
  2225. #: apt-pkg/algorithms.cc:1212
  2226. msgid "Unable to correct problems, you have held broken packages."
  2227. msgstr "Ni mogoče popraviti teľav. Imate pokvarjene pakete."
  2228. #: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490
  2229. msgid ""
  2230. "Some index files failed to download, they have been ignored, or old ones "
  2231. "used instead."
  2232. msgstr ""
  2233. "Nekaterih kazal ni mogoče prejeti, zato so prezrta, ali pa so uporabljena "
  2234. "starejąa."
  2235. #: apt-pkg/acquire.cc:79
  2236. #, c-format
  2237. msgid "List directory %spartial is missing."
  2238. msgstr "Mapa seznama %spartial manjka."
  2239. #: apt-pkg/acquire.cc:83
  2240. #, c-format
  2241. msgid "Archives directory %spartial is missing."
  2242. msgstr "Mapa arhivov %spartial manjka."
  2243. #: apt-pkg/acquire.cc:91
  2244. #, c-format
  2245. msgid "Unable to lock directory %s"
  2246. msgstr "Mape %s ni mogoče zakleniti"
  2247. #. only show the ETA if it makes sense
  2248. #. two days
  2249. #: apt-pkg/acquire.cc:857
  2250. #, c-format
  2251. msgid "Retrieving file %li of %li (%s remaining)"
  2252. msgstr "Pridobivanje datoteke %li od %li (%s preostalo)"
  2253. #: apt-pkg/acquire.cc:859
  2254. #, c-format
  2255. msgid "Retrieving file %li of %li"
  2256. msgstr "Pridobivanje datoteke %li od %li"
  2257. #: apt-pkg/acquire-worker.cc:110
  2258. #, c-format
  2259. msgid "The method driver %s could not be found."
  2260. msgstr "Gonilnika načinov %s ni mogoče najti."
  2261. #: apt-pkg/acquire-worker.cc:159
  2262. #, c-format
  2263. msgid "Method %s did not start correctly"
  2264. msgstr "Način %s se ni začel pravilno"
  2265. #: apt-pkg/acquire-worker.cc:413
  2266. #, c-format
  2267. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2268. msgstr "Vstavite disk z oznako '%s' v pogon '%s' in pritisnite vnosno tipko."
  2269. #: apt-pkg/init.cc:143
  2270. #, c-format
  2271. msgid "Packaging system '%s' is not supported"
  2272. msgstr "Paketni sistem '%s' ni podprt"
  2273. #: apt-pkg/init.cc:159
  2274. msgid "Unable to determine a suitable packaging system type"
  2275. msgstr "Ni mogoče določiti ustrezne vrste paketnega sistema"
  2276. #: apt-pkg/clean.cc:56
  2277. #, c-format
  2278. msgid "Unable to stat %s."
  2279. msgstr "Ni mogoče določiti %s."
  2280. #: apt-pkg/srcrecords.cc:44
  2281. msgid "You must put some 'source' URIs in your sources.list"
  2282. msgstr "V sources.list morate vstaviti URI-je z viri"
  2283. #: apt-pkg/cachefile.cc:84
  2284. msgid "The package lists or status file could not be parsed or opened."
  2285. msgstr "Ni mogoče odprti ali razčleniti seznama paketov ali datoteke stanja."
  2286. #: apt-pkg/cachefile.cc:88
  2287. msgid "You may want to run apt-get update to correct these problems"
  2288. msgstr "Za odpravljanje teľav poskusite zagnati apt-get update."
  2289. #: apt-pkg/cachefile.cc:106
  2290. msgid "The list of sources could not be read."
  2291. msgstr "Seznama virov ni mogoče brati."
  2292. #: apt-pkg/policy.cc:344
  2293. #, c-format
  2294. msgid "Invalid record in the preferences file %s, no Package header"
  2295. msgstr "Neveljaven zapis v datoteki moľnosti %s, ni glave paketa"
  2296. #: apt-pkg/policy.cc:366
  2297. #, c-format
  2298. msgid "Did not understand pin type %s"
  2299. msgstr "Ni mogoče razumeti vrste bucike %s"
  2300. #: apt-pkg/policy.cc:374
  2301. msgid "No priority (or zero) specified for pin"
  2302. msgstr "Prednost bucike ni navedena ali pa je nič."
  2303. #: apt-pkg/pkgcachegen.cc:80
  2304. msgid "Cache has an incompatible versioning system"
  2305. msgstr "Predpomnilnik ima neustrezen sistem različic"
  2306. #: apt-pkg/pkgcachegen.cc:198
  2307. #, c-format
  2308. msgid "Error occurred while processing %s (NewPackage)"
  2309. msgstr "Priąlo je do napake med obdelavo %s (Nov paket)"
  2310. #: apt-pkg/pkgcachegen.cc:215
  2311. #, c-format
  2312. msgid "Error occurred while processing %s (UsePackage1)"
  2313. msgstr "Priąlo je do napake med obdelavo %s (Uporabi paket 1)"
  2314. #: apt-pkg/pkgcachegen.cc:253
  2315. #, c-format
  2316. msgid "Error occurred while processing %s (NewFileDesc1)"
  2317. msgstr "Med obdelovanjem %s je priąlo do napake (NovOpisDatoteke1)"
  2318. #: apt-pkg/pkgcachegen.cc:285
  2319. #, c-format
  2320. msgid "Error occurred while processing %s (UsePackage2)"
  2321. msgstr "Priąlo je do napake med obdelavo %s (Uporabi paket 2)"
  2322. #: apt-pkg/pkgcachegen.cc:289
  2323. #, c-format
  2324. msgid "Error occurred while processing %s (NewFileVer1)"
  2325. msgstr "Priąlo je do napake med obdelavo %s (Nova različica datoteke 1)"
  2326. #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316
  2327. #: apt-pkg/pkgcachegen.cc:324
  2328. #, c-format
  2329. msgid "Error occurred while processing %s (NewVersion%d)"
  2330. msgstr "Med obdelovanjem %s je priąlo do napake (NovaRazličica%d)"
  2331. #: apt-pkg/pkgcachegen.cc:320
  2332. #, c-format
  2333. msgid "Error occurred while processing %s (UsePackage3)"
  2334. msgstr "Priąlo je do napake med obdelavo %s (Uporabi paket 3)"
  2335. #: apt-pkg/pkgcachegen.cc:353
  2336. #, c-format
  2337. msgid "Error occurred while processing %s (NewFileDesc2)"
  2338. msgstr "Med obdelovanjem %s je priąlo do napake (NovOpisDatoteke2)"
  2339. #: apt-pkg/pkgcachegen.cc:360
  2340. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2341. msgstr "Čestitamo, presegli ste ątevilo imen paketov, ki jih zmore APT."
  2342. #: apt-pkg/pkgcachegen.cc:363
  2343. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2344. msgstr "Čestitamo, presegli ste ątevilo različic, ki jih zmore APT."
  2345. #: apt-pkg/pkgcachegen.cc:366
  2346. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2347. msgstr "Čestitamo, presegli ste ątevilo opisov, ki jih je zmoľen APT."
  2348. #: apt-pkg/pkgcachegen.cc:369
  2349. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2350. msgstr "Čestitamo, presegli ste ątevilo odvisnosti, ki jih zmore APT."
  2351. #: apt-pkg/pkgcachegen.cc:398
  2352. #, c-format
  2353. msgid "Error occurred while processing %s (FindPkg)"
  2354. msgstr "Priąlo je do napake med obdelavo %s (Najdi paket)"
  2355. #: apt-pkg/pkgcachegen.cc:412
  2356. #, c-format
  2357. msgid "Error occurred while processing %s (CollectFileProvides)"
  2358. msgstr "Priąlo je do napake med obdelavo %s (Zberi dobavitelje datotek)"
  2359. #: apt-pkg/pkgcachegen.cc:418
  2360. #, c-format
  2361. msgid "Package %s %s was not found while processing file dependencies"
  2362. msgstr "Paketa %s %s ni bilo mogoče najti med obdelavo odvisnosti datotek"
  2363. #: apt-pkg/pkgcachegen.cc:982
  2364. #, c-format
  2365. msgid "Couldn't stat source package list %s"
  2366. msgstr "Ni mogoče določiti seznama izvornih paketov %s"
  2367. #: apt-pkg/pkgcachegen.cc:1087
  2368. msgid "Collecting File Provides"
  2369. msgstr "Zbiranje dobaviteljev datotek"
  2370. #: apt-pkg/pkgcachegen.cc:1265 apt-pkg/pkgcachegen.cc:1272
  2371. msgid "IO Error saving source cache"
  2372. msgstr "Napaka VI med shranjevanjem predpomnilnika virov"
  2373. #: apt-pkg/acquire-item.cc:136
  2374. #, c-format
  2375. msgid "rename failed, %s (%s -> %s)."
  2376. msgstr "preimenovanje je spodletelo, %s (%s -> %s)."
  2377. #: apt-pkg/acquire-item.cc:484
  2378. msgid "MD5Sum mismatch"
  2379. msgstr "Neujemanje vsote MD5"
  2380. #: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574
  2381. #: apt-pkg/acquire-item.cc:1717
  2382. msgid "Hash Sum mismatch"
  2383. msgstr "Neujemanje vsote razprąil"
  2384. #: apt-pkg/acquire-item.cc:1244
  2385. msgid "There is no public key available for the following key IDs:\n"
  2386. msgstr "Za naslednje ID-je ključa ni na voljo javnih ključev:\n"
  2387. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2388. #. the time since then the file is invalid - formated in the same way as in
  2389. #. the download progress display (e.g. 7d 3h 42min 1s)
  2390. #: apt-pkg/acquire-item.cc:1281
  2391. #, c-format
  2392. msgid "Release file expired, ignoring %s (invalid since %s)"
  2393. msgstr "Datoteka Release je potekla, prezrtje %s (neveljavno od %s)"
  2394. #: apt-pkg/acquire-item.cc:1302
  2395. #, c-format
  2396. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2397. msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)"
  2398. #: apt-pkg/acquire-item.cc:1328
  2399. msgid ""
  2400. "A error occurred during the signature verification. The repository is not "
  2401. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2402. msgstr ""
  2403. "Med preverjanjem podpisa je priąlo do napake. Skladiąče ni posodobljeno. "
  2404. "Uporabljene bodo predhodne datoteke kazala . Napaka GPG: %s: %s\n"
  2405. #: apt-pkg/acquire-item.cc:1337
  2406. #, c-format
  2407. msgid "GPG error: %s: %s"
  2408. msgstr "Napaka GPG: %s: %s"
  2409. #: apt-pkg/acquire-item.cc:1365
  2410. #, c-format
  2411. msgid ""
  2412. "I wasn't able to locate a file for the %s package. This might mean you need "
  2413. "to manually fix this package. (due to missing arch)"
  2414. msgstr ""
  2415. "Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno "
  2416. "popraviti ta paket (zaradi manjkajočega arhiva)."
  2417. #: apt-pkg/acquire-item.cc:1424
  2418. #, c-format
  2419. msgid ""
  2420. "I wasn't able to locate file for the %s package. This might mean you need to "
  2421. "manually fix this package."
  2422. msgstr ""
  2423. "Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno "
  2424. "popraviti ta paket."
  2425. #: apt-pkg/acquire-item.cc:1479
  2426. #, c-format
  2427. msgid ""
  2428. "The package index files are corrupted. No Filename: field for package %s."
  2429. msgstr ""
  2430. "Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket "
  2431. "%s."
  2432. #: apt-pkg/acquire-item.cc:1566
  2433. msgid "Size mismatch"
  2434. msgstr "Neujemanje velikosti"
  2435. #: apt-pkg/indexrecords.cc:53
  2436. #, c-format
  2437. msgid "Unable to parse Release file %s"
  2438. msgstr "Ni mogoče razčleniti Release datoteke %s"
  2439. #: apt-pkg/indexrecords.cc:60
  2440. #, c-format
  2441. msgid "No sections in Release file %s"
  2442. msgstr "Ni izbir v Release datoteki %s "
  2443. #: apt-pkg/indexrecords.cc:94
  2444. #, c-format
  2445. msgid "No Hash entry in Release file %s"
  2446. msgstr "Ni vnosa razprąila v Release datoteki %s"
  2447. #: apt-pkg/indexrecords.cc:107
  2448. #, c-format
  2449. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2450. msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %s"
  2451. #: apt-pkg/indexrecords.cc:122
  2452. #, c-format
  2453. msgid "Invalid 'Date' entry in Release file %s"
  2454. msgstr "Neveljavne vnos 'Datum' v Release datoteki %s"
  2455. #: apt-pkg/vendorlist.cc:66
  2456. #, c-format
  2457. msgid "Vendor block %s contains no fingerprint"
  2458. msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa"
  2459. #: apt-pkg/cdrom.cc:518
  2460. #, c-format
  2461. msgid ""
  2462. "Using CD-ROM mount point %s\n"
  2463. "Mounting CD-ROM\n"
  2464. msgstr ""
  2465. "Uporabljanje CD-ROM-ove priklopne točke %s\n"
  2466. "Priklapljanje CD-ROM-a\n"
  2467. #: apt-pkg/cdrom.cc:527 apt-pkg/cdrom.cc:615
  2468. msgid "Identifying.. "
  2469. msgstr "Identificiranje ... "
  2470. #: apt-pkg/cdrom.cc:552
  2471. #, c-format
  2472. msgid "Stored label: %s\n"
  2473. msgstr "Shranjena oznaka: %s\n"
  2474. #: apt-pkg/cdrom.cc:559 apt-pkg/cdrom.cc:827
  2475. msgid "Unmounting CD-ROM...\n"
  2476. msgstr "Odklapljanje CD-ROM-a ...\n"
  2477. #: apt-pkg/cdrom.cc:578
  2478. #, c-format
  2479. msgid "Using CD-ROM mount point %s\n"
  2480. msgstr "Uporabljanje CD-ROM-ove priklopne točke %s\n"
  2481. #: apt-pkg/cdrom.cc:596
  2482. msgid "Unmounting CD-ROM\n"
  2483. msgstr "Odklapljanje CD-ROM-a\n"
  2484. #: apt-pkg/cdrom.cc:600
  2485. msgid "Waiting for disc...\n"
  2486. msgstr "Čakanje na disk ...\n"
  2487. #. Mount the new CDROM
  2488. #: apt-pkg/cdrom.cc:608
  2489. msgid "Mounting CD-ROM...\n"
  2490. msgstr "Priklapljanje CD-ROM-a ...\n"
  2491. #: apt-pkg/cdrom.cc:626
  2492. msgid "Scanning disc for index files..\n"
  2493. msgstr "Preiskovanje diska za datoteke kazala ..\n"
  2494. #: apt-pkg/cdrom.cc:666
  2495. #, c-format
  2496. msgid ""
  2497. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2498. "%zu signatures\n"
  2499. msgstr ""
  2500. "Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in "
  2501. "%zu podpisov\n"
  2502. #: apt-pkg/cdrom.cc:677
  2503. msgid ""
  2504. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2505. "wrong architecture?"
  2506. msgstr ""
  2507. "Nobenih datotek paketov ni mogoče najti, morda to ni disk Debian ali pa je "
  2508. "arhitektura napačna?"
  2509. #: apt-pkg/cdrom.cc:703
  2510. #, c-format
  2511. msgid "Found label '%s'\n"
  2512. msgstr "Najdena je bila oznaka '%s'\n"
  2513. #: apt-pkg/cdrom.cc:732
  2514. msgid "That is not a valid name, try again.\n"
  2515. msgstr "To ni veljavno ime, poskusite znova.\n"
  2516. #: apt-pkg/cdrom.cc:748
  2517. #, c-format
  2518. msgid ""
  2519. "This disc is called: \n"
  2520. "'%s'\n"
  2521. msgstr ""
  2522. "Ta disk se imenuje: \n"
  2523. "'%s'\n"
  2524. #: apt-pkg/cdrom.cc:752
  2525. msgid "Copying package lists..."
  2526. msgstr "Kopiranje seznama paketov ..."
  2527. #: apt-pkg/cdrom.cc:778
  2528. msgid "Writing new source list\n"
  2529. msgstr "Pisanje novega seznama virov\n"
  2530. #: apt-pkg/cdrom.cc:787
  2531. msgid "Source list entries for this disc are:\n"
  2532. msgstr "Izvorni vnosi za ta disk so:\n"
  2533. #: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908
  2534. #, c-format
  2535. msgid "Wrote %i records.\n"
  2536. msgstr "Zapisanih je bilo %i zapisov.\n"
  2537. #: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910
  2538. #, c-format
  2539. msgid "Wrote %i records with %i missing files.\n"
  2540. msgstr "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n"
  2541. #: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913
  2542. #, c-format
  2543. msgid "Wrote %i records with %i mismatched files\n"
  2544. msgstr "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n"
  2545. #: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916
  2546. #, c-format
  2547. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2548. msgstr ""
  2549. "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami in %i "
  2550. "neujemajočimi datotekami.\n"
  2551. #: apt-pkg/indexcopy.cc:537
  2552. #, c-format
  2553. msgid "Skipping nonexistent file %s"
  2554. msgstr "Preskok neobstoječe datoteke %s"
  2555. #: apt-pkg/indexcopy.cc:543
  2556. #, c-format
  2557. msgid "Can't find authentication record for: %s"
  2558. msgstr "Ni mogoče najti zapisa overitve za: %s"
  2559. #: apt-pkg/indexcopy.cc:549
  2560. #, c-format
  2561. msgid "Hash mismatch for: %s"
  2562. msgstr "Neujemanje razprąila za: %s"
  2563. #: apt-pkg/cacheset.cc:337
  2564. #, c-format
  2565. msgid "Release '%s' for '%s' was not found"
  2566. msgstr "Izdaje '%s' za '%s' ni mogoče najti"
  2567. #: apt-pkg/cacheset.cc:340
  2568. #, c-format
  2569. msgid "Version '%s' for '%s' was not found"
  2570. msgstr "Različice '%s' za '%s' ni mogoče najti"
  2571. #: apt-pkg/cacheset.cc:447
  2572. #, c-format
  2573. msgid "Couldn't find task '%s'"
  2574. msgstr "Ni mogoče najti naloge '%s'"
  2575. #: apt-pkg/cacheset.cc:454
  2576. #, c-format
  2577. msgid "Couldn't find any package by regex '%s'"
  2578. msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa"
  2579. #: apt-pkg/cacheset.cc:467
  2580. #, c-format
  2581. msgid "Can't select versions from package '%s' as it purely virtual"
  2582. msgstr "Ni mogoče izbrati različic in paketa '%s', saj je popolnoma navidezen"
  2583. #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483
  2584. #, c-format
  2585. msgid ""
  2586. "Can't select installed nor candidate version from package '%s' as it has "
  2587. "neither of them"
  2588. msgstr ""
  2589. "Ni mogoče izbrati nameąčene različice ali različice kandidata iz paketa "
  2590. "'%s', saj nima nobenega od njiju"
  2591. #: apt-pkg/cacheset.cc:491
  2592. #, c-format
  2593. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2594. msgstr ""
  2595. "Ni mogoče izbrati najnovejąe različice iz paketa '%s', saj je popolnoma "
  2596. "navidezen "
  2597. #: apt-pkg/cacheset.cc:499
  2598. #, c-format
  2599. msgid "Can't select candidate version from package %s as it has no candidate"
  2600. msgstr "Ni mogoče izbrati različice kandidata iz paketa %s, ker nima kandidata"
  2601. #: apt-pkg/cacheset.cc:507
  2602. #, c-format
  2603. msgid "Can't select installed version from package %s as it is not installed"
  2604. msgstr "Ni mogoče izbrati nameąčene različice iz paketa %s, saj ni nameąčen"
  2605. #: apt-pkg/deb/dpkgpm.cc:52
  2606. #, c-format
  2607. msgid "Installing %s"
  2608. msgstr "Nameąčanje %s"
  2609. #: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822
  2610. #, c-format
  2611. msgid "Configuring %s"
  2612. msgstr "Nastavljanje %s"
  2613. #: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829
  2614. #, c-format
  2615. msgid "Removing %s"
  2616. msgstr "Odstranjevanje %s"
  2617. #: apt-pkg/deb/dpkgpm.cc:55
  2618. #, c-format
  2619. msgid "Completely removing %s"
  2620. msgstr "%s je bil popolnoma odstranjen"
  2621. #: apt-pkg/deb/dpkgpm.cc:56
  2622. #, c-format
  2623. msgid "Noting disappearance of %s"
  2624. msgstr "%s je izginil"
  2625. #: apt-pkg/deb/dpkgpm.cc:57
  2626. #, c-format
  2627. msgid "Running post-installation trigger %s"
  2628. msgstr "Poganjanje sproľilca po namestitvi %s"
  2629. #. FIXME: use a better string after freeze
  2630. #: apt-pkg/deb/dpkgpm.cc:646
  2631. #, c-format
  2632. msgid "Directory '%s' missing"
  2633. msgstr "Mapa '%s' manjka"
  2634. #: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674
  2635. #, c-format
  2636. msgid "Could not open file '%s'"
  2637. msgstr "Ni mogoče odpreti datoteke '%s'"
  2638. #: apt-pkg/deb/dpkgpm.cc:815
  2639. #, c-format
  2640. msgid "Preparing %s"
  2641. msgstr "Pripravljanje %s"
  2642. #: apt-pkg/deb/dpkgpm.cc:816
  2643. #, c-format
  2644. msgid "Unpacking %s"
  2645. msgstr "Raząirjanje %s"
  2646. #: apt-pkg/deb/dpkgpm.cc:821
  2647. #, c-format
  2648. msgid "Preparing to configure %s"
  2649. msgstr "Pripravljanje na nastavljanje %s"
  2650. #: apt-pkg/deb/dpkgpm.cc:823
  2651. #, c-format
  2652. msgid "Installed %s"
  2653. msgstr "%s je bil nameąčen"
  2654. #: apt-pkg/deb/dpkgpm.cc:828
  2655. #, c-format
  2656. msgid "Preparing for removal of %s"
  2657. msgstr "Pripravljanje na odstranitev %s"
  2658. #: apt-pkg/deb/dpkgpm.cc:830
  2659. #, c-format
  2660. msgid "Removed %s"
  2661. msgstr "%s je bil odstranjen"
  2662. #: apt-pkg/deb/dpkgpm.cc:835
  2663. #, c-format
  2664. msgid "Preparing to completely remove %s"
  2665. msgstr "Pripravljanje na popolno odstranitev %s"
  2666. #: apt-pkg/deb/dpkgpm.cc:836
  2667. #, c-format
  2668. msgid "Completely removed %s"
  2669. msgstr "%s je bil popolnoma odstranjen"
  2670. #: apt-pkg/deb/dpkgpm.cc:1042
  2671. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2672. msgstr ""
  2673. "Ni mogoče pisati dnevnika, openpty() je spodletelo (/dev/pts ni "
  2674. "prklopljen?)\n"
  2675. #: apt-pkg/deb/dpkgpm.cc:1073
  2676. msgid "Running dpkg"
  2677. msgstr "Poganjanje dpkg"
  2678. #: apt-pkg/deb/dpkgpm.cc:1276
  2679. msgid "No apport report written because MaxReports is reached already"
  2680. msgstr ""
  2681. "Poročilo apport ni bilo napisano, ker je bilo ątevilo MaxReports ľe doseľeno"
  2682. #. check if its not a follow up error
  2683. #: apt-pkg/deb/dpkgpm.cc:1281
  2684. msgid "dependency problems - leaving unconfigured"
  2685. msgstr "teľave odvisnosti - puąčanje nenastavljenega"
  2686. #: apt-pkg/deb/dpkgpm.cc:1283
  2687. msgid ""
  2688. "No apport report written because the error message indicates its a followup "
  2689. "error from a previous failure."
  2690. msgstr ""
  2691. "Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na "
  2692. "navezujočo napako iz predhodne napake."
  2693. #: apt-pkg/deb/dpkgpm.cc:1289
  2694. msgid ""
  2695. "No apport report written because the error message indicates a disk full "
  2696. "error"
  2697. msgstr ""
  2698. "Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako "
  2699. "polnega diska"
  2700. #: apt-pkg/deb/dpkgpm.cc:1295
  2701. msgid ""
  2702. "No apport report written because the error message indicates a out of memory "
  2703. "error"
  2704. msgstr ""
  2705. "Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako "
  2706. "zaradi pomanjkanja pomnilnika"
  2707. #: apt-pkg/deb/dpkgpm.cc:1302
  2708. msgid ""
  2709. "No apport report written because the error message indicates a dpkg I/O error"
  2710. msgstr ""
  2711. "Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako "
  2712. "dpkg V/I"
  2713. #: apt-pkg/deb/debsystem.cc:69
  2714. #, c-format
  2715. msgid ""
  2716. "Unable to lock the administration directory (%s), is another process using "
  2717. "it?"
  2718. msgstr ""
  2719. "Skrbniąke mape (%s) ni mogoče zakleniti. Jo morda uporablja drugo opravilo?"
  2720. #: apt-pkg/deb/debsystem.cc:72
  2721. #, c-format
  2722. msgid "Unable to lock the administration directory (%s), are you root?"
  2723. msgstr "Skrbniąke mape (%s) ni mogoče zakleniti. Ali ste skrbnik?"
  2724. #. TRANSLATORS: the %s contains the recovery command, usually
  2725. #. dpkg --configure -a
  2726. #: apt-pkg/deb/debsystem.cc:88
  2727. #, c-format
  2728. msgid ""
  2729. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2730. msgstr "dpkg je bil prekinjen. Za popravilo napake morate ročno pognati '%s'."
  2731. #: apt-pkg/deb/debsystem.cc:106
  2732. msgid "Not locked"
  2733. msgstr "Ni zaklenjeno"
  2734. #. FIXME: fallback to a default mirror here instead
  2735. #. and provide a config option to define that default
  2736. #: methods/mirror.cc:200
  2737. #, c-format
  2738. msgid "No mirror file '%s' found "
  2739. msgstr "Datoteke zrcalnih streľnikov '%s' ni mogoče najti"
  2740. #: methods/mirror.cc:343
  2741. #, c-format
  2742. msgid "[Mirror: %s]"
  2743. msgstr "[Zrcalni streľnik: %s]"
  2744. #: methods/rred.cc:465
  2745. #, c-format
  2746. msgid ""
  2747. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2748. "to be corrupt."
  2749. msgstr ""
  2750. "%s ni mogoče zakrpati z mmap in z uporabo opravila datotek - popravek je "
  2751. "videti pokvarjen"
  2752. #: methods/rred.cc:470
  2753. #, c-format
  2754. msgid ""
  2755. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2756. "to be corrupt."
  2757. msgstr ""
  2758. "%s ni mogoče zakrpati z mmap (toda napaka ni specifična za mmap) - popravek "
  2759. "je videti pokvarjen."
  2760. #: methods/rsh.cc:329
  2761. msgid "Connection closed prematurely"
  2762. msgstr "Povezava se je prezgodaj zaprla"
  2763. #~ msgid "Error occurred while processing %s (NewVersion2)"
  2764. #~ msgstr "Priąlo je do napake pri obdelavi %s (Nova različica 2)"
  2765. #~ msgid "Malformed line %u in source list %s (vendor id)"
  2766. #~ msgstr "Napačna vrstica %u v seznamu virov %s (ID ponudnika)"