messages.po 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  1. # Estonian translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Madis Otenurm, 2020
  7. # Madis Otenurm, 2019
  8. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  9. # dogyx <aaronloit@tuta.io>, 2022.
  10. # dom1torii <djmdmitri.a@gmail.com>, 2023.
  11. # return42 <markus.heiser@darmarit.de>, 2023.
  12. # pixrobot <pixrobot@users.noreply.translate.codeberg.org>, 2024.
  13. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  14. # Priit Jõerüüt <jrtcdbrg@users.noreply.translate.codeberg.org>, 2024, 2025.
  15. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  16. # dom1torii <dom1torii@users.noreply.translate.codeberg.org>, 2025.
  17. # pxrb <pxrb@users.noreply.translate.codeberg.org>, 2025.
  18. msgid ""
  19. msgstr ""
  20. "Project-Id-Version: searx\n"
  21. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  22. "POT-Creation-Date: 2025-01-28 06:11+0000\n"
  23. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  24. "Last-Translator: pxrb <pxrb@users.noreply.translate.codeberg.org>\n"
  25. "Language: et\n"
  26. "Language-Team: Estonian "
  27. "<https://translate.codeberg.org/projects/searxng/searxng/et/>\n"
  28. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  29. "MIME-Version: 1.0\n"
  30. "Content-Type: text/plain; charset=utf-8\n"
  31. "Content-Transfer-Encoding: 8bit\n"
  32. "Generated-By: Babel 2.16.0\n"
  33. #. CONSTANT_NAMES['NO_SUBGROUPING']
  34. #: searx/searxng.msg
  35. msgid "without further subgrouping"
  36. msgstr "ilma edasise alagrupeerimiseta"
  37. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  38. #: searx/searxng.msg
  39. msgid "other"
  40. msgstr "muu"
  41. #. CATEGORY_NAMES['FILES']
  42. #: searx/searxng.msg
  43. msgid "files"
  44. msgstr "failid"
  45. #. CATEGORY_NAMES['GENERAL']
  46. #: searx/searxng.msg
  47. msgid "general"
  48. msgstr "üldine"
  49. #. CATEGORY_NAMES['MUSIC']
  50. #: searx/searxng.msg
  51. msgid "music"
  52. msgstr "muusika"
  53. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  54. #: searx/searxng.msg
  55. msgid "social media"
  56. msgstr "sotsiaalmeedia"
  57. #. CATEGORY_NAMES['IMAGES']
  58. #: searx/searxng.msg
  59. msgid "images"
  60. msgstr "pildid"
  61. #. CATEGORY_NAMES['VIDEOS']
  62. #: searx/searxng.msg
  63. msgid "videos"
  64. msgstr "videod"
  65. #. CATEGORY_NAMES['RADIO']
  66. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  67. msgid "radio"
  68. msgstr "raadio"
  69. #. CATEGORY_NAMES['TV']
  70. #: searx/searxng.msg
  71. msgid "tv"
  72. msgstr "tv"
  73. #. CATEGORY_NAMES['IT']
  74. #: searx/searxng.msg
  75. msgid "it"
  76. msgstr "tehnoloogia"
  77. #. CATEGORY_NAMES['NEWS']
  78. #: searx/searxng.msg
  79. msgid "news"
  80. msgstr "uudised"
  81. #. CATEGORY_NAMES['MAP']
  82. #: searx/searxng.msg
  83. msgid "map"
  84. msgstr "kaardid"
  85. #. CATEGORY_NAMES['ONIONS']
  86. #: searx/searxng.msg
  87. msgid "onions"
  88. msgstr "onion-võrgu lingid"
  89. #. CATEGORY_NAMES['SCIENCE']
  90. #: searx/searxng.msg
  91. msgid "science"
  92. msgstr "teadus"
  93. #. CATEGORY_GROUPS['APPS']
  94. #: searx/searxng.msg
  95. msgid "apps"
  96. msgstr "rakendused"
  97. #. CATEGORY_GROUPS['DICTIONARIES']
  98. #: searx/searxng.msg
  99. msgid "dictionaries"
  100. msgstr "sõnastikud"
  101. #. CATEGORY_GROUPS['LYRICS']
  102. #: searx/searxng.msg
  103. msgid "lyrics"
  104. msgstr "laulusõnad"
  105. #. CATEGORY_GROUPS['PACKAGES']
  106. #: searx/searxng.msg
  107. msgid "packages"
  108. msgstr "paketid"
  109. #. CATEGORY_GROUPS['Q_A']
  110. #: searx/searxng.msg
  111. msgid "q&a"
  112. msgstr "k&v"
  113. #. CATEGORY_GROUPS['REPOS']
  114. #: searx/searxng.msg
  115. msgid "repos"
  116. msgstr "hoidlad"
  117. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  118. #: searx/searxng.msg
  119. msgid "software wikis"
  120. msgstr "tarkvara vikid"
  121. #. CATEGORY_GROUPS['WEB']
  122. #: searx/searxng.msg
  123. msgid "web"
  124. msgstr "veeb"
  125. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  126. #: searx/searxng.msg
  127. msgid "scientific publications"
  128. msgstr "teadusväljaanded"
  129. #. STYLE_NAMES['AUTO']
  130. #: searx/searxng.msg
  131. msgid "auto"
  132. msgstr "automaatne"
  133. #. STYLE_NAMES['LIGHT']
  134. #: searx/searxng.msg
  135. msgid "light"
  136. msgstr "hele"
  137. #. STYLE_NAMES['DARK']
  138. #: searx/searxng.msg
  139. msgid "dark"
  140. msgstr "tume"
  141. #. STYLE_NAMES['BLACK']
  142. #: searx/searxng.msg
  143. msgid "black"
  144. msgstr "must"
  145. #. BRAND_CUSTOM_LINKS['UPTIME']
  146. #: searx/searxng.msg
  147. msgid "Uptime"
  148. msgstr "Töövõimeaeg"
  149. #. BRAND_CUSTOM_LINKS['ABOUT']
  150. #: searx/searxng.msg searx/templates/simple/base.html:49
  151. msgid "About"
  152. msgstr "SearXNG teave"
  153. #. WEATHER_TERMS['AVERAGE TEMP.']
  154. #: searx/engines/wttr.py:32 searx/searxng.msg
  155. msgid "Average temp."
  156. msgstr "Keskmine temperatuur"
  157. #. WEATHER_TERMS['CLOUD COVER']
  158. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  159. msgid "Cloud cover"
  160. msgstr "Pilvekate"
  161. #. WEATHER_TERMS['CONDITION']
  162. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  163. #: searx/searxng.msg
  164. msgid "Condition"
  165. msgstr "Olud"
  166. #. WEATHER_TERMS['CURRENT CONDITION']
  167. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  168. #: searx/searxng.msg
  169. msgid "Current condition"
  170. msgstr "Praegused olud"
  171. #. WEATHER_TERMS['EVENING']
  172. #: searx/engines/wttr.py:100 searx/searxng.msg
  173. msgid "Evening"
  174. msgstr "Õhtu"
  175. #. WEATHER_TERMS['FEELS LIKE']
  176. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  177. #: searx/engines/wttr.py:59 searx/searxng.msg
  178. msgid "Feels like"
  179. msgstr "Tundub nagu"
  180. #. WEATHER_TERMS['HUMIDITY']
  181. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  182. #: searx/engines/wttr.py:68 searx/searxng.msg
  183. msgid "Humidity"
  184. msgstr "Niiskus"
  185. #. WEATHER_TERMS['MAX TEMP.']
  186. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  187. #: searx/searxng.msg
  188. msgid "Max temp."
  189. msgstr "Maksimaalne temp."
  190. #. WEATHER_TERMS['MIN TEMP.']
  191. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  192. #: searx/searxng.msg
  193. msgid "Min temp."
  194. msgstr "Minimaalne temp."
  195. #. WEATHER_TERMS['MORNING']
  196. #: searx/engines/wttr.py:100 searx/searxng.msg
  197. msgid "Morning"
  198. msgstr "Hommik"
  199. #. WEATHER_TERMS['NIGHT']
  200. #: searx/engines/wttr.py:100 searx/searxng.msg
  201. msgid "Night"
  202. msgstr "Öö"
  203. #. WEATHER_TERMS['NOON']
  204. #: searx/engines/wttr.py:100 searx/searxng.msg
  205. msgid "Noon"
  206. msgstr "Keskpäev"
  207. #. WEATHER_TERMS['PRESSURE']
  208. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  209. msgid "Pressure"
  210. msgstr "Õhurõhk"
  211. #. WEATHER_TERMS['SUNRISE']
  212. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  213. #: searx/searxng.msg
  214. msgid "Sunrise"
  215. msgstr "Päikesetõus"
  216. #. WEATHER_TERMS['SUNSET']
  217. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  218. #: searx/searxng.msg
  219. msgid "Sunset"
  220. msgstr "Päikeseloojang"
  221. #. WEATHER_TERMS['TEMPERATURE']
  222. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  223. #: searx/engines/wttr.py:55 searx/searxng.msg
  224. msgid "Temperature"
  225. msgstr "Temperatuur"
  226. #. WEATHER_TERMS['UV INDEX']
  227. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  228. #: searx/searxng.msg
  229. msgid "UV index"
  230. msgstr "UV indeks"
  231. #. WEATHER_TERMS['VISIBILITY']
  232. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  233. #: searx/searxng.msg
  234. msgid "Visibility"
  235. msgstr "Nähtavus"
  236. #. WEATHER_TERMS['WIND']
  237. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  238. #: searx/engines/wttr.py:62 searx/searxng.msg
  239. msgid "Wind"
  240. msgstr "Tuul"
  241. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  242. #: searx/engines/lemmy.py:85 searx/searxng.msg
  243. msgid "subscribers"
  244. msgstr "tellijaid"
  245. #. SOCIAL_MEDIA_TERMS['POSTS']
  246. #: searx/engines/lemmy.py:86 searx/searxng.msg
  247. msgid "posts"
  248. msgstr "postitusi"
  249. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  250. #: searx/engines/lemmy.py:87 searx/searxng.msg
  251. msgid "active users"
  252. msgstr "aktiivseid kasutajaid"
  253. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  254. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  255. #: searx/engines/lemmy.py:130 searx/searxng.msg
  256. msgid "comments"
  257. msgstr "kommentaare"
  258. #. SOCIAL_MEDIA_TERMS['USER']
  259. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  260. msgid "user"
  261. msgstr "kasutaja"
  262. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  263. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  264. msgid "community"
  265. msgstr "kogukond"
  266. #. SOCIAL_MEDIA_TERMS['POINTS']
  267. #: searx/engines/hackernews.py:82 searx/searxng.msg
  268. msgid "points"
  269. msgstr "punkte"
  270. #. SOCIAL_MEDIA_TERMS['TITLE']
  271. #: searx/searxng.msg
  272. msgid "title"
  273. msgstr "pealkiri"
  274. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  275. #: searx/engines/hackernews.py:85 searx/searxng.msg
  276. msgid "author"
  277. msgstr "Autor"
  278. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  279. #: searx/engines/discourse.py:149 searx/searxng.msg
  280. msgid "open"
  281. msgstr "ava"
  282. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  283. #: searx/engines/discourse.py:149 searx/searxng.msg
  284. msgid "closed"
  285. msgstr "suletud"
  286. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  287. #: searx/engines/discourse.py:160 searx/searxng.msg
  288. msgid "answered"
  289. msgstr "vastatud"
  290. #: searx/webapp.py:312
  291. msgid "No item found"
  292. msgstr "Üksust ei leitud"
  293. #: searx/engines/qwant.py:288
  294. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:314
  295. msgid "Source"
  296. msgstr "Allikas"
  297. #: searx/webapp.py:316
  298. msgid "Error loading the next page"
  299. msgstr "Viga järgmise lehekülje laadimisel"
  300. #: searx/webapp.py:469 searx/webapp.py:877
  301. msgid "Invalid settings, please edit your preferences"
  302. msgstr "Sobimatud seaded, palun muuda oma eelistusi"
  303. #: searx/webapp.py:485
  304. msgid "Invalid settings"
  305. msgstr "Sobimatud seaded"
  306. #: searx/webapp.py:562 searx/webapp.py:652
  307. msgid "search error"
  308. msgstr "otsingu viga"
  309. #: searx/webutils.py:36
  310. msgid "timeout"
  311. msgstr "päring aegus"
  312. #: searx/webutils.py:37
  313. msgid "parsing error"
  314. msgstr "parsimise viga"
  315. #: searx/webutils.py:38
  316. msgid "HTTP protocol error"
  317. msgstr "HTTP-protokolli viga"
  318. #: searx/webutils.py:39
  319. msgid "network error"
  320. msgstr "võrguviga"
  321. #: searx/webutils.py:40
  322. msgid "SSL error: certificate validation has failed"
  323. msgstr "SSL viga: sertifikaadi valideerimine ei õnnestunud"
  324. #: searx/webutils.py:42
  325. msgid "unexpected crash"
  326. msgstr "ootamatu krahh"
  327. #: searx/webutils.py:49
  328. msgid "HTTP error"
  329. msgstr "HTTP-viga"
  330. #: searx/webutils.py:50
  331. msgid "HTTP connection error"
  332. msgstr "HTTP-ühenduse viga"
  333. #: searx/webutils.py:56
  334. msgid "proxy error"
  335. msgstr "proksiserveri viga"
  336. #: searx/webutils.py:57
  337. msgid "CAPTCHA"
  338. msgstr "ROBOTILÕKS"
  339. #: searx/webutils.py:58
  340. msgid "too many requests"
  341. msgstr "liiga palju päringuid"
  342. #: searx/webutils.py:59
  343. msgid "access denied"
  344. msgstr "ligipääs keelatud"
  345. #: searx/webutils.py:60
  346. msgid "server API error"
  347. msgstr "serveri API viga"
  348. #: searx/webutils.py:79
  349. msgid "Suspended"
  350. msgstr "Peatatud"
  351. #: searx/webutils.py:314
  352. msgid "{minutes} minute(s) ago"
  353. msgstr "{minutes} minut(it) tagasi"
  354. #: searx/webutils.py:315
  355. msgid "{hours} hour(s), {minutes} minute(s) ago"
  356. msgstr "{hours} tund(i), {minutes} minut(it) tagasi"
  357. #: searx/answerers/random.py:69
  358. msgid "Generate different random values"
  359. msgstr "Genereeri erinevaid juhuslikke väärtusi"
  360. #: searx/answerers/statistics.py:36
  361. msgid "/"
  362. msgstr ""
  363. #: searx/engines/openstreetmap.py:158
  364. msgid "Show route in map .."
  365. msgstr ""
  366. #: searx/engines/pdbe.py:96
  367. msgid "{title} (OBSOLETE)"
  368. msgstr "{title} (VANANENUD)"
  369. #: searx/engines/pdbe.py:103
  370. msgid "This entry has been superseded by"
  371. msgstr "See üksus on asendatud"
  372. #: searx/engines/qwant.py:290
  373. msgid "Channel"
  374. msgstr "Kanal"
  375. #: searx/engines/radio_browser.py:105
  376. msgid "bitrate"
  377. msgstr "bitikiirus"
  378. #: searx/engines/radio_browser.py:106
  379. msgid "votes"
  380. msgstr "hääled"
  381. #: searx/engines/radio_browser.py:107
  382. msgid "clicks"
  383. msgstr "klikid"
  384. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  385. #: searx/engines/zlibrary.py:137
  386. msgid "Language"
  387. msgstr "Keel"
  388. #: searx/engines/semantic_scholar.py:78
  389. msgid ""
  390. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  391. "{lastCitationVelocityYear}"
  392. msgstr ""
  393. "{numCitations} aasta tsitaadid {firstCitationVelocityYear} kuni "
  394. "{lastCitationVelocityYear}"
  395. #: searx/engines/tineye.py:47
  396. msgid ""
  397. "Could not read that image url. This may be due to an unsupported file "
  398. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  399. " WebP."
  400. msgstr ""
  401. "Ei saanud lugeda selle pildi linki. Võib-olla pole failivorming toetatud."
  402. " TinEye ainult lubab kasutada ainult järgmisi vorminguid: JPEG, PNG, GIF,"
  403. " BMP, TIFF või WebP."
  404. #: searx/engines/tineye.py:53
  405. msgid ""
  406. "The image is too simple to find matches. TinEye requires a basic level of"
  407. " visual detail to successfully identify matches."
  408. msgstr ""
  409. "Pilt on liiga lihtne, et leida vasteid. TinEye nõuab vastete edukaks "
  410. "tuvastamiseks elementaarseid visuaalseid üksikasju."
  411. #: searx/engines/tineye.py:59
  412. msgid "The image could not be downloaded."
  413. msgstr "Pilti ei saanud alla laadida."
  414. #: searx/engines/zlibrary.py:138
  415. msgid "Book rating"
  416. msgstr "Raamatu hinnang"
  417. #: searx/engines/zlibrary.py:139
  418. msgid "File quality"
  419. msgstr "Faili kvaliteet"
  420. #: searx/plugins/calculator.py:20
  421. msgid "Calculate mathematical expressions via the search bar"
  422. msgstr "Arvuta otsinguribal matemaatilisi avaldisi"
  423. #: searx/plugins/hash_plugin.py:34
  424. msgid "Hash plugin"
  425. msgstr ""
  426. #: searx/plugins/hash_plugin.py:35
  427. msgid "Converts strings to different hash digests."
  428. msgstr "Teisendab sõned erinevateks räsitud sõnumilühenditeks."
  429. #: searx/plugins/hash_plugin.py:62
  430. msgid "hash digest"
  431. msgstr "räsitud sõnumilühend"
  432. #: searx/plugins/hostnames.py:105
  433. msgid "Hostnames plugin"
  434. msgstr "Hostide lisamoodul"
  435. #: searx/plugins/hostnames.py:106
  436. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  437. msgstr ""
  438. "Väärtusta hostide nimesid, eemalda tulemusi või muuda nende järjekorda "
  439. "hosti nime alusel"
  440. #: searx/plugins/oa_doi_rewrite.py:15
  441. msgid "Open Access DOI rewrite"
  442. msgstr "Avatud juurdepääsu DOI ümberkirjutamine"
  443. #: searx/plugins/oa_doi_rewrite.py:16
  444. msgid ""
  445. "Avoid paywalls by redirecting to open-access versions of publications "
  446. "when available"
  447. msgstr ""
  448. "Väldi maksumüüre, suunates võimalusel väljaannete avatud ligipääsuga "
  449. "versioonidele"
  450. #: searx/plugins/self_info.py:37
  451. msgid "Self Information"
  452. msgstr "Eneseteave"
  453. #: searx/plugins/self_info.py:38
  454. msgid ""
  455. "Displays your IP if the query is \"ip\" and your user agent if the query "
  456. "is \"user-agent\"."
  457. msgstr ""
  458. #: searx/plugins/self_info.py:52
  459. msgid "Your IP is: "
  460. msgstr "Sinu arvuti või seadme IP-aadress on: "
  461. #: searx/plugins/self_info.py:55
  462. msgid "Your user-agent is: "
  463. msgstr "Sinu kasutatava brauseri tunnus on: "
  464. #: searx/plugins/tor_check.py:29
  465. msgid "Tor check plugin"
  466. msgstr "Tor kontrollplugin"
  467. #: searx/plugins/tor_check.py:32
  468. msgid ""
  469. "This plugin checks if the address of the request is a Tor exit-node, and "
  470. "informs the user if it is; like check.torproject.org, but from SearXNG."
  471. msgstr ""
  472. "See plugin kontrollib, kas päringu aadress on Tor'i väljumissõlm ja "
  473. "teavitab kasutajat, kui see on nii: nagu check.torproject.org, aga alates"
  474. " SearXNG."
  475. #: searx/plugins/tor_check.py:69
  476. msgid "Could not download the list of Tor exit-nodes from"
  477. msgstr ""
  478. #: searx/plugins/tor_check.py:81
  479. msgid "You are using Tor and it looks like you have the external IP address"
  480. msgstr ""
  481. #: searx/plugins/tor_check.py:85
  482. msgid "You are not using Tor and you have the external IP address"
  483. msgstr ""
  484. #: searx/plugins/tracker_url_remover.py:18
  485. msgid "Tracker URL remover"
  486. msgstr "Jälitajate eemaldus URList"
  487. #: searx/plugins/tracker_url_remover.py:19
  488. msgid "Remove trackers arguments from the returned URL"
  489. msgstr "Eemaldab jälitavad argumendid tagastatud URList"
  490. #: searx/plugins/unit_converter.py:32
  491. msgid "Convert between units"
  492. msgstr "Konverteeri eri ühikute vahel"
  493. #: searx/templates/simple/404.html:4
  494. msgid "Page not found"
  495. msgstr "Lehte ei leitud"
  496. #: searx/templates/simple/404.html:6
  497. #, python-format
  498. msgid "Go to %(search_page)s."
  499. msgstr "Mine lehele %(search_page)s."
  500. #: searx/templates/simple/404.html:6
  501. msgid "search page"
  502. msgstr "otsinguleht"
  503. #: searx/templates/simple/base.html:53
  504. msgid "Donate"
  505. msgstr "Anneta"
  506. #: searx/templates/simple/base.html:57
  507. #: searx/templates/simple/preferences.html:156
  508. msgid "Preferences"
  509. msgstr "Eelistused"
  510. #: searx/templates/simple/base.html:67
  511. msgid "Powered by"
  512. msgstr "Põhineb tarkvaral"
  513. #: searx/templates/simple/base.html:67
  514. msgid "a privacy-respecting, open metasearch engine"
  515. msgstr "üks privaatsust austav, vaba metaotsingumootor"
  516. #: searx/templates/simple/base.html:68
  517. #: searx/templates/simple/result_templates/packages.html:59
  518. msgid "Source code"
  519. msgstr "Lähtekood"
  520. #: searx/templates/simple/base.html:69
  521. msgid "Issue tracker"
  522. msgstr "Veahaldus"
  523. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  524. msgid "Engine stats"
  525. msgstr "Mootori statistika"
  526. #: searx/templates/simple/base.html:72
  527. msgid "Public instances"
  528. msgstr "Avalikud serverid"
  529. #: searx/templates/simple/base.html:75
  530. msgid "Privacy policy"
  531. msgstr "Privaatsuspoliitika"
  532. #: searx/templates/simple/base.html:78
  533. msgid "Contact instance maintainer"
  534. msgstr "Võta ühendust serveri haldajaga"
  535. #: searx/templates/simple/categories.html:26
  536. msgid "Click on the magnifier to perform search"
  537. msgstr "Otsingu teostamiseks klõpsa luubile"
  538. #: searx/templates/simple/macros.html:40
  539. msgid "Length"
  540. msgstr "Pikkus"
  541. #: searx/templates/simple/macros.html:41
  542. msgid "Views"
  543. msgstr "Vaateid"
  544. #: searx/templates/simple/macros.html:42
  545. #: searx/templates/simple/result_templates/files.html:34
  546. #: searx/templates/simple/result_templates/images.html:19
  547. #: searx/templates/simple/result_templates/paper.html:6
  548. msgid "Author"
  549. msgstr "Autor"
  550. #: searx/templates/simple/macros.html:50
  551. msgid "cached"
  552. msgstr "vahemälus"
  553. #: searx/templates/simple/macros.html:50
  554. msgid "proxied"
  555. msgstr "proksiserveris"
  556. #: searx/templates/simple/new_issue.html:64
  557. msgid "Start submitting a new issue on GitHub"
  558. msgstr "Alusta veateate või ettepaneku koostamist GitHubis"
  559. #: searx/templates/simple/new_issue.html:66
  560. msgid "Please check for existing bugs about this engine on GitHub"
  561. msgstr ""
  562. "Eelnevalt palun uuri GitHubist olemasolevate selle otsingumootori "
  563. "sarnasete vigade kohta"
  564. #: searx/templates/simple/new_issue.html:69
  565. msgid "I confirm there is no existing bug about the issue I encounter"
  566. msgstr ""
  567. "Ma kinnitan et mul ei ole olemasolevat viga probleemi kohta millega ma "
  568. "kokku puutun"
  569. #: searx/templates/simple/new_issue.html:71
  570. msgid "If this is a public instance, please specify the URL in the bug report"
  571. msgstr "Palun täpsusta URL veateates, kui tegemist on avaliku serveriga"
  572. #: searx/templates/simple/new_issue.html:72
  573. msgid "Submit a new issue on Github including the above information"
  574. msgstr "Esita Githubis uus viga või probleem, mis sisaldab ülaltoodud teavet"
  575. #: searx/templates/simple/preferences.html:65
  576. msgid "No HTTPS"
  577. msgstr "HTTPS puudub"
  578. #: searx/templates/simple/elements/engines_msg.html:14
  579. #: searx/templates/simple/preferences.html:69
  580. #: searx/templates/simple/preferences.html:70
  581. msgid "View error logs and submit a bug report"
  582. msgstr "Vaata vealogisid ja esita veateade"
  583. #: searx/templates/simple/preferences.html:74
  584. msgid "!bang for this engine"
  585. msgstr "!bang selle mootori jaoks"
  586. #: searx/templates/simple/preferences.html:80
  587. msgid "!bang for its categories"
  588. msgstr "!bang selle kategooriate jaoks"
  589. #: searx/templates/simple/preferences.html:102
  590. #: searx/templates/simple/stats.html:64
  591. msgid "Median"
  592. msgstr "Mediaan"
  593. #: searx/templates/simple/preferences.html:103
  594. #: searx/templates/simple/stats.html:70
  595. msgid "P80"
  596. msgstr "P80"
  597. #: searx/templates/simple/preferences.html:104
  598. #: searx/templates/simple/stats.html:76
  599. msgid "P95"
  600. msgstr "P95"
  601. #: searx/templates/simple/preferences.html:136
  602. msgid "Failed checker test(s): "
  603. msgstr "Ebaõnnestunud kontrolleri test(id): "
  604. #: searx/templates/simple/preferences.html:138
  605. msgid "Errors:"
  606. msgstr "Vead:"
  607. #: searx/templates/simple/preferences.html:163
  608. msgid "General"
  609. msgstr "Üldine"
  610. #: searx/templates/simple/preferences.html:166
  611. msgid "Default categories"
  612. msgstr "Vaikimisi kategooriad"
  613. #: searx/templates/simple/preferences.html:194
  614. msgid "User interface"
  615. msgstr "Kasutajaliides"
  616. #: searx/templates/simple/preferences.html:217
  617. msgid "Privacy"
  618. msgstr "Privaatsus"
  619. #: searx/templates/simple/preferences.html:232
  620. msgid "Engines"
  621. msgstr "Otsingumootorid"
  622. #: searx/templates/simple/preferences.html:234
  623. msgid "Currently used search engines"
  624. msgstr "Hetkel kasutatud otsingumootorid"
  625. #: searx/templates/simple/preferences.html:243
  626. msgid "Special Queries"
  627. msgstr "Spetsiaalsed päringud"
  628. #: searx/templates/simple/preferences.html:251
  629. msgid "Cookies"
  630. msgstr "Küpsised"
  631. #: searx/templates/simple/results.html:30
  632. msgid "Number of results"
  633. msgstr "Tulemuste arv"
  634. #: searx/templates/simple/results.html:36
  635. msgid "Info"
  636. msgstr "Teave"
  637. #: searx/templates/simple/results.html:77
  638. msgid "Back to top"
  639. msgstr "Tagasi üles"
  640. #: searx/templates/simple/results.html:95
  641. msgid "Previous page"
  642. msgstr "Eelmine lehekülg"
  643. #: searx/templates/simple/results.html:113
  644. msgid "Next page"
  645. msgstr "Järgmine lehekülg"
  646. #: searx/templates/simple/search.html:3
  647. msgid "Display the front page"
  648. msgstr "Esilehe kuvamine"
  649. #: searx/templates/simple/search.html:9
  650. #: searx/templates/simple/simple_search.html:5
  651. msgid "Search for..."
  652. msgstr "Otsi..."
  653. #: searx/templates/simple/search.html:10
  654. #: searx/templates/simple/simple_search.html:6
  655. msgid "clear"
  656. msgstr "selge"
  657. #: searx/templates/simple/search.html:11
  658. #: searx/templates/simple/simple_search.html:7
  659. msgid "search"
  660. msgstr "otsing"
  661. #: searx/templates/simple/stats.html:21
  662. msgid "There is currently no data available. "
  663. msgstr "Hetkel andmed puuduvad."
  664. #: searx/templates/simple/preferences/engines.html:24
  665. #: searx/templates/simple/stats.html:25
  666. msgid "Engine name"
  667. msgstr "Otsingumootori nimi"
  668. #: searx/templates/simple/stats.html:26
  669. msgid "Scores"
  670. msgstr "Skoorid"
  671. #: searx/templates/simple/stats.html:27
  672. msgid "Result count"
  673. msgstr "Tulemuste arv"
  674. #: searx/templates/simple/elements/engines_msg.html:7
  675. #: searx/templates/simple/preferences/engines.html:31
  676. #: searx/templates/simple/stats.html:28
  677. msgid "Response time"
  678. msgstr "Vastamise aeg"
  679. #: searx/templates/simple/preferences/engines.html:35
  680. #: searx/templates/simple/stats.html:29
  681. msgid "Reliability"
  682. msgstr "Usaldusväärsus"
  683. #: searx/templates/simple/stats.html:59
  684. msgid "Total"
  685. msgstr "Kokku"
  686. #: searx/templates/simple/stats.html:60
  687. msgid "HTTP"
  688. msgstr "HTTP"
  689. #: searx/templates/simple/stats.html:61
  690. msgid "Processing"
  691. msgstr "Töötleme"
  692. #: searx/templates/simple/stats.html:99
  693. msgid "Warnings"
  694. msgstr "Hoiatused"
  695. #: searx/templates/simple/stats.html:99
  696. msgid "Errors and exceptions"
  697. msgstr "Vead ja erandid"
  698. #: searx/templates/simple/stats.html:105
  699. msgid "Exception"
  700. msgstr "Erand"
  701. #: searx/templates/simple/stats.html:107
  702. msgid "Message"
  703. msgstr "Sõnum"
  704. #: searx/templates/simple/stats.html:109
  705. msgid "Percentage"
  706. msgstr "Protsentuaalne osakaal"
  707. #: searx/templates/simple/stats.html:111
  708. msgid "Parameter"
  709. msgstr "Parameeter"
  710. #: searx/templates/simple/result_templates/files.html:36
  711. #: searx/templates/simple/stats.html:119
  712. msgid "Filename"
  713. msgstr "Failinimi"
  714. #: searx/templates/simple/stats.html:120
  715. msgid "Function"
  716. msgstr "Funktsioon"
  717. #: searx/templates/simple/stats.html:121
  718. msgid "Code"
  719. msgstr "Kood"
  720. #: searx/templates/simple/stats.html:128
  721. msgid "Checker"
  722. msgstr "Kontrollija"
  723. #: searx/templates/simple/stats.html:131
  724. msgid "Failed test"
  725. msgstr "Ebaõnnestunud test"
  726. #: searx/templates/simple/stats.html:132
  727. msgid "Comment(s)"
  728. msgstr "Kommentaar(id)"
  729. #: searx/templates/simple/answer/translations.html:12
  730. #: searx/templates/simple/preferences/answerers.html:8
  731. msgid "Examples"
  732. msgstr "Näited"
  733. #: searx/templates/simple/answer/translations.html:21
  734. msgid "Definitions"
  735. msgstr ""
  736. #: searx/templates/simple/answer/translations.html:30
  737. msgid "Synonyms"
  738. msgstr "Sünonüümid"
  739. #: searx/templates/simple/elements/answers.html:2
  740. msgid "Answers"
  741. msgstr "Vastused"
  742. #: searx/templates/simple/elements/apis.html:3
  743. msgid "Download results"
  744. msgstr "Laadi tulemused alla"
  745. #: searx/templates/simple/elements/corrections.html:2
  746. msgid "Try searching for:"
  747. msgstr "Proovi otsida:"
  748. #: searx/templates/simple/elements/engines_msg.html:4
  749. msgid "Messages from the search engines"
  750. msgstr "Sõnumid otsingumootorist"
  751. #: searx/templates/simple/elements/engines_msg.html:7
  752. msgid "seconds"
  753. msgstr "sekundit"
  754. #: searx/templates/simple/elements/search_url.html:3
  755. msgid "Search URL"
  756. msgstr "Otsingu URL"
  757. #: searx/templates/simple/elements/search_url.html:4
  758. #: searx/templates/simple/preferences/cookies.html:54
  759. msgid "Copied"
  760. msgstr "Kopeeritud"
  761. #: searx/templates/simple/elements/search_url.html:4
  762. #: searx/templates/simple/preferences/cookies.html:54
  763. msgid "Copy"
  764. msgstr "Kopeeri"
  765. #: searx/templates/simple/elements/suggestions.html:3
  766. msgid "Suggestions"
  767. msgstr "Soovitused"
  768. #: searx/templates/simple/filters/languages.html:1
  769. #: searx/templates/simple/preferences/language.html:2
  770. msgid "Search language"
  771. msgstr "Otsingukeel"
  772. #: searx/templates/simple/filters/languages.html:4
  773. #: searx/templates/simple/preferences/language.html:7
  774. msgid "Default language"
  775. msgstr "Vaikimisi keel"
  776. #: searx/templates/simple/filters/languages.html:8
  777. #: searx/templates/simple/preferences/language.html:11
  778. msgid "Auto-detect"
  779. msgstr "Tuvasta automaatselt"
  780. #: searx/templates/simple/filters/safesearch.html:1
  781. #: searx/templates/simple/filters/safesearch.html:2
  782. #: searx/templates/simple/filters/safesearch.html:3
  783. #: searx/templates/simple/filters/safesearch.html:4
  784. #: searx/templates/simple/preferences/engines.html:27
  785. #: searx/templates/simple/preferences/safesearch.html:2
  786. msgid "SafeSearch"
  787. msgstr "Ohutu otsing"
  788. #: searx/templates/simple/filters/safesearch.html:2
  789. #: searx/templates/simple/preferences/safesearch.html:7
  790. msgid "Strict"
  791. msgstr "Range"
  792. #: searx/templates/simple/filters/safesearch.html:3
  793. #: searx/templates/simple/preferences/safesearch.html:11
  794. msgid "Moderate"
  795. msgstr "Mõõdukas"
  796. #: searx/templates/simple/filters/safesearch.html:4
  797. #: searx/templates/simple/preferences/safesearch.html:15
  798. msgid "None"
  799. msgstr "Puudub"
  800. #: searx/templates/simple/filters/time_range.html:1
  801. #: searx/templates/simple/preferences/engines.html:28
  802. msgid "Time range"
  803. msgstr "Ajavahemik"
  804. #: searx/templates/simple/filters/time_range.html:3
  805. msgid "Anytime"
  806. msgstr "Igal ajal"
  807. #: searx/templates/simple/filters/time_range.html:6
  808. msgid "Last day"
  809. msgstr "Viimane päev"
  810. #: searx/templates/simple/filters/time_range.html:9
  811. msgid "Last week"
  812. msgstr "Viimane nädal"
  813. #: searx/templates/simple/filters/time_range.html:12
  814. msgid "Last month"
  815. msgstr "Viimane kuu"
  816. #: searx/templates/simple/filters/time_range.html:15
  817. msgid "Last year"
  818. msgstr "Viimane aasta"
  819. #: searx/templates/simple/messages/no_cookies.html:3
  820. msgid "Information!"
  821. msgstr "Tähelepanu!"
  822. #: searx/templates/simple/messages/no_cookies.html:4
  823. msgid "currently, there are no cookies defined."
  824. msgstr "hetkel pole ühtegi küpsist määratud."
  825. #: searx/templates/simple/messages/no_results.html:6
  826. msgid "Sorry!"
  827. msgstr "Vabandust!"
  828. #: searx/templates/simple/messages/no_results.html:12
  829. msgid "No results were found. You can try to:"
  830. msgstr "Tulemusi ei leitud. Võid proovida:"
  831. #: searx/templates/simple/messages/no_results.html:14
  832. msgid "There are no more results. You can try to:"
  833. msgstr "Rohkem tulemusi ei ole. Võid proovida:"
  834. #: searx/templates/simple/messages/no_results.html:19
  835. msgid "Refresh the page."
  836. msgstr "Värskenda lehekülge."
  837. #: searx/templates/simple/messages/no_results.html:20
  838. msgid "Search for another query or select another category (above)."
  839. msgstr "Tee muu päringu või vali muu kategooria (üleval)."
  840. #: searx/templates/simple/messages/no_results.html:21
  841. msgid "Change the search engine used in the preferences:"
  842. msgstr "Muuda eelistustes kasutatud otsingumootorit:"
  843. #: searx/templates/simple/messages/no_results.html:22
  844. msgid "Switch to another instance:"
  845. msgstr "Vahetage teisele SearxNG serverile:"
  846. #: searx/templates/simple/messages/no_results.html:24
  847. msgid "Search for another query or select another category."
  848. msgstr "Tee uus otsing või vali muu kategooria."
  849. #: searx/templates/simple/messages/no_results.html:25
  850. msgid "Go back to the previous page using the previous page button."
  851. msgstr "Mine tagasi eelmisele lehele, kasutades nuppu eelmine lehekülg."
  852. #: searx/templates/simple/preferences/answerers.html:4
  853. #: searx/templates/simple/preferences/engines.html:23
  854. msgid "Allow"
  855. msgstr "Luba"
  856. #: searx/templates/simple/preferences/answerers.html:5
  857. msgid "Keywords (first word in query)"
  858. msgstr ""
  859. #: searx/templates/simple/preferences/answerers.html:6
  860. #: searx/templates/simple/result_templates/packages.html:7
  861. msgid "Name"
  862. msgstr "Nimi"
  863. #: searx/templates/simple/preferences/answerers.html:7
  864. msgid "Description"
  865. msgstr "Kirjeldus"
  866. #: searx/templates/simple/preferences/answerers.html:13
  867. msgid "This is the list of SearXNG's instant answering modules."
  868. msgstr "See on SearXNGi kohese kiirvastuste moodulite loend."
  869. #: searx/templates/simple/preferences/answerers.html:29
  870. msgid "This is the list of plugins."
  871. msgstr "See on pluginate nimekiri."
  872. #: searx/templates/simple/preferences/autocomplete.html:2
  873. msgid "Autocomplete"
  874. msgstr "Automaattäide"
  875. #: searx/templates/simple/preferences/autocomplete.html:15
  876. msgid "Find stuff as you type"
  877. msgstr "Otsi asju kirjutamise ajal"
  878. #: searx/templates/simple/preferences/center_alignment.html:2
  879. msgid "Center Alignment"
  880. msgstr "Keskele joondamine"
  881. #: searx/templates/simple/preferences/center_alignment.html:14
  882. msgid "Displays results in the center of the page (Oscar layout)."
  883. msgstr "Kuvab tulemused lehekülje keskel (Oscari paigutus)."
  884. #: searx/templates/simple/preferences/cookies.html:2
  885. msgid ""
  886. "This is the list of cookies and their values SearXNG is storing on your "
  887. "computer."
  888. msgstr ""
  889. "See on nimekiri küpsistest ja nende väärtustest, mida SearXNG sinu "
  890. "arvutisse salvestab."
  891. #: searx/templates/simple/preferences/cookies.html:3
  892. msgid "With that list, you can assess SearXNG transparency."
  893. msgstr "Selle loetelu abil saad hinnata SearXNG läbipaistvust."
  894. #: searx/templates/simple/preferences/cookies.html:9
  895. msgid "Cookie name"
  896. msgstr "Küpsise nimi"
  897. #: searx/templates/simple/preferences/cookies.html:10
  898. msgid "Value"
  899. msgstr "Väärtus"
  900. #: searx/templates/simple/preferences/cookies.html:23
  901. msgid "Search URL of the currently saved preferences"
  902. msgstr "Otsingu URL hetkel salvestatud eelistuste kohta"
  903. #: searx/templates/simple/preferences/cookies.html:32
  904. msgid ""
  905. "Note: specifying custom settings in the search URL can reduce privacy by "
  906. "leaking data to the clicked result sites."
  907. msgstr ""
  908. "Märkus: lekitades andmed klõpsatud tulemuste saitidele võib täpsemate "
  909. "seadete määramine otsingu URLis vähendada privaatsust."
  910. #: searx/templates/simple/preferences/cookies.html:35
  911. msgid "URL to restore your preferences in another browser"
  912. msgstr "URL et taastada oma eelistused teises brauseris"
  913. #: searx/templates/simple/preferences/cookies.html:43
  914. msgid ""
  915. "Specifying custom settings in the preferences URL can be used to sync "
  916. "preferences across devices."
  917. msgstr ""
  918. "Kohandatud seadete määramine eelistuste URL-i saad kasutada eelistuste "
  919. "sünkroniseerimiseks eri seadmete vahel."
  920. #: searx/templates/simple/preferences/cookies.html:46
  921. msgid "Copy preferences hash"
  922. msgstr "Kopeeri eelistuste räsi"
  923. #: searx/templates/simple/preferences/cookies.html:57
  924. msgid "Insert copied preferences hash (without URL) to restore"
  925. msgstr "Taastamiseks sisesta kopeeritud eelistuste räsi (ilma URL-aadressita)"
  926. #: searx/templates/simple/preferences/cookies.html:59
  927. msgid "Preferences hash"
  928. msgstr "Eelistuste räsi"
  929. #: searx/templates/simple/preferences/doi_resolver.html:1
  930. msgid "Digital Object Identifier (DOI)"
  931. msgstr ""
  932. #: searx/templates/simple/preferences/doi_resolver.html:6
  933. msgid "Open Access DOI resolver"
  934. msgstr "Open Access DOI resolver"
  935. #: searx/templates/simple/preferences/doi_resolver.html:18
  936. msgid "Select service used by DOI rewrite"
  937. msgstr "Vali teenus mida kasutab DOI ümberkirjutamine"
  938. #: searx/templates/simple/preferences/engines.html:9
  939. msgid ""
  940. "This tab does not exists in the user interface, but you can search in "
  941. "these engines by its !bangs."
  942. msgstr ""
  943. "Seda vahekaarti ei ole kasutajaliideses olemas, kuid sa saad otsida neis "
  944. "mootorites selle !bang järgi."
  945. #: searx/templates/simple/preferences/engines.html:15
  946. msgid "Enable all"
  947. msgstr "Luba kõik"
  948. #: searx/templates/simple/preferences/engines.html:16
  949. msgid "Disable all"
  950. msgstr "Keela kõik"
  951. #: searx/templates/simple/preferences/engines.html:25
  952. msgid "!bang"
  953. msgstr "!bang"
  954. #: searx/templates/simple/preferences/engines.html:26
  955. msgid "Supports selected language"
  956. msgstr "Toetab valitud keelt"
  957. #: searx/templates/simple/preferences/engines.html:29
  958. msgid "Weight"
  959. msgstr "Kaal"
  960. #: searx/templates/simple/preferences/engines.html:33
  961. msgid "Max time"
  962. msgstr "Maksimaalne aeg"
  963. #: searx/templates/simple/preferences/favicon.html:2
  964. msgid "Favicon Resolver"
  965. msgstr "Saidiikoonide kuvamine"
  966. #: searx/templates/simple/preferences/favicon.html:15
  967. msgid "Display favicons near search results"
  968. msgstr "Kuva otsingutulemuste kõrval saidiikoone"
  969. #: searx/templates/simple/preferences/footer.html:2
  970. msgid ""
  971. "These settings are stored in your cookies, this allows us not to store "
  972. "this data about you."
  973. msgstr ""
  974. "Need seaded salvestatame sinu brauseri küpsistes ja see annab meile "
  975. "võimaluse sinu kohta andmeid meie serveris mitte salvestada."
  976. #: searx/templates/simple/preferences/footer.html:3
  977. msgid ""
  978. "These cookies serve your sole convenience, we don't use these cookies to "
  979. "track you."
  980. msgstr ""
  981. "Need küpsised on vaid mugavuse tarbeks, me ei kasuta neid sinu "
  982. "jälitamiseks."
  983. #: searx/templates/simple/preferences/footer.html:6
  984. msgid "Save"
  985. msgstr "Salvesta"
  986. #: searx/templates/simple/preferences/footer.html:9
  987. msgid "Reset defaults"
  988. msgstr "Lähtesta vaikeseaded"
  989. #: searx/templates/simple/preferences/footer.html:13
  990. msgid "Back"
  991. msgstr "Tagasi"
  992. #: searx/templates/simple/preferences/hotkeys.html:2
  993. msgid "Hotkeys"
  994. msgstr "Kiirklahvid"
  995. #: searx/templates/simple/preferences/hotkeys.html:13
  996. msgid "Vim-like"
  997. msgstr "Vim-taoline"
  998. #: searx/templates/simple/preferences/hotkeys.html:18
  999. msgid ""
  1000. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1001. "key on main or result page to get help."
  1002. msgstr ""
  1003. "Otsingutulemustes navigeerimine kiirklahvide abil (vajalik JavaScript). "
  1004. "Abi saamiseks vajuta põhi või tulemuslehel klahvi \"h\"."
  1005. #: searx/templates/simple/preferences/image_proxy.html:2
  1006. msgid "Image proxy"
  1007. msgstr "Pildiproksi"
  1008. #: searx/templates/simple/preferences/image_proxy.html:14
  1009. msgid "Proxying image results through SearXNG"
  1010. msgstr "Pildiotsingu tulemuste edastamine SearXNG kaudu"
  1011. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1012. msgid "Infinite scroll"
  1013. msgstr "Lõpmatu kerimine"
  1014. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1015. msgid "Automatically load next page when scrolling to bottom of current page"
  1016. msgstr "Laadi lehe lõppu kerimisel järgmine leht automaatselt"
  1017. #: searx/templates/simple/preferences/language.html:24
  1018. msgid "What language do you prefer for search?"
  1019. msgstr "Mis keelt sa otsinguks eelistad?"
  1020. #: searx/templates/simple/preferences/language.html:25
  1021. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1022. msgstr "Rt SearXNG tuvastaks sinu päringu keele vali \"Automaatne tuvastamine\"."
  1023. #: searx/templates/simple/preferences/method.html:2
  1024. msgid "HTTP Method"
  1025. msgstr "HTTP-meetod"
  1026. #: searx/templates/simple/preferences/method.html:14
  1027. msgid "Change how forms are submitted"
  1028. msgstr "Muuda vormide esitamise viisi"
  1029. #: searx/templates/simple/preferences/query_in_title.html:2
  1030. msgid "Query in the page's title"
  1031. msgstr "Päring lehekülje pealkirjas"
  1032. #: searx/templates/simple/preferences/query_in_title.html:14
  1033. msgid ""
  1034. "When enabled, the result page's title contains your query. Your browser "
  1035. "can record this title"
  1036. msgstr ""
  1037. "Kui see on lubatud, sisaldab tulemuslehe pealkiri sinu päringut. Sinu "
  1038. "brauser võib selle pealkirja salvestada"
  1039. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1040. msgid "Results on new tabs"
  1041. msgstr "Tulemused uutel kaartidel"
  1042. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1043. msgid "Open result links on new browser tabs"
  1044. msgstr "Ava tulemuste lingid uutel brauserikaartidel"
  1045. #: searx/templates/simple/preferences/safesearch.html:20
  1046. msgid "Filter content"
  1047. msgstr "Filtreeri sisu"
  1048. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1049. msgid "Search on category select"
  1050. msgstr "Otsi kategooria valimisel"
  1051. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1052. msgid ""
  1053. "Perform search immediately if a category selected. Disable to select "
  1054. "multiple categories"
  1055. msgstr ""
  1056. "Teosta otsing kohe kui kategooria on valitud. Mitme kategooria valimiseks"
  1057. " keela see eelistus"
  1058. #: searx/templates/simple/preferences/theme.html:2
  1059. msgid "Theme"
  1060. msgstr "Teema"
  1061. #: searx/templates/simple/preferences/theme.html:14
  1062. msgid "Change SearXNG layout"
  1063. msgstr "Muuda SearXNG paigutust"
  1064. #: searx/templates/simple/preferences/theme.html:19
  1065. msgid "Theme style"
  1066. msgstr "Teema stiil"
  1067. #: searx/templates/simple/preferences/theme.html:31
  1068. msgid "Choose auto to follow your browser settings"
  1069. msgstr "Oma brauseri seadistuste järgimiseks vali \"automaatne\""
  1070. #: searx/templates/simple/preferences/tokens.html:2
  1071. msgid "Engine tokens"
  1072. msgstr "Otsingumootori tunnusload"
  1073. #: searx/templates/simple/preferences/tokens.html:9
  1074. msgid "Access tokens for private engines"
  1075. msgstr "Ligipääsu tunnusload privaatsetele otsingumootoritele"
  1076. #: searx/templates/simple/preferences/ui_locale.html:2
  1077. msgid "Interface language"
  1078. msgstr "Kasutajaliidese keel"
  1079. #: searx/templates/simple/preferences/ui_locale.html:14
  1080. msgid "Change the language of the layout"
  1081. msgstr "Muuda paigutuse keelt"
  1082. #: searx/templates/simple/preferences/urlformatting.html:2
  1083. msgid "URL formatting"
  1084. msgstr "Võrguaadressi vorming"
  1085. #: searx/templates/simple/preferences/urlformatting.html:8
  1086. msgid "Pretty"
  1087. msgstr "Ilus"
  1088. #: searx/templates/simple/preferences/urlformatting.html:13
  1089. msgid "Full"
  1090. msgstr "Terviklik"
  1091. #: searx/templates/simple/preferences/urlformatting.html:18
  1092. msgid "Host"
  1093. msgstr "Hostikohane"
  1094. #: searx/templates/simple/preferences/urlformatting.html:23
  1095. msgid "Change result URL formatting"
  1096. msgstr "Muuda võrguaadressi vormingut otsinguvastustes"
  1097. #: searx/templates/simple/result_templates/code.html:13
  1098. msgid "repo"
  1099. msgstr "hoidla"
  1100. #: searx/templates/simple/result_templates/default.html:6
  1101. #: searx/templates/simple/result_templates/files.html:8
  1102. #: searx/templates/simple/result_templates/files.html:11
  1103. msgid "show media"
  1104. msgstr "kuva meedia"
  1105. #: searx/templates/simple/result_templates/default.html:6
  1106. #: searx/templates/simple/result_templates/files.html:8
  1107. msgid "hide media"
  1108. msgstr "peida meedia"
  1109. #: searx/templates/simple/result_templates/default.html:14
  1110. #: searx/templates/simple/result_templates/videos.html:14
  1111. msgid "This site did not provide any description."
  1112. msgstr "See sait ei andnud mingit kirjeldust."
  1113. #: searx/templates/simple/result_templates/files.html:38
  1114. #: searx/templates/simple/result_templates/images.html:22
  1115. #: searx/templates/simple/result_templates/torrent.html:11
  1116. msgid "Filesize"
  1117. msgstr "Failisuurus"
  1118. #: searx/templates/simple/result_templates/files.html:40
  1119. msgid "Date"
  1120. msgstr "Kuupäev"
  1121. #: searx/templates/simple/result_templates/files.html:42
  1122. #: searx/templates/simple/result_templates/paper.html:24
  1123. msgid "Type"
  1124. msgstr "Tüüp"
  1125. #: searx/templates/simple/result_templates/images.html:20
  1126. msgid "Resolution"
  1127. msgstr "Resolutsioon"
  1128. #: searx/templates/simple/result_templates/images.html:21
  1129. msgid "Format"
  1130. msgstr "Vorming"
  1131. #: searx/templates/simple/result_templates/images.html:24
  1132. msgid "Engine"
  1133. msgstr "Otsingumootor"
  1134. #: searx/templates/simple/result_templates/images.html:25
  1135. msgid "View source"
  1136. msgstr "Vaata lähtekoodi"
  1137. #: searx/templates/simple/result_templates/map.html:12
  1138. msgid "address"
  1139. msgstr "aadress"
  1140. #: searx/templates/simple/result_templates/map.html:43
  1141. msgid "show map"
  1142. msgstr "näita kaarti"
  1143. #: searx/templates/simple/result_templates/map.html:43
  1144. msgid "hide map"
  1145. msgstr "peida kaart"
  1146. #: searx/templates/simple/result_templates/packages.html:12
  1147. msgid "Version"
  1148. msgstr "Versioon"
  1149. #: searx/templates/simple/result_templates/packages.html:18
  1150. msgid "Maintainer"
  1151. msgstr "Haldaja"
  1152. #: searx/templates/simple/result_templates/packages.html:24
  1153. msgid "Updated at"
  1154. msgstr "Uuendatud"
  1155. #: searx/templates/simple/result_templates/packages.html:30
  1156. #: searx/templates/simple/result_templates/paper.html:25
  1157. msgid "Tags"
  1158. msgstr "Sildid"
  1159. #: searx/templates/simple/result_templates/packages.html:36
  1160. msgid "Popularity"
  1161. msgstr "Populaarsus"
  1162. #: searx/templates/simple/result_templates/packages.html:42
  1163. msgid "License"
  1164. msgstr "Litsents"
  1165. #: searx/templates/simple/result_templates/packages.html:52
  1166. msgid "Project"
  1167. msgstr "Projekt"
  1168. #: searx/templates/simple/result_templates/packages.html:55
  1169. msgid "Project homepage"
  1170. msgstr "Projekti koduleht"
  1171. #: searx/templates/simple/result_templates/paper.html:5
  1172. msgid "Published date"
  1173. msgstr "Avaldamise kuupäev"
  1174. #: searx/templates/simple/result_templates/paper.html:9
  1175. msgid "Journal"
  1176. msgstr "Ajakiri"
  1177. #: searx/templates/simple/result_templates/paper.html:22
  1178. msgid "Editor"
  1179. msgstr "Toimetaja"
  1180. #: searx/templates/simple/result_templates/paper.html:23
  1181. msgid "Publisher"
  1182. msgstr "Väljaandja"
  1183. #: searx/templates/simple/result_templates/paper.html:26
  1184. msgid "DOI"
  1185. msgstr "DOI"
  1186. #: searx/templates/simple/result_templates/paper.html:27
  1187. msgid "ISSN"
  1188. msgstr "ISSN"
  1189. #: searx/templates/simple/result_templates/paper.html:28
  1190. msgid "ISBN"
  1191. msgstr "ISBN"
  1192. #: searx/templates/simple/result_templates/paper.html:33
  1193. msgid "PDF"
  1194. msgstr "PDF"
  1195. #: searx/templates/simple/result_templates/paper.html:34
  1196. msgid "HTML"
  1197. msgstr "HTML"
  1198. #: searx/templates/simple/result_templates/torrent.html:6
  1199. msgid "magnet link"
  1200. msgstr "magnet-link"
  1201. #: searx/templates/simple/result_templates/torrent.html:7
  1202. msgid "torrent file"
  1203. msgstr "torrentifail"
  1204. #: searx/templates/simple/result_templates/torrent.html:9
  1205. msgid "Seeder"
  1206. msgstr "Seemendaja"
  1207. #: searx/templates/simple/result_templates/torrent.html:9
  1208. msgid "Leecher"
  1209. msgstr "Kaanija"
  1210. #: searx/templates/simple/result_templates/torrent.html:13
  1211. msgid "Number of Files"
  1212. msgstr "Failide arv"
  1213. #: searx/templates/simple/result_templates/videos.html:6
  1214. msgid "show video"
  1215. msgstr "näita videot"
  1216. #: searx/templates/simple/result_templates/videos.html:6
  1217. msgid "hide video"
  1218. msgstr "peida video"
  1219. #~ msgid "Engine time (sec)"
  1220. #~ msgstr "Mootori aeg (s)"
  1221. #~ msgid "Page loads (sec)"
  1222. #~ msgstr "Lehe laadimisi (s)"
  1223. #~ msgid "Errors"
  1224. #~ msgstr "Vead"
  1225. #~ msgid "CAPTCHA required"
  1226. #~ msgstr "CAPTCHA nõutud"
  1227. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1228. #~ msgstr "Kirjuta võimalusel HTTP lingid HTTPSiks"
  1229. #~ msgid ""
  1230. #~ "Results are opened in the same "
  1231. #~ "window by default. This plugin "
  1232. #~ "overwrites the default behaviour to open"
  1233. #~ " links on new tabs/windows. (JavaScript "
  1234. #~ "required)"
  1235. #~ msgstr ""
  1236. #~ "Tulemused avatakse vaikimisi samas aknas. "
  1237. #~ "See plugin kirjutab vaikimisi käitumise "
  1238. #~ "üle, et avada lingid uutel "
  1239. #~ "kaartidel/akendel. (Nõuab JavaScripti)"
  1240. #~ msgid "Color"
  1241. #~ msgstr "Värv"
  1242. #~ msgid "Blue (default)"
  1243. #~ msgstr "Sinine (vaikimisi)"
  1244. #~ msgid "Violet"
  1245. #~ msgstr "Violetne"
  1246. #~ msgid "Green"
  1247. #~ msgstr "Roheline"
  1248. #~ msgid "Cyan"
  1249. #~ msgstr "Erksinine"
  1250. #~ msgid "Orange"
  1251. #~ msgstr "Oranž"
  1252. #~ msgid "Red"
  1253. #~ msgstr "Punane"
  1254. #~ msgid "Category"
  1255. #~ msgstr "Kategooria"
  1256. #~ msgid "Block"
  1257. #~ msgstr "Keela"
  1258. #~ msgid "original context"
  1259. #~ msgstr "originaalne kontekst"
  1260. #~ msgid "Plugins"
  1261. #~ msgstr "Pluginad"
  1262. #~ msgid "Answerers"
  1263. #~ msgstr "Vastajad"
  1264. #~ msgid "Avg. time"
  1265. #~ msgstr "Keskmine aeg"
  1266. #~ msgid "show details"
  1267. #~ msgstr "kuva andmeid"
  1268. #~ msgid "hide details"
  1269. #~ msgstr "peida andmed"
  1270. #~ msgid "Load more..."
  1271. #~ msgstr "Laadi juurde..."
  1272. #~ msgid "Loading..."
  1273. #~ msgstr "Laadimine..."
  1274. #~ msgid "Change searx layout"
  1275. #~ msgstr "Muuda searxi paigutust"
  1276. #~ msgid "Proxying image results through searx"
  1277. #~ msgstr "Proksin pilditulemusi läbi searxi"
  1278. #~ msgid "This is the list of searx's instant answering modules."
  1279. #~ msgstr "See on searxi koheste vastajate moodulite nimekiri."
  1280. #~ msgid ""
  1281. #~ "This is the list of cookies and"
  1282. #~ " their values searx is storing on "
  1283. #~ "your computer."
  1284. #~ msgstr ""
  1285. #~ "See on küpsiste ja nende väärtuste "
  1286. #~ "nimekiri, mida searx hoiab sinu arvutis."
  1287. #~ msgid "With that list, you can assess searx transparency."
  1288. #~ msgstr "Selle nimekirjaga saad sa hinnata searxi läbipaistvust."
  1289. #~ msgid "It look like you are using searx first time."
  1290. #~ msgstr "Tundub, et kasutad searxi esimest korda."
  1291. #~ msgid "Please, try again later or find another searx instance."
  1292. #~ msgstr "Palun proovi hiljem uuesti või leia teine searxi eksemplar."
  1293. #~ msgid "Themes"
  1294. #~ msgstr "Teemad"
  1295. #~ msgid "Reliablity"
  1296. #~ msgstr ""
  1297. #~ msgid ""
  1298. #~ "When enabled, the result page's title"
  1299. #~ " contains your query. Your browser "
  1300. #~ "can record this title."
  1301. #~ msgstr ""
  1302. #~ msgid "Method"
  1303. #~ msgstr "Meetod"
  1304. #~ msgid ""
  1305. #~ "This tab does not show up for "
  1306. #~ "search results but you can search "
  1307. #~ "the engines listed here via bangs."
  1308. #~ msgstr ""
  1309. #~ msgid "Advanced settings"
  1310. #~ msgstr "Täpsemad seaded"
  1311. #~ msgid "Close"
  1312. #~ msgstr "Sulge"
  1313. #~ msgid "Language"
  1314. #~ msgstr "Keel"
  1315. #~ msgid "broken"
  1316. #~ msgstr "katki"
  1317. #~ msgid "supported"
  1318. #~ msgstr "toetatud"
  1319. #~ msgid "not supported"
  1320. #~ msgstr "mittetoetatud"
  1321. #~ msgid "about"
  1322. #~ msgstr "teave"
  1323. #~ msgid "Avg."
  1324. #~ msgstr "Keskmine."
  1325. #~ msgid "User Interface"
  1326. #~ msgstr "Kasutajaliides"
  1327. #~ msgid "Choose style for this theme"
  1328. #~ msgstr "Vali sellele teemale stiil"
  1329. #~ msgid "Style"
  1330. #~ msgstr "Stiil"
  1331. #~ msgid "Show advanced settings"
  1332. #~ msgstr "Näita täiustatud seadeid"
  1333. #~ msgid "Show advanced settings panel in the home page by default"
  1334. #~ msgstr "Näita täiustatud seadete paneeli vaikimisi avalehel"
  1335. #~ msgid "Allow all"
  1336. #~ msgstr "Luba kõik"
  1337. #~ msgid "Disable all"
  1338. #~ msgstr "Keela kõik"
  1339. #~ msgid "Selected language"
  1340. #~ msgstr "Valitud keel"
  1341. #~ msgid "Query"
  1342. #~ msgstr "Päring"
  1343. #~ msgid "save"
  1344. #~ msgstr "salvesta"
  1345. #~ msgid "back"
  1346. #~ msgstr "tagasi"
  1347. #~ msgid "Links"
  1348. #~ msgstr "Lingid"
  1349. #~ msgid "RSS subscription"
  1350. #~ msgstr "RSS jälgimus"
  1351. #~ msgid "Search results"
  1352. #~ msgstr "Otsingutulemused"
  1353. #~ msgid "next page"
  1354. #~ msgstr "järgmine leht"
  1355. #~ msgid "previous page"
  1356. #~ msgstr "eelmine leht"
  1357. #~ msgid "Start search"
  1358. #~ msgstr "Alusta otsingut"
  1359. #~ msgid "Clear search"
  1360. #~ msgstr "Tühjenda otsing"
  1361. #~ msgid "Clear"
  1362. #~ msgstr "Tühjenda"
  1363. #~ msgid "stats"
  1364. #~ msgstr "statistika"
  1365. #~ msgid "Heads up!"
  1366. #~ msgstr "Tähelepanu!"
  1367. #~ msgid "It look like you are using SearXNG first time."
  1368. #~ msgstr "Tundub, et kasutate SearXNG'i esimest korda."
  1369. #~ msgid "Well done!"
  1370. #~ msgstr "Hästi tehtud!"
  1371. #~ msgid "Settings saved successfully."
  1372. #~ msgstr "Seaded edukalt salvestatud."
  1373. #~ msgid "Oh snap!"
  1374. #~ msgstr "Oh kurja!"
  1375. #~ msgid "Something went wrong."
  1376. #~ msgstr "Midagi läks valesti."
  1377. #~ msgid "Date"
  1378. #~ msgstr "Kuupäev"
  1379. #~ msgid "Type"
  1380. #~ msgstr "Tüüp"
  1381. #~ msgid "Get image"
  1382. #~ msgstr "Hangi pilt"
  1383. #~ msgid "Center Alignment"
  1384. #~ msgstr ""
  1385. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1386. #~ msgstr ""
  1387. #~ msgid "preferences"
  1388. #~ msgstr "eelistused"
  1389. #~ msgid "Scores per result"
  1390. #~ msgstr "Skoorid tulemuste kohta"
  1391. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1392. #~ msgstr "privaatsust austaval, häkitaval metaotsingu mootoril"
  1393. #~ msgid "No abstract is available for this publication."
  1394. #~ msgstr "Selle väljaande jaoks pole abstraktset."
  1395. #~ msgid "Self Informations"
  1396. #~ msgstr "Self Informatsioon"
  1397. #~ msgid ""
  1398. #~ "Change how forms are submited, <a "
  1399. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1400. #~ " rel=\"external\">learn more about request "
  1401. #~ "methods</a>"
  1402. #~ msgstr ""
  1403. #~ "Muuda viisi, kuidas väljad edastatakse, "
  1404. #~ "<a "
  1405. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1406. #~ " rel=\"external\">loe taotlusmeetodite kohta "
  1407. #~ "lisaks</a>"
  1408. #~ msgid ""
  1409. #~ "This plugin checks if the address "
  1410. #~ "of the request is a TOR exit "
  1411. #~ "node, and informs the user if it"
  1412. #~ " is, like check.torproject.org but from "
  1413. #~ "searxng."
  1414. #~ msgstr ""
  1415. #~ msgid ""
  1416. #~ "The TOR exit node list "
  1417. #~ "(https://check.torproject.org/exit-addresses) is "
  1418. #~ "unreachable."
  1419. #~ msgstr ""
  1420. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1421. #~ msgstr "Te kasutate TORi. Teie IP aadress paistab olevat : {ip_address}."
  1422. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1423. #~ msgstr "Te ei kasuta TORi. Teie IP aadress paistab olevat: {ip_adress}."
  1424. #~ msgid ""
  1425. #~ "The could not download the list of"
  1426. #~ " Tor exit-nodes from "
  1427. #~ "https://check.torproject.org/exit-addresses."
  1428. #~ msgstr ""
  1429. #~ msgid ""
  1430. #~ "You are using Tor. It looks like"
  1431. #~ " you have this external IP address:"
  1432. #~ " {ip_address}."
  1433. #~ msgstr ""
  1434. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1435. #~ msgstr ""
  1436. #~ msgid "Autodetect search language"
  1437. #~ msgstr ""
  1438. #~ msgid "Automatically detect the query search language and switch to it."
  1439. #~ msgstr ""
  1440. #~ msgid "others"
  1441. #~ msgstr "muud"
  1442. #~ msgid ""
  1443. #~ "This tab does not show up for "
  1444. #~ "search results, but you can search "
  1445. #~ "the engines listed here via bangs."
  1446. #~ msgstr ""
  1447. #~ "See vahekaart ei näita otsingutulemusi, "
  1448. #~ "kuid siin loetletud mootoreid saab "
  1449. #~ "otsida \"bang\" kaudu."
  1450. #~ msgid "Shortcut"
  1451. #~ msgstr "Otsetee"
  1452. #~ msgid "!bang"
  1453. #~ msgstr ""
  1454. #~ msgid ""
  1455. #~ "This tab dues not exists in the"
  1456. #~ " user interface, but you can search"
  1457. #~ " in these engines by its !bangs."
  1458. #~ msgstr ""
  1459. #~ msgid "Engines cannot retrieve results."
  1460. #~ msgstr "Mootorid ei saa tulemusi tagastada."
  1461. #~ msgid "Please, try again later or find another SearXNG instance."
  1462. #~ msgstr "Palun proovige hiljem uuesti või leidke teine SearXNG instants."
  1463. #~ msgid ""
  1464. #~ "Redirect to open-access versions of "
  1465. #~ "publications when available (plugin required)"
  1466. #~ msgstr ""
  1467. #~ "Suuna võimalusel väljaannete avatud "
  1468. #~ "ligipääsuga versioonidele (nõuab pluginat)"
  1469. #~ msgid "Bang"
  1470. #~ msgstr "!bang"
  1471. #~ msgid ""
  1472. #~ "Change how forms are submitted, <a "
  1473. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1474. #~ " rel=\"external\">learn more about request "
  1475. #~ "methods</a>"
  1476. #~ msgstr ""
  1477. #~ msgid "On"
  1478. #~ msgstr "Sees"
  1479. #~ msgid "Off"
  1480. #~ msgstr "Väljas"
  1481. #~ msgid "Enabled"
  1482. #~ msgstr "Lubatud"
  1483. #~ msgid "Disabled"
  1484. #~ msgstr "Keelatud"
  1485. #~ msgid ""
  1486. #~ "Perform search immediately if a category"
  1487. #~ " selected. Disable to select multiple "
  1488. #~ "categories. (JavaScript required)"
  1489. #~ msgstr ""
  1490. #~ "Teosta otsing koheselt, kui kategooria "
  1491. #~ "on valitud. Keela mitme kategooria "
  1492. #~ "valimiseks. (Nõuab JavaScripti)"
  1493. #~ msgid "Vim-like hotkeys"
  1494. #~ msgstr "Vim'i-sarnased kiirklahvid"
  1495. #~ msgid ""
  1496. #~ "Navigate search results with Vim-like"
  1497. #~ " hotkeys (JavaScript required). Press \"h\""
  1498. #~ " key on main or result page to"
  1499. #~ " get help."
  1500. #~ msgstr ""
  1501. #~ "Navigeeri otsingutulemusi Vim'i-sarnaste "
  1502. #~ "kiirklahvidega (nõuab JavaScripti). Abi "
  1503. #~ "saamiseks vajuta avalehel või tulemuste "
  1504. #~ "lehel klahvi \"h\"."
  1505. #~ msgid ""
  1506. #~ "we didn't find any results. Please "
  1507. #~ "use another query or search in "
  1508. #~ "more categories."
  1509. #~ msgstr ""
  1510. #~ "me ei leidnud ühtegi tulemust. Palun "
  1511. #~ "kasuta teist päringut või otsi "
  1512. #~ "rohkematest kategooriatest."
  1513. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1514. #~ msgstr ""
  1515. #~ "Tulemuste hostinimede ümberkirjutamine või "
  1516. #~ "tulemuste eemaldamine hostinime alusel"
  1517. #~ msgid "Bytes"
  1518. #~ msgstr "Baite"
  1519. #~ msgid "kiB"
  1520. #~ msgstr "kiB"
  1521. #~ msgid "MiB"
  1522. #~ msgstr "MiB"
  1523. #~ msgid "GiB"
  1524. #~ msgstr "GiB"
  1525. #~ msgid "TiB"
  1526. #~ msgstr "TiB"
  1527. #~ msgid "Hostname replace"
  1528. #~ msgstr "Hostnime asendamine"
  1529. #~ msgid "Error!"
  1530. #~ msgstr "Viga!"
  1531. #~ msgid "Engines cannot retrieve results"
  1532. #~ msgstr "Otsingumootorid ei anna päringutele vastuseid"
  1533. #~ msgid "Start submiting a new issue on GitHub"
  1534. #~ msgstr "Alusta uue vea või probleemi esitamist GitHubis"
  1535. #~ msgid "dummy"
  1536. #~ msgstr ""
  1537. #~ msgid "Random value generator"
  1538. #~ msgstr "Juhusliku väärtuse generaator"
  1539. #~ msgid "Statistics functions"
  1540. #~ msgstr "Statistikafunktsioonid"
  1541. #~ msgid "Compute {functions} of the arguments"
  1542. #~ msgstr "Arvuta argumentide {functions}"
  1543. #~ msgid "Get directions"
  1544. #~ msgstr "Hangi juhised"
  1545. #~ msgid ""
  1546. #~ "Displays your IP if the query is"
  1547. #~ " \"ip\" and your user agent if "
  1548. #~ "the query contains \"user agent\"."
  1549. #~ msgstr ""
  1550. #~ "Kuvab sinu arvuti või seadme IP-"
  1551. #~ "aadressi, kui päringuks on \"ip\" ning"
  1552. #~ " veebibrauseri tunnust, kui päringuks on"
  1553. #~ " \"user agent\"."
  1554. #~ msgid ""
  1555. #~ "Could not download the list of Tor"
  1556. #~ " exit-nodes from: https://check.torproject.org"
  1557. #~ "/exit-addresses"
  1558. #~ msgstr ""
  1559. #~ "Ei saanud alla laadida Tori "
  1560. #~ "väljumissõlmede nimekirja aadressilt: "
  1561. #~ "https://check.torproject.org/exit-addresses"
  1562. #~ msgid ""
  1563. #~ "You are using Tor and it looks "
  1564. #~ "like you have this external IP "
  1565. #~ "address: {ip_address}"
  1566. #~ msgstr ""
  1567. #~ "Sa kasutad Tor'i ja tundub, et "
  1568. #~ "sinu arvutil on see väline IP-"
  1569. #~ "aadress: {ip_address}"
  1570. #~ msgid ""
  1571. #~ "You are not using Tor and you "
  1572. #~ "have this external IP address: "
  1573. #~ "{ip_address}"
  1574. #~ msgstr ""
  1575. #~ "Sa ei kasuta Tor'i ja sinu arvutil"
  1576. #~ " on see väline IP-aadress: "
  1577. #~ "{ip_address}"
  1578. #~ msgid "Keywords"
  1579. #~ msgstr "Märksõnad"