fi.po 74 KB

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