fi.po 119 KB

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