messages.po 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037
  1. # Dutch translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # André Koot <meneer@tken.net>, 2014-2018,2020
  7. # Issa1552 <fairfull.playing@gmail.com>, 2020
  8. # Nathan Follens, 2015-2018
  9. # Rejo Zenger <rejo@zenger.nl>, 2016-2017
  10. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  11. # Chris Capisce <christof1588@gmail.com>, 2022.
  12. # SecularSteve <fairfull.playing@gmail.com>, 2022, 2023.
  13. # Sweder doc <swederdvl@gmail.com>, 2022.
  14. # Peter Martin <weblate@pe7er.com>, 2022.
  15. # Max Westen <max@maxwesten.nl>, 2023.
  16. # gjveld <gjveld@gmail.com>, 2023.
  17. # Vistaus <vistausss@fastmail.com>, 2023.
  18. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  19. # microsoftocsharp <kottiberyu@gmail.com>, 2023.
  20. # marcelStangenberger <codeberg@xo.nl>, 2024.
  21. # yannickmaes <yannickmaes@users.noreply.translate.codeberg.org>, 2024.
  22. # MVDW-Java <MVDW-Java@users.noreply.translate.codeberg.org>, 2024.
  23. # notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
  24. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  25. # ljansen <ljansen@users.noreply.translate.codeberg.org>, 2024.
  26. # zarlin <zarlin@users.noreply.translate.codeberg.org>, 2024.
  27. # artens <artens@users.noreply.translate.codeberg.org>, 2024.
  28. msgid ""
  29. msgstr ""
  30. "Project-Id-Version: searx\n"
  31. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  32. "POT-Creation-Date: 2024-12-16 07:46+0000\n"
  33. "PO-Revision-Date: 2024-12-14 18:53+0000\n"
  34. "Last-Translator: artens <artens@users.noreply.translate.codeberg.org>\n"
  35. "Language: nl\n"
  36. "Language-Team: Dutch "
  37. "<https://translate.codeberg.org/projects/searxng/searxng/nl/>\n"
  38. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  39. "MIME-Version: 1.0\n"
  40. "Content-Type: text/plain; charset=utf-8\n"
  41. "Content-Transfer-Encoding: 8bit\n"
  42. "Generated-By: Babel 2.16.0\n"
  43. #. CONSTANT_NAMES['NO_SUBGROUPING']
  44. #: searx/searxng.msg
  45. msgid "without further subgrouping"
  46. msgstr "zonder verdere onderverdeling"
  47. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  48. #: searx/searxng.msg
  49. msgid "other"
  50. msgstr "overig"
  51. #. CATEGORY_NAMES['FILES']
  52. #: searx/searxng.msg
  53. msgid "files"
  54. msgstr "bestanden"
  55. #. CATEGORY_NAMES['GENERAL']
  56. #: searx/searxng.msg
  57. msgid "general"
  58. msgstr "algemeen"
  59. #. CATEGORY_NAMES['MUSIC']
  60. #: searx/searxng.msg
  61. msgid "music"
  62. msgstr "muziek"
  63. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  64. #: searx/searxng.msg
  65. msgid "social media"
  66. msgstr "sociale media"
  67. #. CATEGORY_NAMES['IMAGES']
  68. #: searx/searxng.msg
  69. msgid "images"
  70. msgstr "afbeeldingen"
  71. #. CATEGORY_NAMES['VIDEOS']
  72. #: searx/searxng.msg
  73. msgid "videos"
  74. msgstr "video’s"
  75. #. CATEGORY_NAMES['RADIO']
  76. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  77. msgid "radio"
  78. msgstr "radio"
  79. #. CATEGORY_NAMES['TV']
  80. #: searx/searxng.msg
  81. msgid "tv"
  82. msgstr "televisie"
  83. #. CATEGORY_NAMES['IT']
  84. #: searx/searxng.msg
  85. msgid "it"
  86. msgstr "IT"
  87. #. CATEGORY_NAMES['NEWS']
  88. #: searx/searxng.msg
  89. msgid "news"
  90. msgstr "nieuws"
  91. #. CATEGORY_NAMES['MAP']
  92. #: searx/searxng.msg
  93. msgid "map"
  94. msgstr "kaart"
  95. #. CATEGORY_NAMES['ONIONS']
  96. #: searx/searxng.msg
  97. msgid "onions"
  98. msgstr "onions"
  99. #. CATEGORY_NAMES['SCIENCE']
  100. #: searx/searxng.msg
  101. msgid "science"
  102. msgstr "wetenschap"
  103. #. CATEGORY_NAMES['DUMMY']
  104. #: searx/searxng.msg
  105. msgid "dummy"
  106. msgstr ""
  107. #. CATEGORY_GROUPS['APPS']
  108. #: searx/searxng.msg
  109. msgid "apps"
  110. msgstr "apps"
  111. #. CATEGORY_GROUPS['DICTIONARIES']
  112. #: searx/searxng.msg
  113. msgid "dictionaries"
  114. msgstr "woordenboeken"
  115. #. CATEGORY_GROUPS['LYRICS']
  116. #: searx/searxng.msg
  117. msgid "lyrics"
  118. msgstr "liedteksten"
  119. #. CATEGORY_GROUPS['PACKAGES']
  120. #: searx/searxng.msg
  121. msgid "packages"
  122. msgstr "paketten"
  123. #. CATEGORY_GROUPS['Q_A']
  124. #: searx/searxng.msg
  125. msgid "q&a"
  126. msgstr "vraag en antwoord"
  127. #. CATEGORY_GROUPS['REPOS']
  128. #: searx/searxng.msg
  129. msgid "repos"
  130. msgstr "opslag (code)"
  131. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  132. #: searx/searxng.msg
  133. msgid "software wikis"
  134. msgstr "software wiki's"
  135. #. CATEGORY_GROUPS['WEB']
  136. #: searx/searxng.msg
  137. msgid "web"
  138. msgstr "web"
  139. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  140. #: searx/searxng.msg
  141. msgid "scientific publications"
  142. msgstr "wetenschapelijke publicaties"
  143. #. STYLE_NAMES['AUTO']
  144. #: searx/searxng.msg
  145. msgid "auto"
  146. msgstr "automatisch"
  147. #. STYLE_NAMES['LIGHT']
  148. #: searx/searxng.msg
  149. msgid "light"
  150. msgstr "licht"
  151. #. STYLE_NAMES['DARK']
  152. #: searx/searxng.msg
  153. msgid "dark"
  154. msgstr "donker"
  155. #. STYLE_NAMES['BLACK']
  156. #: searx/searxng.msg
  157. msgid "black"
  158. msgstr "zwart"
  159. #. BRAND_CUSTOM_LINKS['UPTIME']
  160. #: searx/searxng.msg
  161. msgid "Uptime"
  162. msgstr "bedrijfstijd"
  163. #. BRAND_CUSTOM_LINKS['ABOUT']
  164. #: searx/searxng.msg searx/templates/simple/base.html:50
  165. msgid "About"
  166. msgstr "Over"
  167. #. WEATHER_TERMS['AVERAGE TEMP.']
  168. #: searx/engines/wttr.py:32 searx/searxng.msg
  169. msgid "Average temp."
  170. msgstr "Gemiddelde temp."
  171. #. WEATHER_TERMS['CLOUD COVER']
  172. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  173. msgid "Cloud cover"
  174. msgstr "Bewolking"
  175. #. WEATHER_TERMS['CONDITION']
  176. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  177. #: searx/searxng.msg
  178. msgid "Condition"
  179. msgstr "Omstandigheden"
  180. #. WEATHER_TERMS['CURRENT CONDITION']
  181. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  182. #: searx/searxng.msg
  183. msgid "Current condition"
  184. msgstr "Huidige weersomstandigheden"
  185. #. WEATHER_TERMS['EVENING']
  186. #: searx/engines/wttr.py:100 searx/searxng.msg
  187. msgid "Evening"
  188. msgstr "Avond"
  189. #. WEATHER_TERMS['FEELS LIKE']
  190. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  191. #: searx/engines/wttr.py:59 searx/searxng.msg
  192. msgid "Feels like"
  193. msgstr "Voelt als"
  194. #. WEATHER_TERMS['HUMIDITY']
  195. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  196. #: searx/engines/wttr.py:68 searx/searxng.msg
  197. msgid "Humidity"
  198. msgstr "Luchtvochtigheid"
  199. #. WEATHER_TERMS['MAX TEMP.']
  200. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  201. #: searx/searxng.msg
  202. msgid "Max temp."
  203. msgstr "Maximum temp."
  204. #. WEATHER_TERMS['MIN TEMP.']
  205. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  206. #: searx/searxng.msg
  207. msgid "Min temp."
  208. msgstr "Minimum temp."
  209. #. WEATHER_TERMS['MORNING']
  210. #: searx/engines/wttr.py:100 searx/searxng.msg
  211. msgid "Morning"
  212. msgstr "Ochtend"
  213. #. WEATHER_TERMS['NIGHT']
  214. #: searx/engines/wttr.py:100 searx/searxng.msg
  215. msgid "Night"
  216. msgstr "Nacht"
  217. #. WEATHER_TERMS['NOON']
  218. #: searx/engines/wttr.py:100 searx/searxng.msg
  219. msgid "Noon"
  220. msgstr "Middaguur"
  221. #. WEATHER_TERMS['PRESSURE']
  222. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  223. msgid "Pressure"
  224. msgstr "Luchtdruk"
  225. #. WEATHER_TERMS['SUNRISE']
  226. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  227. #: searx/searxng.msg
  228. msgid "Sunrise"
  229. msgstr "Zonsopkomst"
  230. #. WEATHER_TERMS['SUNSET']
  231. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  232. #: searx/searxng.msg
  233. msgid "Sunset"
  234. msgstr "Zonsondergang"
  235. #. WEATHER_TERMS['TEMPERATURE']
  236. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  237. #: searx/engines/wttr.py:55 searx/searxng.msg
  238. msgid "Temperature"
  239. msgstr "Temperatuur"
  240. #. WEATHER_TERMS['UV INDEX']
  241. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  242. #: searx/searxng.msg
  243. msgid "UV index"
  244. msgstr "UV-index"
  245. #. WEATHER_TERMS['VISIBILITY']
  246. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  247. #: searx/searxng.msg
  248. msgid "Visibility"
  249. msgstr "Zichtbaarheid"
  250. #. WEATHER_TERMS['WIND']
  251. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  252. #: searx/engines/wttr.py:62 searx/searxng.msg
  253. msgid "Wind"
  254. msgstr "Wind"
  255. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  256. #: searx/engines/lemmy.py:85 searx/searxng.msg
  257. msgid "subscribers"
  258. msgstr "abonnees"
  259. #. SOCIAL_MEDIA_TERMS['POSTS']
  260. #: searx/engines/lemmy.py:86 searx/searxng.msg
  261. msgid "posts"
  262. msgstr "berichten"
  263. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  264. #: searx/engines/lemmy.py:87 searx/searxng.msg
  265. msgid "active users"
  266. msgstr "actieve gebruikers"
  267. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  268. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  269. #: searx/engines/lemmy.py:130 searx/searxng.msg
  270. msgid "comments"
  271. msgstr "reacties"
  272. #. SOCIAL_MEDIA_TERMS['USER']
  273. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  274. msgid "user"
  275. msgstr "gebruiker"
  276. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  277. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  278. msgid "community"
  279. msgstr "gemeenschap"
  280. #. SOCIAL_MEDIA_TERMS['POINTS']
  281. #: searx/engines/hackernews.py:82 searx/searxng.msg
  282. msgid "points"
  283. msgstr "punten"
  284. #. SOCIAL_MEDIA_TERMS['TITLE']
  285. #: searx/searxng.msg
  286. msgid "title"
  287. msgstr "titel"
  288. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  289. #: searx/engines/hackernews.py:85 searx/searxng.msg
  290. msgid "author"
  291. msgstr "auteur"
  292. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  293. #: searx/engines/discourse.py:149 searx/searxng.msg
  294. msgid "open"
  295. msgstr "open"
  296. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  297. #: searx/engines/discourse.py:149 searx/searxng.msg
  298. msgid "closed"
  299. msgstr "gesloten"
  300. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  301. #: searx/engines/discourse.py:160 searx/searxng.msg
  302. msgid "answered"
  303. msgstr "beantwoord"
  304. #: searx/webapp.py:323
  305. msgid "No item found"
  306. msgstr "Geen resultaat gevonden"
  307. #: searx/engines/qwant.py:288
  308. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  309. msgid "Source"
  310. msgstr "Bron"
  311. #: searx/webapp.py:327
  312. msgid "Error loading the next page"
  313. msgstr "Fout bij het laden volgende pagina"
  314. #: searx/webapp.py:496 searx/webapp.py:904
  315. msgid "Invalid settings, please edit your preferences"
  316. msgstr "Ongeldige instellingswaarde, controleer invoer"
  317. #: searx/webapp.py:512
  318. msgid "Invalid settings"
  319. msgstr "Ongeldige instellingen"
  320. #: searx/webapp.py:589 searx/webapp.py:679
  321. msgid "search error"
  322. msgstr "zoekfout"
  323. #: searx/webutils.py:36
  324. msgid "timeout"
  325. msgstr "verlopen"
  326. #: searx/webutils.py:37
  327. msgid "parsing error"
  328. msgstr "verwerkingsfout"
  329. #: searx/webutils.py:38
  330. msgid "HTTP protocol error"
  331. msgstr "HTTP-protocolfout"
  332. #: searx/webutils.py:39
  333. msgid "network error"
  334. msgstr "netwerkfout"
  335. #: searx/webutils.py:40
  336. msgid "SSL error: certificate validation has failed"
  337. msgstr "SSL-fout: de certificaatvalidatie is mislukt"
  338. #: searx/webutils.py:42
  339. msgid "unexpected crash"
  340. msgstr "onverwachte crash"
  341. #: searx/webutils.py:49
  342. msgid "HTTP error"
  343. msgstr "HTTP-fout"
  344. #: searx/webutils.py:50
  345. msgid "HTTP connection error"
  346. msgstr "HTTP-verbindingsfout"
  347. #: searx/webutils.py:56
  348. msgid "proxy error"
  349. msgstr "proxyfout"
  350. #: searx/webutils.py:57
  351. msgid "CAPTCHA"
  352. msgstr "CAPTCHA"
  353. #: searx/webutils.py:58
  354. msgid "too many requests"
  355. msgstr "teveel verzoeken"
  356. #: searx/webutils.py:59
  357. msgid "access denied"
  358. msgstr "toegang geweigerd"
  359. #: searx/webutils.py:60
  360. msgid "server API error"
  361. msgstr "server-api-fout"
  362. #: searx/webutils.py:79
  363. msgid "Suspended"
  364. msgstr "Geschorst"
  365. #: searx/webutils.py:314
  366. msgid "{minutes} minute(s) ago"
  367. msgstr "{minutes} minu(u)t(en) geleden"
  368. #: searx/webutils.py:315
  369. msgid "{hours} hour(s), {minutes} minute(s) ago"
  370. msgstr "{hours} u(u)r(en), {minutes} minu(u)t(en) geleden"
  371. #: searx/answerers/random/answerer.py:76
  372. msgid "Random value generator"
  373. msgstr "Willekeurigewaardegenerator"
  374. #: searx/answerers/random/answerer.py:77
  375. msgid "Generate different random values"
  376. msgstr "Genereer verschillende willekeurige waarden"
  377. #: searx/answerers/statistics/answerer.py:50
  378. msgid "Statistics functions"
  379. msgstr "Statistische functies"
  380. #: searx/answerers/statistics/answerer.py:51
  381. msgid "Compute {functions} of the arguments"
  382. msgstr "Bereken {functions} van de opties"
  383. #: searx/engines/mozhi.py:57
  384. msgid "Synonyms"
  385. msgstr "Synoniemen"
  386. #: searx/engines/openstreetmap.py:159
  387. msgid "Get directions"
  388. msgstr "Routebeschrijving"
  389. #: searx/engines/pdbe.py:96
  390. msgid "{title} (OBSOLETE)"
  391. msgstr "{title} (VEROUDERD)"
  392. #: searx/engines/pdbe.py:103
  393. msgid "This entry has been superseded by"
  394. msgstr "Dit object is vervangen door"
  395. #: searx/engines/qwant.py:290
  396. msgid "Channel"
  397. msgstr "Kanaal"
  398. #: searx/engines/radio_browser.py:105
  399. msgid "bitrate"
  400. msgstr "bitrate"
  401. #: searx/engines/radio_browser.py:106
  402. msgid "votes"
  403. msgstr "stemmen"
  404. #: searx/engines/radio_browser.py:107
  405. msgid "clicks"
  406. msgstr "klikken"
  407. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  408. #: searx/engines/zlibrary.py:137
  409. msgid "Language"
  410. msgstr "Taal"
  411. #: searx/engines/semantic_scholar.py:78
  412. msgid ""
  413. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  414. "{lastCitationVelocityYear}"
  415. msgstr ""
  416. "{numCitations} citaties sinds jaar {firstCitationVelocityYear} tot "
  417. "{lastCitationVelocityYear}"
  418. #: searx/engines/tineye.py:45
  419. msgid ""
  420. "Could not read that image url. This may be due to an unsupported file "
  421. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  422. " WebP."
  423. msgstr ""
  424. "Kan die afbeeldings-URL niet lezen. Dit kan komen door een niet "
  425. "ondersteunde bestandsindeling. TinEye ondersteunt alleen afbeeldingtypes "
  426. "JPEG, PNG, GIF, BMP, TIFF of WebP."
  427. #: searx/engines/tineye.py:51
  428. msgid ""
  429. "The image is too simple to find matches. TinEye requires a basic level of"
  430. " visual detail to successfully identify matches."
  431. msgstr ""
  432. "De afbeelding bevat te weinig details om overeenkomsten te vinden. TinEye"
  433. " vereist een basisniveau van visuele details om overeenkomsten succesvol "
  434. "te identificeren."
  435. #: searx/engines/tineye.py:57
  436. msgid "The image could not be downloaded."
  437. msgstr "De afbeelding kon niet worden gedownload."
  438. #: searx/engines/zlibrary.py:138
  439. msgid "Book rating"
  440. msgstr "Boekbeoordelingswaarde"
  441. #: searx/engines/zlibrary.py:139
  442. msgid "File quality"
  443. msgstr "Bestandskwaliteit"
  444. #: searx/plugins/calculator.py:18
  445. msgid "Calculate mathematical expressions via the search bar"
  446. msgstr "Bereken wiskundige formules via de zoekbalk"
  447. #: searx/plugins/hash_plugin.py:10
  448. msgid "Converts strings to different hash digests."
  449. msgstr "Zet tekstwaarden om naar verschillende soorten validatiewaarden (hashes)."
  450. #: searx/plugins/hash_plugin.py:38
  451. msgid "hash digest"
  452. msgstr "validatiewaarde"
  453. #: searx/plugins/hostnames.py:103
  454. msgid "Hostnames plugin"
  455. msgstr "Hostnamen plug-in"
  456. #: searx/plugins/hostnames.py:104
  457. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  458. msgstr ""
  459. "Hernoem hostnamen, verwijder resultaten of geef prioriteit aan op basis "
  460. "van de hostnaam"
  461. #: searx/plugins/oa_doi_rewrite.py:12
  462. msgid "Open Access DOI rewrite"
  463. msgstr "Open Access DOI bewerken"
  464. #: searx/plugins/oa_doi_rewrite.py:13
  465. msgid ""
  466. "Avoid paywalls by redirecting to open-access versions of publications "
  467. "when available"
  468. msgstr ""
  469. "Omzeil betaalde bronsites met een doorverwijzing naar vrij toegankelijke "
  470. "versies van publicaties indien beschikbaar"
  471. #: searx/plugins/self_info.py:9
  472. msgid "Self Information"
  473. msgstr "Informatie over jezelf"
  474. #: searx/plugins/self_info.py:10
  475. msgid ""
  476. "Displays your IP if the query is \"ip\" and your user agent if the query "
  477. "contains \"user agent\"."
  478. msgstr ""
  479. "Geeft je IP-adres weer als de zoekopdracht ‘ip’ is en je "
  480. "browseridentificatie als de zoekopdracht ‘user agent’ bevat."
  481. #: searx/plugins/self_info.py:28
  482. msgid "Your IP is: "
  483. msgstr "Jouw IP is: "
  484. #: searx/plugins/self_info.py:31
  485. msgid "Your user-agent is: "
  486. msgstr "Jouw user-agent is: "
  487. #: searx/plugins/tor_check.py:24
  488. msgid "Tor check plugin"
  489. msgstr "Tor controle plug-in"
  490. #: searx/plugins/tor_check.py:27
  491. msgid ""
  492. "This plugin checks if the address of the request is a Tor exit-node, and "
  493. "informs the user if it is; like check.torproject.org, but from SearXNG."
  494. msgstr ""
  495. "Deze plug-in controleert of het adres van de verzochte URL een Tor exit-"
  496. "node is en informeert de gebruiker als dit zo is; net als bij "
  497. "check.torproject.org, maar dan van SearXNG."
  498. #: searx/plugins/tor_check.py:61
  499. msgid ""
  500. "Could not download the list of Tor exit-nodes from: "
  501. "https://check.torproject.org/exit-addresses"
  502. msgstr ""
  503. "Kan de lijst met Tor exit-nodes niet downloaden van: "
  504. "https://check.torproject.org/exit-addresses"
  505. #: searx/plugins/tor_check.py:77
  506. msgid ""
  507. "You are using Tor and it looks like you have this external IP address: "
  508. "{ip_address}"
  509. msgstr ""
  510. "Je gebruikt Tor en het lijkt er op dat dit je externe IP adres is: "
  511. "{ip_address}"
  512. #: searx/plugins/tor_check.py:85
  513. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  514. msgstr "Je maakt geen gebruik van Tor en dit is je externe IP adres: {ip_address}"
  515. #: searx/plugins/tracker_url_remover.py:16
  516. msgid "Tracker URL remover"
  517. msgstr "Tracker-URL-verwijderaar"
  518. #: searx/plugins/tracker_url_remover.py:17
  519. msgid "Remove trackers arguments from the returned URL"
  520. msgstr "Verwijdert trackerargumenten van de gekregen URL"
  521. #: searx/plugins/unit_converter.py:29
  522. msgid "Convert between units"
  523. msgstr "Converteren tussen eenheden"
  524. #: searx/templates/simple/404.html:4
  525. msgid "Page not found"
  526. msgstr "Pagina niet gevonden"
  527. #: searx/templates/simple/404.html:6
  528. #, python-format
  529. msgid "Go to %(search_page)s."
  530. msgstr "Ga naar %(search_page)s."
  531. #: searx/templates/simple/404.html:6
  532. msgid "search page"
  533. msgstr "zoekpagina"
  534. #: searx/templates/simple/base.html:54
  535. msgid "Donate"
  536. msgstr "Doneren"
  537. #: searx/templates/simple/base.html:58
  538. #: searx/templates/simple/preferences.html:156
  539. msgid "Preferences"
  540. msgstr "Voorkeuren"
  541. #: searx/templates/simple/base.html:68
  542. msgid "Powered by"
  543. msgstr "Verzorgd door"
  544. #: searx/templates/simple/base.html:68
  545. msgid "a privacy-respecting, open metasearch engine"
  546. msgstr "een privacy respecterende meta zoek machine"
  547. #: searx/templates/simple/base.html:69
  548. #: searx/templates/simple/result_templates/packages.html:59
  549. msgid "Source code"
  550. msgstr "Broncode"
  551. #: searx/templates/simple/base.html:70
  552. msgid "Issue tracker"
  553. msgstr "Probleem-tracker"
  554. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  555. msgid "Engine stats"
  556. msgstr "Zoekmachinestatistieken"
  557. #: searx/templates/simple/base.html:73
  558. msgid "Public instances"
  559. msgstr "Openbare instanties"
  560. #: searx/templates/simple/base.html:76
  561. msgid "Privacy policy"
  562. msgstr "Privacybeleid"
  563. #: searx/templates/simple/base.html:79
  564. msgid "Contact instance maintainer"
  565. msgstr "Neem contact op met beheerder instantie"
  566. #: searx/templates/simple/categories.html:26
  567. msgid "Click on the magnifier to perform search"
  568. msgstr "Klik op het vergrootglas om te zoeken"
  569. #: searx/templates/simple/macros.html:40
  570. msgid "Length"
  571. msgstr "Lengte"
  572. #: searx/templates/simple/macros.html:41
  573. msgid "Views"
  574. msgstr "Kijkers"
  575. #: searx/templates/simple/macros.html:42
  576. #: searx/templates/simple/result_templates/files.html:34
  577. #: searx/templates/simple/result_templates/images.html:19
  578. #: searx/templates/simple/result_templates/paper.html:6
  579. msgid "Author"
  580. msgstr "Auteur"
  581. #: searx/templates/simple/macros.html:50
  582. msgid "cached"
  583. msgstr "gecachet"
  584. #: searx/templates/simple/macros.html:50
  585. msgid "proxied"
  586. msgstr "geproxyt"
  587. #: searx/templates/simple/new_issue.html:64
  588. msgid "Start submitting a new issue on GitHub"
  589. msgstr "Maak een nieuwe issue op Github"
  590. #: searx/templates/simple/new_issue.html:66
  591. msgid "Please check for existing bugs about this engine on GitHub"
  592. msgstr "Controleer op bestaande bugs over deze engine op GitHub"
  593. #: searx/templates/simple/new_issue.html:69
  594. msgid "I confirm there is no existing bug about the issue I encounter"
  595. msgstr ""
  596. "Ik bevestig dat er geen bestaand probleem is over het probleem dat ik "
  597. "tegenkom"
  598. #: searx/templates/simple/new_issue.html:71
  599. msgid "If this is a public instance, please specify the URL in the bug report"
  600. msgstr ""
  601. "Indien dit een openbare instantie is, specificeer de URL in het "
  602. "probleemrapport"
  603. #: searx/templates/simple/new_issue.html:72
  604. msgid "Submit a new issue on Github including the above information"
  605. msgstr "Maak een nieuwe issue op Github met de bovenstaande informatie"
  606. #: searx/templates/simple/preferences.html:65
  607. msgid "No HTTPS"
  608. msgstr "Geen HTTPS"
  609. #: searx/templates/simple/elements/engines_msg.html:14
  610. #: searx/templates/simple/preferences.html:69
  611. #: searx/templates/simple/preferences.html:70
  612. msgid "View error logs and submit a bug report"
  613. msgstr "Bekijk foutenlogboek en verstuur een probleemrapport"
  614. #: searx/templates/simple/preferences.html:74
  615. msgid "!bang for this engine"
  616. msgstr "!bang for denne motor"
  617. #: searx/templates/simple/preferences.html:80
  618. msgid "!bang for its categories"
  619. msgstr "!bang for sine kategorier"
  620. #: searx/templates/simple/preferences.html:102
  621. #: searx/templates/simple/stats.html:64
  622. msgid "Median"
  623. msgstr "Mediaan"
  624. #: searx/templates/simple/preferences.html:103
  625. #: searx/templates/simple/stats.html:70
  626. msgid "P80"
  627. msgstr "P80"
  628. #: searx/templates/simple/preferences.html:104
  629. #: searx/templates/simple/stats.html:76
  630. msgid "P95"
  631. msgstr "P95"
  632. #: searx/templates/simple/preferences.html:136
  633. msgid "Failed checker test(s): "
  634. msgstr "Gefaalde controletest(s): "
  635. #: searx/templates/simple/preferences.html:138
  636. msgid "Errors:"
  637. msgstr "Fouten:"
  638. #: searx/templates/simple/preferences.html:162
  639. msgid "General"
  640. msgstr "Algemeen"
  641. #: searx/templates/simple/preferences.html:165
  642. msgid "Default categories"
  643. msgstr "Standaardcategorieën"
  644. #: searx/templates/simple/preferences.html:190
  645. msgid "User interface"
  646. msgstr "Gebruikersinterface"
  647. #: searx/templates/simple/preferences.html:212
  648. msgid "Privacy"
  649. msgstr "Privacy"
  650. #: searx/templates/simple/preferences.html:225
  651. msgid "Engines"
  652. msgstr "Zoekmachines"
  653. #: searx/templates/simple/preferences.html:227
  654. msgid "Currently used search engines"
  655. msgstr "Momenteel gebruikte zoekmachines"
  656. #: searx/templates/simple/preferences.html:235
  657. msgid "Special Queries"
  658. msgstr "Speciale Zoekopdrachten"
  659. #: searx/templates/simple/preferences.html:241
  660. msgid "Cookies"
  661. msgstr "Cookies"
  662. #: searx/templates/simple/results.html:23
  663. msgid "Answers"
  664. msgstr "Antwoorden"
  665. #: searx/templates/simple/results.html:42
  666. msgid "Number of results"
  667. msgstr "Aantal zoekresultaten"
  668. #: searx/templates/simple/results.html:48
  669. msgid "Info"
  670. msgstr "Informatie"
  671. #: searx/templates/simple/results.html:75
  672. msgid "Try searching for:"
  673. msgstr "Probeer te zoeken naar:"
  674. #: searx/templates/simple/results.html:107
  675. msgid "Back to top"
  676. msgstr "Terug naar boven in"
  677. #: searx/templates/simple/results.html:125
  678. msgid "Previous page"
  679. msgstr "Vorige pagina"
  680. #: searx/templates/simple/results.html:143
  681. msgid "Next page"
  682. msgstr "Volgende pagina"
  683. #: searx/templates/simple/search.html:3
  684. msgid "Display the front page"
  685. msgstr "Geef voorpagina"
  686. #: searx/templates/simple/search.html:9
  687. #: searx/templates/simple/simple_search.html:5
  688. msgid "Search for..."
  689. msgstr "Zoeken naar..."
  690. #: searx/templates/simple/search.html:10
  691. #: searx/templates/simple/simple_search.html:6
  692. msgid "clear"
  693. msgstr "wissen"
  694. #: searx/templates/simple/search.html:11
  695. #: searx/templates/simple/simple_search.html:7
  696. msgid "search"
  697. msgstr "zoeken"
  698. #: searx/templates/simple/stats.html:21
  699. msgid "There is currently no data available. "
  700. msgstr "Er zijn momenteel geen gegevens beschikbaar. "
  701. #: searx/templates/simple/preferences/engines.html:24
  702. #: searx/templates/simple/stats.html:25
  703. msgid "Engine name"
  704. msgstr "Naam zoekmachine"
  705. #: searx/templates/simple/stats.html:26
  706. msgid "Scores"
  707. msgstr "Scores"
  708. #: searx/templates/simple/stats.html:27
  709. msgid "Result count"
  710. msgstr "Aantal resultaten"
  711. #: searx/templates/simple/elements/engines_msg.html:7
  712. #: searx/templates/simple/preferences/engines.html:31
  713. #: searx/templates/simple/stats.html:28
  714. msgid "Response time"
  715. msgstr "Responstijd"
  716. #: searx/templates/simple/preferences/engines.html:35
  717. #: searx/templates/simple/stats.html:29
  718. msgid "Reliability"
  719. msgstr "Betrouwbaarheid"
  720. #: searx/templates/simple/stats.html:59
  721. msgid "Total"
  722. msgstr "Totaal"
  723. #: searx/templates/simple/stats.html:60
  724. msgid "HTTP"
  725. msgstr "HTTP"
  726. #: searx/templates/simple/stats.html:61
  727. msgid "Processing"
  728. msgstr "Verwerken"
  729. #: searx/templates/simple/stats.html:99
  730. msgid "Warnings"
  731. msgstr "Waarschuwingen"
  732. #: searx/templates/simple/stats.html:99
  733. msgid "Errors and exceptions"
  734. msgstr "Foutmeldingen en uitzonderingen"
  735. #: searx/templates/simple/stats.html:105
  736. msgid "Exception"
  737. msgstr "Uitzondering"
  738. #: searx/templates/simple/stats.html:107
  739. msgid "Message"
  740. msgstr "Bericht"
  741. #: searx/templates/simple/stats.html:109
  742. msgid "Percentage"
  743. msgstr "Percentage"
  744. #: searx/templates/simple/stats.html:111
  745. msgid "Parameter"
  746. msgstr "Parameter"
  747. #: searx/templates/simple/result_templates/files.html:36
  748. #: searx/templates/simple/stats.html:119
  749. msgid "Filename"
  750. msgstr "Bestandsnaam"
  751. #: searx/templates/simple/stats.html:120
  752. msgid "Function"
  753. msgstr "Functie"
  754. #: searx/templates/simple/stats.html:121
  755. msgid "Code"
  756. msgstr "Code"
  757. #: searx/templates/simple/stats.html:128
  758. msgid "Checker"
  759. msgstr "Controleur"
  760. #: searx/templates/simple/stats.html:131
  761. msgid "Failed test"
  762. msgstr "Gefaalde test"
  763. #: searx/templates/simple/stats.html:132
  764. msgid "Comment(s)"
  765. msgstr "Opmerking(en)"
  766. #: searx/templates/simple/elements/apis.html:3
  767. msgid "Download results"
  768. msgstr "Zoekresultaten downloaden"
  769. #: searx/templates/simple/elements/engines_msg.html:4
  770. msgid "Messages from the search engines"
  771. msgstr "Berichten van de zoekmachines"
  772. #: searx/templates/simple/elements/engines_msg.html:7
  773. msgid "seconds"
  774. msgstr "s"
  775. #: searx/templates/simple/elements/search_url.html:3
  776. msgid "Search URL"
  777. msgstr "Zoek-URL"
  778. #: searx/templates/simple/elements/search_url.html:4
  779. #: searx/templates/simple/preferences/cookies.html:54
  780. msgid "Copied"
  781. msgstr "Gekopieerd"
  782. #: searx/templates/simple/elements/search_url.html:4
  783. #: searx/templates/simple/preferences/cookies.html:54
  784. msgid "Copy"
  785. msgstr "Kopieer"
  786. #: searx/templates/simple/elements/suggestions.html:3
  787. msgid "Suggestions"
  788. msgstr "Suggesties"
  789. #: searx/templates/simple/filters/languages.html:1
  790. #: searx/templates/simple/preferences/language.html:2
  791. msgid "Search language"
  792. msgstr "Zoektaal"
  793. #: searx/templates/simple/filters/languages.html:4
  794. #: searx/templates/simple/preferences/language.html:7
  795. msgid "Default language"
  796. msgstr "Standaardtaal"
  797. #: searx/templates/simple/filters/languages.html:8
  798. #: searx/templates/simple/preferences/language.html:11
  799. msgid "Auto-detect"
  800. msgstr "Automatisch herkennen"
  801. #: searx/templates/simple/filters/safesearch.html:1
  802. #: searx/templates/simple/filters/safesearch.html:2
  803. #: searx/templates/simple/filters/safesearch.html:3
  804. #: searx/templates/simple/filters/safesearch.html:4
  805. #: searx/templates/simple/preferences/engines.html:27
  806. #: searx/templates/simple/preferences/safesearch.html:2
  807. msgid "SafeSearch"
  808. msgstr "VeiligZoeken"
  809. #: searx/templates/simple/filters/safesearch.html:2
  810. #: searx/templates/simple/preferences/safesearch.html:7
  811. msgid "Strict"
  812. msgstr "Strikt"
  813. #: searx/templates/simple/filters/safesearch.html:3
  814. #: searx/templates/simple/preferences/safesearch.html:11
  815. msgid "Moderate"
  816. msgstr "Gemiddeld"
  817. #: searx/templates/simple/filters/safesearch.html:4
  818. #: searx/templates/simple/preferences/safesearch.html:15
  819. msgid "None"
  820. msgstr "Geen"
  821. #: searx/templates/simple/filters/time_range.html:1
  822. #: searx/templates/simple/preferences/engines.html:28
  823. msgid "Time range"
  824. msgstr "Tijdspanne"
  825. #: searx/templates/simple/filters/time_range.html:3
  826. msgid "Anytime"
  827. msgstr "Altijd"
  828. #: searx/templates/simple/filters/time_range.html:6
  829. msgid "Last day"
  830. msgstr "Gisteren"
  831. #: searx/templates/simple/filters/time_range.html:9
  832. msgid "Last week"
  833. msgstr "Vorige week"
  834. #: searx/templates/simple/filters/time_range.html:12
  835. msgid "Last month"
  836. msgstr "Vorige maand"
  837. #: searx/templates/simple/filters/time_range.html:15
  838. msgid "Last year"
  839. msgstr "Vorig jaar"
  840. #: searx/templates/simple/messages/no_cookies.html:3
  841. msgid "Information!"
  842. msgstr "Informatie!"
  843. #: searx/templates/simple/messages/no_cookies.html:4
  844. msgid "currently, there are no cookies defined."
  845. msgstr "er zijn momenteel geen cookies gedefinieerd."
  846. #: searx/templates/simple/messages/no_results.html:6
  847. msgid "Sorry!"
  848. msgstr "Sorry!"
  849. #: searx/templates/simple/messages/no_results.html:12
  850. msgid "No results were found. You can try to:"
  851. msgstr "Geen zoekresultaten. Probeer:"
  852. #: searx/templates/simple/messages/no_results.html:14
  853. msgid "There are no more results. You can try to:"
  854. msgstr "Er zijn geen resultaten meer. U kunt proberen om:"
  855. #: searx/templates/simple/messages/no_results.html:19
  856. msgid "Refresh the page."
  857. msgstr "Ververs de pagina."
  858. #: searx/templates/simple/messages/no_results.html:20
  859. msgid "Search for another query or select another category (above)."
  860. msgstr "Zoek op iets anders of selecteer een andere categorie (zie boven)."
  861. #: searx/templates/simple/messages/no_results.html:21
  862. msgid "Change the search engine used in the preferences:"
  863. msgstr "Verander de zoekmachine gebruikt in de voorkeuren:"
  864. #: searx/templates/simple/messages/no_results.html:22
  865. msgid "Switch to another instance:"
  866. msgstr "Verbind met een andere instance:"
  867. #: searx/templates/simple/messages/no_results.html:24
  868. msgid "Search for another query or select another category."
  869. msgstr "Zoek naar een andere zoekopdracht of selecteer een andere categorie."
  870. #: searx/templates/simple/messages/no_results.html:25
  871. msgid "Go back to the previous page using the previous page button."
  872. msgstr "Ga terug naar de vorige pagina met de knop Vorige pagina."
  873. #: searx/templates/simple/preferences/answerers.html:4
  874. #: searx/templates/simple/preferences/engines.html:23
  875. msgid "Allow"
  876. msgstr "Toestaan"
  877. #: searx/templates/simple/preferences/answerers.html:5
  878. msgid "Keywords"
  879. msgstr "Kernwoorden"
  880. #: searx/templates/simple/preferences/answerers.html:6
  881. #: searx/templates/simple/result_templates/packages.html:7
  882. msgid "Name"
  883. msgstr "Naam"
  884. #: searx/templates/simple/preferences/answerers.html:7
  885. msgid "Description"
  886. msgstr "Beschrijving"
  887. #: searx/templates/simple/preferences/answerers.html:8
  888. msgid "Examples"
  889. msgstr "Voorbeelden"
  890. #: searx/templates/simple/preferences/answerers.html:13
  891. msgid "This is the list of SearXNG's instant answering modules."
  892. msgstr "Dit is de lijst met SearXNG's \"onmiddellijk antwoord\"-modules."
  893. #: searx/templates/simple/preferences/answerers.html:29
  894. msgid "This is the list of plugins."
  895. msgstr "Dit is de lijst met plug-ins."
  896. #: searx/templates/simple/preferences/autocomplete.html:2
  897. msgid "Autocomplete"
  898. msgstr "Auto-aanvullen"
  899. #: searx/templates/simple/preferences/autocomplete.html:15
  900. msgid "Find stuff as you type"
  901. msgstr "Zoek tijdens het typen"
  902. #: searx/templates/simple/preferences/center_alignment.html:2
  903. msgid "Center Alignment"
  904. msgstr "Centraal uitlijnen"
  905. #: searx/templates/simple/preferences/center_alignment.html:14
  906. msgid "Displays results in the center of the page (Oscar layout)."
  907. msgstr "Laat de resultaten in het midden van de pagina zien (Oscar layout)."
  908. #: searx/templates/simple/preferences/cookies.html:2
  909. msgid ""
  910. "This is the list of cookies and their values SearXNG is storing on your "
  911. "computer."
  912. msgstr ""
  913. "Dit is de lijst met cookies en hun waarden die SearXNG op je computer "
  914. "opslaat."
  915. #: searx/templates/simple/preferences/cookies.html:3
  916. msgid "With that list, you can assess SearXNG transparency."
  917. msgstr "Met die lijst kan je de transparantie van SearXNG beoordelen."
  918. #: searx/templates/simple/preferences/cookies.html:9
  919. msgid "Cookie name"
  920. msgstr "Cookienaam"
  921. #: searx/templates/simple/preferences/cookies.html:10
  922. msgid "Value"
  923. msgstr "Waarde"
  924. #: searx/templates/simple/preferences/cookies.html:23
  925. msgid "Search URL of the currently saved preferences"
  926. msgstr "Zoek-URL van de huidig opgeslagen voorkeuren"
  927. #: searx/templates/simple/preferences/cookies.html:32
  928. msgid ""
  929. "Note: specifying custom settings in the search URL can reduce privacy by "
  930. "leaking data to the clicked result sites."
  931. msgstr ""
  932. "Let op: aangepaste instellingen opgeven in de zoek-URL kan nadelig zijn "
  933. "voor je privacy, omdat het gegevens lekt aan de aangeklikte "
  934. "resultaatwebsites."
  935. #: searx/templates/simple/preferences/cookies.html:35
  936. msgid "URL to restore your preferences in another browser"
  937. msgstr "Link om uw instellingen te herstellen in een andere browser"
  938. #: searx/templates/simple/preferences/cookies.html:43
  939. msgid ""
  940. "Specifying custom settings in the preferences URL can be used to sync "
  941. "preferences across devices."
  942. msgstr ""
  943. "Op maat ingestelde instellingen in de instellingen URL kunnen worden "
  944. "gebruikt om instellingen te synchroniseren op verschillende apparaten."
  945. #: searx/templates/simple/preferences/cookies.html:46
  946. msgid "Copy preferences hash"
  947. msgstr "Kopie instellingen sleutel"
  948. #: searx/templates/simple/preferences/cookies.html:57
  949. msgid "Insert copied preferences hash (without URL) to restore"
  950. msgstr "Voeg kopie instellingen sleutel (zonder de verwijzing) in om te herstellen"
  951. #: searx/templates/simple/preferences/cookies.html:59
  952. msgid "Preferences hash"
  953. msgstr "Instellingen sleutel"
  954. #: searx/templates/simple/preferences/doi_resolver.html:2
  955. msgid "Open Access DOI resolver"
  956. msgstr "Open Access DOI herschrijven"
  957. #: searx/templates/simple/preferences/doi_resolver.html:14
  958. msgid "Select service used by DOI rewrite"
  959. msgstr "Selecteer service gebruikt door DOI herschrijven"
  960. #: searx/templates/simple/preferences/engines.html:9
  961. msgid ""
  962. "This tab does not exists in the user interface, but you can search in "
  963. "these engines by its !bangs."
  964. msgstr ""
  965. "Deze tab bestaat niet in de gebruikers omgeving, maar u kunt in deze "
  966. "machines zoeken via hun !bang."
  967. #: searx/templates/simple/preferences/engines.html:15
  968. msgid "Enable all"
  969. msgstr "Schakel alles in"
  970. #: searx/templates/simple/preferences/engines.html:16
  971. msgid "Disable all"
  972. msgstr "Schakel alles uit"
  973. #: searx/templates/simple/preferences/engines.html:25
  974. msgid "!bang"
  975. msgstr "!bang"
  976. #: searx/templates/simple/preferences/engines.html:26
  977. msgid "Supports selected language"
  978. msgstr "Ondersteunt geselecteerde taal"
  979. #: searx/templates/simple/preferences/engines.html:29
  980. msgid "Weight"
  981. msgstr "Gewicht"
  982. #: searx/templates/simple/preferences/engines.html:33
  983. msgid "Max time"
  984. msgstr "Max. duur"
  985. #: searx/templates/simple/preferences/favicon.html:2
  986. msgid "Favicon Resolver"
  987. msgstr "Favicon Oplosser"
  988. #: searx/templates/simple/preferences/favicon.html:15
  989. msgid "Display favicons near search results"
  990. msgstr "Vertoon zoekresultaten naast favicons"
  991. #: searx/templates/simple/preferences/footer.html:2
  992. msgid ""
  993. "These settings are stored in your cookies, this allows us not to store "
  994. "this data about you."
  995. msgstr ""
  996. "Deze instellingen worden bewaard in je cookies. Hierdoor hoeven wij niets"
  997. " over jou te bewaren."
  998. #: searx/templates/simple/preferences/footer.html:3
  999. msgid ""
  1000. "These cookies serve your sole convenience, we don't use these cookies to "
  1001. "track you."
  1002. msgstr ""
  1003. "Deze cookies zijn alleen voor je eigen gemak, we gebruiken deze cookies "
  1004. "niet om je te volgen."
  1005. #: searx/templates/simple/preferences/footer.html:6
  1006. msgid "Save"
  1007. msgstr "Bewaar"
  1008. #: searx/templates/simple/preferences/footer.html:9
  1009. msgid "Reset defaults"
  1010. msgstr "Standaardinstellingen herstellen"
  1011. #: searx/templates/simple/preferences/footer.html:13
  1012. msgid "Back"
  1013. msgstr "Terug"
  1014. #: searx/templates/simple/preferences/hotkeys.html:2
  1015. msgid "Hotkeys"
  1016. msgstr "Sneltoetsen"
  1017. #: searx/templates/simple/preferences/hotkeys.html:13
  1018. msgid "Vim-like"
  1019. msgstr "Vim-achtig"
  1020. #: searx/templates/simple/preferences/hotkeys.html:18
  1021. msgid ""
  1022. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1023. "key on main or result page to get help."
  1024. msgstr ""
  1025. "Navigeer resultaten met sneltoetsen (JavaScript benodigd). Toets “h” op "
  1026. "start- of resultaat pagina voor hulp."
  1027. #: searx/templates/simple/preferences/image_proxy.html:2
  1028. msgid "Image proxy"
  1029. msgstr "Afbeeldingenproxy"
  1030. #: searx/templates/simple/preferences/image_proxy.html:14
  1031. msgid "Proxying image results through SearXNG"
  1032. msgstr "Afbeeldingsresultaten proxyen langs SearXNG"
  1033. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1034. msgid "Infinite scroll"
  1035. msgstr "Oneindig scrollen"
  1036. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1037. msgid "Automatically load next page when scrolling to bottom of current page"
  1038. msgstr ""
  1039. "Volgende pagina automatisch laden bij bereiken van onderkant huidige "
  1040. "pagina"
  1041. #: searx/templates/simple/preferences/language.html:24
  1042. msgid "What language do you prefer for search?"
  1043. msgstr "Welke taal wil je gebruiken voor het zoeken?"
  1044. #: searx/templates/simple/preferences/language.html:25
  1045. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1046. msgstr ""
  1047. "Kies Automatisch herkennen om SearXNG de taal van uw zoekopdracht te "
  1048. "laten herkennen."
  1049. #: searx/templates/simple/preferences/method.html:2
  1050. msgid "HTTP Method"
  1051. msgstr "HTTP Methode"
  1052. #: searx/templates/simple/preferences/method.html:14
  1053. msgid "Change how forms are submitted"
  1054. msgstr "Wijzigen hoe formulieren worden ingediend"
  1055. #: searx/templates/simple/preferences/query_in_title.html:2
  1056. msgid "Query in the page's title"
  1057. msgstr "Zoekopdracht in paginatitel"
  1058. #: searx/templates/simple/preferences/query_in_title.html:14
  1059. msgid ""
  1060. "When enabled, the result page's title contains your query. Your browser "
  1061. "can record this title"
  1062. msgstr ""
  1063. "Indien aangevinkt, zal de paginatitel je zoekopdracht bevatten. Je "
  1064. "browser kan deze titel mogelijk opslaan"
  1065. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1066. msgid "Results on new tabs"
  1067. msgstr "Resultaten op nieuwe tabbladen"
  1068. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1069. msgid "Open result links on new browser tabs"
  1070. msgstr "Open koppelingen in nieuwe tabbladen"
  1071. #: searx/templates/simple/preferences/safesearch.html:20
  1072. msgid "Filter content"
  1073. msgstr "Filteren op inhoud"
  1074. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1075. msgid "Search on category select"
  1076. msgstr "Zoeken bij selecteren van categorie"
  1077. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1078. msgid ""
  1079. "Perform search immediately if a category selected. Disable to select "
  1080. "multiple categories"
  1081. msgstr ""
  1082. "Voer zoekopdracht direct uit wanneer categorie is geselecteerd. Zet uit "
  1083. "om meerdere categorieën te selecteren."
  1084. #: searx/templates/simple/preferences/theme.html:2
  1085. msgid "Theme"
  1086. msgstr "Thema"
  1087. #: searx/templates/simple/preferences/theme.html:14
  1088. msgid "Change SearXNG layout"
  1089. msgstr "Verander lay-out van SearXNG"
  1090. #: searx/templates/simple/preferences/theme.html:19
  1091. msgid "Theme style"
  1092. msgstr "Themastijl"
  1093. #: searx/templates/simple/preferences/theme.html:31
  1094. msgid "Choose auto to follow your browser settings"
  1095. msgstr "Kies auto om je browserinstellingen te gebruiken"
  1096. #: searx/templates/simple/preferences/tokens.html:2
  1097. msgid "Engine tokens"
  1098. msgstr "Engine tokens"
  1099. #: searx/templates/simple/preferences/tokens.html:9
  1100. msgid "Access tokens for private engines"
  1101. msgstr "Toegangstokens voor privé-engines"
  1102. #: searx/templates/simple/preferences/ui_locale.html:2
  1103. msgid "Interface language"
  1104. msgstr "Interfacetaal"
  1105. #: searx/templates/simple/preferences/ui_locale.html:14
  1106. msgid "Change the language of the layout"
  1107. msgstr "Wijzig de taal van de lay-out"
  1108. #: searx/templates/simple/preferences/urlformatting.html:2
  1109. msgid "URL formatting"
  1110. msgstr "URL opmaak"
  1111. #: searx/templates/simple/preferences/urlformatting.html:8
  1112. msgid "Pretty"
  1113. msgstr "Mooi"
  1114. #: searx/templates/simple/preferences/urlformatting.html:13
  1115. msgid "Full"
  1116. msgstr "Volledig(e)"
  1117. #: searx/templates/simple/preferences/urlformatting.html:18
  1118. msgid "Host"
  1119. msgstr "Host"
  1120. #: searx/templates/simple/preferences/urlformatting.html:23
  1121. msgid "Change result URL formatting"
  1122. msgstr "Pas de resultaat URL opmaak aan"
  1123. #: searx/templates/simple/result_templates/code.html:13
  1124. msgid "repo"
  1125. msgstr "repo's"
  1126. #: searx/templates/simple/result_templates/default.html:6
  1127. #: searx/templates/simple/result_templates/files.html:8
  1128. #: searx/templates/simple/result_templates/files.html:11
  1129. msgid "show media"
  1130. msgstr "toon media"
  1131. #: searx/templates/simple/result_templates/default.html:6
  1132. #: searx/templates/simple/result_templates/files.html:8
  1133. msgid "hide media"
  1134. msgstr "verberg media"
  1135. #: searx/templates/simple/result_templates/default.html:14
  1136. #: searx/templates/simple/result_templates/videos.html:14
  1137. msgid "This site did not provide any description."
  1138. msgstr "Deze site is niet voorzien van een beschrijving."
  1139. #: searx/templates/simple/result_templates/files.html:38
  1140. #: searx/templates/simple/result_templates/images.html:22
  1141. #: searx/templates/simple/result_templates/torrent.html:11
  1142. msgid "Filesize"
  1143. msgstr "Bestandsgrootte"
  1144. #: searx/templates/simple/result_templates/files.html:40
  1145. msgid "Date"
  1146. msgstr "Datum"
  1147. #: searx/templates/simple/result_templates/files.html:42
  1148. #: searx/templates/simple/result_templates/paper.html:24
  1149. msgid "Type"
  1150. msgstr "type"
  1151. #: searx/templates/simple/result_templates/images.html:20
  1152. msgid "Resolution"
  1153. msgstr "Resolutie"
  1154. #: searx/templates/simple/result_templates/images.html:21
  1155. msgid "Format"
  1156. msgstr "Formaat"
  1157. #: searx/templates/simple/result_templates/images.html:24
  1158. msgid "Engine"
  1159. msgstr "Zoekmachine"
  1160. #: searx/templates/simple/result_templates/images.html:25
  1161. msgid "View source"
  1162. msgstr "Bekijk bron"
  1163. #: searx/templates/simple/result_templates/map.html:12
  1164. msgid "address"
  1165. msgstr "Adres"
  1166. #: searx/templates/simple/result_templates/map.html:43
  1167. msgid "show map"
  1168. msgstr "toon kaart"
  1169. #: searx/templates/simple/result_templates/map.html:43
  1170. msgid "hide map"
  1171. msgstr "verberg kaart"
  1172. #: searx/templates/simple/result_templates/packages.html:12
  1173. msgid "Version"
  1174. msgstr "Versie"
  1175. #: searx/templates/simple/result_templates/packages.html:18
  1176. msgid "Maintainer"
  1177. msgstr "Handhaver"
  1178. #: searx/templates/simple/result_templates/packages.html:24
  1179. msgid "Updated at"
  1180. msgstr "Bijgewerkt op"
  1181. #: searx/templates/simple/result_templates/packages.html:30
  1182. #: searx/templates/simple/result_templates/paper.html:25
  1183. msgid "Tags"
  1184. msgstr "labels"
  1185. #: searx/templates/simple/result_templates/packages.html:36
  1186. msgid "Popularity"
  1187. msgstr "Populariteit"
  1188. #: searx/templates/simple/result_templates/packages.html:42
  1189. msgid "License"
  1190. msgstr "Licentie"
  1191. #: searx/templates/simple/result_templates/packages.html:52
  1192. msgid "Project"
  1193. msgstr "Project"
  1194. #: searx/templates/simple/result_templates/packages.html:55
  1195. msgid "Project homepage"
  1196. msgstr "Projectpagina"
  1197. #: searx/templates/simple/result_templates/paper.html:5
  1198. msgid "Published date"
  1199. msgstr "publicatie datum"
  1200. #: searx/templates/simple/result_templates/paper.html:9
  1201. msgid "Journal"
  1202. msgstr "dagboek"
  1203. #: searx/templates/simple/result_templates/paper.html:22
  1204. msgid "Editor"
  1205. msgstr "Redacteur"
  1206. #: searx/templates/simple/result_templates/paper.html:23
  1207. msgid "Publisher"
  1208. msgstr "uitgever"
  1209. #: searx/templates/simple/result_templates/paper.html:26
  1210. msgid "DOI"
  1211. msgstr "DOI"
  1212. #: searx/templates/simple/result_templates/paper.html:27
  1213. msgid "ISSN"
  1214. msgstr "ISSN"
  1215. #: searx/templates/simple/result_templates/paper.html:28
  1216. msgid "ISBN"
  1217. msgstr "ISBN"
  1218. #: searx/templates/simple/result_templates/paper.html:33
  1219. msgid "PDF"
  1220. msgstr "PDF"
  1221. #: searx/templates/simple/result_templates/paper.html:34
  1222. msgid "HTML"
  1223. msgstr "HTML"
  1224. #: searx/templates/simple/result_templates/torrent.html:6
  1225. msgid "magnet link"
  1226. msgstr "magneetlink"
  1227. #: searx/templates/simple/result_templates/torrent.html:7
  1228. msgid "torrent file"
  1229. msgstr "torrentbestand"
  1230. #: searx/templates/simple/result_templates/torrent.html:9
  1231. msgid "Seeder"
  1232. msgstr "Seeders"
  1233. #: searx/templates/simple/result_templates/torrent.html:9
  1234. msgid "Leecher"
  1235. msgstr "Leechers"
  1236. #: searx/templates/simple/result_templates/torrent.html:13
  1237. msgid "Number of Files"
  1238. msgstr "Aantal bestanden"
  1239. #: searx/templates/simple/result_templates/videos.html:6
  1240. msgid "show video"
  1241. msgstr "toon video"
  1242. #: searx/templates/simple/result_templates/videos.html:6
  1243. msgid "hide video"
  1244. msgstr "verberg video"
  1245. #~ msgid "Engine time (sec)"
  1246. #~ msgstr "Snelheid zoekmachine (sec)"
  1247. #~ msgid "Page loads (sec)"
  1248. #~ msgstr "Laden van pagina’s (sec)"
  1249. #~ msgid "Errors"
  1250. #~ msgstr "Fouten"
  1251. #~ msgid "CAPTCHA required"
  1252. #~ msgstr "CAPTCHA vereist"
  1253. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1254. #~ msgstr "Herschrijf HTTP-koppelingen naar HTTPS, indien mogelijk"
  1255. #~ msgid ""
  1256. #~ "Results are opened in the same "
  1257. #~ "window by default. This plugin "
  1258. #~ "overwrites the default behaviour to open"
  1259. #~ " links on new tabs/windows. (JavaScript "
  1260. #~ "required)"
  1261. #~ msgstr ""
  1262. #~ "Resultaten worden standaard in hetzelfde "
  1263. #~ "venster geopend. Deze plug-in "
  1264. #~ "overschrijft het standaardgedrag zodat "
  1265. #~ "koppelingen in nieuwe tabbladen/vensters "
  1266. #~ "geopend worden. (JavaScript vereist)"
  1267. #~ msgid "Color"
  1268. #~ msgstr "Kleur"
  1269. #~ msgid "Blue (default)"
  1270. #~ msgstr "Blauw (standaard)"
  1271. #~ msgid "Violet"
  1272. #~ msgstr "Violet"
  1273. #~ msgid "Green"
  1274. #~ msgstr "Groen"
  1275. #~ msgid "Cyan"
  1276. #~ msgstr "Cyaan"
  1277. #~ msgid "Orange"
  1278. #~ msgstr "Oranje"
  1279. #~ msgid "Red"
  1280. #~ msgstr "Rood"
  1281. #~ msgid "Category"
  1282. #~ msgstr "Categorie"
  1283. #~ msgid "Block"
  1284. #~ msgstr "Blokkeren"
  1285. #~ msgid "original context"
  1286. #~ msgstr "oorspronkelijke context"
  1287. #~ msgid "Plugins"
  1288. #~ msgstr "Plug-ins"
  1289. #~ msgid "Answerers"
  1290. #~ msgstr "Beantwoorders"
  1291. #~ msgid "Avg. time"
  1292. #~ msgstr "Gem. duur"
  1293. #~ msgid "show details"
  1294. #~ msgstr "toon details"
  1295. #~ msgid "hide details"
  1296. #~ msgstr "verberg details"
  1297. #~ msgid "Load more..."
  1298. #~ msgstr "Meer laden..."
  1299. #~ msgid "Loading..."
  1300. #~ msgstr "Laden..."
  1301. #~ msgid "Change searx layout"
  1302. #~ msgstr "Opmaak van searx aanpassen"
  1303. #~ msgid "Proxying image results through searx"
  1304. #~ msgstr "Afbeeldingsresultaten via searx laden"
  1305. #~ msgid "This is the list of searx's instant answering modules."
  1306. #~ msgstr "Dit is het overzicht van de instantantwoordmodules van searx."
  1307. #~ msgid ""
  1308. #~ "This is the list of cookies and"
  1309. #~ " their values searx is storing on "
  1310. #~ "your computer."
  1311. #~ msgstr ""
  1312. #~ "Dit is de lijst van cookies en "
  1313. #~ "hun waarden die searx op je "
  1314. #~ "computer opslaat."
  1315. #~ msgid "With that list, you can assess searx transparency."
  1316. #~ msgstr "Met deze lijst kan je de openheid van searx beoordelen."
  1317. #~ msgid "It look like you are using searx first time."
  1318. #~ msgstr "Het lijkt erop dat je searx voor de eerste keer gebruikt."
  1319. #~ msgid "Please, try again later or find another searx instance."
  1320. #~ msgstr "Probeer het later opnieuw, of gebruik een andere searx server."
  1321. #~ msgid "Themes"
  1322. #~ msgstr "Thema’s"
  1323. #~ msgid "Reliablity"
  1324. #~ msgstr ""
  1325. #~ msgid ""
  1326. #~ "When enabled, the result page's title"
  1327. #~ " contains your query. Your browser "
  1328. #~ "can record this title."
  1329. #~ msgstr ""
  1330. #~ msgid "Method"
  1331. #~ msgstr "Methode"
  1332. #~ msgid ""
  1333. #~ "This tab does not show up for "
  1334. #~ "search results but you can search "
  1335. #~ "the engines listed here via bangs."
  1336. #~ msgstr ""
  1337. #~ msgid "Advanced settings"
  1338. #~ msgstr "Geavanceerde instellingen"
  1339. #~ msgid "Close"
  1340. #~ msgstr "Sluiten"
  1341. #~ msgid "Language"
  1342. #~ msgstr "Taal"
  1343. #~ msgid "broken"
  1344. #~ msgstr "stuk"
  1345. #~ msgid "supported"
  1346. #~ msgstr "ondersteund"
  1347. #~ msgid "not supported"
  1348. #~ msgstr "niet ondersteund"
  1349. #~ msgid "about"
  1350. #~ msgstr "over"
  1351. #~ msgid "Avg."
  1352. #~ msgstr "Gem."
  1353. #~ msgid "User Interface"
  1354. #~ msgstr "Gebruikersinterface"
  1355. #~ msgid "Choose style for this theme"
  1356. #~ msgstr "Kies een stijl voor dit thema"
  1357. #~ msgid "Style"
  1358. #~ msgstr "Stijl"
  1359. #~ msgid "Show advanced settings"
  1360. #~ msgstr "Geavanceerde instellingen tonen"
  1361. #~ msgid "Show advanced settings panel in the home page by default"
  1362. #~ msgstr "Paneel met geavanceerde instellingen standaard tonen op homepagina"
  1363. #~ msgid "Allow all"
  1364. #~ msgstr "Alles inschakelen"
  1365. #~ msgid "Disable all"
  1366. #~ msgstr "Alles uitschakelen"
  1367. #~ msgid "Selected language"
  1368. #~ msgstr "Geselecteerde taal"
  1369. #~ msgid "Query"
  1370. #~ msgstr "Zoekopdracht"
  1371. #~ msgid "save"
  1372. #~ msgstr "bewaren"
  1373. #~ msgid "back"
  1374. #~ msgstr "terug"
  1375. #~ msgid "Links"
  1376. #~ msgstr "Koppelingen"
  1377. #~ msgid "RSS subscription"
  1378. #~ msgstr "RSS-abonnement"
  1379. #~ msgid "Search results"
  1380. #~ msgstr "Zoekresultaten"
  1381. #~ msgid "next page"
  1382. #~ msgstr "volgende pagina"
  1383. #~ msgid "previous page"
  1384. #~ msgstr "vorige pagina"
  1385. #~ msgid "Start search"
  1386. #~ msgstr "Start zoeken"
  1387. #~ msgid "Clear search"
  1388. #~ msgstr "Zoekopdracht wissen"
  1389. #~ msgid "Clear"
  1390. #~ msgstr "Wissen"
  1391. #~ msgid "stats"
  1392. #~ msgstr "stats"
  1393. #~ msgid "Heads up!"
  1394. #~ msgstr "Opgelet!"
  1395. #~ msgid "It look like you are using SearXNG first time."
  1396. #~ msgstr "Het lijkt erop dat je SearXNG voor de eerste keer gebruikt."
  1397. #~ msgid "Well done!"
  1398. #~ msgstr "Goed gedaan!"
  1399. #~ msgid "Settings saved successfully."
  1400. #~ msgstr "Instellingen opgeslagen."
  1401. #~ msgid "Oh snap!"
  1402. #~ msgstr "Oeps!"
  1403. #~ msgid "Something went wrong."
  1404. #~ msgstr "Er ging iets fout."
  1405. #~ msgid "Date"
  1406. #~ msgstr "Datum"
  1407. #~ msgid "Type"
  1408. #~ msgstr "Type"
  1409. #~ msgid "Get image"
  1410. #~ msgstr "Toon afbeelding"
  1411. #~ msgid "Center Alignment"
  1412. #~ msgstr ""
  1413. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1414. #~ msgstr ""
  1415. #~ msgid "preferences"
  1416. #~ msgstr "voorkeuren"
  1417. #~ msgid "Scores per result"
  1418. #~ msgstr "Scores per zoekresultaat"
  1419. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1420. #~ msgstr "een privacy-respecterende, aanpasbare meta-zoekmachine"
  1421. #~ msgid "No abstract is available for this publication."
  1422. #~ msgstr "Voor deze publicatie is geen abstract beschikbaar."
  1423. #~ msgid "Self Informations"
  1424. #~ msgstr "Informatie Over Jezelf"
  1425. #~ msgid ""
  1426. #~ "Change how forms are submited, <a "
  1427. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1428. #~ " rel=\"external\">learn more about request "
  1429. #~ "methods</a>"
  1430. #~ msgstr ""
  1431. #~ "Bepaal hoe de formulieren worden "
  1432. #~ "ingestuurd, <a "
  1433. #~ "href=\"http://nl.wikipedia.org/wiki/Hypertext_Transfer_Protocol"
  1434. #~ "#HTTP-requests\" rel=\"external\">lees meer over"
  1435. #~ " opvraagmethodes</a>"
  1436. #~ msgid ""
  1437. #~ "This plugin checks if the address "
  1438. #~ "of the request is a TOR exit "
  1439. #~ "node, and informs the user if it"
  1440. #~ " is, like check.torproject.org but from "
  1441. #~ "searxng."
  1442. #~ msgstr ""
  1443. #~ "Deze plugin controleert of het adres "
  1444. #~ "van de aanvraag een TOR exit node"
  1445. #~ " is, en informeert de gebruiker als"
  1446. #~ " dat zo is, net zoals "
  1447. #~ "check.torproject.org maar dan van searxng."
  1448. #~ msgid ""
  1449. #~ "The TOR exit node list "
  1450. #~ "(https://check.torproject.org/exit-addresses) is "
  1451. #~ "unreachable."
  1452. #~ msgstr ""
  1453. #~ "De TOR exit node lijst "
  1454. #~ "(https://check.torproject.org/exit-addresses) is "
  1455. #~ "onbereikbaar."
  1456. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1457. #~ msgstr "Je gebruikt TOR. Het lijkt erop dat uw IP adres {ip_adress} is."
  1458. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1459. #~ msgstr "Je gebruikt geen TOR. Het lijkt erop dat je IP adres {ip_address} is."
  1460. #~ msgid ""
  1461. #~ "The could not download the list of"
  1462. #~ " Tor exit-nodes from "
  1463. #~ "https://check.torproject.org/exit-addresses."
  1464. #~ msgstr ""
  1465. #~ msgid ""
  1466. #~ "You are using Tor. It looks like"
  1467. #~ " you have this external IP address:"
  1468. #~ " {ip_address}."
  1469. #~ msgstr ""
  1470. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1471. #~ msgstr ""
  1472. #~ msgid "Autodetect search language"
  1473. #~ msgstr ""
  1474. #~ msgid "Automatically detect the query search language and switch to it."
  1475. #~ msgstr ""
  1476. #~ msgid "others"
  1477. #~ msgstr "overigen"
  1478. #~ msgid ""
  1479. #~ "This tab does not show up for "
  1480. #~ "search results, but you can search "
  1481. #~ "the engines listed here via bangs."
  1482. #~ msgstr ""
  1483. #~ "Dit tabblad wordt niet weergegeven voor"
  1484. #~ " zoekresultaten, maar u kunt de hier"
  1485. #~ " genoemde zoekmachines doorzoeken via "
  1486. #~ "bangs."
  1487. #~ msgid "Shortcut"
  1488. #~ msgstr "Snelkoppeling"
  1489. #~ msgid "!bang"
  1490. #~ msgstr ""
  1491. #~ msgid ""
  1492. #~ "This tab dues not exists in the"
  1493. #~ " user interface, but you can search"
  1494. #~ " in these engines by its !bangs."
  1495. #~ msgstr ""
  1496. #~ "Deze tab bestaat niet in de "
  1497. #~ "gebruikers omgeving, maar u kunt in "
  1498. #~ "deze machines zoeken via hun !bang."
  1499. #~ msgid "Engines cannot retrieve results."
  1500. #~ msgstr "Zoekmachines konden geen resultaten ophalen."
  1501. #~ msgid "Please, try again later or find another SearXNG instance."
  1502. #~ msgstr ""
  1503. #~ "Gelieve later opnieuw te proberen of "
  1504. #~ "een andere SearXNG-instantie te "
  1505. #~ "proberen."
  1506. #~ msgid ""
  1507. #~ "Redirect to open-access versions of "
  1508. #~ "publications when available (plugin required)"
  1509. #~ msgstr ""
  1510. #~ "Doorverwijzen naar vrij toegankelijke versies"
  1511. #~ " van publicaties, indien beschikbaar "
  1512. #~ "(plug-in vereist)"
  1513. #~ msgid "Bang"
  1514. #~ msgstr "!bang"
  1515. #~ msgid ""
  1516. #~ "Change how forms are submitted, <a "
  1517. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1518. #~ " rel=\"external\">learn more about request "
  1519. #~ "methods</a>"
  1520. #~ msgstr ""
  1521. #~ "Bepaal hoe de formulieren worden "
  1522. #~ "ingestuurd, <a "
  1523. #~ "href=\"http://nl.wikipedia.org/wiki/Hypertext_Transfer_Protocol"
  1524. #~ "#HTTP-requests\" rel=\"external\">lees meer over"
  1525. #~ " opvraagmethodes</a>"
  1526. #~ msgid "On"
  1527. #~ msgstr "Aan"
  1528. #~ msgid "Off"
  1529. #~ msgstr "Uit"
  1530. #~ msgid "Enabled"
  1531. #~ msgstr "Ingeschakeld"
  1532. #~ msgid "Disabled"
  1533. #~ msgstr "Uitgeschakeld"
  1534. #~ msgid ""
  1535. #~ "Perform search immediately if a category"
  1536. #~ " selected. Disable to select multiple "
  1537. #~ "categories. (JavaScript required)"
  1538. #~ msgstr ""
  1539. #~ "Zoekopdracht onmiddellijk uitvoeren wanneer "
  1540. #~ "een categorie geselecteerd wordt. Zet "
  1541. #~ "dit uit om meerdere categorieën te "
  1542. #~ "selecteren. (JavaScript vereist)"
  1543. #~ msgid "Vim-like hotkeys"
  1544. #~ msgstr "Sneltoetsen als in Vim"
  1545. #~ msgid ""
  1546. #~ "Navigate search results with Vim-like"
  1547. #~ " hotkeys (JavaScript required). Press \"h\""
  1548. #~ " key on main or result page to"
  1549. #~ " get help."
  1550. #~ msgstr ""
  1551. #~ "Blader door zoekresultaten met sneltoetsen "
  1552. #~ "zoals die in Vim (JavaScript vereist)."
  1553. #~ " Druk op ‘h’ op de hoofdpagina "
  1554. #~ "of de pagina met resultaten voor "
  1555. #~ "hulp."
  1556. #~ msgid ""
  1557. #~ "we didn't find any results. Please "
  1558. #~ "use another query or search in "
  1559. #~ "more categories."
  1560. #~ msgstr ""
  1561. #~ "We konden geen resultaten vinden. "
  1562. #~ "Probeer een andere zoekopdracht, of zoek"
  1563. #~ " in meer categorieën."
  1564. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1565. #~ msgstr ""
  1566. #~ "Pas resulterende servernamen aan of "
  1567. #~ "verwijder resultaten op basis van de "
  1568. #~ "servernaam"
  1569. #~ msgid "Bytes"
  1570. #~ msgstr "Bytes"
  1571. #~ msgid "kiB"
  1572. #~ msgstr "kiB"
  1573. #~ msgid "MiB"
  1574. #~ msgstr "MiB"
  1575. #~ msgid "GiB"
  1576. #~ msgstr "GiB"
  1577. #~ msgid "TiB"
  1578. #~ msgstr "TiB"
  1579. #~ msgid "Hostname replace"
  1580. #~ msgstr "Servernaam vervangen"
  1581. #~ msgid "Error!"
  1582. #~ msgstr "Fout!"
  1583. #~ msgid "Engines cannot retrieve results"
  1584. #~ msgstr "Zoekmachines konden geen resultaten ophalen"
  1585. #~ msgid "Start submiting a new issue on GitHub"
  1586. #~ msgstr "Maak een nieuwe issue op Github"