fi.po 91 KB

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