sl.po 120 KB

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