messages.po 52 KB

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