messages.po 60 KB

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