sl.po 101 KB

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