fi.po 101 KB

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