tribe-common-nl_NL.po 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325
  1. # Translation of Tribe Common in Dutch
  2. # This file is distributed under the same license as the Tribe Common package.
  3. msgid ""
  4. msgstr ""
  5. "PO-Revision-Date: 2016-10-23 04:48:44+0000\n"
  6. "MIME-Version: 1.0\n"
  7. "Content-Type: text/plain; charset=UTF-8\n"
  8. "Content-Transfer-Encoding: 8bit\n"
  9. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  10. "X-Generator: GlotPress/2.3.1\n"
  11. "Language: nl\n"
  12. "Project-Id-Version: Tribe Common\n"
  13. #: vendor/a5hleyrich/wp-background-processing/classes/wp-background-process.php:425
  14. msgid "Every %d Minutes"
  15. msgstr ""
  16. #: src/admin-views/tribe-options-help.php:33
  17. msgid "Search our support help desk"
  18. msgstr ""
  19. #: src/Tribe/Plugins_API.php:71
  20. msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
  21. msgstr ""
  22. #: src/Tribe/Validate.php:184
  23. msgid "%s must not be empty"
  24. msgstr ""
  25. #: src/Tribe/Validate.php:545
  26. msgid "%s must be an email address."
  27. msgstr ""
  28. #: src/Tribe/Languages/Locations.php:252
  29. msgid "Sint Maarten"
  30. msgstr ""
  31. #: src/Tribe/Languages/Locations.php:245
  32. msgid "São Tomé and Príncipe"
  33. msgstr ""
  34. #: src/Tribe/Languages/Locations.php:238
  35. msgid "Saint Helena"
  36. msgstr ""
  37. #: src/Tribe/Languages/Locations.php:237
  38. msgid "Saint Barthélemy"
  39. msgstr ""
  40. #: src/Tribe/Languages/Locations.php:113
  41. msgid "Curaçao"
  42. msgstr ""
  43. #: src/Tribe/Languages/Locations.php:103
  44. msgid "Collectivity of Saint Martin"
  45. msgstr ""
  46. #: src/Tribe/Languages/Locations.php:57
  47. msgid "Åland Islands"
  48. msgstr ""
  49. #: src/admin-views/tribe-options-help.php:20
  50. msgid "Check out our %s for developers."
  51. msgstr ""
  52. #: src/admin-views/tribe-options-help.php:18
  53. msgid "Want to dive deeper?"
  54. msgstr ""
  55. #: src/admin-views/tribe-options-display.php:28
  56. msgid "The following three fields accept the date format options available to the PHP %1$s function. <a href=\"%2$s\" target=\"_blank\">Learn how to make your own date format here</a>."
  57. msgstr ""
  58. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:57
  59. msgid "A list of links to the term own, archive and parent REST URL"
  60. msgstr ""
  61. #: src/Tribe/Main.php:250
  62. msgid "Clear Selection."
  63. msgstr ""
  64. #: src/Tribe/Main.php:249
  65. msgid "Select all pages"
  66. msgstr ""
  67. #: src/Tribe/Main.php:248
  68. msgid "All items on this page were selected. "
  69. msgstr ""
  70. #: src/Tribe/Plugins_API.php:94
  71. msgid "Accept user-submitted events on your site! With Community Events, you can accept public submissions or require account sign-on. Settings give you the options to save as a draft or publish automatically, enable categories and tags, and choose whether users can edit/manage their own events or simply submit. Best of all - setup is easy! Just activate, configure the options, and off you go."
  72. msgstr ""
  73. #: src/Tribe/Plugins_API.php:37
  74. msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
  75. msgstr ""
  76. #: src/Tribe/Ajax/Dropdown.php:243
  77. msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
  78. msgstr ""
  79. #: src/Tribe/Ajax/Dropdown.php:193
  80. msgid "Empty data set for this dropdown"
  81. msgstr ""
  82. #: src/Tribe/Ajax/Dropdown.php:180
  83. msgid "Missing data source for this dropdown"
  84. msgstr ""
  85. #: src/Tribe/Ajax/Dropdown.php:38
  86. msgid "Cannot look for Terms without a taxonomy"
  87. msgstr ""
  88. #: src/Tribe/Plugins_API.php:60
  89. msgid "Event Tickets provides a simple way for visitors to RSVP to your events. As a standalone plugin, it enables you to add RSVP functionality to posts or pages. When paired with The Events Calendar, you can add that same RSVP functionality directly to your event listings."
  90. msgstr ""
  91. #: src/Tribe/Plugins_API.php:28
  92. msgid "Create an events calendar and manage it with ease. The Events Calendar plugin provides professional-level quality and features backed by a team you can trust."
  93. msgstr ""
  94. #: src/Tribe/PUE/Checker.php:1095
  95. msgid "There is a new version of %1$s available. %2$s"
  96. msgstr ""
  97. #: src/Tribe/PUE/Checker.php:1084
  98. msgid "Update now to version %s."
  99. msgstr ""
  100. #: src/Tribe/PUE/Notices.php:340
  101. msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
  102. msgstr ""
  103. #: src/Tribe/PUE/Notices.php:225
  104. msgid "It looks like you're using %1$s, but the license key is invalid. Please download the latest version %2$sfrom your account%3$s."
  105. msgid_plural "It looks like you're using %1$s, but the license keys are invalid. Please download the latest versions %2$sfrom your account%3$s."
  106. msgstr[0] ""
  107. msgstr[1] ""
  108. #: src/Tribe/PUE/Checker.php:976
  109. msgid "Please refresh the page and try your request again."
  110. msgstr ""
  111. #: src/Tribe/Plugins_API.php:129
  112. msgid "Take your image widgets to the next level with Image Widget Plus! We've taken the simple functionality of our basic Image Widget and amped it up with several popular feature requests - multiple image support, slideshow, lightbox, and random image - all backed by a full year of premium support."
  113. msgstr ""
  114. #: src/Tribe/Plugins_API.php:125
  115. msgid "Image Widget Plus"
  116. msgstr ""
  117. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:52
  118. msgid "The URL to the term archive page"
  119. msgstr ""
  120. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:48
  121. msgid "The number of posts associated with the term"
  122. msgstr ""
  123. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:44
  124. msgid "The term parent term if any"
  125. msgstr ""
  126. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:40
  127. msgid "The term description"
  128. msgstr ""
  129. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:36
  130. msgid "The taxonomy the term belongs to"
  131. msgstr ""
  132. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:32
  133. msgid "The term slug"
  134. msgstr ""
  135. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:28
  136. msgid "The term name"
  137. msgstr ""
  138. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
  139. msgid "The WordPress term ID"
  140. msgstr ""
  141. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
  142. msgid "The link to the image in the specified size on the site"
  143. msgstr ""
  144. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:32
  145. msgid "The image mime-type"
  146. msgstr ""
  147. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:28
  148. msgid "The image height in pixels in the specified size"
  149. msgstr ""
  150. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:24
  151. msgid "The image width in pixels in the specified size"
  152. msgstr ""
  153. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
  154. msgid "The details about each size available for the image"
  155. msgstr ""
  156. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
  157. msgid "The image natural height in pixels"
  158. msgstr ""
  159. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
  160. msgid "The image natural width in pixels"
  161. msgstr ""
  162. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
  163. msgid "The image file extension"
  164. msgstr ""
  165. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
  166. msgid "The image WordPress post ID"
  167. msgstr ""
  168. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
  169. msgid "The URL to the full size version of the image"
  170. msgstr ""
  171. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:44
  172. msgid "The date seconds"
  173. msgstr ""
  174. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:40
  175. msgid "The date minutes"
  176. msgstr ""
  177. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:36
  178. msgid "The date hour"
  179. msgstr ""
  180. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:32
  181. msgid "The date day"
  182. msgstr ""
  183. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:28
  184. msgid "The date month"
  185. msgstr ""
  186. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:24
  187. msgid "The date year"
  188. msgstr ""
  189. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:34
  190. msgid "A sorted array of all the numeric values for the cost"
  191. msgstr ""
  192. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:28
  193. msgid "The position of the currency symbol in the cost string"
  194. msgstr ""
  195. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:24
  196. msgid "The cost currency symbol"
  197. msgstr ""
  198. #: src/Tribe/PUE/Checker.php:497
  199. msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
  200. msgstr ""
  201. #: src/Tribe/Validate.php:248
  202. msgid "%s must be a whole number."
  203. msgstr ""
  204. #: src/Tribe/Settings.php:281 src/Tribe/Settings.php:282
  205. msgid "Events Help"
  206. msgstr ""
  207. #: src/Tribe/PUE/Checker.php:1670
  208. msgid "Expired license. Consult your network administrator."
  209. msgstr ""
  210. #: src/Tribe/PUE/Checker.php:1669
  211. msgid "No license entered. Consult your network administrator."
  212. msgstr ""
  213. #: src/Tribe/PUE/Checker.php:1668
  214. msgid "A valid license has been entered by your network administrator."
  215. msgstr ""
  216. #: src/Tribe/PUE/Checker.php:550
  217. msgid "Site License Key"
  218. msgstr ""
  219. #: src/Tribe/PUE/Checker.php:539
  220. msgid "Check this box if you wish to override the network license key with your own"
  221. msgstr ""
  222. #: src/Tribe/PUE/Checker.php:538
  223. msgid "Override network license key"
  224. msgstr ""
  225. #: src/Tribe/PUE/Checker.php:529 src/Tribe/PUE/Checker.php:563
  226. msgid "License Key Status:"
  227. msgstr ""
  228. #: src/Tribe/Customizer.php:570
  229. msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
  230. msgstr ""
  231. #: src/Tribe/Extension.php:368
  232. msgid "Unable to run Tribe Extensions. Your website host is running PHP 5.2 or older, and has likely disabled or misconfigured debug_backtrace(). You, or your website host, will need to upgrade PHP or properly configure debug_backtrace() for Tribe Extensions to work."
  233. msgstr ""
  234. #: src/Tribe/Extension.php:144
  235. msgid "Tutorial"
  236. msgstr ""
  237. #: src/admin-views/app-shop.php:31
  238. msgid "Installed"
  239. msgstr ""
  240. #: src/admin-views/app-shop.php:29
  241. msgid "Installed Add-Ons"
  242. msgstr ""
  243. #: src/Tribe/Admin/Notice/Plugin_Download.php:92
  244. msgctxt "the final separator in a list of two or more items"
  245. msgid " and "
  246. msgstr "en"
  247. #: src/Tribe/Admin/Notice/Plugin_Download.php:91
  248. msgctxt "separator used in a list of items"
  249. msgid ", "
  250. msgstr ","
  251. #: src/admin-views/tribe-options-help.php:55
  252. msgid "Event Log"
  253. msgstr "Event Log"
  254. #: src/admin-views/tribe-options-help.php:42
  255. msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our help desk."
  256. msgstr ""
  257. #: src/admin-views/app-shop.php:26
  258. msgid "Buy This Add-On"
  259. msgstr "Koop deze Add-On"
  260. #: src/admin-views/app-shop.php:5
  261. msgid "Browse All Add-Ons"
  262. msgstr "Blader door alle Add-Ons"
  263. #: src/admin-views/app-shop.php:4
  264. msgid "Events Add-Ons"
  265. msgstr "Events Add-Ons"
  266. #: src/Tribe/PUE/Notices.php:383
  267. msgctxt "formatted plugin list"
  268. msgid "%1$s and %2$s"
  269. msgstr "%1$s en %2$s"
  270. #: src/Tribe/PUE/Notices.php:302
  271. msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
  272. msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
  273. msgstr[0] ""
  274. msgstr[1] ""
  275. #: src/Tribe/PUE/Notices.php:270
  276. msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
  277. msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
  278. msgstr[0] "Er is een update beschikbaar voor %1$s, maar je licentie is verlopen. %2$sBezoek de Events Calendar website om je licentie te vernieuwen.%3$s"
  279. msgstr[1] "Er zijn updates beschikbaar voor %1$s maar je licentiesleutels zijn verlopen. %2$sBezoek de Events Calendar website om je licenties te vernieuwen.%3$s"
  280. #: src/Tribe/PUE/Checker.php:1054
  281. msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
  282. msgstr "Er is een update voor %s. %sVernieuw je licentie%s om toegang te krijgen tot bugfixes, beveiligingsupdates en nieuwe functies."
  283. #: src/Tribe/PUE/Checker.php:997
  284. msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
  285. msgstr "Er is een update voor %s. Je moet %sje licentie checken%s om toegang te hebben tot updates, downloads en ondersteuning."
  286. #: src/Tribe/Admin/Help_Page.php:219 src/Tribe/Plugins_API.php:34
  287. msgid "Event Aggregator"
  288. msgstr "Event Aggregator"
  289. #: src/Tribe/Admin/Notice/Plugin_Download.php:75
  290. msgid "To begin using %1$s, please install and activate the latest version of %2$s."
  291. msgstr "Om %1$s te gaan gebruiken moet je de laatste versie van %2$s installeren en activeren."
  292. #: src/admin-views/tribe-options-licenses.php:30
  293. msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
  294. msgstr "Zie je geen update, maar verwacht je er wel één? Ga in WordPress naar %1$sDashboard > Updates%2$s en klik op \"Opnieuw controleren\""
  295. #: src/admin-views/tribe-options-licenses.php:25
  296. msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
  297. msgstr "Als je een rood bericht ziet met de melding dat je licentiesleutel niet meer geldig is of dat je het niet meer op meer sites kan installeren, bezoek dan %1$s om je installaties te beheren of om je licentie te vernieuwen/upgraden."
  298. #: src/admin-views/tribe-options-licenses.php:22
  299. msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
  300. msgstr "Elke betaalde add-on heeft zijn eigen unieke licentiesleutel. Kopieer en plak de sleutel in het juiste veld hieronder en geef het een moment om te valideren. Je weet wanneer alles OK is wanneer een groene verloopdatum verschijnt naast de melding \"geldig\"."
  301. #: src/admin-views/tribe-options-licenses.php:15
  302. msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
  303. msgstr "De licentiesleutel die je hebt gekregen tijdens de afronding van je aankoop van %1$s geeft je toegang tot ondersteuning en updates totdat het verloopt. Je hoeft de sleutel niet hieronder in te voeren om de plugins te laten werken, maar je hebt het nodig om automatische updates te krijgen. %3$sVind je licentiesleutels op %2$s%4$s."
  304. #: src/admin-views/tribe-options-licenses.php:11
  305. #: src/admin-views/tribe-options-licenses.php:16
  306. msgid " (opens in new window)"
  307. msgstr "(opent in nieuw venster)"
  308. #: src/Tribe/Languages/Locations.php:110
  309. msgid "C&ocirc;te d'Ivoire"
  310. msgstr "C&ocirc;te d'Ivoire"
  311. #: src/Tribe/Support.php:372
  312. msgid "Unique System Info Key Generated"
  313. msgstr "Unieke systeeminformatiesleutel gegenereerd"
  314. #: src/Tribe/Support.php:358 src/Tribe/Support.php:384
  315. msgid "Permission Error"
  316. msgstr "Toestemmingsfout"
  317. #: src/Tribe/Support.php:325 src/Tribe/Support.php:330
  318. msgid "Invalid Key"
  319. msgstr "Ongeldige sleutel"
  320. #: src/Tribe/Support.php:306
  321. msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
  322. msgstr "Je systeeminformatie zal alleen door het Modern Tribe-ondersteuningsteam gebruikt worden. Alle informatie is veilig opgeslagen. We delen deze informatie niet met derden."
  323. #: src/Tribe/Support.php:305
  324. msgid "Yes, automatically share my system information with the Modern Tribe support team"
  325. msgstr "Ja, ik wil mijn systeeminformatie automatisch delen met het Modern Tribe-ondersteuningsteam"
  326. #: src/Tribe/Support.php:171
  327. msgid "English"
  328. msgstr "Engels"
  329. #: src/Tribe/PUE/Checker.php:961 src/Tribe/PUE/Notices.php:285
  330. msgid " (opens in a new window)"
  331. msgstr "(opent in een nieuw scherm)"
  332. #: src/Tribe/PUE/Checker.php:959 src/Tribe/PUE/Notices.php:283
  333. msgid "Renew Your License Now"
  334. msgstr "Verleng je licentie nu"
  335. #: src/Tribe/Main.php:260
  336. msgid ": Selected 1 row"
  337. msgstr ": 1 rij geselecteerd"
  338. #: src/Tribe/Main.php:259
  339. msgid ": Selected %d rows"
  340. msgstr ": %d rijen geselecteerd"
  341. #: src/Tribe/Main.php:254
  342. msgid "Previous"
  343. msgstr "Vorige"
  344. #: src/Tribe/Main.php:252
  345. msgid "All"
  346. msgstr "Alle"
  347. #: src/Tribe/Main.php:246
  348. msgid "No matching records found"
  349. msgstr "Geen resultaten gevonden"
  350. #: src/Tribe/Main.php:245
  351. msgid "(filtered from _MAX_ total entries)"
  352. msgstr "(gefilterd van _MAX_ totale resultaten)"
  353. #: src/Tribe/Main.php:244
  354. msgid "Showing 0 to 0 of 0 entries"
  355. msgstr "Toont 0 tot 0 van 0 resultaten"
  356. #: src/Tribe/Main.php:243
  357. msgid "Showing _START_ to _END_ of _TOTAL_ entries"
  358. msgstr "Toont _START_ tot _END_ van _TOTAL_ resultaten"
  359. #: src/Tribe/Main.php:242
  360. msgid "No data available in table"
  361. msgstr "Geen data beschikbaar in tabel"
  362. #: src/Tribe/Main.php:241
  363. msgid "Show _MENU_ entries"
  364. msgstr "Toon _MENU_ entries"
  365. #: src/Tribe/Main.php:239
  366. msgid ": activate to sort column descending"
  367. msgstr ": activeer om de kolom oplopend te sorteren"
  368. #: src/Tribe/Main.php:238
  369. msgid ": activate to sort column ascending"
  370. msgstr ": activeer om de kolom aflopend te sorteren"
  371. #: src/Tribe/Main.php:280
  372. msgid "Press \"Cmd + C\" to copy"
  373. msgstr "Druk op \"Cmd + C\" om te kopiëren"
  374. #: src/Tribe/Main.php:279
  375. msgid "System info copied"
  376. msgstr "Systeeminformatie gekopieerd"
  377. #: src/Tribe/Main.php:278 src/admin-views/tribe-options-help.php:50
  378. msgid "Copy to clipboard"
  379. msgstr "Kopieer naar klembord"
  380. #: src/Tribe/Error.php:38
  381. msgid "An Unknown error occurred"
  382. msgstr "Een onbekende fout is opgetreden"
  383. #: src/Tribe/Plugins_API.php:116
  384. msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
  385. msgstr "De Eventbrite Tickets add-on geeft je de mogelijkheid om tickets te maken en verkopen via The Events Calendar, gebruik makend van de kracht van %1$sEventbrite%2$s. Of je nu via je WordPress-omgeving tickets aanmaakt, of dat je ze importeert uit een reeds bestaand evenement op %1$sEventbrite.com%2$s, deze add-on brengt de kracht van de Eventbrite API naar je kalender."
  386. #: src/Tribe/Plugins_API.php:105
  387. msgctxt "Names of required plugins for Community Tickets"
  388. msgid "Event Tickets Plus and Community Events"
  389. msgstr "Event Tickets Plus en Community Events"
  390. #: src/Tribe/Plugins_API.php:104
  391. msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
  392. msgstr "Stel organisatoren van Community Events om tickets aan te bieden voor hun evenementen. Je kan flexibele betalingsopties instellen. Ze kunnen ook deelnemers inchecken! Dit kan allemaal beheerd worden vanaf de frontend van de site, zodat ze geen toegang hoeven te hebben tot de admin-omgeving van je site."
  393. #: src/Tribe/Plugins_API.php:48
  394. msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
  395. msgstr "The Events Calendar PRO is een betaalde add-on op onze open-source WordPress plugin %1$sThe Events Calendar%2$s. PRO biedt een uitgebreide set aan kalenderfuncties, inclusief terugkerende evenementen, aangepaste event-attributen, opgeslagen locaties en organisatoren, aparte pagina's voor je locaties, geavanceerd evenementbeheer en veel meer."
  396. #: src/Tribe/Plugins_API.php:84
  397. msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
  398. msgstr "Het is geweldig dat je kalender <em>DE PLEK</em> is om in contact te komen met uitstekende keuzes om tijd door te brengen. Jabba de Hutt heeft minder vetrollen dan jij evenementen hebt. Wel jammer dat bezoekers een persoonlijke assistent inhuren om door alle keuzes te zoeken. Heb je altijd al de mogelijkheid willen hebben om de kalender te filteren om alleen maar evenementen te zien die op loopafstand zijn, in een weekend plaatsvinden, die gratis zijn? BOOM. Nu kan dat. We introduceren... de Filter Bar."
  399. #: src/Tribe/Admin/Help_Page.php:227 src/Tribe/Plugins_API.php:80
  400. msgid "Filter Bar"
  401. msgstr "Filter Bar"
  402. #: src/Tribe/Credits.php:64
  403. msgid "Rate %1$sEvent Tickets%2$s %3$s"
  404. msgstr "Beoordeel %1$sEvent Tickets%2$s %3$s"
  405. #: src/Tribe/Credits.php:55
  406. msgid "Rate %1$sThe Events Calendar%2$s %3$s"
  407. msgstr "Beoordeel %1$sThe Events Calendar%2$s %3$s"
  408. #: src/Tribe/Log/Null_Logger.php:26
  409. msgid "Null logger (will log nothing)"
  410. msgstr "Null logger (zal niets loggen)"
  411. #: src/admin-views/event-log.php:117
  412. msgid "Download log"
  413. msgstr "Download logbestand"
  414. #: src/admin-views/event-log.php:100
  415. msgid "The selected log file is empty or has not been generated yet."
  416. msgstr "Het geselecteerde logbestand is leeg of is nog niet gegenereerd."
  417. #: src/admin-views/event-log.php:43
  418. msgid "Method"
  419. msgstr "Methode"
  420. #: src/admin-views/event-log.php:21
  421. msgid "Logging level"
  422. msgstr "Logging niveau"
  423. #: src/Tribe/Validate.php:168
  424. msgid "%s must contain numbers, letters, dashes and undescores only"
  425. msgstr "%s mag alleen nummers, letters, verbindingsstreepjes of liggende streepjes bevatten."
  426. #: src/Tribe/Log.php:376
  427. msgid "Full debug (all events)"
  428. msgstr "Volledige debug (alle evenementen)"
  429. #: src/Tribe/Log.php:375
  430. msgid "Warnings and errors"
  431. msgstr "Waarschuwingen en fouten"
  432. #: src/Tribe/Log.php:374
  433. msgid "Only errors"
  434. msgstr "Alleen fouten"
  435. #: src/Tribe/Log.php:373
  436. msgid "Disabled"
  437. msgstr "Uitgeschakeld"
  438. #: src/Tribe/Log.php:274
  439. msgid "Cannot set %s as the current logging engine"
  440. msgstr "We kunnen %s niet instellen als het huidige loggingmechanisme"
  441. #: src/Tribe/Log/File_Logger.php:128
  442. msgid "Default (uses temporary files)"
  443. msgstr "Standaard (gebruikt tijdelijke bestanden)"
  444. #: src/Tribe/Log/Admin.php:148
  445. msgctxt "log engines"
  446. msgid "None currently available"
  447. msgstr "Geen die momenteel beschikbaar zijn"
  448. #: src/Tribe/Log/Admin.php:133
  449. msgctxt "log selector"
  450. msgid "None currently available"
  451. msgstr "Geen die momenteel beschikbaar zijn"
  452. #: src/admin-views/tribe-options-help.php:52
  453. msgid "Recent Template Changes"
  454. msgstr "Recente templatewijzigingen"
  455. #: src/Tribe/Support/Template_Checker_Report.php:115
  456. msgid "Information about recent template changes and potentially impacted template overrides is provided below."
  457. msgstr "Informatie over de recente templateveranderingen en potentieel geraakte template overrides is hieronder weergegeven."
  458. #: src/Tribe/Support/Template_Checker_Report.php:113
  459. msgid "No notable template changes detected."
  460. msgstr "Geen noemenswaardige templatewijzigingen gedetecteerd."
  461. #: src/Tribe/Support/Template_Checker_Report.php:97
  462. msgid "based on %s version"
  463. msgstr "gebaseerd op %s versie"
  464. #: src/Tribe/Support/Template_Checker_Report.php:96
  465. msgid "version data missing from override"
  466. msgstr "versiedata mist van de override"
  467. #: src/Tribe/Support/Template_Checker_Report.php:92
  468. msgid "Existing theme overrides that may need revision:"
  469. msgstr "Bestaande thema overrides die mogelijk revisie nodig hebben:"
  470. #: src/Tribe/Support/Template_Checker_Report.php:82
  471. msgid "Templates introduced or updated with this release (%s):"
  472. msgstr "Templates die zijn aangepast of nieuw zijn toegevoegd met deze release (%s):"
  473. #: src/Tribe/Support/Template_Checker_Report.php:78
  474. msgid "No notable changes detected"
  475. msgstr "We hebben geen noemenswaardige veranderingen gedetecteerd"
  476. #. Description of the plugin/theme
  477. msgid "An event settings framework for managing shared options"
  478. msgstr "Een raamwerk voor evenementinstellingen waarin je gedeelde opties kan beheren"
  479. #. Plugin Name of the plugin/theme
  480. msgid "Tribe Common"
  481. msgstr "Tribe Common"
  482. #: src/admin-views/tribe-options-licenses.php:47
  483. msgid "Only license fields for %1$snetwork activated%2$s plugins will be listed on this screen. "
  484. msgstr "Alleen licenties voor plug-ins die %1$sgeactiveerd zijn via het netwerk%2$s worden in dit scherm weergegeven."
  485. #: src/admin-views/tribe-options-help.php:38
  486. msgid "Read more about our support policy"
  487. msgstr "Lees meer over ons ondersteuningsbeleid"
  488. #: src/admin-views/tribe-options-help.php:30
  489. msgid "Please note that all hands-on support is provided via the forums. You can email or tweet at us… ​but we will probably point you back to the forums "
  490. msgstr ""
  491. #: src/admin-views/tribe-options-help.php:33
  492. msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the help desk is open only to paid customers, they are open for anyone to search and review."
  493. msgstr ""
  494. #: src/admin-views/tribe-options-help.php:32
  495. msgid "Test for a theme or plugin conflict"
  496. msgstr "Controleer of er sprake is van een thema- of pluginconflict"
  497. #: src/admin-views/tribe-options-help.php:32
  498. msgid "%s. Testing for an existing conflict is the best start for in-depth troubleshooting. We will often ask you to follow these steps when opening a new thread, so doing this ahead of time will be super helpful."
  499. msgstr "%s. Het testen of er een bestaand conflict is, is de beste start voor verdere troubleshooting. We zullen je in veel gevallen vragen deze stappen uit te voeren als je een nieuwe thread aanmaakt, dus als je deze stappen al van te voren uitvoert kunnen we je sneller helpen met het oplossen van je probleem."
  500. #: src/admin-views/tribe-options-help.php:31
  501. msgid "Check our Knowledgebase"
  502. msgstr "Kijk eens in onze Kennisbank"
  503. #: src/admin-views/tribe-options-help.php:31
  504. msgid "%s. All of the common (and not-so-common) answers to questions we see are here. It’s often the fastest path to finding an answer!"
  505. msgstr "%s. Alle veelvoorkomende (en niet-zoveel-voorkomende) antwoorden op vragen die we krijgen kan je hier vinden. Het is vaak de snelste manier om je antwoord te vinden!"
  506. #: src/admin-views/tribe-options-help.php:27
  507. msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
  508. msgstr "De middelen die je hierboven kan vinden helpen met het verhelpen van het grootste deel van de problemen die we zien. Er zijn echter situaties waarbij je extra ondersteuning nodig hebt. Als je ondersteuning nodig hebt bij het gebruiken van onze plug-ins en je wilt dat wij ernaar kijken, voer dan alsjeblieft de volgende stappen uit:"
  509. #: src/admin-views/tribe-options-help.php:26
  510. msgid "Getting More Help"
  511. msgstr "Krijg meer hulp"
  512. #: src/admin-views/tribe-options-help.php:21
  513. msgid "list of available functions"
  514. msgstr "overzicht van beschikbare functies"
  515. #: src/admin-views/tribe-options-help.php:15
  516. msgid "Knowledgebase"
  517. msgstr "Kennisbank"
  518. #: src/admin-views/tribe-options-help.php:15
  519. msgid "Our website’s %s is a great place to find tips and tricks for using and customizing our plugins."
  520. msgstr "De %s op onze website is een geweldige plek op tips en trucs te vinden voor het gebruik en het aanpassen van onze plug-ins."
  521. #: src/admin-views/tribe-options-help.php:14
  522. msgid "Getting Support"
  523. msgstr "Ondersteuning krijgen"
  524. #: src/admin-views/tribe-options-help.php:11
  525. msgid "Thank you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
  526. msgstr ""
  527. #: src/admin-views/tribe-options-general.php:15
  528. msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
  529. msgstr "\"Optimaliseer je evenementoverzichten met %1$sThe Events Calendar%2$s, onze gratis kalenderplug-in. Ben je op zoek naar aanvullende functionaliteiten zoals terugkerende evenementen, evenementen toe laten voegen door gebruikers, geavanceerde ticketverkoop en meer? Kijk dan zeker eens naar onze %3$spremium add-ons%4$s."
  530. #: src/admin-views/tribe-options-general.php:10
  531. msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
  532. msgstr "Bedankt voor het gebruiken van Event Tickets! Iedereen bij Modern Tribe waardeert je ondersteuning en we zijn erg blij om te zien dat je onze plug-ins gebruikt. Kijk ook eens in onze handige %1$sKickstarter voor nieuwe gebruikers%2$s om van start te gaan."
  533. #: src/Tribe/Validate.php:214
  534. msgid "%s must be a positive number or percent."
  535. msgstr "%s moet een positief nummer of een percentage zijn."
  536. #: src/Tribe/PUE/Checker.php:932
  537. msgid "Thanks for setting up a valid key. It will expire on %s"
  538. msgstr "Bedankt voor het instellen van een geldige licentie. Het verloopt op %s"
  539. #: src/Tribe/Admin/Help_Page.php:860
  540. msgid "Visit the Add-on Page"
  541. msgstr "Bezoek de pagina met add-ons"
  542. #: src/Tribe/Admin/Help_Page.php:855
  543. msgid "Plugin Inactive"
  544. msgstr "Plugin inactief"
  545. #: src/Tribe/Admin/Help_Page.php:853
  546. msgid "Plugin Active"
  547. msgstr "Plugin actief"
  548. #: src/Tribe/Admin/Help_Page.php:828
  549. msgid "Rating:"
  550. msgstr "Waardering:"
  551. #: src/Tribe/Admin/Help_Page.php:825
  552. msgid "Active Users:"
  553. msgstr "Actieve gebruikers:"
  554. #: src/Tribe/Admin/Help_Page.php:802
  555. msgid "Install Plugin"
  556. msgstr "Plugin installeren"
  557. #: src/Tribe/Admin/Help_Page.php:802
  558. msgid "Install %s"
  559. msgstr "Installeer %s"
  560. #: src/Tribe/Admin/Help_Page.php:786
  561. msgid "Upgrade Plugin"
  562. msgstr "Plugin upgraden"
  563. #: src/Tribe/Admin/Help_Page.php:778
  564. msgid "Activate Plugin"
  565. msgstr "Activeer plugin"
  566. #: src/Tribe/Admin/Help_Page.php:778
  567. msgid "Activate %s"
  568. msgstr "Activeer %s"
  569. #: src/Tribe/Admin/Help_Page.php:244 src/Tribe/Plugins_API.php:100
  570. msgid "Community Tickets"
  571. msgstr "Community Tickets"
  572. #: src/Tribe/Admin/Help_Page.php:235 src/Tribe/Plugins_API.php:66
  573. msgid "Event Tickets Plus"
  574. msgstr "Event Tickets Plus"
  575. #: src/Tribe/Admin/Help_Page.php:203 src/Tribe/Plugins_API.php:111
  576. msgid "Eventbrite Tickets"
  577. msgstr "Eventbrite Tickets"
  578. #: src/Tribe/Admin/Help_Page.php:170
  579. msgid " and "
  580. msgstr "en "
  581. #: src/Tribe/Admin/Help_Page.php:95
  582. msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
  583. msgstr "Geef beheer van je pagina's een extra boost met sorteerbare filters en kolommen en automatische registratie van metaboxes."
  584. #: src/Tribe/Admin/Help_Page.php:91
  585. msgid "Advanced Post Manager"
  586. msgstr "Advanced Post Manager"
  587. #: src/Tribe/Admin/Help_Page.php:79
  588. msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
  589. msgstr "Events Tickets is een zorgvuldig gemaakte en uitbreidbare plug-in die je in staat stelt om makkelijk tickets te verkopen voor je evenementen."
  590. #: src/Tribe/Admin/Help_Page.php:75 src/Tribe/Plugins_API.php:57
  591. msgid "Event Tickets"
  592. msgstr "Event Tickets"
  593. #: src/Tribe/Admin/Help_Page.php:63
  594. msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
  595. msgstr "Events Tickets is een zorgvuldig gemaakte en uitbreidbare plug-in die je in staat stelt om makkelijk je evenementen te delen."
  596. #. Author URI of the plugin/theme
  597. msgid "http://m.tri.be/1x"
  598. msgstr "http://m.tri.be/1x"
  599. #. Author of the plugin/theme
  600. msgid "Modern Tribe, Inc."
  601. msgstr "Modern Tribe, Inc."
  602. #: src/Tribe/Settings.php:371
  603. msgid "Save Changes"
  604. msgstr "Wijzigingen opslaan"
  605. #: src/admin-views/tribe-options-licenses.php:38
  606. msgid "%1$s Using our plugins in a multisite network? %2$s Please note that your license key will be applied to the entire network, not just this site."
  607. msgstr ""
  608. "%1$s Gebruik je onze plugin in een multisite network? %2$s\n"
  609. "Let op dat je licentiecode wordt toegepast op het hele netwerk, niet alleen deze site."
  610. #: src/Tribe/Support.php:199
  611. msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
  612. msgstr "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
  613. #: src/Tribe/PUE/Checker.php:901
  614. msgid "unknown date"
  615. msgstr "onbekende datum"
  616. #: src/Tribe/Admin/Activation_Page.php:92
  617. msgid "Return to WordPress Updates"
  618. msgstr "Keer terug naar Wordpress updates pagina"
  619. #: src/Tribe/Admin/Activation_Page.php:92
  620. msgid "Go to WordPress Updates page"
  621. msgstr "Ga naar Wordpress updates pagina"
  622. #: src/Tribe/Admin/Activation_Page.php:84
  623. msgid "Return to Plugins page"
  624. msgstr "Keer terug naar pluginpagina"
  625. #: src/Tribe/Admin/Activation_Page.php:84
  626. msgid "Go to plugins page"
  627. msgstr "Ga naar pluginpagina"
  628. #: src/Tribe/Cost_Utils.php:114
  629. msgid "Free"
  630. msgstr "Gratis"
  631. #: src/admin-views/tribe-options-network.php:27
  632. msgid "Hide the following settings tabs on every site:"
  633. msgstr "Verberg de volgende instellingentab op iedere site:"
  634. #: src/admin-views/tribe-options-network.php:19
  635. msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
  636. msgstr "Hier kunnen alle globale netwerkinstellingen voor Modern Tribe's The Events Calendar worden aangepast."
  637. #: src/admin-views/tribe-options-network.php:15
  638. msgid "Network Settings"
  639. msgstr "Netwerkinstellingen"
  640. #: src/admin-views/tribe-options-help.php:74
  641. msgid "News and Tutorials"
  642. msgstr "Nieuws en tutorials"
  643. #: src/Tribe/Admin/Help_Page.php:847
  644. msgid "Premium Add-Ons"
  645. msgstr "Premium Add-Ons"
  646. #: src/Tribe/Admin/Help_Page.php:823
  647. msgid "WordPress "
  648. msgstr "Wordpress "
  649. #: src/Tribe/Admin/Help_Page.php:822 src/admin-views/app-shop.php:77
  650. msgid "Requires:"
  651. msgstr "Benodigd:"
  652. #: src/Tribe/Admin/Help_Page.php:819
  653. msgid "Latest Version:"
  654. msgstr "Laatste versie:"
  655. #: src/admin-views/tribe-options-help.php:80
  656. msgid "More..."
  657. msgstr "Meer..."
  658. #: src/Tribe/Admin/Help_Page.php:194 src/Tribe/Plugins_API.php:43
  659. msgid "Events Calendar PRO"
  660. msgstr "Events Calendar PRO"
  661. #: src/Tribe/Admin/Help_Page.php:413 src/Tribe/Admin/Help_Page.php:788
  662. msgid "You are up to date!"
  663. msgstr "Je hebt de nieuwste versie!"
  664. #: src/Tribe/Admin/Help_Page.php:413
  665. msgid "You need to upgrade!"
  666. msgstr "Je moet upgraden!"
  667. #: src/Tribe/Admin/Help_Page.php:405
  668. msgctxt "not available"
  669. msgid "n/a"
  670. msgstr "niet beschikbaar"
  671. #: src/admin-views/tribe-options-general.php:59
  672. msgid "Debug Bar Plugin"
  673. msgstr "Debug Bar Plugin"
  674. #: src/admin-views/tribe-options-general.php:59
  675. msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
  676. msgstr "Vink deze optie aan om debuggegevens te loggen. Dit logt standaard naar je servers PHP error log. Als je de logberichten in je browser wilt bekijken stellen we voor dat je %s installeert en de \"Tribe\"-tab in de debuguitvoer bekijkt."
  677. #: src/admin-views/tribe-options-general.php:53
  678. msgid "Debug mode"
  679. msgstr "Debugmodus"
  680. #: src/admin-views/tribe-options-general.php:35
  681. msgid "Show The Events Calendar link"
  682. msgstr "Laat de 'The Events Calender Link' zien"
  683. #: src/admin-views/tribe-options-general.php:30
  684. msgid "See an example of the link"
  685. msgstr "Bekijk een voorbeeld van deze link"
  686. #: src/admin-views/tribe-options-general.php:30
  687. msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
  688. msgstr "Denk je \"Wow, deze plugin is verbazingwekkend! Ik moet Modern Tribe bedanken voor hun harde werk\"? De grootste dank waar we om kunnen vragen is erkenning. Voeg een kleine tekstlink toe aan je kalender die verwijst naar het 'The Events Calendar'-project."
  689. #: src/admin-views/tribe-options-general.php:25
  690. msgid "We hope our plugin is helping you out."
  691. msgstr "We hopen dat onze plugin je helpt."
  692. #: src/admin-views/tribe-options-general.php:20
  693. msgid "Check out the available add-ons"
  694. msgstr "Bekijk de beschikbare add-ons"
  695. #: src/admin-views/tribe-options-general.php:20
  696. msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
  697. msgstr "Op zoek naar extra functionaliteit waaronder terugkerende evenementen, gemeenschappelijke evenementen, ticketverkoop en meer?"
  698. #: src/admin-views/tribe-options-display.php:37
  699. msgid "Select the date format to use in datepickers"
  700. msgstr "Selecteer de datum opmaak om te gebruiken in de datumkiezers"
  701. #: src/admin-views/tribe-options-display.php:36
  702. msgid "Datepicker Date Format"
  703. msgstr "Datumkiezer datum opmaak"
  704. #: src/admin-views/tribe-options-display.php:22
  705. msgid "Date Format Settings"
  706. msgstr "Datum opmaak instellingen"
  707. #: src/admin-views/event-log.php:65
  708. msgid "View"
  709. msgstr "Bekijk"
  710. #: src/Tribe/Admin/Help_Page.php:211 src/Tribe/Plugins_API.php:90
  711. msgid "Community Events"
  712. msgstr "Community Events"
  713. #: src/Tribe/Languages/Locations.php:374
  714. msgid "Wyoming"
  715. msgstr "Wyoming"
  716. #: src/Tribe/Languages/Locations.php:373
  717. msgid "Wisconsin"
  718. msgstr "Wisconsin"
  719. #: src/Tribe/Languages/Locations.php:372
  720. msgid "West Virginia"
  721. msgstr "West Virginia"
  722. #: src/Tribe/Languages/Locations.php:371
  723. msgid "Washington"
  724. msgstr "Washington"
  725. #: src/Tribe/Languages/Locations.php:370
  726. msgid "Virginia"
  727. msgstr "Virginia"
  728. #: src/Tribe/Languages/Locations.php:369
  729. msgid "Vermont"
  730. msgstr "Vermont"
  731. #: src/Tribe/Languages/Locations.php:368
  732. msgid "Utah"
  733. msgstr "Utah"
  734. #: src/Tribe/Languages/Locations.php:367
  735. msgid "Texas"
  736. msgstr "Texas"
  737. #: src/Tribe/Languages/Locations.php:366
  738. msgid "Tennessee"
  739. msgstr "Tennessee"
  740. #: src/Tribe/Languages/Locations.php:365
  741. msgid "South Dakota"
  742. msgstr "South Dakota"
  743. #: src/Tribe/Languages/Locations.php:364
  744. msgid "South Carolina"
  745. msgstr "South Carolina"
  746. #: src/Tribe/Languages/Locations.php:363
  747. msgid "Rhode Island"
  748. msgstr "Rhode Island"
  749. #: src/Tribe/Languages/Locations.php:362
  750. msgid "Pennsylvania"
  751. msgstr "Pennsylvania"
  752. #: src/Tribe/Languages/Locations.php:361
  753. msgid "Oregon"
  754. msgstr "Oregon"
  755. #: src/Tribe/Languages/Locations.php:360
  756. msgid "Oklahoma"
  757. msgstr "Oklahoma"
  758. #: src/Tribe/Languages/Locations.php:359
  759. msgid "Ohio"
  760. msgstr "Ohia"
  761. #: src/Tribe/Languages/Locations.php:358
  762. msgid "North Dakota"
  763. msgstr "North Dakota"
  764. #: src/Tribe/Languages/Locations.php:357
  765. msgid "North Carolina"
  766. msgstr "North Carolina"
  767. #: src/Tribe/Languages/Locations.php:356
  768. msgid "New York"
  769. msgstr "New York"
  770. #: src/Tribe/Languages/Locations.php:355
  771. msgid "New Mexico"
  772. msgstr "New Mexico"
  773. #: src/Tribe/Languages/Locations.php:354
  774. msgid "New Jersey"
  775. msgstr "New Jersey"
  776. #: src/Tribe/Languages/Locations.php:353
  777. msgid "New Hampshire"
  778. msgstr "New Hampshire"
  779. #: src/Tribe/Languages/Locations.php:352
  780. msgid "Nevada"
  781. msgstr "Nevada"
  782. #: src/Tribe/Languages/Locations.php:351
  783. msgid "Nebraska"
  784. msgstr "Nebraska"
  785. #: src/Tribe/Languages/Locations.php:350
  786. msgid "Montana"
  787. msgstr "Montana"
  788. #: src/Tribe/Languages/Locations.php:349
  789. msgid "Missouri"
  790. msgstr "Missouri"
  791. #: src/Tribe/Languages/Locations.php:348
  792. msgid "Mississippi"
  793. msgstr "Mississippi"
  794. #: src/Tribe/Languages/Locations.php:347
  795. msgid "Minnesota"
  796. msgstr "Minnesota"
  797. #: src/Tribe/Languages/Locations.php:346
  798. msgid "Michigan"
  799. msgstr "Michigan"
  800. #: src/Tribe/Languages/Locations.php:345
  801. msgid "Massachusetts"
  802. msgstr "Massachusetts"
  803. #: src/Tribe/Languages/Locations.php:344
  804. msgid "Maryland"
  805. msgstr "Maryland"
  806. #: src/Tribe/Languages/Locations.php:343
  807. msgid "Maine"
  808. msgstr "Maine"
  809. #: src/Tribe/Languages/Locations.php:342
  810. msgid "Louisiana"
  811. msgstr "Louisiana"
  812. #: src/Tribe/Languages/Locations.php:341
  813. msgid "Kentucky"
  814. msgstr "Kentucky"
  815. #: src/Tribe/Languages/Locations.php:340
  816. msgid "Kansas"
  817. msgstr "Kansas"
  818. #: src/Tribe/Languages/Locations.php:339
  819. msgid "Iowa"
  820. msgstr "Iowa"
  821. #: src/Tribe/Languages/Locations.php:338
  822. msgid "Indiana"
  823. msgstr "Indiana"
  824. #: src/Tribe/Languages/Locations.php:337
  825. msgid "Illinois"
  826. msgstr "Illinois"
  827. #: src/Tribe/Languages/Locations.php:336
  828. msgid "Idaho"
  829. msgstr "Idaho"
  830. #: src/Tribe/Languages/Locations.php:335
  831. msgid "Hawaii"
  832. msgstr "Hawaï"
  833. #: src/Tribe/Languages/Locations.php:333
  834. msgid "Florida"
  835. msgstr "Florida"
  836. #: src/Tribe/Languages/Locations.php:332
  837. msgid "District of Columbia"
  838. msgstr "District of Columbia"
  839. #: src/Tribe/Languages/Locations.php:331
  840. msgid "Delaware"
  841. msgstr "Delaware"
  842. #: src/Tribe/Languages/Locations.php:330
  843. msgid "Connecticut"
  844. msgstr "Connecticut"
  845. #: src/Tribe/Languages/Locations.php:329
  846. msgid "Colorado"
  847. msgstr "Colorado"
  848. #: src/Tribe/Languages/Locations.php:328
  849. msgid "California"
  850. msgstr "Californië"
  851. #: src/Tribe/Languages/Locations.php:327
  852. msgid "Arkansas"
  853. msgstr "Arkansas"
  854. #: src/Tribe/Languages/Locations.php:326
  855. msgid "Arizona"
  856. msgstr "Arizona"
  857. #: src/Tribe/Languages/Locations.php:325
  858. msgid "Alaska"
  859. msgstr "Alaska"
  860. #: src/Tribe/Languages/Locations.php:324
  861. msgid "Alabama"
  862. msgstr "Alabama"
  863. #: src/Tribe/Languages/Locations.php:297
  864. msgid "Zimbabwe"
  865. msgstr "Zimbabwe"
  866. #: src/Tribe/Languages/Locations.php:296
  867. msgid "Zambia"
  868. msgstr "Zambia"
  869. #: src/Tribe/Languages/Locations.php:295
  870. msgid "Yemen"
  871. msgstr "Jemen"
  872. #: src/Tribe/Languages/Locations.php:294
  873. msgid "Western Sahara"
  874. msgstr "Westelijke Sahara"
  875. #: src/Tribe/Languages/Locations.php:293
  876. msgid "Wallis and Futuna Islands"
  877. msgstr ""
  878. #: src/Tribe/Languages/Locations.php:292
  879. msgid "Virgin Islands (U.S.)"
  880. msgstr "Amerikaanse Maagdeneilanden"
  881. #: src/Tribe/Languages/Locations.php:291
  882. msgid "Virgin Islands (British)"
  883. msgstr "Britse Maagdeneilanden"
  884. #: src/Tribe/Languages/Locations.php:290
  885. msgid "Viet Nam"
  886. msgstr "Vietnam"
  887. #: src/Tribe/Languages/Locations.php:289
  888. msgid "Venezuela"
  889. msgstr "Venezuela"
  890. #: src/Tribe/Languages/Locations.php:288
  891. msgid "Vanuatu"
  892. msgstr "Vanuatu"
  893. #: src/Tribe/Languages/Locations.php:287
  894. msgid "Uzbekistan"
  895. msgstr "Oezbekistan"
  896. #: src/Tribe/Languages/Locations.php:286
  897. msgid "Uruguay"
  898. msgstr "Uruguay"
  899. #: src/Tribe/Languages/Locations.php:285
  900. msgid "United States Minor Outlying Islands"
  901. msgstr "Kleine afgelegen eilanden van de Verenigde Staten"
  902. #: src/Tribe/Languages/Locations.php:284
  903. msgid "United Kingdom"
  904. msgstr "Verenigd Koninkrijk"
  905. #: src/Tribe/Languages/Locations.php:283
  906. msgid "United Arab Emirates"
  907. msgstr "Verenigde Arabische Emiraten"
  908. #: src/Tribe/Languages/Locations.php:282
  909. msgid "Ukraine"
  910. msgstr "Oekraïne"
  911. #: src/Tribe/Languages/Locations.php:281
  912. msgid "Uganda"
  913. msgstr "Oeganda"
  914. #: src/Tribe/Languages/Locations.php:280
  915. msgid "Tuvalu"
  916. msgstr "Tuvalu"
  917. #: src/Tribe/Languages/Locations.php:279
  918. msgid "Turks and Caicos Islands"
  919. msgstr ""
  920. #: src/Tribe/Languages/Locations.php:278
  921. msgid "Turkmenistan"
  922. msgstr "Turkmenistan"
  923. #: src/Tribe/Languages/Locations.php:277
  924. msgid "Turkey"
  925. msgstr "Turkije"
  926. #: src/Tribe/Languages/Locations.php:276
  927. msgid "Tunisia"
  928. msgstr "Tunesië"
  929. #: src/Tribe/Languages/Locations.php:275
  930. msgid "Trinidad and Tobago"
  931. msgstr ""
  932. #: src/Tribe/Languages/Locations.php:274
  933. msgid "Tonga"
  934. msgstr "Tonga"
  935. #: src/Tribe/Languages/Locations.php:273
  936. msgid "Tokelau"
  937. msgstr "Tokelau"
  938. #: src/Tribe/Languages/Locations.php:272
  939. msgid "Togo"
  940. msgstr "Togo"
  941. #: src/Tribe/Languages/Locations.php:271
  942. msgid "Thailand"
  943. msgstr "Thailand"
  944. #: src/Tribe/Languages/Locations.php:270
  945. msgid "Tanzania, United Republic of"
  946. msgstr ""
  947. #: src/Tribe/Languages/Locations.php:269
  948. msgid "Tajikistan"
  949. msgstr "Tadzjikistan"
  950. #: src/Tribe/Languages/Locations.php:268
  951. msgid "Taiwan"
  952. msgstr "Taiwan"
  953. #: src/Tribe/Languages/Locations.php:267
  954. msgid "Syrian Arab Republic"
  955. msgstr "Syrië"
  956. #: src/Tribe/Languages/Locations.php:266
  957. msgid "Switzerland"
  958. msgstr "Zwitserland"
  959. #: src/Tribe/Languages/Locations.php:265
  960. msgid "Sweden"
  961. msgstr "Zweden"
  962. #: src/Tribe/Languages/Locations.php:264
  963. msgid "Swaziland"
  964. msgstr "Swaziland"
  965. #: src/Tribe/Languages/Locations.php:263
  966. msgid "Svalbard and Jan Mayen Islands"
  967. msgstr ""
  968. #: src/Tribe/Languages/Locations.php:262
  969. msgid "Suriname"
  970. msgstr "Suriname"
  971. #: src/Tribe/Languages/Locations.php:261
  972. msgid "Sudan"
  973. msgstr "Soedan"
  974. #: src/Tribe/Languages/Locations.php:241
  975. msgid "Saint Pierre and Miquelon"
  976. msgstr ""
  977. #: src/Tribe/Languages/Locations.php:260
  978. msgid "Sri Lanka"
  979. msgstr "Sri Lanka"
  980. #: src/Tribe/Languages/Locations.php:259
  981. msgid "Spain"
  982. msgstr "Spanje"
  983. #: src/Tribe/Languages/Locations.php:258
  984. msgid "South Georgia, South Sandwich Islands"
  985. msgstr "Zuid-Georgia en de Zuidelijke Sandwicheilanden"
  986. #: src/Tribe/Languages/Locations.php:257
  987. msgid "South Africa"
  988. msgstr "Zuid-Afrika"
  989. #: src/Tribe/Languages/Locations.php:256
  990. msgid "Somalia"
  991. msgstr "Somalië"
  992. #: src/Tribe/Languages/Locations.php:255
  993. msgid "Solomon Islands"
  994. msgstr "Salomoneilanden"
  995. #: src/Tribe/Languages/Locations.php:254
  996. msgid "Slovenia"
  997. msgstr "Slovenië"
  998. #: src/Tribe/Languages/Locations.php:253
  999. msgid "Slovakia (Slovak Republic)"
  1000. msgstr "Slowakije"
  1001. #: src/Tribe/Languages/Locations.php:251
  1002. msgid "Singapore"
  1003. msgstr "Singapore"
  1004. #: src/Tribe/Languages/Locations.php:250
  1005. msgid "Sierra Leone"
  1006. msgstr "Sierra Leone"
  1007. #: src/Tribe/Languages/Locations.php:249
  1008. msgid "Seychelles"
  1009. msgstr "Seychellen"
  1010. #: src/Tribe/Languages/Locations.php:248
  1011. msgid "Serbia"
  1012. msgstr "Servië"
  1013. #: src/Tribe/Languages/Locations.php:247
  1014. msgid "Senegal"
  1015. msgstr "Senegal"
  1016. #: src/Tribe/Languages/Locations.php:246
  1017. msgid "Saudi Arabia"
  1018. msgstr "Saoedi-Arabië"
  1019. #: src/Tribe/Languages/Locations.php:244
  1020. msgid "San Marino"
  1021. msgstr "San Marino"
  1022. #: src/Tribe/Languages/Locations.php:243
  1023. msgid "Samoa"
  1024. msgstr "Samoa"
  1025. #: src/Tribe/Languages/Locations.php:242
  1026. msgid "Saint Vincent and The Grenadines"
  1027. msgstr ""
  1028. #: src/Tribe/Languages/Locations.php:240
  1029. msgid "Saint Lucia"
  1030. msgstr "Saint Lucia"
  1031. #: src/Tribe/Languages/Locations.php:239
  1032. msgid "Saint Kitts and Nevis"
  1033. msgstr ""
  1034. #: src/Tribe/Languages/Locations.php:236
  1035. msgid "Rwanda"
  1036. msgstr "Rwanda"
  1037. #: src/Tribe/Languages/Locations.php:235
  1038. msgid "Russian Federation"
  1039. msgstr "Rusland"
  1040. #: src/Tribe/Languages/Locations.php:234
  1041. msgid "Romania"
  1042. msgstr "Roemenië"
  1043. #: src/Tribe/Languages/Locations.php:233
  1044. msgid "Reunion"
  1045. msgstr "Réunion"
  1046. #: src/Tribe/Languages/Locations.php:232
  1047. msgid "Qatar"
  1048. msgstr "Qatar"
  1049. #: src/Tribe/Languages/Locations.php:231
  1050. msgid "Puerto Rico"
  1051. msgstr "Puerto Rico"
  1052. #: src/Tribe/Languages/Locations.php:230
  1053. msgid "Portugal"
  1054. msgstr "Portugal"
  1055. #: src/Tribe/Languages/Locations.php:229
  1056. msgid "Poland"
  1057. msgstr "Polen"
  1058. #: src/Tribe/Languages/Locations.php:228
  1059. msgid "Pitcairn"
  1060. msgstr "Pitcairneilanden"
  1061. #: src/Tribe/Languages/Locations.php:227
  1062. msgid "Philippines"
  1063. msgstr "Filipijnen"
  1064. #: src/Tribe/Languages/Locations.php:226
  1065. msgid "Peru"
  1066. msgstr "Peru"
  1067. #: src/Tribe/Languages/Locations.php:225
  1068. msgid "Paraguay"
  1069. msgstr "Paraguay"
  1070. #: src/Tribe/Languages/Locations.php:224
  1071. msgid "Papua New Guinea"
  1072. msgstr "Papoea-Nieuw-Guinea"
  1073. #: src/Tribe/Languages/Locations.php:223
  1074. msgid "Panama"
  1075. msgstr "Panama"
  1076. #: src/Tribe/Languages/Locations.php:222
  1077. msgid "Palau"
  1078. msgstr "Palau"
  1079. #: src/Tribe/Languages/Locations.php:221
  1080. msgid "Pakistan"
  1081. msgstr "Pakistan"
  1082. #: src/Tribe/Languages/Locations.php:220
  1083. msgid "Oman"
  1084. msgstr "Oman"
  1085. #: src/Tribe/Languages/Locations.php:219
  1086. msgid "Norway"
  1087. msgstr "Noorwegen"
  1088. #: src/Tribe/Languages/Locations.php:218
  1089. msgid "Northern Mariana Islands"
  1090. msgstr "Noordelijke Marianen"
  1091. #: src/Tribe/Languages/Locations.php:217
  1092. msgid "Norfolk Island"
  1093. msgstr "Norfolk"
  1094. #: src/Tribe/Languages/Locations.php:216
  1095. msgid "Niue"
  1096. msgstr "Niue"
  1097. #: src/Tribe/Languages/Locations.php:215
  1098. msgid "Nigeria"
  1099. msgstr "Nigeria"
  1100. #: src/Tribe/Languages/Locations.php:214
  1101. msgid "Niger"
  1102. msgstr "Niger"
  1103. #: src/Tribe/Languages/Locations.php:213
  1104. msgid "Nicaragua"
  1105. msgstr "Nicaragua"
  1106. #: src/Tribe/Languages/Locations.php:212
  1107. msgid "New Zealand"
  1108. msgstr "Nieuw-Zeeland"
  1109. #: src/Tribe/Languages/Locations.php:211
  1110. msgid "New Caledonia"
  1111. msgstr "Nieuw-Caledonië"
  1112. #: src/Tribe/Languages/Locations.php:210
  1113. msgid "Netherlands"
  1114. msgstr "Nederland"
  1115. #: src/Tribe/Languages/Locations.php:209
  1116. msgid "Nepal"
  1117. msgstr "Nepal"
  1118. #: src/Tribe/Languages/Locations.php:208
  1119. msgid "Nauru"
  1120. msgstr "Nauru"
  1121. #: src/Tribe/Languages/Locations.php:207
  1122. msgid "Namibia"
  1123. msgstr "Namibië"
  1124. #: src/Tribe/Languages/Locations.php:206
  1125. msgid "Myanmar"
  1126. msgstr "Myanmar"
  1127. #: src/Tribe/Languages/Locations.php:205
  1128. msgid "Mozambique"
  1129. msgstr "Mozambique"
  1130. #: src/Tribe/Languages/Locations.php:204
  1131. msgid "Morocco"
  1132. msgstr "Marokko"
  1133. #: src/Tribe/Languages/Locations.php:203
  1134. msgid "Montserrat"
  1135. msgstr "Montserrat"
  1136. #: src/Tribe/Languages/Locations.php:202
  1137. msgid "Montenegro"
  1138. msgstr "Montenegro"
  1139. #: src/Tribe/Languages/Locations.php:201
  1140. msgid "Mongolia"
  1141. msgstr "Mongolië"
  1142. #: src/Tribe/Languages/Locations.php:200
  1143. msgid "Monaco"
  1144. msgstr "Monaco"
  1145. #: src/Tribe/Languages/Locations.php:199
  1146. msgid "Moldova, Republic of"
  1147. msgstr ""
  1148. #: src/Tribe/Languages/Locations.php:198
  1149. msgid "Micronesia, Federated States of"
  1150. msgstr ""
  1151. #: src/Tribe/Languages/Locations.php:197
  1152. msgid "Mexico"
  1153. msgstr "Mexico"
  1154. #: src/Tribe/Languages/Locations.php:196
  1155. msgid "Mayotte"
  1156. msgstr "Mayotte"
  1157. #: src/Tribe/Languages/Locations.php:195
  1158. msgid "Mauritius"
  1159. msgstr "Mauritius"
  1160. #: src/Tribe/Languages/Locations.php:194
  1161. msgid "Mauritania"
  1162. msgstr "Mauritanië"
  1163. #: src/Tribe/Languages/Locations.php:193
  1164. msgid "Martinique"
  1165. msgstr "Martinique"
  1166. #: src/Tribe/Languages/Locations.php:192
  1167. msgid "Marshall Islands"
  1168. msgstr "Marshalleilanden"
  1169. #: src/Tribe/Languages/Locations.php:191
  1170. msgid "Malta"
  1171. msgstr "Malta"
  1172. #: src/Tribe/Languages/Locations.php:190
  1173. msgid "Mali"
  1174. msgstr "Mali"
  1175. #: src/Tribe/Languages/Locations.php:189
  1176. msgid "Maldives"
  1177. msgstr "Maldiven"
  1178. #: src/Tribe/Languages/Locations.php:188
  1179. msgid "Malaysia"
  1180. msgstr "Maleisië"
  1181. #: src/Tribe/Languages/Locations.php:187
  1182. msgid "Malawi"
  1183. msgstr "Malawi"
  1184. #: src/Tribe/Languages/Locations.php:186
  1185. msgid "Madagascar"
  1186. msgstr "Madagaskar"
  1187. #: src/Tribe/Languages/Locations.php:185
  1188. msgid "Macedonia"
  1189. msgstr "Macedonië"
  1190. #: src/Tribe/Languages/Locations.php:184
  1191. msgid "Macau"
  1192. msgstr "Macau"
  1193. #: src/Tribe/Languages/Locations.php:183
  1194. msgid "Luxembourg"
  1195. msgstr "Luxemburg"
  1196. #: src/Tribe/Languages/Locations.php:182
  1197. msgid "Lithuania"
  1198. msgstr "Litouwen"
  1199. #: src/Tribe/Languages/Locations.php:181
  1200. msgid "Liechtenstein"
  1201. msgstr "Liechtenstein"
  1202. #: src/Tribe/Languages/Locations.php:180
  1203. msgid "Libya"
  1204. msgstr "Libië"
  1205. #: src/Tribe/Languages/Locations.php:179
  1206. msgid "Liberia"
  1207. msgstr "Liberia"
  1208. #: src/Tribe/Languages/Locations.php:178
  1209. msgid "Lesotho"
  1210. msgstr "Lesotho"
  1211. #: src/Tribe/Languages/Locations.php:177
  1212. msgid "Lebanon"
  1213. msgstr "Libanon"
  1214. #: src/Tribe/Languages/Locations.php:176
  1215. msgid "Latvia"
  1216. msgstr "Letland"
  1217. #: src/Tribe/Languages/Locations.php:175
  1218. msgid "Lao People's Democratic Republic"
  1219. msgstr "Laos"
  1220. #: src/Tribe/Languages/Locations.php:174
  1221. msgid "Kyrgyzstan"
  1222. msgstr "Kirgizië"
  1223. #: src/Tribe/Languages/Locations.php:173
  1224. msgid "Kuwait"
  1225. msgstr "Koeweit"
  1226. #: src/Tribe/Languages/Locations.php:172
  1227. msgid "Korea, Republic of"
  1228. msgstr ""
  1229. #: src/Tribe/Languages/Locations.php:171
  1230. msgid "Korea, Democratic People's Republic of"
  1231. msgstr ""
  1232. #: src/Tribe/Languages/Locations.php:170
  1233. msgid "Kiribati"
  1234. msgstr "Kiribari"
  1235. #: src/Tribe/Languages/Locations.php:169
  1236. msgid "Kenya"
  1237. msgstr "Kenia"
  1238. #: src/Tribe/Languages/Locations.php:168
  1239. msgid "Kazakhstan"
  1240. msgstr "Kazachstan"
  1241. #: src/Tribe/Languages/Locations.php:167
  1242. msgid "Jordan"
  1243. msgstr "Jordanië"
  1244. #: src/Tribe/Languages/Locations.php:166
  1245. msgid "Japan"
  1246. msgstr "Japan"
  1247. #: src/Tribe/Languages/Locations.php:165
  1248. msgid "Jamaica"
  1249. msgstr "Jamaica"
  1250. #: src/Tribe/Languages/Locations.php:164
  1251. msgid "Italy"
  1252. msgstr "Italië"
  1253. #: src/Tribe/Languages/Locations.php:163
  1254. msgid "Israel"
  1255. msgstr "Israël"
  1256. #: src/Tribe/Languages/Locations.php:162
  1257. msgid "Ireland"
  1258. msgstr "Ierland"
  1259. #: src/Tribe/Languages/Locations.php:161
  1260. msgid "Iraq"
  1261. msgstr "Irak"
  1262. #: src/Tribe/Languages/Locations.php:160
  1263. msgid "Iran, Islamic Republic of"
  1264. msgstr ""
  1265. #: src/Tribe/Languages/Locations.php:159
  1266. msgid "Indonesia"
  1267. msgstr "Indonesië"
  1268. #: src/Tribe/Languages/Locations.php:158
  1269. msgid "India"
  1270. msgstr "India"
  1271. #: src/Tribe/Languages/Locations.php:157
  1272. msgid "Iceland"
  1273. msgstr "IJsland"
  1274. #: src/Tribe/Languages/Locations.php:156
  1275. msgid "Hungary"
  1276. msgstr "Hongarije"
  1277. #: src/Tribe/Languages/Locations.php:155
  1278. msgid "Hong Kong"
  1279. msgstr "Hongkong"
  1280. #: src/Tribe/Languages/Locations.php:154
  1281. msgid "Honduras"
  1282. msgstr "Honduras"
  1283. #: src/Tribe/Languages/Locations.php:153
  1284. msgid "Holy See (Vatican City State)"
  1285. msgstr "Vaticaanstad"
  1286. #: src/Tribe/Languages/Locations.php:152
  1287. msgid "Heard and McDonald Islands"
  1288. msgstr ""
  1289. #: src/Tribe/Languages/Locations.php:151
  1290. msgid "Haiti"
  1291. msgstr "Haïti"
  1292. #: src/Tribe/Languages/Locations.php:150
  1293. msgid "Guyana"
  1294. msgstr "Guyana"
  1295. #: src/Tribe/Languages/Locations.php:149
  1296. msgid "Guinea-Bissau"
  1297. msgstr "Guinee-Bissau"
  1298. #: src/Tribe/Languages/Locations.php:148
  1299. msgid "Guinea"
  1300. msgstr "Guinee"
  1301. #: src/Tribe/Languages/Locations.php:147
  1302. msgid "Guatemala"
  1303. msgstr "Guatemala"
  1304. #: src/Tribe/Languages/Locations.php:146
  1305. msgid "Guam"
  1306. msgstr "Guam"
  1307. #: src/Tribe/Languages/Locations.php:145
  1308. msgid "Guadeloupe"
  1309. msgstr "Guadeloupe"
  1310. #: src/Tribe/Languages/Locations.php:144
  1311. msgid "Grenada"
  1312. msgstr "Grenada"
  1313. #: src/Tribe/Languages/Locations.php:143
  1314. msgid "Greenland"
  1315. msgstr "Groenland"
  1316. #: src/Tribe/Languages/Locations.php:142
  1317. msgid "Greece"
  1318. msgstr "Griekenland"
  1319. #: src/Tribe/Languages/Locations.php:141
  1320. msgid "Gibraltar"
  1321. msgstr "Gibraltar"
  1322. #: src/Tribe/Languages/Locations.php:140
  1323. msgid "Ghana"
  1324. msgstr "Ghana"
  1325. #: src/Tribe/Languages/Locations.php:139
  1326. msgid "Germany"
  1327. msgstr "Duitsland"
  1328. #: src/Tribe/Languages/Locations.php:138 src/Tribe/Languages/Locations.php:334
  1329. msgid "Georgia"
  1330. msgstr "Georgië"
  1331. #: src/Tribe/Languages/Locations.php:137
  1332. msgid "Gambia"
  1333. msgstr "Gambia"
  1334. #: src/Tribe/Languages/Locations.php:136
  1335. msgid "Gabon"
  1336. msgstr "Gabon"
  1337. #: src/Tribe/Languages/Locations.php:135
  1338. msgid "French Southern Territories"
  1339. msgstr "Franse Zuidelijke Gebieden"
  1340. #: src/Tribe/Languages/Locations.php:134
  1341. msgid "French Polynesia"
  1342. msgstr "Frans-Polynesië"
  1343. #: src/Tribe/Languages/Locations.php:133
  1344. msgid "French Guiana"
  1345. msgstr "Frans-Guyana"
  1346. #: src/Tribe/Languages/Locations.php:132
  1347. msgid "France"
  1348. msgstr "Frankrijk"
  1349. #: src/Tribe/Languages/Locations.php:131
  1350. msgid "Finland"
  1351. msgstr "Finland"
  1352. #: src/Tribe/Languages/Locations.php:130
  1353. msgid "Fiji"
  1354. msgstr "Fiji"
  1355. #: src/Tribe/Languages/Locations.php:129
  1356. msgid "Faroe Islands"
  1357. msgstr "Faeröer"
  1358. #: src/Tribe/Languages/Locations.php:128
  1359. msgid "Falkland Islands (Malvinas)"
  1360. msgstr "Falklandeilanden"
  1361. #: src/Tribe/Languages/Locations.php:127
  1362. msgid "Ethiopia"
  1363. msgstr "Ethopië"
  1364. #: src/Tribe/Languages/Locations.php:126
  1365. msgid "Estonia"
  1366. msgstr "Estland"
  1367. #: src/Tribe/Languages/Locations.php:125
  1368. msgid "Eritrea"
  1369. msgstr "Eritrea"
  1370. #: src/Tribe/Languages/Locations.php:124
  1371. msgid "Equatorial Guinea"
  1372. msgstr "Equatoriaal-Guinea"
  1373. #: src/Tribe/Languages/Locations.php:123
  1374. msgid "El Salvador"
  1375. msgstr "El Salvador"
  1376. #: src/Tribe/Languages/Locations.php:122
  1377. msgid "Egypt"
  1378. msgstr "Egypte"
  1379. #: src/Tribe/Languages/Locations.php:121
  1380. msgid "Ecuador"
  1381. msgstr "Ecuador"
  1382. #: src/Tribe/Languages/Locations.php:120
  1383. msgid "East Timor"
  1384. msgstr "Oost-Timor"
  1385. #: src/Tribe/Languages/Locations.php:119
  1386. msgid "Dominican Republic"
  1387. msgstr "Dominicaanse Republiek"
  1388. #: src/Tribe/Languages/Locations.php:118
  1389. msgid "Dominica"
  1390. msgstr "Dominica"
  1391. #: src/Tribe/Languages/Locations.php:117
  1392. msgid "Djibouti"
  1393. msgstr "Djibouti"
  1394. #: src/Tribe/Languages/Locations.php:116
  1395. msgid "Denmark"
  1396. msgstr "Denemarken"
  1397. #: src/Tribe/Languages/Locations.php:115
  1398. msgid "Czech Republic"
  1399. msgstr "Tsjechië"
  1400. #: src/Tribe/Languages/Locations.php:114
  1401. msgid "Cyprus"
  1402. msgstr "Cyprus"
  1403. #: src/Tribe/Languages/Locations.php:112
  1404. msgid "Cuba"
  1405. msgstr "Cuba"
  1406. #: src/Tribe/Languages/Locations.php:111
  1407. msgid "Croatia (Local Name: Hrvatska)"
  1408. msgstr "Kroatië"
  1409. #: src/Tribe/Languages/Locations.php:109
  1410. msgid "Costa Rica"
  1411. msgstr "Costa Rica"
  1412. #: src/Tribe/Languages/Locations.php:108
  1413. msgid "Cook Islands"
  1414. msgstr "Cookeilanden"
  1415. #: src/Tribe/Languages/Locations.php:107
  1416. msgid "Congo, Democratic Republic of the"
  1417. msgstr ""
  1418. #: src/Tribe/Languages/Locations.php:106
  1419. msgid "Congo"
  1420. msgstr "Congo-Brazzaville"
  1421. #: src/Tribe/Languages/Locations.php:105
  1422. msgid "Comoros"
  1423. msgstr "Comoren"
  1424. #: src/Tribe/Languages/Locations.php:104
  1425. msgid "Colombia"
  1426. msgstr "Colombia"
  1427. #: src/Tribe/Languages/Locations.php:102
  1428. msgid "Cocos (Keeling) Islands"
  1429. msgstr "Cocoseilanden"
  1430. #: src/Tribe/Languages/Locations.php:101
  1431. msgid "Christmas Island"
  1432. msgstr "Christmaseiland"
  1433. #: src/Tribe/Languages/Locations.php:100
  1434. msgid "China"
  1435. msgstr "China"
  1436. #: src/Tribe/Languages/Locations.php:99
  1437. msgid "Chile"
  1438. msgstr "Chili"
  1439. #: src/Tribe/Languages/Locations.php:98
  1440. msgid "Chad"
  1441. msgstr "Tsjaad"
  1442. #: src/Tribe/Languages/Locations.php:97
  1443. msgid "Central African Republic"
  1444. msgstr "Centraal-Afrikaanse Republiek"
  1445. #: src/Tribe/Languages/Locations.php:96
  1446. msgid "Cayman Islands"
  1447. msgstr "Kaaimaneilanden"
  1448. #: src/Tribe/Languages/Locations.php:95
  1449. msgid "Cape Verde"
  1450. msgstr "Kaapverdië"
  1451. #: src/Tribe/Languages/Locations.php:94
  1452. msgid "Canada"
  1453. msgstr "Canada"
  1454. #: src/Tribe/Languages/Locations.php:93
  1455. msgid "Cameroon"
  1456. msgstr "Kameroen"
  1457. #: src/Tribe/Languages/Locations.php:92
  1458. msgid "Cambodia"
  1459. msgstr "Combodja"
  1460. #: src/Tribe/Languages/Locations.php:91
  1461. msgid "Burundi"
  1462. msgstr "Burundi"
  1463. #: src/Tribe/Languages/Locations.php:90
  1464. msgid "Burkina Faso"
  1465. msgstr "Burkina Faso"
  1466. #: src/Tribe/Languages/Locations.php:89
  1467. msgid "Bulgaria"
  1468. msgstr "Bulgarije"
  1469. #: src/Tribe/Languages/Locations.php:88
  1470. msgid "Brunei Darussalam"
  1471. msgstr "Brunei"
  1472. #: src/Tribe/Languages/Locations.php:87
  1473. msgid "British Indian Ocean Territory"
  1474. msgstr "Brits Indische Oceaanterritorium"
  1475. #: src/Tribe/Languages/Locations.php:86
  1476. msgid "Brazil"
  1477. msgstr "Brazilië"
  1478. #: src/Tribe/Languages/Locations.php:85
  1479. msgid "Bouvet Island"
  1480. msgstr "Bouveteiland"
  1481. #: src/Tribe/Languages/Locations.php:84
  1482. msgid "Botswana"
  1483. msgstr "Botswana"
  1484. #: src/Tribe/Languages/Locations.php:83
  1485. msgid "Bosnia and Herzegowina"
  1486. msgstr ""
  1487. #: src/Tribe/Languages/Locations.php:82
  1488. msgid "Bolivia"
  1489. msgstr "Bolivia"
  1490. #: src/Tribe/Languages/Locations.php:81
  1491. msgid "Bhutan"
  1492. msgstr "Bhutan"
  1493. #: src/Tribe/Languages/Locations.php:80
  1494. msgid "Bermuda"
  1495. msgstr "Bermuda"
  1496. #: src/Tribe/Languages/Locations.php:79
  1497. msgid "Benin"
  1498. msgstr "Benin"
  1499. #: src/Tribe/Languages/Locations.php:78
  1500. msgid "Belize"
  1501. msgstr "Belize"
  1502. #: src/Tribe/Languages/Locations.php:77
  1503. msgid "Belgium"
  1504. msgstr "België"
  1505. #: src/Tribe/Languages/Locations.php:76
  1506. msgid "Belarus"
  1507. msgstr "Wit-Rusland"
  1508. #: src/Tribe/Languages/Locations.php:75
  1509. msgid "Barbados"
  1510. msgstr "Barbados"
  1511. #: src/Tribe/Languages/Locations.php:74
  1512. msgid "Bangladesh"
  1513. msgstr "Bangladesh"
  1514. #: src/Tribe/Languages/Locations.php:73
  1515. msgid "Bahrain"
  1516. msgstr "Bahrein"
  1517. #: src/Tribe/Languages/Locations.php:72
  1518. msgid "Bahamas"
  1519. msgstr "Bahama's"
  1520. #: src/Tribe/Languages/Locations.php:71
  1521. msgid "Azerbaijan"
  1522. msgstr "Azerbeidzjan"
  1523. #: src/Tribe/Languages/Locations.php:70
  1524. msgid "Austria"
  1525. msgstr "Oostenrijk"
  1526. #: src/Tribe/Languages/Locations.php:69
  1527. msgid "Australia"
  1528. msgstr "Australië"
  1529. #: src/Tribe/Languages/Locations.php:68
  1530. msgid "Aruba"
  1531. msgstr "Aruba"
  1532. #: src/Tribe/Languages/Locations.php:67
  1533. msgid "Armenia"
  1534. msgstr "Armenië"
  1535. #: src/Tribe/Languages/Locations.php:66
  1536. msgid "Argentina"
  1537. msgstr "Argentinië"
  1538. #: src/Tribe/Languages/Locations.php:65
  1539. msgid "Antigua and Barbuda"
  1540. msgstr ""
  1541. #: src/Tribe/Languages/Locations.php:64
  1542. msgid "Antarctica"
  1543. msgstr "Antarctica"
  1544. #: src/Tribe/Languages/Locations.php:63
  1545. msgid "Anguilla"
  1546. msgstr "Anguilla"
  1547. #: src/Tribe/Languages/Locations.php:62
  1548. msgid "Angola"
  1549. msgstr "Angola"
  1550. #: src/Tribe/Languages/Locations.php:61
  1551. msgid "Andorra"
  1552. msgstr "Andorra"
  1553. #: src/Tribe/Languages/Locations.php:60
  1554. msgid "American Samoa"
  1555. msgstr "Amerikaans Samoa"
  1556. #: src/Tribe/Languages/Locations.php:59
  1557. msgid "Algeria"
  1558. msgstr "Algerije"
  1559. #: src/Tribe/Languages/Locations.php:58
  1560. msgid "Albania"
  1561. msgstr "Albanië"
  1562. #: src/Tribe/Languages/Locations.php:56
  1563. msgid "Afghanistan"
  1564. msgstr "Afghanistan"
  1565. #: src/Tribe/View_Helpers.php:50
  1566. msgid "Select a Country:"
  1567. msgstr "Selecteer een land:"
  1568. #: src/Tribe/Validate.php:514
  1569. msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
  1570. msgstr "Landenlijst moet geformatteerd zijn als een land per regel in het volgende formaat <br>US, United States <br> UK, United Kingdom."
  1571. #: src/Tribe/Validate.php:498
  1572. msgid "%s must be a phone number."
  1573. msgstr "%s moet een telefoonnummer zijn."
  1574. #: src/Tribe/Validate.php:484
  1575. msgid "%s must consist of 5 numbers."
  1576. msgstr "%s moet bestaan uit 5 getallen."
  1577. #: src/Tribe/Validate.php:470
  1578. msgid "%s must consist of letters, spaces, apostrophes, and dashes."
  1579. msgstr "%s moet bestaan uit letters, spaties, apostroffen en streepjes."
  1580. #: src/Tribe/Validate.php:454
  1581. msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
  1582. msgstr "%s moet alleen bestaan uit letters, getallen, streepjes, apostroffen en spaties."
  1583. #: src/Tribe/Validate.php:438
  1584. msgid "%s must be a number between 0 and 21."
  1585. msgstr "%s moet een getal tussen 0 en 21 zijn."
  1586. #: src/Tribe/Validate.php:384
  1587. msgid "%s must be a number or percentage."
  1588. msgstr "%s moet een getal of percentage zijn."
  1589. #: src/Tribe/Validate.php:368
  1590. msgid "%s cannot be a duplicate"
  1591. msgstr "%s kan geen duplicaat zijn"
  1592. #: src/Tribe/Validate.php:366
  1593. msgid "%s cannot be the same as %s."
  1594. msgstr "%s kan niet hetzelfde zijn als %s."
  1595. #: src/Tribe/Validate.php:359
  1596. msgid "Comparison validation failed because no comparison value was provided, for field %s"
  1597. msgstr "Vergelijkende validatie lukt niet omdat geen vergelijkingswaarde is verstrekt in het veld %s"
  1598. #: src/Tribe/Validate.php:298 src/Tribe/Validate.php:310
  1599. #: src/Tribe/Validate.php:323 src/Tribe/Validate.php:345
  1600. msgid "%s must have a value that's part of its options."
  1601. msgstr "%s moet een waarde hebben die deel is van de opties."
  1602. #: src/Tribe/Validate.php:282
  1603. msgid "%s must be a valid absolute URL."
  1604. msgstr "%s moet een valide absolute URL zijn."
  1605. #: src/Tribe/Validate.php:267
  1606. msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
  1607. msgstr "%s moet een geldige slug zijn (nummers, letters, streepjes en underscores)."
  1608. #: src/Tribe/Validate.php:200 src/Tribe/Validate.php:228
  1609. msgid "%s must be a positive number."
  1610. msgstr "%s moet een positief getal zijn."
  1611. #: src/Tribe/Validate.php:152
  1612. msgid "%s must contain numbers, letters and dots only"
  1613. msgstr "%s mag alleen cijfers, letters en punten bevatten"
  1614. #: src/Tribe/Validate.php:120 src/Tribe/Validate.php:136
  1615. msgid "%s must contain numbers and letters only"
  1616. msgstr "%s mag alleen cijfers en letters bevatten"
  1617. #: src/Tribe/Validate.php:105
  1618. msgctxt "non-existant function name passed for field validation"
  1619. msgid "with function name:"
  1620. msgstr "met functienaam:"
  1621. #: src/Tribe/Validate.php:104
  1622. msgid "Non-existant field validation function passed"
  1623. msgstr "Niet-bestaande veldvalidatiefunctie gegeven"
  1624. #: src/Tribe/Validate.php:73 src/Tribe/Validate.php:85
  1625. #: src/Tribe/Validate.php:105
  1626. msgid "Field ID:"
  1627. msgstr "Veld-ID:"
  1628. #: src/Tribe/Validate.php:72 src/Tribe/Validate.php:84
  1629. msgid "Invalid or incomplete field passed"
  1630. msgstr "Ongeldig of incompleet veld"
  1631. #: src/Tribe/Support.php:188 src/Tribe/Support.php:189
  1632. msgid "Unknown or not set"
  1633. msgstr "Onbekend of niet ingesteld"
  1634. #: src/admin-views/tribe-options-help.php:41
  1635. msgid "System Information"
  1636. msgstr "Systeeminformatie"
  1637. #: src/Tribe/Settings_Tab.php:222
  1638. msgid "There are no fields setup for this tab yet."
  1639. msgstr "Er zijn nog geen velden voor deze tab."
  1640. #: src/Tribe/Settings.php:621
  1641. msgid "The above setting was not saved. Other settings were successfully saved."
  1642. msgid_plural "The above settings were not saved. Other settings were successfully saved."
  1643. msgstr[0] "De bovenstaande instelling is niet opgeslagen. De overige instellingen zijn met succes opgeslagen."
  1644. msgstr[1] "De bovenstaande instellingen zijn niet opgeslagen. De overige instellingen zijn met succes opgeslagen."
  1645. #: src/Tribe/Settings.php:620
  1646. msgid "None of your settings were saved. Please try again."
  1647. msgstr "Geen van je instellingen is opgeslagen. Probeer het nogmaals."
  1648. #: src/Tribe/Settings.php:610
  1649. msgid "Your form had the following errors:"
  1650. msgstr "Je formulier heeft de volgende fouten:"
  1651. #: src/Tribe/Settings.php:431
  1652. msgid "The request wasn't sent from this tab."
  1653. msgstr "Het verzoek was niet verstuurd van deze tab."
  1654. #: src/Tribe/Settings.php:425
  1655. msgid "The request was sent insecurely."
  1656. msgstr "Het verzoek was onbeveiligd verstuurd."
  1657. #: src/Tribe/Settings.php:419
  1658. msgid "You don't have permission to do that."
  1659. msgstr "Je hebt geen toestemming om dat te doen."
  1660. #: src/Tribe/Settings.php:363
  1661. msgid "You've requested a non-existent tab."
  1662. msgstr "Je hebt om een niet bestaande tab verzocht."
  1663. #: src/Tribe/Settings.php:349
  1664. msgid "%s Settings"
  1665. msgstr "%s instellingen"
  1666. #: src/Tribe/Settings.php:253 src/Tribe/Settings.php:273
  1667. msgid "Events Settings"
  1668. msgstr "Evenementinstellingen"
  1669. #: src/Tribe/PUE/Checker.php:888
  1670. msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
  1671. msgstr "Hmmm, er gaat iets fout met de validiteitscontrole. Neem contact op met %ssupport%s"
  1672. #: src/Tribe/PUE/Checker.php:927
  1673. msgid "Valid Key! Expires on %s"
  1674. msgstr "Geldige licentie! Verloopt op %s"
  1675. #: src/Tribe/PUE/Checker.php:907
  1676. msgid "Sorry, key validation server is not available."
  1677. msgstr "Sorry, licentie validatie server is niet beschikbaar."
  1678. #: src/Tribe/PUE/Checker.php:650
  1679. msgid "License key(s) updated."
  1680. msgstr "Licentie sleutel(s) code bijgewerkt. "
  1681. #: src/Tribe/PUE/Checker.php:494
  1682. msgid "A valid license key is required for support and updates"
  1683. msgstr "Een geldige licentie sleutel is nodig voor support en updates"
  1684. #: src/Tribe/PUE/Checker.php:509 src/Tribe/PUE/Checker.php:520
  1685. msgid "License Key"
  1686. msgstr "Licentie sleutel"
  1687. #: src/Tribe/Main.php:247
  1688. msgid "Search:"
  1689. msgstr "Zoeken:"
  1690. #: src/Tribe/Settings.php:254
  1691. msgid "Settings"
  1692. msgstr "Instellingen"
  1693. #: src/Tribe/Settings_Manager.php:219
  1694. msgid "Network"
  1695. msgstr "Netwerk"
  1696. #: src/Tribe/Main.php:272
  1697. msgid "Done"
  1698. msgstr "Gereed"
  1699. #: src/Tribe/Main.php:271
  1700. msgid "Today"
  1701. msgstr "Vandaag"
  1702. #: src/Tribe/Main.php:270
  1703. msgid "Prev"
  1704. msgstr "Vorige"
  1705. #: src/Tribe/Main.php:253 src/Tribe/Main.php:269
  1706. msgid "Next"
  1707. msgstr "Volgende"
  1708. #: src/Tribe/Settings_Manager.php:279
  1709. msgid "Help"
  1710. msgstr "Help"
  1711. #: src/Tribe/Settings_Manager.php:55
  1712. msgid "Display"
  1713. msgstr "Weergave"
  1714. #: src/Tribe/Settings_Manager.php:253
  1715. #: src/admin-views/tribe-options-licenses.php:66
  1716. msgid "Licenses"
  1717. msgstr "Licenties"
  1718. #: src/Tribe/Admin/Help_Page.php:59 src/Tribe/Customizer.php:569
  1719. #: src/Tribe/Plugins_API.php:25
  1720. msgid "The Events Calendar"
  1721. msgstr "The Events Calendar"
  1722. #: src/Tribe/Settings.php:177 src/Tribe/Settings.php:241
  1723. #: src/Tribe/Settings.php:242
  1724. msgid "Events"
  1725. msgstr "Evenementen"
  1726. #: src/Tribe/Settings.php:643
  1727. msgid "Settings saved."
  1728. msgstr "Instellingen opgeslagen"
  1729. #: src/Tribe/Settings_Manager.php:54
  1730. msgid "General"
  1731. msgstr "Algemeen"
  1732. #: src/Tribe/Field.php:626
  1733. msgid "No select options specified"
  1734. msgstr "Geen selecteeropties gegeven"
  1735. #: src/Tribe/Field.php:568
  1736. msgid "No checkbox options specified"
  1737. msgstr "Geen checkbox-opties gegeven"
  1738. #: src/Tribe/Field.php:532
  1739. msgid "No radio options specified"
  1740. msgstr "Geen radio-opties gegeven"
  1741. #: src/Tribe/Field.php:231
  1742. msgid "Invalid field type specified"
  1743. msgstr "Ongeldig veldtype gegeven"
  1744. #: src/Tribe/Credits.php:31
  1745. msgid "This calendar is powered by The Events Calendar."
  1746. msgstr "Deze kalender wordt mede door The Events Calender mogelijk gemaakt."
  1747. #: src/Tribe/App_Shop.php:50 src/Tribe/App_Shop.php:51
  1748. #: src/Tribe/App_Shop.php:72
  1749. msgid "Event Add-Ons"
  1750. msgstr "Event Add-Ons"
  1751. #: src/Tribe/Languages/Locations.php:55
  1752. msgid "United States"
  1753. msgstr "Verenigde Staten"