fi.po 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006
  1. # translation of fi.po to Finnish
  2. # Finnish translation of apt.
  3. # This file is put in the public domain.
  4. # Tapio Lehtonen <tale@debian.org>, 2004-2006,2008.
  5. #
  6. #
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 0.5.26\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2009-09-26 11:38+0200\n"
  12. "PO-Revision-Date: 2008-12-11 14:52+0200\n"
  13. "Last-Translator: Tapio Lehtonen <tale@debian.org>\n"
  14. "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. #: cmdline/apt-cache.cc:141
  20. #, c-format
  21. msgid "Package %s version %s has an unmet dep:\n"
  22. msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n"
  23. #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644
  24. #: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021
  25. #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575
  26. #, c-format
  27. msgid "Unable to locate package %s"
  28. msgstr "Pakettia %s ei löydy"
  29. #: cmdline/apt-cache.cc:245
  30. msgid "Total package names: "
  31. msgstr "Pakettien kokonaismäärä : "
  32. #: cmdline/apt-cache.cc:285
  33. msgid " Normal packages: "
  34. msgstr " Tavallisia paketteja: "
  35. #: cmdline/apt-cache.cc:286
  36. msgid " Pure virtual packages: "
  37. msgstr " Aitoja näennäispaketteja: "
  38. #: cmdline/apt-cache.cc:287
  39. msgid " Single virtual packages: "
  40. msgstr " Yksinkertaisia näennäispaketteja: "
  41. #: cmdline/apt-cache.cc:288
  42. msgid " Mixed virtual packages: "
  43. msgstr " Sekanäennäispaketteja: "
  44. #: cmdline/apt-cache.cc:289
  45. msgid " Missing: "
  46. msgstr " Puuttuu: "
  47. #: cmdline/apt-cache.cc:291
  48. msgid "Total distinct versions: "
  49. msgstr "Eri versioita yhteensä: "
  50. #: cmdline/apt-cache.cc:293
  51. msgid "Total distinct descriptions: "
  52. msgstr "Eri kuvauksia yhteensä: "
  53. #: cmdline/apt-cache.cc:295
  54. msgid "Total dependencies: "
  55. msgstr "Riippuvuuksia yhteensä: "
  56. #: cmdline/apt-cache.cc:298
  57. msgid "Total ver/file relations: "
  58. msgstr "Versio/tdsto suhteita yht: "
  59. #: cmdline/apt-cache.cc:300
  60. msgid "Total Desc/File relations: "
  61. msgstr "Kuvaus/tdsto suhteita yht: "
  62. #: cmdline/apt-cache.cc:302
  63. msgid "Total Provides mappings: "
  64. msgstr "Tarjoamiskuvauksia yhteensä: "
  65. #: cmdline/apt-cache.cc:314
  66. msgid "Total globbed strings: "
  67. msgstr "Erilaisia merkkijonoja yhteensä: "
  68. #: cmdline/apt-cache.cc:328
  69. msgid "Total dependency version space: "
  70. msgstr "Versioriippuvuustila yhteensä: "
  71. #: cmdline/apt-cache.cc:333
  72. msgid "Total slack space: "
  73. msgstr "Löysää tilaa yhteensä: "
  74. #: cmdline/apt-cache.cc:341
  75. msgid "Total space accounted for: "
  76. msgstr "Käytetty tila yhteensä: "
  77. #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221
  78. #, c-format
  79. msgid "Package file %s is out of sync."
  80. msgstr "Pakettitiedosto %s ei ole ajan tasalla."
  81. #: cmdline/apt-cache.cc:1297
  82. msgid "You must give exactly one pattern"
  83. msgstr "On annettava täsmälleen yksi lauseke"
  84. #: cmdline/apt-cache.cc:1451
  85. msgid "No packages found"
  86. msgstr "Yhtään pakettia ei löytynyt"
  87. #: cmdline/apt-cache.cc:1528
  88. msgid "Package files:"
  89. msgstr "Pakettitiedostot:"
  90. #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622
  91. msgid "Cache is out of sync, can't x-ref a package file"
  92. msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta"
  93. #. Show any packages have explicit pins
  94. #: cmdline/apt-cache.cc:1549
  95. msgid "Pinned packages:"
  96. msgstr "Paketit joissa tunniste:"
  97. #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602
  98. msgid "(not found)"
  99. msgstr "(ei löydy)"
  100. #. Installed version
  101. #: cmdline/apt-cache.cc:1582
  102. msgid " Installed: "
  103. msgstr " Asennettu: "
  104. #: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592
  105. msgid "(none)"
  106. msgstr "(ei mitään)"
  107. #. Candidate Version
  108. #: cmdline/apt-cache.cc:1589
  109. msgid " Candidate: "
  110. msgstr " Ehdokas: "
  111. #: cmdline/apt-cache.cc:1599
  112. msgid " Package pin: "
  113. msgstr " Paketin tunnistenumero: "
  114. #. Show the priority tables
  115. #: cmdline/apt-cache.cc:1608
  116. msgid " Version table:"
  117. msgstr " Versiotaulukko:"
  118. #: cmdline/apt-cache.cc:1623
  119. #, c-format
  120. msgid " %4i %s\n"
  121. msgstr " %4i %s\n"
  122. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  123. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  124. #: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144
  125. #, c-format
  126. msgid "%s %s for %s compiled on %s %s\n"
  127. msgstr "%s %s laitealustalle %s käännöksen päiväys %s %s\n"
  128. #: cmdline/apt-cache.cc:1725
  129. msgid ""
  130. "Usage: apt-cache [options] command\n"
  131. " apt-cache [options] add file1 [file2 ...]\n"
  132. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  133. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  134. "\n"
  135. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  136. "cache files, and query information from them\n"
  137. "\n"
  138. "Commands:\n"
  139. " add - Add a package file to the source cache\n"
  140. " gencaches - Build both the package and source cache\n"
  141. " showpkg - Show some general information for a single package\n"
  142. " showsrc - Show source records\n"
  143. " stats - Show some basic statistics\n"
  144. " dump - Show the entire file in a terse form\n"
  145. " dumpavail - Print an available file to stdout\n"
  146. " unmet - Show unmet dependencies\n"
  147. " search - Search the package list for a regex pattern\n"
  148. " show - Show a readable record for the package\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. "Käyttö : apt-cache [valitsimet] komento\n"
  167. " apt-cache [valitsimet] add tdsto1 [tdsto2 ...]\n"
  168. " apt-cache [valitsimet] showpkg pkt1 [pkt2 ...]\n"
  169. " apt-cache [valitsimet] showsrc pkt1 [pkt2 ...]\n"
  170. "\n"
  171. "apt-cache on alemman tason työkalu APT:n konekielisten\n"
  172. "välimuistitiedostojen käsittelyyn ja tutkimiseen\n"
  173. "Komennot:\n"
  174. " add - Lisää paketti lähdevälimuistiin\n"
  175. " gencaches - Tee sekä pakettivarasto että lähdevälimuisti\n"
  176. " showpkg - Näytä joitain perustietoja yhdestä paketista\n"
  177. " showsrc - Näytä lähdetietueet\n"
  178. " stats - Näytä joitain perustilastoja\n"
  179. " dump - Näytä koko tiedosto suppeassa muodossa\n"
  180. " dumpavail - Tulosta saatavissa olevien luettelo oletustulosteeseen\n"
  181. " unmet - Näytä tyydyttymättömät riippuvuudet\n"
  182. " search - Etsi pakettiluettelosta säännöllisellä lausekkeella\n"
  183. " show - Näytä paketin tietue luettavassa muodossa\n"
  184. " depends - Näytä paketin riippuvuustiedot käsittelemättömässä muodossa\n"
  185. " rdepends - Näytä paketin käänteiset riippuvuudet\n"
  186. " pkgnames - Luettele järjestelmän kaikkien pakettien nimet\n"
  187. " dotty - Tee paketeista graafit GraphViz-muodossa\n"
  188. " xvcg - Tee paketeista graafit xvcg-muodossa\n"
  189. " policy - Näytä mistä asennuspaketteja haetaan\n"
  190. "\n"
  191. "Valitsimet:\n"
  192. " -h Tämä ohje\n"
  193. " -p=? Pakettivarasto\n"
  194. " -s=? Lähdevälimuisti\n"
  195. " -q Poista edistymisen ilmaisin\n"
  196. " -i Näytä vain tärkeät riippuvuudet unmet-komennossa\n"
  197. " -c=? Lue tämä asetustiedosto\n"
  198. " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
  199. "Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n"
  200. #: cmdline/apt-cdrom.cc:77
  201. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  202. msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\""
  203. #: cmdline/apt-cdrom.cc:92
  204. msgid "Please insert a Disc in the drive and press enter"
  205. msgstr "Aseta levy asemaan ja paina Enter"
  206. #: cmdline/apt-cdrom.cc:114
  207. msgid "Repeat this process for the rest of the CDs in your set."
  208. msgstr "Toista tämä lopuille rompuille kasassasi."
  209. #: cmdline/apt-config.cc:41
  210. msgid "Arguments not in pairs"
  211. msgstr "Parametrit eivät ole pareittain"
  212. #: cmdline/apt-config.cc:76
  213. msgid ""
  214. "Usage: apt-config [options] command\n"
  215. "\n"
  216. "apt-config is a simple tool to read the APT config file\n"
  217. "\n"
  218. "Commands:\n"
  219. " shell - Shell mode\n"
  220. " dump - Show the configuration\n"
  221. "\n"
  222. "Options:\n"
  223. " -h This help text.\n"
  224. " -c=? Read this configuration file\n"
  225. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  226. msgstr ""
  227. "Käyttö: apt-config [valitsimet] komento\n"
  228. "\n"
  229. "apt-config on yksinkertainen työkalu APT:n asetustiedoston lukemiseen\n"
  230. "\n"
  231. "Komennot:\n"
  232. " shell - Muista ohjelmista käytettäväksi\n"
  233. " dump - Näytä asetukset\n"
  234. "\n"
  235. "Valitsimet:\n"
  236. " -h Tämä ohje\n"
  237. " -c=? Lue tämä asetustiedosto\n"
  238. " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
  239. #: cmdline/apt-extracttemplates.cc:98
  240. #, c-format
  241. msgid "%s not a valid DEB package."
  242. msgstr "%s ei kelpaa DEB-paketiksi."
  243. #: cmdline/apt-extracttemplates.cc:232
  244. msgid ""
  245. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  246. "\n"
  247. "apt-extracttemplates is a tool to extract config and template info\n"
  248. "from debian packages\n"
  249. "\n"
  250. "Options:\n"
  251. " -h This help text\n"
  252. " -t Set the temp dir\n"
  253. " -c=? Read this configuration file\n"
  254. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  255. msgstr ""
  256. "Käyttö: apt-extracttemplates tdsto1 [tdsto2 ...]\n"
  257. "\n"
  258. "apt-extracttemplates on työkalu asetus- ja mallitietojen \n"
  259. "poimintaan debian-paketeista\n"
  260. "\n"
  261. "Valitsimet:\n"
  262. " -h Tämä ohje\n"
  263. " -t Aseta väliaikaisten tiedostojen kansio\n"
  264. " -c=? Lue tämä asetustiedosto\n"
  265. " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
  266. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830
  267. #, c-format
  268. msgid "Unable to write to %s"
  269. msgstr "Tiedostoon %s kirjoittaminen ei onnistu"
  270. #: cmdline/apt-extracttemplates.cc:310
  271. msgid "Cannot get debconf version. Is debconf installed?"
  272. msgstr "Ohjelman debconf versiota ei saa selvitettyä. Onko debconf asennettu?"
  273. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  274. msgid "Package extension list is too long"
  275. msgstr "Paketin laajennuslista on liian pitkä"
  276. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  277. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  278. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  279. #, c-format
  280. msgid "Error processing directory %s"
  281. msgstr "Tapahtui virhe käsiteltäessa kansiota %s"
  282. #: ftparchive/apt-ftparchive.cc:251
  283. msgid "Source extension list is too long"
  284. msgstr "Lähteiden laajennuslista on liian pitkä"
  285. #: ftparchive/apt-ftparchive.cc:368
  286. msgid "Error writing header to contents file"
  287. msgstr ""
  288. "Tapahtui virhe kirjoitettaessa otsikkotietoa sisällysluettelotiedostoon"
  289. #: ftparchive/apt-ftparchive.cc:398
  290. #, c-format
  291. msgid "Error processing contents %s"
  292. msgstr "Tapahtui virhe käsiteltäessä sisällysluetteloa %s"
  293. #: ftparchive/apt-ftparchive.cc:553
  294. msgid ""
  295. "Usage: apt-ftparchive [options] command\n"
  296. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  297. " sources srcpath [overridefile [pathprefix]]\n"
  298. " contents path\n"
  299. " release path\n"
  300. " generate config [groups]\n"
  301. " clean config\n"
  302. "\n"
  303. "apt-ftparchive generates index files for Debian archives. It supports\n"
  304. "many styles of generation from fully automated to functional replacements\n"
  305. "for dpkg-scanpackages and dpkg-scansources\n"
  306. "\n"
  307. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  308. "Package file contains the contents of all the control fields from\n"
  309. "each package as well as the MD5 hash and filesize. An override file\n"
  310. "is supported to force the value of Priority and Section.\n"
  311. "\n"
  312. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  313. "The --source-override option can be used to specify a src override file\n"
  314. "\n"
  315. "The 'packages' and 'sources' command should be run in the root of the\n"
  316. "tree. BinaryPath should point to the base of the recursive search and \n"
  317. "override file should contain the override flags. Pathprefix is\n"
  318. "appended to the filename fields if present. Example usage from the \n"
  319. "Debian archive:\n"
  320. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  321. " dists/potato/main/binary-i386/Packages\n"
  322. "\n"
  323. "Options:\n"
  324. " -h This help text\n"
  325. " --md5 Control MD5 generation\n"
  326. " -s=? Source override file\n"
  327. " -q Quiet\n"
  328. " -d=? Select the optional caching database\n"
  329. " --no-delink Enable delinking debug mode\n"
  330. " --contents Control contents file generation\n"
  331. " -c=? Read this configuration file\n"
  332. " -o=? Set an arbitrary configuration option"
  333. msgstr ""
  334. "Käyttö: apt-ftparchive [valitsimet] komento\n"
  335. "Komennot: packages binääripolku [poikkeustdsto [polun alku]]\n"
  336. " sources lähdepolku [poikkeustdsto [polun alku]]\n"
  337. " contents polku\n"
  338. " release polku\n"
  339. " generate asetukset [ryhmät]\n"
  340. " clean asetukset\n"
  341. "\n"
  342. "apt-ftparchive tuottaa hakemistoja Debianin arkistoista. Monta "
  343. "tuottamistapaa\n"
  344. "on tuettu alkaen täysin automaattisista toiminnallisesti samoihin kuin\n"
  345. "dpkg-scanpackages ja dpkg-scansources.\n"
  346. "\n"
  347. "apt-ftparchive tuottaa pakettitiedostoja .deb-tiedostojen puusta.\n"
  348. "Pakettitiedostossa on kunkin paketin kaikkien ohjauskenttien\n"
  349. "sisältö sekä MD5 tiiviste ja tiedoston koko. Poikkeus-\n"
  350. "tiedostolla voidaan arvot Priority ja Section pakottaa halutuiksi.\n"
  351. "\n"
  352. "Samaan tapaan apt-ftparchive tuottaa lähdetiedostoja\n"
  353. ".dscs-tiedostojen puusta. Valitsimella --source-overrride voidaan\n"
  354. "määrittää lähteiden poikkeustiedosto.\n"
  355. "\n"
  356. "Komennot \"packages\" ja \"sources\" olisi suoritettava puun juuressa.\n"
  357. "Binääripolun olisi osoitettava rekursiivisen haun alkukohtaan ja\n"
  358. "poikkeustiedostossa olisi oltava poikkeusilmaisimet. Polun alku\n"
  359. "yhdistetään tiedoston nimeen jos se on annettu. Esimerkki\n"
  360. "käytöstä Debianin arkiston kanssa:\n"
  361. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  362. " dists/potato/main/binary-i386/Packages\n"
  363. "\n"
  364. "Valitsimet:\n"
  365. " -h Tämä ohje\n"
  366. " --md5 MD5 luonti\n"
  367. " -s=? Lähteiden poikkeustdosto\n"
  368. " -q Ei tulostusta\n"
  369. " -d=? Valinnainen välimuistitietokanta\n"
  370. " --no-delink delinking-virheenjäljitys päälle\n"
  371. " --contents Sisällysluettelotiedoston luonti\n"
  372. " -c=? Lue tämä asetustiedosto\n"
  373. " -o=? Aseta mikä asetusvalitsin tahansa"
  374. #: ftparchive/apt-ftparchive.cc:759
  375. msgid "No selections matched"
  376. msgstr "Mitkään valinnat eivät täsmänneet"
  377. #: ftparchive/apt-ftparchive.cc:832
  378. #, c-format
  379. msgid "Some files are missing in the package file group `%s'"
  380. msgstr "Pakettitiedostojen ryhmästä \"%s\" puuttuu joitain tiedostoja"
  381. #: ftparchive/cachedb.cc:43
  382. #, c-format
  383. msgid "DB was corrupted, file renamed to %s.old"
  384. msgstr "Tietokanta on turmeltunut, tiedosto nimetty %s.old"
  385. #: ftparchive/cachedb.cc:61
  386. #, c-format
  387. msgid "DB is old, attempting to upgrade %s"
  388. msgstr "Tietokanta on vanha, yritetään päivittää %s"
  389. #: ftparchive/cachedb.cc:72
  390. msgid ""
  391. "DB format is invalid. If you upgraded from a older version of apt, please "
  392. "remove and re-create the database."
  393. msgstr ""
  394. "Tietokannan muoto ei kelpaa. Jos tehtiin päivitys vanhasta apt:n versiosta, "
  395. "on tietokanta poistettava ja luotava uudelleen."
  396. #: ftparchive/cachedb.cc:77
  397. #, c-format
  398. msgid "Unable to open DB file %s: %s"
  399. msgstr "Tietokantatiedostoa %s ei saatu avattua: %s"
  400. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  401. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  402. #, c-format
  403. msgid "Failed to stat %s"
  404. msgstr "Tiedostolle %s ei toimi stat"
  405. #: ftparchive/cachedb.cc:238
  406. msgid "Archive has no control record"
  407. msgstr "Arkistolla ei ole ohjaustietuetta"
  408. #: ftparchive/cachedb.cc:444
  409. msgid "Unable to get a cursor"
  410. msgstr "Kohdistinta ei saada"
  411. #: ftparchive/writer.cc:76
  412. #, c-format
  413. msgid "W: Unable to read directory %s\n"
  414. msgstr "W: Kansiota %s ei voi lukea\n"
  415. #: ftparchive/writer.cc:81
  416. #, c-format
  417. msgid "W: Unable to stat %s\n"
  418. msgstr "W: Tdstolle %s ei toimi stat\n"
  419. #: ftparchive/writer.cc:132
  420. msgid "E: "
  421. msgstr "E: "
  422. #: ftparchive/writer.cc:134
  423. msgid "W: "
  424. msgstr "W: "
  425. #: ftparchive/writer.cc:141
  426. msgid "E: Errors apply to file "
  427. msgstr "E: Tiedostossa virheitä "
  428. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  429. #, c-format
  430. msgid "Failed to resolve %s"
  431. msgstr "Osoitteen %s selvitys ei onnistunut"
  432. #: ftparchive/writer.cc:170
  433. msgid "Tree walking failed"
  434. msgstr "Puun läpikäynti ei onnistunut"
  435. #: ftparchive/writer.cc:195
  436. #, c-format
  437. msgid "Failed to open %s"
  438. msgstr "Tiedoston %s avaaminen ei onnistunut"
  439. #: ftparchive/writer.cc:254
  440. #, c-format
  441. msgid " DeLink %s [%s]\n"
  442. msgstr " DeLink %s [%s]\n"
  443. #: ftparchive/writer.cc:262
  444. #, c-format
  445. msgid "Failed to readlink %s"
  446. msgstr "readlink %s ei onnistunut"
  447. #: ftparchive/writer.cc:266
  448. #, c-format
  449. msgid "Failed to unlink %s"
  450. msgstr "unlink %s ei onnistunut"
  451. #: ftparchive/writer.cc:273
  452. #, c-format
  453. msgid "*** Failed to link %s to %s"
  454. msgstr "*** Linkin %s -> %s luonti ei onnistunut"
  455. #: ftparchive/writer.cc:283
  456. #, c-format
  457. msgid " DeLink limit of %sB hit.\n"
  458. msgstr " DeLinkin yläraja %st saavutettu.\n"
  459. #: ftparchive/writer.cc:387
  460. msgid "Archive had no package field"
  461. msgstr "Arkistossa ei ollut pakettikenttää"
  462. #: ftparchive/writer.cc:395 ftparchive/writer.cc:610
  463. #, c-format
  464. msgid " %s has no override entry\n"
  465. msgstr " %s:llä ei ole poikkeustietuetta\n"
  466. #: ftparchive/writer.cc:440 ftparchive/writer.cc:698
  467. #, c-format
  468. msgid " %s maintainer is %s not %s\n"
  469. msgstr " %s ylläpitäjä on %s eikä %s\n"
  470. #: ftparchive/writer.cc:620
  471. #, c-format
  472. msgid " %s has no source override entry\n"
  473. msgstr " %s:llä ei ole poikkeustietuetta\n"
  474. #: ftparchive/writer.cc:624
  475. #, c-format
  476. msgid " %s has no binary override entry either\n"
  477. msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n"
  478. #: ftparchive/contents.cc:321
  479. #, c-format
  480. msgid "Internal error, could not locate member %s"
  481. msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy"
  482. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  483. msgid "realloc - Failed to allocate memory"
  484. msgstr "realloc - Muistin varaaminen ei onnistunut"
  485. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  486. #, c-format
  487. msgid "Unable to open %s"
  488. msgstr "Tiedoston %s avaaminen ei onnistunut"
  489. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  490. #, c-format
  491. msgid "Malformed override %s line %lu #1"
  492. msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 1"
  493. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  494. #, c-format
  495. msgid "Malformed override %s line %lu #2"
  496. msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 2"
  497. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  498. #, c-format
  499. msgid "Malformed override %s line %lu #3"
  500. msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 3"
  501. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  502. #, c-format
  503. msgid "Failed to read the override file %s"
  504. msgstr "Poikkeustiedoston %s lukeminen ei onnistunut"
  505. #: ftparchive/multicompress.cc:72
  506. #, c-format
  507. msgid "Unknown compression algorithm '%s'"
  508. msgstr "Tuntematon pakkausalgoritmi \"%s\""
  509. #: ftparchive/multicompress.cc:102
  510. #, c-format
  511. msgid "Compressed output %s needs a compression set"
  512. msgstr "Pakattu tulostus %s tarvitsee pakkausjoukon"
  513. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  514. msgid "Failed to create IPC pipe to subprocess"
  515. msgstr "IPC-putken luominen aliprosessiin ei onnistunut"
  516. #: ftparchive/multicompress.cc:195
  517. msgid "Failed to create FILE*"
  518. msgstr "FILE* luominen ei onnistunut"
  519. #: ftparchive/multicompress.cc:198
  520. msgid "Failed to fork"
  521. msgstr "fork ei onnistunut"
  522. #: ftparchive/multicompress.cc:212
  523. msgid "Compress child"
  524. msgstr "Compress-lapsiprosessi"
  525. #: ftparchive/multicompress.cc:235
  526. #, c-format
  527. msgid "Internal error, failed to create %s"
  528. msgstr "Sisäinen virhe, prosessin %s luominen ei onnistunut"
  529. #: ftparchive/multicompress.cc:286
  530. msgid "Failed to create subprocess IPC"
  531. msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua"
  532. #: ftparchive/multicompress.cc:321
  533. msgid "Failed to exec compressor "
  534. msgstr "Pakkaajan käynnistäminen ei onnistunut"
  535. #: ftparchive/multicompress.cc:360
  536. msgid "decompressor"
  537. msgstr "purkaja"
  538. #: ftparchive/multicompress.cc:403
  539. msgid "IO to subprocess/file failed"
  540. msgstr "Syöttö/tulostus aliprosessiin/tiedostoon ei onnistunut"
  541. #: ftparchive/multicompress.cc:455
  542. msgid "Failed to read while computing MD5"
  543. msgstr "Lukeminen ei onnistunut laskettaessa MD5:ttä"
  544. #: ftparchive/multicompress.cc:472
  545. #, c-format
  546. msgid "Problem unlinking %s"
  547. msgstr "Ilmeni pulmia poistettaessa tiedosto %s"
  548. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  549. #, c-format
  550. msgid "Failed to rename %s to %s"
  551. msgstr "Nimen muuttaminen %s -> %s ei onnistunut"
  552. #: cmdline/apt-get.cc:127
  553. msgid "Y"
  554. msgstr "K"
  555. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720
  556. #, c-format
  557. msgid "Regex compilation error - %s"
  558. msgstr "Käännösvirhe lausekkeessa - %s"
  559. #: cmdline/apt-get.cc:244
  560. msgid "The following packages have unmet dependencies:"
  561. msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:"
  562. #: cmdline/apt-get.cc:334
  563. #, c-format
  564. msgid "but %s is installed"
  565. msgstr "mutta %s on asennettu"
  566. #: cmdline/apt-get.cc:336
  567. #, c-format
  568. msgid "but %s is to be installed"
  569. msgstr "mutta %s on merkitty asennettavaksi"
  570. #: cmdline/apt-get.cc:343
  571. msgid "but it is not installable"
  572. msgstr "mutta ei ole asennuskelpoinen"
  573. #: cmdline/apt-get.cc:345
  574. msgid "but it is a virtual package"
  575. msgstr "mutta on näennäispaketti"
  576. #: cmdline/apt-get.cc:348
  577. msgid "but it is not installed"
  578. msgstr "mutta ei ole asennettu"
  579. #: cmdline/apt-get.cc:348
  580. msgid "but it is not going to be installed"
  581. msgstr "mutta ei ole merkitty asennettavaksi"
  582. #: cmdline/apt-get.cc:353
  583. msgid " or"
  584. msgstr " tai"
  585. #: cmdline/apt-get.cc:382
  586. msgid "The following NEW packages will be installed:"
  587. msgstr "Seuraavat UUDET paketit asennetaan:"
  588. #: cmdline/apt-get.cc:408
  589. msgid "The following packages will be REMOVED:"
  590. msgstr "Seuraavat paketit POISTETAAN:"
  591. #: cmdline/apt-get.cc:430
  592. msgid "The following packages have been kept back:"
  593. msgstr "Nämä paketit on jätetty odottamaan:"
  594. #: cmdline/apt-get.cc:451
  595. msgid "The following packages will be upgraded:"
  596. msgstr "Nämä paketit päivitetään:"
  597. #: cmdline/apt-get.cc:472
  598. msgid "The following packages will be DOWNGRADED:"
  599. msgstr "Nämä paketit VARHENNETAAN:"
  600. #: cmdline/apt-get.cc:492
  601. msgid "The following held packages will be changed:"
  602. msgstr "Seuraavat pysytetyt paketit muutetaan:"
  603. #: cmdline/apt-get.cc:545
  604. #, c-format
  605. msgid "%s (due to %s) "
  606. msgstr "%s (syynä %s) "
  607. #: cmdline/apt-get.cc:553
  608. msgid ""
  609. "WARNING: The following essential packages will be removed.\n"
  610. "This should NOT be done unless you know exactly what you are doing!"
  611. msgstr ""
  612. "VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n"
  613. "Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!"
  614. #: cmdline/apt-get.cc:584
  615. #, c-format
  616. msgid "%lu upgraded, %lu newly installed, "
  617. msgstr "%lu päivitetty, %lu uutta asennusta, "
  618. #: cmdline/apt-get.cc:588
  619. #, c-format
  620. msgid "%lu reinstalled, "
  621. msgstr "%lu uudelleen asennettua, "
  622. #: cmdline/apt-get.cc:590
  623. #, c-format
  624. msgid "%lu downgraded, "
  625. msgstr "%lu varhennettua, "
  626. #: cmdline/apt-get.cc:592
  627. #, c-format
  628. msgid "%lu to remove and %lu not upgraded.\n"
  629. msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n"
  630. #: cmdline/apt-get.cc:596
  631. #, c-format
  632. msgid "%lu not fully installed or removed.\n"
  633. msgstr "%lu ei asennettu kokonaan tai poistettiin.\n"
  634. #: cmdline/apt-get.cc:669
  635. msgid "Correcting dependencies..."
  636. msgstr "Korjataan riippuvuuksia..."
  637. #: cmdline/apt-get.cc:672
  638. msgid " failed."
  639. msgstr " ei onnistunut."
  640. #: cmdline/apt-get.cc:675
  641. msgid "Unable to correct dependencies"
  642. msgstr "Riippuvuuksien korjaus ei onnistu"
  643. #: cmdline/apt-get.cc:678
  644. msgid "Unable to minimize the upgrade set"
  645. msgstr "Päivitysjoukon minimointi ei onnistu"
  646. #: cmdline/apt-get.cc:680
  647. msgid " Done"
  648. msgstr " Valmis"
  649. #: cmdline/apt-get.cc:684
  650. msgid "You might want to run `apt-get -f install' to correct these."
  651. msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä."
  652. #: cmdline/apt-get.cc:687
  653. msgid "Unmet dependencies. Try using -f."
  654. msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f."
  655. #: cmdline/apt-get.cc:712
  656. msgid "WARNING: The following packages cannot be authenticated!"
  657. msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!"
  658. #: cmdline/apt-get.cc:716
  659. msgid "Authentication warning overridden.\n"
  660. msgstr "Varoitus varmistamisesta on ohitettu.\n"
  661. #: cmdline/apt-get.cc:723
  662. msgid "Install these packages without verification [y/N]? "
  663. msgstr "Asennetaanko nämä paketit ilman todennusta [y/N]? "
  664. #: cmdline/apt-get.cc:725
  665. msgid "Some packages could not be authenticated"
  666. msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua"
  667. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886
  668. msgid "There are problems and -y was used without --force-yes"
  669. msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes"
  670. #: cmdline/apt-get.cc:775
  671. msgid "Internal error, InstallPackages was called with broken packages!"
  672. msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!"
  673. #: cmdline/apt-get.cc:784
  674. msgid "Packages need to be removed but remove is disabled."
  675. msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä."
  676. #: cmdline/apt-get.cc:795
  677. msgid "Internal error, Ordering didn't finish"
  678. msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi"
  679. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095
  680. msgid "Unable to lock the download directory"
  681. msgstr "Noutokansiota ei saatu lukittua"
  682. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392
  683. #: apt-pkg/cachefile.cc:65
  684. msgid "The list of sources could not be read."
  685. msgstr "Lähteiden luetteloa ei pystynyt lukemaan."
  686. #: cmdline/apt-get.cc:836
  687. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  688. msgstr ""
  689. "No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org"
  690. #: cmdline/apt-get.cc:841
  691. #, c-format
  692. msgid "Need to get %sB/%sB of archives.\n"
  693. msgstr "Noudettavaa arkistoa %st/%st.\n"
  694. #: cmdline/apt-get.cc:844
  695. #, c-format
  696. msgid "Need to get %sB of archives.\n"
  697. msgstr "Noudettavaa arkistoa %st.\n"
  698. #: cmdline/apt-get.cc:849
  699. #, c-format
  700. msgid "After this operation, %sB of additional disk space will be used.\n"
  701. msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n"
  702. #: cmdline/apt-get.cc:852
  703. #, c-format
  704. msgid "After this operation, %sB disk space will be freed.\n"
  705. msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n"
  706. #: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238
  707. #, c-format
  708. msgid "Couldn't determine free space in %s"
  709. msgstr "Kansion %s vapaan tilan määrä ei selvinnyt"
  710. #: cmdline/apt-get.cc:876
  711. #, c-format
  712. msgid "You don't have enough free space in %s."
  713. msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa."
  714. #: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912
  715. msgid "Trivial Only specified but this is not a trivial operation."
  716. msgstr ""
  717. "On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide."
  718. #: cmdline/apt-get.cc:894
  719. msgid "Yes, do as I say!"
  720. msgstr "Kyllä, tee kuten käsketään!"
  721. #: cmdline/apt-get.cc:896
  722. #, c-format
  723. msgid ""
  724. "You are about to do something potentially harmful.\n"
  725. "To continue type in the phrase '%s'\n"
  726. " ?] "
  727. msgstr ""
  728. "Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n"
  729. "Jatka kirjoittamalla \"%s\"\n"
  730. " ?] "
  731. #: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921
  732. msgid "Abort."
  733. msgstr "Keskeytä."
  734. #: cmdline/apt-get.cc:917
  735. msgid "Do you want to continue [Y/n]? "
  736. msgstr "Haluatko jatkaa [K/e]? "
  737. #: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389
  738. #, c-format
  739. msgid "Failed to fetch %s %s\n"
  740. msgstr "Tiedoston %s nouto ei onnistunut %s\n"
  741. #: cmdline/apt-get.cc:1007
  742. msgid "Some files failed to download"
  743. msgstr "Joidenkin tiedostojen nouto ei onnistunut"
  744. #: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298
  745. msgid "Download complete and in download only mode"
  746. msgstr "Nouto on valmis ja määrätty vain nouto"
  747. #: cmdline/apt-get.cc:1014
  748. msgid ""
  749. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  750. "missing?"
  751. msgstr ""
  752. "Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai "
  753. "kokeile --fix-missing?"
  754. #: cmdline/apt-get.cc:1018
  755. msgid "--fix-missing and media swapping is not currently supported"
  756. msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu"
  757. #: cmdline/apt-get.cc:1023
  758. msgid "Unable to correct missing packages."
  759. msgstr "Puuttuvia paketteja ei voi korjata."
  760. #: cmdline/apt-get.cc:1024
  761. msgid "Aborting install."
  762. msgstr "Asennus keskeytetään."
  763. #: cmdline/apt-get.cc:1082
  764. #, c-format
  765. msgid "Note, selecting %s instead of %s\n"
  766. msgstr "Huomautus, valitaan %s eikä %s\n"
  767. #: cmdline/apt-get.cc:1093
  768. #, c-format
  769. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  770. msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n"
  771. #: cmdline/apt-get.cc:1111
  772. #, c-format
  773. msgid "Package %s is not installed, so not removed\n"
  774. msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n"
  775. #: cmdline/apt-get.cc:1122
  776. #, c-format
  777. msgid "Package %s is a virtual package provided by:\n"
  778. msgstr "Paketti %s on näennäispaketti, jonka kattaa:\n"
  779. #: cmdline/apt-get.cc:1134
  780. msgid " [Installed]"
  781. msgstr " [Asennettu]"
  782. #: cmdline/apt-get.cc:1139
  783. msgid "You should explicitly select one to install."
  784. msgstr "Yksi pitää valita asennettavaksi."
  785. #: cmdline/apt-get.cc:1144
  786. #, c-format
  787. msgid ""
  788. "Package %s is not available, but is referred to by another package.\n"
  789. "This may mean that the package is missing, has been obsoleted, or\n"
  790. "is only available from another source\n"
  791. msgstr ""
  792. "Pakettia %s ei ole saatavilla, mutta toinen paketti viittaa siihen.\n"
  793. "Tämä voi tarkoittaa paketin puuttuvan, olevan vanhentunut tai\n"
  794. "saatavilla vain jostain muusta lähteestä\n"
  795. #: cmdline/apt-get.cc:1163
  796. msgid "However the following packages replace it:"
  797. msgstr "Seuraavat paketit kuitenkin korvaavat sen:"
  798. #: cmdline/apt-get.cc:1166
  799. #, c-format
  800. msgid "Package %s has no installation candidate"
  801. msgstr "Paketilla %s ei ole asennettavaa valintaa"
  802. #: cmdline/apt-get.cc:1186
  803. #, c-format
  804. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  805. msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n"
  806. #: cmdline/apt-get.cc:1194
  807. #, c-format
  808. msgid "%s is already the newest version.\n"
  809. msgstr "%s on jo uusin versio.\n"
  810. #: cmdline/apt-get.cc:1223
  811. #, c-format
  812. msgid "Release '%s' for '%s' was not found"
  813. msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt"
  814. #: cmdline/apt-get.cc:1225
  815. #, c-format
  816. msgid "Version '%s' for '%s' was not found"
  817. msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt"
  818. #: cmdline/apt-get.cc:1231
  819. #, c-format
  820. msgid "Selected version %s (%s) for %s\n"
  821. msgstr "Valittiin versio %s (%s) paketille %s\n"
  822. #: cmdline/apt-get.cc:1348
  823. #, c-format
  824. msgid "No source package '%s' picking '%s' instead\n"
  825. msgstr ""
  826. #: cmdline/apt-get.cc:1385
  827. msgid "The update command takes no arguments"
  828. msgstr "Komento update ei käytä parametreja"
  829. #: cmdline/apt-get.cc:1398
  830. msgid "Unable to lock the list directory"
  831. msgstr "Luettelokansiota ei voitu lukita"
  832. #: cmdline/apt-get.cc:1454
  833. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  834. msgstr ""
  835. "On tarkoitus olla poistamatta mitään, joten AutoRemover:ia ei voi käynnistää"
  836. #: cmdline/apt-get.cc:1503
  837. msgid ""
  838. "The following packages were automatically installed and are no longer "
  839. "required:"
  840. msgstr ""
  841. "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
  842. "vaadittuja:"
  843. #: cmdline/apt-get.cc:1505
  844. #, fuzzy, c-format
  845. msgid "%lu packages were automatically installed and are no longer required.\n"
  846. msgstr ""
  847. "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää "
  848. "vaadittuja:"
  849. #: cmdline/apt-get.cc:1506
  850. msgid "Use 'apt-get autoremove' to remove them."
  851. msgstr "Poista ne komennolla \"apt-get autoremove\"."
  852. #: cmdline/apt-get.cc:1511
  853. msgid ""
  854. "Hmm, seems like the AutoRemover destroyed something which really\n"
  855. "shouldn't happen. Please file a bug report against apt."
  856. msgstr ""
  857. "Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n"
  858. "Tekisitkö vikailmoituksen apt:sta."
  859. #.
  860. #. if (Packages == 1)
  861. #. {
  862. #. c1out << endl;
  863. #. c1out <<
  864. #. _("Since you only requested a single operation it is extremely likely that\n"
  865. #. "the package is simply not installable and a bug report against\n"
  866. #. "that package should be filed.") << endl;
  867. #. }
  868. #.
  869. #: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804
  870. msgid "The following information may help to resolve the situation:"
  871. msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:"
  872. #: cmdline/apt-get.cc:1518
  873. msgid "Internal Error, AutoRemover broke stuff"
  874. msgstr "Sisäinen virhe, AutoRemover rikkoi jotain"
  875. #: cmdline/apt-get.cc:1537
  876. msgid "Internal error, AllUpgrade broke stuff"
  877. msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain"
  878. #: cmdline/apt-get.cc:1592
  879. #, c-format
  880. msgid "Couldn't find task %s"
  881. msgstr "Tehtävää %s ei löytynyt"
  882. #: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743
  883. #, c-format
  884. msgid "Couldn't find package %s"
  885. msgstr "Pakettia %s ei löytynyt"
  886. #: cmdline/apt-get.cc:1730
  887. #, c-format
  888. msgid "Note, selecting %s for regex '%s'\n"
  889. msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n"
  890. #: cmdline/apt-get.cc:1761
  891. #, c-format
  892. msgid "%s set to manually installed.\n"
  893. msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n"
  894. #: cmdline/apt-get.cc:1774
  895. msgid "You might want to run `apt-get -f install' to correct these:"
  896. msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:"
  897. #: cmdline/apt-get.cc:1777
  898. msgid ""
  899. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  900. "solution)."
  901. msgstr ""
  902. "Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" "
  903. "ilmanpaketteja (tai ratkaise itse)."
  904. #: cmdline/apt-get.cc:1789
  905. msgid ""
  906. "Some packages could not be installed. This may mean that you have\n"
  907. "requested an impossible situation or if you are using the unstable\n"
  908. "distribution that some required packages have not yet been created\n"
  909. "or been moved out of Incoming."
  910. msgstr ""
  911. "Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n"
  912. "jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n"
  913. "vielä luotu tai siirretty Incoming-kansiosta."
  914. #: cmdline/apt-get.cc:1807
  915. msgid "Broken packages"
  916. msgstr "Rikkinäiset paketit"
  917. #: cmdline/apt-get.cc:1836
  918. msgid "The following extra packages will be installed:"
  919. msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:"
  920. #: cmdline/apt-get.cc:1925
  921. msgid "Suggested packages:"
  922. msgstr "Ehdotetut paketit:"
  923. #: cmdline/apt-get.cc:1926
  924. msgid "Recommended packages:"
  925. msgstr "Suositellut paketit:"
  926. #: cmdline/apt-get.cc:1955
  927. msgid "Calculating upgrade... "
  928. msgstr "Käsitellään päivitystä ... "
  929. #: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112
  930. msgid "Failed"
  931. msgstr "Ei onnistunut"
  932. #: cmdline/apt-get.cc:1963
  933. msgid "Done"
  934. msgstr "Valmis"
  935. #: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038
  936. msgid "Internal error, problem resolver broke stuff"
  937. msgstr "Sisäinen virhe, resolver rikkoi jotain"
  938. #: cmdline/apt-get.cc:2138
  939. msgid "Must specify at least one package to fetch source for"
  940. msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan"
  941. #: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410
  942. #, c-format
  943. msgid "Unable to find a source package for %s"
  944. msgstr "Paketin %s lähdekoodipakettia ei löytynyt"
  945. #: cmdline/apt-get.cc:2217
  946. #, c-format
  947. msgid "Skipping already downloaded file '%s'\n"
  948. msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n"
  949. #: cmdline/apt-get.cc:2248
  950. #, c-format
  951. msgid "You don't have enough free space in %s"
  952. msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa"
  953. #: cmdline/apt-get.cc:2254
  954. #, c-format
  955. msgid "Need to get %sB/%sB of source archives.\n"
  956. msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n"
  957. #: cmdline/apt-get.cc:2257
  958. #, c-format
  959. msgid "Need to get %sB of source archives.\n"
  960. msgstr "On noudettava %st lähdekoodiarkistoja.\n"
  961. #: cmdline/apt-get.cc:2263
  962. #, c-format
  963. msgid "Fetch source %s\n"
  964. msgstr "Nouda lähdekoodi %s\n"
  965. #: cmdline/apt-get.cc:2294
  966. msgid "Failed to fetch some archives."
  967. msgstr "Joidenkin arkistojen noutaminen ei onnistunut."
  968. #: cmdline/apt-get.cc:2322
  969. #, c-format
  970. msgid "Skipping unpack of already unpacked source in %s\n"
  971. msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n"
  972. #: cmdline/apt-get.cc:2334
  973. #, c-format
  974. msgid "Unpack command '%s' failed.\n"
  975. msgstr "Purkukomento \"%s\" ei onnistunut.\n"
  976. #: cmdline/apt-get.cc:2335
  977. #, c-format
  978. msgid "Check if the 'dpkg-dev' package is installed.\n"
  979. msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n"
  980. #: cmdline/apt-get.cc:2352
  981. #, c-format
  982. msgid "Build command '%s' failed.\n"
  983. msgstr "Paketointikomento \"%s\" ei onnistunut.\n"
  984. #: cmdline/apt-get.cc:2371
  985. msgid "Child process failed"
  986. msgstr "Lapsiprosessi kaatui"
  987. #: cmdline/apt-get.cc:2387
  988. msgid "Must specify at least one package to check builddeps for"
  989. msgstr ""
  990. "On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan"
  991. #: cmdline/apt-get.cc:2415
  992. #, c-format
  993. msgid "Unable to get build-dependency information for %s"
  994. msgstr "Paketille %s ei ole saatavilla riippuvuustietoja"
  995. #: cmdline/apt-get.cc:2435
  996. #, c-format
  997. msgid "%s has no build depends.\n"
  998. msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n"
  999. #: cmdline/apt-get.cc:2487
  1000. #, c-format
  1001. msgid ""
  1002. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1003. "found"
  1004. msgstr ""
  1005. "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy"
  1006. #: cmdline/apt-get.cc:2540
  1007. #, c-format
  1008. msgid ""
  1009. "%s dependency for %s cannot be satisfied because no available versions of "
  1010. "package %s can satisfy version requirements"
  1011. msgstr ""
  1012. "%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio "
  1013. "ei vastaa versioriippuvuuksia"
  1014. #: cmdline/apt-get.cc:2576
  1015. #, c-format
  1016. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1017. msgstr ""
  1018. "Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian "
  1019. "uusi"
  1020. #: cmdline/apt-get.cc:2603
  1021. #, c-format
  1022. msgid "Failed to satisfy %s dependency for %s: %s"
  1023. msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s"
  1024. #: cmdline/apt-get.cc:2619
  1025. #, c-format
  1026. msgid "Build-dependencies for %s could not be satisfied."
  1027. msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää."
  1028. #: cmdline/apt-get.cc:2624
  1029. msgid "Failed to process build dependencies"
  1030. msgstr "Paketointiriippuvuuksien käsittely ei onnistunut"
  1031. #: cmdline/apt-get.cc:2656
  1032. msgid "Supported modules:"
  1033. msgstr "Tuetut moduulit:"
  1034. #: cmdline/apt-get.cc:2697
  1035. #, fuzzy
  1036. msgid ""
  1037. "Usage: apt-get [options] command\n"
  1038. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1039. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1040. "\n"
  1041. "apt-get is a simple command line interface for downloading and\n"
  1042. "installing packages. The most frequently used commands are update\n"
  1043. "and install.\n"
  1044. "\n"
  1045. "Commands:\n"
  1046. " update - Retrieve new lists of packages\n"
  1047. " upgrade - Perform an upgrade\n"
  1048. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1049. " remove - Remove packages\n"
  1050. " autoremove - Remove automatically all unused packages\n"
  1051. " purge - Remove packages and config files\n"
  1052. " source - Download source archives\n"
  1053. " build-dep - Configure build-dependencies for source packages\n"
  1054. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1055. " dselect-upgrade - Follow dselect selections\n"
  1056. " clean - Erase downloaded archive files\n"
  1057. " autoclean - Erase old downloaded archive files\n"
  1058. " check - Verify that there are no broken dependencies\n"
  1059. "\n"
  1060. "Options:\n"
  1061. " -h This help text.\n"
  1062. " -q Loggable output - no progress indicator\n"
  1063. " -qq No output except for errors\n"
  1064. " -d Download only - do NOT install or unpack archives\n"
  1065. " -s No-act. Perform ordering simulation\n"
  1066. " -y Assume Yes to all queries and do not prompt\n"
  1067. " -f Attempt to correct a system with broken dependencies in place\n"
  1068. " -m Attempt to continue if archives are unlocatable\n"
  1069. " -u Show a list of upgraded packages as well\n"
  1070. " -b Build the source package after fetching it\n"
  1071. " -V Show verbose version numbers\n"
  1072. " -c=? Read this configuration file\n"
  1073. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1074. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1075. "pages for more information and options.\n"
  1076. " This APT has Super Cow Powers.\n"
  1077. msgstr ""
  1078. "Käyttö: apt-get [valitsimet] komento\n"
  1079. " apt-get [valitsimet] install|remove pkt1 [pkt2 ...]\n"
  1080. " apt-get [valitsimet] source pkt1 [pkt2 ...]\n"
  1081. "\n"
  1082. "apt-get on yksinkertainen komentorivityökalu pakettien noutamiseen\n"
  1083. "ja asentamiseen. Useimmiten käytetyt komennot ovat update ja \n"
  1084. "install.\n"
  1085. "Komennot:\n"
  1086. " update - Nouda uusi pakettiluettelo\n"
  1087. " upgrade - Tee päivitys\n"
  1088. " install - Asenna uusia paketteja (esim. libc6 eikä libc6.deb)\n"
  1089. " remove - Poista paketteja\n"
  1090. " autoremove - Poista kaikki käyttämättömät paketit\n"
  1091. " purge - Poista paketit asennustiedostoineen\n"
  1092. " source - Nouda lähdekoodiarkistoja\n"
  1093. " build-dep - Määritä paketointiriippuvuudet lähdekoodipaketeille\n"
  1094. " dist-upgrade - Koko jakelun päivitys, katso apt-get(8)\n"
  1095. " dselect-upgrade - Noudata dselect:n valintoja\n"
  1096. " clean - Poista noudetut pakettitiedostot\n"
  1097. " autoclean - Poista vanhat noudetut tiedostot\n"
  1098. " check - Tarkasta ettei ole tyydyttämättömiä riippuvuuksia\n"
  1099. "\n"
  1100. "Valitsimet:\n"
  1101. " -h Tämä ohje\n"
  1102. " -q Lokiin sopiva tulostus - edistymisen ilmaisin jätetään pois\n"
  1103. " -qq Ei lainkaan tulostusta paitsi virheistä\n"
  1104. " -d Vain nouto - paketteja EI asenneta tai pureta\n"
  1105. " -s Älä tee mitään. Oikean toiminnan simulaatio\n"
  1106. " -y Vastataan Kyllä kaikkiin kysymyksiin eikä kehoitetta näytetä\n"
  1107. " -f Yritä jatkaa jos eheystarkastus löysi virheen\n"
  1108. " -m Yritä jatkaa jos arkistojen sijainti ei selviä\n"
  1109. " -u Näytä luettelo myös päivitetyistä paketeista\n"
  1110. " -b Käännä lähdekoodipaketti noudon jälkeen\n"
  1111. " -V Näytä pitkät versionumerot\n"
  1112. " -c=? Lue tämä asetustiedosto\n"
  1113. " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
  1114. "Katso apt-get(8), sources.list(5) ja apt.conf(5) käsikirjasivuilta\n"
  1115. "lisätietoja ja lisää valitsimia.\n"
  1116. " This APT has Super Cow Powers.\n"
  1117. #: cmdline/apt-get.cc:2864
  1118. msgid ""
  1119. "NOTE: This is only a simulation!\n"
  1120. " apt-get needs root privileges for real execution.\n"
  1121. " Keep also in mind that locking is deactivated,\n"
  1122. " so don't depend on the relevance to the real current situation!"
  1123. msgstr ""
  1124. #: cmdline/acqprogress.cc:55
  1125. msgid "Hit "
  1126. msgstr "Löytyi "
  1127. #: cmdline/acqprogress.cc:79
  1128. msgid "Get:"
  1129. msgstr "Nouda:"
  1130. #: cmdline/acqprogress.cc:110
  1131. msgid "Ign "
  1132. msgstr "Siv "
  1133. #: cmdline/acqprogress.cc:114
  1134. msgid "Err "
  1135. msgstr "Vrhe "
  1136. #: cmdline/acqprogress.cc:135
  1137. #, c-format
  1138. msgid "Fetched %sB in %s (%sB/s)\n"
  1139. msgstr "Noudettiin %st ajassa %s (%st/s)\n"
  1140. #: cmdline/acqprogress.cc:225
  1141. #, c-format
  1142. msgid " [Working]"
  1143. msgstr " [Työskennellään]"
  1144. #: cmdline/acqprogress.cc:271
  1145. #, c-format
  1146. msgid ""
  1147. "Media change: please insert the disc labeled\n"
  1148. " '%s'\n"
  1149. "in the drive '%s' and press enter\n"
  1150. msgstr ""
  1151. "Taltion vaihto: Pistä levy \n"
  1152. "\"%s\"\n"
  1153. "asemaan \"%s\" ja paina Enter\n"
  1154. #: cmdline/apt-sortpkgs.cc:86
  1155. msgid "Unknown package record!"
  1156. msgstr "Tuntematon pakettitietue!"
  1157. #: cmdline/apt-sortpkgs.cc:150
  1158. msgid ""
  1159. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1160. "\n"
  1161. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1162. "to indicate what kind of file it is.\n"
  1163. "\n"
  1164. "Options:\n"
  1165. " -h This help text\n"
  1166. " -s Use source file sorting\n"
  1167. " -c=? Read this configuration file\n"
  1168. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1169. msgstr ""
  1170. "Käyttö: apt-sortpkgs [valitsimet] tdsto1 [tdsto2 ...]\n"
  1171. "\n"
  1172. "apt-sortpkgs on yksinkertainen työkalu pakettitiedostojen lajitteluun.\n"
  1173. "Valitsimella -s ilmaistaan minkälainen tiedosto on.\n"
  1174. "\n"
  1175. "Valitsimet:\n"
  1176. " -h Tämä ohje\n"
  1177. " -s Käytä lähdetiedostolajittelua\n"
  1178. " -c=? Lue tämä asetustiedosto\n"
  1179. " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
  1180. #: dselect/install:32
  1181. msgid "Bad default setting!"
  1182. msgstr "Oletusasetus ei kelpaa!"
  1183. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1184. #: dselect/install:105 dselect/update:45
  1185. msgid "Press enter to continue."
  1186. msgstr "Jatka painamalla Enter."
  1187. #: dselect/install:91
  1188. msgid "Do you want to erase any previously downloaded .deb files?"
  1189. msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?"
  1190. #: dselect/install:101
  1191. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1192. msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen"
  1193. #: dselect/install:102
  1194. msgid "packages that were installed. This may result in duplicate errors"
  1195. msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan"
  1196. #: dselect/install:103
  1197. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1198. msgstr ""
  1199. "tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa"
  1200. #: dselect/install:104
  1201. msgid ""
  1202. "above this message are important. Please fix them and run [I]nstall again"
  1203. msgstr ""
  1204. "vain tätä viestiä ennen tulleilla virheillä on merkitystä. Korjaa ne ja aja "
  1205. "[I]nstall uudestaan"
  1206. #: dselect/update:30
  1207. msgid "Merging available information"
  1208. msgstr "Yhdistetään saatavuustiedot"
  1209. #: apt-inst/contrib/extracttar.cc:114
  1210. msgid "Failed to create pipes"
  1211. msgstr "Putkien luonti ei onnistunut"
  1212. #: apt-inst/contrib/extracttar.cc:141
  1213. msgid "Failed to exec gzip "
  1214. msgstr "exec gzip ei onnistunut"
  1215. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1216. msgid "Corrupted archive"
  1217. msgstr "Arkisto on turmeltunut"
  1218. #: apt-inst/contrib/extracttar.cc:193
  1219. msgid "Tar checksum failed, archive corrupted"
  1220. msgstr "Tar-ohjelman laskema tarkistussumma ei täsmää, arkisto on turmeltunut"
  1221. #: apt-inst/contrib/extracttar.cc:296
  1222. #, c-format
  1223. msgid "Unknown TAR header type %u, member %s"
  1224. msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s"
  1225. #: apt-inst/contrib/arfile.cc:70
  1226. msgid "Invalid archive signature"
  1227. msgstr "Arkiston tarkistussumma on virheellinen"
  1228. #: apt-inst/contrib/arfile.cc:78
  1229. msgid "Error reading archive member header"
  1230. msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa"
  1231. #: apt-inst/contrib/arfile.cc:90
  1232. #, fuzzy, c-format
  1233. msgid "Invalid archive member header %s"
  1234. msgstr "Arkiston tiedoston otsikko on virheellinen"
  1235. #: apt-inst/contrib/arfile.cc:102
  1236. msgid "Invalid archive member header"
  1237. msgstr "Arkiston tiedoston otsikko on virheellinen"
  1238. #: apt-inst/contrib/arfile.cc:128
  1239. msgid "Archive is too short"
  1240. msgstr "Arkisto on pienempi kuin pitäisi"
  1241. #: apt-inst/contrib/arfile.cc:132
  1242. msgid "Failed to read the archive headers"
  1243. msgstr "Arkiston otsikoiden luku ei onnistunut"
  1244. #: apt-inst/filelist.cc:380
  1245. msgid "DropNode called on still linked node"
  1246. msgstr "Kutsuttiin DropNode mutta tiedostoon on vielä linkki"
  1247. #: apt-inst/filelist.cc:412
  1248. msgid "Failed to locate the hash element!"
  1249. msgstr "Hajautusalkiota ei löytynyt!"
  1250. #: apt-inst/filelist.cc:459
  1251. msgid "Failed to allocate diversion"
  1252. msgstr "Korvautuksen varaus ei onnistunut"
  1253. #: apt-inst/filelist.cc:464
  1254. msgid "Internal error in AddDiversion"
  1255. msgstr "AddDiversion: sisäinen virhe"
  1256. #: apt-inst/filelist.cc:477
  1257. #, c-format
  1258. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1259. msgstr "Yritetään kirjoittaa korvautuksen päälle, %s -> %s ja %s/%s"
  1260. #: apt-inst/filelist.cc:506
  1261. #, c-format
  1262. msgid "Double add of diversion %s -> %s"
  1263. msgstr "Korvautuksen kaksoislisäys %s -> %s"
  1264. #: apt-inst/filelist.cc:549
  1265. #, c-format
  1266. msgid "Duplicate conf file %s/%s"
  1267. msgstr "Asetustiedoston kaksoiskappale %s/%s"
  1268. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1269. #, c-format
  1270. msgid "Failed to write file %s"
  1271. msgstr "Tiedoston %s kirjoittaminen ei onnistunut"
  1272. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1273. #, c-format
  1274. msgid "Failed to close file %s"
  1275. msgstr "Tiedoston %s sulkeminen ei onnistunut"
  1276. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1277. #, c-format
  1278. msgid "The path %s is too long"
  1279. msgstr "Polku %s on liian pitkä"
  1280. #: apt-inst/extract.cc:124
  1281. #, c-format
  1282. msgid "Unpacking %s more than once"
  1283. msgstr "Purettiin %s useammin kuin kerran"
  1284. #: apt-inst/extract.cc:134
  1285. #, c-format
  1286. msgid "The directory %s is diverted"
  1287. msgstr "Kansio %s on korvautunut"
  1288. #: apt-inst/extract.cc:144
  1289. #, c-format
  1290. msgid "The package is trying to write to the diversion target %s/%s"
  1291. msgstr "Paketti yrittää kirjoittaa korvautuksen kohteeseen %s/%s"
  1292. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1293. msgid "The diversion path is too long"
  1294. msgstr "Korvautuspolku on liian pitkä"
  1295. #: apt-inst/extract.cc:240
  1296. #, c-format
  1297. msgid "The directory %s is being replaced by a non-directory"
  1298. msgstr "Kansiota %s ollaan korvaamassa muulla kuin kansiolla"
  1299. #: apt-inst/extract.cc:280
  1300. msgid "Failed to locate node in its hash bucket"
  1301. msgstr "Solmua ei löytynyt sen hajautuslokerosta"
  1302. #: apt-inst/extract.cc:284
  1303. msgid "The path is too long"
  1304. msgstr "Polku on liian pitkä"
  1305. #: apt-inst/extract.cc:414
  1306. #, c-format
  1307. msgid "Overwrite package match with no version for %s"
  1308. msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versiota"
  1309. #: apt-inst/extract.cc:431
  1310. #, c-format
  1311. msgid "File %s/%s overwrites the one in the package %s"
  1312. msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle"
  1313. #. Only warn if there are no sources.list.d.
  1314. #. Only warn if there is no sources.list file.
  1315. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843
  1316. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1317. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1318. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1319. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1320. #, c-format
  1321. msgid "Unable to read %s"
  1322. msgstr "Tiedostoa %s ei voi lukea"
  1323. #: apt-inst/extract.cc:491
  1324. #, c-format
  1325. msgid "Unable to stat %s"
  1326. msgstr "Tiedostolle %s ei toimi stat"
  1327. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1328. #, c-format
  1329. msgid "Failed to remove %s"
  1330. msgstr "Tiedoston %s poistaminen ei onnistunut"
  1331. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1332. #, c-format
  1333. msgid "Unable to create %s"
  1334. msgstr "Tiedostoa %s ei voi luoda"
  1335. #: apt-inst/deb/dpkgdb.cc:114
  1336. #, c-format
  1337. msgid "Failed to stat %sinfo"
  1338. msgstr "stat ei toimi: %sinfo"
  1339. #: apt-inst/deb/dpkgdb.cc:119
  1340. msgid "The info and temp directories need to be on the same filesystem"
  1341. msgstr "Kansioiden info ja temp pitää olla samassa tiedostojärjestelmässä"
  1342. #. Build the status cache
  1343. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1344. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1345. #: apt-pkg/pkgcachegen.cc:961
  1346. msgid "Reading package lists"
  1347. msgstr "Luetaan pakettiluetteloita"
  1348. #: apt-inst/deb/dpkgdb.cc:176
  1349. #, c-format
  1350. msgid "Failed to change to the admin dir %sinfo"
  1351. msgstr "Ylläpitokansioon %sinfo vaihtaminen ei onnistunut"
  1352. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1353. #: apt-inst/deb/dpkgdb.cc:444
  1354. msgid "Internal error getting a package name"
  1355. msgstr "Tapahtui sisäinen virhe haettaessa paketin nimeä"
  1356. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1357. msgid "Reading file listing"
  1358. msgstr "Luetaan tiedostoluetteloa"
  1359. #: apt-inst/deb/dpkgdb.cc:212
  1360. #, c-format
  1361. msgid ""
  1362. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1363. "then make it empty and immediately re-install the same version of the "
  1364. "package!"
  1365. msgstr ""
  1366. "Luettelotiedoston \"%sinfo/%s\" avaaminen ei onnistunut. Jos tätä tiedostoa "
  1367. "ei voi palauttaa, tyhjennä tiedosto ja asenna välittömästi paketin sama "
  1368. "versio uudelleen!"
  1369. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1370. #, c-format
  1371. msgid "Failed reading the list file %sinfo/%s"
  1372. msgstr "Tapahtui virhe luettelotiedostoa %sinfo/%s luettaessa"
  1373. #: apt-inst/deb/dpkgdb.cc:262
  1374. msgid "Internal error getting a node"
  1375. msgstr "Tapahtui sisäinen virhe varattaessa tiedostosolmua"
  1376. #: apt-inst/deb/dpkgdb.cc:305
  1377. #, c-format
  1378. msgid "Failed to open the diversions file %sdiversions"
  1379. msgstr "Tapahtui virhe avattaessa korvautustiedostoa %sdiversions"
  1380. #: apt-inst/deb/dpkgdb.cc:320
  1381. msgid "The diversion file is corrupted"
  1382. msgstr "Korvautustiedosto on turmeltunut"
  1383. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1384. #: apt-inst/deb/dpkgdb.cc:337
  1385. #, c-format
  1386. msgid "Invalid line in the diversion file: %s"
  1387. msgstr "Virheellinen rivi korvautustiedostossa: %s"
  1388. #: apt-inst/deb/dpkgdb.cc:358
  1389. msgid "Internal error adding a diversion"
  1390. msgstr "Tapahtui sisäinen virhe lisättäessä korvautusta"
  1391. #: apt-inst/deb/dpkgdb.cc:379
  1392. msgid "The pkg cache must be initialized first"
  1393. msgstr "Pakettivarasto on ensin alustettava"
  1394. #: apt-inst/deb/dpkgdb.cc:439
  1395. #, c-format
  1396. msgid "Failed to find a Package: header, offset %lu"
  1397. msgstr "Paketin otsikkoa ei löydy, kohta %lu"
  1398. #: apt-inst/deb/dpkgdb.cc:461
  1399. #, c-format
  1400. msgid "Bad ConfFile section in the status file. Offset %lu"
  1401. msgstr "Virheellinen ConfFile-lohko tilatiedostossa. Kohta %lu"
  1402. #: apt-inst/deb/dpkgdb.cc:466
  1403. #, c-format
  1404. msgid "Error parsing MD5. Offset %lu"
  1405. msgstr "Tapahtui virhe jäsennettäessä MD5:ttä. Kohta %lu"
  1406. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1407. #, c-format
  1408. msgid "This is not a valid DEB archive, missing '%s' member"
  1409. msgstr "Tämä ei ole kelvollinen DEB-arkisto, puuttuu tiedosto \"%s\""
  1410. #: apt-inst/deb/debfile.cc:50
  1411. #, c-format
  1412. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1413. msgstr ""
  1414. "Tämä ei ole kelvollinen DEB-arkisto, jokin osista \"%s\", \"%s\" tai \"%s\" "
  1415. "puuttuu."
  1416. #: apt-inst/deb/debfile.cc:110
  1417. #, c-format
  1418. msgid "Couldn't change to %s"
  1419. msgstr "Kansioon %s vaihto ei onnistunut"
  1420. #: apt-inst/deb/debfile.cc:140
  1421. msgid "Internal error, could not locate member"
  1422. msgstr "Tapahtui sisäinen virhe, tiedostoa ei löydy"
  1423. #: apt-inst/deb/debfile.cc:173
  1424. msgid "Failed to locate a valid control file"
  1425. msgstr "Kelvollista ohjaustiedostoa ei löydy"
  1426. #: apt-inst/deb/debfile.cc:258
  1427. msgid "Unparsable control file"
  1428. msgstr "Ohjaustiedosto ei jäsenny"
  1429. #: methods/cdrom.cc:200
  1430. #, c-format
  1431. msgid "Unable to read the cdrom database %s"
  1432. msgstr "Rompputietokantaa %s ei voi lukea"
  1433. #: methods/cdrom.cc:209
  1434. msgid ""
  1435. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1436. "cannot be used to add new CD-ROMs"
  1437. msgstr ""
  1438. "Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei "
  1439. "osaa lisätä uusia romppuja"
  1440. #: methods/cdrom.cc:219
  1441. msgid "Wrong CD-ROM"
  1442. msgstr "Väärä romppu"
  1443. #: methods/cdrom.cc:245
  1444. #, c-format
  1445. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1446. msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä."
  1447. #: methods/cdrom.cc:250
  1448. msgid "Disk not found."
  1449. msgstr "Levyä ei löydy"
  1450. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1451. msgid "File not found"
  1452. msgstr "Tiedostoa ei löydy"
  1453. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1454. #: methods/rred.cc:234 methods/rred.cc:243
  1455. msgid "Failed to stat"
  1456. msgstr "Komento stat ei toiminut"
  1457. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1458. msgid "Failed to set modification time"
  1459. msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua"
  1460. #: methods/file.cc:44
  1461. msgid "Invalid URI, local URIS must not start with //"
  1462. msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //"
  1463. #. Login must be before getpeername otherwise dante won't work.
  1464. #: methods/ftp.cc:167
  1465. msgid "Logging in"
  1466. msgstr "Kirjaudutaan sisään"
  1467. #: methods/ftp.cc:173
  1468. msgid "Unable to determine the peer name"
  1469. msgstr "Vastapään nimeä ei saa selville"
  1470. #: methods/ftp.cc:178
  1471. msgid "Unable to determine the local name"
  1472. msgstr "Paikallista nimeä ei saa selville"
  1473. #: methods/ftp.cc:209 methods/ftp.cc:237
  1474. #, c-format
  1475. msgid "The server refused the connection and said: %s"
  1476. msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s"
  1477. #: methods/ftp.cc:215
  1478. #, c-format
  1479. msgid "USER failed, server said: %s"
  1480. msgstr "USER ei onnistunut, palvelimen ilmoitus: %s"
  1481. #: methods/ftp.cc:222
  1482. #, c-format
  1483. msgid "PASS failed, server said: %s"
  1484. msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s"
  1485. #: methods/ftp.cc:242
  1486. msgid ""
  1487. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1488. "is empty."
  1489. msgstr ""
  1490. "Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::"
  1491. "ftp::ProxyLogin on tyhjä."
  1492. #: methods/ftp.cc:270
  1493. #, c-format
  1494. msgid "Login script command '%s' failed, server said: %s"
  1495. msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s"
  1496. #: methods/ftp.cc:296
  1497. #, c-format
  1498. msgid "TYPE failed, server said: %s"
  1499. msgstr "TYPE ei toiminut, palvelin ilmoitti: %s"
  1500. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1501. msgid "Connection timeout"
  1502. msgstr "Yhteys aikakatkaistiin"
  1503. #: methods/ftp.cc:340
  1504. msgid "Server closed the connection"
  1505. msgstr "Palvelin sulki yhteyden"
  1506. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1507. msgid "Read error"
  1508. msgstr "Lukuvirhe"
  1509. #: methods/ftp.cc:350 methods/rsh.cc:197
  1510. msgid "A response overflowed the buffer."
  1511. msgstr "Vastaus aiheutti puskurin ylivuodon."
  1512. #: methods/ftp.cc:367 methods/ftp.cc:379
  1513. msgid "Protocol corruption"
  1514. msgstr "Yhteyskäytäntö on turmeltunut"
  1515. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1516. msgid "Write error"
  1517. msgstr "Virhe kirjoitettaessa"
  1518. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1519. msgid "Could not create a socket"
  1520. msgstr "Pistoketta ei voitu luoda"
  1521. #: methods/ftp.cc:703
  1522. msgid "Could not connect data socket, connection timed out"
  1523. msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin"
  1524. #: methods/ftp.cc:709
  1525. msgid "Could not connect passive socket."
  1526. msgstr "Passiivista pistoketta ei voitu kytkeä."
  1527. #: methods/ftp.cc:727
  1528. msgid "getaddrinfo was unable to get a listening socket"
  1529. msgstr "getaddrinfo ei saanut kuuntelupistoketta"
  1530. #: methods/ftp.cc:741
  1531. msgid "Could not bind a socket"
  1532. msgstr "Pistoketta ei voitu nimetä"
  1533. #: methods/ftp.cc:745
  1534. msgid "Could not listen on the socket"
  1535. msgstr "Pistoketta ei voitu kuunnella"
  1536. #: methods/ftp.cc:752
  1537. msgid "Could not determine the socket's name"
  1538. msgstr "Pistokkeen nimeä ei saatu selville"
  1539. #: methods/ftp.cc:784
  1540. msgid "Unable to send PORT command"
  1541. msgstr "Komennon PORT lähetys ei onnistu"
  1542. #: methods/ftp.cc:794
  1543. #, c-format
  1544. msgid "Unknown address family %u (AF_*)"
  1545. msgstr "Tuntematon osoiteperhe %u (AF_*)"
  1546. #: methods/ftp.cc:803
  1547. #, c-format
  1548. msgid "EPRT failed, server said: %s"
  1549. msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s"
  1550. #: methods/ftp.cc:823
  1551. msgid "Data socket connect timed out"
  1552. msgstr "Pistokkeen kytkeminen aikakatkaistiin"
  1553. #: methods/ftp.cc:830
  1554. msgid "Unable to accept connection"
  1555. msgstr "Yhteyttä ei voitu hyväksyä"
  1556. #: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303
  1557. msgid "Problem hashing file"
  1558. msgstr "Pulmia tiedoston hajautuksessa"
  1559. #: methods/ftp.cc:882
  1560. #, c-format
  1561. msgid "Unable to fetch file, server said '%s'"
  1562. msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\""
  1563. #: methods/ftp.cc:897 methods/rsh.cc:322
  1564. msgid "Data socket timed out"
  1565. msgstr "Pistoke aikakatkaistiin"
  1566. #: methods/ftp.cc:927
  1567. #, c-format
  1568. msgid "Data transfer failed, server said '%s'"
  1569. msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\""
  1570. #. Get the files information
  1571. #: methods/ftp.cc:1002
  1572. msgid "Query"
  1573. msgstr "Kysely"
  1574. #: methods/ftp.cc:1114
  1575. msgid "Unable to invoke "
  1576. msgstr "Käynnistys ei onnistu"
  1577. #: methods/connect.cc:70
  1578. #, c-format
  1579. msgid "Connecting to %s (%s)"
  1580. msgstr "Avataan yhteys %s (%s)"
  1581. #: methods/connect.cc:81
  1582. #, c-format
  1583. msgid "[IP: %s %s]"
  1584. msgstr "[IP: %s %s]"
  1585. #: methods/connect.cc:90
  1586. #, c-format
  1587. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1588. msgstr "Pistokeen luonti ei onnistu %s (f=%u t=%u p=%u)"
  1589. #: methods/connect.cc:96
  1590. #, c-format
  1591. msgid "Cannot initiate the connection to %s:%s (%s)."
  1592. msgstr "Yhteyden %s avaus ei onnistu: %s (%s)."
  1593. #: methods/connect.cc:104
  1594. #, c-format
  1595. msgid "Could not connect to %s:%s (%s), connection timed out"
  1596. msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin"
  1597. #: methods/connect.cc:119
  1598. #, c-format
  1599. msgid "Could not connect to %s:%s (%s)."
  1600. msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)"
  1601. #. We say this mainly because the pause here is for the
  1602. #. ssh connection that is still going
  1603. #: methods/connect.cc:147 methods/rsh.cc:425
  1604. #, c-format
  1605. msgid "Connecting to %s"
  1606. msgstr "Avataan yhteys %s"
  1607. #: methods/connect.cc:165 methods/connect.cc:184
  1608. #, c-format
  1609. msgid "Could not resolve '%s'"
  1610. msgstr "Nimeä \"%s\" ei voitu selvittää"
  1611. #: methods/connect.cc:190
  1612. #, c-format
  1613. msgid "Temporary failure resolving '%s'"
  1614. msgstr "Tilapäinen häiriö selvitettäessä \"%s\""
  1615. #: methods/connect.cc:193
  1616. #, c-format
  1617. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1618. msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)"
  1619. #: methods/connect.cc:240
  1620. #, c-format
  1621. msgid "Unable to connect to %s %s:"
  1622. msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:"
  1623. #: methods/gpgv.cc:71
  1624. #, c-format
  1625. msgid "Couldn't access keyring: '%s'"
  1626. msgstr "Avainrengasta \"%s\" ei saatavilla"
  1627. #: methods/gpgv.cc:107
  1628. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1629. msgstr ""
  1630. "E: Parametrien luettelo Acquire::gpgv::Options liian pitkä. Lopetetaan."
  1631. #: methods/gpgv.cc:223
  1632. msgid ""
  1633. "Internal error: Good signature, but could not determine key fingerprint?!"
  1634. msgstr ""
  1635. "Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!"
  1636. #: methods/gpgv.cc:228
  1637. msgid "At least one invalid signature was encountered."
  1638. msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus."
  1639. #: methods/gpgv.cc:232
  1640. #, c-format
  1641. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1642. msgstr ""
  1643. "Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gpgv asennettu?)"
  1644. #: methods/gpgv.cc:237
  1645. msgid "Unknown error executing gpgv"
  1646. msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv"
  1647. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1648. msgid "The following signatures were invalid:\n"
  1649. msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n"
  1650. #: methods/gpgv.cc:285
  1651. msgid ""
  1652. "The following signatures couldn't be verified because the public key is not "
  1653. "available:\n"
  1654. msgstr ""
  1655. "Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole "
  1656. "saatavilla:\n"
  1657. #: methods/gzip.cc:64
  1658. #, c-format
  1659. msgid "Couldn't open pipe for %s"
  1660. msgstr "Putkea %s ei voitu avata"
  1661. #: methods/gzip.cc:109
  1662. #, c-format
  1663. msgid "Read error from %s process"
  1664. msgstr "Prosessi %s ilmoitti lukuvirheestä"
  1665. #: methods/http.cc:384
  1666. msgid "Waiting for headers"
  1667. msgstr "Odotetaan otsikoita"
  1668. #: methods/http.cc:530
  1669. #, c-format
  1670. msgid "Got a single header line over %u chars"
  1671. msgstr "Vastaanotettiin yksi otsikkorivi pituudeltaan yli %u merkkiä"
  1672. #: methods/http.cc:538
  1673. msgid "Bad header line"
  1674. msgstr "Virheellinen otsikkorivi"
  1675. #: methods/http.cc:557 methods/http.cc:564
  1676. msgid "The HTTP server sent an invalid reply header"
  1677. msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon"
  1678. #: methods/http.cc:593
  1679. msgid "The HTTP server sent an invalid Content-Length header"
  1680. msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon"
  1681. #: methods/http.cc:608
  1682. msgid "The HTTP server sent an invalid Content-Range header"
  1683. msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon"
  1684. #: methods/http.cc:610
  1685. msgid "This HTTP server has broken range support"
  1686. msgstr "HTTP-palvelimen arvoaluetuki on rikki"
  1687. #: methods/http.cc:634
  1688. msgid "Unknown date format"
  1689. msgstr "Tuntematon päiväysmuoto"
  1690. #: methods/http.cc:787
  1691. msgid "Select failed"
  1692. msgstr "Select ei toiminut"
  1693. #: methods/http.cc:792
  1694. msgid "Connection timed out"
  1695. msgstr "Yhteys aikakatkaistiin"
  1696. #: methods/http.cc:815
  1697. msgid "Error writing to output file"
  1698. msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon"
  1699. #: methods/http.cc:846
  1700. msgid "Error writing to file"
  1701. msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
  1702. #: methods/http.cc:874
  1703. msgid "Error writing to the file"
  1704. msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
  1705. #: methods/http.cc:888
  1706. msgid "Error reading from server. Remote end closed connection"
  1707. msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden"
  1708. #: methods/http.cc:890
  1709. msgid "Error reading from server"
  1710. msgstr "Tapahtui virhe luettaessa palvelimelta"
  1711. #: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215
  1712. msgid "Failed to truncate file"
  1713. msgstr "Tiedoston typistäminen ei onnistunut"
  1714. #: methods/http.cc:1146
  1715. msgid "Bad header data"
  1716. msgstr "Virheellinen otsikkotieto"
  1717. #: methods/http.cc:1163 methods/http.cc:1218
  1718. msgid "Connection failed"
  1719. msgstr "Yhteys ei toiminut"
  1720. #: methods/http.cc:1310
  1721. msgid "Internal error"
  1722. msgstr "Sisäinen virhe"
  1723. #: apt-pkg/contrib/mmap.cc:76
  1724. msgid "Can't mmap an empty file"
  1725. msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia"
  1726. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187
  1727. #, c-format
  1728. msgid "Couldn't make mmap of %lu bytes"
  1729. msgstr "Ei voitu tehdä %lu tavun mmap:ia"
  1730. #: apt-pkg/contrib/mmap.cc:234
  1731. #, c-format
  1732. msgid ""
  1733. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1734. "Current value: %lu. (man 5 apt.conf)"
  1735. msgstr ""
  1736. #. d means days, h means hours, min means minutes, s means seconds
  1737. #: apt-pkg/contrib/strutl.cc:346
  1738. #, c-format
  1739. msgid "%lid %lih %limin %lis"
  1740. msgstr ""
  1741. #. h means hours, min means minutes, s means seconds
  1742. #: apt-pkg/contrib/strutl.cc:353
  1743. #, c-format
  1744. msgid "%lih %limin %lis"
  1745. msgstr ""
  1746. #. min means minutes, s means seconds
  1747. #: apt-pkg/contrib/strutl.cc:360
  1748. #, c-format
  1749. msgid "%limin %lis"
  1750. msgstr ""
  1751. #. s means seconds
  1752. #: apt-pkg/contrib/strutl.cc:365
  1753. #, c-format
  1754. msgid "%lis"
  1755. msgstr ""
  1756. #: apt-pkg/contrib/strutl.cc:1040
  1757. #, c-format
  1758. msgid "Selection %s not found"
  1759. msgstr "Valintaa %s ei löydy"
  1760. #: apt-pkg/contrib/configuration.cc:458
  1761. #, c-format
  1762. msgid "Unrecognized type abbreviation: '%c'"
  1763. msgstr "Tuntematon tyypin lyhenne: \"%c\""
  1764. #: apt-pkg/contrib/configuration.cc:516
  1765. #, c-format
  1766. msgid "Opening configuration file %s"
  1767. msgstr "Avataan asetustiedosto %s"
  1768. #: apt-pkg/contrib/configuration.cc:684
  1769. #, c-format
  1770. msgid "Syntax error %s:%u: Block starts with no name."
  1771. msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä."
  1772. #: apt-pkg/contrib/configuration.cc:703
  1773. #, c-format
  1774. msgid "Syntax error %s:%u: Malformed tag"
  1775. msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä"
  1776. #: apt-pkg/contrib/configuration.cc:720
  1777. #, c-format
  1778. msgid "Syntax error %s:%u: Extra junk after value"
  1779. msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa"
  1780. #: apt-pkg/contrib/configuration.cc:760
  1781. #, c-format
  1782. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1783. msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla"
  1784. #: apt-pkg/contrib/configuration.cc:767
  1785. #, c-format
  1786. msgid "Syntax error %s:%u: Too many nested includes"
  1787. msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea"
  1788. #: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776
  1789. #, c-format
  1790. msgid "Syntax error %s:%u: Included from here"
  1791. msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä"
  1792. #: apt-pkg/contrib/configuration.cc:780
  1793. #, c-format
  1794. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1795. msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\""
  1796. #: apt-pkg/contrib/configuration.cc:831
  1797. #, c-format
  1798. msgid "Syntax error %s:%u: Extra junk at end of file"
  1799. msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa"
  1800. #: apt-pkg/contrib/progress.cc:153
  1801. #, c-format
  1802. msgid "%c%s... Error!"
  1803. msgstr "%c%s... Virhe!"
  1804. #: apt-pkg/contrib/progress.cc:155
  1805. #, c-format
  1806. msgid "%c%s... Done"
  1807. msgstr "%c%s... Valmis"
  1808. #: apt-pkg/contrib/cmndline.cc:77
  1809. #, c-format
  1810. msgid "Command line option '%c' [from %s] is not known."
  1811. msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon."
  1812. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1813. #: apt-pkg/contrib/cmndline.cc:119
  1814. #, c-format
  1815. msgid "Command line option %s is not understood"
  1816. msgstr "Komentorivin valitsin %s on tuntematon"
  1817. #: apt-pkg/contrib/cmndline.cc:124
  1818. #, c-format
  1819. msgid "Command line option %s is not boolean"
  1820. msgstr "Komentorivin valitsin %s ei ole totuusarvoinen"
  1821. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1822. #, c-format
  1823. msgid "Option %s requires an argument."
  1824. msgstr "Valitsin %s tarvitsee parametrin"
  1825. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1826. #, c-format
  1827. msgid "Option %s: Configuration item specification must have an =<val>."
  1828. msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>."
  1829. #: apt-pkg/contrib/cmndline.cc:234
  1830. #, c-format
  1831. msgid "Option %s requires an integer argument, not '%s'"
  1832. msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\""
  1833. #: apt-pkg/contrib/cmndline.cc:265
  1834. #, c-format
  1835. msgid "Option '%s' is too long"
  1836. msgstr "Valitsin \"%s\" on liian pitkä"
  1837. #: apt-pkg/contrib/cmndline.cc:298
  1838. #, c-format
  1839. msgid "Sense %s is not understood, try true or false."
  1840. msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi."
  1841. #: apt-pkg/contrib/cmndline.cc:348
  1842. #, c-format
  1843. msgid "Invalid operation %s"
  1844. msgstr "Virheellinen toiminto %s"
  1845. #: apt-pkg/contrib/cdromutl.cc:52
  1846. #, c-format
  1847. msgid "Unable to stat the mount point %s"
  1848. msgstr "Komento stat ei toiminut liitoskohdalle %s"
  1849. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1850. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1851. #, c-format
  1852. msgid "Unable to change to %s"
  1853. msgstr "Kansioon %s vaihto ei onnistu"
  1854. #: apt-pkg/contrib/cdromutl.cc:195
  1855. msgid "Failed to stat the cdrom"
  1856. msgstr "Komento stat ei toiminut rompulle"
  1857. #: apt-pkg/contrib/fileutl.cc:149
  1858. #, c-format
  1859. msgid "Not using locking for read only lock file %s"
  1860. msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s"
  1861. #: apt-pkg/contrib/fileutl.cc:154
  1862. #, c-format
  1863. msgid "Could not open lock file %s"
  1864. msgstr "Lukkotiedostoa %s ei voitu avata"
  1865. #: apt-pkg/contrib/fileutl.cc:172
  1866. #, c-format
  1867. msgid "Not using locking for nfs mounted lock file %s"
  1868. msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s"
  1869. #: apt-pkg/contrib/fileutl.cc:176
  1870. #, c-format
  1871. msgid "Could not get lock %s"
  1872. msgstr "Lukkoa %s ei saada"
  1873. #: apt-pkg/contrib/fileutl.cc:444
  1874. #, c-format
  1875. msgid "Waited for %s but it wasn't there"
  1876. msgstr "Odotettiin %s, mutta sitä ei ollut"
  1877. #: apt-pkg/contrib/fileutl.cc:456
  1878. #, c-format
  1879. msgid "Sub-process %s received a segmentation fault."
  1880. msgstr "Aliprosessi %s aiheutti suojausvirheen."
  1881. #: apt-pkg/contrib/fileutl.cc:458
  1882. #, fuzzy, c-format
  1883. msgid "Sub-process %s received signal %u."
  1884. msgstr "Aliprosessi %s aiheutti suojausvirheen."
  1885. #: apt-pkg/contrib/fileutl.cc:462
  1886. #, c-format
  1887. msgid "Sub-process %s returned an error code (%u)"
  1888. msgstr "Aliprosessi %s palautti virhekoodin (%u)"
  1889. #: apt-pkg/contrib/fileutl.cc:464
  1890. #, c-format
  1891. msgid "Sub-process %s exited unexpectedly"
  1892. msgstr "Aliprosessi %s lopetti odottamatta"
  1893. #: apt-pkg/contrib/fileutl.cc:508
  1894. #, c-format
  1895. msgid "Could not open file %s"
  1896. msgstr "Tiedostoa %s ei voitu avata"
  1897. #: apt-pkg/contrib/fileutl.cc:564
  1898. #, c-format
  1899. msgid "read, still have %lu to read but none left"
  1900. msgstr "read, vielä %lu lukematta mutta tiedosto loppui"
  1901. #: apt-pkg/contrib/fileutl.cc:594
  1902. #, c-format
  1903. msgid "write, still have %lu to write but couldn't"
  1904. msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui"
  1905. #: apt-pkg/contrib/fileutl.cc:669
  1906. msgid "Problem closing the file"
  1907. msgstr "Pulmia tiedoston sulkemisessa"
  1908. #: apt-pkg/contrib/fileutl.cc:675
  1909. msgid "Problem unlinking the file"
  1910. msgstr "Pulmia tehtäessä tiedostolle unlink"
  1911. #: apt-pkg/contrib/fileutl.cc:686
  1912. msgid "Problem syncing the file"
  1913. msgstr "Pulmia tehtäessä tiedostolle sync"
  1914. #: apt-pkg/pkgcache.cc:133
  1915. msgid "Empty package cache"
  1916. msgstr "Pakettivarasto on tyhjä"
  1917. #: apt-pkg/pkgcache.cc:139
  1918. msgid "The package cache file is corrupted"
  1919. msgstr "Pakettivarasto on turmeltunut"
  1920. #: apt-pkg/pkgcache.cc:144
  1921. msgid "The package cache file is an incompatible version"
  1922. msgstr "Pakettivaraston versio on yhteensopimaton"
  1923. #: apt-pkg/pkgcache.cc:149
  1924. #, c-format
  1925. msgid "This APT does not support the versioning system '%s'"
  1926. msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\""
  1927. #: apt-pkg/pkgcache.cc:154
  1928. msgid "The package cache was built for a different architecture"
  1929. msgstr "Pakettivarasto on tehty muulle arkkitehtuurille"
  1930. #: apt-pkg/pkgcache.cc:225
  1931. msgid "Depends"
  1932. msgstr "Riippuvuudet"
  1933. #: apt-pkg/pkgcache.cc:225
  1934. msgid "PreDepends"
  1935. msgstr "Esiriippuvuudet"
  1936. #: apt-pkg/pkgcache.cc:225
  1937. msgid "Suggests"
  1938. msgstr "Ehdotukset"
  1939. #: apt-pkg/pkgcache.cc:226
  1940. msgid "Recommends"
  1941. msgstr "Suosittelut"
  1942. #: apt-pkg/pkgcache.cc:226
  1943. msgid "Conflicts"
  1944. msgstr "Ristiriidat"
  1945. #: apt-pkg/pkgcache.cc:226
  1946. msgid "Replaces"
  1947. msgstr "Korvaavuudet"
  1948. #: apt-pkg/pkgcache.cc:227
  1949. msgid "Obsoletes"
  1950. msgstr "Täydet korvaavuudet"
  1951. #: apt-pkg/pkgcache.cc:227
  1952. msgid "Breaks"
  1953. msgstr "Rikkoo"
  1954. #: apt-pkg/pkgcache.cc:227
  1955. msgid "Enhances"
  1956. msgstr ""
  1957. #: apt-pkg/pkgcache.cc:238
  1958. msgid "important"
  1959. msgstr "tärkeä"
  1960. #: apt-pkg/pkgcache.cc:238
  1961. msgid "required"
  1962. msgstr "välttämätön"
  1963. #: apt-pkg/pkgcache.cc:238
  1964. msgid "standard"
  1965. msgstr "perus"
  1966. #: apt-pkg/pkgcache.cc:239
  1967. msgid "optional"
  1968. msgstr "valinnainen"
  1969. #: apt-pkg/pkgcache.cc:239
  1970. msgid "extra"
  1971. msgstr "ylimääräinen"
  1972. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  1973. msgid "Building dependency tree"
  1974. msgstr "Muodostetaan riippuvuussuhteiden puu"
  1975. #: apt-pkg/depcache.cc:124
  1976. msgid "Candidate versions"
  1977. msgstr "Mahdolliset versiot"
  1978. #: apt-pkg/depcache.cc:153
  1979. msgid "Dependency generation"
  1980. msgstr "Luodaan riippuvuudet"
  1981. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  1982. msgid "Reading state information"
  1983. msgstr "Luetaan tilatiedot"
  1984. #: apt-pkg/depcache.cc:223
  1985. #, c-format
  1986. msgid "Failed to open StateFile %s"
  1987. msgstr "Tilatiedoston %s avaaminen ei onnistunut"
  1988. #: apt-pkg/depcache.cc:229
  1989. #, c-format
  1990. msgid "Failed to write temporary StateFile %s"
  1991. msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut"
  1992. #: apt-pkg/tagfile.cc:102
  1993. #, c-format
  1994. msgid "Unable to parse package file %s (1)"
  1995. msgstr "Pakettitiedostoa %s (1) ei voi jäsentää"
  1996. #: apt-pkg/tagfile.cc:189
  1997. #, c-format
  1998. msgid "Unable to parse package file %s (2)"
  1999. msgstr "Pakettitiedostoa %s (2) ei voi jäsentää"
  2000. #: apt-pkg/sourcelist.cc:90
  2001. #, c-format
  2002. msgid "Malformed line %lu in source list %s (URI)"
  2003. msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)"
  2004. #: apt-pkg/sourcelist.cc:92
  2005. #, c-format
  2006. msgid "Malformed line %lu in source list %s (dist)"
  2007. msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)"
  2008. #: apt-pkg/sourcelist.cc:95
  2009. #, c-format
  2010. msgid "Malformed line %lu in source list %s (URI parse)"
  2011. msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)"
  2012. #: apt-pkg/sourcelist.cc:101
  2013. #, c-format
  2014. msgid "Malformed line %lu in source list %s (absolute dist)"
  2015. msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)"
  2016. #: apt-pkg/sourcelist.cc:108
  2017. #, c-format
  2018. msgid "Malformed line %lu in source list %s (dist parse)"
  2019. msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)"
  2020. #: apt-pkg/sourcelist.cc:206
  2021. #, c-format
  2022. msgid "Opening %s"
  2023. msgstr "Avataan %s"
  2024. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  2025. #, c-format
  2026. msgid "Line %u too long in source list %s."
  2027. msgstr "Rivi %u on liian pitkä lähdeluettelossa %s."
  2028. #: apt-pkg/sourcelist.cc:243
  2029. #, c-format
  2030. msgid "Malformed line %u in source list %s (type)"
  2031. msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)"
  2032. #: apt-pkg/sourcelist.cc:247
  2033. #, c-format
  2034. msgid "Type '%s' is not known on line %u in source list %s"
  2035. msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s"
  2036. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  2037. #, c-format
  2038. msgid "Malformed line %u in source list %s (vendor id)"
  2039. msgstr "Rivi %u on väärän muotoinen lähdeluettelossa%s (toimittajan tunniste)"
  2040. #: apt-pkg/packagemanager.cc:436
  2041. #, c-format
  2042. msgid ""
  2043. "This installation run will require temporarily removing the essential "
  2044. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2045. "you really want to do it, activate the APT::Force-LoopBreak option."
  2046. msgstr ""
  2047. "Tämän asennusajo vaatii tilapäisesti poistettavaksi välttämättömän paketin %"
  2048. "s Conflicts/Pre-Depends -kehämäärittelyn takia. Tämä on usein pahasta, mutta "
  2049. "jos varmasti haluat tehdä niin, käytä APT::Force-LoopBreak -valitsinta."
  2050. #: apt-pkg/pkgrecords.cc:32
  2051. #, c-format
  2052. msgid "Index file type '%s' is not supported"
  2053. msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu"
  2054. #: apt-pkg/algorithms.cc:248
  2055. #, c-format
  2056. msgid ""
  2057. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2058. msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy."
  2059. #: apt-pkg/algorithms.cc:1138
  2060. msgid ""
  2061. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2062. "held packages."
  2063. msgstr ""
  2064. "Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt "
  2065. "paketit."
  2066. #: apt-pkg/algorithms.cc:1140
  2067. msgid "Unable to correct problems, you have held broken packages."
  2068. msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty."
  2069. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2070. msgid ""
  2071. "Some index files failed to download, they have been ignored, or old ones "
  2072. "used instead."
  2073. msgstr ""
  2074. "Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai "
  2075. "käytetty vanhoja. "
  2076. #: apt-pkg/acquire.cc:60
  2077. #, c-format
  2078. msgid "Lists directory %spartial is missing."
  2079. msgstr "Luettelokansio %spartial puuttuu."
  2080. #: apt-pkg/acquire.cc:64
  2081. #, c-format
  2082. msgid "Archive directory %spartial is missing."
  2083. msgstr "Arkistokansio %spartial puuttuu."
  2084. #. only show the ETA if it makes sense
  2085. #. two days
  2086. #: apt-pkg/acquire.cc:826
  2087. #, c-format
  2088. msgid "Retrieving file %li of %li (%s remaining)"
  2089. msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)"
  2090. #: apt-pkg/acquire.cc:828
  2091. #, c-format
  2092. msgid "Retrieving file %li of %li"
  2093. msgstr "Noudetaan tiedosto %li / %li"
  2094. #: apt-pkg/acquire-worker.cc:110
  2095. #, c-format
  2096. msgid "The method driver %s could not be found."
  2097. msgstr "Menetelmän ajuria %s ei löytynyt"
  2098. #: apt-pkg/acquire-worker.cc:159
  2099. #, c-format
  2100. msgid "Method %s did not start correctly"
  2101. msgstr "Menetelmä %s ei käynnistynyt oikein"
  2102. #: apt-pkg/acquire-worker.cc:413
  2103. #, c-format
  2104. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2105. msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter."
  2106. #: apt-pkg/init.cc:132
  2107. #, c-format
  2108. msgid "Packaging system '%s' is not supported"
  2109. msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu"
  2110. #: apt-pkg/init.cc:148
  2111. msgid "Unable to determine a suitable packaging system type"
  2112. msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä"
  2113. #: apt-pkg/clean.cc:56
  2114. #, c-format
  2115. msgid "Unable to stat %s."
  2116. msgstr "stat %s ei onnistu."
  2117. #: apt-pkg/srcrecords.cc:44
  2118. msgid "You must put some 'source' URIs in your sources.list"
  2119. msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI"
  2120. #: apt-pkg/cachefile.cc:71
  2121. msgid "The package lists or status file could not be parsed or opened."
  2122. msgstr ""
  2123. "Pakettiluettelonn tai tilatiedoston avaaminen tai jäsennys epäonnistui."
  2124. #: apt-pkg/cachefile.cc:75
  2125. msgid "You may want to run apt-get update to correct these problems"
  2126. msgstr "Voit haluta suorittaa apt-get update näiden pulmien korjaamiseksi"
  2127. #: apt-pkg/policy.cc:347
  2128. #, fuzzy, c-format
  2129. msgid "Invalid record in the preferences file %s, no Package header"
  2130. msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu"
  2131. #: apt-pkg/policy.cc:369
  2132. #, c-format
  2133. msgid "Did not understand pin type %s"
  2134. msgstr "Tunnistetyyppi %s on tuntematon"
  2135. #: apt-pkg/policy.cc:377
  2136. msgid "No priority (or zero) specified for pin"
  2137. msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)"
  2138. #: apt-pkg/pkgcachegen.cc:74
  2139. msgid "Cache has an incompatible versioning system"
  2140. msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva"
  2141. #: apt-pkg/pkgcachegen.cc:117
  2142. #, c-format
  2143. msgid "Error occurred while processing %s (NewPackage)"
  2144. msgstr "Tapahtui virhe käsiteltäessä %s (NewPackage)"
  2145. #: apt-pkg/pkgcachegen.cc:132
  2146. #, c-format
  2147. msgid "Error occurred while processing %s (UsePackage1)"
  2148. msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage1)"
  2149. #: apt-pkg/pkgcachegen.cc:166
  2150. #, c-format
  2151. msgid "Error occurred while processing %s (NewFileDesc1)"
  2152. msgstr "Tapahtui virhe käsiteltäessä %s (NewFileDesc1)"
  2153. #: apt-pkg/pkgcachegen.cc:191
  2154. #, c-format
  2155. msgid "Error occurred while processing %s (UsePackage2)"
  2156. msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage2)"
  2157. #: apt-pkg/pkgcachegen.cc:195
  2158. #, c-format
  2159. msgid "Error occurred while processing %s (NewFileVer1)"
  2160. msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
  2161. #: apt-pkg/pkgcachegen.cc:226
  2162. #, c-format
  2163. msgid "Error occurred while processing %s (NewVersion1)"
  2164. msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion1)"
  2165. #: apt-pkg/pkgcachegen.cc:230
  2166. #, c-format
  2167. msgid "Error occurred while processing %s (UsePackage3)"
  2168. msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage3)"
  2169. #: apt-pkg/pkgcachegen.cc:234
  2170. #, c-format
  2171. msgid "Error occurred while processing %s (NewVersion2)"
  2172. msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion2)"
  2173. #: apt-pkg/pkgcachegen.cc:258
  2174. #, c-format
  2175. msgid "Error occurred while processing %s (NewFileDesc2)"
  2176. msgstr "Tapahtui virhe käsiteltäessä %s (NewFileDesc2)"
  2177. #: apt-pkg/pkgcachegen.cc:264
  2178. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2179. msgstr ""
  2180. "Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä."
  2181. #: apt-pkg/pkgcachegen.cc:267
  2182. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2183. msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä."
  2184. #: apt-pkg/pkgcachegen.cc:270
  2185. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2186. msgstr "Jummijammi, tämä APT ei osaa käsitellä noin montaa kuvausta."
  2187. #: apt-pkg/pkgcachegen.cc:273
  2188. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2189. msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitellä."
  2190. #: apt-pkg/pkgcachegen.cc:301
  2191. #, c-format
  2192. msgid "Error occurred while processing %s (FindPkg)"
  2193. msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)"
  2194. #: apt-pkg/pkgcachegen.cc:314
  2195. #, c-format
  2196. msgid "Error occurred while processing %s (CollectFileProvides)"
  2197. msgstr "Tapahtui virhe käsiteltäessä %s (CollectFileProvides)"
  2198. #: apt-pkg/pkgcachegen.cc:320
  2199. #, c-format
  2200. msgid "Package %s %s was not found while processing file dependencies"
  2201. msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia."
  2202. #: apt-pkg/pkgcachegen.cc:693
  2203. #, c-format
  2204. msgid "Couldn't stat source package list %s"
  2205. msgstr "stat ei toiminut lähdepakettiluettelolle %s"
  2206. #: apt-pkg/pkgcachegen.cc:778
  2207. msgid "Collecting File Provides"
  2208. msgstr "Kootaan tiedostojen tarjoamistietoja"
  2209. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2210. msgid "IO Error saving source cache"
  2211. msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa"
  2212. #: apt-pkg/acquire-item.cc:128
  2213. #, c-format
  2214. msgid "rename failed, %s (%s -> %s)."
  2215. msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)."
  2216. #: apt-pkg/acquire-item.cc:395
  2217. msgid "MD5Sum mismatch"
  2218. msgstr "MD5Sum ei täsmää"
  2219. #: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411
  2220. msgid "Hash Sum mismatch"
  2221. msgstr "Hash Sum täsmää"
  2222. #: apt-pkg/acquire-item.cc:1106
  2223. msgid "There is no public key available for the following key IDs:\n"
  2224. msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n"
  2225. #: apt-pkg/acquire-item.cc:1216
  2226. #, c-format
  2227. msgid ""
  2228. "I wasn't able to locate a file for the %s package. This might mean you need "
  2229. "to manually fix this package. (due to missing arch)"
  2230. msgstr ""
  2231. "En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan "
  2232. "tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)"
  2233. #: apt-pkg/acquire-item.cc:1275
  2234. #, c-format
  2235. msgid ""
  2236. "I wasn't able to locate file for the %s package. This might mean you need to "
  2237. "manually fix this package."
  2238. msgstr ""
  2239. "Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan "
  2240. "tämän paketin itse."
  2241. #: apt-pkg/acquire-item.cc:1316
  2242. #, c-format
  2243. msgid ""
  2244. "The package index files are corrupted. No Filename: field for package %s."
  2245. msgstr ""
  2246. "Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-"
  2247. "kenttää."
  2248. #: apt-pkg/acquire-item.cc:1403
  2249. msgid "Size mismatch"
  2250. msgstr "Koko ei täsmää"
  2251. #: apt-pkg/indexrecords.cc:40
  2252. #, fuzzy, c-format
  2253. msgid "Unable to parse Release file %s"
  2254. msgstr "Pakettitiedostoa %s (1) ei voi jäsentää"
  2255. #: apt-pkg/indexrecords.cc:47
  2256. #, fuzzy, c-format
  2257. msgid "No sections in Release file %s"
  2258. msgstr "Huomautus, valitaan %s eikä %s\n"
  2259. #: apt-pkg/indexrecords.cc:81
  2260. #, c-format
  2261. msgid "No Hash entry in Release file %s"
  2262. msgstr ""
  2263. #: apt-pkg/vendorlist.cc:66
  2264. #, c-format
  2265. msgid "Vendor block %s contains no fingerprint"
  2266. msgstr "Toimittajan lohkosta %s puuttuu sormenjälki"
  2267. #: apt-pkg/cdrom.cc:525
  2268. #, c-format
  2269. msgid ""
  2270. "Using CD-ROM mount point %s\n"
  2271. "Mounting CD-ROM\n"
  2272. msgstr ""
  2273. "Käytetään rompun liitoskohtaa %s\n"
  2274. "Liitetään romppu\n"
  2275. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2276. msgid "Identifying.. "
  2277. msgstr "Tunnistetaan... "
  2278. #: apt-pkg/cdrom.cc:559
  2279. #, c-format
  2280. msgid "Stored label: %s\n"
  2281. msgstr "Tallennettu nimio: %s \n"
  2282. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2283. msgid "Unmounting CD-ROM...\n"
  2284. msgstr "Irrotetaan romppu...\n"
  2285. #: apt-pkg/cdrom.cc:585
  2286. #, c-format
  2287. msgid "Using CD-ROM mount point %s\n"
  2288. msgstr "Käytetään rompun liitoskohtaa %s\n"
  2289. #: apt-pkg/cdrom.cc:603
  2290. msgid "Unmounting CD-ROM\n"
  2291. msgstr "Irrotetaan romppu\n"
  2292. #: apt-pkg/cdrom.cc:607
  2293. msgid "Waiting for disc...\n"
  2294. msgstr "Odotetaan levyä...\n"
  2295. #. Mount the new CDROM
  2296. #: apt-pkg/cdrom.cc:615
  2297. msgid "Mounting CD-ROM...\n"
  2298. msgstr "Liitetään romppu...\n"
  2299. #: apt-pkg/cdrom.cc:633
  2300. msgid "Scanning disc for index files..\n"
  2301. msgstr "Etsitään levyltä hakemistotiedostoja...\n"
  2302. #: apt-pkg/cdrom.cc:673
  2303. #, c-format
  2304. msgid ""
  2305. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2306. "zu signatures\n"
  2307. msgstr ""
  2308. "Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, "
  2309. "käännösten %zu ja allekirjoituksia löytyi %zu\n"
  2310. #: apt-pkg/cdrom.cc:684
  2311. msgid ""
  2312. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2313. "wrong architecture?"
  2314. msgstr ""
  2315. #: apt-pkg/cdrom.cc:710
  2316. #, c-format
  2317. msgid "Found label '%s'\n"
  2318. msgstr "Löytyi nimiö: \"%s\"\n"
  2319. #: apt-pkg/cdrom.cc:739
  2320. msgid "That is not a valid name, try again.\n"
  2321. msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n"
  2322. #: apt-pkg/cdrom.cc:755
  2323. #, c-format
  2324. msgid ""
  2325. "This disc is called: \n"
  2326. "'%s'\n"
  2327. msgstr ""
  2328. "Tämä levy on: \n"
  2329. "\"%s\"\n"
  2330. #: apt-pkg/cdrom.cc:759
  2331. msgid "Copying package lists..."
  2332. msgstr "Kopioidaan pakettiluetteloita..."
  2333. #: apt-pkg/cdrom.cc:785
  2334. msgid "Writing new source list\n"
  2335. msgstr "Kirjoitetaan uusi lähdeluettelo\n"
  2336. #: apt-pkg/cdrom.cc:794
  2337. msgid "Source list entries for this disc are:\n"
  2338. msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n"
  2339. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2340. #, c-format
  2341. msgid "Wrote %i records.\n"
  2342. msgstr "Kirjoitettiin %i tietuetta.\n"
  2343. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2344. #, c-format
  2345. msgid "Wrote %i records with %i missing files.\n"
  2346. msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n"
  2347. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2348. #, c-format
  2349. msgid "Wrote %i records with %i mismatched files\n"
  2350. msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n"
  2351. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2352. #, c-format
  2353. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2354. msgstr ""
  2355. "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta "
  2356. "tiedostoa\n"
  2357. #: apt-pkg/deb/dpkgpm.cc:49
  2358. #, c-format
  2359. msgid "Installing %s"
  2360. msgstr "Asennetaan %s"
  2361. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660
  2362. #, c-format
  2363. msgid "Configuring %s"
  2364. msgstr "Tehdään asetukset: %s"
  2365. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667
  2366. #, c-format
  2367. msgid "Removing %s"
  2368. msgstr "Poistetaan %s"
  2369. #: apt-pkg/deb/dpkgpm.cc:52
  2370. #, c-format
  2371. msgid "Running post-installation trigger %s"
  2372. msgstr "Suoritetaan jälkiasennusliipaisin %s"
  2373. #: apt-pkg/deb/dpkgpm.cc:557
  2374. #, c-format
  2375. msgid "Directory '%s' missing"
  2376. msgstr "Kansio \"%s\" puuttuu."
  2377. #: apt-pkg/deb/dpkgpm.cc:653
  2378. #, c-format
  2379. msgid "Preparing %s"
  2380. msgstr "Valmistellaan %s"
  2381. #: apt-pkg/deb/dpkgpm.cc:654
  2382. #, c-format
  2383. msgid "Unpacking %s"
  2384. msgstr "Puretaan %s"
  2385. #: apt-pkg/deb/dpkgpm.cc:659
  2386. #, c-format
  2387. msgid "Preparing to configure %s"
  2388. msgstr "Valmistaudutaan tekemään asetukset: %s"
  2389. #: apt-pkg/deb/dpkgpm.cc:661
  2390. #, c-format
  2391. msgid "Installed %s"
  2392. msgstr "%s asennettu"
  2393. #: apt-pkg/deb/dpkgpm.cc:666
  2394. #, c-format
  2395. msgid "Preparing for removal of %s"
  2396. msgstr "Valmistaudutaan poistamaan %s"
  2397. #: apt-pkg/deb/dpkgpm.cc:668
  2398. #, c-format
  2399. msgid "Removed %s"
  2400. msgstr "%s poistettu"
  2401. #: apt-pkg/deb/dpkgpm.cc:673
  2402. #, c-format
  2403. msgid "Preparing to completely remove %s"
  2404. msgstr "Valmistaudutaan poistamaan %s kokonaan"
  2405. #: apt-pkg/deb/dpkgpm.cc:674
  2406. #, c-format
  2407. msgid "Completely removed %s"
  2408. msgstr "%s poistettiin kokonaan"
  2409. #: apt-pkg/deb/dpkgpm.cc:878
  2410. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2411. msgstr ""
  2412. "Lokiin ei voi kirjoittaa, openpty() epäonnistui (onko /dev/pts "
  2413. "liittämättä?)\n"
  2414. #: apt-pkg/deb/dpkgpm.cc:907
  2415. msgid "Running dpkg"
  2416. msgstr ""
  2417. #: apt-pkg/deb/debsystem.cc:70
  2418. #, c-format
  2419. msgid ""
  2420. "Unable to lock the administration directory (%s), is another process using "
  2421. "it?"
  2422. msgstr ""
  2423. #: apt-pkg/deb/debsystem.cc:73
  2424. #, fuzzy, c-format
  2425. msgid "Unable to lock the administration directory (%s), are you root?"
  2426. msgstr "Luettelokansiota ei voitu lukita"
  2427. #: apt-pkg/deb/debsystem.cc:82
  2428. msgid ""
  2429. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2430. "the problem. "
  2431. msgstr ""
  2432. #: apt-pkg/deb/debsystem.cc:100
  2433. msgid "Not locked"
  2434. msgstr ""
  2435. #: methods/rred.cc:219
  2436. msgid "Could not patch file"
  2437. msgstr "Tiedostoa %s ei voitu avata"
  2438. #: methods/rsh.cc:330
  2439. msgid "Connection closed prematurely"
  2440. msgstr "Yhteys katkesi ennenaikaisesti"
  2441. #~ msgid "%4i %s\n"
  2442. #~ msgstr "%4i %s\n"
  2443. #~ msgid "Processing triggers for %s"
  2444. #~ msgstr "Käsitellään %s:n liipaisimia"
  2445. #~ msgid "Dynamic MMap ran out of room"
  2446. #~ msgstr "Tila loppui kesken dynaamiselta MMap:lta"