fi.po 114 KB

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