djangojs.po 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. # Translators:
  7. # Evelijn Saaltink <evelijnsaaltink@gmail.com>, 2017
  8. # Estefan Trabajo <mauro22.de.wit@gmail.com>, 2018
  9. # Sem Bauke <Sembauke@gmail.com>, 2018
  10. #
  11. #, fuzzy
  12. msgid ""
  13. msgstr ""
  14. "Project-Id-Version: PACKAGE VERSION\n"
  15. "Report-Msgid-Bugs-To: \n"
  16. "POT-Creation-Date: 2020-05-25 19:34+0000\n"
  17. "PO-Revision-Date: 2017-01-16 00:04+0000\n"
  18. "Last-Translator: Sem Bauke <Sembauke@gmail.com>, 2018\n"
  19. "Language-Team: Dutch (https://www.transifex.com/misago/teams/65369/nl/)\n"
  20. "MIME-Version: 1.0\n"
  21. "Content-Type: text/plain; charset=UTF-8\n"
  22. "Content-Transfer-Encoding: 8bit\n"
  23. "Language: nl\n"
  24. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  25. #: static/misago/admin/index.js:16
  26. msgid "defineLocaleOverride"
  27. msgstr ""
  28. #: static/misago/js/misago.js:1
  29. msgid "the terms of service"
  30. msgstr ""
  31. #: static/misago/js/misago.js:1
  32. msgid "the privacy policy"
  33. msgstr ""
  34. #: static/misago/js/misago.js:1
  35. msgid "I have read and accept %(agreement)s."
  36. msgstr ""
  37. #: static/misago/js/misago.js:1
  38. msgid ""
  39. "Declining will result in immediate deactivation and deletion of your "
  40. "account. This action is not reversible."
  41. msgstr ""
  42. #: static/misago/js/misago.js:1
  43. msgid "Decline"
  44. msgstr "Weigeren"
  45. #: static/misago/js/misago.js:1
  46. msgid "Accept and continue"
  47. msgstr ""
  48. #: static/misago/js/misago.js:1
  49. msgid "You have to enter user name."
  50. msgstr "Je moet een gebruikersnaam invoeren"
  51. #: static/misago/js/misago.js:1
  52. msgid "New participant has been added to thread."
  53. msgstr "Een nieuwe deelnemer is aan het onderwerp toegevoegd."
  54. #: static/misago/js/misago.js:1
  55. msgid "User to add"
  56. msgstr "Gebruiker om toe te voegen"
  57. #: static/misago/js/misago.js:1
  58. msgid "Add participant"
  59. msgstr "Deelnemer toevoegen"
  60. #: static/misago/js/misago.js:1
  61. msgid "Cancel"
  62. msgstr "Annuleren"
  63. #: static/misago/js/misago.js:1
  64. msgid "Close"
  65. msgstr "Sluiten"
  66. #: static/misago/js/misago.js:1
  67. msgid ""
  68. "You have signed in as %(username)s. Please refresh the page before "
  69. "continuing."
  70. msgstr ""
  71. "Je bent ingelogd als %(username)s. Ververs de pagina alvorens door te gaan"
  72. #: static/misago/js/misago.js:1
  73. msgid ""
  74. "%(username)s, you have been signed out. Please refresh the page before "
  75. "continuing."
  76. msgstr ""
  77. "%(username)s, Je bent uitgelogd. Herlaad de pagina om verder te gaan. "
  78. #: static/misago/js/misago.js:1
  79. msgid "Reload page"
  80. msgstr "Pagina herladen"
  81. #: static/misago/js/misago.js:1
  82. msgid "or press F5 key."
  83. msgstr "of druk op F5."
  84. #: static/misago/js/misago.js:1
  85. msgid "This ban expires on %(expires_on)s."
  86. msgstr "Deze ban verloopt op %(expires_on)s."
  87. #: static/misago/js/misago.js:1
  88. msgid "This ban expires %(expires_on)s."
  89. msgstr "Deze ban verloopt op %(expires_on)s."
  90. #: static/misago/js/misago.js:1
  91. msgid "This ban has expired."
  92. msgstr "Deze ban is verlopen."
  93. #: static/misago/js/misago.js:1
  94. msgid "This ban is permanent."
  95. msgstr "Deze ban is permanent."
  96. #: static/misago/js/misago.js:1
  97. msgid "No categories exist or you don't have permission to see them."
  98. msgstr "Er bestaan geen categorieën of je hebt geen permissie om ze te zien."
  99. #: static/misago/js/misago.js:1
  100. msgid "This category has no new posts. (closed)"
  101. msgstr "Deze categorie heeft geen nieuwe posts. (gesloten)"
  102. #: static/misago/js/misago.js:1
  103. msgid "This category has new posts. (closed)"
  104. msgstr "Deze categorie heeft nieuwe posts. (gesloten)"
  105. #: static/misago/js/misago.js:1
  106. msgid "This category has no new posts."
  107. msgstr "Deze categorie heeft geen nieuwe posts."
  108. #: static/misago/js/misago.js:1
  109. msgid "This category has new posts."
  110. msgstr "Deze categorie heeft nieuwe posts."
  111. #: static/misago/js/misago.js:1
  112. msgid "This category is empty. No threads were posted within it so far."
  113. msgstr "Deze categorie is leeg, er zijn nog geen post geplaatst. "
  114. #: static/misago/js/misago.js:1
  115. msgid "This category is private. You can see only your own threads within it."
  116. msgstr ""
  117. "Deze categorie is privé. Je kunt hierin alleen je eigen onderwerpen zien."
  118. #: static/misago/js/misago.js:1
  119. msgid "This category is protected. You can't browse its contents."
  120. msgstr ""
  121. #: static/misago/js/misago.js:1
  122. msgid "%(threads)s thread"
  123. msgid_plural "%(threads)s threads"
  124. msgstr[0] "%(threads)s onderwerp"
  125. msgstr[1] "%(threads)s onderwerpen"
  126. #: static/misago/js/misago.js:1
  127. msgid "%(posts)s post"
  128. msgid_plural "%(posts)s posts"
  129. msgstr[0] "%(posts)s post"
  130. msgstr[1] "%(posts)s posts"
  131. #: static/misago/js/misago.js:1
  132. msgid "Set avatar"
  133. msgstr "Avatar instellen"
  134. #: static/misago/js/misago.js:1
  135. msgid "Crop image"
  136. msgstr "Afbeelding croppen"
  137. #: static/misago/js/misago.js:1
  138. msgid "Save choice"
  139. msgstr "Keuze opslaa"
  140. #: static/misago/js/misago.js:1
  141. msgid "Select avatar"
  142. msgstr "Avatar selecteren"
  143. #: static/misago/js/misago.js:1
  144. msgid "Download my Gravatar"
  145. msgstr "Download mijn Gravatar"
  146. #: static/misago/js/misago.js:1
  147. msgid "Re-crop uploaded image"
  148. msgstr "Geüploade afbeeldingen opnieuw croppen"
  149. #: static/misago/js/misago.js:1
  150. msgid "Upload new image"
  151. msgstr "Nieuwe afbeelding uploaden"
  152. #: static/misago/js/misago.js:1
  153. msgid "Pick avatar from gallery"
  154. msgstr "Avatar van galerij selecteren"
  155. #: static/misago/js/misago.js:1
  156. msgid "Generate my individual avatar"
  157. msgstr "Mijn individuele avatar genereren"
  158. #: static/misago/js/misago.js:1
  159. msgid "Ok"
  160. msgstr "Oke"
  161. #: static/misago/js/misago.js:1
  162. msgid "Change your avatar"
  163. msgstr "Je avatar veranderen"
  164. #: static/misago/js/misago.js:1
  165. msgid "Your image has been uploaded and you may now crop it."
  166. msgstr "Je afbeelding is geüpload en je mag hem nu croppen."
  167. #: static/misago/js/misago.js:1
  168. msgid "Selected file is too big. (%(filesize)s)"
  169. msgstr "Het geselecteerde bestand is te groot. (%(filesize)s)"
  170. #: static/misago/js/misago.js:1
  171. msgid "Selected file type is not supported."
  172. msgstr "Het geselecteerde bestandstype wordt niet ondersteund."
  173. #: static/misago/js/misago.js:1
  174. msgid "%(files)s files smaller than %(limit)s"
  175. msgstr "%(files)s bestanden kleiner dan %(limit)s"
  176. #: static/misago/js/misago.js:1
  177. msgid "Select file"
  178. msgstr "Bestand selecteren"
  179. #: static/misago/js/misago.js:1
  180. msgid "%(progress)s % complete"
  181. msgstr "%(progress)s % compleet"
  182. #: static/misago/js/misago.js:1
  183. msgid "No profile details are editable at this time."
  184. msgstr "Geen profielinstellingen zijn bewerkbaar om deze tijd."
  185. #: static/misago/js/misago.js:1
  186. msgid "This option is currently unavailable."
  187. msgstr "Deze instelling is momenteel niet beschikbaar."
  188. #: static/misago/js/misago.js:1
  189. msgid "Form contains errors."
  190. msgstr "Het forum heeft fouten"
  191. #: static/misago/js/misago.js:1
  192. msgid "Save changes"
  193. msgstr "Sla de veranderingen op. "
  194. #: static/misago/js/misago.js:1
  195. msgid "Edit details"
  196. msgstr "Bewerk gegevens"
  197. #: static/misago/js/misago.js:1
  198. msgid "Insert code"
  199. msgstr "Code invoeren"
  200. #: static/misago/js/misago.js:1
  201. msgid "Enter name of syntax of your code (optional)"
  202. msgstr ""
  203. #: static/misago/js/misago.js:1
  204. msgid "Emphase selection"
  205. msgstr ""
  206. #: static/misago/js/misago.js:1
  207. msgid "Insert horizontal ruler"
  208. msgstr "Horizontale liniaal invoeren"
  209. #: static/misago/js/misago.js:1
  210. msgid "Insert image"
  211. msgstr "Afbeelding invoeren"
  212. #: static/misago/js/misago.js:1
  213. msgid "Enter link to image"
  214. msgstr "Link naar afbeelding invoeren"
  215. #: static/misago/js/misago.js:1
  216. msgid "Enter image label (optional)"
  217. msgstr "Label van de afbeelding invoeren (optioneel)"
  218. #: static/misago/js/misago.js:1
  219. msgid "Insert link"
  220. msgstr "Link invoeren"
  221. #: static/misago/js/misago.js:1
  222. msgid "Enter link address"
  223. msgstr "Linkadres invoeren"
  224. #: static/misago/js/misago.js:1
  225. msgid "Enter link label (optional)"
  226. msgstr "Type je link etiket (optioneel) "
  227. #: static/misago/js/misago.js:1
  228. msgid "Insert quote"
  229. msgstr "Citaat invoeren"
  230. #: static/misago/js/misago.js:1
  231. msgid "Enter quote autor, prefix usernames with @"
  232. msgstr ""
  233. #: static/misago/js/misago.js:1
  234. msgid "Insert spoiler"
  235. msgstr ""
  236. #: static/misago/js/misago.js:1
  237. msgid "Strikethrough selection"
  238. msgstr ""
  239. #: static/misago/js/misago.js:1
  240. msgid "Bolder selection"
  241. msgstr "Dikkere selectie"
  242. #: static/misago/js/misago.js:1
  243. msgid "%(filetype)s, %(size)s, uploaded by %(uploader)s %(uploaded_on)s."
  244. msgstr "%(filetype)s, %(size)s, geüpload door %(uploader)s %(uploaded_on)s."
  245. #: static/misago/js/misago.js:1
  246. msgid "Insert"
  247. msgstr "Invoeren"
  248. #: static/misago/js/misago.js:1
  249. msgid "Remove"
  250. msgstr "Verwijderen"
  251. #: static/misago/js/misago.js:1
  252. msgid "Undo removal"
  253. msgstr "Verwijdering ongedaan maken"
  254. #: static/misago/js/misago.js:1
  255. msgid "Error uploading %(filename)s"
  256. msgstr "Fout bij het uploaden van %(filename)s"
  257. #: static/misago/js/misago.js:1
  258. msgid "Dismiss"
  259. msgstr "wijs af"
  260. #: static/misago/js/misago.js:1
  261. msgid "Uploading %(filename)s... %(progress)s"
  262. msgstr "Upload %(filename)s ... %(progress)s "
  263. #: static/misago/js/misago.js:1
  264. msgid "Upload file"
  265. msgstr "Upload bestand"
  266. #: static/misago/js/misago.js:1
  267. msgid "Preview"
  268. msgstr "voorvertoning "
  269. #: static/misago/js/misago.js:1
  270. msgid "Post"
  271. msgstr "Post"
  272. #: static/misago/js/misago.js:1
  273. msgid "Protected"
  274. msgstr "Beschermd"
  275. #: static/misago/js/misago.js:1
  276. msgid "Protect"
  277. msgstr "Bescherm"
  278. #: static/misago/js/misago.js:1
  279. msgid "Preview message"
  280. msgstr "Toon het bericht voor"
  281. #: static/misago/js/misago.js:1
  282. msgid "(error)"
  283. msgstr "(fout)"
  284. #: static/misago/js/misago.js:1
  285. msgid "(success)"
  286. msgstr "(succes)"
  287. #: static/misago/js/misago.js:1
  288. msgid "Are you sure you want to delete all polls?"
  289. msgstr ""
  290. #: static/misago/js/misago.js:1
  291. msgid "Merge threads"
  292. msgstr ""
  293. #: static/misago/js/misago.js:1
  294. msgid "Best answer"
  295. msgstr "Beste Antwoord"
  296. #: static/misago/js/misago.js:1
  297. msgid ""
  298. "Please select the best answer for your newly merged thread. No posts will be"
  299. " deleted during the merge."
  300. msgstr ""
  301. #: static/misago/js/misago.js:1
  302. msgid "Poll"
  303. msgstr "stemprogramma "
  304. #: static/misago/js/misago.js:1
  305. msgid ""
  306. "Please select the poll for your newly merged thread. Rejected polls will be "
  307. "permanently deleted and cannot be recovered."
  308. msgstr ""
  309. #: static/misago/js/misago.js:1
  310. msgid "Search returned no results."
  311. msgstr "De zoekopdracht heeft geen resultaat "
  312. #: static/misago/js/misago.js:1
  313. msgid "Search"
  314. msgstr "Zoek"
  315. #: static/misago/js/misago.js:1
  316. msgid "See full \"%(provider)s\" results page with %(count)s result."
  317. msgid_plural "See full \"%(provider)s\" results page with %(count)s results."
  318. msgstr[0] ""
  319. msgstr[1] ""
  320. #: static/misago/js/misago.js:1
  321. msgid "Posted by %(poster)s on %(posted_on)s in %(category)s."
  322. msgstr "Geplaatst op %(posted_on)s bij %(poster)s in %(category)s"
  323. #: static/misago/js/misago.js:1
  324. msgid "%(title)s, joined on %(joined_on)s"
  325. msgstr ""
  326. #: static/misago/js/misago.js:1
  327. msgid "Change username"
  328. msgstr "Verander je gebruikersnaam"
  329. #: static/misago/js/misago.js:1
  330. msgid "You will be able to change your username %(next_change)s."
  331. msgstr "U kunt uw gebruikersnaamnaam weer veranderen op %(next_change)s"
  332. #: static/misago/js/misago.js:1
  333. msgid "You have used up available name changes."
  334. msgstr "U heeft het maximale aantal gebruikersnaam veranderingen bereikt "
  335. #: static/misago/js/misago.js:1
  336. msgid "You can't change your username at the moment."
  337. msgstr ""
  338. #: static/misago/js/misago.js:1
  339. msgid "You can change your username %(changes_left)s more time."
  340. msgid_plural "You can change your username %(changes_left)s more times."
  341. msgstr[0] ""
  342. msgstr[1] ""
  343. #: static/misago/js/misago.js:1
  344. msgid "Used changes become available again after %(name_changes_expire)s day."
  345. msgid_plural ""
  346. "Used changes become available again after %(name_changes_expire)s days."
  347. msgstr[0] ""
  348. msgstr[1] ""
  349. #: static/misago/js/misago.js:1
  350. msgid "Your new username is same as current one."
  351. msgstr ""
  352. #: static/misago/js/misago.js:1
  353. msgid "New username"
  354. msgstr "Nieuwe Gebruikersnaam "
  355. #: static/misago/js/misago.js:1
  356. msgid "Your username has been changed successfully."
  357. msgstr "Uw gebruikersnaam is succesvol veranderd. "
  358. #: static/misago/js/misago.js:1
  359. msgid "Change your options"
  360. msgstr "Verander je instellingen"
  361. #: static/misago/js/misago.js:1
  362. msgid "Enter your password to confirm account deletion."
  363. msgstr ""
  364. #: static/misago/js/misago.js:1
  365. msgid "Delete account"
  366. msgstr "Verwijder account"
  367. #: static/misago/js/misago.js:1
  368. msgid ""
  369. "You are going to delete your account. This action is nonreversible, and will"
  370. " result in following data being deleted:"
  371. msgstr ""
  372. #: static/misago/js/misago.js:1
  373. msgid ""
  374. "Stored IP addresses associated with content that you have posted will be "
  375. "deleted."
  376. msgstr ""
  377. #: static/misago/js/misago.js:1
  378. msgid ""
  379. "Your username will become available for other user to rename to or for new "
  380. "user to register their account with."
  381. msgstr ""
  382. #: static/misago/js/misago.js:1
  383. msgid "Your e-mail will become available for use in new account registration."
  384. msgstr ""
  385. #: static/misago/js/misago.js:1
  386. msgid ""
  387. "All your posted content will NOT be deleted, but username associated with it"
  388. " will be changed to one shared by all deleted accounts."
  389. msgstr ""
  390. #: static/misago/js/misago.js:1
  391. msgid "Delete my account"
  392. msgstr ""
  393. #: static/misago/js/misago.js:1
  394. msgid "Your request for data download has been registered."
  395. msgstr ""
  396. #: static/misago/js/misago.js:1
  397. msgid "Download your data"
  398. msgstr ""
  399. #: static/misago/js/misago.js:1
  400. msgid ""
  401. "To download your data from the site, click the \"Request data download\" "
  402. "button. Depending on amount of data to be archived and number of users "
  403. "wanting to download their data at same time it may take up to few days for "
  404. "your download to be prepared. An e-mail with notification will be sent to "
  405. "you when your data is ready to be downloaded."
  406. msgstr ""
  407. #: static/misago/js/misago.js:1
  408. msgid ""
  409. "The download will only be available for limited amount of time, after which "
  410. "it will be deleted from the site and marked as expired."
  411. msgstr ""
  412. #: static/misago/js/misago.js:1
  413. msgid "Requested on"
  414. msgstr ""
  415. #: static/misago/js/misago.js:1
  416. msgid "Download"
  417. msgstr ""
  418. #: static/misago/js/misago.js:1
  419. msgid "You have no data downloads."
  420. msgstr ""
  421. #: static/misago/js/misago.js:1
  422. msgid "Request data download"
  423. msgstr ""
  424. #: static/misago/js/misago.js:1
  425. msgid "Download is being prepared"
  426. msgstr ""
  427. #: static/misago/js/misago.js:1
  428. msgid "Download is expired"
  429. msgstr ""
  430. #: static/misago/js/misago.js:1
  431. msgid "Your details have been updated."
  432. msgstr "Je gegevens zijn aangepast."
  433. #: static/misago/js/misago.js:1
  434. msgid "Everybody"
  435. msgstr "Iedereen"
  436. #: static/misago/js/misago.js:1
  437. msgid "Users I follow"
  438. msgstr "Gebruikers die ik volg"
  439. #: static/misago/js/misago.js:1
  440. msgid "Nobody"
  441. msgstr "Niemand"
  442. #: static/misago/js/misago.js:1
  443. msgid "No"
  444. msgstr "Nee"
  445. #: static/misago/js/misago.js:1
  446. msgid "Notify"
  447. msgstr "Aankondigen "
  448. #: static/misago/js/misago.js:1
  449. msgid "Notify with e-mail"
  450. msgstr "Kondig aan met email"
  451. #: static/misago/js/misago.js:1
  452. msgid "Your forum options have been changed."
  453. msgstr "Je Forum instellingen zijn veranderd."
  454. #: static/misago/js/misago.js:1
  455. msgid "Please reload page and try again."
  456. msgstr "Herlaad uw pagina en probeer het nog een keer."
  457. #: static/misago/js/misago.js:1
  458. msgid "Forum options"
  459. msgstr "Forum instellingen"
  460. #: static/misago/js/misago.js:1
  461. msgid "Change forum options"
  462. msgstr "Verander forum instellingen "
  463. #: static/misago/js/misago.js:1
  464. msgid "Privacy settings"
  465. msgstr "Privacy instellingen"
  466. #: static/misago/js/misago.js:1
  467. msgid "Hide my presence"
  468. msgstr ""
  469. #: static/misago/js/misago.js:1
  470. msgid ""
  471. "If you hide your presence, only members with permission to see hidden users "
  472. "will see when you are online."
  473. msgstr ""
  474. #: static/misago/js/misago.js:1
  475. msgid "Hide my presence from other users"
  476. msgstr ""
  477. #: static/misago/js/misago.js:1
  478. msgid "Show my presence to other users"
  479. msgstr ""
  480. #: static/misago/js/misago.js:1
  481. msgid "Private thread invitations"
  482. msgstr ""
  483. #: static/misago/js/misago.js:1
  484. msgid "Automatic subscriptions"
  485. msgstr ""
  486. #: static/misago/js/misago.js:1
  487. msgid "Threads I start"
  488. msgstr ""
  489. #: static/misago/js/misago.js:1
  490. msgid "Threads I reply to"
  491. msgstr "Post waarop u heeft gereageerd"
  492. #: static/misago/js/misago.js:1
  493. msgid "Change email or password"
  494. msgstr "Verander email of wachtwoord"
  495. #: static/misago/js/misago.js:1
  496. msgid ""
  497. "You need to set a password for your account to be able to change your "
  498. "username or email."
  499. msgstr ""
  500. #: static/misago/js/misago.js:1
  501. msgid "Set password"
  502. msgstr ""
  503. #: static/misago/js/misago.js:1
  504. msgid "Fill out all fields."
  505. msgstr "Vul alle velden in."
  506. #: static/misago/js/misago.js:1
  507. msgid "Change e-mail address"
  508. msgstr "Verander je e-mail adres "
  509. #: static/misago/js/misago.js:1
  510. msgid "New e-mail"
  511. msgstr "Nieuwe e-mail"
  512. #: static/misago/js/misago.js:1
  513. msgid "Your current password"
  514. msgstr ""
  515. #: static/misago/js/misago.js:1
  516. msgid "Change e-mail"
  517. msgstr "Verander e-mail"
  518. #: static/misago/js/misago.js:1
  519. msgid "New passwords are different."
  520. msgstr ""
  521. #: static/misago/js/misago.js:1
  522. msgid "Change password"
  523. msgstr "Verander wachtwoord"
  524. #: static/misago/js/misago.js:1
  525. msgid "New password"
  526. msgstr "Nieuw wachtwoord"
  527. #: static/misago/js/misago.js:1
  528. msgid "Repeat password"
  529. msgstr "Herhaal wachtwoord"
  530. #: static/misago/js/misago.js:1
  531. msgid "Change forgotten password"
  532. msgstr ""
  533. #: static/misago/js/misago.js:1
  534. msgid "You have left this thread."
  535. msgstr ""
  536. #: static/misago/js/misago.js:1
  537. msgid "%(user)s has been removed from this thread."
  538. msgstr ""
  539. #: static/misago/js/misago.js:1
  540. msgid "%(user)s has been made new thread owner."
  541. msgstr ""
  542. #: static/misago/js/misago.js:1
  543. msgid "See profile"
  544. msgstr ""
  545. #: static/misago/js/misago.js:1
  546. msgid "Thread owner"
  547. msgstr ""
  548. #: static/misago/js/misago.js:1
  549. msgid "Are you sure you want to take over this thread?"
  550. msgstr ""
  551. #: static/misago/js/misago.js:1
  552. msgid "Are you sure you want to change thread owner to %(user)s?"
  553. msgstr ""
  554. #: static/misago/js/misago.js:1
  555. msgid "Make owner"
  556. msgstr "Maak baas"
  557. #: static/misago/js/misago.js:1
  558. msgid "Are you sure you want to leave this thread?"
  559. msgstr ""
  560. #: static/misago/js/misago.js:1
  561. msgid "Are you sure you want to remove %(user)s from this thread?"
  562. msgstr ""
  563. #: static/misago/js/misago.js:1
  564. msgid "Leave thread"
  565. msgstr ""
  566. #: static/misago/js/misago.js:1
  567. msgid "This thread has %(users)s participant."
  568. msgid_plural "This thread has %(users)s participants."
  569. msgstr[0] ""
  570. msgstr[1] ""
  571. #: static/misago/js/misago.js:1
  572. msgid "Entered password is very weak."
  573. msgstr "Het ingetypte wachtwoord is zeer zwak."
  574. #: static/misago/js/misago.js:1
  575. msgid "Entered password is weak."
  576. msgstr "Het ingetypte wachtwoord is zwak."
  577. #: static/misago/js/misago.js:1
  578. msgid "Entered password is average."
  579. msgstr "Het ingetypte wachtwoord is normaal."
  580. #: static/misago/js/misago.js:1
  581. msgid "Entered password is strong."
  582. msgstr "Het ingetypte wachtwoord is sterk."
  583. #: static/misago/js/misago.js:1
  584. msgid "Entered password is very strong."
  585. msgstr "Het ingetypte wachtwoord is heel sterk. "
  586. #: static/misago/js/misago.js:1
  587. msgid "Add choice"
  588. msgstr ""
  589. #: static/misago/js/misago.js:1
  590. msgid "Are you sure you want to delete this choice?"
  591. msgstr ""
  592. #: static/misago/js/misago.js:1
  593. msgid "Delete this choice"
  594. msgstr "Verwijder deze keuze"
  595. #: static/misago/js/misago.js:1
  596. msgid "choice label"
  597. msgstr ""
  598. #: static/misago/js/misago.js:1
  599. msgid "Are you sure you want to discard poll?"
  600. msgstr ""
  601. #: static/misago/js/misago.js:1
  602. msgid "Poll has been edited."
  603. msgstr ""
  604. #: static/misago/js/misago.js:1
  605. msgid "Poll has been posted."
  606. msgstr ""
  607. #: static/misago/js/misago.js:1
  608. msgid "Question and choices"
  609. msgstr "Vragen en keuzes"
  610. #: static/misago/js/misago.js:1
  611. msgid "Poll question"
  612. msgstr ""
  613. #: static/misago/js/misago.js:1
  614. msgid "Available choices"
  615. msgstr "Beschikbare keuzes"
  616. #: static/misago/js/misago.js:1
  617. msgid "Voting"
  618. msgstr "Stemmen"
  619. #: static/misago/js/misago.js:1
  620. msgid "Poll length"
  621. msgstr ""
  622. #: static/misago/js/misago.js:1
  623. msgid ""
  624. "Enter number of days for which voting in this poll should be possible or "
  625. "zero to run this poll indefinitely."
  626. msgstr ""
  627. #: static/misago/js/misago.js:1
  628. msgid "Allowed choices"
  629. msgstr "Toegestane keuzes"
  630. #: static/misago/js/misago.js:1
  631. msgid "Allow vote changes"
  632. msgstr ""
  633. #: static/misago/js/misago.js:1
  634. msgid "Allow participants to change their vote"
  635. msgstr ""
  636. #: static/misago/js/misago.js:1
  637. msgid "Don't allow participants to change their vote"
  638. msgstr ""
  639. #: static/misago/js/misago.js:1
  640. msgid "Post poll"
  641. msgstr ""
  642. #: static/misago/js/misago.js:1
  643. msgid "Make voting public"
  644. msgstr ""
  645. #: static/misago/js/misago.js:1
  646. msgid ""
  647. "Making voting public will allow everyone to access detailed list of votes, "
  648. "showing which users voted for which choices and at which times. This option "
  649. "can't be changed after poll's creation. Moderators may see voting details "
  650. "for all polls."
  651. msgstr ""
  652. #: static/misago/js/misago.js:1
  653. msgid "Votes are public"
  654. msgstr ""
  655. #: static/misago/js/misago.js:1
  656. msgid "Votes are hidden"
  657. msgstr ""
  658. #: static/misago/js/misago.js:1
  659. msgid "Posted by %(poster)s %(posted_on)s."
  660. msgstr ""
  661. #: static/misago/js/misago.js:1
  662. msgid "Voting ends %(ends_on)s."
  663. msgstr ""
  664. #: static/misago/js/misago.js:1
  665. msgid "%(votes)s vote."
  666. msgid_plural "%(votes)s votes."
  667. msgstr[0] ""
  668. msgstr[1] ""
  669. #: static/misago/js/misago.js:1
  670. msgid "Votes are public."
  671. msgstr ""
  672. #: static/misago/js/misago.js:1
  673. msgid "%(votes)s vote, %(proc)s% of total."
  674. msgid_plural "%(votes)s votes, %(proc)s% of total."
  675. msgstr[0] ""
  676. msgstr[1] ""
  677. #: static/misago/js/misago.js:1
  678. msgid "Your choice."
  679. msgstr "Jouw keuze."
  680. #: static/misago/js/misago.js:1
  681. msgid "Poll votes"
  682. msgstr ""
  683. #: static/misago/js/misago.js:1
  684. msgid "%(votes)s user has voted for this choice."
  685. msgid_plural "%(votes)s users have voted for this choice."
  686. msgstr[0] ""
  687. msgstr[1] ""
  688. #: static/misago/js/misago.js:1
  689. msgid "Vote"
  690. msgstr "Stem"
  691. #: static/misago/js/misago.js:1
  692. msgid "See votes"
  693. msgstr "Zie stemmen"
  694. #: static/misago/js/misago.js:1
  695. msgid "Edit"
  696. msgstr "Verander "
  697. #: static/misago/js/misago.js:1
  698. msgid ""
  699. "Are you sure you want to delete this poll? This action is not reversible."
  700. msgstr ""
  701. #: static/misago/js/misago.js:1
  702. msgid "Delete"
  703. msgstr "Verwijder "
  704. #: static/misago/js/misago.js:1
  705. msgid "You can't select any more choices."
  706. msgstr ""
  707. #: static/misago/js/misago.js:1
  708. msgid "You can select %(choices)s more choice."
  709. msgid_plural "You can select %(choices)s more choices."
  710. msgstr[0] ""
  711. msgstr[1] ""
  712. #: static/misago/js/misago.js:1
  713. msgid "You can change your vote later."
  714. msgstr ""
  715. #: static/misago/js/misago.js:1
  716. msgid "Votes are final."
  717. msgstr ""
  718. #: static/misago/js/misago.js:1
  719. msgid "You need to select at least one choice"
  720. msgstr ""
  721. #: static/misago/js/misago.js:1
  722. msgid "Your vote has been saved."
  723. msgstr ""
  724. #: static/misago/js/misago.js:1
  725. msgid "Save your vote"
  726. msgstr ""
  727. #: static/misago/js/misago.js:1
  728. msgid "See results"
  729. msgstr "Zie het resultaat "
  730. #: static/misago/js/misago.js:1
  731. msgid "Revert post to state from before this edit."
  732. msgstr ""
  733. #: static/misago/js/misago.js:1
  734. msgid "Revert"
  735. msgstr ""
  736. #: static/misago/js/misago.js:1
  737. msgid ""
  738. "Are you sure you with to revert this post to the state from before this "
  739. "edit?"
  740. msgstr ""
  741. #: static/misago/js/misago.js:1
  742. msgid "Post has been reverted to previous state."
  743. msgstr ""
  744. #: static/misago/js/misago.js:1
  745. msgid "Post edits history"
  746. msgstr ""
  747. #: static/misago/js/misago.js:1
  748. msgid "See previous change"
  749. msgstr "Zie vorige verandering"
  750. #: static/misago/js/misago.js:1
  751. msgid "See next change"
  752. msgstr ""
  753. #: static/misago/js/misago.js:1
  754. msgid "By %(edited_by)s %(edited_on)s."
  755. msgstr ""
  756. #: static/misago/js/misago.js:1
  757. msgid "This post's contents cannot be displayed."
  758. msgstr ""
  759. #: static/misago/js/misago.js:1
  760. msgid "This error is caused by invalid post content manipulation."
  761. msgstr ""
  762. #: static/misago/js/misago.js:1
  763. msgid "posted %(posted_on)s"
  764. msgstr ""
  765. #: static/misago/js/misago.js:1
  766. msgid "Removed user"
  767. msgstr "Gebruiker verwijderd "
  768. #: static/misago/js/misago.js:1
  769. msgid "See post"
  770. msgstr ""
  771. #: static/misago/js/misago.js:1
  772. msgid "No users have liked this post."
  773. msgstr ""
  774. #: static/misago/js/misago.js:1
  775. msgid "Post Likes"
  776. msgstr ""
  777. #: static/misago/js/misago.js:1
  778. msgid "%(likes)s like"
  779. msgid_plural "%(likes)s likes"
  780. msgstr[0] ""
  781. msgstr[1] ""
  782. #: static/misago/js/misago.js:1
  783. msgid "Are you sure you want to discard changes?"
  784. msgstr ""
  785. #: static/misago/js/misago.js:1
  786. msgid "You have to enter a message."
  787. msgstr ""
  788. #: static/misago/js/misago.js:1
  789. msgid "Reply has been edited."
  790. msgstr ""
  791. #: static/misago/js/misago.js:1
  792. msgid "Edit reply"
  793. msgstr "Verander antwoord"
  794. #: static/misago/js/misago.js:1
  795. msgid "Are you sure you want to discard your reply?"
  796. msgstr ""
  797. #: static/misago/js/misago.js:1
  798. msgid "Your reply has been posted."
  799. msgstr ""
  800. #: static/misago/js/misago.js:1
  801. msgid "Post reply"
  802. msgstr "Post een antwoord"
  803. #: static/misago/js/misago.js:1
  804. msgid "Are you sure you want to discard private thread?"
  805. msgstr ""
  806. #: static/misago/js/misago.js:1
  807. msgid "You have to enter at least one recipient."
  808. msgstr ""
  809. #: static/misago/js/misago.js:1
  810. msgid "You have to enter thread title."
  811. msgstr ""
  812. #: static/misago/js/misago.js:1
  813. msgid "Your thread has been posted."
  814. msgstr ""
  815. #: static/misago/js/misago.js:1
  816. msgid "Comma separated list of user names, eg.: Danny, Lisa"
  817. msgstr ""
  818. #: static/misago/js/misago.js:1
  819. msgid "Thread title"
  820. msgstr ""
  821. #: static/misago/js/misago.js:1
  822. msgid "Post thread"
  823. msgstr ""
  824. #: static/misago/js/misago.js:1
  825. msgid "Are you sure you want to discard thread?"
  826. msgstr ""
  827. #: static/misago/js/misago.js:1
  828. msgid "Closed"
  829. msgstr "Dicht"
  830. #: static/misago/js/misago.js:1
  831. msgid "Open"
  832. msgstr "Open"
  833. #: static/misago/js/misago.js:1
  834. msgid "Hidden"
  835. msgstr "Verstopt"
  836. #: static/misago/js/misago.js:1
  837. msgid "Not hidden"
  838. msgstr "Niet verstopt "
  839. #: static/misago/js/misago.js:1
  840. msgid "Unpinned"
  841. msgstr ""
  842. #: static/misago/js/misago.js:1
  843. msgid "Pinned locally"
  844. msgstr ""
  845. #: static/misago/js/misago.js:1
  846. msgid "Pinned globally"
  847. msgstr ""
  848. #: static/misago/js/misago.js:1
  849. msgid ""
  850. "Thread title should be at least %(limit_value)s character long (it has "
  851. "%(show_value)s)."
  852. msgid_plural ""
  853. "Thread title should be at least %(limit_value)s characters long (it has "
  854. "%(show_value)s)."
  855. msgstr[0] ""
  856. msgstr[1] ""
  857. #: static/misago/js/misago.js:1
  858. msgid ""
  859. "Thread title cannot be longer than %(limit_value)s character (it has "
  860. "%(show_value)s)."
  861. msgid_plural ""
  862. "Thread title cannot be longer than %(limit_value)s characters (it has "
  863. "%(show_value)s)."
  864. msgstr[0] ""
  865. msgstr[1] ""
  866. #: static/misago/js/misago.js:1
  867. msgid ""
  868. "Posted message should be at least %(limit_value)s character long (it has "
  869. "%(show_value)s)."
  870. msgid_plural ""
  871. "Posted message should be at least %(limit_value)s characters long (it has "
  872. "%(show_value)s)."
  873. msgstr[0] ""
  874. msgstr[1] ""
  875. #: static/misago/js/misago.js:1
  876. msgid ""
  877. "Posted message cannot be longer than %(limit_value)s character (it has "
  878. "%(show_value)s)."
  879. msgid_plural ""
  880. "Posted message cannot be longer than %(limit_value)s characters (it has "
  881. "%(show_value)s)."
  882. msgstr[0] ""
  883. msgstr[1] ""
  884. #: static/misago/js/misago.js:1
  885. msgid "Hide"
  886. msgstr ""
  887. #: static/misago/js/misago.js:1
  888. msgid "Unhide"
  889. msgstr ""
  890. #: static/misago/js/misago.js:1
  891. msgid ""
  892. "Are you sure you wish to delete this event? This action is not reversible!"
  893. msgstr ""
  894. #: static/misago/js/misago.js:1
  895. msgid "Event has been deleted."
  896. msgstr ""
  897. #: static/misago/js/misago.js:1
  898. msgid "Hidden by %(event_by)s %(event_on)s."
  899. msgstr ""
  900. #: static/misago/js/misago.js:1
  901. msgid "By %(event_by)s %(event_on)s."
  902. msgstr ""
  903. #: static/misago/js/misago.js:1
  904. msgid "Thread has been pinned globally."
  905. msgstr ""
  906. #: static/misago/js/misago.js:1
  907. msgid "Thread has been pinned locally."
  908. msgstr ""
  909. #: static/misago/js/misago.js:1
  910. msgid "Thread has been unpinned."
  911. msgstr ""
  912. #: static/misago/js/misago.js:1
  913. msgid "Thread has been approved."
  914. msgstr ""
  915. #: static/misago/js/misago.js:1
  916. msgid "Thread has been opened."
  917. msgstr ""
  918. #: static/misago/js/misago.js:1
  919. msgid "Thread has been closed."
  920. msgstr ""
  921. #: static/misago/js/misago.js:1
  922. msgid "Thread has been revealed."
  923. msgstr ""
  924. #: static/misago/js/misago.js:1
  925. msgid "Thread has been made hidden."
  926. msgstr ""
  927. #: static/misago/js/misago.js:1
  928. msgid "Took thread over."
  929. msgstr ""
  930. #: static/misago/js/misago.js:1
  931. msgid "Owner has left thread. This thread is now closed."
  932. msgstr ""
  933. #: static/misago/js/misago.js:1
  934. msgid "Participant has left thread."
  935. msgstr ""
  936. #: static/misago/js/misago.js:1
  937. msgid "Thread title has been changed from %(old_title)s."
  938. msgstr ""
  939. #: static/misago/js/misago.js:1
  940. msgid "Thread has been moved from %(from_category)s."
  941. msgstr ""
  942. #: static/misago/js/misago.js:1
  943. msgid "The %(merged_thread)s thread has been merged into this thread."
  944. msgstr ""
  945. #: static/misago/js/misago.js:1
  946. msgid "Changed thread owner to %(user)s."
  947. msgstr ""
  948. #: static/misago/js/misago.js:1
  949. msgid "Added %(user)s to thread."
  950. msgstr ""
  951. #: static/misago/js/misago.js:1
  952. msgid "Removed %(user)s from thread."
  953. msgstr ""
  954. #: static/misago/js/misago.js:1
  955. msgid "New event"
  956. msgstr "Nieuwe gebeurtenis"
  957. #: static/misago/js/misago.js:1
  958. msgid "Hidden by %(hidden_by)s %(hidden_on)s."
  959. msgstr ""
  960. #: static/misago/js/misago.js:1
  961. msgid "This post is hidden. You cannot see its contents."
  962. msgstr ""
  963. #: static/misago/js/misago.js:1
  964. msgid ""
  965. "Are you sure you want to delete this post? This action is not reversible!"
  966. msgstr ""
  967. #: static/misago/js/misago.js:1
  968. msgid "Post has been deleted."
  969. msgstr ""
  970. #: static/misago/js/misago.js:1
  971. msgid "Permament link to this post:"
  972. msgstr ""
  973. #: static/misago/js/misago.js:1
  974. msgid "Permament link"
  975. msgstr ""
  976. #: static/misago/js/misago.js:1
  977. msgid "Mark as best answer"
  978. msgstr ""
  979. #: static/misago/js/misago.js:1
  980. msgid "Unmark best answer"
  981. msgstr ""
  982. #: static/misago/js/misago.js:1
  983. msgid "This post was edited %(edits)s time."
  984. msgid_plural "This post was edited %(edits)s times."
  985. msgstr[0] ""
  986. msgstr[1] ""
  987. #: static/misago/js/misago.js:1
  988. msgid "Changes history"
  989. msgstr "Verander geschiedenis"
  990. #: static/misago/js/misago.js:1
  991. msgid "Approve"
  992. msgstr "Keur goed"
  993. #: static/misago/js/misago.js:1
  994. msgid "Move"
  995. msgstr "Verplaats"
  996. #: static/misago/js/misago.js:1
  997. msgid "Split"
  998. msgstr ""
  999. #: static/misago/js/misago.js:1
  1000. msgid "Remove protection"
  1001. msgstr "Verwijder bescherming"
  1002. #: static/misago/js/misago.js:1
  1003. msgid "You have to enter link to the other thread."
  1004. msgstr ""
  1005. #: static/misago/js/misago.js:1
  1006. msgid "Selected post was moved to the other thread."
  1007. msgstr ""
  1008. #: static/misago/js/misago.js:1
  1009. msgid "Link to thread you want to move post to"
  1010. msgstr ""
  1011. #: static/misago/js/misago.js:1
  1012. msgid "Move post"
  1013. msgstr "Verplaats post"
  1014. #: static/misago/js/misago.js:1
  1015. msgid "Yes"
  1016. msgstr "Ja"
  1017. #: static/misago/js/misago.js:1
  1018. msgid "Selected post was split into new thread."
  1019. msgstr ""
  1020. #: static/misago/js/misago.js:1
  1021. msgid "Not pinned"
  1022. msgstr ""
  1023. #: static/misago/js/misago.js:1
  1024. msgid "Thread weight"
  1025. msgstr ""
  1026. #: static/misago/js/misago.js:1
  1027. msgid "Hide thread"
  1028. msgstr ""
  1029. #: static/misago/js/misago.js:1
  1030. msgid "Close thread"
  1031. msgstr ""
  1032. #: static/misago/js/misago.js:1
  1033. msgid "Category"
  1034. msgstr "Categorie"
  1035. #: static/misago/js/misago.js:1
  1036. msgid "Split post"
  1037. msgstr ""
  1038. #: static/misago/js/misago.js:1
  1039. msgid "You can't move this post at the moment."
  1040. msgstr ""
  1041. #: static/misago/js/misago.js:1
  1042. msgid "Split post into new thread"
  1043. msgstr ""
  1044. #: static/misago/js/misago.js:1
  1045. msgid "Marked as best answer by you %(marked_on)s."
  1046. msgstr ""
  1047. #: static/misago/js/misago.js:1
  1048. msgid "Marked as best answer by %(marked_by)s %(marked_on)s."
  1049. msgstr ""
  1050. #: static/misago/js/misago.js:1
  1051. msgid "This post is hidden. Only users with permission may see its contents."
  1052. msgstr ""
  1053. #: static/misago/js/misago.js:1
  1054. msgid ""
  1055. "This post is unapproved. Only users with permission to approve posts and its"
  1056. " author may see its contents."
  1057. msgstr ""
  1058. #: static/misago/js/misago.js:1
  1059. msgid "This post is protected. Only moderators may change it."
  1060. msgstr ""
  1061. #: static/misago/js/misago.js:1
  1062. msgid "Liked"
  1063. msgstr "Vind leuk"
  1064. #: static/misago/js/misago.js:1
  1065. msgid "Like"
  1066. msgstr "leuk vinden"
  1067. #: static/misago/js/misago.js:1
  1068. msgid "%(user)s likes this."
  1069. msgstr ""
  1070. #: static/misago/js/misago.js:1
  1071. msgid "%(users)s and %(last_user)s"
  1072. msgstr ""
  1073. #: static/misago/js/misago.js:1
  1074. msgid "%(users)s like this."
  1075. msgstr ""
  1076. #: static/misago/js/misago.js:1
  1077. msgid "%(users)s and %(likes)s other user like this."
  1078. msgid_plural "%(users)s and %(likes)s other users like this."
  1079. msgstr[0] ""
  1080. msgstr[1] ""
  1081. #: static/misago/js/misago.js:1
  1082. msgid "Reply"
  1083. msgstr "Antwoord"
  1084. #: static/misago/js/misago.js:1
  1085. msgid "New post"
  1086. msgstr "Nieuwe post"
  1087. #: static/misago/js/misago.js:1
  1088. msgid "New"
  1089. msgstr "Nieuw"
  1090. #: static/misago/js/misago.js:1
  1091. msgid "edited %(edits)s time"
  1092. msgid_plural "edited %(edits)s times"
  1093. msgstr[0] ""
  1094. msgstr[1] ""
  1095. #: static/misago/js/misago.js:1
  1096. msgid "%(edits)s edit"
  1097. msgid_plural "%(edits)s edits"
  1098. msgstr[0] ""
  1099. msgstr[1] ""
  1100. #: static/misago/js/misago.js:1
  1101. msgid "This post is protected and may not be edited."
  1102. msgstr ""
  1103. #: static/misago/js/misago.js:1
  1104. msgid "protected"
  1105. msgstr "beschermt "
  1106. #: static/misago/js/misago.js:1
  1107. msgid "Ban details"
  1108. msgstr ""
  1109. #: static/misago/js/misago.js:1
  1110. msgid "User-shown ban message"
  1111. msgstr ""
  1112. #: static/misago/js/misago.js:1
  1113. msgid "Team-shown ban message"
  1114. msgstr ""
  1115. #: static/misago/js/misago.js:1
  1116. msgid "%(username)s's ban is permanent."
  1117. msgstr ""
  1118. #: static/misago/js/misago.js:1
  1119. msgid "Ban expiration"
  1120. msgstr ""
  1121. #: static/misago/js/misago.js:1
  1122. msgid "No ban is active at the moment."
  1123. msgstr ""
  1124. #: static/misago/js/misago.js:1
  1125. msgid "You are not sharing any details with others."
  1126. msgstr ""
  1127. #: static/misago/js/misago.js:1
  1128. msgid "%(username)s is not sharing any details with others."
  1129. msgstr ""
  1130. #: static/misago/js/misago.js:1
  1131. msgid "Details"
  1132. msgstr ""
  1133. #: static/misago/js/misago.js:1
  1134. msgid "%(username)s's details have been updated."
  1135. msgstr ""
  1136. #: static/misago/js/misago.js:1
  1137. msgid "You have no started threads."
  1138. msgstr ""
  1139. #: static/misago/js/misago.js:1
  1140. msgid "%(username)s started no threads."
  1141. msgstr ""
  1142. #: static/misago/js/misago.js:1
  1143. msgid "You have started %(threads)s thread."
  1144. msgid_plural "You have started %(threads)s threads."
  1145. msgstr[0] ""
  1146. msgstr[1] ""
  1147. #: static/misago/js/misago.js:1
  1148. msgid "%(username)s has started %(threads)s thread."
  1149. msgid_plural "%(username)s has started %(threads)s threads."
  1150. msgstr[0] ""
  1151. msgstr[1] ""
  1152. #: static/misago/js/misago.js:1
  1153. msgid "Loading..."
  1154. msgstr ""
  1155. #: static/misago/js/misago.js:1
  1156. msgid "Threads"
  1157. msgstr ""
  1158. #: static/misago/js/misago.js:1
  1159. msgid "You have posted no messages."
  1160. msgstr "Je hebt nog geen berichten geplaatst. "
  1161. #: static/misago/js/misago.js:1
  1162. msgid "%(username)s posted no messages."
  1163. msgstr ""
  1164. #: static/misago/js/misago.js:1
  1165. msgid "You have posted %(posts)s message."
  1166. msgid_plural "You have posted %(posts)s messages."
  1167. msgstr[0] ""
  1168. msgstr[1] ""
  1169. #: static/misago/js/misago.js:1
  1170. msgid "%(username)s has posted %(posts)s message."
  1171. msgid_plural "%(username)s has posted %(posts)s messages."
  1172. msgstr[0] ""
  1173. msgstr[1] ""
  1174. #: static/misago/js/misago.js:1
  1175. msgid "Posts"
  1176. msgstr "Posts"
  1177. #: static/misago/js/misago.js:1
  1178. msgid "Show older activity"
  1179. msgstr ""
  1180. #: static/misago/js/misago.js:1
  1181. msgid "Following"
  1182. msgstr "Volgend"
  1183. #: static/misago/js/misago.js:1
  1184. msgid "Follow"
  1185. msgstr "Volg"
  1186. #: static/misago/js/misago.js:1
  1187. msgid "Followers"
  1188. msgstr "Volgers"
  1189. #: static/misago/js/misago.js:1
  1190. msgid "Found %(users)s user."
  1191. msgid_plural "Found %(users)s users."
  1192. msgstr[0] ""
  1193. msgstr[1] ""
  1194. #: static/misago/js/misago.js:1
  1195. msgid "You have %(users)s follower."
  1196. msgid_plural "You have %(users)s followers."
  1197. msgstr[0] ""
  1198. msgstr[1] ""
  1199. #: static/misago/js/misago.js:1
  1200. msgid "%(username)s has %(users)s follower."
  1201. msgid_plural "%(username)s has %(users)s followers."
  1202. msgstr[0] ""
  1203. msgstr[1] ""
  1204. #: static/misago/js/misago.js:1
  1205. msgid "Search returned no users matching specified criteria."
  1206. msgstr ""
  1207. #: static/misago/js/misago.js:1
  1208. msgid "You have no followers."
  1209. msgstr ""
  1210. #: static/misago/js/misago.js:1
  1211. msgid "%(username)s has no followers."
  1212. msgstr ""
  1213. #: static/misago/js/misago.js:1
  1214. msgid "Show more (%(more)s)"
  1215. msgstr ""
  1216. #: static/misago/js/misago.js:1
  1217. msgid "Search users..."
  1218. msgstr "Zoek gebruikers..."
  1219. #: static/misago/js/misago.js:1
  1220. msgid "Follows"
  1221. msgstr "Volgend"
  1222. #: static/misago/js/misago.js:1
  1223. msgid "You are following %(users)s user."
  1224. msgid_plural "You are following %(users)s users."
  1225. msgstr[0] ""
  1226. msgstr[1] ""
  1227. #: static/misago/js/misago.js:1
  1228. msgid "%(username)s is following %(users)s user."
  1229. msgid_plural "%(username)s is following %(users)s users."
  1230. msgstr[0] ""
  1231. msgstr[1] ""
  1232. #: static/misago/js/misago.js:1
  1233. msgid "You are not following any users."
  1234. msgstr ""
  1235. #: static/misago/js/misago.js:1
  1236. msgid "%(username)s is not following any users."
  1237. msgstr ""
  1238. #: static/misago/js/misago.js:1
  1239. msgid "Joined on %(joined_on)s"
  1240. msgstr ""
  1241. #: static/misago/js/misago.js:1
  1242. msgid "Joined %(joined_on)s"
  1243. msgstr ""
  1244. #: static/misago/js/misago.js:1
  1245. msgid "Moderation"
  1246. msgstr ""
  1247. #: static/misago/js/misago.js:1
  1248. msgid "This user is deleting their account."
  1249. msgstr ""
  1250. #: static/misago/js/misago.js:1
  1251. msgid "This user's account has been disabled by administrator."
  1252. msgstr ""
  1253. #: static/misago/js/misago.js:1
  1254. msgid "Message"
  1255. msgstr "Bericht"
  1256. #: static/misago/js/misago.js:1
  1257. msgid "Avatar controls have been changed."
  1258. msgstr ""
  1259. #: static/misago/js/misago.js:1
  1260. msgid "Lock avatar"
  1261. msgstr ""
  1262. #: static/misago/js/misago.js:1
  1263. msgid ""
  1264. "Locking user avatar will prohibit user from changing his avatar and will "
  1265. "reset his/her avatar to default one."
  1266. msgstr ""
  1267. #: static/misago/js/misago.js:1
  1268. msgid "Disallow user from changing avatar"
  1269. msgstr ""
  1270. #: static/misago/js/misago.js:1
  1271. msgid "Allow user to change avatar"
  1272. msgstr ""
  1273. #: static/misago/js/misago.js:1
  1274. msgid "User message"
  1275. msgstr ""
  1276. #: static/misago/js/misago.js:1
  1277. msgid ""
  1278. "Optional message for user explaining why he/she is prohibited form changing "
  1279. "avatar."
  1280. msgstr ""
  1281. #: static/misago/js/misago.js:1
  1282. msgid "Staff message"
  1283. msgstr ""
  1284. #: static/misago/js/misago.js:1
  1285. msgid ""
  1286. "Optional message for forum team members explaining why user is prohibited "
  1287. "form changing avatar."
  1288. msgstr ""
  1289. #: static/misago/js/misago.js:1
  1290. msgid "Avatar controls"
  1291. msgstr ""
  1292. #: static/misago/js/misago.js:1
  1293. msgid "Username has been changed."
  1294. msgstr "Gebruikersnaam is veranderd"
  1295. #: static/misago/js/misago.js:1
  1296. msgid ""
  1297. "%(username)s's account, threads, posts and other content has been deleted."
  1298. msgstr ""
  1299. #: static/misago/js/misago.js:1
  1300. msgid ""
  1301. "%(username)s's account has been deleted and other content has been hidden."
  1302. msgstr ""
  1303. #: static/misago/js/misago.js:1
  1304. msgid "Delete %(username)s"
  1305. msgstr "Verwijder %(username)s"
  1306. #: static/misago/js/misago.js:1
  1307. msgid "Please wait... (%(countdown)ss)"
  1308. msgstr "Wacht alstublieft nog... ( %(countdown)ss)"
  1309. #: static/misago/js/misago.js:1
  1310. msgid "User content"
  1311. msgstr "Gebruiker inhoud"
  1312. #: static/misago/js/misago.js:1
  1313. msgid "Delete together with user's account"
  1314. msgstr ""
  1315. #: static/misago/js/misago.js:1
  1316. msgid "Hide after deleting user's account"
  1317. msgstr ""
  1318. #: static/misago/js/misago.js:1
  1319. msgid "Return to users list"
  1320. msgstr "Ga terug naar gebruiker list "
  1321. #: static/misago/js/misago.js:1
  1322. msgid "Delete user account"
  1323. msgstr "Verwijder gebruiker account"
  1324. #: static/misago/js/misago.js:1
  1325. msgid "Username history"
  1326. msgstr "Gebruikersnaam geschiedenis"
  1327. #: static/misago/js/misago.js:1
  1328. msgid "Found %(changes)s username change."
  1329. msgid_plural "Found %(changes)s username changes."
  1330. msgstr[0] ""
  1331. msgstr[1] ""
  1332. #: static/misago/js/misago.js:1
  1333. msgid "Your username was changed %(changes)s time."
  1334. msgid_plural "Your username was changed %(changes)s times."
  1335. msgstr[0] ""
  1336. msgstr[1] ""
  1337. #: static/misago/js/misago.js:1
  1338. msgid "%(username)s's username was changed %(changes)s time."
  1339. msgid_plural "%(username)s's username was changed %(changes)s times."
  1340. msgstr[0] ""
  1341. msgstr[1] ""
  1342. #: static/misago/js/misago.js:1
  1343. msgid "Search returned no username changes matching specified criteria."
  1344. msgstr ""
  1345. #: static/misago/js/misago.js:1
  1346. msgid "No name changes have been recorded for your account."
  1347. msgstr ""
  1348. #: static/misago/js/misago.js:1
  1349. msgid "%(username)s's username was never changed."
  1350. msgstr ""
  1351. #: static/misago/js/misago.js:1
  1352. msgid "Show older (%(more)s)"
  1353. msgstr "Laat ouder zien (%(more)s)"
  1354. #: static/misago/js/misago.js:1
  1355. msgid "Search history..."
  1356. msgstr "Zoek geschiedenis..."
  1357. #: static/misago/js/misago.js:1
  1358. msgid "Search..."
  1359. msgstr "Zoek..."
  1360. #: static/misago/js/misago.js:1
  1361. msgid "New registrations are currently disabled."
  1362. msgstr ""
  1363. #: static/misago/js/misago.js:1
  1364. msgid "Registration is currently unavailable due to an error."
  1365. msgstr ""
  1366. #: static/misago/js/misago.js:1
  1367. msgid "Register"
  1368. msgstr "Registreer "
  1369. #: static/misago/js/misago.js:1
  1370. msgid "Join with %(site)s"
  1371. msgstr ""
  1372. #: static/misago/js/misago.js:1
  1373. msgid "Or create forum account:"
  1374. msgstr ""
  1375. #: static/misago/js/misago.js:1
  1376. msgid "Username"
  1377. msgstr "Gebruikersnaam"
  1378. #: static/misago/js/misago.js:1
  1379. msgid "E-mail"
  1380. msgstr "E-mail"
  1381. #: static/misago/js/misago.js:1
  1382. msgid "Password"
  1383. msgstr "Wachtwoord"
  1384. #: static/misago/js/misago.js:1
  1385. msgid "Register account"
  1386. msgstr "Registreer account"
  1387. #: static/misago/js/misago.js:1
  1388. msgid ""
  1389. "%(username)s, your account has been created but you need to activate it "
  1390. "before you will be able to sign in."
  1391. msgstr ""
  1392. #: static/misago/js/misago.js:1
  1393. msgid ""
  1394. "%(username)s, your account has been created but board administrator will "
  1395. "have to activate it before you will be able to sign in."
  1396. msgstr ""
  1397. #: static/misago/js/misago.js:1
  1398. msgid ""
  1399. "We have sent an e-mail to %(email)s with link that you have to click to "
  1400. "activate your account."
  1401. msgstr ""
  1402. #: static/misago/js/misago.js:1
  1403. msgid "We will send an e-mail to %(email)s when this takes place."
  1404. msgstr ""
  1405. #: static/misago/js/misago.js:1
  1406. msgid "Registration complete"
  1407. msgstr "Registratie compleet"
  1408. #: static/misago/js/misago.js:1
  1409. msgid "Enter a valid email address."
  1410. msgstr ""
  1411. #: static/misago/js/misago.js:1
  1412. msgid "Your e-mail address"
  1413. msgstr "Uw e-mail adres"
  1414. #: static/misago/js/misago.js:1
  1415. msgid "Send link"
  1416. msgstr "Zend link"
  1417. #: static/misago/js/misago.js:1
  1418. msgid "Activation link was sent to %(email)s"
  1419. msgstr ""
  1420. #: static/misago/js/misago.js:1
  1421. msgid "Request another link"
  1422. msgstr ""
  1423. #: static/misago/js/misago.js:1
  1424. msgid "Reset password link was sent to %(email)s"
  1425. msgstr ""
  1426. #: static/misago/js/misago.js:1
  1427. msgid "Activate your account."
  1428. msgstr ""
  1429. #: static/misago/js/misago.js:1
  1430. msgid "Your account is inactive."
  1431. msgstr ""
  1432. #: static/misago/js/misago.js:1
  1433. msgid "Enter new password."
  1434. msgstr "Typ nieuw wachtwoord"
  1435. #: static/misago/js/misago.js:1
  1436. msgid "Enter new password"
  1437. msgstr "Typ nieuw wachtwoord"
  1438. #: static/misago/js/misago.js:1
  1439. msgid "%(username)s, your password has been changed successfully."
  1440. msgstr ""
  1441. #: static/misago/js/misago.js:1
  1442. msgid "You will have to sign in using new password before continuing."
  1443. msgstr ""
  1444. #: static/misago/js/misago.js:1
  1445. msgid "Sign in"
  1446. msgstr "Log in"
  1447. #: static/misago/js/misago.js:1
  1448. msgid "You have to enter search query."
  1449. msgstr ""
  1450. #: static/misago/js/misago.js:1
  1451. msgid "Search took %(time)s s to complete"
  1452. msgstr ""
  1453. #: static/misago/js/misago.js:1
  1454. msgid "No threads matching search query have been found."
  1455. msgstr ""
  1456. #: static/misago/js/misago.js:1
  1457. msgid "Enter at least two characters to search threads."
  1458. msgstr ""
  1459. #: static/misago/js/misago.js:1
  1460. msgid "Show more"
  1461. msgstr "Laat meer zien"
  1462. #: static/misago/js/misago.js:1
  1463. msgid "No users matching search query have been found."
  1464. msgstr ""
  1465. #: static/misago/js/misago.js:1
  1466. msgid "Enter at least two characters to search users."
  1467. msgstr ""
  1468. #: static/misago/js/misago.js:1
  1469. msgid "Fill out both fields."
  1470. msgstr ""
  1471. #: static/misago/js/misago.js:1
  1472. msgid "Activate account"
  1473. msgstr "Activeer account"
  1474. #: static/misago/js/misago.js:1
  1475. msgid "Sign in with %(site)s"
  1476. msgstr ""
  1477. #: static/misago/js/misago.js:1
  1478. msgid "Or use your forum account:"
  1479. msgstr ""
  1480. #: static/misago/js/misago.js:1
  1481. msgid "Username or e-mail"
  1482. msgstr ""
  1483. #: static/misago/js/misago.js:1
  1484. msgid "Forgot password?"
  1485. msgstr ""
  1486. #: static/misago/js/misago.js:1
  1487. msgid ""
  1488. "%(username)s, your account has been created and you have been signed in to "
  1489. "it."
  1490. msgstr ""
  1491. #: static/misago/js/misago.js:1
  1492. msgid "Registration completed!"
  1493. msgstr ""
  1494. #: static/misago/js/misago.js:1
  1495. msgid "Return to forum index"
  1496. msgstr ""
  1497. #: static/misago/js/misago.js:1
  1498. msgid "Sign in with %(backend)s"
  1499. msgstr ""
  1500. #: static/misago/js/misago.js:1
  1501. msgid "You need to accept the privacy policy."
  1502. msgstr ""
  1503. #: static/misago/js/misago.js:1
  1504. msgid "Your e-mail address has been verified by %(backend)s."
  1505. msgstr ""
  1506. #: static/misago/js/misago.js:1
  1507. msgid "Complete your details"
  1508. msgstr ""
  1509. #: static/misago/js/misago.js:1
  1510. msgid "E-mail address"
  1511. msgstr ""
  1512. #: static/misago/js/misago.js:1
  1513. msgid "Change title"
  1514. msgstr "Verander titel"
  1515. #: static/misago/js/misago.js:1
  1516. msgid "Edit title"
  1517. msgstr "Verander titel"
  1518. #: static/misago/js/misago.js:1
  1519. msgid "Unapproved"
  1520. msgstr ""
  1521. #: static/misago/js/misago.js:1
  1522. msgid "Unapproved posts"
  1523. msgstr ""
  1524. #: static/misago/js/misago.js:1
  1525. msgid "%(replies)s reply"
  1526. msgid_plural "%(replies)s replies"
  1527. msgstr[0] ""
  1528. msgstr[1] ""
  1529. #: static/misago/js/misago.js:1
  1530. msgid "last reply by %(user)s %(date)s"
  1531. msgstr ""
  1532. #: static/misago/js/misago.js:1
  1533. msgid ""
  1534. "Are you sure you want to merge selected posts? This action is not "
  1535. "reversible!"
  1536. msgstr ""
  1537. #: static/misago/js/misago.js:1
  1538. msgid ""
  1539. "Are you sure you want to delete selected posts? This action is not "
  1540. "reversible!"
  1541. msgstr ""
  1542. #: static/misago/js/misago.js:1
  1543. msgid "Merge"
  1544. msgstr ""
  1545. #: static/misago/js/misago.js:1
  1546. msgid "Unprotect"
  1547. msgstr ""
  1548. #: static/misago/js/misago.js:1
  1549. msgid "One or more posts could not be changed:"
  1550. msgstr ""
  1551. #: static/misago/js/misago.js:1
  1552. msgid "%(username)s on %(posted_on)s"
  1553. msgstr ""
  1554. #: static/misago/js/misago.js:1
  1555. msgid "Posts options"
  1556. msgstr ""
  1557. #: static/misago/js/misago.js:1
  1558. msgid "Selected posts were moved to the other thread."
  1559. msgstr ""
  1560. #: static/misago/js/misago.js:1
  1561. msgid "Link to thread you want to move posts to"
  1562. msgstr ""
  1563. #: static/misago/js/misago.js:1
  1564. msgid "Move posts"
  1565. msgstr ""
  1566. #: static/misago/js/misago.js:1
  1567. msgid "Selected posts were split into new thread."
  1568. msgstr ""
  1569. #: static/misago/js/misago.js:1
  1570. msgid "Split posts"
  1571. msgstr ""
  1572. #: static/misago/js/misago.js:1
  1573. msgid "You can't move selected posts at the moment."
  1574. msgstr ""
  1575. #: static/misago/js/misago.js:1
  1576. msgid "Split posts into new thread"
  1577. msgstr ""
  1578. #: static/misago/js/misago.js:1
  1579. msgid "Thread has been made visible."
  1580. msgstr ""
  1581. #: static/misago/js/misago.js:1
  1582. msgid "Are you sure you want to delete this thread?"
  1583. msgstr ""
  1584. #: static/misago/js/misago.js:1
  1585. msgid "Thread has been deleted."
  1586. msgstr ""
  1587. #: static/misago/js/misago.js:1
  1588. msgid "Pin globally"
  1589. msgstr ""
  1590. #: static/misago/js/misago.js:1
  1591. msgid "Pin locally"
  1592. msgstr ""
  1593. #: static/misago/js/misago.js:1
  1594. msgid "Unpin"
  1595. msgstr ""
  1596. #: static/misago/js/misago.js:1
  1597. msgid "Thread has been merged with other one."
  1598. msgstr ""
  1599. #: static/misago/js/misago.js:1
  1600. msgid "Link to thread you want to merge with"
  1601. msgstr ""
  1602. #: static/misago/js/misago.js:1
  1603. msgid ""
  1604. "Merge will delete current thread and move its contents to the thread "
  1605. "specified here."
  1606. msgstr ""
  1607. #: static/misago/js/misago.js:1
  1608. msgid "Merge thread"
  1609. msgstr ""
  1610. #: static/misago/js/misago.js:1
  1611. msgid "Thread has been moved."
  1612. msgstr ""
  1613. #: static/misago/js/misago.js:1
  1614. msgid "New category"
  1615. msgstr "Nieuwe categorie "
  1616. #: static/misago/js/misago.js:1
  1617. msgid "Move thread"
  1618. msgstr ""
  1619. #: static/misago/js/misago.js:1
  1620. msgid "You can't move this thread at the moment."
  1621. msgstr ""
  1622. #: static/misago/js/misago.js:1
  1623. msgid "Go to first page"
  1624. msgstr ""
  1625. #: static/misago/js/misago.js:1
  1626. msgid "Go to previous page"
  1627. msgstr ""
  1628. #: static/misago/js/misago.js:1
  1629. msgid "Go to next page"
  1630. msgstr ""
  1631. #: static/misago/js/misago.js:1
  1632. msgid "Go to last page"
  1633. msgstr ""
  1634. #: static/misago/js/misago.js:1
  1635. msgid "There is %(more)s more post in this thread."
  1636. msgid_plural "There are %(more)s more posts in this thread."
  1637. msgstr[0] ""
  1638. msgstr[1] ""
  1639. #: static/misago/js/misago.js:1
  1640. msgid "There are no more posts in this thread."
  1641. msgstr ""
  1642. #: static/misago/js/misago.js:1
  1643. msgid "Enabled"
  1644. msgstr "Aan"
  1645. #: static/misago/js/misago.js:1
  1646. msgid "Disabled"
  1647. msgstr "uit"
  1648. #: static/misago/js/misago.js:1
  1649. msgid "Unsubscribe"
  1650. msgstr "lidmaatschap opzeggen "
  1651. #: static/misago/js/misago.js:1
  1652. msgid "Subscribe"
  1653. msgstr "abonneer "
  1654. #: static/misago/js/misago.js:1
  1655. msgid "Subscribe with e-mail"
  1656. msgstr ""
  1657. #: static/misago/js/misago.js:1
  1658. msgid "Go to first new post"
  1659. msgstr ""
  1660. #: static/misago/js/misago.js:1
  1661. msgid "Go to best answer"
  1662. msgstr ""
  1663. #: static/misago/js/misago.js:1
  1664. msgid "Go to first unapproved post"
  1665. msgstr ""
  1666. #: static/misago/js/misago.js:1
  1667. msgid "Go to last post"
  1668. msgstr ""
  1669. #: static/misago/js/misago.js:1
  1670. msgid "Last"
  1671. msgstr "Laatste "
  1672. #: static/misago/js/misago.js:1
  1673. msgid "Last post"
  1674. msgstr "Laatste post"
  1675. #: static/misago/js/misago.js:1
  1676. msgid "Options"
  1677. msgstr "Instellingen"
  1678. #: static/misago/js/misago.js:1
  1679. msgid "Add poll"
  1680. msgstr ""
  1681. #: static/misago/js/misago.js:1
  1682. msgid ""
  1683. "There is %(threads)s new or updated thread. Click this message to show it."
  1684. msgid_plural ""
  1685. "There are %(threads)s new or updated threads. Click this message to show "
  1686. "them."
  1687. msgstr[0] ""
  1688. msgstr[1] ""
  1689. #: static/misago/js/misago.js:1
  1690. msgid "New posts"
  1691. msgstr ""
  1692. #: static/misago/js/misago.js:1
  1693. msgid "Answered"
  1694. msgstr ""
  1695. #: static/misago/js/misago.js:1
  1696. msgid "Change subscription"
  1697. msgstr ""
  1698. #: static/misago/js/misago.js:1
  1699. msgid "Start thread"
  1700. msgstr ""
  1701. #: static/misago/js/misago.js:1
  1702. msgid "Why not start one yourself?"
  1703. msgstr ""
  1704. #: static/misago/js/misago.js:1
  1705. msgid "There are no threads on this forum... yet!"
  1706. msgstr ""
  1707. #: static/misago/js/misago.js:1
  1708. msgid "There are no threads in this category."
  1709. msgstr ""
  1710. #: static/misago/js/misago.js:1
  1711. msgid "No threads matching specified criteria were found."
  1712. msgstr ""
  1713. #: static/misago/js/misago.js:1
  1714. msgid "Selected threads were pinned globally."
  1715. msgstr ""
  1716. #: static/misago/js/misago.js:1
  1717. msgid "Selected threads were pinned locally."
  1718. msgstr ""
  1719. #: static/misago/js/misago.js:1
  1720. msgid "Selected threads were unpinned."
  1721. msgstr ""
  1722. #: static/misago/js/misago.js:1
  1723. msgid "Selected threads were approved."
  1724. msgstr ""
  1725. #: static/misago/js/misago.js:1
  1726. msgid "Selected threads were opened."
  1727. msgstr ""
  1728. #: static/misago/js/misago.js:1
  1729. msgid "Selected threads were closed."
  1730. msgstr ""
  1731. #: static/misago/js/misago.js:1
  1732. msgid "Selected threads were unhidden."
  1733. msgstr ""
  1734. #: static/misago/js/misago.js:1
  1735. msgid "Selected threads were hidden."
  1736. msgstr ""
  1737. #: static/misago/js/misago.js:1
  1738. msgid "You don't have permission to merge this thread with others."
  1739. msgstr ""
  1740. #: static/misago/js/misago.js:1
  1741. msgid "You have to select at least two threads to merge."
  1742. msgstr ""
  1743. #: static/misago/js/misago.js:1
  1744. msgid "Are you sure you want to delete selected threads?"
  1745. msgstr ""
  1746. #: static/misago/js/misago.js:1
  1747. msgid "Selected threads were deleted."
  1748. msgstr ""
  1749. #: static/misago/js/misago.js:1
  1750. msgid "Pin threads globally"
  1751. msgstr ""
  1752. #: static/misago/js/misago.js:1
  1753. msgid "Pin threads locally"
  1754. msgstr ""
  1755. #: static/misago/js/misago.js:1
  1756. msgid "Unpin threads"
  1757. msgstr ""
  1758. #: static/misago/js/misago.js:1
  1759. msgid "Move threads"
  1760. msgstr ""
  1761. #: static/misago/js/misago.js:1
  1762. msgid "Approve threads"
  1763. msgstr ""
  1764. #: static/misago/js/misago.js:1
  1765. msgid "Open threads"
  1766. msgstr ""
  1767. #: static/misago/js/misago.js:1
  1768. msgid "Close threads"
  1769. msgstr ""
  1770. #: static/misago/js/misago.js:1
  1771. msgid "Unhide threads"
  1772. msgstr ""
  1773. #: static/misago/js/misago.js:1
  1774. msgid "Hide threads"
  1775. msgstr ""
  1776. #: static/misago/js/misago.js:1
  1777. msgid "Delete threads"
  1778. msgstr ""
  1779. #: static/misago/js/misago.js:1
  1780. msgid "Threads moderation"
  1781. msgstr ""
  1782. #: static/misago/js/misago.js:1
  1783. msgid "One or more threads could not be deleted:"
  1784. msgstr ""
  1785. #: static/misago/js/misago.js:1
  1786. msgid ""
  1787. "You can't move threads because there are no categories you are allowed to "
  1788. "move them to."
  1789. msgstr ""
  1790. #: static/misago/js/misago.js:1
  1791. msgid ""
  1792. "You need permission to start threads in category to be able to merge threads"
  1793. " to it."
  1794. msgstr ""
  1795. #: static/misago/js/misago.js:1
  1796. msgid "Selected threads were moved."
  1797. msgstr ""
  1798. #: static/misago/js/misago.js:1
  1799. msgid ""
  1800. "You need permission to start threads in category to be able to move threads "
  1801. "to it."
  1802. msgstr ""
  1803. #: static/misago/js/misago.js:1
  1804. msgid "Select all"
  1805. msgstr ""
  1806. #: static/misago/js/misago.js:1
  1807. msgid "Select none"
  1808. msgstr ""
  1809. #: static/misago/js/misago.js:1
  1810. msgid "All"
  1811. msgstr "Alle"
  1812. #: static/misago/js/misago.js:1
  1813. msgid "All threads"
  1814. msgstr ""
  1815. #: static/misago/js/misago.js:1
  1816. msgid "My"
  1817. msgstr "Mijn "
  1818. #: static/misago/js/misago.js:1
  1819. msgid "My threads"
  1820. msgstr ""
  1821. #: static/misago/js/misago.js:1
  1822. msgid "New threads"
  1823. msgstr ""
  1824. #: static/misago/js/misago.js:1
  1825. msgid "Unread"
  1826. msgstr "Ongelezen"
  1827. #: static/misago/js/misago.js:1
  1828. msgid "Unread threads"
  1829. msgstr "ongelezen berichten "
  1830. #: static/misago/js/misago.js:1
  1831. msgid "Subscribed"
  1832. msgstr "Geabonneerd"
  1833. #: static/misago/js/misago.js:1
  1834. msgid "Subscribed threads"
  1835. msgstr ""
  1836. #: static/misago/js/misago.js:1
  1837. msgid "Unapproved content"
  1838. msgstr ""
  1839. #: static/misago/js/misago.js:1
  1840. msgid "You are browsing as guest."
  1841. msgstr ""
  1842. #: static/misago/js/misago.js:1
  1843. msgid "Sign in or register to start and participate in discussions."
  1844. msgstr ""
  1845. #: static/misago/js/misago.js:1
  1846. msgid "Are you sure you want to sign out?"
  1847. msgstr "Weet je het zeker dat je uit wilt loggen? "
  1848. #: static/misago/js/misago.js:1
  1849. msgid "See your profile"
  1850. msgstr "Zie je profiel "
  1851. #: static/misago/js/misago.js:1
  1852. msgid "Change options"
  1853. msgstr "Verander instellingen."
  1854. #: static/misago/js/misago.js:1
  1855. msgid "Change avatar"
  1856. msgstr "Verander je avatar. "
  1857. #: static/misago/js/misago.js:1
  1858. msgid "Private threads"
  1859. msgstr "Privé posts "
  1860. #: static/misago/js/misago.js:1
  1861. msgid "Log out"
  1862. msgstr "Log uit."
  1863. #: static/misago/js/misago.js:1
  1864. msgid "You have unread private threads!"
  1865. msgstr ""
  1866. #: static/misago/js/misago.js:1
  1867. msgid "Banned"
  1868. msgstr "Verbannen"
  1869. #: static/misago/js/misago.js:1
  1870. msgid "Online (hidden)"
  1871. msgstr "Online (onzichtbaar) "
  1872. #: static/misago/js/misago.js:1
  1873. msgid "Offline (hidden)"
  1874. msgstr "Offline (onzichtbaar)"
  1875. #: static/misago/js/misago.js:1
  1876. msgid "Online"
  1877. msgstr "Online"
  1878. #: static/misago/js/misago.js:1
  1879. msgid "Offline"
  1880. msgstr "Offline "
  1881. #: static/misago/js/misago.js:1
  1882. msgid "%(username)s is banned until %(ban_expires)s"
  1883. msgstr ""
  1884. #: static/misago/js/misago.js:1
  1885. msgid "%(username)s is banned"
  1886. msgstr "%(username)sis verbannen. "
  1887. #: static/misago/js/misago.js:1
  1888. msgid "%(username)s is hiding presence"
  1889. msgstr ""
  1890. #: static/misago/js/misago.js:1
  1891. msgid "%(username)s is online (hidden)"
  1892. msgstr ""
  1893. #: static/misago/js/misago.js:1
  1894. msgid "%(username)s was last seen %(last_click)s (hidden)"
  1895. msgstr "%(username)s was laat gezien om %(last_click)s (onzichtbaar) "
  1896. #: static/misago/js/misago.js:1
  1897. msgid "%(username)s is online"
  1898. msgstr "%(username)s is online "
  1899. #: static/misago/js/misago.js:1
  1900. msgid "%(username)s was last seen %(last_click)s"
  1901. msgstr ""
  1902. #: static/misago/js/misago.js:1
  1903. msgid "%(followers)s follower"
  1904. msgid_plural "%(followers)s followers"
  1905. msgstr[0] ""
  1906. msgstr[1] ""
  1907. #: static/misago/js/misago.js:1
  1908. msgid "No users have posted any new messages during last %(days)s days."
  1909. msgstr ""
  1910. #: static/misago/js/misago.js:1
  1911. msgid "Rank"
  1912. msgstr "Rang"
  1913. #: static/misago/js/misago.js:1
  1914. msgid "Ranked posts"
  1915. msgstr ""
  1916. #: static/misago/js/misago.js:1
  1917. msgid "Total posts"
  1918. msgstr ""
  1919. #: static/misago/js/misago.js:1
  1920. msgid "%(posters)s top poster from last %(days)s days."
  1921. msgid_plural "%(posters)s top posters from last %(days)s days."
  1922. msgstr[0] ""
  1923. msgstr[1] ""
  1924. #: static/misago/js/misago.js:1
  1925. msgid "Users"
  1926. msgstr "Gebruikers "
  1927. #: static/misago/js/misago.js:1
  1928. msgid "There is %(more)s more member with this role."
  1929. msgid_plural "There are %(more)s more members with this role."
  1930. msgstr[0] ""
  1931. msgstr[1] ""
  1932. #: static/misago/js/misago.js:1
  1933. msgid "There are no more members with this role."
  1934. msgstr ""
  1935. #: static/misago/js/misago.js:1
  1936. msgid "There are no users with this rank at the moment."
  1937. msgstr ""
  1938. #: static/misago/js/misago.js:1
  1939. msgid "yes"
  1940. msgstr "Ja"
  1941. #: static/misago/js/misago.js:1
  1942. msgid "no"
  1943. msgstr "nee"
  1944. #: static/misago/js/misago.js:1
  1945. msgid ""
  1946. "Private threads are threads which only those that started them and those "
  1947. "they have invited may see and participate in."
  1948. msgstr ""
  1949. #: static/misago/js/misago.js:1
  1950. msgid "You aren't participating in any private threads."
  1951. msgstr ""
  1952. #: static/misago/js/misago.js:1
  1953. msgid "Lost connection with application."
  1954. msgstr "Verbinding verloren met applicatie."
  1955. #: static/misago/js/misago.js:1
  1956. msgid "Action link is invalid."
  1957. msgstr ""
  1958. #: static/misago/js/misago.js:1
  1959. msgid "Unknown error has occured."
  1960. msgstr "Een onbekende fout is opgetreden. "
  1961. #: static/misago/js/misago.js:1
  1962. msgid "Upload was rejected by server as too large."
  1963. msgstr ""
  1964. #: static/misago/js/misago.js:1
  1965. msgid "Failed to load CAPTCHA."
  1966. msgstr "De CAPTCHA heeft gefaald om te laden. "
  1967. #: static/misago/js/misago.js:1
  1968. msgid "Please solve the quick test"
  1969. msgstr ""
  1970. #: static/misago/js/misago.js:1
  1971. msgid "This test helps us prevent automated spam registrations on our site."
  1972. msgstr ""
  1973. #: static/misago/js/misago.js:1
  1974. msgid "page: %(page)s"
  1975. msgstr "Pagina: %(page)s"
  1976. #: static/misago/js/misago.js:1
  1977. msgid "You are already working on other message. Do you want to discard it?"
  1978. msgstr ""
  1979. #: static/misago/js/misago.js:1
  1980. msgid "You are already working on a poll. Do you want to discard it?"
  1981. msgstr ""
  1982. #: static/misago/js/misago.js:1
  1983. msgid "You don't have permission to perform this action."
  1984. msgstr ""
  1985. #: static/misago/js/misago.js:1
  1986. msgid "You are banned"
  1987. msgstr "U bent verbannen."
  1988. #: static/misago/js/misago.js:1
  1989. msgid "You have to accept the terms of service."
  1990. msgstr ""
  1991. #: static/misago/js/misago.js:1
  1992. msgid "You have to accept the privacy policy."
  1993. msgstr ""
  1994. #: static/misago/js/misago.js:1
  1995. msgid "Username must be at least %(limit_value)s character long."
  1996. msgid_plural "Username must be at least %(limit_value)s characters long."
  1997. msgstr[0] ""
  1998. msgstr[1] ""
  1999. #: static/misago/js/misago.js:1
  2000. msgid "Username cannot be longer than %(limit_value)s character."
  2001. msgid_plural "Username cannot be longer than %(limit_value)s characters."
  2002. msgstr[0] ""
  2003. msgstr[1] ""
  2004. #: static/misago/js/misago.js:1
  2005. msgid "Username can only contain latin alphabet letters and digits."
  2006. msgstr ""
  2007. #: static/misago/js/misago.js:1
  2008. msgid "Valid password must be at least %(limit_value)s character long."
  2009. msgid_plural ""
  2010. "Valid password must be at least %(limit_value)s characters long."
  2011. msgstr[0] ""
  2012. msgstr[1] ""
  2013. #: static/misago/js/misago.js:1
  2014. msgid "This field is required."
  2015. msgstr "Dit veld is verplicht. "
  2016. #: static/misago/js/misago.js:1
  2017. msgid ""
  2018. "Ensure this value has at least %(limit_value)s character (it has "
  2019. "%(show_value)s)."
  2020. msgid_plural ""
  2021. "Ensure this value has at least %(limit_value)s characters (it has "
  2022. "%(show_value)s)."
  2023. msgstr[0] ""
  2024. msgstr[1] ""
  2025. #: static/misago/js/misago.js:1
  2026. msgid ""
  2027. "Ensure this value has at most %(limit_value)s character (it has "
  2028. "%(show_value)s)."
  2029. msgid_plural ""
  2030. "Ensure this value has at most %(limit_value)s characters (it has "
  2031. "%(show_value)s)."
  2032. msgstr[0] ""
  2033. msgstr[1] ""