fi.po 97 KB

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