sl.po 115 KB

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