messages.po 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. # Finnish translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Jiri Grönroos <jiri.gronroos@iki.fi>, 2017
  7. # Markus Heiser <markus.heiser@darmarit.de>, 2022, 2023.
  8. # Mico Hautaluoma <m@mha.fi>, 2022.
  9. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  10. # artnay <jiri.gronroos@iki.fi>, 2023.
  11. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  12. # Implosion <Implosion@users.noreply.translate.codeberg.org>, 2024.
  13. # artnay <artnay@users.noreply.translate.codeberg.org>, 2024, 2025.
  14. # jonkke9 <jonkke9@users.noreply.translate.codeberg.org>, 2024, 2025.
  15. # Ricky-Tigg <Ricky-Tigg@users.noreply.translate.codeberg.org>, 2024.
  16. # Implosion <implosion@users.noreply.translate.codeberg.org>, 2025.
  17. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  18. # Ricky-Tigg <ricky-tigg@users.noreply.translate.codeberg.org>, 2025.
  19. msgid ""
  20. msgstr ""
  21. "Project-Id-Version: searx\n"
  22. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  23. "POT-Creation-Date: 2025-01-06 16:04+0000\n"
  24. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  25. "Last-Translator: jonkke9 <jonkke9@users.noreply.translate.codeberg.org>\n"
  26. "Language: fi\n"
  27. "Language-Team: Finnish "
  28. "<https://translate.codeberg.org/projects/searxng/searxng/fi/>\n"
  29. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  30. "MIME-Version: 1.0\n"
  31. "Content-Type: text/plain; charset=utf-8\n"
  32. "Content-Transfer-Encoding: 8bit\n"
  33. "Generated-By: Babel 2.16.0\n"
  34. #. CONSTANT_NAMES['NO_SUBGROUPING']
  35. #: searx/searxng.msg
  36. msgid "without further subgrouping"
  37. msgstr "Ilman lisäryhmitystä"
  38. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  39. #: searx/searxng.msg
  40. msgid "other"
  41. msgstr "muut"
  42. #. CATEGORY_NAMES['FILES']
  43. #: searx/searxng.msg
  44. msgid "files"
  45. msgstr "tiedostot"
  46. #. CATEGORY_NAMES['GENERAL']
  47. #: searx/searxng.msg
  48. msgid "general"
  49. msgstr "yleiset"
  50. #. CATEGORY_NAMES['MUSIC']
  51. #: searx/searxng.msg
  52. msgid "music"
  53. msgstr "musiikki"
  54. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  55. #: searx/searxng.msg
  56. msgid "social media"
  57. msgstr "sosiaalinen media"
  58. #. CATEGORY_NAMES['IMAGES']
  59. #: searx/searxng.msg
  60. msgid "images"
  61. msgstr "kuvat"
  62. #. CATEGORY_NAMES['VIDEOS']
  63. #: searx/searxng.msg
  64. msgid "videos"
  65. msgstr "videot"
  66. #. CATEGORY_NAMES['RADIO']
  67. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  68. msgid "radio"
  69. msgstr "radio"
  70. #. CATEGORY_NAMES['TV']
  71. #: searx/searxng.msg
  72. msgid "tv"
  73. msgstr "tv"
  74. #. CATEGORY_NAMES['IT']
  75. #: searx/searxng.msg
  76. msgid "it"
  77. msgstr "it"
  78. #. CATEGORY_NAMES['NEWS']
  79. #: searx/searxng.msg
  80. msgid "news"
  81. msgstr "uutiset"
  82. #. CATEGORY_NAMES['MAP']
  83. #: searx/searxng.msg
  84. msgid "map"
  85. msgstr "kartta"
  86. #. CATEGORY_NAMES['ONIONS']
  87. #: searx/searxng.msg
  88. msgid "onions"
  89. msgstr "onion-linkit"
  90. #. CATEGORY_NAMES['SCIENCE']
  91. #: searx/searxng.msg
  92. msgid "science"
  93. msgstr "tiede"
  94. #. CATEGORY_NAMES['DUMMY']
  95. #: searx/searxng.msg
  96. msgid "dummy"
  97. msgstr ""
  98. #. CATEGORY_GROUPS['APPS']
  99. #: searx/searxng.msg
  100. msgid "apps"
  101. msgstr "sovellukset"
  102. #. CATEGORY_GROUPS['DICTIONARIES']
  103. #: searx/searxng.msg
  104. msgid "dictionaries"
  105. msgstr "sanakirjat"
  106. #. CATEGORY_GROUPS['LYRICS']
  107. #: searx/searxng.msg
  108. msgid "lyrics"
  109. msgstr "lyriikat"
  110. #. CATEGORY_GROUPS['PACKAGES']
  111. #: searx/searxng.msg
  112. msgid "packages"
  113. msgstr "paketit"
  114. #. CATEGORY_GROUPS['Q_A']
  115. #: searx/searxng.msg
  116. msgid "q&a"
  117. msgstr "q&a"
  118. #. CATEGORY_GROUPS['REPOS']
  119. #: searx/searxng.msg
  120. msgid "repos"
  121. msgstr "repot"
  122. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  123. #: searx/searxng.msg
  124. msgid "software wikis"
  125. msgstr "ohjelmistowikit"
  126. #. CATEGORY_GROUPS['WEB']
  127. #: searx/searxng.msg
  128. msgid "web"
  129. msgstr "web"
  130. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  131. #: searx/searxng.msg
  132. msgid "scientific publications"
  133. msgstr "Tieteelliset Julkaisut"
  134. #. STYLE_NAMES['AUTO']
  135. #: searx/searxng.msg
  136. msgid "auto"
  137. msgstr "automaattinen"
  138. #. STYLE_NAMES['LIGHT']
  139. #: searx/searxng.msg
  140. msgid "light"
  141. msgstr "vaalea"
  142. #. STYLE_NAMES['DARK']
  143. #: searx/searxng.msg
  144. msgid "dark"
  145. msgstr "tumma"
  146. #. STYLE_NAMES['BLACK']
  147. #: searx/searxng.msg
  148. msgid "black"
  149. msgstr "musta"
  150. #. BRAND_CUSTOM_LINKS['UPTIME']
  151. #: searx/searxng.msg
  152. msgid "Uptime"
  153. msgstr "Käytettävyysaika"
  154. #. BRAND_CUSTOM_LINKS['ABOUT']
  155. #: searx/searxng.msg searx/templates/simple/base.html:50
  156. msgid "About"
  157. msgstr "Tietoa SearXNG:stä"
  158. #. WEATHER_TERMS['AVERAGE TEMP.']
  159. #: searx/engines/wttr.py:32 searx/searxng.msg
  160. msgid "Average temp."
  161. msgstr "Keskilämpötila."
  162. #. WEATHER_TERMS['CLOUD COVER']
  163. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  164. msgid "Cloud cover"
  165. msgstr "Pilvipeite"
  166. #. WEATHER_TERMS['CONDITION']
  167. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  168. #: searx/searxng.msg
  169. msgid "Condition"
  170. msgstr "Tilanne"
  171. #. WEATHER_TERMS['CURRENT CONDITION']
  172. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  173. #: searx/searxng.msg
  174. msgid "Current condition"
  175. msgstr "Tämän hetkinen tilanne"
  176. #. WEATHER_TERMS['EVENING']
  177. #: searx/engines/wttr.py:100 searx/searxng.msg
  178. msgid "Evening"
  179. msgstr "Ilta"
  180. #. WEATHER_TERMS['FEELS LIKE']
  181. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  182. #: searx/engines/wttr.py:59 searx/searxng.msg
  183. msgid "Feels like"
  184. msgstr "Tuntuu kuin"
  185. #. WEATHER_TERMS['HUMIDITY']
  186. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  187. #: searx/engines/wttr.py:68 searx/searxng.msg
  188. msgid "Humidity"
  189. msgstr "Kosteus"
  190. #. WEATHER_TERMS['MAX TEMP.']
  191. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  192. #: searx/searxng.msg
  193. msgid "Max temp."
  194. msgstr "Maksimi lämpötila."
  195. #. WEATHER_TERMS['MIN TEMP.']
  196. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  197. #: searx/searxng.msg
  198. msgid "Min temp."
  199. msgstr "Minimi lämpötila."
  200. #. WEATHER_TERMS['MORNING']
  201. #: searx/engines/wttr.py:100 searx/searxng.msg
  202. msgid "Morning"
  203. msgstr "Aamu"
  204. #. WEATHER_TERMS['NIGHT']
  205. #: searx/engines/wttr.py:100 searx/searxng.msg
  206. msgid "Night"
  207. msgstr "Yö"
  208. #. WEATHER_TERMS['NOON']
  209. #: searx/engines/wttr.py:100 searx/searxng.msg
  210. msgid "Noon"
  211. msgstr "Päivä"
  212. #. WEATHER_TERMS['PRESSURE']
  213. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  214. msgid "Pressure"
  215. msgstr "Ilmanpaine"
  216. #. WEATHER_TERMS['SUNRISE']
  217. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  218. #: searx/searxng.msg
  219. msgid "Sunrise"
  220. msgstr "Auringonnousu"
  221. #. WEATHER_TERMS['SUNSET']
  222. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  223. #: searx/searxng.msg
  224. msgid "Sunset"
  225. msgstr "Auringonlasku"
  226. #. WEATHER_TERMS['TEMPERATURE']
  227. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  228. #: searx/engines/wttr.py:55 searx/searxng.msg
  229. msgid "Temperature"
  230. msgstr "Lämpötila"
  231. #. WEATHER_TERMS['UV INDEX']
  232. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  233. #: searx/searxng.msg
  234. msgid "UV index"
  235. msgstr "UV indeksi"
  236. #. WEATHER_TERMS['VISIBILITY']
  237. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  238. #: searx/searxng.msg
  239. msgid "Visibility"
  240. msgstr "Näkyvyys"
  241. #. WEATHER_TERMS['WIND']
  242. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  243. #: searx/engines/wttr.py:62 searx/searxng.msg
  244. msgid "Wind"
  245. msgstr "Tuuli"
  246. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  247. #: searx/engines/lemmy.py:85 searx/searxng.msg
  248. msgid "subscribers"
  249. msgstr "tilaajat"
  250. #. SOCIAL_MEDIA_TERMS['POSTS']
  251. #: searx/engines/lemmy.py:86 searx/searxng.msg
  252. msgid "posts"
  253. msgstr "postaukset"
  254. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  255. #: searx/engines/lemmy.py:87 searx/searxng.msg
  256. msgid "active users"
  257. msgstr "aktiiviset käyttäjät"
  258. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  259. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  260. #: searx/engines/lemmy.py:130 searx/searxng.msg
  261. msgid "comments"
  262. msgstr "kommentit"
  263. #. SOCIAL_MEDIA_TERMS['USER']
  264. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  265. msgid "user"
  266. msgstr "käyttäjä"
  267. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  268. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  269. msgid "community"
  270. msgstr "yhteisö"
  271. #. SOCIAL_MEDIA_TERMS['POINTS']
  272. #: searx/engines/hackernews.py:82 searx/searxng.msg
  273. msgid "points"
  274. msgstr "pisteet"
  275. #. SOCIAL_MEDIA_TERMS['TITLE']
  276. #: searx/searxng.msg
  277. msgid "title"
  278. msgstr "Otsikko"
  279. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  280. #: searx/engines/hackernews.py:85 searx/searxng.msg
  281. msgid "author"
  282. msgstr "tekijä"
  283. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  284. #: searx/engines/discourse.py:149 searx/searxng.msg
  285. msgid "open"
  286. msgstr "Avaa"
  287. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  288. #: searx/engines/discourse.py:149 searx/searxng.msg
  289. msgid "closed"
  290. msgstr "suljettu"
  291. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  292. #: searx/engines/discourse.py:160 searx/searxng.msg
  293. msgid "answered"
  294. msgstr "vastattu"
  295. #: searx/webapp.py:323
  296. msgid "No item found"
  297. msgstr "Tietuetta ei löytynyt"
  298. #: searx/engines/qwant.py:288
  299. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  300. msgid "Source"
  301. msgstr "Lähde"
  302. #: searx/webapp.py:327
  303. msgid "Error loading the next page"
  304. msgstr "Virhe ladattaessa seuraavaa sivua"
  305. #: searx/webapp.py:492 searx/webapp.py:900
  306. msgid "Invalid settings, please edit your preferences"
  307. msgstr "Virheelliset asetukset, muokkaa siis asetuksia"
  308. #: searx/webapp.py:508
  309. msgid "Invalid settings"
  310. msgstr "Virheelliset asetukset"
  311. #: searx/webapp.py:585 searx/webapp.py:675
  312. msgid "search error"
  313. msgstr "hakuvirhe"
  314. #: searx/webutils.py:36
  315. msgid "timeout"
  316. msgstr "aikakatkaistu"
  317. #: searx/webutils.py:37
  318. msgid "parsing error"
  319. msgstr "jäsentämisvirhe"
  320. #: searx/webutils.py:38
  321. msgid "HTTP protocol error"
  322. msgstr "HTTP-protokollavirhe"
  323. #: searx/webutils.py:39
  324. msgid "network error"
  325. msgstr "verkkovirhe"
  326. #: searx/webutils.py:40
  327. msgid "SSL error: certificate validation has failed"
  328. msgstr "SSL-virhe: sertifikaatin vahvistus epäonnistui"
  329. #: searx/webutils.py:42
  330. msgid "unexpected crash"
  331. msgstr "odottamaton kaatuminen"
  332. #: searx/webutils.py:49
  333. msgid "HTTP error"
  334. msgstr "HTTP-virhe"
  335. #: searx/webutils.py:50
  336. msgid "HTTP connection error"
  337. msgstr "HTTP-yhteysvirhe"
  338. #: searx/webutils.py:56
  339. msgid "proxy error"
  340. msgstr "proxy-virhe"
  341. #: searx/webutils.py:57
  342. msgid "CAPTCHA"
  343. msgstr "CAPTCHA"
  344. #: searx/webutils.py:58
  345. msgid "too many requests"
  346. msgstr "liian monta pyyntöä"
  347. #: searx/webutils.py:59
  348. msgid "access denied"
  349. msgstr "pääsy kielletty"
  350. #: searx/webutils.py:60
  351. msgid "server API error"
  352. msgstr "palvelimen API-virhe"
  353. #: searx/webutils.py:79
  354. msgid "Suspended"
  355. msgstr "Keskeytetty"
  356. #: searx/webutils.py:314
  357. msgid "{minutes} minute(s) ago"
  358. msgstr "{minutes} minuutti(a) sitten"
  359. #: searx/webutils.py:315
  360. msgid "{hours} hour(s), {minutes} minute(s) ago"
  361. msgstr "{hours} tunti(a), {minutes} minuutti(a) sitten"
  362. #: searx/answerers/random/answerer.py:76
  363. msgid "Random value generator"
  364. msgstr "Satunnaisluvun generaattori"
  365. #: searx/answerers/random/answerer.py:77
  366. msgid "Generate different random values"
  367. msgstr "Generoi satunnaislukuja"
  368. #: searx/answerers/statistics/answerer.py:50
  369. msgid "Statistics functions"
  370. msgstr "Tilastolliset funktiot"
  371. #: searx/answerers/statistics/answerer.py:51
  372. msgid "Compute {functions} of the arguments"
  373. msgstr "Laske argumenttien {functions}"
  374. #: searx/engines/mozhi.py:57
  375. msgid "Synonyms"
  376. msgstr "Synonyymit"
  377. #: searx/engines/openstreetmap.py:159
  378. msgid "Get directions"
  379. msgstr "Reittiohjeet"
  380. #: searx/engines/pdbe.py:96
  381. msgid "{title} (OBSOLETE)"
  382. msgstr "{title} (VANHENTUNUT)"
  383. #: searx/engines/pdbe.py:103
  384. msgid "This entry has been superseded by"
  385. msgstr "Tämän kohdan on korvannut"
  386. #: searx/engines/qwant.py:290
  387. msgid "Channel"
  388. msgstr "Kanava"
  389. #: searx/engines/radio_browser.py:105
  390. msgid "bitrate"
  391. msgstr "bittinopeus"
  392. #: searx/engines/radio_browser.py:106
  393. msgid "votes"
  394. msgstr "ääntä"
  395. #: searx/engines/radio_browser.py:107
  396. msgid "clicks"
  397. msgstr "klikkaukset"
  398. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  399. #: searx/engines/zlibrary.py:137
  400. msgid "Language"
  401. msgstr "Kieli"
  402. #: searx/engines/semantic_scholar.py:78
  403. msgid ""
  404. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  405. "{lastCitationVelocityYear}"
  406. msgstr ""
  407. "{numCitations} Sitaatit vuodesta {firstCitationVelocityYear} vuoteen "
  408. "{lastCitationVelocityYear}"
  409. #: searx/engines/tineye.py:45
  410. msgid ""
  411. "Could not read that image url. This may be due to an unsupported file "
  412. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  413. " WebP."
  414. msgstr ""
  415. "Kuvan url-osoitetta ei voitu lukea. Tämä saattaa johtua tiedostomuodosta,"
  416. " jota ei tueta. TinEye tukee vain kuvia, jotka ovat JPEG, PNG, GIF, BMP, "
  417. "TIFF tai WebP."
  418. #: searx/engines/tineye.py:51
  419. msgid ""
  420. "The image is too simple to find matches. TinEye requires a basic level of"
  421. " visual detail to successfully identify matches."
  422. msgstr ""
  423. "Kuva on liian yksinkertainen löytääkseen osumia. TinEye vaatii "
  424. "visuaalisen tarkkuuden perustason, jotta osumien tunnistaminen onnistuu."
  425. #: searx/engines/tineye.py:57
  426. msgid "The image could not be downloaded."
  427. msgstr "Tätä kuvaa ei voida ladata."
  428. #: searx/engines/zlibrary.py:138
  429. msgid "Book rating"
  430. msgstr "Kirjan arvostelu"
  431. #: searx/engines/zlibrary.py:139
  432. msgid "File quality"
  433. msgstr "Tiedoston laatu"
  434. #: searx/plugins/calculator.py:18
  435. msgid "Calculate mathematical expressions via the search bar"
  436. msgstr "Laske matemaattisia lausekkeita hakupalkissa"
  437. #: searx/plugins/hash_plugin.py:10
  438. msgid "Converts strings to different hash digests."
  439. msgstr "Muuntaa merkkijonot erilaisiksi hash-digesteiksi."
  440. #: searx/plugins/hash_plugin.py:38
  441. msgid "hash digest"
  442. msgstr "hash-digest"
  443. #: searx/plugins/hostnames.py:103
  444. msgid "Hostnames plugin"
  445. msgstr "Isäntänimien laajennus"
  446. #: searx/plugins/hostnames.py:104
  447. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  448. msgstr ""
  449. "Kirjoita isäntänimiä uudelleen, poista tuloksia tai priorisoi ne "
  450. "isäntänimen perusteella"
  451. #: searx/plugins/oa_doi_rewrite.py:12
  452. msgid "Open Access DOI rewrite"
  453. msgstr "Open Access DOI -uudelleenkirjoitus"
  454. #: searx/plugins/oa_doi_rewrite.py:13
  455. msgid ""
  456. "Avoid paywalls by redirecting to open-access versions of publications "
  457. "when available"
  458. msgstr ""
  459. "Vältä maksumuureja ohjaamalla julkaisujen avoimiin versioihin jos "
  460. "mahdollista"
  461. #: searx/plugins/self_info.py:9
  462. msgid "Self Information"
  463. msgstr "Tietojasi"
  464. #: searx/plugins/self_info.py:10
  465. msgid ""
  466. "Displays your IP if the query is \"ip\" and your user agent if the query "
  467. "contains \"user agent\"."
  468. msgstr ""
  469. "Näyttää IP-osoitteesi jos hakuehtosi on \"ip\" ja selaimen tunnistetiedot"
  470. " jos hakuehtosi sisältää sanat \"user agent\"."
  471. #: searx/plugins/self_info.py:28
  472. msgid "Your IP is: "
  473. msgstr "IP-osoitteesi: "
  474. #: searx/plugins/self_info.py:31
  475. msgid "Your user-agent is: "
  476. msgstr "Selaimesi tunnistetiedot: "
  477. #: searx/plugins/tor_check.py:24
  478. msgid "Tor check plugin"
  479. msgstr "Tor-verkon tarkistus lisäosa"
  480. #: searx/plugins/tor_check.py:27
  481. msgid ""
  482. "This plugin checks if the address of the request is a Tor exit-node, and "
  483. "informs the user if it is; like check.torproject.org, but from SearXNG."
  484. msgstr ""
  485. "Tämä lisäosa tarkistaa, tuleeko pyyntö TOR exit nodesta, ja ilmoittaa "
  486. "käyttäjälle, jos se on, samalla tavalla kuin check.torproject.org, mutta "
  487. "SearXNGista."
  488. #: searx/plugins/tor_check.py:61
  489. msgid ""
  490. "Could not download the list of Tor exit-nodes from: "
  491. "https://check.torproject.org/exit-addresses"
  492. msgstr ""
  493. "Lopetuspisteiden luettelo Tor-verkon poistumisreiteistä ei voitu ladata "
  494. "osoitteesta: https://check.torproject.org/exit-addresses"
  495. #: searx/plugins/tor_check.py:77
  496. msgid ""
  497. "You are using Tor and it looks like you have this external IP address: "
  498. "{ip_address}"
  499. msgstr ""
  500. "Käytät Tor-verkkoa ja vaikuttaa siltä, että sinulla on tämä ulkoinen IP-"
  501. "osoite: {ip_address}"
  502. #: searx/plugins/tor_check.py:85
  503. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  504. msgstr "Et käytä Tor-verkkoa ja sinulla on tämä ulkoinen IP-osoite: {ip_address}"
  505. #: searx/plugins/tracker_url_remover.py:16
  506. msgid "Tracker URL remover"
  507. msgstr "Seurantapalvelimen osoitteen poistaja"
  508. #: searx/plugins/tracker_url_remover.py:17
  509. msgid "Remove trackers arguments from the returned URL"
  510. msgstr "Poista seurantapalvelinten argumentit palautetusta osoitteesta"
  511. #: searx/plugins/unit_converter.py:29
  512. msgid "Convert between units"
  513. msgstr "Muunna yksiköiden välillä"
  514. #: searx/templates/simple/404.html:4
  515. msgid "Page not found"
  516. msgstr "Sivua ei löytynyt"
  517. #: searx/templates/simple/404.html:6
  518. #, python-format
  519. msgid "Go to %(search_page)s."
  520. msgstr "Siirry %(search_page)s."
  521. #: searx/templates/simple/404.html:6
  522. msgid "search page"
  523. msgstr "hakusivulle"
  524. #: searx/templates/simple/base.html:54
  525. msgid "Donate"
  526. msgstr "Lahjoita"
  527. #: searx/templates/simple/base.html:58
  528. #: searx/templates/simple/preferences.html:156
  529. msgid "Preferences"
  530. msgstr "Asetukset"
  531. #: searx/templates/simple/base.html:68
  532. msgid "Powered by"
  533. msgstr "Taustavoimana"
  534. #: searx/templates/simple/base.html:68
  535. msgid "a privacy-respecting, open metasearch engine"
  536. msgstr "yksityisyyttä kunnioittava, avoin metahakukone"
  537. #: searx/templates/simple/base.html:69
  538. #: searx/templates/simple/result_templates/packages.html:59
  539. msgid "Source code"
  540. msgstr "Lähdekoodi"
  541. #: searx/templates/simple/base.html:70
  542. msgid "Issue tracker"
  543. msgstr "Ongelmien seuranta"
  544. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  545. msgid "Engine stats"
  546. msgstr "Hakukoneen tilastot"
  547. #: searx/templates/simple/base.html:73
  548. msgid "Public instances"
  549. msgstr "Julkiset palvelimet"
  550. #: searx/templates/simple/base.html:76
  551. msgid "Privacy policy"
  552. msgstr "Tietosuojakäytäntö"
  553. #: searx/templates/simple/base.html:79
  554. msgid "Contact instance maintainer"
  555. msgstr "Ota yhteyttä palvelun ylläpitäjään"
  556. #: searx/templates/simple/categories.html:26
  557. msgid "Click on the magnifier to perform search"
  558. msgstr "Napsauta suurennuslasia suorittaaksesi haun"
  559. #: searx/templates/simple/macros.html:40
  560. msgid "Length"
  561. msgstr "Pituus"
  562. #: searx/templates/simple/macros.html:41
  563. msgid "Views"
  564. msgstr "Näkymät"
  565. #: searx/templates/simple/macros.html:42
  566. #: searx/templates/simple/result_templates/files.html:34
  567. #: searx/templates/simple/result_templates/images.html:19
  568. #: searx/templates/simple/result_templates/paper.html:6
  569. msgid "Author"
  570. msgstr "Tekijä"
  571. #: searx/templates/simple/macros.html:50
  572. msgid "cached"
  573. msgstr "välimuistissa"
  574. #: searx/templates/simple/macros.html:50
  575. msgid "proxied"
  576. msgstr "välityspalvelimella"
  577. #: searx/templates/simple/new_issue.html:64
  578. msgid "Start submitting a new issue on GitHub"
  579. msgstr "Avaa uusi issue GitHubissa"
  580. #: searx/templates/simple/new_issue.html:66
  581. msgid "Please check for existing bugs about this engine on GitHub"
  582. msgstr "Tarkista tämän hakukoneen tämänhetkiset ongelmat GitHubista"
  583. #: searx/templates/simple/new_issue.html:69
  584. msgid "I confirm there is no existing bug about the issue I encounter"
  585. msgstr "Vahvistan, että tästä bugista ei ole olemassaolevaa issue:ta"
  586. #: searx/templates/simple/new_issue.html:71
  587. msgid "If this is a public instance, please specify the URL in the bug report"
  588. msgstr ""
  589. "Jos kyseessä on julkinen instanssi, määritä sen URL-osoite "
  590. "vikailmoituksessa"
  591. #: searx/templates/simple/new_issue.html:72
  592. msgid "Submit a new issue on Github including the above information"
  593. msgstr "Lähetä uusi ongelma Githubiin sisältäen edellä mainitut tiedot"
  594. #: searx/templates/simple/preferences.html:65
  595. msgid "No HTTPS"
  596. msgstr "Ei HTTPS-yhteyttä"
  597. #: searx/templates/simple/elements/engines_msg.html:14
  598. #: searx/templates/simple/preferences.html:69
  599. #: searx/templates/simple/preferences.html:70
  600. msgid "View error logs and submit a bug report"
  601. msgstr "Katso virhelokit ja lähetä virhe raportti"
  602. #: searx/templates/simple/preferences.html:74
  603. msgid "!bang for this engine"
  604. msgstr "!bang tälle hakukoneelle"
  605. #: searx/templates/simple/preferences.html:80
  606. msgid "!bang for its categories"
  607. msgstr "!bang sen kategorioille"
  608. #: searx/templates/simple/preferences.html:102
  609. #: searx/templates/simple/stats.html:64
  610. msgid "Median"
  611. msgstr "Mediaani"
  612. #: searx/templates/simple/preferences.html:103
  613. #: searx/templates/simple/stats.html:70
  614. msgid "P80"
  615. msgstr "P80"
  616. #: searx/templates/simple/preferences.html:104
  617. #: searx/templates/simple/stats.html:76
  618. msgid "P95"
  619. msgstr "P95"
  620. #: searx/templates/simple/preferences.html:136
  621. msgid "Failed checker test(s): "
  622. msgstr "Epäonnistuneet tarkistustestit: "
  623. #: searx/templates/simple/preferences.html:138
  624. msgid "Errors:"
  625. msgstr "Virheet:"
  626. #: searx/templates/simple/preferences.html:162
  627. msgid "General"
  628. msgstr "Yleiset"
  629. #: searx/templates/simple/preferences.html:165
  630. msgid "Default categories"
  631. msgstr "Oletusluokat"
  632. #: searx/templates/simple/preferences.html:190
  633. msgid "User interface"
  634. msgstr "Käyttöliittymä"
  635. #: searx/templates/simple/preferences.html:212
  636. msgid "Privacy"
  637. msgstr "Yksityisyys"
  638. #: searx/templates/simple/preferences.html:225
  639. msgid "Engines"
  640. msgstr "Hakukoneet"
  641. #: searx/templates/simple/preferences.html:227
  642. msgid "Currently used search engines"
  643. msgstr "Nyt käytetyt hakukoneet"
  644. #: searx/templates/simple/preferences.html:235
  645. msgid "Special Queries"
  646. msgstr "Erityiset kyselyt"
  647. #: searx/templates/simple/preferences.html:241
  648. msgid "Cookies"
  649. msgstr "Evästeet"
  650. #: searx/templates/simple/results.html:23
  651. msgid "Answers"
  652. msgstr "Vastaukset"
  653. #: searx/templates/simple/results.html:42
  654. msgid "Number of results"
  655. msgstr "Tulosten määrä"
  656. #: searx/templates/simple/results.html:48
  657. msgid "Info"
  658. msgstr "Tiedot"
  659. #: searx/templates/simple/results.html:75
  660. msgid "Try searching for:"
  661. msgstr "Yritä etsiä:"
  662. #: searx/templates/simple/results.html:107
  663. msgid "Back to top"
  664. msgstr "Takaisin huipulle"
  665. #: searx/templates/simple/results.html:125
  666. msgid "Previous page"
  667. msgstr "Edellinen sivu"
  668. #: searx/templates/simple/results.html:143
  669. msgid "Next page"
  670. msgstr "Seuraava sivu"
  671. #: searx/templates/simple/search.html:3
  672. msgid "Display the front page"
  673. msgstr "Näytä etusivu"
  674. #: searx/templates/simple/search.html:9
  675. #: searx/templates/simple/simple_search.html:5
  676. msgid "Search for..."
  677. msgstr "Etsi..."
  678. #: searx/templates/simple/search.html:10
  679. #: searx/templates/simple/simple_search.html:6
  680. msgid "clear"
  681. msgstr "tyhjennä"
  682. #: searx/templates/simple/search.html:11
  683. #: searx/templates/simple/simple_search.html:7
  684. msgid "search"
  685. msgstr "haku"
  686. #: searx/templates/simple/stats.html:21
  687. msgid "There is currently no data available. "
  688. msgstr "Tietoja ei ole juuri nyt saatavilla. "
  689. #: searx/templates/simple/preferences/engines.html:24
  690. #: searx/templates/simple/stats.html:25
  691. msgid "Engine name"
  692. msgstr "Hakukoneen nimi"
  693. #: searx/templates/simple/stats.html:26
  694. msgid "Scores"
  695. msgstr "Pisteet"
  696. #: searx/templates/simple/stats.html:27
  697. msgid "Result count"
  698. msgstr "Tulosten määrä"
  699. #: searx/templates/simple/elements/engines_msg.html:7
  700. #: searx/templates/simple/preferences/engines.html:31
  701. #: searx/templates/simple/stats.html:28
  702. msgid "Response time"
  703. msgstr "Vastausaika"
  704. #: searx/templates/simple/preferences/engines.html:35
  705. #: searx/templates/simple/stats.html:29
  706. msgid "Reliability"
  707. msgstr "Luotettavuus"
  708. #: searx/templates/simple/stats.html:59
  709. msgid "Total"
  710. msgstr "Yhteensä"
  711. #: searx/templates/simple/stats.html:60
  712. msgid "HTTP"
  713. msgstr "HTTP"
  714. #: searx/templates/simple/stats.html:61
  715. msgid "Processing"
  716. msgstr "Käsitellään"
  717. #: searx/templates/simple/stats.html:99
  718. msgid "Warnings"
  719. msgstr "Varoitukset"
  720. #: searx/templates/simple/stats.html:99
  721. msgid "Errors and exceptions"
  722. msgstr "Virheet ja poikkeukset"
  723. #: searx/templates/simple/stats.html:105
  724. msgid "Exception"
  725. msgstr "Poikkeus"
  726. #: searx/templates/simple/stats.html:107
  727. msgid "Message"
  728. msgstr "Viesti"
  729. #: searx/templates/simple/stats.html:109
  730. msgid "Percentage"
  731. msgstr "Prosentti"
  732. #: searx/templates/simple/stats.html:111
  733. msgid "Parameter"
  734. msgstr "Parametri"
  735. #: searx/templates/simple/result_templates/files.html:36
  736. #: searx/templates/simple/stats.html:119
  737. msgid "Filename"
  738. msgstr "Tiedoston nimi"
  739. #: searx/templates/simple/stats.html:120
  740. msgid "Function"
  741. msgstr "Funktio"
  742. #: searx/templates/simple/stats.html:121
  743. msgid "Code"
  744. msgstr "Koodi"
  745. #: searx/templates/simple/stats.html:128
  746. msgid "Checker"
  747. msgstr "Tarkistaja"
  748. #: searx/templates/simple/stats.html:131
  749. msgid "Failed test"
  750. msgstr "Epäonnistunut testi"
  751. #: searx/templates/simple/stats.html:132
  752. msgid "Comment(s)"
  753. msgstr "Kommentit"
  754. #: searx/templates/simple/elements/apis.html:3
  755. msgid "Download results"
  756. msgstr "Lataa tulokset"
  757. #: searx/templates/simple/elements/engines_msg.html:4
  758. msgid "Messages from the search engines"
  759. msgstr "Viestit hakukoneilta"
  760. #: searx/templates/simple/elements/engines_msg.html:7
  761. msgid "seconds"
  762. msgstr "s"
  763. #: searx/templates/simple/elements/search_url.html:3
  764. msgid "Search URL"
  765. msgstr "Haun osoite"
  766. #: searx/templates/simple/elements/search_url.html:4
  767. #: searx/templates/simple/preferences/cookies.html:54
  768. msgid "Copied"
  769. msgstr "Kopioitu"
  770. #: searx/templates/simple/elements/search_url.html:4
  771. #: searx/templates/simple/preferences/cookies.html:54
  772. msgid "Copy"
  773. msgstr "Kopioi"
  774. #: searx/templates/simple/elements/suggestions.html:3
  775. msgid "Suggestions"
  776. msgstr "Ehdotukset"
  777. #: searx/templates/simple/filters/languages.html:1
  778. #: searx/templates/simple/preferences/language.html:2
  779. msgid "Search language"
  780. msgstr "Haun kieli"
  781. #: searx/templates/simple/filters/languages.html:4
  782. #: searx/templates/simple/preferences/language.html:7
  783. msgid "Default language"
  784. msgstr "Oletuskieli"
  785. #: searx/templates/simple/filters/languages.html:8
  786. #: searx/templates/simple/preferences/language.html:11
  787. msgid "Auto-detect"
  788. msgstr "Havaitse automaattisesti"
  789. #: searx/templates/simple/filters/safesearch.html:1
  790. #: searx/templates/simple/filters/safesearch.html:2
  791. #: searx/templates/simple/filters/safesearch.html:3
  792. #: searx/templates/simple/filters/safesearch.html:4
  793. #: searx/templates/simple/preferences/engines.html:27
  794. #: searx/templates/simple/preferences/safesearch.html:2
  795. msgid "SafeSearch"
  796. msgstr "Turvahaku"
  797. #: searx/templates/simple/filters/safesearch.html:2
  798. #: searx/templates/simple/preferences/safesearch.html:7
  799. msgid "Strict"
  800. msgstr "Tiukka"
  801. #: searx/templates/simple/filters/safesearch.html:3
  802. #: searx/templates/simple/preferences/safesearch.html:11
  803. msgid "Moderate"
  804. msgstr "Keskitaso"
  805. #: searx/templates/simple/filters/safesearch.html:4
  806. #: searx/templates/simple/preferences/safesearch.html:15
  807. msgid "None"
  808. msgstr "Ei mitään"
  809. #: searx/templates/simple/filters/time_range.html:1
  810. #: searx/templates/simple/preferences/engines.html:28
  811. msgid "Time range"
  812. msgstr "Aikaväli"
  813. #: searx/templates/simple/filters/time_range.html:3
  814. msgid "Anytime"
  815. msgstr "Milloin tahansa"
  816. #: searx/templates/simple/filters/time_range.html:6
  817. msgid "Last day"
  818. msgstr "Viimeinen päivä"
  819. #: searx/templates/simple/filters/time_range.html:9
  820. msgid "Last week"
  821. msgstr "Viimeinen viikko"
  822. #: searx/templates/simple/filters/time_range.html:12
  823. msgid "Last month"
  824. msgstr "Viimeinen kuukausi"
  825. #: searx/templates/simple/filters/time_range.html:15
  826. msgid "Last year"
  827. msgstr "Viimeinen vuosi"
  828. #: searx/templates/simple/messages/no_cookies.html:3
  829. msgid "Information!"
  830. msgstr "Huomio!"
  831. #: searx/templates/simple/messages/no_cookies.html:4
  832. msgid "currently, there are no cookies defined."
  833. msgstr "Evästeitä ei ole määritetty tällä hetkellä."
  834. #: searx/templates/simple/messages/no_results.html:6
  835. msgid "Sorry!"
  836. msgstr "Pahoittelut!"
  837. #: searx/templates/simple/messages/no_results.html:12
  838. msgid "No results were found. You can try to:"
  839. msgstr "Tuloksia ei löytynyt. Voit:"
  840. #: searx/templates/simple/messages/no_results.html:14
  841. msgid "There are no more results. You can try to:"
  842. msgstr "Tuloksia ei ole enään lisää. Voit yrittää:"
  843. #: searx/templates/simple/messages/no_results.html:19
  844. msgid "Refresh the page."
  845. msgstr "Päivittää sivun."
  846. #: searx/templates/simple/messages/no_results.html:20
  847. msgid "Search for another query or select another category (above)."
  848. msgstr "Etsiä eri hakuehdolla tai valita toisen luokan (yläpuolella)."
  849. #: searx/templates/simple/messages/no_results.html:21
  850. msgid "Change the search engine used in the preferences:"
  851. msgstr "Vaihtaa käytettävää hakukonetta asetuksista:"
  852. #: searx/templates/simple/messages/no_results.html:22
  853. msgid "Switch to another instance:"
  854. msgstr "Vaihtaa toiseen instanssiin:"
  855. #: searx/templates/simple/messages/no_results.html:24
  856. msgid "Search for another query or select another category."
  857. msgstr "Hae toista kyselyä tai valitse toinen luokka."
  858. #: searx/templates/simple/messages/no_results.html:25
  859. msgid "Go back to the previous page using the previous page button."
  860. msgstr "Palaa edelliselle sivulle käyttäen edellinen sivu-nappia."
  861. #: searx/templates/simple/preferences/answerers.html:4
  862. #: searx/templates/simple/preferences/engines.html:23
  863. msgid "Allow"
  864. msgstr "Salli"
  865. #: searx/templates/simple/preferences/answerers.html:5
  866. msgid "Keywords"
  867. msgstr "Avainsanat"
  868. #: searx/templates/simple/preferences/answerers.html:6
  869. #: searx/templates/simple/result_templates/packages.html:7
  870. msgid "Name"
  871. msgstr "Nimi"
  872. #: searx/templates/simple/preferences/answerers.html:7
  873. msgid "Description"
  874. msgstr "Kuvaus"
  875. #: searx/templates/simple/preferences/answerers.html:8
  876. msgid "Examples"
  877. msgstr "Esimerkit"
  878. #: searx/templates/simple/preferences/answerers.html:13
  879. msgid "This is the list of SearXNG's instant answering modules."
  880. msgstr "Tämä on luettelo SearXNG:n pikavastausmoduuleista."
  881. #: searx/templates/simple/preferences/answerers.html:29
  882. msgid "This is the list of plugins."
  883. msgstr "Tämä on lista lisäosista."
  884. #: searx/templates/simple/preferences/autocomplete.html:2
  885. msgid "Autocomplete"
  886. msgstr "Automaattinen täydentäminen"
  887. #: searx/templates/simple/preferences/autocomplete.html:15
  888. msgid "Find stuff as you type"
  889. msgstr "Löydä tuloksia kirjoittaessasi"
  890. #: searx/templates/simple/preferences/center_alignment.html:2
  891. msgid "Center Alignment"
  892. msgstr "Keskipisteen kohdistus"
  893. #: searx/templates/simple/preferences/center_alignment.html:14
  894. msgid "Displays results in the center of the page (Oscar layout)."
  895. msgstr "Näyttää tulokset sivun keskellä (Oscar-asettelu)."
  896. #: searx/templates/simple/preferences/cookies.html:2
  897. msgid ""
  898. "This is the list of cookies and their values SearXNG is storing on your "
  899. "computer."
  900. msgstr ""
  901. "Tämä on luettelo evästeistä ja niiden arvoista, joita SearXNG tallentaa "
  902. "tietokoneellesi."
  903. #: searx/templates/simple/preferences/cookies.html:3
  904. msgid "With that list, you can assess SearXNG transparency."
  905. msgstr "Tämän luettelon avulla voit arvioida SearXNG:n läpinäkyvyyttä."
  906. #: searx/templates/simple/preferences/cookies.html:9
  907. msgid "Cookie name"
  908. msgstr "Evästeen nimi"
  909. #: searx/templates/simple/preferences/cookies.html:10
  910. msgid "Value"
  911. msgstr "Arvo"
  912. #: searx/templates/simple/preferences/cookies.html:23
  913. msgid "Search URL of the currently saved preferences"
  914. msgstr "Nykyisten asetusten hakuosoite"
  915. #: searx/templates/simple/preferences/cookies.html:32
  916. msgid ""
  917. "Note: specifying custom settings in the search URL can reduce privacy by "
  918. "leaking data to the clicked result sites."
  919. msgstr ""
  920. "Huomio: mukautettujen asetusten hakuosoite voi heikentää yksityisyyttä "
  921. "vuotamalla tietoja niille sivustoille, joihin kohdistuvia tuloksia "
  922. "napsautetaan."
  923. #: searx/templates/simple/preferences/cookies.html:35
  924. msgid "URL to restore your preferences in another browser"
  925. msgstr "URL-osoite asetusten palauttamiseksi toisessa selaimessa"
  926. #: searx/templates/simple/preferences/cookies.html:43
  927. msgid ""
  928. "Specifying custom settings in the preferences URL can be used to sync "
  929. "preferences across devices."
  930. msgstr ""
  931. "Määrittämällä mukautettuja asetuksia asetusten URL-osoitteessa voidaan "
  932. "käyttää synkronoimiseen asetuksia eri laitteissa."
  933. #: searx/templates/simple/preferences/cookies.html:46
  934. msgid "Copy preferences hash"
  935. msgstr "Kopioi asetusten tiiviste"
  936. #: searx/templates/simple/preferences/cookies.html:57
  937. msgid "Insert copied preferences hash (without URL) to restore"
  938. msgstr "Syötä kopioitu asetusten tiiviste (ilman URL-osoitetta) palautusta varten"
  939. #: searx/templates/simple/preferences/cookies.html:59
  940. msgid "Preferences hash"
  941. msgstr "Asetusten tiiviste"
  942. #: searx/templates/simple/preferences/doi_resolver.html:2
  943. msgid "Open Access DOI resolver"
  944. msgstr "Open Access DOI -selvitin"
  945. #: searx/templates/simple/preferences/doi_resolver.html:14
  946. msgid "Select service used by DOI rewrite"
  947. msgstr "Valitse palvelu, jota käytetään DOI:n uudelleenkirjoituksessa"
  948. #: searx/templates/simple/preferences/engines.html:9
  949. msgid ""
  950. "This tab does not exists in the user interface, but you can search in "
  951. "these engines by its !bangs."
  952. msgstr ""
  953. "Tätä välilehteä ei ole käyttöliittymässä, mutta voit tehdä haun näillä "
  954. "moottoreilla käyttämällä niiden erikoismerkkejä (!bangs)."
  955. #: searx/templates/simple/preferences/engines.html:15
  956. msgid "Enable all"
  957. msgstr "Käytä kaikkia"
  958. #: searx/templates/simple/preferences/engines.html:16
  959. msgid "Disable all"
  960. msgstr "Poista kaikki käytöstä"
  961. #: searx/templates/simple/preferences/engines.html:25
  962. msgid "!bang"
  963. msgstr "!bang"
  964. #: searx/templates/simple/preferences/engines.html:26
  965. msgid "Supports selected language"
  966. msgstr "Tukee valittua kieltä"
  967. #: searx/templates/simple/preferences/engines.html:29
  968. msgid "Weight"
  969. msgstr "Paino"
  970. #: searx/templates/simple/preferences/engines.html:33
  971. msgid "Max time"
  972. msgstr "Enimmäisaika"
  973. #: searx/templates/simple/preferences/favicon.html:2
  974. msgid "Favicon Resolver"
  975. msgstr "Favicon-ratkaisija"
  976. #: searx/templates/simple/preferences/favicon.html:15
  977. msgid "Display favicons near search results"
  978. msgstr "Näytä Faviconit hakutulosten lähellä"
  979. #: searx/templates/simple/preferences/footer.html:2
  980. msgid ""
  981. "These settings are stored in your cookies, this allows us not to store "
  982. "this data about you."
  983. msgstr ""
  984. "Nämä asetukset tallennetaan evästeisiisi. Näin Searxin ei tarvitse "
  985. "tallentaa sinuun liittyviä henkilökohtaisia tietoja."
  986. #: searx/templates/simple/preferences/footer.html:3
  987. msgid ""
  988. "These cookies serve your sole convenience, we don't use these cookies to "
  989. "track you."
  990. msgstr ""
  991. "Kyseiset evästeet palvelevat ainoastaan sinua, eikä niitä käytetä "
  992. "seuraamiseesi."
  993. #: searx/templates/simple/preferences/footer.html:6
  994. msgid "Save"
  995. msgstr "Tallenna"
  996. #: searx/templates/simple/preferences/footer.html:9
  997. msgid "Reset defaults"
  998. msgstr "Palauta oletukset"
  999. #: searx/templates/simple/preferences/footer.html:13
  1000. msgid "Back"
  1001. msgstr "Takaisin"
  1002. #: searx/templates/simple/preferences/hotkeys.html:2
  1003. msgid "Hotkeys"
  1004. msgstr "Pikanäppäimet"
  1005. #: searx/templates/simple/preferences/hotkeys.html:13
  1006. msgid "Vim-like"
  1007. msgstr "Vim-kaltainen"
  1008. #: searx/templates/simple/preferences/hotkeys.html:18
  1009. msgid ""
  1010. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1011. "key on main or result page to get help."
  1012. msgstr ""
  1013. "Liiku hakutulosten välillä pikanäppäimillä (JavaScript vaaditaan). Paina "
  1014. "\"h\" pääsivulla tai tulossivulla nähdäksesi ohjeen."
  1015. #: searx/templates/simple/preferences/image_proxy.html:2
  1016. msgid "Image proxy"
  1017. msgstr "Kuvat välityspalvelimen kautta"
  1018. #: searx/templates/simple/preferences/image_proxy.html:14
  1019. msgid "Proxying image results through SearXNG"
  1020. msgstr "Kuvatulosten välitys SearXNG:n kautta"
  1021. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1022. msgid "Infinite scroll"
  1023. msgstr "Loputon vieritys"
  1024. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1025. msgid "Automatically load next page when scrolling to bottom of current page"
  1026. msgstr "Lataa automaattisesti seuraava sivu, kun nykyisen sivun loppu saavutetaan"
  1027. #: searx/templates/simple/preferences/language.html:24
  1028. msgid "What language do you prefer for search?"
  1029. msgstr "Millä kielellä haluat etsiä ensisijaisesti?"
  1030. #: searx/templates/simple/preferences/language.html:25
  1031. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1032. msgstr ""
  1033. "Valitse \"Havaitse automaattisesti\", jotta SearXNG havaitsee haun kielen"
  1034. " automaattisesti."
  1035. #: searx/templates/simple/preferences/method.html:2
  1036. msgid "HTTP Method"
  1037. msgstr "HTTP-menetelmä"
  1038. #: searx/templates/simple/preferences/method.html:14
  1039. msgid "Change how forms are submitted"
  1040. msgstr "Vaihda tapaa, miten lomakkeet lähetetään"
  1041. #: searx/templates/simple/preferences/query_in_title.html:2
  1042. msgid "Query in the page's title"
  1043. msgstr "Haun nimi sivun otsikossa"
  1044. #: searx/templates/simple/preferences/query_in_title.html:14
  1045. msgid ""
  1046. "When enabled, the result page's title contains your query. Your browser "
  1047. "can record this title"
  1048. msgstr ""
  1049. "Kun tämä on käytössä, sivun otsikko sisältää kyselysi. Selaimesi voi "
  1050. "tallentaa tämän otsikon"
  1051. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1052. msgid "Results on new tabs"
  1053. msgstr "Tulokset uusiin välilehtiin"
  1054. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1055. msgid "Open result links on new browser tabs"
  1056. msgstr "Avaa tulokset uusiin välilehtiin"
  1057. #: searx/templates/simple/preferences/safesearch.html:20
  1058. msgid "Filter content"
  1059. msgstr "Suodata hakutulosten sisältöä"
  1060. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1061. msgid "Search on category select"
  1062. msgstr "Etsi valitsemalla luokka"
  1063. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1064. msgid ""
  1065. "Perform search immediately if a category selected. Disable to select "
  1066. "multiple categories"
  1067. msgstr ""
  1068. "Suorita haku välittömästi, jos luokka on valittu. Poista käytöstä "
  1069. "valitaksesi useita luokkia"
  1070. #: searx/templates/simple/preferences/theme.html:2
  1071. msgid "Theme"
  1072. msgstr "Teema"
  1073. #: searx/templates/simple/preferences/theme.html:14
  1074. msgid "Change SearXNG layout"
  1075. msgstr "Vaihda SearXNG:n käyttöliittymä"
  1076. #: searx/templates/simple/preferences/theme.html:19
  1077. msgid "Theme style"
  1078. msgstr "Teeman tyyli"
  1079. #: searx/templates/simple/preferences/theme.html:31
  1080. msgid "Choose auto to follow your browser settings"
  1081. msgstr "Valitse auto seurataksesi selaimesi asetuksia"
  1082. #: searx/templates/simple/preferences/tokens.html:2
  1083. msgid "Engine tokens"
  1084. msgstr "Hakukonetokenit"
  1085. #: searx/templates/simple/preferences/tokens.html:9
  1086. msgid "Access tokens for private engines"
  1087. msgstr "Pääsytunnukset yksityisiin hakukoneisiin"
  1088. #: searx/templates/simple/preferences/ui_locale.html:2
  1089. msgid "Interface language"
  1090. msgstr "Käyttöliittymän kieli"
  1091. #: searx/templates/simple/preferences/ui_locale.html:14
  1092. msgid "Change the language of the layout"
  1093. msgstr "Vaihda asettelun kieltä"
  1094. #: searx/templates/simple/preferences/urlformatting.html:2
  1095. msgid "URL formatting"
  1096. msgstr "URL-muotoilu"
  1097. #: searx/templates/simple/preferences/urlformatting.html:8
  1098. msgid "Pretty"
  1099. msgstr "Nätti"
  1100. #: searx/templates/simple/preferences/urlformatting.html:13
  1101. msgid "Full"
  1102. msgstr "Täysi"
  1103. #: searx/templates/simple/preferences/urlformatting.html:18
  1104. msgid "Host"
  1105. msgstr "Isäntä"
  1106. #: searx/templates/simple/preferences/urlformatting.html:23
  1107. msgid "Change result URL formatting"
  1108. msgstr "Vaihda tulosten URL-muotoilua"
  1109. #: searx/templates/simple/result_templates/code.html:13
  1110. msgid "repo"
  1111. msgstr "repot"
  1112. #: searx/templates/simple/result_templates/default.html:6
  1113. #: searx/templates/simple/result_templates/files.html:8
  1114. #: searx/templates/simple/result_templates/files.html:11
  1115. msgid "show media"
  1116. msgstr "näytä media"
  1117. #: searx/templates/simple/result_templates/default.html:6
  1118. #: searx/templates/simple/result_templates/files.html:8
  1119. msgid "hide media"
  1120. msgstr "piilota media"
  1121. #: searx/templates/simple/result_templates/default.html:14
  1122. #: searx/templates/simple/result_templates/videos.html:14
  1123. msgid "This site did not provide any description."
  1124. msgstr "Tämä sivu ei antanut mitään kuvausta."
  1125. #: searx/templates/simple/result_templates/files.html:38
  1126. #: searx/templates/simple/result_templates/images.html:22
  1127. #: searx/templates/simple/result_templates/torrent.html:11
  1128. msgid "Filesize"
  1129. msgstr "Tiedostokoko"
  1130. #: searx/templates/simple/result_templates/files.html:40
  1131. msgid "Date"
  1132. msgstr "Päivämäärä"
  1133. #: searx/templates/simple/result_templates/files.html:42
  1134. #: searx/templates/simple/result_templates/paper.html:24
  1135. msgid "Type"
  1136. msgstr "Tyyppi"
  1137. #: searx/templates/simple/result_templates/images.html:20
  1138. msgid "Resolution"
  1139. msgstr "Resoluutio"
  1140. #: searx/templates/simple/result_templates/images.html:21
  1141. msgid "Format"
  1142. msgstr "Muoto"
  1143. #: searx/templates/simple/result_templates/images.html:24
  1144. msgid "Engine"
  1145. msgstr "Hakukone"
  1146. #: searx/templates/simple/result_templates/images.html:25
  1147. msgid "View source"
  1148. msgstr "Näytä lähde"
  1149. #: searx/templates/simple/result_templates/map.html:12
  1150. msgid "address"
  1151. msgstr "osoite"
  1152. #: searx/templates/simple/result_templates/map.html:43
  1153. msgid "show map"
  1154. msgstr "näytä kartta"
  1155. #: searx/templates/simple/result_templates/map.html:43
  1156. msgid "hide map"
  1157. msgstr "piilota kartta"
  1158. #: searx/templates/simple/result_templates/packages.html:12
  1159. msgid "Version"
  1160. msgstr "Versio"
  1161. #: searx/templates/simple/result_templates/packages.html:18
  1162. msgid "Maintainer"
  1163. msgstr "Ylläpitäjä"
  1164. #: searx/templates/simple/result_templates/packages.html:24
  1165. msgid "Updated at"
  1166. msgstr "Päivitetty"
  1167. #: searx/templates/simple/result_templates/packages.html:30
  1168. #: searx/templates/simple/result_templates/paper.html:25
  1169. msgid "Tags"
  1170. msgstr "Tägit"
  1171. #: searx/templates/simple/result_templates/packages.html:36
  1172. msgid "Popularity"
  1173. msgstr "Suosio"
  1174. #: searx/templates/simple/result_templates/packages.html:42
  1175. msgid "License"
  1176. msgstr "Lisenssi"
  1177. #: searx/templates/simple/result_templates/packages.html:52
  1178. msgid "Project"
  1179. msgstr "Projekti"
  1180. #: searx/templates/simple/result_templates/packages.html:55
  1181. msgid "Project homepage"
  1182. msgstr "Projektin sivusto"
  1183. #: searx/templates/simple/result_templates/paper.html:5
  1184. msgid "Published date"
  1185. msgstr "Julkaisupäivä"
  1186. #: searx/templates/simple/result_templates/paper.html:9
  1187. msgid "Journal"
  1188. msgstr "Journaali"
  1189. #: searx/templates/simple/result_templates/paper.html:22
  1190. msgid "Editor"
  1191. msgstr "Editori"
  1192. #: searx/templates/simple/result_templates/paper.html:23
  1193. msgid "Publisher"
  1194. msgstr "Julkaisija"
  1195. #: searx/templates/simple/result_templates/paper.html:26
  1196. msgid "DOI"
  1197. msgstr "DOI"
  1198. #: searx/templates/simple/result_templates/paper.html:27
  1199. msgid "ISSN"
  1200. msgstr "ISSN"
  1201. #: searx/templates/simple/result_templates/paper.html:28
  1202. msgid "ISBN"
  1203. msgstr "ISBN"
  1204. #: searx/templates/simple/result_templates/paper.html:33
  1205. msgid "PDF"
  1206. msgstr "PDF"
  1207. #: searx/templates/simple/result_templates/paper.html:34
  1208. msgid "HTML"
  1209. msgstr "HTML"
  1210. #: searx/templates/simple/result_templates/torrent.html:6
  1211. msgid "magnet link"
  1212. msgstr "magnet-linkki"
  1213. #: searx/templates/simple/result_templates/torrent.html:7
  1214. msgid "torrent file"
  1215. msgstr "torrent-tiedosto"
  1216. #: searx/templates/simple/result_templates/torrent.html:9
  1217. msgid "Seeder"
  1218. msgstr "Lähettäjä"
  1219. #: searx/templates/simple/result_templates/torrent.html:9
  1220. msgid "Leecher"
  1221. msgstr "Lataaja"
  1222. #: searx/templates/simple/result_templates/torrent.html:13
  1223. msgid "Number of Files"
  1224. msgstr "Tiedostojen määrä"
  1225. #: searx/templates/simple/result_templates/videos.html:6
  1226. msgid "show video"
  1227. msgstr "näytä video"
  1228. #: searx/templates/simple/result_templates/videos.html:6
  1229. msgid "hide video"
  1230. msgstr "piilota video"
  1231. #~ msgid "Engine time (sec)"
  1232. #~ msgstr "Hakukoneen aika (s)"
  1233. #~ msgid "Page loads (sec)"
  1234. #~ msgstr "Sivun lataus (s)"
  1235. #~ msgid "Errors"
  1236. #~ msgstr "Virheet"
  1237. #~ msgid "CAPTCHA required"
  1238. #~ msgstr ""
  1239. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1240. #~ msgstr "Muuta HTTP-linkit HTTPS-muotoon jos mahdollista"
  1241. #~ msgid ""
  1242. #~ "Results are opened in the same "
  1243. #~ "window by default. This plugin "
  1244. #~ "overwrites the default behaviour to open"
  1245. #~ " links on new tabs/windows. (JavaScript "
  1246. #~ "required)"
  1247. #~ msgstr ""
  1248. #~ "Tulokset avataan oletuksena samaan ikkunaan."
  1249. #~ " Tämä lisäosa korvaa oletustoiminnan "
  1250. #~ "avaamalla linkit uusiin välilehtiin tai "
  1251. #~ "ikkunoihin. (JavaScript vaaditaan)"
  1252. #~ msgid "Color"
  1253. #~ msgstr "Väri"
  1254. #~ msgid "Blue (default)"
  1255. #~ msgstr "Sininen (oletus)"
  1256. #~ msgid "Violet"
  1257. #~ msgstr "Violetti"
  1258. #~ msgid "Green"
  1259. #~ msgstr "Vihreä"
  1260. #~ msgid "Cyan"
  1261. #~ msgstr "Syaani"
  1262. #~ msgid "Orange"
  1263. #~ msgstr "Oranssi"
  1264. #~ msgid "Red"
  1265. #~ msgstr "Punainen"
  1266. #~ msgid "Category"
  1267. #~ msgstr "Luokka"
  1268. #~ msgid "Block"
  1269. #~ msgstr "Estä"
  1270. #~ msgid "original context"
  1271. #~ msgstr "alkuperäinen konteksti"
  1272. #~ msgid "Plugins"
  1273. #~ msgstr "Lisäosat"
  1274. #~ msgid "Answerers"
  1275. #~ msgstr "Vastaajat"
  1276. #~ msgid "Avg. time"
  1277. #~ msgstr ""
  1278. #~ "Keskimääräinen\n"
  1279. #~ "aika"
  1280. #~ msgid "show details"
  1281. #~ msgstr "näytä tiedot"
  1282. #~ msgid "hide details"
  1283. #~ msgstr "piilota tiedot"
  1284. #~ msgid "Load more..."
  1285. #~ msgstr "Lataa lisää..."
  1286. #~ msgid "Loading..."
  1287. #~ msgstr ""
  1288. #~ msgid "Change searx layout"
  1289. #~ msgstr "Muuta searxin asettelua"
  1290. #~ msgid "Proxying image results through searx"
  1291. #~ msgstr "Kuvatulokset välitetään searxin välityspalvelimen kautta"
  1292. #~ msgid "This is the list of searx's instant answering modules."
  1293. #~ msgstr "Tämä on luettelo searxin vastaajamoduuleista."
  1294. #~ msgid ""
  1295. #~ "This is the list of cookies and"
  1296. #~ " their values searx is storing on "
  1297. #~ "your computer."
  1298. #~ msgstr ""
  1299. #~ "Ohessa on lista evästeistä ja niiden "
  1300. #~ "arvoista, joita searx tallentaa "
  1301. #~ "tietokoneellesi."
  1302. #~ msgid "With that list, you can assess searx transparency."
  1303. #~ msgstr "Tämän luettelon avulla voit arvioida searxin läpinäkyvyyden."
  1304. #~ msgid "It look like you are using searx first time."
  1305. #~ msgstr "Vaikuttaa siltä, että käytät searxia ensimmäistä kertaa."
  1306. #~ msgid "Please, try again later or find another searx instance."
  1307. #~ msgstr "Yritä myöhemmin uudelleen tai kokeile toista searx-instanssia."
  1308. #~ msgid "Themes"
  1309. #~ msgstr "Teemat"
  1310. #~ msgid "Reliablity"
  1311. #~ msgstr ""
  1312. #~ msgid ""
  1313. #~ "When enabled, the result page's title"
  1314. #~ " contains your query. Your browser "
  1315. #~ "can record this title."
  1316. #~ msgstr ""
  1317. #~ msgid "Method"
  1318. #~ msgstr "Tapa"
  1319. #~ msgid ""
  1320. #~ "This tab does not show up for "
  1321. #~ "search results but you can search "
  1322. #~ "the engines listed here via bangs."
  1323. #~ msgstr ""
  1324. #~ msgid "Advanced settings"
  1325. #~ msgstr "Lisäasetukset"
  1326. #~ msgid "Close"
  1327. #~ msgstr "Sulje"
  1328. #~ msgid "Language"
  1329. #~ msgstr "Kieli"
  1330. #~ msgid "broken"
  1331. #~ msgstr "rikki"
  1332. #~ msgid "supported"
  1333. #~ msgstr "tuettu"
  1334. #~ msgid "not supported"
  1335. #~ msgstr "ei tuettu"
  1336. #~ msgid "about"
  1337. #~ msgstr "tietoja"
  1338. #~ msgid "Avg."
  1339. #~ msgstr "N."
  1340. #~ msgid "User Interface"
  1341. #~ msgstr "Käyttöliittymä"
  1342. #~ msgid "Choose style for this theme"
  1343. #~ msgstr "Valitse tyyli tälle teemalle"
  1344. #~ msgid "Style"
  1345. #~ msgstr "Tyyli"
  1346. #~ msgid "Show advanced settings"
  1347. #~ msgstr "Näytä edistyneet asetukset"
  1348. #~ msgid "Show advanced settings panel in the home page by default"
  1349. #~ msgstr "Näytä edistyneet asetukset kotisivulla oletuksena"
  1350. #~ msgid "Allow all"
  1351. #~ msgstr "Salli kaikki"
  1352. #~ msgid "Disable all"
  1353. #~ msgstr "Poista kaikki käytöstä"
  1354. #~ msgid "Selected language"
  1355. #~ msgstr "Valittu kieli"
  1356. #~ msgid "Query"
  1357. #~ msgstr "Kysely"
  1358. #~ msgid "save"
  1359. #~ msgstr "tallenna"
  1360. #~ msgid "back"
  1361. #~ msgstr "takaisin"
  1362. #~ msgid "Links"
  1363. #~ msgstr "Linkit"
  1364. #~ msgid "RSS subscription"
  1365. #~ msgstr "RSS-tilaus"
  1366. #~ msgid "Search results"
  1367. #~ msgstr "Hakutulokset"
  1368. #~ msgid "next page"
  1369. #~ msgstr "seuraava sivu"
  1370. #~ msgid "previous page"
  1371. #~ msgstr "edellinen sivu"
  1372. #~ msgid "Start search"
  1373. #~ msgstr "Aloita haku"
  1374. #~ msgid "Clear search"
  1375. #~ msgstr "Tyhjennä haku"
  1376. #~ msgid "Clear"
  1377. #~ msgstr "Tyhjennä"
  1378. #~ msgid "stats"
  1379. #~ msgstr "tilastot"
  1380. #~ msgid "Heads up!"
  1381. #~ msgstr "Pää pystyyn!"
  1382. #~ msgid "It look like you are using SearXNG first time."
  1383. #~ msgstr "Näyttää siltä, että käytät SearXNG:tä ensimmäistä kertaa."
  1384. #~ msgid "Well done!"
  1385. #~ msgstr "Hyvin tehty!"
  1386. #~ msgid "Settings saved successfully."
  1387. #~ msgstr "Asetukset tallennettiin onnistuneesti."
  1388. #~ msgid "Oh snap!"
  1389. #~ msgstr "Voi ei!"
  1390. #~ msgid "Something went wrong."
  1391. #~ msgstr "Jokin meni pieleen."
  1392. #~ msgid "Date"
  1393. #~ msgstr "Päivämäärä"
  1394. #~ msgid "Type"
  1395. #~ msgstr "Tyyppi"
  1396. #~ msgid "Get image"
  1397. #~ msgstr "Avaa kuva"
  1398. #~ msgid "Center Alignment"
  1399. #~ msgstr ""
  1400. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1401. #~ msgstr ""
  1402. #~ msgid "preferences"
  1403. #~ msgstr "asetukset"
  1404. #~ msgid "Scores per result"
  1405. #~ msgstr "Pisteet per tulos"
  1406. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1407. #~ msgstr "yksityisyyttä kunnioittava, muokattava metahakukone"
  1408. #~ msgid "No abstract is available for this publication."
  1409. #~ msgstr "Tästä julkaisusta ei ole yhteenvetoa."
  1410. #~ msgid "Self Informations"
  1411. #~ msgstr "Itsetiedot"
  1412. #~ msgid ""
  1413. #~ "Change how forms are submited, <a "
  1414. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1415. #~ " rel=\"external\">learn more about request "
  1416. #~ "methods</a>"
  1417. #~ msgstr ""
  1418. #~ "Muuta tapaa, miten lomaketiedot välitetään."
  1419. #~ " <a "
  1420. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1421. #~ " rel=\"external\">Lisätietoja eri välitystavoista.</a>"
  1422. #~ msgid ""
  1423. #~ "This plugin checks if the address "
  1424. #~ "of the request is a TOR exit "
  1425. #~ "node, and informs the user if it"
  1426. #~ " is, like check.torproject.org but from "
  1427. #~ "searxng."
  1428. #~ msgstr ""
  1429. #~ "Tämä lisäosa tarkistaa, tuleeko pyyntö "
  1430. #~ "TOR exit nodesta, ja ilmoittaa "
  1431. #~ "käyttäjälle, jos se on, samalla tavalla"
  1432. #~ " kuin check.torproject.org, mutta searxngista."
  1433. #~ msgid ""
  1434. #~ "The TOR exit node list "
  1435. #~ "(https://check.torproject.org/exit-addresses) is "
  1436. #~ "unreachable."
  1437. #~ msgstr ""
  1438. #~ "TOR exit node listaan "
  1439. #~ "(https://check.torproject.org/exit-addresses) ei "
  1440. #~ "saada yhteyttä."
  1441. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1442. #~ msgstr "Sinä käytät TOR:ia. Sinun IP-osoitteesi näyttää olevan: {ip_address}."
  1443. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1444. #~ msgstr "Sinä et käytä TOR:ia. Sinun IP-osoitteesi näyttää olevan: {ip_address}."
  1445. #~ msgid ""
  1446. #~ "The could not download the list of"
  1447. #~ " Tor exit-nodes from "
  1448. #~ "https://check.torproject.org/exit-addresses."
  1449. #~ msgstr ""
  1450. #~ msgid ""
  1451. #~ "You are using Tor. It looks like"
  1452. #~ " you have this external IP address:"
  1453. #~ " {ip_address}."
  1454. #~ msgstr ""
  1455. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1456. #~ msgstr ""
  1457. #~ msgid "Autodetect search language"
  1458. #~ msgstr "Tunnista hakukieli automaattisesti"
  1459. #~ msgid "Automatically detect the query search language and switch to it."
  1460. #~ msgstr "Automaattisesti huomaa hakukieli, ja vaihda siihen."
  1461. #~ msgid "others"
  1462. #~ msgstr "Toiset"
  1463. #~ msgid ""
  1464. #~ "This tab does not show up for "
  1465. #~ "search results, but you can search "
  1466. #~ "the engines listed here via bangs."
  1467. #~ msgstr ""
  1468. #~ "Tämä välilehti ei näy hakutuloksissa, "
  1469. #~ "mutta voit tehdä hakuja täällä "
  1470. #~ "luetelluista moottoreista \"bangien\" kautta."
  1471. #~ msgid "Shortcut"
  1472. #~ msgstr "Oikoreitti"
  1473. #~ msgid "!bang"
  1474. #~ msgstr ""
  1475. #~ msgid ""
  1476. #~ "This tab dues not exists in the"
  1477. #~ " user interface, but you can search"
  1478. #~ " in these engines by its !bangs."
  1479. #~ msgstr ""
  1480. #~ msgid "Engines cannot retrieve results."
  1481. #~ msgstr "Moottorit eivät voi palauttaa tuloksia."
  1482. #~ msgid "Please, try again later or find another SearXNG instance."
  1483. #~ msgstr "Yritä uudelleen tai etsi toinen SearXNG-palvelin."
  1484. #~ msgid ""
  1485. #~ "Redirect to open-access versions of "
  1486. #~ "publications when available (plugin required)"
  1487. #~ msgstr ""
  1488. #~ "Uudelleenohjaa julkaisujen open-access-"
  1489. #~ "versioihin kun mahdollista (vaatii "
  1490. #~ "liitännäisen)"
  1491. #~ msgid "Bang"
  1492. #~ msgstr ""
  1493. #~ msgid ""
  1494. #~ "Change how forms are submitted, <a "
  1495. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1496. #~ " rel=\"external\">learn more about request "
  1497. #~ "methods</a>"
  1498. #~ msgstr ""
  1499. #~ "Vaihda tapaa miten lomakkeet lähetetään, "
  1500. #~ "<a "
  1501. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1502. #~ " rel=\"external\">lisätietoja eri "
  1503. #~ "pyyntömenetelmistä</a>"
  1504. #~ msgid "On"
  1505. #~ msgstr "Päällä"
  1506. #~ msgid "Off"
  1507. #~ msgstr "Pois"
  1508. #~ msgid "Enabled"
  1509. #~ msgstr "Käytössä"
  1510. #~ msgid "Disabled"
  1511. #~ msgstr "Ei käytössä"
  1512. #~ msgid ""
  1513. #~ "Perform search immediately if a category"
  1514. #~ " selected. Disable to select multiple "
  1515. #~ "categories. (JavaScript required)"
  1516. #~ msgstr ""
  1517. #~ "Suorita haku välittömästi, jos luokka "
  1518. #~ "valitaan. Poista käytöstä valitaksesi useita"
  1519. #~ " luokkia. (JavaScript vaaditaan)"
  1520. #~ msgid "Vim-like hotkeys"
  1521. #~ msgstr "Vim-kaltaiset pikanäppäimet"
  1522. #~ msgid ""
  1523. #~ "Navigate search results with Vim-like"
  1524. #~ " hotkeys (JavaScript required). Press \"h\""
  1525. #~ " key on main or result page to"
  1526. #~ " get help."
  1527. #~ msgstr ""
  1528. #~ "Liiku hakutulossivuilla Vim-kaltaisin "
  1529. #~ "näppäinkomennoin (JavaScript vaaditaan). Paina "
  1530. #~ "\"h\" pää- tai hakutulossivulla nähdäksesi "
  1531. #~ "ohjeet."
  1532. #~ msgid ""
  1533. #~ "we didn't find any results. Please "
  1534. #~ "use another query or search in "
  1535. #~ "more categories."
  1536. #~ msgstr ""
  1537. #~ "Yhtäkään hakuasi vastaavaa tulosta ei "
  1538. #~ "löytynyt. Etsi käyttäen eri hakuehtoja "
  1539. #~ "tai ulota hakusi nykyistä useampiin eri"
  1540. #~ " luokkiin."
  1541. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1542. #~ msgstr ""
  1543. #~ "Kirjoita tuloksien isäntänimiä uudelleen tai"
  1544. #~ " poista tulokset isäntänimen perusteella"
  1545. #~ msgid "Bytes"
  1546. #~ msgstr "Tavua"
  1547. #~ msgid "kiB"
  1548. #~ msgstr "kiB"
  1549. #~ msgid "MiB"
  1550. #~ msgstr "MiB"
  1551. #~ msgid "GiB"
  1552. #~ msgstr "GiB"
  1553. #~ msgid "TiB"
  1554. #~ msgstr "TiB"
  1555. #~ msgid "Hostname replace"
  1556. #~ msgstr "Isäntänimen korvaus"
  1557. #~ msgid "Error!"
  1558. #~ msgstr "Virhe!"
  1559. #~ msgid "Engines cannot retrieve results"
  1560. #~ msgstr "Moottorit eivät voi palauttaa tuloksia"
  1561. #~ msgid "Start submiting a new issue on GitHub"
  1562. #~ msgstr "Avaa uusi issue GitHubissa"
  1563. #~ msgid "dummy"
  1564. #~ msgstr ""