Plugin Directory

Changeset 3340879


Ignore:
Timestamp:
08/07/2025 10:37:23 AM (7 months ago)
Author:
gwin
Message:

Version 2.2.7

Location:
wpadverts/trunk
Files:
1 added
14 edited

Legend:

Unmodified
Added
Removed
  • wpadverts/trunk/addons/contact-form/contact-form.php

    r3037870 r3340879  
    459459    $bd = new Adext_Contact_Form_Block_Details( $atts, $post_id );
    460460
    461     if( ! $atts["custom_contact"] && isset( $contact_options["contact-reveal"] ) ) {
     461    if( isset( $atts["custom_contact"] ) && ! $atts["custom_contact"] && isset( $contact_options["contact-reveal"] ) ) {
    462462        $contact_options["contact-reveal"]["is_active"] = false;
    463463    }
  • wpadverts/trunk/addons/contact-form/includes/class-block-details.php

    r3200814 r3340879  
    148148        $atts_style = [];
    149149
     150        /*
    150151        if( $atts["form_style"] ) {
    151152
     
    154155            ];
    155156
    156             add_filter("wpadverts/block/form/styles/atts", [$this, "change_form_style"], 50);
    157         }
     157            //add_filter("wpadverts/block/form/styles/atts", [$this, "change_form_style"], 50);
     158        }
     159        */
    158160
    159161        $data = $this->_adext_contact_form_content( $post_id, $atts );
     
    186188            "form" => $form, // Adverts_Form (required)
    187189            "form_id" => "wpadverts-contact-form",
    188             "form_style_atts" => [],
     190            "form_style_atts" => $atts["form_style"],
    189191            "form_layout" => "wpa-layout-stacked",
    190192            "form_layout_prop" => "atw-w-1/3",
     
    434436            unset( $atts["interline"] );
    435437        }
     438        if( isset( $atts["customize"] ) && $atts["customize"] == 1) {
     439            return $atts;
     440        }
    436441        if( isset( $atts["style"] ) && $atts["style"] == "wpa-solid" ) {
    437442            $atts["style"] = "wpa-flat";
     
    440445    }
    441446
    442     public function change_form_style( $atts ) {
    443         $atts = adverts_config( "blocks_styling.form" );
    444         if( isset( $atts["interline"] ) ) {
    445             unset( $atts["interline"] );
    446         }
    447         $atts["style"] = "wpa-solid";
    448         return $atts;
    449     }
    450447}
  • wpadverts/trunk/assets/js/wpadverts-autocomplete.js

    r2759717 r3340879  
    117117
    118118    if(this._firstLoad) {
     119        // maybe?
    119120        this.Load();
    120121        this._firstLoad = false;
  • wpadverts/trunk/blocks/manage/class-manage-engine.php

    r3233901 r3340879  
    8383        } else if( $action == "edit" ) {
    8484            $content = $this->action_edit( $atts );
    85         }
     85        } else {
     86            $content = "";
     87        }
    8688       
    8789        return apply_filters("adverts_manage_action_$action", $content, $atts, true);
  • wpadverts/trunk/blocks/publish/class-publish-engine.php

    r3233901 r3340879  
    367367       
    368368        $form_layout = $_layouts[$form->get_layout()];
    369         $atts = $this->_params["form"];
     369        $atts = $this->_params;
     370        $form_style_atts = $atts["form"];
    370371
    371372        // adverts/templates/add.php
  • wpadverts/trunk/blocks/search/index.php

    r3137547 r3340879  
    1010   
    1111    public function init() {
    12        
     12
    1313        $package = "wpadverts";
    1414        $module = "search";
     
    5858
    5959    public function render( $atts = array() ) {
    60 
     60       
    6161        $atts = $this->handlePayload( $atts );
    6262
  • wpadverts/trunk/blocks/single-contact/index.php

    r3233901 r3340879  
    144144        }
    145145
    146         $has_visible_contact_options = false;
     146       
    147147
    148148        foreach( $contact_options as $k => $o ) {
     
    151151            }
    152152
    153 
    154 
    155153            if( $contact_options[$k]["is_active"] && $contact_options[$k]["is_visible"] ) {
    156                 $has_visible_contact_options = true;
    157154
    158155                if($o["class"] == "wpadverts-show-contact-form" && $atts["form_button_hide"] ) {
     
    167164       
    168165        $contact_options = apply_filters( "wpadverts/block/single-contact/contact-options", $contact_options, $post_id, $atts );
     166        $has_visible_contact_options = false;
     167       
     168        foreach( $contact_options as $k => $o ) {
     169            if( $contact_options[$k]["is_active"] && $contact_options[$k]["is_visible"] ) {
     170                $has_visible_contact_options = true;
     171            }
     172        }
     173
    169174        $contact_options = $this->_set_primary_contact_option( $contact_options );
    170175
  • wpadverts/trunk/blocks/single-contact/templates/contact.php

    r3200814 r3340879  
    11<div class="wpadverts-cpt <?php echo sprintf( "wpadverts-cpt-", $atts["post_type"] ) ?> wpadverts-cpt-single-contact atw-w-full atw-flex atw-flex-col">
     2
     3<style type="text/css">
     4    <?php if( isset( $atts["primary_button"] ) && is_array( $atts["primary_button"] ) ): ?>
     5    <?php wpadverts_block_button_css( "primary", isset( $atts["primary_button"] ) ? $atts["primary_button"] : array(), ".wpa-cpt-contact-details" ) ?>
     6    <?php endif; ?>
     7    <?php if( isset( $atts["secondary_button"] ) && is_array( $atts["secondary_button"] ) ): ?>
     8    <?php wpadverts_block_button_css( "secondary", isset( $atts["secondary_button"] ) ? $atts["secondary_button"] : array(), ".wpa-cpt-contact-details" ) ?>
     9    <?php endif; ?>
     10</style>
    211
    312<?php if( $has_visible_contact_options ): ?>
  • wpadverts/trunk/includes/admin-pages.php

    r3316823 r3340879  
    8686                    "plugin" => null,
    8787                ),
     88                "custom-fields" => array(
     89                    "title" => __("Custom Fields", "wpadverts"),
     90                    "text" => __("Allow users to customize forms using easy to use drag and drop editor.", "wpadverts"),
     91                    "type" => "",
     92                    "plugin" => "wpadverts-custom-fields/wpadverts-custom-fields.php",
     93                    "purchase_url" => "https://wpadverts.com/extensions/custom-fields/"
     94                ),
     95                "elementor-integration" => array(
     96                    "title" => __("Elementor Integration", "wpadverts"),
     97                    "text" => __("Build classifieds sections with Elementor page builder.", "wpadverts"),
     98                    "type" => "",
     99                    "plugin" => "wpadverts-elementor/wpadverts-elementor.php",
     100                    "purchase_url" => "https://wpadverts.com/extensions/elementor-classifieds/"
     101                ),
     102                "wc-payments" => array(
     103                    "title" => __("WooCommerce Payments", "wpadverts"),
     104                    "text" => __("Use WooCommerce to charge users for posting ads on your website.", "wpadverts"),
     105                    "type" => "",
     106                    "plugin" => "wpadverts-wc/wpadverts-wc.php",
     107                    "purchase_url" => "https://wpadverts.com/extensions/woocommerce-integration/"
     108                ),
    88109                "payments" => array(
    89110                    "title" => __("Payments", "wpadverts"),
     
    92113                    "plugin" => null
    93114                ),
    94                 "wc-payments" => array(
    95                     "title" => __("WooCommerce Payments", "wpadverts"),
    96                     "text" => __("Use WooCommerce to charge users for posting ads on your website.", "wpadverts"),
    97                     "type" => "",
    98                     "plugin" => "wpadverts-wc/wpadverts-wc.php",
    99                     "purchase_url" => "https://wpadverts.com/extensions/woocommerce-integration/"
     115                "emails" => array(
     116                    "title" => __("Emails", "wpadverts"),
     117                    "text" => __("Emails module sends transactional emails to users and allows editing the email templates content.", "wpadverts"),
     118                    "type" => "",
     119                    "plugin" => null
    100120                ),
    101121                "buddypress" => array(
     
    106126                    "purchase_url" => "https://wpadverts.com/extensions/buddypress-integration/"
    107127                ),
    108                 "custom-fields" => array(
    109                     "title" => __("Custom Fields", "wpadverts"),
    110                     "text" => __("Allow users to customize forms using easy to use drag and drop editor.", "wpadverts"),
    111                     "type" => "",
    112                     "plugin" => "wpadverts-custom-fields/wpadverts-custom-fields.php",
    113                     "purchase_url" => "https://wpadverts.com/extensions/custom-fields/"
    114                 ),
    115128                "authors" => array(
    116129                    "title" => __("Authors", "wpadverts"),
     
    120133                    "purchase_url" => "https://wpadverts.com/extensions/authors/"
    121134                ),
    122                 "emails" => array(
    123                     "title" => __("Emails", "wpadverts"),
    124                     "text" => __("Emails module sends transactional emails to users and allows editing the email templates content.", "wpadverts"),
    125                     "type" => "",
    126                     "plugin" => null
    127                 ),
     135
    128136                "styling" => array(
    129137                    "title" => __( "Default Styles", "wpadverts"),
  • wpadverts/trunk/languages/wpadverts-nl_NL.po

    r2725866 r3340879  
    1 # Copyright (C) 2017 Greg Winiarski
    2 # This file is distributed under the same license as the WP Adverts package.
    3 msgid ""
    4 msgstr ""
    5 "Project-Id-Version: WP Adverts 1.1.1\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpadverts\n"
    7 "POT-Creation-Date: 2017-03-17 11:25+0100\n"
     1# Translation of Plugins - WPAdverts &#8211; Classifieds Plugin - Stable (latest release) in Dutch
     2# This file is distributed under the same license as the Plugins - WPAdverts &#8211; Classifieds Plugin - Stable (latest release) package.
     3msgid ""
     4msgstr ""
     5"PO-Revision-Date: 2025-07-22 17:40+0000\n"
    86"MIME-Version: 1.0\n"
    97"Content-Type: text/plain; charset=UTF-8\n"
    108"Content-Transfer-Encoding: 8bit\n"
    11 "PO-Revision-Date: 2022-05-13 11:42+0000\n"
    12 "Language-Team: Dutch\n"
     9"Plural-Forms: nplurals=2; plural=n != 1;\n"
    1310"X-Generator: Loco https://localise.biz/\n"
    14 "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
    15 "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
    16 "esc_html_x:1,2c\n"
    17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
    18 "X-Poedit-SourceCharset: UTF-8\n"
    19 "X-Poedit-Basepath: ..\n"
    20 "X-Textdomain-Support: yes\n"
     11"Language: nl-NL\n"
     12"Project-Id-Version: Plugins - WPAdverts &#8211; Classifieds Plugin - Stable "
     13"(latest release)\n"
     14"Language-Team: Nederlands\n"
     15"Report-Msgid-Bugs-To: \n"
     16"POT-Creation-Date: 2025-07-21 12:59+0000\n"
    2117"Last-Translator: \n"
    22 "Language: nl_NL\n"
    23 "X-Poedit-SearchPath-0: .\n"
    24 "X-Loco-Version: 2.6.0; wp-5.9.3"
     18"X-Loco-Version: 2.8.0; wp-6.8.2; php-8.4.8"
     19
     20#: addons/payments/includes/admin-pages.php:514
     21msgid "%1$s %2$d"
     22msgstr "%1$s %2$d"
     23
     24#: includes/admin-post-type.php:286
     25msgid "%1$s %2$s, %3$s @ %4$s : %5$s"
     26msgstr "%1$s %2$s, %3$s @ %4$s : %5$s"
     27
     28#. translators: 1: month number (01, 02, etc.), 2: month abbreviation
     29#: includes/admin-post-type.php:274
     30msgid "%1$s-%2$s"
     31msgstr "%1$s-%2$s"
     32
     33#: includes/class-types-admin.php:282
     34msgid ""
     35"%d comments enabled. If you are using some caching plugin make sure to clear "
     36"cache."
     37msgstr ""
     38"%d reacties ingeschakeld. Als je een caching-plug-in gebruikt, zorg er dan "
     39"voor dat je de cache wist."
     40
     41#: includes/admin-post-type.php:624
     42msgid "%s ago"
     43msgstr "%s geleden"
     44
     45#: addons/payments/admin/payment-history-list.php:141
     46#: addons/payments/admin/pricing-list.php:105
     47msgid "&laquo;"
     48msgstr "&laquo;"
     49
     50#: addons/payments/admin/payment-history-list.php:142
     51#: addons/payments/admin/pricing-list.php:106
     52msgid "&raquo;"
     53msgstr "&raquo;"
     54
     55#: includes/admin-post-type.php:447
     56msgid "(required)"
     57msgstr "(vereist)"
     58
     59#: includes/class-types-admin.php:158
     60msgid "+ New Post Type"
     61msgstr "+ Nieuwe post type"
     62
     63#: addons/core/admin/types-list.php:93
     64msgid "+ New Taxonomy"
     65msgstr "+ Nieuwe taxonomie"
     66
     67#: addons/payments/admin/pricing-list.php:90
     68msgid "1 day"
     69msgid_plural "%s days"
     70msgstr[0] "1 dag"
     71msgstr[1] "%s dagen"
     72
     73#: addons/payments/includes/admin-pages.php:419
     74#: addons/payments/includes/admin-pages.php:455
     75msgid "1 Payment deleted."
     76msgid_plural "%s Payments deleted."
     77msgstr[0] "1 betaling verwijderd."
     78msgstr[1] "%s betalingen verwijderd."
     79
     80#: addons/payments/includes/admin-pages.php:258
     81msgid "1 Pricing deleted."
     82msgid_plural "%s Pricings deleted."
     83msgstr[0] "1 prijs verwijderd."
     84msgstr[1] "%s prijzen verwijderd."
     85
     86#: addons/payments/payments.php:634
     87msgid ""
     88"<div><strong>Your Payment Is Required</strong></div><div>Please complete "
     89"payment for the <em>'%s'</em> Ad posting to have it published.</div>"
     90msgstr ""
     91"<div><strong>Je betaling is vereist</strong></div><div>Voltooi de betaling "
     92"voor de plaatsing van de <em>'%s'</em> advertentie om deze te laten "
     93"publiceren.</div>"
     94
     95#: includes/class-moderate-admin.php:127
     96msgid ""
     97"<em>Exact Matching</em> will match whole words, so “press” will NOT match "
     98"“WordPress”."
     99msgstr ""
     100"<em>Exacte overeenkomsten</em> komen overeen met hele woorden, dus \"druk\" "
     101"komt NIET overeen met \"WordPress\"."
     102
     103#: includes/class-moderate-admin.php:126
     104msgid ""
     105"<em>Partial Matching</em> will match inside words, so “press” will match "
     106"“WordPress”."
     107msgstr ""
     108"<em>Gedeeltelijke overeenkomsten</em> komen overeen met woorden, dus "
     109"\"druk\" komt overeen met \"WordPress\"."
     110
     111#: templates/categories-all.php:41
     112msgid "<em>View All &raquo;</em>"
     113msgstr "<em>Alles bekijken &raquo;</em>"
     114
     115#: addons/payments/payments.php:629
     116msgid ""
     117"<p><strong>Your Payment Is Required</strong><p>Please complete payment for "
     118"the <em>'%s'</em> Ad posting to have it published.</p>"
     119msgstr ""
     120"<p><strong>Je betaling is vereist</strong><p>Voltooi de betaling voor de "
     121"plaatsing van de <em>'%s'</em> advertentie om deze te laten publiceren.</p>"
     122
     123#: addons/payments/includes/shortcodes.php:95
     124msgid ""
     125"<p><strong>Your Payment Is Required</strong><p>Please complete payment for "
     126"the <em>'%s'</em> Ad posting.</p>"
     127msgstr ""
     128"<p><strong>Je betaling is vereist</strong><p>Voltooi de betaling voor het "
     129"plaatsen van de <em>'%s'</em> advertentie.</p>"
     130
     131#: addons/payments/includes/admin-pages.php:382
     132msgid "<strong>%1$s</strong> changed payment status to <strong>%2$s</strong>"
     133msgstr ""
     134"<strong>%1$s</strong> heeft de betalingsstatus gewijzigd in <strong>"
     135"%2$s</strong>"
     136
     137#: addons/core/includes/admin-pages.php:400
     138msgid ""
     139"<strong>200</strong> — Show Ad details page with contact options disabled."
     140msgstr ""
     141"<strong>200</strong> — Toon de pagina met advertentiedetails met "
     142"uitgeschakelde contactopties."
     143
     144#: addons/core/includes/admin-pages.php:399
     145msgid "<strong>301</strong> — Redirect to a different page ..."
     146msgstr "<strong>301</strong> — Omleiden naar een andere pagina ..."
     147
     148#: addons/core/includes/admin-pages.php:398
     149msgid "<strong>404</strong> — Show 'Page Not Found' Error"
     150msgstr "<strong>404</strong> — Toon 'Pagina niet gevonden' fout"
     151
     152#: blocks/manage/class-manage-engine.php:382 templates/manage-edit.php:69
     153msgid ""
     154"<strong>Important Note.</strong> After submitting changes your Ad will be "
     155"held for moderation. It will become active again once the Administrator will "
     156"approve it."
     157msgstr ""
     158"<strong>Belangrijke opmerking.</strong> Na het indienen van wijzigingen "
     159"wordt je advertentie in de wacht gezet voor moderatie. Het wordt weer actief "
     160"zodra de beheerder het toestaat."
     161
     162#: includes/functions.php:3020 includes/functions.php:3055
     163msgid ""
     164"<strong>This Ad expired and is no longer available.</strong><br/>See our "
     165"other active <a href=\"%s\">classified ads</a>."
     166msgstr ""
     167"<strong>Deze advertentie is verlopen en is niet langer beschikbaar.</strong>"
     168"<br/>Bekijk onze andere actieve <a href=\"%s\">rubrieksadvertenties</a>."
     169
     170#: includes/functions.php:3015 includes/functions.php:3050
     171msgid ""
     172"<strong>Visible To Administrators Only</strong><br/>This Ad expired, but as "
     173"a user with <em>%s</em> capability you can see this page."
     174msgstr ""
     175"<strong>Alleen zichtbaar voor beheerders</strong><br/>Deze advertentie is "
     176"verlopen, maar als gebruiker met <em>%s</em> mogelijkheden kan je deze "
     177"pagina zien."
     178
     179#: addons/contact-form/includes/class-emails-integration.php:69
     180msgid "[{$advert.post_title}] {$form.message_subject}."
     181msgstr "[{$advert.post_title}] {$form.message_subject}."
     182
     183#: addons/payments/includes/admin-pages.php:641
     184msgid "Abandoned"
     185msgstr "Verlaten"
     186
     187#: includes/defaults.php:50
     188msgid "Account"
     189msgstr "Account"
     190
     191#: addons/core/admin/types-edit-post.php:81 includes/gallery.php:589
     192msgid "Actions"
     193msgstr "Acties"
     194
     195#: admin/options.php:138 includes/class-updates-manager.php:317
     196msgid "Activate"
     197msgstr "Activeer"
     198
     199#: includes/class-updates-manager.php:320
     200msgid "Activate your License in order to enable automatic updates."
     201msgstr "Activeer je licentie om automatische updates mogelijk te maken."
     202
     203#: addons/payments/payments.php:1052
     204msgid "Ad <strong>%s</strong> renewed. <a href=\"%s\">Go back to Ads list</a>."
     205msgstr ""
     206"Advertentie <strong>%s</strong> vernieuwd. <a href=\"%s\">Ga terug naar de "
     207"advertentielijst</a>."
     208
     209#: blocks/manage/class-manage-engine.php:230 includes/shortcodes.php:414
     210#: includes/shortcodes.php:518
     211msgid "Ad does not exist."
     212msgstr "Advertentie bestaat niet."
     213
     214#: addons/emails/includes/class-emails-admin.php:306
     215msgid "Add Attachment"
     216msgstr "Bijlage toevoegen"
     217
     218#: addons/emails/includes/class-emails-admin.php:284
     219msgid "Add Header"
     220msgstr "Header toevoegen"
     221
     222#: addons/payments/admin/pricing-edit.php:19
     223#: addons/payments/admin/pricing-list.php:19
     224msgid "Add New"
     225msgstr "Nieuwe toevoegen"
     226
     227#: wpadverts.php:241
     228msgid "Add New Classified"
     229msgstr "Nieuwe advertentie toevoegen"
     230
     231#: addons/payments/includes/admin-pages.php:132
     232#: addons/payments/includes/admin-pages.php:133
     233msgid "Add Pricing"
     234msgstr "Prijzen toevoegen"
     235
     236#: includes/class-moderate-admin.php:103
     237msgid ""
     238"Adding more than 'Max. Links' in the content will disallow posting an Ad. "
     239"Empty value = unlimited number of links"
     240msgstr ""
     241"Meer links toevoegen dan 'Max. Links' in het bericht van een advertentie is "
     242"niet toestaan. Lege waarde = onbeperkt aantal links"
     243
     244#: includes/admin-post-type.php:538
     245msgid "Additional Information"
     246msgstr "Aanvullende informatie"
     247
     248#: admin/options.php:134
     249msgid "Addon Uploaded and Activated"
     250msgstr "Add-on geüpload en actief"
     251
     252#: admin/options.php:137
     253msgid "Addon Uploaded but Inactive"
     254msgstr "Add-on geüpload maar inactief"
     255
     256#: addons/emails/admin/emails-list.php:37
     257#: addons/emails/admin/emails-list.php:93
     258msgid "Administrator"
     259msgstr "Beheerder"
     260
     261#: includes/class-widget-ads.php:171
     262msgid "Ads Types"
     263msgstr "Advertentie types"
     264
     265#: templates/list.php:85
     266msgid "Advanced Search"
     267msgstr "Geavanceerd zoeken"
     268
     269#: includes/ajax.php:1254
     270msgid "Advert <strong>%s</strong> deleted."
     271msgstr "Advertentie <strong>%s</strong> verwijderd."
     272
     273#: includes/class-widget-categories.php:31
     274#: includes/class-widget-categories.php:41
     275msgid "Advert Categories"
     276msgstr "Advertentie categorieën"
     277
     278#: addons/core/includes/admin-pages.php:501
     279#: addons/core/includes/admin-pages.php:502
     280msgid "Advert Details Pages"
     281msgstr "Advertentie detail pagina's"
     282
     283#: addons/core/includes/admin-pages.php:590
     284msgid "Adverts Gallery"
     285msgstr "Advertentie galerij"
     286
     287#: addons/core/includes/admin-pages.php:597
     288msgid "Adverts List"
     289msgstr "Advertentie lijst"
     290
     291#: includes/admin-pages.php:37
     292msgid "Adverts Options"
     293msgstr "Advertentie opties"
     294
     295#: addons/payments/payments.php:1117
     296msgid "Adverts Payment History"
     297msgstr "Betaal geschiedenis advertenties"
     298
     299#: addons/payments/includes/admin-pages.php:408
     300msgid "Adverts Payment with given ID does not exist."
     301msgstr "Een betaling van advertentie met opgegeven ID bestaat niet."
     302
     303#: addons/payments/includes/admin-pages.php:223
     304msgid "Adverts Pricing with given ID does not exist."
     305msgstr "Advertenties prijzen met opgegeven ID bestaan ​​niet."
     306
     307#: addons/payments/admin/payment-history-list.php:23
     308#: includes/class-widget-ads.php:174
     309msgid "All"
     310msgstr "Alle"
     311
     312#: wpadverts.php:244
     313msgid "All Classifieds"
     314msgstr "Alle advertenties"
     315
     316#: addons/payments/admin/payment-history-list.php:54
     317msgid "All dates"
     318msgstr "Alle datums"
     319
     320#: addons/payments/admin/payment-history-list.php:64
     321msgid "All Payments"
     322msgstr "Alle betalingen"
     323
     324#: addons/core/includes/admin-pages.php:535
     325msgid "Allow opening Gallery images in a Lightbox."
     326msgstr "Sta het openen van galerijafbeeldingen in een lightbox toe."
     327
     328#: includes/admin-pages.php:188
     329msgid "Allow users and administrators to mark the Ads as sold."
     330msgstr ""
     331"Sta gebruikers en beheerders toe om de advertenties als verkocht te markeren."
     332
     333#: includes/admin-pages.php:110
     334msgid "Allow users to customize forms using easy to use drag and drop editor."
     335msgstr ""
     336"Gebruikers toestaan formulieren aan te passen met de drag and drop editor."
     337
     338#: includes/admin-pages.php:214
     339msgid ""
     340"Allow users to pay for ad posting using direct bank transfer or cash "
     341"payments."
     342msgstr ""
     343"Gebruikers toestaan ​​te betalen voor het plaatsen van advertenties door "
     344"middel van rechtstreekse overboeking of contante betalingen."
     345
     346#: includes/admin-pages.php:141
     347msgid "Allow users to post Ads displayed always at the top of the list."
     348msgstr ""
     349"Sta gebruikers toe advertenties te plaatsen die altijd bovenaan de lijst "
     350"worden weergegeven."
     351
     352#: addons/core/includes/admin-pages.php:486
     353msgid "Allow users to switch between grid and list view."
     354msgstr "Sta gebruikers toe te wisselen tussen raster- en lijstweergave."
     355
     356#: includes/gallery.php:70
     357msgid "Allowed Files"
     358msgstr "Toegestane bestanden"
     359
     360#: addons/core/includes/admin-pages.php:414
     361msgid "Always Visible For"
     362msgstr "Altijd zichtbaar voor"
     363
     364#: addons/payments/admin/payment-history-list.php:82
     365msgid "Amount"
     366msgstr "Aantal"
     367
     368#: includes/admin-pages.php:194
     369msgid "Analytics"
     370msgstr "Statistieken"
     371
     372#: addons/payments/admin/payment-history-list.php:48
     373#: addons/payments/admin/payment-history-list.php:158
     374#: addons/payments/admin/pricing-list.php:37
     375#: addons/payments/admin/pricing-list.php:119
     376msgid "Apply"
     377msgstr "Toepassen"
     378
     379#: includes/gallery.php:603
     380msgid "Apply changes to all image sizes"
     381msgstr "Wijzigingen toepassen op alle afbeeldingsformaten"
     382
     383#: includes/class-honeypot.php:31 includes/class-honeypot.php:75
     384msgid "Are you a bot trying to submit a classified Ad?"
     385msgstr "Ben jij een robot die probeert een advertentie te plaatsen?"
     386
     387#: blocks/manage/index.php:50
     388msgid "Are you sure you want to delete '%s'"
     389msgstr "Weet je zeker dat je '%s' wil verwijderen"
     390
     391#: wpadverts.php:554
     392msgid "Are you sure you want to reset this settings to defaults?"
     393msgstr ""
     394"Weet je zeker dat je deze instellingen wilt terugzetten naar de "
     395"standaardwaarden?"
     396
     397#: templates/manage.php:67
     398msgid "Are you sure?"
     399msgstr "Weet je het zeker?"
     400
     401#: includes/class-widget-ads.php:160
     402msgid "Ascending"
     403msgstr "Oplopend"
     404
     405#: addons/core/admin/types-list.php:101
     406msgid "Assigned To"
     407msgstr "Toegewezen aan"
     408
     409#: includes/gallery.php:366
     410msgid "Attachment details"
     411msgstr "Bijlage gegevens"
     412
     413#: includes/ajax.php:339
     414msgid "Attachment does not exist."
     415msgstr "Bijlage bestaat niet."
     416
     417#: addons/emails/includes/class-emails-admin.php:399
     418msgid "Attachments"
     419msgstr "Bijlagen"
     420
     421#: includes/functions.php:2243
     422msgid "Australian Dollars"
     423msgstr "Australische dollars"
     424
     425#: includes/admin-post-type.php:577 includes/class-types-admin.php:618
     426msgid "Author"
     427msgstr "Auteur"
     428
     429#: includes/admin-pages.php:116
     430msgid "Authors"
     431msgstr "Auteurs"
     432
     433#: addons/payments/admin/payment-history-list.php:165
     434msgid "Automatic cleanup was never run."
     435msgstr "Automatische opschoning is nooit uitgevoerd."
     436
     437#: includes/class-types-admin.php:632
     438msgid "Automatically enable comments when Ad is saved in the database."
     439msgstr ""
     440"Reacties automatisch inschakelen wanneer advertentie in de database wordt "
     441"opgeslagen."
     442
     443#: addons/styling/admin/options.php:101 addons/styling/admin/options.php:127
     444#: addons/styling/admin/options.php:233 addons/styling/admin/options.php:258
     445msgid "Background"
     446msgstr "Achtergrond"
     447
     448#: addons/bank-transfer/bank-transfer.php:42 includes/admin-pages.php:213
     449msgid "Bank Transfer"
     450msgstr "Overschrijving per bank"
     451
     452#: includes/admin-pages.php:152
     453msgid "Better Messages"
     454msgstr "Better Messages"
     455
     456#: includes/class-moderate-admin.php:109
     457msgid "Blacklisted Phrases"
     458msgstr "Zwarte lijst woorden"
     459
     460#: includes/class-types-admin.php:799
     461msgid "Block (recommended) - use block templates."
     462msgstr "Blokkeren (aanbevolen) - gebruik blok templates."
     463
     464#: addons/styling/admin/options.php:323
     465msgid "Blue Gray"
     466msgstr "Blauw grijs"
     467
     468#: addons/emails/includes/class-emails-admin.php:393
     469msgid "Body"
     470msgstr "Body"
     471
     472#: addons/styling/admin/options.php:84 addons/styling/admin/options.php:216
     473msgid "Bold"
     474msgstr "Vet"
     475
     476#: addons/styling/admin/options.php:107 addons/styling/admin/options.php:133
     477#: addons/styling/admin/options.php:239 addons/styling/admin/options.php:264
     478msgid "Border"
     479msgstr "Rand"
     480
     481#: addons/styling/admin/options.php:56 addons/styling/admin/options.php:188
     482#: addons/styling/admin/options.php:359
     483msgid "Border Radius"
     484msgstr "Randradius"
     485
     486#: addons/styling/admin/options.php:355
     487msgid "Border Settings"
     488msgstr "Rand instellingen"
     489
     490#: addons/styling/admin/options.php:69 addons/styling/admin/options.php:201
     491#: addons/styling/admin/options.php:372
     492msgid "Border Width"
     493msgstr "Rand breedte"
     494
     495#: addons/styling/admin/options.php:337
     496msgid "Bottom Border"
     497msgstr "Onderrand"
     498
     499#: includes/functions.php:2244
     500msgid "Brazilian Real"
     501msgstr "Braziliaanse real"
     502
     503#: includes/gallery.php:124
     504msgid "browse files ..."
     505msgstr "bestanden doorbladeren ..."
     506
     507#: includes/admin-pages.php:102
     508msgid "BuddyPress Integration"
     509msgstr "BuddyPress integratie"
     510
     511#: includes/functions-blocks.php:805
     512msgid "Builtin Templates"
     513msgstr "Ingebouwde templates"
     514
     515#: addons/payments/admin/payment-history-list.php:41
     516#: addons/payments/admin/payment-history-list.php:152
     517#: addons/payments/admin/pricing-list.php:33
     518#: addons/payments/admin/pricing-list.php:116
     519msgid "Bulk Actions"
     520msgstr "Bulkacties"
     521
     522#: templates/single.php:23
     523msgid "by <strong>%s</strong>"
     524msgstr "met <strong>%s</strong>"
     525
     526#: addons/core/includes/admin-pages.php:418
     527msgid "Cabability (or Role) required to always see expired Ads details pages."
     528msgstr ""
     529"Rechten (of Rol) vereist om altijd de verlopen pagina's met "
     530"advertentiedetails te zien."
     531
     532#: addons/core/includes/admin-pages.php:577
     533msgid "Cabability required to edit images in the Gallery."
     534msgstr "Mogelijkheid vereist om afbeeldingen in de galerij te bewerken."
     535
     536#: blocks/single-author/templates/list.php:37
     537msgid "call"
     538msgstr "bel"
     539
     540#: addons/contact-form/includes/class-block-details.php:89
     541msgid ""
     542"Call <span data-ph1=\"%s\" class=\"wpadverts-phone\">%s...</span> <a "
     543"href=\"#\" class=\"wpadverts-phone-reveal\">show phone</a>"
     544msgstr ""
     545"Bel <span data-ph1=\"%s\" class=\"wpadverts-phone\">%s...</span> <a "
     546"href=\"#\" class=\"wpadverts-phone-reveal\">toon telefoon</a>"
     547
     548#: addons/contact-form/includes/class-block-details.php:110
     549msgid "Call <span data-ph1=\"%s\" class=\"wpadverts-phone\">%s</span>"
     550msgstr "Bel <span data-ph1=\"%s\" class=\"wpadverts-phone\">%s</span>"
     551
     552#: includes/functions.php:2245
     553msgid "Canadian Dollars"
     554msgstr "Canadese dollars"
     555
     556#: addons/core/admin/types-icon-picker.php:21 blocks/manage/index.php:52
     557#: includes/admin-post-type.php:310 includes/class-updates-manager.php:333
     558#: includes/gallery.php:514 includes/gallery.php:592 templates/manage.php:70
     559#: wpadverts.php:396
     560msgid "Cancel"
     561msgstr "Annuleren"
     562
     563#: admin/options.php:126
     564msgid "Cannot be disabled"
     565msgstr "Kan niet worden uitgeschakeld"
     566
     567#: includes/class-updates-manager.php:150
     568msgid "Cannot connect to remote server. Please try again later."
     569msgstr ""
     570"Kan geen verbinding maken met externe server. Probeer het later opnieuw."
     571
     572#: includes/defaults.php:348
     573msgid "Cannot create account. User with this email address already exists."
     574msgstr "Kan geen account maken. Gebruiker met dit e-mailadres bestaat al."
     575
     576#: addons/payments/payments.php:895
     577msgid ""
     578"Cannot renew Ads with status 'pending', <a href=\"%s\">cancel and go back</a>"
     579"."
     580msgstr ""
     581"Kan advertenties met status 'in behandeling' niet verlengen, <a href=\"%s\">"
     582"annuleer en ga terug</a>."
     583
     584#: wpadverts.php:398
     585msgid "Cannot select more than %s items."
     586msgstr "Kan niet meer dan %s items selecteren."
     587
     588#: blocks/manage/class-manage-engine.php:298 includes/shortcodes.php:488
     589msgid "Cannot update. There are errors in your form."
     590msgstr "Kan niet updaten. Er staan ​​fouten in je formulier."
     591
     592#: includes/defaults.php:480
     593msgid "Cannot validate uploaded image width and height."
     594msgstr "Kan breedte en hoogte van geüploade afbeelding niet valideren."
     595
     596#: includes/functions.php:4090
     597msgid "Cannot verify config nonce. <a href=''>Retry</a>"
     598msgstr ""
     599"Kan de configuratie nonce niet verifiëren. <a href=''>Opnieuw proberen</a>"
     600
     601#: addons/payments/includes/admin-pages.php:227
     602#: addons/payments/includes/admin-pages.php:246
     603#: addons/payments/includes/admin-pages.php:412
     604#: addons/payments/includes/admin-pages.php:436
     605msgid "Cannot verify nonce."
     606msgstr "Nonce kan niet worden geverifieerd."
     607
     608#: includes/gallery.php:509
     609msgid "Capture ..."
     610msgstr "Vastleggen ..."
     611
     612#: wpadverts.php:278
     613msgid "Categories"
     614msgstr "Categorieën"
     615
     616#: blocks/details/index.php:96 blocks/single-data-table/index.php:261
     617#: includes/class-widget-ads.php:103 includes/defaults.php:105
     618#: templates/single.php:45
     619msgid "Category"
     620msgstr "Categorie"
     621
     622#: includes/admin-pages.php:413
     623msgid "Category Icon"
     624msgstr "Categorie pictogram"
     625
     626#: includes/admin-pages.php:180
     627msgid "Category Icons"
     628msgstr "Categorie pictogrammen"
     629
     630#: includes/functions.php:463
     631msgid "Category: %s"
     632msgstr "Categorie: %s"
     633
     634#: includes/admin-pages.php:227
     635msgid ""
     636"Charge users for Ad postings using credit cards (and some other payment "
     637"gateways)."
     638msgstr ""
     639"Breng gebruikers kosten in rekening voor het plaatsen van advertenties met "
     640"creditcards (en sommige andere betalingsgateways)."
     641
     642#: includes/admin-pages.php:90
     643msgid "Charge users for posting ads on your website."
     644msgstr ""
     645"Laat gebruikers betalen voor het plaatsen van advertenties op jouw website."
     646
     647#: blocks/list/index.php:163 blocks/manage/class-manage-engine.php:35
     648#: blocks/search/index.php:135 includes/shortcodes.php:105
     649msgid "Cheapest First"
     650msgstr "Goedkoopste eerst"
     651
     652#: addons/styling/includes/admin-pages.php:104
     653msgid "Checkbox"
     654msgstr "Selectievakje"
     655
     656#: blocks/publish/class-publish-engine.php:394
     657#: includes/class-shortcode-adverts-add.php:348 includes/functions.php:3179
     658msgid "Checksum does not exist. Please refresh the page and try again."
     659msgstr "Checksum bestaat niet. Ververs de pagina en probeer het opnieuw."
     660
     661#: wpadverts.php:240
     662msgctxt "classified"
     663msgid "Add New"
     664msgstr "Nieuwe toevoegen"
     665
     666#: blocks/class-block-manager.php:44 blocks/class-block-patterns.php:8
     667#: wpadverts.php:250
     668msgid "Classifieds"
     669msgstr "Advertenties"
     670
     671#: blocks/class-block-patterns.php:28 blocks/class-block-patterns.php:40
     672msgid "Classifieds details"
     673msgstr "Advertenties details"
     674
     675#: blocks/class-block-patterns.php:41
     676msgid "Classifieds details page with a sidebar"
     677msgstr "Advertenties details pagina met zijbalk"
     678
     679#: includes/gallery.php:828
     680msgid "Classifieds List"
     681msgstr "Lijst met advertenties"
     682
     683#: blocks/class-block-patterns.php:17
     684msgid ""
     685"Classifieds list with a search form in the left sidebar. Best to use with "
     686"full-width page template."
     687msgstr ""
     688"Advertentielijst met zoekformulier in de linkerzijbalk. Het beste te "
     689"gebruiken met een paginasjabloon over de volledige breedte."
     690
     691#: blocks/class-block-patterns.php:16
     692msgid "Classifieds with a sidebar"
     693msgstr "Advertenties met een zijblak"
     694
     695#: addons/payments/admin/payment-history-list.php:161
     696msgid "Cleanup Now"
     697msgstr "Nu opschonen"
     698
     699#: blocks/manage/index.php:56 includes/gallery.php:644 wpadverts.php:394
     700msgid "Close"
     701msgstr "Sluiten"
     702
     703#: addons/emails/admin/emails-list.php:52
     704msgid "Code"
     705msgstr "Code"
     706
     707#: addons/styling/admin/options.php:321
     708msgid "Color Palette"
     709msgstr "Kleurenpalet"
     710
     711#: addons/styling/admin/options.php:117 addons/styling/admin/options.php:248
     712msgid "Colors Hover"
     713msgstr "Hover kleuren"
     714
     715#: addons/styling/admin/options.php:91 addons/styling/admin/options.php:223
     716msgid "Colors Normal"
     717msgstr "Kleuren normaal"
     718
     719#: addons/core/includes/admin-pages.php:457
     720msgid "Columns"
     721msgstr "Kolommen"
     722
     723#: includes/class-types-admin.php:622 includes/class-types-admin.php:628
     724msgid "Comments"
     725msgstr "Reacties"
     726
     727#: addons/core/includes/admin-pages.php:266
     728#: addons/core/includes/admin-pages.php:267 addons/styling/admin/options.php:52
     729#: addons/styling/admin/options.php:184 addons/styling/admin/options.php:316
     730msgid "Common Settings"
     731msgstr "Algemene instellingen"
     732
     733#: addons/payments/includes/ajax.php:105 addons/payments/payments.php:785
     734#: addons/payments/payments.php:1287
     735msgid "Complete Payment"
     736msgstr "Complete betaling"
     737
     738#: addons/payments/includes/admin-pages.php:788
     739msgid "Complete Payment Page"
     740msgstr "Pagina complete betaling"
     741
     742#: addons/payments/payments.php:74
     743msgctxt "completed status payment"
     744msgid "Completed"
     745msgstr "Afgerond"
     746
     747#: addons/core/admin/types-edit-post.php:33
     748msgid "Configuration"
     749msgstr "Configuratie"
     750
     751#: includes/class-types-admin.php:705
     752msgid "Connect To"
     753msgstr "Verbind met"
     754
     755#: blocks/single-data-table/index.php:208 includes/class-rest-blocks.php:197
     756msgid "Contact Email"
     757msgstr "Contact e-mail"
     758
     759#: addons/contact-form/admin/options.php:15
     760#: addons/contact-form/includes/class-block-details.php:49
     761#: addons/contact-form/includes/class-emails-integration.php:44
     762#: includes/admin-pages.php:146
     763msgid "Contact Form"
     764msgstr "Contact formulier"
     765
     766#: includes/defaults.php:44
     767msgid "Contact Information"
     768msgstr "Contactgegevens"
     769
     770#: blocks/single-contact/index.php:73
     771msgid "Contact options are disabled for expired ads."
     772msgstr "Voor verlopen advertenties zijn de contactopties uitgeschakeld."
     773
     774#: blocks/publish/templates/publish-preview.php:59
     775msgid "Contact options are hidden in the preview."
     776msgstr "Contactopties zijn verborgen in het voorbeeld."
     777
     778#: addons/bank-transfer/bank-transfer.php:63
     779#: addons/payments/includes/admin-pages.php:704
     780#: blocks/single-data-table/index.php:201 includes/class-rest-blocks.php:193
     781#: includes/defaults.php:56
     782msgid "Contact Person"
     783msgstr "Contact persoon"
     784
     785#: blocks/single-data-table/index.php:215 includes/class-rest-blocks.php:201
     786msgid "Contact Phone"
     787msgstr "Contact telefoon"
     788
     789#: addons/core/includes/admin-pages.php:546
     790msgid "Contain"
     791msgstr "Bevat"
     792
     793#: includes/class-rest-blocks.php:173
     794msgid "Content"
     795msgstr "Inhoud"
     796
     797#: includes/class-moderate-admin.php:90
     798msgid "Content Blacklist"
     799msgstr "Inhoud zwarte lijst"
     800
     801#: addons/styling/admin/options.php:324
     802msgid "Cool Gray"
     803msgstr "Koel grijs"
     804
     805#: blocks/single-author/templates/list.php:36
     806msgid "copy"
     807msgstr "kopieëren"
     808
     809#: addons/emails/includes/class-emails.php:368 includes/admin-pages.php:83
     810msgid "Core"
     811msgstr "Core"
     812
     813#: addons/core/admin/moderate.php:15 addons/core/admin/options-gallery.php:15
     814#: addons/core/admin/options.php:15 addons/core/admin/types-edit-post.php:6
     815#: addons/core/admin/types-list.php:23
     816msgid "Core Options"
     817msgstr "Core opties"
     818
     819#: blocks/publish/class-publish-engine.php:413
     820#: blocks/publish/class-publish-engine.php:563
     821#: includes/class-shortcode-adverts-add.php:367
     822#: includes/class-shortcode-adverts-add.php:477
     823msgid ""
     824"Could not validate. Refresh your session and make sure you are using cookies."
     825msgstr ""
     826"Kan niet valideren. Vernieuw je sessie en zorg ervoor dat je cookies "
     827"gebruikt."
     828
     829#: blocks/publish/class-publish-engine.php:392
     830#: includes/class-shortcode-adverts-add.php:346 includes/functions.php:3177
     831msgid ""
     832"Could not verify the request checksum. Please refresh the page and try again."
     833msgstr ""
     834"Kan de checksum van het verzoek niet verifiëren. Ververs de pagina en "
     835"probeer het opnieuw."
     836
     837#: includes/ajax.php:881
     838msgid "Could not write file %s"
     839msgstr "Kan bestand %s niet schrijven"
     840
     841#: includes/class-widget-ads.php:82
     842msgid "Count"
     843msgstr "Aantal"
     844
     845#: addons/core/includes/admin-pages.php:547
     846msgid "Cover"
     847msgstr "Omslagafbeelding"
     848
     849#: includes/functions.php:1776
     850msgid ""
     851"Create an account for me so I can manage all my ads from one place (password "
     852"will be emailed to you) or <a href=\"%s\">Sign In</a>"
     853msgstr ""
     854"Creëer een account voor me zodat ik al mijn advertenties kan beheren (je "
     855"krijgt via de email een wachtwoord). Als je al een account hebt, <a "
     856"href=\"%s\">log dan in</a>."
     857
     858#: addons/payments/includes/admin-pages.php:93
     859msgid "Create at least one <a href='%s'>Pricing</a> before selecting default."
     860msgstr ""
     861"Maak ten minste één <a href='%s'>prijs</a> voordat je standaard selecteert."
     862
     863#: includes/gallery.php:504
     864msgid "Create Image"
     865msgstr "Creëer afbeelding"
     866
     867#: includes/functions.php:4119
     868msgid "Create new types with <strong>Multiverse</strong> extension."
     869msgstr "Maak nieuwe typen met de extensie <strong>Multiverse</strong>."
     870
     871#: includes/gallery.php:504
     872msgid "Create thumbnail from full size image."
     873msgstr "Maak een thumbnail van een afbeelding."
     874
     875#: addons/payments/admin/payment-history-edit.php:47
     876msgid "Created"
     877msgstr "Gemaakt"
     878
     879#: includes/gallery.php:571
     880msgid "Crop"
     881msgstr "Bijsnijden"
     882
     883#: addons/core/includes/admin-pages.php:692
     884msgid "crop image"
     885msgstr "afbeelding bijsnijden"
     886
     887#: includes/admin-pages.php:201
     888msgid "Currencies"
     889msgstr "Valuta"
     890
     891#: addons/core/includes/admin-pages.php:349
     892msgid "Currency"
     893msgstr "Valuta"
     894
     895#: addons/core/includes/admin-pages.php:356
     896msgid "Currency Position"
     897msgstr "Positie valutasymbool"
     898
     899#: addons/core/includes/admin-pages.php:342
     900#: addons/core/includes/admin-pages.php:343
     901msgid "Currency Settings"
     902msgstr "Valutainstellingen"
     903
     904#: includes/gallery.php:617
     905msgid "Current size:"
     906msgstr "Huidige grootte:"
     907
     908#: includes/admin-pages.php:109
     909msgid "Custom Fields"
     910msgstr "Aangepaste velden"
     911
     912#: addons/payments/admin/payment-history-edit.php:125
     913msgid "Customer Details"
     914msgstr "Klant details"
     915
     916#: includes/functions.php:2246
     917msgid "Czech Koruna"
     918msgstr "Tsjechische kroon"
     919
     920#: includes/functions.php:2247
     921msgid "Danish Krone"
     922msgstr "Deense kroon"
     923
     924#: addons/payments/admin/payment-history-list.php:81
     925#: includes/admin-post-type.php:579
     926msgid "Date"
     927msgstr "Datum"
     928
     929#: addons/core/includes/admin-pages.php:302
     930msgid "Date Format"
     931msgstr "Datumnotatie"
     932
     933#: addons/core/includes/admin-pages.php:366
     934msgid "Decimal Places"
     935msgstr "Decimaal plaatsen"
     936
     937#: addons/core/includes/admin-pages.php:376
     938msgid "Decimal Separator"
     939msgstr "Scheidingsteken decimalen"
     940
     941#: addons/core/includes/admin-pages.php:565
     942msgid "Default"
     943msgstr "Standaard"
     944
     945#: addons/core/includes/admin-pages.php:273
     946msgid "Default Ads List Page"
     947msgstr "Pagina met advertentielijst"
     948
     949#: includes/functions-blocks.php:811
     950msgid "Default Block Template"
     951msgstr "Standaard blok template"
     952
     953#: blocks/class-block-patterns.php:29
     954msgid "Default classifieds details page"
     955msgstr "Standaard advertentie details pagina"
     956
     957#: addons/payments/includes/admin-pages.php:771
     958msgid "Default Payment Gateway"
     959msgstr "Standaard betalingsgateway"
     960
     961#: addons/payments/includes/admin-pages.php:780
     962msgid "Default Pricing"
     963msgstr "Standaard prijzen"
     964
     965#: includes/admin-pages.php:129
     966msgid "Default Styles"
     967msgstr "Standaard stijlen"
     968
     969#: addons/core/includes/admin-pages.php:283
     970msgid "Default Visibility"
     971msgstr "Standaard zichtbaarheid"
     972
     973#: addons/core/includes/admin-pages.php:424
     974#: addons/core/includes/admin-pages.php:425
     975msgid "Defaults Values For [adverts_list]"
     976msgstr "Standaardwaarden voor [adverts_list]"
     977
     978#: addons/payments/admin/payment-history-list.php:45
     979#: addons/payments/admin/payment-history-list.php:100
     980#: addons/payments/admin/payment-history-list.php:156
     981#: addons/payments/admin/pricing-list.php:34
     982#: addons/payments/admin/pricing-list.php:67
     983#: addons/payments/admin/pricing-list.php:117 blocks/manage/index.php:51
     984#: templates/manage.php:61 templates/manage.php:62
     985msgid "Delete"
     986msgstr "Verwijderen"
     987
     988#: blocks/manage/class-manage-engine.php:348
     989msgid "Delete ..."
     990msgstr "Verwijderen..."
     991
     992#: addons/core/includes/admin-pages.php:326
     993msgid "Delete Ad images from Media Library when deleting an Ad."
     994msgstr ""
     995"Verwijder advertentieafbeeldingen uit de mediabibliotheek bij het "
     996"verwijderen van een advertentie."
     997
     998#: includes/gallery.php:354
     999msgid "Delete File"
     1000msgstr "Verwijder bestand"
     1001
     1002#: wpadverts.php:406
     1003msgid "Delete Image"
     1004msgstr "Verwijder afbeelding"
     1005
     1006#: blocks/manage/index.php:49
     1007msgid "Delete this item?"
     1008msgstr "Dit item verwijderen?"
     1009
     1010#: addons/payments/includes/admin-pages.php:482
     1011msgid "Deleted %d temporary payment."
     1012msgid_plural "Deleted %d temporary payments"
     1013msgstr[0] "%d tijdelijke betaling verwijderd."
     1014msgstr[1] "%d tijdelijke betalingen verwijderd"
     1015
     1016#: includes/class-widget-ads.php:155
     1017msgid "Descending"
     1018msgstr "Aflopend"
     1019
     1020#: addons/payments/includes/admin-pages.php:828 blocks/details/index.php:110
     1021#: blocks/single-data-table/index.php:166 includes/defaults.php:132
     1022#: includes/gallery.php:465
     1023msgid "Description"
     1024msgstr "Beschrijving"
     1025
     1026#: includes/gallery.php:545
     1027msgid "Dimensions:"
     1028msgstr "Afmetingen:"
     1029
     1030#: admin/options.php:150
     1031msgid "Disable"
     1032msgstr "Uitschakelen"
     1033
     1034#: addons/core/includes/admin-pages.php:434
     1035msgid "Disabled"
     1036msgstr "Uitgeschakeld"
     1037
     1038#: addons/core/includes/admin-pages.php:443
     1039msgid "Display Ads As"
     1040msgstr "Advertenties weergeven als"
     1041
     1042#: includes/admin-pages.php:147
     1043msgid "Display contact form on the Ad details pages."
     1044msgstr "Toon contactformulier op de advertentiedetailpagina."
     1045
     1046#: addons/featured/featured.php:71
     1047msgid "Display this listing as featured."
     1048msgstr "Toon deze vermelding als uitgelicht."
     1049
     1050#: includes/class-widget-categories.php:43
     1051msgid "Displays list of available categories."
     1052msgstr "Een lijst van beschikbare categorieën weergeven."
     1053
     1054#: includes/class-widget-ads.php:52
     1055msgid "Displays list of recent ads."
     1056msgstr "Toont een lijst met recente advertenties."
     1057
     1058#: addons/core/includes/admin-pages.php:317
     1059msgid "Do not show Ad images (and other files) in Media Library."
     1060msgstr ""
     1061"Toon geen advertentieafbeeldingen (en andere bestanden) in de "
     1062"mediabibliotheek."
     1063
     1064#: blocks/single-gallery/templates/gallery.php:51
     1065#: includes/class-gallery-helper.php:217 includes/class-gallery-helper.php:361
     1066#: includes/gallery.php:349
     1067msgid "Download"
     1068msgstr "Download"
     1069
     1070#: includes/class-gallery-helper.php:251 includes/class-gallery-helper.php:411
     1071#: includes/gallery.php:443
     1072msgid "Download File"
     1073msgstr "Download bestand"
     1074
     1075#: includes/functions-blocks.php:826
     1076msgid "Draft Templates"
     1077msgstr "Concept templates"
     1078
     1079#: includes/gallery.php:123
     1080msgid "Drop files here to add them."
     1081msgstr "Sleep bestanden naar dit vak om ze toe te voegen."
     1082
     1083#: addons/styling/includes/admin-pages.php:90
     1084msgid "Dropdown"
     1085msgstr "Dropdown"
     1086
     1087#: addons/core/admin/types-list.php:76 addons/core/admin/types-list.php:137
     1088#: addons/payments/admin/pricing-list.php:64
     1089#: addons/payments/admin/pricing-list.php:66 includes/admin-post-type.php:377
     1090#: templates/manage.php:60
     1091msgid "Edit"
     1092msgstr "Bewerken"
     1093
     1094#: includes/class-types-admin.php:112
     1095msgid "Edit '%s'"
     1096msgstr "Bewerk '%s'"
     1097
     1098#: includes/class-types-admin.php:147
     1099msgid "Edit '%s' Taxonomy"
     1100msgstr "Bewerk '%s' taxonomie"
     1101
     1102#: wpadverts.php:242
     1103msgid "Edit Classified"
     1104msgstr "Bewerk advertentie"
     1105
     1106#: addons/core/admin/types-list.php:61
     1107msgid "Edit Classified Type"
     1108msgstr "Bewerk advertentie type"
     1109
     1110#: includes/admin-post-type.php:377
     1111msgid "Edit date and time"
     1112msgstr "Datum en tijd bewerken"
     1113
     1114#: includes/gallery.php:352
     1115msgid "Edit File"
     1116msgstr "Bestand bewerken"
     1117
     1118#: includes/gallery.php:503 wpadverts.php:405
     1119msgid "Edit Image"
     1120msgstr "Bewerk afbeelding"
     1121
     1122#: blocks/publish/templates/publish-preview.php:27
     1123#: blocks/publish/templates/publish-preview.php:73 templates/add-preview.php:9
     1124msgid "Edit Listing"
     1125msgstr "Vermelding bewerken"
     1126
     1127#: addons/payments/includes/admin-pages.php:176
     1128msgid "Edit Pricing"
     1129msgstr "Prijzen bewerken"
     1130
     1131#: addons/core/admin/types-list.php:114
     1132msgid "Edit Taxonomy"
     1133msgstr "Bewerk taxonomie"
     1134
     1135#: includes/class-types-admin.php:617
     1136msgid "Editor"
     1137msgstr "Redacteur"
     1138
     1139#: includes/functions.php:2248
     1140msgid "Egyptian Pound"
     1141msgstr "Egyptische pond"
     1142
     1143#: addons/bank-transfer/bank-transfer.php:73
     1144#: addons/payments/admin/payment-history-list.php:80
     1145#: addons/payments/includes/admin-pages.php:714 includes/defaults.php:66
     1146#: includes/defaults.php:336 includes/defaults.php:346
     1147#: includes/functions-blocks.php:956 includes/functions.php:2751
     1148msgid "Email"
     1149msgstr "E-mail"
     1150
     1151#: addons/emails/includes/class-field-name-email.php:68
     1152msgid "Email Address (e.g. user@example.com)"
     1153msgstr "E-mailadres (bijv. gebruiker@example.com)"
     1154
     1155#: addons/emails/includes/class-emails-admin.php:344
     1156msgid "Email Name"
     1157msgstr "E-mail naam"
     1158
     1159#: addons/emails/admin/emails-list.php:50
     1160msgid "Email Subject"
     1161msgstr "E-mail onderwerp"
     1162
     1163#: addons/emails/includes/class-emails-admin.php:175
     1164msgid "Email template has been saved."
     1165msgstr "E-mail template is opgeslagen."
     1166
     1167#: addons/emails/admin/emails-edit.php:16
     1168#: addons/emails/admin/emails-list.php:16 addons/emails/admin/options.php:15
     1169msgid "Email Templates"
     1170msgstr "E-mail templates"
     1171
     1172#: includes/admin-pages.php:123
     1173msgid "Emails"
     1174msgstr "E-mails"
     1175
     1176#: includes/admin-pages.php:124
     1177msgid ""
     1178"Emails module sends transactional emails to users and allows editing the "
     1179"email templates content."
     1180msgstr ""
     1181"De e-mailmodule stuurt transactie e-mails naar gebruikers en maakt het "
     1182"bewerken van de inhoud van de e-mail template mogelijk."
     1183
     1184#: addons/core/includes/admin-pages.php:294
     1185msgid "Empty Price Text"
     1186msgstr "Lege prijstekst"
     1187
     1188#: admin/options.php:152
     1189msgid "Enable"
     1190msgstr "Activeer"
     1191
     1192#: addons/payments/includes/admin-pages.php:80
     1193msgid ""
     1194"Enable at least one <a href='%s'>Payment Gateway</a> before selecting "
     1195"default."
     1196msgstr ""
     1197"Schakel ten minste één <a href='%s'>betalingsgateway</a> in voordat je "
     1198"standaard selecteert."
     1199
     1200#: addons/core/admin/types-edit-post.php:24
     1201msgid "Enable comments for these ads now"
     1202msgstr "Schakel nu reacties voor deze advertenties in"
     1203
     1204#: includes/class-moderate-admin.php:144
     1205msgid "Enable Honeypot"
     1206msgstr "Honeypot inschakelen"
     1207
     1208#: includes/admin-pages.php:153
     1209msgid "Enable Real-Time Messaging with Sellers Using Better Messages"
     1210msgstr ""
     1211"Maak realtime berichtenverkeer met verkopers mogelijk met Better Messages"
     1212
     1213#: addons/emails/includes/class-emails-admin.php:353
     1214msgid "Enable sending this message."
     1215msgstr "Schakel verzenden van dit bericht in."
     1216
     1217#: includes/class-moderate-admin.php:174
     1218msgid "Enable Timetrap"
     1219msgstr "Timetrap inschakelen"
     1220
     1221#: addons/core/includes/admin-pages.php:433
     1222msgid "Enabled"
     1223msgstr "Ingeschakeld"
     1224
     1225#: includes/functions.php:2241
     1226msgid "Euros"
     1227msgstr "Euro's"
     1228
     1229#: includes/events.php:64
     1230msgid "Every 5 minutes"
     1231msgstr "Elke 5 minuten"
     1232
     1233#: addons/styling/includes/admin-pages.php:78
     1234msgid "Example Header"
     1235msgstr "Voorbeeld header"
     1236
     1237#: blocks/single-data-table/index.php:159 includes/class-rest-blocks.php:169
     1238#: includes/class-types-admin.php:620
     1239msgid "Excerpt"
     1240msgstr "Samenvatting"
     1241
     1242#: includes/class-types-admin.php:585
     1243msgid "Exclude From Search"
     1244msgstr "Uitsluiten van zoeken"
     1245
     1246#: includes/class-types-admin.php:588
     1247msgid "Exclude posts with this post type from front end search results."
     1248msgstr "Sluit berichten met dit berichttype uit van front-end zoekresultaten."
     1249
     1250#: includes/admin-pages.php:202
     1251msgid ""
     1252"Expand your classifieds site globally with seamless multi-currency support."
     1253msgstr ""
     1254"Breid uw advertentiesite uit naar de rest van de wereld met naadloze "
     1255"ondersteuning voor meerdere valuta."
     1256
     1257#: includes/admin-post-type.php:506 includes/admin-post-type.php:746
     1258msgid "Expired"
     1259msgstr "Verlopen"
     1260
     1261#: wpadverts.php:226
     1262msgid "Expired <span class=\"count\">(%s)</span>"
     1263msgid_plural "Expired <span class=\"count\">(%s)</span>"
     1264msgstr[0] "<span class=\"count\">(%s)</span> verlopen"
     1265msgstr[1] "<span class=\"count\">(%s)</span> verlopen"
     1266
     1267#: addons/payments/includes/class-emails-integration.php:254
     1268msgid "Expired Ad has been renewed (action required)."
     1269msgstr "Verlopen advertentie is vernieuwd (actie vereist)."
     1270
     1271#: addons/payments/includes/class-emails-integration.php:239
     1272msgid "Expired Ad has been renewed."
     1273msgstr "Verlopen advertentie is verlengd."
     1274
     1275#: addons/core/includes/admin-pages.php:395
     1276msgid "Expired Ad HTTP Status"
     1277msgstr "HTTP-status van verlopen advertentie"
     1278
     1279#: addons/core/includes/admin-pages.php:388
     1280#: addons/core/includes/admin-pages.php:389
     1281msgid "Expired Ads Handling"
     1282msgstr "Verlopen advertentie verwerking"
     1283
     1284#: includes/admin-post-type.php:748
     1285msgid "Expired:"
     1286msgstr "Verlopen:"
     1287
     1288#: includes/admin-post-type.php:364
     1289msgid "Expired: <b>%s</b>"
     1290msgstr "Verlopen: <b>%s</b>"
     1291
     1292#: includes/admin-post-type.php:578
     1293msgid "Expires"
     1294msgstr "Verloopt"
     1295
     1296#: templates/manage.php:39
     1297msgid "Expires %s"
     1298msgstr "Verloopt %s"
     1299
     1300#: includes/admin-post-type.php:747
     1301msgid "Expires:"
     1302msgstr "Verloopt:"
     1303
     1304#: includes/admin-post-type.php:366
     1305msgid "Expires: <b>%s</b>"
     1306msgstr "Vervalt: <b>%s</b>"
     1307
     1308#: addons/styling/admin/options.php:63 addons/styling/admin/options.php:195
     1309#: addons/styling/admin/options.php:366
     1310msgid "Extra Large"
     1311msgstr "Extra groot"
     1312
     1313#: addons/styling/admin/options.php:59 addons/styling/admin/options.php:191
     1314#: addons/styling/admin/options.php:362
     1315msgid "Extra Small"
     1316msgstr "Extra klein"
     1317
     1318#: addons/styling/admin/options.php:74 addons/styling/admin/options.php:206
     1319#: addons/styling/admin/options.php:377
     1320msgid "Extra Thick"
     1321msgstr "Extra vet"
     1322
     1323#: addons/payments/payments.php:88
     1324msgid "Failed <span class=\"count\">(%s)</span>"
     1325msgid_plural "Failed <span class=\"count\">(%s)</span>"
     1326msgstr[0] "Mislukt <span class=\"count\">(%s)</span>"
     1327msgstr[1] "Mislukt <span class=\"count\">(%s)</span>"
     1328
     1329#: addons/payments/payments.php:83
     1330msgctxt "failed status payment"
     1331msgid "Failed"
     1332msgstr "Mislukt"
     1333
     1334#: addons/featured/featured.php:161
     1335msgid "Feature this ad - it will be styled differently and sticky"
     1336msgstr "Toon deze advertentie - deze wordt anders gestyled en sticky"
     1337
     1338#: addons/featured/featured.php:256 addons/featured/featured.php:292
     1339#: addons/featured/featured.php:315 includes/gallery.php:335
     1340#: includes/gallery.php:453
     1341msgid "Featured"
     1342msgstr "Uitgelicht"
     1343
     1344#: addons/featured/admin/options.php:15 includes/admin-pages.php:140
     1345msgid "Featured Ads"
     1346msgstr "Aanbevolen advertenties"
     1347
     1348#: includes/class-widget-ads.php:175
     1349msgid "Featured Only"
     1350msgstr "Alleen uitgelicht"
     1351
     1352#: includes/admin-pages.php:137
     1353msgid "Features"
     1354msgstr "Functies"
     1355
     1356#: includes/admin-pages.php:166
     1357msgid "Fee Per Category"
     1358msgstr "Vergoeding per categorie"
     1359
     1360#: includes/defaults.php:327
     1361msgid "Field cannot be empty."
     1362msgstr "Veld mag niet leeg zijn."
     1363
     1364#: includes/ajax.php:345
     1365msgid "File could not be deleted."
     1366msgstr "Bestand kon niet worden verwijderd."
     1367
     1368#: includes/ajax.php:414
     1369msgid "File does not exist."
     1370msgstr "Bestand bestaat niet."
     1371
     1372#: includes/gallery.php:529
     1373msgid "File name:"
     1374msgstr "Bestandsnaam:"
     1375
     1376#: includes/gallery.php:541
     1377msgid "File size:"
     1378msgstr "Bestandsgrootte:"
     1379
     1380#: includes/gallery.php:533
     1381msgid "File type:"
     1382msgstr "Bestandstype:"
     1383
     1384#: blocks/single-gallery/templates/gallery.php:47
     1385msgid "File: "
     1386msgstr "Bestand:"
     1387
     1388#: addons/core/includes/admin-pages.php:548
     1389msgid "Fill"
     1390msgstr "Vullen"
     1391
     1392#: addons/payments/templates/publish-payment.php:52
     1393msgid "Fill Payment Form"
     1394msgstr "Vul het betalingsformulier in"
     1395
     1396#: addons/emails/admin/emails-list.php:40
     1397#: addons/emails/admin/emails-list.php:135
     1398#: addons/payments/admin/payment-history-list.php:68
     1399msgid "Filter"
     1400msgstr "Filter"
     1401
     1402#: addons/core/admin/types-icon-picker.php:7
     1403msgid "Filter ..."
     1404msgstr "Filter…"
     1405
     1406#: addons/emails/admin/emails-list.php:29
     1407#: addons/emails/admin/emails-list.php:128
     1408msgid "Filter By Module"
     1409msgstr "Filteren op module"
     1410
     1411#: addons/emails/admin/emails-list.php:35
     1412msgid "Filter By Recipient"
     1413msgstr "Filteren op ontvanger"
     1414
     1415#: includes/admin-pages.php:417
     1416msgid "Filter Icons ..."
     1417msgstr "Filter pictogrammen..."
     1418
     1419#: templates/list.php:91
     1420msgid "Filter Results"
     1421msgstr "Resultaten filteren"
     1422
     1423#: addons/emails/includes/class-field-name-email.php:82
     1424msgid "First Name"
     1425msgstr "Voornaam"
     1426
     1427#: addons/styling/admin/options.php:335
     1428msgid "Flat"
     1429msgstr "Vlak"
     1430
     1431#: includes/gallery.php:575
     1432msgid "Flip Horizontally"
     1433msgstr "Horizontaal spiegelen"
     1434
     1435#: includes/gallery.php:574
     1436msgid "Flip Vertically"
     1437msgstr "Verticaal spiegelen"
     1438
     1439#: addons/styling/admin/options.php:79 addons/styling/admin/options.php:211
     1440msgid "Font Weight"
     1441msgstr "Lettertype gewicht"
     1442
     1443#: addons/styling/admin/options.php:18
     1444msgid "Forms"
     1445msgstr "Formulieren"
     1446
     1447#: addons/payments/admin/pricing-list.php:84 addons/payments/payments.php:343
     1448#: addons/payments/payments.php:398 addons/payments/payments.php:482
     1449#: addons/payments/payments.php:935
     1450msgid "Free"
     1451msgstr "Gratis"
     1452
     1453#: addons/payments/payments.php:1064
     1454msgid "Free Renewal automatically marked as completed."
     1455msgstr "Gratis verlenging automatisch gemarkeerd als voltooid."
     1456
     1457#: addons/payments/payments.php:1049
     1458msgid "Free Renewals cannot be used more than once every %d days."
     1459msgstr ""
     1460"Gratis verlengingen kunnen niet meer dan eens per %d dagen worden gebruikt."
     1461
     1462#: addons/emails/includes/class-emails-admin.php:367
     1463msgid "From"
     1464msgstr "Van"
     1465
     1466#: blocks/list/index.php:170 blocks/manage/class-manage-engine.php:42
     1467#: blocks/search/index.php:142 includes/shortcodes.php:112
     1468msgid "From A to Z"
     1469msgstr "Van A naar Z"
     1470
     1471#: addons/contact-form/includes/admin-pages.php:112
     1472msgid "From Email"
     1473msgstr "Van e-mail"
     1474
     1475#: addons/contact-form/includes/admin-pages.php:105
     1476msgid "From Name"
     1477msgstr "Van naam"
     1478
     1479#: blocks/list/index.php:171 blocks/manage/class-manage-engine.php:43
     1480#: blocks/search/index.php:143 includes/shortcodes.php:113
     1481msgid "From Z to A"
     1482msgstr "Van Z naar A"
     1483
     1484#: addons/styling/admin/options.php:64 addons/styling/admin/options.php:196
     1485#: addons/styling/admin/options.php:367
     1486msgid "Full"
     1487msgstr "Volledig"
     1488
     1489#: addons/emails/includes/class-field-name-email.php:64
     1490msgid "Full Name"
     1491msgstr "Volledige naam"
     1492
     1493#: includes/class-gallery-helper.php:319
     1494msgid "Full Screen"
     1495msgstr "Volledig scherm"
     1496
     1497#: addons/core/admin/moderate.php:16 addons/core/admin/options-gallery.php:16
     1498#: addons/core/admin/options.php:16 addons/core/admin/types-edit-post.php:7
     1499#: addons/core/admin/types-list.php:24 includes/admin-post-type.php:555
     1500#: includes/defaults.php:120
     1501msgid "Gallery"
     1502msgstr "Galerij"
     1503
     1504#: includes/gallery.php:818
     1505msgid "Gallery - Full Size"
     1506msgstr "Galerij - volle grootte"
     1507
     1508#: includes/gallery.php:823
     1509msgid "Gallery - Slider"
     1510msgstr "Galerij - slider"
     1511
     1512#: addons/core/includes/admin-pages.php:508
     1513msgid "Gallery Pagination"
     1514msgstr "Galerij paginering"
     1515
     1516#: addons/core/includes/admin-pages.php:556
     1517#: addons/core/includes/admin-pages.php:557
     1518msgid "Gallery Upload"
     1519msgstr "Galerij upload"
     1520
     1521#: addons/payments/admin/payment-history-edit.php:36
     1522msgid "Gateway"
     1523msgstr "Methode"
     1524
     1525#: addons/core/admin/types-edit-post.php:68
     1526msgid "General"
     1527msgstr "Algemeen"
     1528
     1529#: admin/options.php:141
     1530msgid "Get This Addon"
     1531msgstr "Verkrijg deze add-on"
     1532
     1533#: templates/manage-edit.php:2
     1534msgid "Go Back"
     1535msgstr "Ga terug"
     1536
     1537#: blocks/manage/templates/manage-edit.php:16
     1538msgid "Go back"
     1539msgstr "Ga terug"
     1540
     1541#: blocks/manage/index.php:54
     1542msgid "Go back to ads list"
     1543msgstr "Ga terug naar het advertentie overzicht"
     1544
     1545#: includes/class-widget-categories.php:273
     1546msgid "Go Up (%s)"
     1547msgstr "Ga omhoog (%s)"
     1548
     1549#: includes/class-widget-categories.php:275
     1550msgid "Go Up (Home)"
     1551msgstr "Ga omhoog (Home)"
     1552
     1553#: addons/styling/admin/options.php:325
     1554msgid "Gray"
     1555msgstr "Grijs"
     1556
     1557#. Author of the plugin/theme
     1558msgid "Greg Winiarski"
     1559msgstr "Greg Winiarski"
     1560
     1561#: templates/list.php:50
     1562msgid "Grid"
     1563msgstr "Raster"
     1564
     1565#: addons/core/includes/admin-pages.php:446
     1566msgid "Grid (2 or more columns)"
     1567msgstr "Raster (2 of meer kolommen)"
     1568
     1569#: addons/emails/admin/emails-edit.php:51
     1570msgid "Header Name"
     1571msgstr "Headernaam"
     1572
     1573#: addons/payments/includes/class-emails-integration.php:165
     1574msgid ""
     1575"Hello\n"
     1576"your Ad titled '{$advert.post_title}' has been renewed and is visible on "
     1577"site again.\n"
     1578"\n"
     1579"To view your Ad you can use the link below:\n"
     1580"{$advert.ID|get_permalink}"
     1581msgstr ""
     1582"Hallo\n"
     1583"Jouw advertentie met de titel '{$advert.post_title}' is vernieuwd en is weer "
     1584"zichtbaar op de site.\n"
     1585"\n"
     1586"Om jouw advertentie te bekijken kan je onderstaande link gebruiken:\n"
     1587"{$advert.ID|get_permalink}"
     1588
     1589#: addons/payments/includes/class-emails-integration.php:240
     1590msgid ""
     1591"Hello,\n"
     1592"Ad titled '%s' has been renewed and published.\n"
     1593"\n"
     1594"You can view the Ad here:\n"
     1595"{$advert.ID|get_permalink}\n"
     1596"\n"
     1597"You can edit the Ad here:\n"
     1598"{$advert|admin_edit_url}"
     1599msgstr ""
     1600"Hallo,\n"
     1601"Advertentie getiteld '%s' is vernieuwd en gepubliceerd.\n"
     1602"\n"
     1603"Je kan de advertentie hier bekijken:\n"
     1604"{$advert.ID|get_permalink}\n"
     1605"\n"
     1606"Je kan de advertentie hier bewerken:\n"
     1607"{$advert|admin_edit_url}"
     1608
     1609#: addons/payments/includes/class-emails-integration.php:255
     1610msgid ""
     1611"Hello,\n"
     1612"Ad titled '{$advert.post_title}' has been renewed and is pending approval.\n"
     1613"\n"
     1614"You can view the Ad here:\n"
     1615"{$advert.ID|get_permalink}\n"
     1616"\n"
     1617"You can edit the Ad here:\n"
     1618"{$advert|admin_edit_url}"
     1619msgstr ""
     1620"Hallo,\n"
     1621"Advertentie getiteld '{$advert.post_title}' is vernieuwd en wacht op "
     1622"goedkeuring.\n"
     1623"Je kan de advertentie hier bekijken:\n"
     1624"{$advert.ID|get_permalink}\n"
     1625"\n"
     1626"Je kan de advertentie hier bewerken:\n"
     1627"{$advert|admin_edit_url}"
     1628
     1629#: addons/emails/includes/class-emails-messages.php:231
     1630msgid ""
     1631"Hello,\n"
     1632"Ad titled '{$advert.post_title}' has been updated by the user and is pending "
     1633"moderation.\n"
     1634"\n"
     1635"You can edit the Ad here:\n"
     1636"{$advert|admin_edit_url}\n"
     1637"\n"
     1638"Please either Publish or Trash it then the owner will be notified."
     1639msgstr ""
     1640"Hallo,\n"
     1641"De advertentie met de titel '{$advert.post_title}' is bijgewerkt door de "
     1642"gebruiker en wacht op moderatie.\n"
     1643"\n"
     1644"Je kunt de advertentie hier bewerken:\n"
     1645"{$advert|admin_edit_url}\n"
     1646"\n"
     1647"Publiceer de advertentie of verwijder deze. De eigenaar wordt dan op de "
     1648"hoogte gesteld."
     1649
     1650#: addons/payments/includes/class-emails-integration.php:195
     1651msgid ""
     1652"Hello,\n"
     1653"new Ad titled '{$advert.post_title}' (ID {$advert.ID}) has been posted and "
     1654"is pending payment.\n"
     1655"\n"
     1656"You will be notified again when the payment will be processed.\n"
     1657"\n"
     1658"You can edit the Ad here:\n"
     1659"{$advert|admin_edit_url}"
     1660msgstr ""
     1661"Hallo,\n"
     1662"nieuwe advertentie getiteld '{$advert.post_title}' (ID {$advert.ID}) is "
     1663"geplaatst en wacht op betaling.\n"
     1664"\n"
     1665"Je krijgt weer bericht wanneer de betaling wordt verwerkt.\n"
     1666"\n"
     1667"Je kan de advertentie hier bewerken:\n"
     1668"{$advert|admin_edit_url}"
     1669
     1670#: addons/emails/includes/class-emails-messages.php:203
     1671#: addons/payments/includes/class-emails-integration.php:225
     1672msgid ""
     1673"Hello,\n"
     1674"new Ad titled '{$advert.post_title}' has been published.\n"
     1675"\n"
     1676"You can view the Ad here:\n"
     1677"{$advert.ID|get_permalink}\n"
     1678"\n"
     1679"You can edit the Ad here:\n"
     1680"{$advert|admin_edit_url}"
     1681msgstr ""
     1682"Hallo,\n"
     1683"nieuwe advertentie getiteld '{$advert.post_title}' is gepubliceerd.\n"
     1684"\n"
     1685"Je kan de advertentie hier bekijken:\n"
     1686"{$advert.ID|get_permalink}\n"
     1687"\n"
     1688"Je kan de advertentie hier bewerken:\n"
     1689"{$advert|admin_edit_url}"
     1690
     1691#: addons/emails/includes/class-emails-messages.php:217
     1692msgid ""
     1693"Hello,\n"
     1694"New Ad titled '{$advert.post_title}' has been saved and is pending "
     1695"moderation.\n"
     1696"\n"
     1697"You can edit the Ad here:\n"
     1698"{$advert|admin_edit_url}\n"
     1699"\n"
     1700"Please either Publish or Trash it then the owner will be notified."
     1701msgstr ""
     1702"Hallo,\n"
     1703"Nieuwe advertentie met de titel '{$advert.post_title}' is opgeslagen en "
     1704"wacht op moderatie.\n"
     1705"\n"
     1706"Je kan de advertentie hier bewerken:\n"
     1707"{$advert|admin_edit_url}\n"
     1708"\n"
     1709"Publiceer het of gooi het in de prullenbak, dan wordt de eigenaar op de "
     1710"hoogte gesteld."
     1711
     1712#: addons/payments/includes/class-emails-integration.php:210
     1713msgid ""
     1714"Hello,\n"
     1715"the payment for Ad '{$advert.post_title}' has been completed.\n"
     1716"\n"
     1717"You can view the payment details here:\n"
     1718"{$payment|admin_edit_url}"
     1719msgstr ""
     1720"Hallo,\n"
     1721"de betaling voor advertentie '{$advert.post_title}' is voltooid.\n"
     1722"\n"
     1723"Je kan de betalingsgegevens hier bekijken:\n"
     1724"{$payment|admin_edit_url}"
     1725
     1726#: addons/emails/includes/class-emails-messages.php:175
     1727msgid ""
     1728"Hello,\n"
     1729"we are sorry to inform you that your Ad titled '{$advert.post_title}' has "
     1730"been rejected by the administrator and will not be published."
     1731msgstr ""
     1732"Hallo,\n"
     1733"het spijt ons je te moeten meedelen dat je advertentie met de titel "
     1734"'{$advert.post_title}' is afgewezen door de beheerder en niet zal worden "
     1735"gepubliceerd."
     1736
     1737#: addons/payments/includes/class-emails-integration.php:120
     1738msgid ""
     1739"Hello,\n"
     1740"we have received your order {$payment|payment_order_id} and we are "
     1741"processing your payment.\n"
     1742"\n"
     1743"Created By: {$payment|meta:adverts_person}\n"
     1744"Order Date: {$payment.post_date|format_date}\n"
     1745"To Pay: {$payment|payment_to_pay}\n"
     1746"\n"
     1747"If you were unable to finish the payment on site you can do it using the "
     1748"link below.\n"
     1749"{$payment|payment_complete_url}"
     1750msgstr ""
     1751"Hallo,\n"
     1752"we hebben je bestelling {$payment|payment_order_id} ontvangen en we zijn je "
     1753"betaling aan het verwerken.\n"
     1754"\n"
     1755"Gemaakt door: {$payment|meta:adverts_person}\n"
     1756"Besteldatum: {$payment.post_date|format_date}\n"
     1757"Betalen: {$payment|payment_to_pay}\n"
     1758"\n"
     1759"Als je de betaling niet ter plaatse kon afronden, kun je dat doen via "
     1760"onderstaande link.\n"
     1761"{$betaling|payment_complete_url}"
     1762
     1763#: addons/emails/includes/class-emails-messages.php:161
     1764msgid ""
     1765"Hello,\n"
     1766"your Ad titled '{$advert.post_title} has been approved.\n"
     1767"\n"
     1768"To view your Ad you can use the link below:\n"
     1769"{$advert.ID|get_permalink}"
     1770msgstr ""
     1771"Hallo,\n"
     1772"je advertentie met de titel '{$advert.post_title} is goedgekeurd.\n"
     1773"\n"
     1774"Om jouw advertentie te bekijken kan je onderstaande link gebruiken:\n"
     1775"{$advert.ID|get_permalink}"
     1776
     1777#: addons/payments/includes/class-emails-integration.php:150
     1778msgid ""
     1779"Hello,\n"
     1780"your Ad titled '{$advert.post_title}' has been approved.\n"
     1781"\n"
     1782"To view your Ad you can use the link below:\n"
     1783"{$advert.ID|get_permalink}"
     1784msgstr ""
     1785"Hallo,\n"
     1786"je advertentie met de titel '{$advert.post_title}' is goedgekeurd.\n"
     1787"\n"
     1788"Om je advertentie te bekijken kan je onderstaande link gebruiken:\n"
     1789"{$advert.ID|get_permalink}"
     1790
     1791#: addons/emails/includes/class-emails-messages.php:133
     1792msgid ""
     1793"Hello,\n"
     1794"your Ad titled '{$advert.post_title}' has been published.\n"
     1795"\n"
     1796"To view your Ad you can use the link below:\n"
     1797"{$advert.ID|get_permalink}"
     1798msgstr ""
     1799"Hallo,\n"
     1800"je advertentie met de titel '{$advert.post_title}' is gepubliceerd.\n"
     1801"\n"
     1802"Om jouw advertentie te bekijken kan je onderstaande link gebruiken:\n"
     1803"{$advert.ID|get_permalink}"
     1804
     1805#: addons/emails/includes/class-emails-messages.php:147
     1806msgid ""
     1807"Hello,\n"
     1808"your Ad titled '{$advert.post_title}' has been saved and is pending "
     1809"moderation.\n"
     1810"\n"
     1811"Once the administrator will approve or reject your Ad you will be notified "
     1812"by email."
     1813msgstr ""
     1814"Hallo,\n"
     1815"je advertentie met de titel '{$advert.post_title}' is opgeslagen en wacht op "
     1816"moderatie.\n"
     1817"\n"
     1818"Zodra de beheerder jouw advertentie goedkeurt of afwijst, word je per e-mail "
     1819"op de hoogte gesteld."
     1820
     1821#: addons/payments/includes/class-emails-integration.php:105
     1822msgid ""
     1823"Hello,\n"
     1824"your Ad titled '{$advert.post_title}' has been saved and is pending payment."
     1825"\n"
     1826"\n"
     1827"We will notify you once the payment will be processed."
     1828msgstr ""
     1829"Hallo,\n"
     1830"je advertentie met de titel '{$advert.post_title}' is opgeslagen en wacht op "
     1831"betaling.\n"
     1832"\n"
     1833"We laten het je weten zodra de betaling is verwerkt."
     1834
     1835#: addons/emails/includes/class-emails-messages.php:189
     1836msgid ""
     1837"Hello,\n"
     1838"your Ad titled '{$advert.post_title}' has expired and is no longer available "
     1839"on site."
     1840msgstr ""
     1841"Hallo,\n"
     1842"je advertentie met de titel '{$advert.post_title}' is verlopen en is niet "
     1843"langer beschikbaar op de site."
     1844
     1845#: addons/payments/includes/class-emails-integration.php:180
     1846msgid ""
     1847"Hello,\n"
     1848"your Ad titled '{$post.post_title}' has been renewed and is pending "
     1849"moderation.\n"
     1850"\n"
     1851"Once the administrator will approve or reject your Ad you will be notified "
     1852"by email."
     1853msgstr ""
     1854"Hallo,\n"
     1855"Je advertentie met de titel '{$post.post_title}' is vernieuwd en wacht op "
     1856"moderatie.\n"
     1857"\n"
     1858"Zodra de beheerder de advertentie goedkeurt of afwijst, word je per e-mail "
     1859"op de hoogte gesteld."
     1860
     1861#: addons/payments/includes/class-emails-integration.php:135
     1862msgid ""
     1863"Hello,\n"
     1864"your order {$payment|payment_order_id} has been proccessed and marked as "
     1865"completed."
     1866msgstr ""
     1867"Hallo,\n"
     1868"je bestelling {$payment|payment_order_id} is verwerkt en gemarkeerd als "
     1869"voltooid."
     1870
     1871#: includes/admin-pages.php:84
     1872msgid "Here you can configure most basic options, applicable on any site."
     1873msgstr ""
     1874"Hier kan je de meeste basisopties voor advertenties configureren die op elke "
     1875"site van toepassing zijn."
     1876
     1877#: addons/styling/admin/options.php:388
     1878msgid "Hide"
     1879msgstr "Verbergen"
     1880
     1881#: includes/class-widget-categories.php:92
     1882msgid "Hide empty"
     1883msgstr "Verberg leeg"
     1884
     1885#: addons/payments/admin/payment-history-list.php:65
     1886msgid "Hide Free"
     1887msgstr "Verberg gratis"
     1888
     1889#: includes/class-types-admin.php:713
     1890msgid "Hierarchical"
     1891msgstr "Hiërarchisch"
     1892
     1893#: includes/class-moderate-admin.php:112
     1894msgid ""
     1895"HINT: Jeff Starr from PerishablePress.com compiled a great <a href=\"https:"
     1896"//perishablepress.com/wp/wp-content/online/code/wordpress-ultimate-comment-"
     1897"blacklist.txt\">list of common spam phrases</a>."
     1898msgstr ""
     1899"HINT: Jeff Starr van PerishablePress.com heeft een geweldige <a href=\"https:"
     1900"//perishablepress.com/wp/wp-content/online/code/wordpress-ultimate-comment-"
     1901"blacklist.txt\">lijst met veelvoorkomende spamwoorden samengesteld</a>."
     1902
     1903#: includes/class-moderate-admin.php:135
     1904msgid "Honeypot"
     1905msgstr "Honeypot"
     1906
     1907#: includes/class-moderate-admin.php:157
     1908msgid "Honeypot Name"
     1909msgstr "Honeypot naam"
     1910
     1911#: includes/class-moderate-admin.php:150
     1912msgid "Honeypot Title"
     1913msgstr "Honeypot titel"
     1914
     1915#: includes/functions.php:2249
     1916msgid "Hong Kong Dollar"
     1917msgstr "Hong Kong dollar"
     1918
     1919#: addons/core/includes/admin-pages.php:550
     1920msgid "How images should be displayed in the gallery."
     1921msgstr "Hoe afbeeldingen in de galerij moeten worden weergegeven."
     1922
     1923#: includes/defaults.php:315
     1924msgid "HTML - removes unsafe HTML tags and attributes."
     1925msgstr "HTML - verwijdert onveilige HTML-tags en -attributen."
     1926
     1927#. Plugin URI of the plugin/theme
     1928msgid "https://wpadverts.com/"
     1929msgstr "https://wpadverts.com/"
     1930
     1931#: includes/functions.php:2250
     1932msgid "Hungarian Forint"
     1933msgstr "Hongaarse forint"
     1934
     1935#: includes/admin-pages.php:420
     1936msgid "Icons V4"
     1937msgstr "Pictogrammen V6"
     1938
     1939#: includes/admin-pages.php:421
     1940msgid "Icons V6"
     1941msgstr "Pictogrammen V6"
     1942
     1943#: addons/payments/admin/payment-history-list.php:78
     1944#: blocks/single-data-table/index.php:145 includes/class-rest-blocks.php:161
     1945msgid "ID"
     1946msgstr "ID"
     1947
     1948#: addons/core/includes/admin-pages.php:563
     1949msgid "Image Editor"
     1950msgstr "Afbeelding editor"
     1951
     1952#: addons/core/includes/admin-pages.php:573
     1953msgid "Image Editor Capability"
     1954msgstr "Afbeelding editor rechten"
     1955
     1956#: addons/core/includes/admin-pages.php:542
     1957msgid "Image Fit"
     1958msgstr "Afbeelding fit"
     1959
     1960#: includes/gallery.php:819
     1961msgid ""
     1962"Image in original size - used on classified details page in the gallery."
     1963msgstr ""
     1964"Afbeelding in originele grootte - gebruikt op de geclassificeerde "
     1965"detailpagina in de galerij."
     1966
     1967#: includes/gallery.php:570
     1968msgid "Image Manipulation"
     1969msgstr "Afbeeldings-manipulatie"
     1970
     1971#: includes/gallery.php:834
     1972msgid "Image resized to %d x %d - the image visible in upload preview."
     1973msgstr ""
     1974"Afbeelding aangepast naar %d x %d - de afbeelding zichtbaar in "
     1975"uploadvoorbeeld."
     1976
     1977#: includes/gallery.php:824
     1978msgid ""
     1979"Image resized to %d x %d - used in the images slider on classified details "
     1980"page."
     1981msgstr ""
     1982"Afbeelding aangepast naar %d x %d - gebruikt in de slider voor afbeeldingen "
     1983"op de pagina met geclassificeerde details."
     1984
     1985#: includes/gallery.php:829
     1986msgid "Image resized to %d x %d - used on the classifieds list."
     1987msgstr ""
     1988"Afbeelding aangepast naar %d x %d - gebruikt op de lijst met advertenties."
     1989
     1990#: includes/gallery.php:581
     1991msgid "Image Size"
     1992msgstr "Afbeeldingsgrootte"
     1993
     1994#: addons/core/includes/admin-pages.php:583
     1995#: addons/core/includes/admin-pages.php:584
     1996msgid "Image Sizes"
     1997msgstr "Afbeeldingsformaten"
     1998
     1999#: includes/admin-post-type.php:622
     2000msgid "in %s"
     2001msgstr "in %s"
     2002
     2003#: includes/gallery.php:409
     2004msgid ""
     2005"In 'Preview' select 'Video' and click 'Capture ...' button to generate "
     2006"thumbnails."
     2007msgstr ""
     2008"In 'Preview' selecteer 'Video' en klik op de knop 'Opnemen...' om thumbnails "
     2009"te genereren."
     2010
     2011#: blocks/manage/templates/manage-list-item.php:49 templates/manage.php:26
     2012msgid "Inactive — This Ad expired."
     2013msgstr "Inactief — Deze advertentie is verlopen."
     2014
     2015#: blocks/manage/templates/manage-list-item.php:43 templates/manage.php:22
     2016msgid "Inactive — This Ad is in moderation."
     2017msgstr "Inactief — Deze advertentie is met behandeling."
     2018
     2019#: addons/payments/payments.php:1246 addons/payments/payments.php:1286
     2020msgid "Inactive — Waiting for payment."
     2021msgstr "Non-actief - Wacht op betaling."
     2022
     2023#: includes/ajax.php:341
     2024msgid "Incorrect attachment ID."
     2025msgstr "Onjuiste bijlage-ID."
     2026
     2027#: includes/ajax.php:386
     2028msgid "Incorrect field name."
     2029msgstr "Onjuiste veldnaam."
     2030
     2031#: includes/ajax.php:247 includes/ajax.php:466 includes/ajax.php:562
     2032#: includes/ajax.php:638 includes/ajax.php:851
     2033msgid "Incorrect Post or Attachment ID."
     2034msgstr "Onjuist bericht- of bijlage-ID."
     2035
     2036#: blocks/manage/class-manage-engine.php:248 includes/shortcodes.php:436
     2037#: includes/shortcodes.php:540
     2038msgid "Incorrect post status [%s]."
     2039msgstr "Onjuiste berichtstatus [%s]."
     2040
     2041#: includes/defaults.php:388
     2042msgid "Incorrect string length."
     2043msgstr "Onjuiste string lengte."
     2044
     2045#: includes/functions.php:2252
     2046msgid "Indian Rupees"
     2047msgstr "Indiase roepie"
     2048
     2049#: addons/styling/admin/options.php:347
     2050msgid "Inside"
     2051msgstr "Binnen"
     2052
     2053#: includes/defaults.php:301
     2054msgid "Integer - converts string to absolute integer."
     2055msgstr "Integer - converteert een string naar geheel getal."
     2056
     2057#: includes/admin-pages.php:103
     2058msgid ""
     2059"Integrate user Ads with BuddyPress profiles, registration and private "
     2060"messages."
     2061msgstr ""
     2062"Integreer gebruikersadvertenties met BuddyPress-profielen, registratie en "
     2063"privéberichten."
     2064
     2065#: addons/styling/admin/options.php:386
     2066msgid "Interline"
     2067msgstr "tussenlijn"
     2068
     2069#: includes/ajax.php:1000
     2070msgid "Invalid Nonce."
     2071msgstr "Ongeldige nonce."
     2072
     2073#: includes/class-types-admin.php:220 includes/class-types-admin.php:248
     2074#: includes/class-types-admin.php:294
     2075msgid "Invalid nonce."
     2076msgstr "Ongeldige nonce."
     2077
     2078#: includes/ajax.php:1278 includes/ajax.php:1325
     2079msgid "Invalid param name."
     2080msgstr "Ongeldige parameternaam."
     2081
     2082#: includes/class-form.php:176 includes/class-upload-helper.php:122
     2083msgid "Invalid value."
     2084msgstr "Ongeldige waarde."
     2085
     2086#: includes/functions.php:2268
     2087msgid "Iranian Rial"
     2088msgstr "Iraanse rial"
     2089
     2090#: addons/emails/includes/class-emails-admin.php:351
     2091msgid "Is Active"
     2092msgstr "Is actief"
     2093
     2094#: includes/class-moderate-admin.php:141 includes/class-moderate-admin.php:171
     2095msgid "Is Enabled"
     2096msgstr "Is ingeschakeld"
     2097
     2098#: includes/defaults.php:366
     2099msgid "Is Integer"
     2100msgstr "Is integer"
     2101
     2102#: includes/defaults.php:376
     2103msgid "Is Number"
     2104msgstr "Is nummer"
     2105
     2106#: includes/defaults.php:325
     2107msgid "Is Required"
     2108msgstr "Is vereist"
     2109
     2110#: includes/functions.php:2251
     2111msgid "Israeli Shekel"
     2112msgstr "Israëlische sjekel"
     2113
     2114#: includes/functions.php:3235
     2115msgid ""
     2116"It seems you are not the post %d author. Please refresh the page and try "
     2117"again."
     2118msgstr ""
     2119"Het lijkt erop dat je niet auteur van het bericht %d bent. Ververs de pagina "
     2120"en probeer het opnieuw."
     2121
     2122#: blocks/manage/index.php:53
     2123msgid "Item deleted successfully."
     2124msgstr "Item succesvol verwijderd."
     2125
     2126#: includes/defaults.php:90
     2127msgid "Item Information"
     2128msgstr "Item informatie"
     2129
     2130#: addons/payments/admin/payment-history-list.php:177
     2131msgid "Items: <strong>%d</strong>. Revenue <strong>%s</strong>."
     2132msgstr "Artikelen: <strong>%d</strong>. Opbrengst <strong>%s</strong>."
     2133
     2134#: includes/functions.php:2253
     2135msgid "Japanese Yen"
     2136msgstr "Japanse yen"
     2137
     2138#: includes/class-widget-ads.php:93
     2139msgid "Keyword"
     2140msgstr "Trefwoord"
     2141
     2142#: includes/defaults.php:169
     2143msgid "Keyword ..."
     2144msgstr "Trefwoord ..."
     2145
     2146#: includes/functions.php:2254
     2147msgid "Kuwaiti Dinar"
     2148msgstr "Kuwaiti dinar"
     2149
     2150#: includes/class-types-admin.php:579 includes/class-types-admin.php:699
     2151msgid "Label"
     2152msgstr "Label"
     2153
     2154#: addons/core/admin/types-edit-post.php:69
     2155msgid "Labels"
     2156msgstr "Labels"
     2157
     2158#: addons/styling/admin/options.php:62 addons/styling/admin/options.php:194
     2159#: addons/styling/admin/options.php:365 addons/styling/admin/options.php:399
     2160msgid "Large"
     2161msgstr "Groot"
     2162
     2163#: addons/payments/admin/payment-history-list.php:56
     2164msgid "Last month"
     2165msgstr "Afgelopen maand"
     2166
     2167#: addons/emails/includes/class-field-name-email.php:97
     2168msgid "Last Name"
     2169msgstr "Achternaam"
     2170
     2171#: includes/gallery.php:549
     2172msgid "Length:"
     2173msgstr "Lengte:"
     2174
     2175#: includes/class-updates-manager.php:116
     2176msgid "License"
     2177msgstr "Licentie"
     2178
     2179#: includes/class-updates-manager.php:316
     2180#: includes/class-updates-manager.php:331
     2181msgid "License ..."
     2182msgstr "Licentie ..."
     2183
     2184#: addons/core/includes/admin-pages.php:533
     2185msgid "Lightbox"
     2186msgstr "Lightbox"
     2187
     2188#: templates/list.php:51
     2189msgid "List"
     2190msgstr "Lijst"
     2191
     2192#: addons/core/includes/admin-pages.php:447
     2193msgid "List (1 column)"
     2194msgstr "Lijst (1 kolom)"
     2195
     2196#: addons/payments/payments.php:354
     2197msgid "Listing"
     2198msgstr "Vermelding"
     2199
     2200#: addons/payments/payments.php:320 addons/payments/payments.php:906
     2201msgid "Listing Information"
     2202msgstr "Vermeldingsinformatie"
     2203
     2204#: addons/payments/payments.php:1515
     2205msgid "Listing Type"
     2206msgstr "Vermeldingstype"
     2207
     2208#: blocks/details/index.php:101 blocks/single-data-table/index.php:229
     2209#: blocks/single-data-table/index.php:236 includes/class-rest-blocks.php:209
     2210#: includes/class-rest-blocks.php:247 includes/class-widget-ads.php:98
     2211#: includes/defaults.php:154 templates/single.php:60
     2212msgid "Location"
     2213msgstr "Locatie"
     2214
     2215#: includes/class-rest-blocks.php:213
     2216msgid "Location (Formatted)"
     2217msgstr "Locatie (opgemaakt)"
     2218
     2219#: includes/defaults.php:181
     2220msgid "Location ..."
     2221msgstr "Locatie..."
     2222
     2223#: includes/admin-pages.php:160
     2224msgid "Locations Taxonomy, Google Maps integration and more."
     2225msgstr "Locaties taxonomie, Google Maps integratie en meer."
     2226
     2227#: blocks/manage/class-manage-engine.php:63
     2228#: blocks/single-contact/templates/contact-disabled.php:28
     2229msgid "Login"
     2230msgstr "Login"
     2231
     2232#: includes/admin-post-type.php:331
     2233msgid "M j, Y @ G:i"
     2234msgstr "M j, Y @ G:i"
     2235
     2236#: wpadverts.php:408
     2237msgid "Main"
     2238msgstr "Hoofd"
     2239
     2240#: includes/functions.php:2255
     2241msgid "Malaysian Ringgits"
     2242msgstr "Maleisische ringgit"
     2243
     2244#: blocks/manage/class-manage-engine.php:166
     2245msgid "Manage"
     2246msgstr "Beheren"
     2247
     2248#: addons/core/includes/admin-pages.php:332
     2249msgid "Manage Moderation"
     2250msgstr "Moderatie beheren"
     2251
     2252#: includes/admin-pages.php:159
     2253msgid "Maps And Locations"
     2254msgstr "Kaarten en locaties"
     2255
     2256#: includes/admin-pages.php:187
     2257msgid "Mark As Sold"
     2258msgstr "Markeren als verkocht"
     2259
     2260#: includes/class-moderate-admin.php:123
     2261msgid "Match exact phrases"
     2262msgstr "Match exacte zinnen"
     2263
     2264#: includes/class-moderate-admin.php:122
     2265msgid "Match partial phrases"
     2266msgstr "Match gedeeltelijk zinnen"
     2267
     2268#: includes/defaults.php:400
     2269msgid "Max Choices"
     2270msgstr "Maximale keuzes"
     2271
     2272#: addons/core/includes/admin-pages.php:689
     2273msgid "max. height"
     2274msgstr "max. hoogte"
     2275
     2276#: includes/class-moderate-admin.php:97
     2277msgid "Max. Links In The Content"
     2278msgstr "Maximaal aantal links in de inhoud"
     2279
     2280#: addons/core/includes/admin-pages.php:684
     2281msgid "max. width"
     2282msgstr "max. breedte"
     2283
     2284#: addons/core/includes/admin-pages.php:314
     2285msgid "Media Library"
     2286msgstr "Mediabibliotheek"
     2287
     2288#: addons/styling/admin/options.php:61 addons/styling/admin/options.php:193
     2289#: addons/styling/admin/options.php:346 addons/styling/admin/options.php:364
     2290#: addons/styling/admin/options.php:398
     2291msgid "Medium"
     2292msgstr "Medium"
     2293
     2294#: includes/class-types-admin.php:606
     2295msgid "Menu Icon"
     2296msgstr "Menu pictogram"
     2297
     2298#: includes/class-types-admin.php:594
     2299msgid "Menu Position"
     2300msgstr "Menu positie"
     2301
     2302#: addons/bank-transfer/includes/admin-pages.php:74
     2303#: addons/contact-form/contact-form.php:584
     2304msgid "Message"
     2305msgstr "Bericht"
     2306
     2307#: addons/emails/admin/emails-list.php:54
     2308msgid "Message Enabled"
     2309msgstr "Bericht ingeschakeld"
     2310
     2311#: includes/functions.php:2256
     2312msgid "Mexican Peso"
     2313msgstr "Mexicaanse peso"
     2314
     2315#: blocks/single-data-table/index.php:187
     2316#: blocks/single-data-table/index.php:194
     2317msgid "Modified"
     2318msgstr "Aangepast"
     2319
     2320#: includes/class-rest-blocks.php:185
     2321msgid "Modified Date"
     2322msgstr "Gewijzigde datum"
     2323
     2324#: includes/class-rest-blocks.php:189
     2325msgid "Modified Date (GMT)"
     2326msgstr "Gewijzigde datum (GMT)"
     2327
     2328#: addons/emails/admin/emails-list.php:79
     2329msgid "Module / %s"
     2330msgstr "Module / %s"
     2331
     2332#: wpadverts.php:672
     2333msgid "Module activated successfully."
     2334msgstr "Module succesvol geactiveerd."
     2335
     2336#: includes/admin-pages.php:80
     2337msgid "Modules"
     2338msgstr "Modules"
     2339
     2340#: admin/options.php:87
     2341msgid "Modules and Extensions"
     2342msgstr "Modules en uitbreidingen"
     2343
     2344#: includes/defaults.php:287
     2345msgid "Money - converts string formatted as price to float."
     2346msgstr "Geld - converteert een string die is opgemaakt als prijs naar float."
     2347
     2348#: templates/manage.php:78
     2349msgid "More"
     2350msgstr "Meer"
     2351
     2352#: blocks/list/index.php:164 blocks/manage/class-manage-engine.php:36
     2353#: blocks/search/index.php:136 includes/shortcodes.php:106
     2354msgid "Most Expensive First"
     2355msgstr "Duurste eerst"
     2356
     2357#: addons/core/admin/types-list.php:48 addons/core/admin/types-list.php:100
     2358#: includes/class-types-admin.php:572 includes/class-types-admin.php:692
     2359msgid "Name"
     2360msgstr "Naam"
     2361
     2362#: includes/admin-pages.php:195
     2363msgid "Native analytics implementation independent of any third parties."
     2364msgstr "Native analytics-implementatie, onafhankelijk van derde partijen."
     2365
     2366#: includes/admin-post-type.php:606
     2367msgid "Never"
     2368msgstr "Nooit"
     2369
     2370#: addons/payments/payments.php:442 addons/payments/payments.php:523
     2371#: includes/admin-post-type.php:291 includes/admin-post-type.php:343
     2372#: includes/admin-post-type.php:351
     2373msgid "Never Expires"
     2374msgstr "Verloopt nooit"
     2375
     2376#: addons/payments/includes/class-emails-integration.php:224
     2377msgid "New Ad has been paid and published"
     2378msgstr "Nieuwe advertentie is betaald en gepubliceerd"
     2379
     2380#: addons/emails/includes/class-emails-messages.php:202
     2381msgid "New Ad has been published."
     2382msgstr "Er is een nieuwe advertentie geplaatst."
     2383
     2384#: addons/payments/includes/class-emails-integration.php:194
     2385msgid "New Ad has been saved (waiting for payment)."
     2386msgstr "Nieuwe advertentie is opgeslagen (wacht op betaling)."
     2387
     2388#: addons/emails/includes/class-emails-messages.php:216
     2389msgid "New Ad is pending (action required)."
     2390msgstr "Nieuwe advertentie is in behandeling (actie vereist)."
     2391
     2392#: wpadverts.php:243
     2393msgid "New Classified"
     2394msgstr "Nieuwe advertentie"
     2395
     2396#: addons/payments/admin/pricing-list.php:73
     2397msgid "New Post"
     2398msgstr "Nieuw bericht"
     2399
     2400#: addons/payments/includes/admin-pages.php:808
     2401msgid "New Posting"
     2402msgstr "Nieuwe plaatsing"
     2403
     2404#: addons/payments/includes/admin-pages.php:162
     2405msgid "New pricing has been added."
     2406msgstr "Er zijn nieuwe prijzen toegevoegd."
     2407
     2408#: includes/functions.php:2258
     2409msgid "New Zealand Dollar"
     2410msgstr "Nieuw-Zeelandse dollar"
     2411
     2412#: blocks/list/index.php:156 blocks/list/index.php:184
     2413#: blocks/manage/class-manage-engine.php:28
     2414#: blocks/manage/class-manage-engine.php:110 blocks/search/index.php:128
     2415#: blocks/search/index.php:150 includes/shortcodes.php:98
     2416#: includes/shortcodes.php:120
     2417msgid "Newest First"
     2418msgstr "Nieuwste eerst"
     2419
     2420#: includes/class-gallery-helper.php:461 includes/class-gallery-helper.php:550
     2421msgid "Next"
     2422msgstr "Volgende"
     2423
     2424#: addons/core/includes/admin-pages.php:510
     2425msgid "Next and Previous Buttons"
     2426msgstr "Vorige en Volgende knoppen"
     2427
     2428#: addons/payments/admin/payment-history-list.php:167
     2429msgid "Next automatic cleanup <strong>%s</strong>."
     2430msgstr "Volgende automatische opschoning <strong>%s</strong>."
     2431
     2432#: includes/functions.php:2257
     2433msgid "Nigerian Naira"
     2434msgstr "Nigeriaanse naira"
     2435
     2436#: blocks/categories/templates/categories-all.php:43
     2437#: includes/class-widget-categories.php:326
     2438#: includes/class-widget-categories.php:393 templates/categories-all.php:53
     2439#: templates/categories-top.php:24
     2440msgid "No categories found."
     2441msgstr "Geen categorieën gevonden."
     2442
     2443#: wpadverts.php:247
     2444msgid "No Classifieds found"
     2445msgstr "Geen advertenties gevonden"
     2446
     2447#: wpadverts.php:248
     2448msgid "No Classifieds found in the Trash"
     2449msgstr "Geen advertenties gevonden in de prullenbak"
     2450
     2451#: blocks/single-value/index.php:72
     2452msgid "no data selected!"
     2453msgstr "geen gegevens geselecteerd!"
     2454
     2455#: addons/payments/templates/add-payment.php:27
     2456#: addons/payments/templates/publish-payment.php:36
     2457msgid "No Payment Gateway Enabled!"
     2458msgstr "Geen betalingsgateway ingeschakeld!"
     2459
     2460#: blocks/list/templates/list.php:161
     2461#: blocks/manage/templates/manage-list.php:165 wpadverts.php:392
     2462msgid "No results found."
     2463msgstr "Geen resultaten gevonden."
     2464
     2465#: addons/payments/includes/admin-pages.php:485
     2466msgid "No temporary payments to delete at this time."
     2467msgstr "Er zijn momenteel geen tijdelijke betalingen om te verwijderen."
     2468
     2469#: addons/styling/admin/options.php:58 addons/styling/admin/options.php:71
     2470#: addons/styling/admin/options.php:190 addons/styling/admin/options.php:203
     2471#: addons/styling/admin/options.php:361 addons/styling/admin/options.php:374
     2472#: addons/styling/admin/options.php:396 includes/admin-post-type.php:639
     2473msgid "None"
     2474msgstr "Geen"
     2475
     2476#: addons/styling/admin/options.php:334 addons/styling/admin/options.php:344
     2477msgid "None (default styling)"
     2478msgstr "Geen (standaardstijl)"
     2479
     2480#: includes/class-types-admin.php:800
     2481msgid "None - you will need to create your own templates."
     2482msgstr "Geen - je moet je eigen templates maken."
     2483
     2484#: addons/styling/admin/options.php:82 addons/styling/admin/options.php:214
     2485msgid "Normal"
     2486msgstr "Normaal"
     2487
     2488#: includes/functions.php:2259
     2489msgid "Norwegian Krone"
     2490msgstr "Noorse kroon"
     2491
     2492#: includes/defaults.php:308
     2493msgid "Number - converts string to a number."
     2494msgstr "Nummer - converteert een string naar een getal."
     2495
     2496#: addons/core/includes/admin-pages.php:284
     2497msgid "Number of days Ad will be visible by default."
     2498msgstr "Aantal dagen dat een advertentie standaard zichtbaar is."
     2499
     2500#: addons/payments/includes/admin-pages.php:844
     2501msgid "Number of days the Ad will be visible."
     2502msgstr "Aantal dagen dat de advertentie zichtbaar is."
     2503
     2504#: addons/core/includes/admin-pages.php:527
     2505msgid "Number of thumbnails to scroll when clicking Previous or Next buttons."
     2506msgstr ""
     2507"Aantal thumbnails om te scrollen bij het klikken op de knop Vorige of "
     2508"Volgende."
     2509
     2510#: addons/core/includes/admin-pages.php:520
     2511msgid "Number of thumbnails to show below gallery."
     2512msgstr "Aantal thumbnails dat onder de galerij moet worden weergegeven."
     2513
     2514#: includes/admin-post-type.php:309 wpadverts.php:395 wpadverts.php:499
     2515msgid "OK"
     2516msgstr "OK"
     2517
     2518#: blocks/list/index.php:157 blocks/manage/class-manage-engine.php:29
     2519#: blocks/search/index.php:129 includes/shortcodes.php:99
     2520msgid "Oldest First"
     2521msgstr "Oudste eerst"
     2522
     2523#: includes/defaults.php:413
     2524msgid "One or more selected values are not available in the options list."
     2525msgstr ""
     2526"Een of meer geselecteerde waarden zijn niet beschikbaar in de optielijst."
     2527
     2528#: blocks/manage/class-manage-engine.php:54
     2529msgid "Only logged in users can access this page."
     2530msgstr "Alleen ingelogde gebruikers hebben toegang tot deze pagina."
     2531
     2532#: blocks/publish/class-publish-engine.php:682
     2533#: includes/class-shortcode-adverts-add.php:581 includes/shortcodes.php:279
     2534msgid ""
     2535"Only logged in users can access this page. <a href=\"%1$s\">Login</a> or <a "
     2536"href=\"%2$s\">Register</a>."
     2537msgstr ""
     2538"Alleen ingelogde gebruikers hebben toegang tot deze pagina. <a href=\"%1$s\">"
     2539"Inloggen</a> of <a href=\"%2$s\">Registreren</a>."
     2540
     2541#: blocks/single-contact/index.php:79
     2542msgid "Only logged-in members can contact sellers."
     2543msgstr "Alleen ingelogde gebruikers kunnen contact opnemen met verkopers."
     2544
     2545#: wpadverts.php:393
     2546msgid "Open"
     2547msgstr "Openen"
     2548
     2549#: addons/emails/admin/emails-edit.php:17
     2550#: addons/emails/admin/emails-list.php:17 addons/emails/admin/options.php:16
     2551#: addons/payments/admin/options.php:15
     2552#: addons/payments/admin/pricing-edit.php:16
     2553#: addons/payments/admin/pricing-list.php:16 includes/admin-pages.php:38
     2554msgid "Options"
     2555msgstr "Opties"
     2556
     2557#: includes/gallery.php:108
     2558msgid "or drag and drop."
     2559msgstr "of slepen en neerzetten."
     2560
     2561#: includes/class-widget-ads.php:149
     2562msgid "Order"
     2563msgstr "Bestelling"
     2564
     2565#: includes/gallery.php:616
     2566msgid "Original size:"
     2567msgstr "Originele grootte:"
     2568
     2569#: addons/emails/admin/emails-list.php:95 addons/styling/admin/options.php:382
     2570msgid "Other"
     2571msgstr "Andere"
     2572
     2573#: addons/payments/admin/payment-history-edit.php:82
     2574msgid "Paid"
     2575msgstr "Betaald"
     2576
     2577#: includes/class-gallery-helper.php:301
     2578msgid "Pause"
     2579msgstr "Pauzeer"
     2580
     2581#: addons/payments/admin/payment-history-edit.php:31
     2582msgid "Payment"
     2583msgstr "Betaling"
     2584
     2585#: addons/payments/includes/admin-pages.php:298
     2586msgid "Payment #%d does not exist or was deleted."
     2587msgstr "Betaling #%d bestaat niet of is verwijderd."
     2588
     2589#: addons/payments/includes/class-emails-integration.php:134
     2590#: addons/payments/includes/class-emails-integration.php:209
     2591msgid "Payment Completed ({$payment|payment_order_id})."
     2592msgstr "Betaling voltooid ({$payment|payment_order_id})."
    252593
    262594#: addons/bank-transfer/admin/options.php:15
    272595msgid "Payment Gateway / Bank Transfer"
    28 msgstr "Betaalgateway / Bankoverschrijving"
    29 
    30 #: addons/bank-transfer/bank-transfer.php:42 includes/admin-pages.php:159
    31 msgid "Bank Transfer"
    32 msgstr "Bankoverschrijving"
    33 
    34 #: addons/bank-transfer/bank-transfer.php:62
    35 #: addons/payments/includes/admin-pages.php:572 includes/defaults.php:56
    36 msgid "Contact Person"
    37 msgstr "Contactpersoon"
    38 
    39 #: addons/bank-transfer/bank-transfer.php:72
    40 #: addons/payments/admin/payment-history-list.php:68
    41 #: addons/payments/includes/admin-pages.php:582 includes/defaults.php:66
    42 #: includes/defaults.php:309 includes/defaults.php:319
    43 #: includes/functions.php:1939
    44 msgid "Email"
    45 msgstr "Email"
    46 
    47 #: addons/bank-transfer/includes/admin-pages.php:32
    48 #: addons/contact-form/includes/admin-pages.php:37
    49 #: addons/core/includes/admin-pages.php:26
    50 #: addons/payments/includes/admin-pages.php:35
     2596msgstr "Betalingsgateway / Bankoverschrijving"
     2597
     2598#: addons/bank-transfer/includes/admin-pages.php:65
     2599msgid "Payment gateway name visible in the frontend when making a payment."
     2600msgstr ""
     2601"Naam van de betalingsgateway zichtbaar in de frontend bij het doen van een "
     2602"betaling."
     2603
     2604#: includes/admin-pages.php:210
     2605msgid "Payment Gateways"
     2606msgstr "Betaling gateways"
     2607
     2608#: addons/payments/admin/payment-history-list.php:16
     2609#: addons/payments/payments.php:1118
     2610msgid "Payment History"
     2611msgstr "Betalingsgeschiedenis"
     2612
     2613#: addons/payments/admin/payment-history-edit.php:16
     2614msgid "Payment History Edit"
     2615msgstr "Betalingsgeschiedenis bewerking"
     2616
     2617#: addons/payments/admin/payment-history-edit.php:143
     2618msgid "Payment Log"
     2619msgstr "Betalingslog"
     2620
     2621#: addons/payments/includes/admin-pages.php:347
     2622msgid ""
     2623"Payment Method [%s] assigned to this Payment does not exist or was disabled."
     2624msgstr ""
     2625"Betalingsmethode [%s] toegewezen aan deze betaling bestaat niet of is "
     2626"uitgeschakeld."
     2627
     2628#: addons/bank-transfer/includes/admin-pages.php:64
     2629msgid "Payment Name"
     2630msgstr "Naam betaling"
     2631
     2632#: addons/payments/includes/class-emails-integration.php:119
     2633msgid "Payment Pending ({$payment|payment_order_id})."
     2634msgstr "Betaling in behandeling ({$payment|payment_order_id})."
     2635
     2636#: addons/payments/includes/admin-pages.php:394
     2637msgid "Payment updated."
     2638msgstr "Betaling is geüpdatet."
     2639
     2640#: addons/payments/includes/class-emails-integration.php:78
     2641#: includes/admin-pages.php:89
     2642msgid "Payments"
     2643msgstr "Betalingen"
     2644
     2645#: includes/admin-pages.php:220
     2646msgid "PayPal Payments Standard, allow users to pay for ads via PayPal."
     2647msgstr ""
     2648"Standaard PayPal Payments, stelt gebruikers in staat om via PayPal voor "
     2649"advertenties te betalen."
     2650
     2651#: includes/admin-pages.php:219
     2652msgid "PayPal Standard"
     2653msgstr "Standaard PayPal"
     2654
     2655#: addons/payments/payments.php:97 addons/payments/payments.php:112
     2656msgid "Pending <span class=\"count\">(%s)</span>"
     2657msgid_plural "Pending <span class=\"count\">(%s)</span>"
     2658msgstr[0] "<span class=\"count\">(%s)</span> in behandeling"
     2659msgstr[1] "<span class=\"count\">(%s)</span> in behandeling"
     2660
     2661#: includes/functions.php:2947
     2662msgid "Pending Ads"
     2663msgstr "Advertenties in afwachting"
     2664
     2665#: addons/payments/includes/admin-pages.php:649
     2666#: addons/payments/includes/admin-pages.php:681
     2667msgid "Pending Payment"
     2668msgstr "In afwachting van betaling"
     2669
     2670#: addons/payments/payments.php:92
     2671msgctxt "pending status payment"
     2672msgid "Pending"
     2673msgstr "In afwachting"
     2674
     2675#: includes/class-types-admin.php:645 includes/class-types-admin.php:722
     2676msgid "Permalink Prefix"
     2677msgstr "Permalink voorvoegsel"
     2678
     2679#: includes/functions.php:2260
     2680msgid "Philippine Pesos"
     2681msgstr "Filippijnse peso's"
     2682
     2683#: addons/contact-form/contact-form.php:80
     2684#: addons/contact-form/includes/class-block-details.php:102
     2685#: addons/contact-form/includes/class-block-details.php:123
     2686#: includes/functions-blocks.php:961 includes/functions.php:2746
     2687msgid "Phone"
     2688msgstr "Telefoon"
     2689
     2690#: addons/contact-form/includes/admin-pages.php:79 includes/defaults.php:78
     2691msgid "Phone Number"
     2692msgstr "Telefoonnummer"
     2693
     2694#: includes/class-moderate-admin.php:120
     2695msgid "Phrases Matching"
     2696msgstr "Zinnen die overeenkomen"
     2697
     2698#: addons/payments/templates/add-payment.php:44
     2699#: addons/payments/templates/publish-payment.php:63
     2700msgid "Place Order"
     2701msgstr "Plaats bestelling"
     2702
     2703#: includes/class-gallery-helper.php:300
     2704msgid "Play"
     2705msgstr "Afspelen"
     2706
     2707#: blocks/single-contact/index.php:80
     2708msgid "Please login or register to to send a message."
     2709msgstr "Log in of registreer om een bericht te sturen"
     2710
     2711#: blocks/single-gallery/templates/gallery.php:34
     2712msgid ""
     2713"Please use a different browser or download the video and play on your device."
     2714msgstr ""
     2715"Gebruik een andere browser of download de video en speel deze af op uw "
     2716"apparaat."
     2717
     2718#: includes/functions.php:2261
     2719msgid "Polish Zloty"
     2720msgstr "Poolse zloty"
     2721
     2722#: wpadverts.php:223
     2723msgctxt "post"
     2724msgid "Expired"
     2725msgstr "Verlopen"
     2726
     2727#: addons/payments/payments.php:110
     2728msgctxt "post"
     2729msgid "Pending"
     2730msgstr "In afwachting"
     2731
     2732#: wpadverts.php:230
     2733msgctxt "post"
     2734msgid "Temporary"
     2735msgstr "Tijdelijk"
     2736
     2737#: includes/class-rest-blocks.php:177
     2738msgid "Post Date"
     2739msgstr "Berichtdatum"
     2740
     2741#: includes/class-rest-blocks.php:221
     2742msgid "Post date (Formatted)"
     2743msgstr "Bericht datum (opgemaakt)"
     2744
     2745#: includes/class-rest-blocks.php:181
     2746msgid "Post Date (GMT)"
     2747msgstr "Bericht datum (GMT)"
     2748
     2749#: blocks/manage/class-manage-engine.php:287 includes/shortcodes.php:477
     2750msgid "Post has been updated."
     2751msgstr "Bericht is geüpdatet."
     2752
     2753#: includes/functions.php:3243
     2754msgid "Post ID not provided."
     2755msgstr "Bericht-ID niet opgegeven."
     2756
     2757#: includes/class-types-admin.php:236
     2758msgid "Post Type configuration restored to default."
     2759msgstr "Advertentie instellingen teruggezet naar standaard."
     2760
     2761#: wpadverts.php:238
     2762msgctxt "post type general name"
     2763msgid "Classifieds"
     2764msgstr "Advertenties"
     2765
     2766#: wpadverts.php:239
     2767msgctxt "post type singular name"
     2768msgid "Classified"
     2769msgstr "Advertentie"
     2770
     2771#: includes/class-types-admin.php:464
     2772msgid "Post Type updated."
     2773msgstr "Berichttype bijgewerkt."
     2774
     2775#: includes/class-types-admin.php:157
     2776msgid "Post Types"
     2777msgstr "Bericht typen"
     2778
     2779#: includes/admin-post-type.php:196
     2780msgid "Post updated, but some required data is not filled properly."
     2781msgstr ""
     2782"Bericht geüpdatet, echter sommige vereiste gegevens zijn niet correct "
     2783"ingevuld."
     2784
     2785#: includes/ajax.php:1008 includes/ajax.php:1069
     2786msgid "Post with given ID does not exist."
     2787msgstr "Bericht met opgegeven ID bestaat niet."
     2788
     2789#: includes/ajax.php:1215
     2790msgid "Post you are trying to delete does not belong to you."
     2791msgstr "Bericht die je probeert te verwijderen, is niet van jou."
     2792
     2793#: includes/ajax.php:1207
     2794msgid "Post you are trying to delete does not exist."
     2795msgstr "Het bericht dat je probeert te verwijderen bestaat niet."
     2796
     2797#: addons/payments/payments.php:1483
     2798msgid "Posting"
     2799msgstr "Plaatsen"
     2800
     2801#: addons/core/includes/admin-pages.php:471
     2802msgid "Posts Per Page"
     2803msgstr "Berichten per pagina"
     2804
     2805#: includes/functions.php:2242
     2806msgid "Pounds Sterling"
     2807msgstr "Pond sterling"
     2808
     2809#: addons/core/includes/admin-pages.php:358
     2810msgid "Prefix - $10"
     2811msgstr "Voorvoegsel - $10"
     2812
     2813#: blocks/publish/templates/publish-preview.php:16
     2814#: includes/class-shortcode-adverts-add.php:320
     2815#: includes/class-shortcode-adverts-add.php:450 includes/gallery.php:484
     2816#: templates/add.php:47 templates/manage.php:58
     2817msgid "Preview"
     2818msgstr "Voorbeeld bekijken"
     2819
     2820#: templates/manage-edit.php:8
     2821msgid "Preview Ad"
     2822msgstr "Voorbeeld advertentie"
     2823
     2824#: blocks/publish/class-publish-engine.php:342
     2825#: blocks/publish/class-publish-engine.php:516
     2826msgid "Preview Listing"
     2827msgstr "Voorbeeld advertentie"
     2828
     2829#: includes/class-types-admin.php:657 includes/class-types-admin.php:744
     2830msgid ""
     2831"Preview: %s To create more advanced permalink schemes consider using a "
     2832"plugin like <a href=\"https://wordpress.org/plugins/custom-post-type-"
     2833"permalinks/\">Custom Post Types Permalinks</a>."
     2834msgstr ""
     2835"Voorbeeld: %s als je meer geavanceerde permalink schema's wil maken, kan je "
     2836"overwegen een plugin te gebruiken zoals <a href=\"https://wordpress."
     2837"org/plugins/custom-post-type-permalinks/\">Custom Post Types Permalinks</a>."
     2838
     2839#: includes/class-gallery-helper.php:457 includes/class-gallery-helper.php:517
     2840msgid "Previous"
     2841msgstr "Vorige"
     2842
     2843#: addons/payments/admin/pricing-list.php:50
     2844#: addons/payments/includes/admin-pages.php:834 blocks/list/index.php:161
     2845#: blocks/manage/class-manage-engine.php:33 blocks/search/index.php:133
     2846#: blocks/single-data-table/index.php:222
     2847#: blocks/single-data-table/index.php:243 includes/admin-post-type.php:576
     2848#: includes/class-rest-blocks.php:205 includes/class-rest-blocks.php:251
     2849#: includes/class-widget-ads.php:138 includes/defaults.php:142
     2850#: includes/shortcodes.php:103
     2851msgid "Price"
     2852msgstr "Prijs"
     2853
     2854#: includes/class-rest-blocks.php:217
     2855msgid "Price (Formatted)"
     2856msgstr "Prijs (opgemaakt)"
     2857
     2858#: includes/class-widget-ads.php:116
     2859msgid "Price Max."
     2860msgstr "Max. prijs"
     2861
     2862#: includes/class-widget-ads.php:110
     2863msgid "Price Min."
     2864msgstr "Min. prijs"
     2865
     2866#: addons/payments/admin/options.php:16
     2867#: addons/payments/admin/pricing-edit.php:18
     2868#: addons/payments/admin/pricing-list.php:18
     2869msgid "Pricing"
     2870msgstr "Prijzen"
     2871
     2872#: addons/payments/includes/admin-pages.php:234
     2873msgid "Pricing deleted."
     2874msgstr "Prijzen verwijderd."
     2875
     2876#: addons/payments/includes/admin-pages.php:804
     2877msgid "Pricing Type"
     2878msgstr "Prijstype"
     2879
     2880#: addons/payments/includes/admin-pages.php:210
     2881msgid "Pricing updated."
     2882msgstr "Prijs geüpdatet."
     2883
     2884#: addons/styling/admin/options.php:16 addons/styling/admin/options.php:161
     2885msgid "Primary Button"
     2886msgstr "Primaire knop"
     2887
     2888#: addons/styling/admin/options.php:165
     2889msgid "Primary Button Hover"
     2890msgstr "Primaire knop hover"
     2891
     2892#: includes/admin-pages.php:174
     2893msgid ""
     2894"Protect your forms from SPAM using easy easy for humans and hard for bots "
     2895"captcha."
     2896msgstr ""
     2897"Bescherm je formulieren tegen SPAM met captcha gemakkelijk voor mensen en "
     2898"moeilijk voor bots."
     2899
     2900#: includes/defaults.php:338
     2901msgid "Provided email address is invalid."
     2902msgstr "Opgegeven e-mailadres is ongeldig."
     2903
     2904#: includes/defaults.php:424
     2905msgid "Provided text is invalid."
     2906msgstr "De opgegeven tekst is ongeldig."
     2907
     2908#: includes/defaults.php:358
     2909msgid "Provided URL is invalid."
     2910msgstr "De opgegeven URL is ongeldig."
     2911
     2912#: includes/defaults.php:378
     2913msgid "Provided value is not a number."
     2914msgstr "Opgegeven waarde is geen getal."
     2915
     2916#: includes/defaults.php:368
     2917msgid "Provided value is not an integer."
     2918msgstr "De opgegeven waarde is geen integer."
     2919
     2920#: blocks/publish/templates/publish-save.php:34
     2921msgid "Publish another Ad"
     2922msgstr "Publiceer nog een advertentie"
     2923
     2924#: blocks/list/index.php:154 blocks/list/index.php:183
     2925#: blocks/list/index.php:184 blocks/manage/class-manage-engine.php:26
     2926#: blocks/manage/class-manage-engine.php:109
     2927#: blocks/manage/class-manage-engine.php:110 blocks/search/index.php:126
     2928#: blocks/search/index.php:149 blocks/search/index.php:150
     2929#: includes/class-widget-ads.php:128 includes/shortcodes.php:96
     2930#: includes/shortcodes.php:119 includes/shortcodes.php:120
     2931msgid "Publish Date"
     2932msgstr "Publicatiedatum"
     2933
     2934#: blocks/publish/class-publish-engine.php:339
     2935#: blocks/publish/class-publish-engine.php:514
     2936#: blocks/publish/templates/publish-preview.php:41
     2937#: blocks/publish/templates/publish-preview.php:87
     2938#: includes/class-shortcode-adverts-add.php:317
     2939#: includes/class-shortcode-adverts-add.php:448 templates/add-preview.php:16
     2940msgid "Publish Listing"
     2941msgstr "Vermelding publiceren"
     2942
     2943#: blocks/manage/templates/manage-list.php:171
     2944msgid "Publish your first Ad"
     2945msgstr "Publiceer je eerste advertentie"
     2946
     2947#: blocks/single-data-table/index.php:173
     2948#: blocks/single-data-table/index.php:180
     2949#: blocks/single-data-table/index.php:250
     2950msgid "Published"
     2951msgstr "Gepubliceerd"
     2952
     2953#: blocks/manage/templates/manage-list-item.php:55
     2954msgid "Published  — %s"
     2955msgstr "Gepubliceerd — %s"
     2956
     2957#: blocks/details/templates/single.php:28
     2958#: blocks/single-author/templates/list.php:19
     2959msgid "Published %1$s - %2$s ago"
     2960msgstr "%1$s - %2$s geleden gepubliceerd"
     2961
     2962#: templates/single.php:24
     2963msgid "Published: %1$s (%2$s ago)"
     2964msgstr "Gepubliceerd: %1$s (%2$s geleden)"
     2965
     2966#: addons/payments/admin/payment-history-edit.php:110
     2967msgid "Purchase Details"
     2968msgstr "Aankoop details"
     2969
     2970#: addons/payments/payments.php:1508
     2971msgid "Purchase Type"
     2972msgstr "Aankoop type"
     2973
     2974#: addons/payments/payments.php:1527
     2975msgid "Purchased Item"
     2976msgstr "Gekocht item"
     2977
     2978#: includes/functions.php:2275
     2979msgid "Qatari Riyal"
     2980msgstr "Qatari riyal"
     2981
     2982#: addons/styling/includes/admin-pages.php:116
     2983msgid "Radio"
     2984msgstr "Radio"
     2985
     2986#: blocks/list/index.php:175 includes/class-widget-ads.php:143
     2987msgid "Random"
     2988msgstr "Willekeurig"
     2989
     2990#: blocks/list/index.php:177
     2991msgid "Random Order"
     2992msgstr "Willekeurige volgorde"
     2993
     2994#: includes/class-moderate-admin.php:194
     2995msgid ""
     2996"Random password that will encrypt the Timetrap, you can generate one <a "
     2997"href='https://www.random.org/passwords/'>here</a>. If left empty then one of "
     2998"security keys in your wp-config.php file will be used."
     2999msgstr ""
     3000"Willekeurig wachtwoord dat de Timetrap versleutelt, je kan er <a href='https:"
     3001"//www.random.org/passwords/'>hier</a> één aanmaken. Indien leeg gelaten, zal "
     3002"een van de beveiligingssleutels in je wp-config.php bestand worden gebruikt."
     3003
     3004#: addons/emails/admin/emails-list.php:102
     3005msgid "Read when this message is sent ..."
     3006msgstr "Lees wanneer dit bericht wordt verzonden..."
     3007
     3008#: includes/admin-pages.php:173
     3009msgid "reCAPTCHA"
     3010msgstr "reCAPTCHA"
     3011
     3012#: addons/emails/admin/emails-list.php:51
     3013msgid "Recipient"
     3014msgstr "Ontvanger"
     3015
     3016#: includes/gallery.php:619
     3017msgid "Recommended size:"
     3018msgstr "Aanbevolen grootte:"
     3019
     3020#: addons/core/includes/admin-pages.php:407
     3021msgid "Redirect URL"
     3022msgstr "Omleiding URL"
     3023
     3024#: includes/functions.php:2064
     3025msgid "Redirecting"
     3026msgstr "Omleiden"
     3027
     3028#: addons/payments/payments.php:106
     3029msgid "Refunded <span class=\"count\">(%s)</span>"
     3030msgid_plural "Refunded <span class=\"count\">(%s)</span>"
     3031msgstr[0] "Terugbetaald <span class=\"count\">(%s)</span>"
     3032msgstr[1] "Terugbetaald <span class=\"count\">(%s)</span>"
     3033
     3034#: addons/payments/payments.php:101
     3035msgctxt "refunded status payment"
     3036msgid "Refunded"
     3037msgstr "Terugbetaald"
     3038
     3039#: blocks/manage/class-manage-engine.php:64
     3040#: blocks/single-contact/templates/contact-disabled.php:32
     3041msgid "Register"
     3042msgstr "Registreren"
     3043
     3044#: includes/class-widget-ads.php:176
     3045msgid "Regular Only"
     3046msgstr "Alleen regulier"
     3047
     3048#: includes/class-types-admin.php:465 includes/class-types-admin.php:542
     3049msgid ""
     3050"Remember to reset permalinks by clicking \"Save Changes\" button in the <a "
     3051"href=\"%s\">Permalinks</a> panel."
     3052msgstr ""
     3053"Vergeet niet om permalinks opnieuw in te stellen door op de knop "
     3054"\"Wijzigingen opslaan\" in het <a href=\"%s\">Permalinks</a>-paneel te "
     3055"klikken."
     3056
     3057#: includes/class-types-admin.php:806
     3058msgid "Renderer Template"
     3059msgstr "Renderer template"
     3060
     3061#: includes/class-types-admin.php:793
     3062msgid "Renderer Type"
     3063msgstr "Renderer type"
     3064
     3065#: addons/core/admin/types-edit-post.php:70
     3066msgid "Rendering"
     3067msgstr "Weergave"
     3068
     3069#: addons/payments/payments.php:977 addons/payments/payments.php:993
     3070msgid "Renew"
     3071msgstr "Verlengen"
     3072
     3073#: addons/payments/payments.php:1018 addons/payments/payments.php:1081
     3074msgid "Renew <strong>%s</strong> or <a href=\"%s\">cancel and go back</a>."
     3075msgstr ""
     3076"Verleng <strong>%s</strong> of <a href=\"%s\">annuleer en ga terug</a>."
     3077
     3078#: addons/payments/payments.php:826 addons/payments/payments.php:854
     3079msgid "Renew Ad"
     3080msgstr "Verleng de advertentie"
     3081
     3082#: addons/payments/admin/pricing-list.php:75
     3083#: addons/payments/includes/admin-pages.php:809
     3084#: addons/payments/payments.php:1485
     3085msgid "Renewal"
     3086msgstr "Verlenging"
     3087
     3088#: includes/class-gallery-helper.php:302
     3089msgid "Replay"
     3090msgstr "Opnieuw afspelen"
     3091
     3092#: addons/styling/admin/options.php:143 addons/styling/admin/options.php:275
     3093#: addons/styling/admin/options.php:407
     3094msgid "Reset to defaults"
     3095msgstr "Resetten naar standaardwaarden"
     3096
     3097#: includes/gallery.php:594
     3098msgid "Restore"
     3099msgstr "Herstellen"
     3100
     3101#: addons/core/admin/types-edit-post.php:88 addons/core/admin/types-list.php:77
     3102#: addons/core/admin/types-list.php:138
     3103msgid "Restore Defaults"
     3104msgstr "Standaardwaarden herstellen"
     3105
     3106#: includes/gallery.php:594
     3107msgid "Restore original image"
     3108msgstr "Originele afbeelding herstellen"
     3109
     3110#: blocks/list/templates/list.php:139
     3111#: blocks/manage/templates/manage-list.php:141
     3112msgid "results found."
     3113msgstr "gevonden resultaten."
     3114
     3115#: includes/functions-blocks.php:937
     3116msgid "Reveal Contact Info"
     3117msgstr "Toon contactinformatie"
     3118
     3119#: includes/gallery.php:573
     3120msgid "Rotate -90 degrees"
     3121msgstr "Draai -90 graden"
     3122
     3123#: includes/gallery.php:572
     3124msgid "Rotate 90 degrees"
     3125msgstr "Draai 90 graden"
     3126
     3127#: addons/styling/admin/options.php:394
     3128msgid "Row Spacing"
     3129msgstr "Rijafstand"
     3130
     3131#: includes/functions.php:2269
     3132msgid "Russian Rubles"
     3133msgstr "Russische roebels"
     3134
     3135#: includes/functions.php:2270
     3136msgid "Saudi Riyal"
     3137msgstr "Saudi riyal"
     3138
     3139#: includes/gallery.php:591
     3140msgid "Save"
     3141msgstr "Opslaan"
     3142
     3143#: addons/styling/admin/options.php:405
     3144msgid "Save Form Styling Settings"
     3145msgstr "Sla instellingen voor formulierstijl op"
     3146
     3147#: includes/gallery.php:591
     3148msgid "Save Image"
     3149msgstr "Afbeelding opslaan"
     3150
     3151#: addons/styling/admin/options.php:142
     3152msgid "Save Primary Button Settings"
     3153msgstr "Sla de instellingen van de primaire knop op"
     3154
     3155#: addons/styling/admin/options.php:273
     3156msgid "Save Secondary Button Settings"
     3157msgstr "Sla de instellingen van de secundaire knop op"
     3158
     3159#: includes/gallery.php:513
     3160msgid "Save Thumbnail"
     3161msgstr "Thumbnail opslaan"
     3162
     3163#: includes/gallery.php:585
     3164msgid "Scale"
     3165msgstr "Schaal"
     3166
     3167#: includes/gallery.php:487
     3168msgid ""
     3169"Scroll the video to a selected place and click 'Capture' button to create "
     3170"video cover."
     3171msgstr ""
     3172"Blader door de video naar een geselecteerde plaats en klik op de knop "
     3173"'Vastleggen' om een ​​vide omslag te maken."
     3174
     3175#: addons/core/includes/admin-pages.php:526
     3176msgid "Scrolling Thumbnails"
     3177msgstr "Scrolling thumbnails"
     3178
     3179#: templates/list.php:87
     3180msgid "SEARCH"
     3181msgstr "ZOEKEN"
     3182
     3183#: addons/core/includes/admin-pages.php:430
     3184msgid "Search Bar"
     3185msgstr "Zoekbalk"
     3186
     3187#: wpadverts.php:246
     3188msgid "Search Classifieds"
     3189msgstr "Zoek advertenties"
     3190
     3191#: addons/styling/admin/options.php:17 addons/styling/admin/options.php:294
     3192msgid "Secondary Button"
     3193msgstr "Secundaire knop"
     3194
     3195#: addons/styling/admin/options.php:298
     3196msgid "Secondary Button Hover"
     3197msgstr "Secundaire knop hover"
     3198
     3199#: addons/payments/admin/payment-history-edit.php:117
     3200msgid "Secure Complete Payment URL"
     3201msgstr "Veilige betalings URL"
     3202
     3203#: addons/core/admin/types-icon-picker.php:20
     3204msgid "Select"
     3205msgstr "Selecteer"
     3206
     3207#: addons/core/admin/types-icon-picker.php:10
     3208msgid "Select Icon"
     3209msgstr "Selecteer pictogram"
     3210
     3211#: addons/styling/includes/admin-pages.php:93
     3212msgid "Select Option"
     3213msgstr "Selecteer optie"
     3214
     3215#: wpadverts.php:387
     3216msgid "Select options ..."
     3217msgstr "Selecteer opties ..."
     3218
     3219#: addons/payments/includes/admin-pages.php:791
     3220msgid ""
     3221"Select page where user can complete payments. This should be a page with "
     3222"[adverts_payments_checkout] shortcode."
     3223msgstr ""
     3224"Selecteer pagina waar de gebruiker betalingen kan voltooien. Dit zou een "
     3225"pagina moeten zijn met de shortcode [adverts_payments_checkout]."
     3226
     3227#: addons/payments/templates/publish-payment.php:40
     3228msgid "Select Payment Method"
     3229msgstr "Selecteer betaalmethode"
     3230
     3231#: addons/payments/payments.php:1082
     3232msgid "Select renewal option and click \"Renew\" button."
     3233msgstr "Selecteer de verlengingsoptie en klik op de knop \"Verlengen\"."
     3234
     3235#: addons/core/includes/admin-pages.php:274
     3236msgid "Select the main page with list of Ads."
     3237msgstr "Selecteer de hoofdpagina met een lijst met advertenties."
     3238
     3239#: wpadverts.php:397
     3240msgid "Selected"
     3241msgstr "Geselecteerd"
     3242
     3243#: includes/gallery.php:622
     3244msgid "Selection:"
     3245msgstr "Selectie:"
     3246
     3247#: addons/styling/admin/options.php:83 addons/styling/admin/options.php:215
     3248msgid "Semi Bold"
     3249msgstr "Half vet"
     3250
     3251#: addons/emails/includes/class-emails-admin.php:420
     3252msgid "Send Admin Notifications To"
     3253msgstr "Stuur beheerdersmeldingen naar"
     3254
     3255#: addons/emails/includes/class-emails-admin.php:429
     3256msgid "Send emails as HTML"
     3257msgstr "E-mails verzenden als HTML"
     3258
     3259#: addons/contact-form/contact-form.php:61
     3260#: addons/contact-form/contact-form.php:118
     3261#: addons/contact-form/includes/class-block-details.php:40
     3262#: addons/contact-form/includes/class-block-details.php:234
     3263msgid "Send Message"
     3264msgstr "Bericht versturen"
     3265
     3266#: addons/core/includes/admin-pages.php:335
     3267msgid "Set Ad status to 'pending' when user updates his Ad in the frontend."
     3268msgstr ""
     3269"Stel de advertentiestatus in op 'in behandeling' wanneer een gebruiker zijn "
     3270"advertentie in de frontend bijwerkt."
     3271
     3272#: includes/admin-pages.php:181
     3273msgid "Set custom icons (small and big) for each category."
     3274msgstr "Stel aangepaste pictogrammen in (klein en groot) voor elke categorie."
     3275
     3276#: includes/admin-pages.php:167
     3277msgid ""
     3278"Set fee for Ads posting per category or allow to post for free in some "
     3279"categories."
     3280msgstr ""
     3281"Stel een vergoeding in voor het plaatsen van advertenties per categorie of "
     3282"sta toe om gratis te plaatsen in sommige categorieën."
     3283
     3284#: admin/options.php:127 admin/options.php:135 admin/options.php:149
     3285msgid "Settings"
     3286msgstr "Instellingen"
     3287
     3288#: addons/bank-transfer/includes/admin-pages.php:45
     3289#: addons/contact-form/includes/admin-pages.php:60
     3290#: addons/core/includes/admin-pages.php:89
     3291#: addons/core/includes/admin-pages.php:169
     3292#: addons/emails/includes/class-emails-admin.php:83
     3293#: addons/payments/includes/admin-pages.php:47
     3294#: includes/class-moderate-admin.php:56
     3295msgid "Settings updated."
     3296msgstr "Instellingen geüpdatet."
     3297
     3298#: addons/styling/admin/options.php:342
     3299msgid "Shadow"
     3300msgstr "Schaduw"
     3301
     3302#: includes/class-types-admin.php:798
     3303msgid "Shortcode - use the old version 1.5 templates."
     3304msgstr "Shortcode - gebruik de oude versie 1.5 templates."
     3305
     3306#: addons/styling/admin/options.php:389
     3307msgid "Show"
     3308msgstr "Tonen"
     3309
     3310#: includes/functions-blocks.php:924
     3311msgid "Show Contact Info"
     3312msgstr "Toon contactinformatie"
     3313
     3314#: includes/functions.php:2718
     3315msgid "Show Contact Information"
     3316msgstr "Toon contactgegevens"
     3317
     3318#: includes/class-widget-ads.php:88
     3319msgid "Show images on the list."
     3320msgstr "Toon afbeeldingen op de lijst."
     3321
     3322#: includes/class-widget-categories.php:134
     3323msgid "Show multiple category levels"
     3324msgstr "Laat verschillende categorie niveaus zien"
     3325
     3326#: addons/contact-form/contact-form.php:73
     3327msgid "show phone"
     3328msgstr "toon telefoonnummer"
     3329
     3330#: blocks/single-author/templates/list.php:27
     3331msgid "show phone number"
     3332msgstr "toon telefoonnummer"
     3333
     3334#: addons/contact-form/includes/admin-pages.php:83
     3335msgid "Show phone number next to contact button."
     3336msgstr "Toon telefoonnummer naast de contactknop."
     3337
     3338#: includes/class-widget-categories.php:106
     3339msgid "Show post counts"
     3340msgstr "Berichtaantal tonen"
     3341
     3342#: includes/class-gallery-helper.php:448
     3343msgid "Show Thumbnails ..."
     3344msgstr "Thumbnails tonen..."
     3345
     3346#: includes/class-widget-categories.php:120
     3347msgid "Show top categories only"
     3348msgstr "Laat alleen bovenste categorie zien"
     3349
     3350#: includes/functions.php:2262
     3351msgid "Singapore Dollar"
     3352msgstr "Singapore dollar"
     3353
     3354#: addons/styling/admin/options.php:60 addons/styling/admin/options.php:192
     3355#: addons/styling/admin/options.php:345 addons/styling/admin/options.php:363
     3356#: addons/styling/admin/options.php:397
     3357msgid "Small"
     3358msgstr "Klein"
     3359
     3360#: addons/styling/admin/options.php:336
     3361msgid "Solid"
     3362msgstr "Ononderbroken"
     3363
     3364#: blocks/list/templates/list.php:101
     3365#: blocks/manage/templates/manage-list.php:103
     3366#: includes/class-widget-ads.php:122
     3367msgid "Sort By"
     3368msgstr "Sorteer op"
     3369
     3370#: blocks/list/index.php:184 blocks/list/index.php:216
     3371#: blocks/manage/class-manage-engine.php:110
     3372#: blocks/manage/class-manage-engine.php:140 blocks/search/index.php:150
     3373#: blocks/search/index.php:180 includes/shortcodes.php:120
     3374#: includes/shortcodes.php:150
     3375msgid "Sort By: %s - %s"
     3376msgstr "Sorteren op: %s - %s"
     3377
     3378#: includes/functions.php:2271
     3379msgid "South African Rand"
     3380msgstr "Zuid-Afrikaanse rand"
     3381
     3382#: addons/core/admin/moderate.php:18 addons/core/admin/options-gallery.php:18
     3383#: addons/core/admin/options.php:18 addons/core/admin/types-edit-post.php:9
     3384#: addons/core/admin/types-list.php:26 includes/defaults.php:422
     3385msgid "Spam"
     3386msgstr "Spam"
     3387
     3388#: includes/functions.php:2272
     3389msgid "Sri Lankan Rupees"
     3390msgstr "Sri Lankaanse roepies"
     3391
     3392#: wpadverts.php:400
     3393msgid "start typing here ..."
     3394msgstr "begin hier met typen ..."
     3395
     3396#: includes/admin-post-type.php:749
     3397msgid ""
     3398"Start typing user name, email or login below, some suggestions will appear."
     3399msgstr ""
     3400"Begin met het typen van gebruikersnaam, e-mail of login hieronder, enkele "
     3401"suggesties zullen verschijnen."
     3402
     3403#: addons/payments/admin/payment-history-edit.php:63
     3404#: addons/payments/admin/payment-history-list.php:84
     3405msgid "Status"
     3406msgstr "Status"
     3407
     3408#: addons/payments/includes/admin-pages.php:473
     3409msgid "Status for selected Payments was changed to: %s"
     3410msgstr "Status voor geselecteerde betalingen is gewijzigd in: %s"
     3411
     3412#: includes/defaults.php:386
     3413msgid "String Length"
     3414msgstr "String lengte"
     3415
     3416#: includes/admin-pages.php:226
     3417msgid "Stripe"
     3418msgstr "Streep"
     3419
     3420#: addons/styling/admin/options.php:332
     3421msgid "Style"
     3422msgstr "Stijl"
     3423
     3424#: addons/contact-form/contact-form.php:573
     3425#: addons/emails/includes/class-emails-admin.php:361
     3426msgid "Subject"
     3427msgstr "Onderwerp"
     3428
     3429#: addons/core/includes/admin-pages.php:359
     3430msgid "Suffix - 10$"
     3431msgstr "Achtervoegsel - 10$"
     3432
     3433#: includes/class-types-admin.php:612
     3434msgid "Supports"
     3435msgstr "Ondersteunt"
     3436
     3437#: includes/functions.php:2263
     3438msgid "Swedish Krona"
     3439msgstr "Zweedse kroon"
     3440
     3441#: includes/functions.php:2264
     3442msgid "Swiss Franc"
     3443msgstr "Zwitserse frank"
     3444
     3445#: addons/core/includes/admin-pages.php:483
     3446msgid "Switch Views"
     3447msgstr "Van weergave wisselen"
     3448
     3449#: includes/functions.php:2265
     3450msgid "Taiwan New Dollars"
     3451msgstr "Taiwanese nieuwe dollars"
     3452
     3453#: addons/core/admin/types-list.php:92 includes/class-types-admin.php:638
     3454msgid "Taxonomies"
     3455msgstr "Taxonomieën"
     3456
     3457#: includes/class-types-admin.php:307
     3458msgid "Taxonomy configuration restored to default."
     3459msgstr "Taxonomie instellingen hersteld naar standaard."
     3460
     3461#: wpadverts.php:276
     3462msgctxt "taxonomy general name"
     3463msgid "Adverts Categories"
     3464msgstr "Advertentie categorieën"
     3465
     3466#: wpadverts.php:277
     3467msgctxt "taxonomy singular name"
     3468msgid "Advert Category"
     3469msgstr "Advertentie categorie"
     3470
     3471#: includes/class-types-admin.php:541
     3472msgid "Taxonomy updated."
     3473msgstr "Taxonomie geüpdatet."
     3474
     3475#: includes/functions-blocks.php:816
     3476msgid "Template with a sidebar"
     3477msgstr "Template met zijbalk"
     3478
     3479#: wpadverts.php:234
     3480msgid "Temporary <span class=\"count\">(%s)</span>"
     3481msgid_plural "Temporary <span class=\"count\">(%s)</span>"
     3482msgstr[0] "Tijdelijk <span class=\"count\">(%s)</span>"
     3483msgstr[1] "Tijdelijk <span class=\"count\">(%s)</span>"
     3484
     3485#: addons/payments/payments.php:65
     3486msgctxt "temporary status payment"
     3487msgid "Temporary"
     3488msgstr "Tijdelijk"
     3489
     3490#: addons/styling/admin/options.php:95 addons/styling/admin/options.php:121
     3491#: addons/styling/admin/options.php:227 addons/styling/admin/options.php:252
     3492msgid "Text"
     3493msgstr "Tekst"
     3494
     3495#: includes/defaults.php:391
     3496msgid "Text cannot be longer than %max% characters."
     3497msgstr "Tekst mag niet langer zijn dan %max% tekens."
     3498
     3499#: includes/defaults.php:426
     3500msgid "Text cannot have more than %max_links% links."
     3501msgstr "Tekst mag niet meer dan %max_links% links bevatten."
     3502
     3503#: includes/defaults.php:427
     3504msgid "Text contains phrases that are considered SPAM."
     3505msgstr "Tekst bevat zinnen die als SPAM worden beschouwd."
     3506
     3507#: includes/defaults.php:390
     3508msgid "Text needs to be at least %min% characters long."
     3509msgstr "Tekst moet minimaal %min% tekens lang zijn."
     3510
     3511#: includes/functions.php:2266
     3512msgid "Thai Baht"
     3513msgstr "Thaise baht"
     3514
     3515#: blocks/publish/class-publish-engine.php:584
     3516#: includes/class-shortcode-adverts-add.php:497
     3517msgid "Thank you for submitting your ad!"
     3518msgstr "Bedankt voor het plaatsen van je advertentie!"
     3519
     3520#: includes/defaults.php:478
     3521msgid "The file size is incorrect."
     3522msgstr "De bestandsgrootte is onjuist."
     3523
     3524#: includes/defaults.php:484
     3525msgid "The image max. height should be %max_height%."
     3526msgstr "De afbeelding max. hoogte moet %max_height% zijn."
     3527
     3528#: includes/defaults.php:482
     3529msgid "The image max. width should be %max_width%."
     3530msgstr "De afbeelding max. breedte moet %max_width% zijn."
     3531
     3532#: includes/defaults.php:483
     3533msgid "The image min. height should be %min_height%."
     3534msgstr "De afbeelding min. hoogte moet %min_height% zijn."
     3535
     3536#: includes/defaults.php:481
     3537msgid "The image min. width should be %min_width%."
     3538msgstr "De afbeelding min. breedte moet %min_width% zijn."
     3539
     3540#: addons/core/includes/admin-pages.php:567
     3541msgid "The library used for processing uploaded images."
     3542msgstr ""
     3543"De bibliotheek die wordt gebruikt voor het verwerken van geüploade "
     3544"afbeeldingen."
     3545
     3546#. Description of the plugin/theme
     3547msgid "The lightweight WordPress classifieds plugin done right."
     3548msgstr "De lichtgewicht plugin voor WordPress advertenties is goed gelukt."
     3549
     3550#: includes/defaults.php:455
     3551msgid "The max. allowed file size is %max%."
     3552msgstr "De maximale toegestane bestandsgrootte is %max%."
     3553
     3554#: includes/defaults.php:456
     3555msgid "The min. allowed file size is %min%."
     3556msgstr "De minimale toegestane bestandsgrootte is %min%."
     3557
     3558#: addons/payments/includes/shortcodes.php:68
     3559msgid "The payment does not exist or the payment hash is incorrect."
     3560msgstr "De betaling bestaat niet of de betalinghash is onjuist."
     3561
     3562#: addons/payments/includes/shortcodes.php:104
     3563msgid ""
     3564"The payment has been already approved and your Ad should be published soon."
     3565msgstr ""
     3566"De betaling is al goedgekeurd en je advertentie zal binnenkort moeten worden "
     3567"gepubliceerd."
     3568
     3569#: addons/payments/includes/shortcodes.php:76
     3570msgid "The provided hash is not assigned to any of the payment objects."
     3571msgstr ""
     3572"Het verstrekte hash is niet toegewezen aan een van de betalingsobjecten."
     3573
     3574#: addons/payments/includes/shortcodes.php:56
     3575msgid "The provided payment hash could not be found."
     3576msgstr "Het opgegeven betalingshekje (#) kan niet worden gevonden."
     3577
     3578#: addons/core/includes/admin-pages.php:295
     3579msgid "The text to display instead of price if item price was not provided."
     3580msgstr ""
     3581"De tekst die moet worden weergegeven in plaats van de prijs als de prijs "
     3582"niet is opgegeven."
     3583
     3584#: addons/core/admin/types-edit-post.php:24
     3585msgid "There are <strong>%d</strong> published ads with comments disabled."
     3586msgstr ""
     3587"Er zijn <strong>%d</strong> gepubliceerde advertenties met reacties "
     3588"uitgeschakeld."
     3589
     3590#: includes/class-types-admin.php:414 includes/class-types-admin.php:487
     3591msgid "There are errors in your form"
     3592msgstr "Er zitten fouten in je formulier"
     3593
     3594#: addons/bank-transfer/includes/admin-pages.php:47
     3595#: addons/contact-form/contact-form.php:156
     3596#: addons/contact-form/contact-form.php:516
     3597#: addons/contact-form/includes/admin-pages.php:62
     3598#: addons/contact-form/includes/class-block-details.php:309
     3599#: addons/core/includes/admin-pages.php:91
     3600#: addons/core/includes/admin-pages.php:171
     3601#: addons/emails/includes/class-emails-admin.php:85
     3602#: addons/emails/includes/class-emails-admin.php:177
     3603#: addons/payments/includes/admin-pages.php:49
     3604#: addons/payments/includes/admin-pages.php:166
     3605#: addons/payments/includes/admin-pages.php:213
     3606#: addons/payments/includes/admin-pages.php:397
     3607#: includes/class-moderate-admin.php:58
     3608msgid "There are errors in your form."
     3609msgstr "Er staan ​​fouten in je formulier."
     3610
     3611#: blocks/publish/class-publish-engine.php:506
     3612#: includes/class-shortcode-adverts-add.php:440
     3613msgid "There are errors in your form. Please correct them before proceeding."
     3614msgstr ""
     3615"Er staan ​​fouten in je formulier. Corrigeer ze voordat je verder gaat."
     3616
     3617#: includes/class-widget-ads.php:542 templates/list.php:104
     3618msgid "There are no ads matching your search criteria."
     3619msgstr "Er zijn geen advertenties die voldoen aan jouw zoekcriteria."
     3620
     3621#: blocks/list/templates/list.php:162
     3622msgid "There aren't any results matching your search query."
     3623msgstr "Er zijn geen resultaten die overeenkomen met je zoekopdracht."
     3624
     3625#: blocks/manage/index.php:55
     3626msgid "There was an error while deleting."
     3627msgstr "Er is een fout opgetreden bij het verwijderen."
     3628
     3629#: includes/class-types-admin.php:280
     3630msgid "There was an error while executing a MySQL query."
     3631msgstr "Er is een fout opgetreden bij het uitvoeren van een MySQL-query."
     3632
     3633#: addons/payments/includes/admin-pages.php:158
     3634#: addons/payments/includes/admin-pages.php:208
     3635#: addons/payments/includes/admin-pages.php:392
     3636msgid "There was an error while saving pricing in database."
     3637msgstr "Er is een fout opgetreden bij het opslaan van prijzen in de database."
     3638
     3639#: addons/styling/admin/options.php:73 addons/styling/admin/options.php:205
     3640#: addons/styling/admin/options.php:376
     3641msgid "Thick"
     3642msgstr "Vet"
     3643
     3644#: addons/styling/admin/options.php:72 addons/styling/admin/options.php:81
     3645#: addons/styling/admin/options.php:204 addons/styling/admin/options.php:213
     3646#: addons/styling/admin/options.php:375
     3647msgid "Thin"
     3648msgstr "Dun"
     3649
     3650#: addons/core/includes/admin-pages.php:303
     3651msgid "This date format will be used on the ads list and details pages."
     3652msgstr "Datum format wordt gebruikt op de advertentielijst en detailpagina's."
     3653
     3654#: includes/defaults.php:467
     3655msgid "This file type is not allowed."
     3656msgstr "Dit bestandstype is niet toegestaan."
     3657
     3658#: addons/core/includes/admin-pages.php:605
     3659msgid "This image size is being used in gallery thumbnails."
     3660msgstr "Deze afbeeldingsgrootte wordt gebruikt in galerij thumbnails."
     3661
     3662#: addons/core/includes/admin-pages.php:598
     3663msgid "This image size is being used in the [adverts_list] shortcode."
     3664msgstr "Dit afbeeldingsformaat wordt gebruikt in de shortcode [adverts_list]."
     3665
     3666#: addons/core/includes/admin-pages.php:591
     3667msgid ""
     3668"This image size is being used in the image slider on Advert details pages."
     3669msgstr ""
     3670"Deze afbeeldingsgrootte wordt gebruikt in de afbeelding slider op pagina's "
     3671"met advertentiedetails."
     3672
     3673#: addons/payments/admin/payment-history-list.php:55
     3674msgid "This month"
     3675msgstr "Deze maand"
     3676
     3677#: addons/payments/includes/shortcodes.php:84
     3678msgid "This payment has already been paid."
     3679msgstr "Deze betaling is al betaald."
     3680
     3681#: includes/functions.php:3292
     3682msgid "This post cannot be edited by annonymous users."
     3683msgstr "Dit bericht kan niet worden bewerkt door anonieme gebruikers."
     3684
     3685#: includes/functions.php:3300
     3686msgid "This post does not belong to you."
     3687msgstr "Dit bericht is niet van jou."
     3688
     3689#: includes/functions.php:3273
     3690msgid "This post does not exist."
     3691msgstr "Dit bericht bestaat niet."
     3692
     3693#: includes/ajax.php:1223 includes/functions.php:3318
     3694msgid "This post is not an Advert."
     3695msgstr "Dit bericht is geen advertentie."
     3696
     3697#: includes/class-types-admin.php:716
     3698msgid "This taxonomy is hierarchical."
     3699msgstr "Deze taxonomie is hiërarchisch."
     3700
     3701#: includes/gallery.php:405
     3702msgid "This video does not have thumbnails yet. "
     3703msgstr "Deze video heeft nog geen thumbnails. "
     3704
     3705#: addons/core/includes/admin-pages.php:382
     3706msgid "Thousands Separator"
     3707msgstr "Scheidingsteken duizendtallen"
     3708
     3709#: includes/gallery.php:833
     3710msgid "Thumbnail"
     3711msgstr "Thumbnail"
     3712
     3713#: includes/class-types-admin.php:619
     3714msgid "Thumbnail (Featured Image)"
     3715msgstr "Thumbnail (uitgelichte afbeelding)"
     3716
     3717#: addons/core/includes/admin-pages.php:511
     3718msgid "Thumbnails Slider"
     3719msgstr "Thumbnails slider"
     3720
     3721#: includes/class-moderate-admin.php:165
     3722msgid "Time Trap"
     3723msgstr "Timetrap"
     3724
     3725#: includes/class-moderate-admin.php:181
     3726msgid "Timetrap Delta (in seconds)"
     3727msgstr "Timetrap delta (in seconden)"
     3728
     3729#: includes/class-moderate-admin.php:193
     3730msgid "Timetrap Key"
     3731msgstr "Timetrap sleutel"
     3732
     3733#: addons/payments/admin/pricing-list.php:48
     3734#: addons/payments/includes/admin-pages.php:819
     3735#: addons/styling/includes/admin-pages.php:84 blocks/list/index.php:168
     3736#: blocks/manage/class-manage-engine.php:40 blocks/search/index.php:140
     3737#: blocks/single-data-table/index.php:152 includes/admin-post-type.php:575
     3738#: includes/class-rest-blocks.php:165 includes/class-types-admin.php:616
     3739#: includes/class-widget-ads.php:77 includes/class-widget-ads.php:133
     3740#: includes/class-widget-categories.php:76 includes/defaults.php:96
     3741#: includes/gallery.php:460 includes/shortcodes.php:110
     3742msgid "Title"
     3743msgstr "Titel"
     3744
     3745#: addons/emails/includes/class-emails-admin.php:374
     3746msgid "To"
     3747msgstr "Naar"
     3748
     3749#: addons/payments/admin/payment-history-edit.php:75
     3750msgid "To Pay"
     3751msgstr "Te betalen"
     3752
     3753#: addons/payments/templates/add-payment.php:15
     3754#: addons/payments/templates/publish-payment.php:25
     3755msgid "Total"
     3756msgstr "Totaal"
     3757
     3758#: includes/class-gallery-helper.php:453
     3759msgid "Total Files"
     3760msgstr "Totaal aantal bestanden"
     3761
     3762#: includes/class-types-admin.php:621
     3763msgid "Trackbacks"
     3764msgstr "Trackbacks"
     3765
     3766#: addons/styling/admin/options.php:326
     3767msgid "True Gray"
     3768msgstr "Echt grijs"
     3769
     3770#: includes/functions.php:2267
     3771msgid "Turkish Lira"
     3772msgstr "Turkse lira"
     3773
     3774#: addons/payments/admin/payment-history-list.php:83
     3775#: addons/payments/admin/pricing-list.php:49
     3776msgid "Type"
     3777msgstr "Type"
     3778
     3779#: wpadverts.php:399
     3780msgid "Type in the box above to see suggestions ..."
     3781msgstr "Typ in de box hierboven om suggesties te zien ..."
     3782
     3783#: addons/core/admin/moderate.php:17 addons/core/admin/options-gallery.php:17
     3784#: addons/core/admin/options.php:17 addons/core/admin/types-edit-post.php:8
     3785#: addons/core/admin/types-list.php:25
     3786msgid "Types"
     3787msgstr "Types"
     3788
     3789#: includes/functions.php:2273
     3790msgid "UAE Dirham"
     3791msgstr "VAE dirham"
     3792
     3793#: includes/functions.php:2274
     3794msgid "Ukrainian hryvnia"
     3795msgstr "Oekraïense hryvnia"
     3796
     3797#: includes/gallery.php:576
     3798msgid "Undo"
     3799msgstr "Ongedaan maken"
     3800
     3801#: addons/emails/admin/emails-list.php:78
     3802msgid "Unknown"
     3803msgstr "Onbekend"
     3804
     3805#: addons/payments/payments.php:70 addons/payments/payments.php:79
     3806msgid "Unread <span class=\"count\">(%s)</span>"
     3807msgid_plural "Unread <span class=\"count\">(%s)</span>"
     3808msgstr[0] "Ongelezen <span class=\"count\">(%s)</span>"
     3809msgstr[1] "Ongelezen <span class=\"count\">(%s)</span>"
     3810
     3811#: addons/payments/includes/admin-pages.php:685
     3812#: blocks/manage/class-manage-engine.php:320
     3813#: includes/class-moderate-admin.php:7 includes/class-types-admin.php:114
     3814#: includes/class-types-admin.php:149 includes/class-updates-manager.php:332
     3815#: templates/manage-edit.php:74
     3816msgid "Update"
     3817msgstr "Update"
     3818
     3819#: includes/gallery.php:473
     3820msgid "Update Description"
     3821msgstr "Beschrijving updaten"
     3822
     3823#: addons/emails/includes/class-emails-admin.php:165
     3824msgid "Update Message Template"
     3825msgstr "Bericht template updaten"
     3826
     3827#: addons/bank-transfer/includes/admin-pages.php:36
     3828#: addons/contact-form/includes/admin-pages.php:41
     3829#: addons/core/includes/admin-pages.php:50
     3830#: addons/core/includes/admin-pages.php:110
     3831#: addons/emails/includes/class-emails-admin.php:65
     3832#: addons/payments/includes/admin-pages.php:39
     3833#: addons/styling/includes/admin-pages.php:61
    513834msgid "Update Options"
    52 msgstr "Opties bijwerken"
    53 
    54 #: addons/bank-transfer/includes/admin-pages.php:41
    55 #: addons/contact-form/includes/admin-pages.php:46
    56 #: addons/core/includes/admin-pages.php:46
    57 #: addons/payments/includes/admin-pages.php:43
    58 msgid "Settings updated."
    59 msgstr "Instellingen bijgewerkt."
    60 
    61 #: addons/bank-transfer/includes/admin-pages.php:43
    62 #: addons/contact-form/contact-form.php:104
    63 #: addons/contact-form/includes/admin-pages.php:48
    64 #: addons/core/includes/admin-pages.php:48
    65 #: addons/payments/includes/admin-pages.php:45
    66 #: addons/payments/includes/admin-pages.php:157
    67 #: addons/payments/includes/admin-pages.php:200
    68 #: addons/payments/includes/admin-pages.php:315
    69 msgid "There are errors in your form."
    70 msgstr "Je formulier bevat fouten."
    71 
    72 #: addons/bank-transfer/includes/admin-pages.php:60
    73 msgid "Payment Name"
    74 msgstr "Naam van de betaling"
    75 
    76 #: addons/bank-transfer/includes/admin-pages.php:61
    77 msgid "Payment gateway name visible in the frontend when making a payment."
    78 msgstr ""
    79 "Naam van de betaalgateway zichtbaar in de frontend bij het doen van een "
    80 "betaling."
    81 
    82 #: addons/bank-transfer/includes/admin-pages.php:70
    83 #: addons/contact-form/contact-form.php:240
    84 msgid "Message"
    85 msgstr "Bericht"
    86 
    87 #: addons/bank-transfer/includes/admin-pages.php:73
     3835msgstr "Update opties"
     3836
     3837#: addons/payments/admin/payment-history-edit.php:93
     3838msgid "Update Payment"
     3839msgstr "Update betaling"
     3840
     3841#: addons/payments/includes/admin-pages.php:177
     3842msgid "Update Pricing"
     3843msgstr "Prijs updaten"
     3844
     3845#: includes/gallery.php:107
     3846msgid "Upload a file"
     3847msgstr "Een bestand uploaden"
     3848
     3849#: includes/defaults.php:476
     3850msgid "Upload Dimensions"
     3851msgstr "Afmetingen uploaden"
     3852
     3853#: includes/defaults.php:436
     3854msgid "Upload Limit"
     3855msgstr "Uploadlimiet"
     3856
     3857#: addons/core/includes/admin-pages.php:604
     3858msgid "Upload Thumbnail"
     3859msgstr "Upload thumbnail"
     3860
     3861#: includes/defaults.php:451 includes/defaults.php:465
     3862msgid "Upload Type"
     3863msgstr "Uploadtype"
     3864
     3865#: includes/functions.php:268
     3866msgid "Uploaded file is NOT an image"
     3867msgstr "Het geüploade bestand is GEEN afbeelding"
     3868
     3869#: includes/gallery.php:537
     3870msgid "Uploaded on:"
     3871msgstr "Geüpload op:"
     3872
     3873#: includes/defaults.php:356
     3874msgid "URL"
     3875msgstr "URL"
     3876
     3877#: includes/defaults.php:294
     3878msgid "URL - converts string to a valid URL (if possible)."
     3879msgstr "URL - converteert een string naar geldige URL (indien mogelijk)."
     3880
     3881#: includes/functions.php:2240
     3882msgid "US Dollars"
     3883msgstr "US dollars"
     3884
     3885#: includes/class-types-admin.php:797
     3886msgid "Use default method."
     3887msgstr "Gebruik de standaardmethode."
     3888
     3889#: includes/class-types-admin.php:735
     3890msgid "Use hierarchical URLs."
     3891msgstr "Gebruik hiërarchische URL's."
     3892
     3893#: includes/gallery.php:455
     3894msgid "Use this image as main image"
     3895msgstr "Gebruik deze afbeelding als hoofdafbeelding"
     3896
     3897#: includes/admin-pages.php:96
     3898msgid "Use WooCommerce to charge users for posting ads on your website."
     3899msgstr ""
     3900"Gebruik WooCommerce om gebruikers te laten betalen voor het plaatsen van "
     3901"advertenties op jouw website."
     3902
     3903#: addons/emails/admin/emails-list.php:36
     3904#: addons/emails/admin/emails-list.php:91
     3905#: addons/payments/admin/payment-history-list.php:79
     3906msgid "User"
     3907msgstr "Gebruiker"
     3908
     3909#: addons/payments/includes/admin-pages.php:313
     3910msgid "User ID"
     3911msgstr "Gebruikers ID"
     3912
     3913#: addons/payments/admin/payment-history-edit.php:54
     3914msgid "User IP"
     3915msgstr "Gebruiker IP"
     3916
     3917#: addons/contact-form/includes/admin-pages.php:96
     3918msgid "User needs to click a link to reveal a phone number."
     3919msgstr ""
     3920"De gebruiker moet op een link klikken om een ​​telefoonnummer weer te geven."
     3921
     3922#: addons/emails/includes/class-emails-messages.php:230
     3923msgid "User updated his Ad (action required)."
     3924msgstr "Gebruiker heeft zijn advertentie bijgewerkt (actie vereist)."
     3925
     3926#: addons/bank-transfer/includes/admin-pages.php:77
    883927msgid ""
    893928"User will see this message when asked to make payment, make sure that "
     
    933932"remove whole text from editor and save the form."
    943933msgstr ""
    95 "Gebruiker zal dit bericht zien wanneer hem wordt gevraagd om te betalen. "
    96 "Zorg ervoor dat de instructies hier het zo makkelijk mogelijk maken om de "
    97 "​​betaling te doen.<br/> Toegestane ​​variabelen:<br/>- {total} - totaal te "
    98 "betalen bedrag (voor bijvoorbeeld € 10,00)<br/>- {order_number} - uniek "
    99 "ordernummer<br/>Om terug te keren naar het standaardbericht: verwijder alle "
    100 "tekst uit de editor en sla het formulier op."
    101 
    102 #: addons/contact-form/admin/options.php:15 includes/admin-pages.php:127
    103 msgid "Contact Form"
    104 msgstr "Contactformulier"
    105 
    106 #: addons/contact-form/contact-form.php:59
    107 #: addons/contact-form/contact-form.php:118
    108 msgid "Send Message"
    109 msgstr "Bericht verzenden"
    110 
    111 #: addons/contact-form/contact-form.php:101
    112 msgid "Your message has been sent."
    113 msgstr "Je bericht is verzonden."
    114 
    115 #: addons/contact-form/contact-form.php:124 includes/functions.php:1934
    116 msgid "Phone"
    117 msgstr "Telefoon"
    118 
    119 #: addons/contact-form/contact-form.php:208
    120 msgid "Your Name"
    121 msgstr "Je naam"
    122 
    123 #: addons/contact-form/contact-form.php:218
    124 msgid "Your Email"
    125 msgstr "Je emailadres"
    126 
    127 #: addons/contact-form/contact-form.php:229
    128 msgid "Subject"
    129 msgstr "Onderwerp"
    130 
    131 #: addons/contact-form/includes/admin-pages.php:65 includes/defaults.php:78
    132 msgid "Phone Number"
    133 msgstr "Telefoonnummer"
    134 
    135 #: addons/contact-form/includes/admin-pages.php:69
    136 msgid "Show phone number next to contact button."
    137 msgstr "Telefoonnummer tonen naast contactknop."
    138 
    139 #: addons/contact-form/includes/admin-pages.php:78
    140 msgid "From Name"
    141 msgstr "Van naam"
    142 
    143 #: addons/contact-form/includes/admin-pages.php:85
    144 msgid "From Email"
    145 msgstr "Van email"
    146 
    147 #: addons/core/includes/admin-pages.php:25
    148 msgid "Core Options"
    149 msgstr "Hoofdopties"
    150 
    151 #: addons/core/includes/admin-pages.php:121
    152 #: addons/core/includes/admin-pages.php:122
    153 msgid "Common Settings"
    154 msgstr "Algemene instellingen"
    155 
    156 #: addons/core/includes/admin-pages.php:128
    157 msgid "Default Ads List Page"
    158 msgstr "Standaard advertentielijst-pagina"
    159 
    160 #: addons/core/includes/admin-pages.php:129
    161 msgid "Select page on which the main [adverts_list] shortcode is being used."
    162 msgstr ""
    163 "Selecteer de pagina waarop de belangrijkste [adverts_list] shortcode wordt "
    164 "gebruikt."
    165 
    166 #: addons/core/includes/admin-pages.php:135
    167 msgid "Default Visibility"
    168 msgstr "Standaard zichtbaarheid"
    169 
    170 #: addons/core/includes/admin-pages.php:136
    171 msgid "Number of days Ad will be visible by default."
    172 msgstr "Aantal dagen dat de advertentie standaard zichtbaar zal zijn."
    173 
    174 #: addons/core/includes/admin-pages.php:146
    175 #: addons/core/includes/admin-pages.php:147
    176 msgid "Defaults Values For [adverts_list]"
    177 msgstr "Standaardwaarden voor [adverts_list]"
    178 
    179 #: addons/core/includes/admin-pages.php:152
    180 msgid "Search Bar"
    181 msgstr "Zoekbalk"
    182 
    183 #: addons/core/includes/admin-pages.php:155
    184 msgid "Enabled"
    185 msgstr "Ingeschakeld"
    186 
    187 #: addons/core/includes/admin-pages.php:156
    188 msgid "Disabled"
    189 msgstr "Uitgeschakeld"
    190 
    191 #: addons/core/includes/admin-pages.php:162
    192 msgid "Display Ads As"
    193 msgstr "Advertenties tonen als"
    194 
    195 #: addons/core/includes/admin-pages.php:165
    196 msgid "Grid (2 or more columns)"
    197 msgstr "Raster (2 of meer kolommen)"
    198 
    199 #: addons/core/includes/admin-pages.php:166
    200 msgid "List (1 column)"
    201 msgstr "Lijst (1 kolom)"
    202 
    203 #: addons/core/includes/admin-pages.php:173
    204 msgid "Columns"
    205 msgstr "Kolommen"
    206 
    207 #: addons/core/includes/admin-pages.php:184
    208 msgid "Posts Per Page"
    209 msgstr "Berichten per pagina"
    210 
    211 #: addons/core/includes/admin-pages.php:193
    212 msgid "Switch Views"
    213 msgstr "Schakelen tussen weergaven"
    214 
    215 #: addons/core/includes/admin-pages.php:196
    216 msgid "Allow users to switch between grid and list view."
    217 msgstr ""
    218 "Gebruikers toestaan om te schakelen tussen de weergave Raster en Lijst."
    219 
    220 #: addons/core/includes/admin-pages.php:203
    221 #: addons/core/includes/admin-pages.php:204
    222 msgid "Currency Settings"
    223 msgstr "Valuta-instellingen"
    224 
    225 #: addons/core/includes/admin-pages.php:210
    226 msgid "Currency"
    227 msgstr "Munteenheid"
    228 
    229 #: addons/core/includes/admin-pages.php:217
    230 msgid "Currency Position"
    231 msgstr "Positie valutasymbool"
    232 
    233 #: addons/core/includes/admin-pages.php:219
    234 msgid "Prefix - $10"
    235 msgstr "Voorvoegsel - €10"
    236 
    237 #: addons/core/includes/admin-pages.php:220
    238 msgid "Suffix - 10$"
    239 msgstr "Achtervoegsel - 10€"
    240 
    241 #: addons/core/includes/admin-pages.php:227
    242 msgid "Decimal Places"
    243 msgstr "Aantal decimalen"
    244 
    245 #: addons/core/includes/admin-pages.php:237
    246 msgid "Decimal Separator"
    247 msgstr "Decimaalscheiding"
    248 
    249 #: addons/core/includes/admin-pages.php:243
    250 msgid "Thousands Separator"
    251 msgstr "Scheidingsteken voor duizendtallen"
    252 
    253 #: addons/featured/admin/options.php:15 includes/admin-pages.php:121
    254 msgid "Featured Ads"
    255 msgstr "Aanbevolen advertenties"
    256 
    257 #: addons/featured/admin/options.php:22
    258 msgid "http://wpadverts.com/documentation/featured-ads/"
    259 msgstr "http://wpadverts.com/documentation/featured-ads/"
     3934"De gebruiker ziet dit bericht wanneer hem wordt gevraagd om te betalen. Zorg "
     3935"ervoor dat de instructies hier het betalen zo gemakkelijk mogelijk maken."
     3936"<br/>Toegestane variabelen:<br/>- {total} - totaal te betalen bedrag "
     3937"(voorbeeld $10,00)<br/>- {order_number} - uniek ordernummer<br/>Om terug te "
     3938"keren naar het standaardbericht, verwijder je de hele tekst uit de editor en "
     3939"sla je het formulier op."
     3940
     3941#: includes/admin-pages.php:117
     3942msgid "Using Authors module users can create and manage their profiles."
     3943msgstr "Met de Authors module kunnen gebruikers een profiel maken en beheren."
     3944
     3945#: includes/defaults.php:411
     3946msgid "Verify Choices"
     3947msgstr "Verifieer keuzes"
     3948
     3949#: includes/gallery.php:339 includes/gallery.php:487
     3950msgid "Video"
     3951msgstr "Video"
     3952
     3953#: blocks/manage/class-manage-engine.php:336 includes/gallery.php:347
     3954#: templates/manage.php:56
     3955msgid "View"
     3956msgstr "Bekijken"
     3957
     3958#: templates/manage-edit.php:5
     3959msgid "View Ad"
     3960msgstr "Advertentie bekijken"
     3961
     3962#: blocks/manage/templates/manage-list.php:175
     3963#: blocks/publish/templates/publish-save.php:38
     3964msgid "View ads list"
     3965msgstr "Advertentielijst bekijken"
     3966
     3967#: wpadverts.php:245
     3968msgid "View Classified"
     3969msgstr "Bekijk advertenties"
    2603970
    2613971#: addons/featured/admin/options.php:22
    2623972msgid "View Documentation"
    263 msgstr "Documentatie bekijken"
    264 
    265 #: addons/featured/featured.php:69
    266 msgid "Display this listing as featured."
    267 msgstr "Toon deze advertentie als aanbevolen."
    268 
    269 #: addons/featured/featured.php:159
    270 msgid "Feature this ad - it will be styled differently and sticky"
    271 msgstr ""
    272 "Licht deze advertentie uit - weergave in een andere stijl en de advertentie "
    273 "wordt \"sticky\"."
    274 
    275 #: addons/featured/featured.php:248 addons/featured/featured.php:284
    276 #: addons/featured/featured.php:307 includes/gallery.php:104
    277 #: includes/gallery.php:221
    278 msgid "Featured"
    279 msgstr "Aanbevolen"
    280 
    281 #: addons/payments/admin/options.php:15
    282 #: addons/payments/admin/pricing-edit.php:16
    283 #: addons/payments/admin/pricing-list.php:16 includes/admin-pages.php:38
    284 msgid "Options"
    285 msgstr "Opties"
    286 
    287 #: addons/payments/admin/options.php:16
    288 #: addons/payments/admin/pricing-edit.php:18
    289 #: addons/payments/admin/pricing-list.php:18
    290 msgid "Pricing"
    291 msgstr "Prijzen"
    292 
    293 #: addons/payments/admin/payment-history-edit.php:16
    294 msgid "Payment History Edit"
    295 msgstr "Betaalgeschiedenis bewerken"
    296 
    297 #: addons/payments/admin/payment-history-edit.php:28
    298 msgid "Payment"
    299 msgstr "Betaling"
    300 
    301 #: addons/payments/admin/payment-history-edit.php:33
    302 msgid "Gateway"
    303 msgstr "Gateway"
    304 
    305 #: addons/payments/admin/payment-history-edit.php:44
    306 msgid "Created"
    307 msgstr "Aangemaakt"
    308 
    309 #: addons/payments/admin/payment-history-edit.php:51
    310 msgid "User IP"
    311 msgstr "IP-adres gebruiker"
    312 
    313 #: addons/payments/admin/payment-history-edit.php:60
    314 #: addons/payments/admin/payment-history-list.php:72
    315 msgid "Status"
    316 msgstr "Status"
    317 
    318 #: addons/payments/admin/payment-history-edit.php:72
    319 msgid "To Pay"
    320 msgstr "Te betalen"
    321 
    322 #: addons/payments/admin/payment-history-edit.php:79
    323 msgid "Paid"
    324 msgstr "Betaald"
    325 
    326 #: addons/payments/admin/payment-history-edit.php:90
    327 msgid "Update Payment"
    328 msgstr "Betaling bijwerken"
    329 
    330 #: addons/payments/admin/payment-history-edit.php:108
    331 msgid "Purchase Details"
    332 msgstr "Aankoopdetails"
    333 
    334 #: addons/payments/admin/payment-history-edit.php:113
    335 msgid "Purchase Type"
    336 msgstr "Type aankoop"
    337 
    338 #: addons/payments/admin/payment-history-edit.php:116
    339 #: addons/payments/admin/payment-history-list.php:113
    340 msgid "Posting"
    341 msgstr "Post"
    342 
    343 #: addons/payments/admin/payment-history-edit.php:118
    344 #: addons/payments/admin/payment-history-list.php:115
    345 #: addons/payments/admin/pricing-list.php:74
    346 msgid "Renewal"
    347 msgstr "Verlengen"
    348 
    349 #: addons/payments/admin/payment-history-edit.php:126
    350 msgid "Listing Type"
    351 msgstr "Lijsttype"
    352 
    353 #: addons/payments/admin/payment-history-edit.php:138
    354 msgid "Purchased Item"
    355 msgstr "Gekocht item"
    356 
    357 #: addons/payments/admin/payment-history-edit.php:156
    358 msgid "Customer Details"
    359 msgstr "Klantgegevens"
    360 
    361 #: addons/payments/admin/payment-history-edit.php:174
    362 msgid "Payment Log"
    363 msgstr "Betalingslogboek"
    364 
    365 #: addons/payments/admin/payment-history-list.php:16
    366 #: addons/payments/payments.php:742
    367 msgid "Payment History"
    368 msgstr "Betalingsgeschiedenis"
    369 
    370 #: addons/payments/admin/payment-history-list.php:23
    371 msgid "All"
    372 msgstr "Alles"
    373 
    374 #: addons/payments/admin/payment-history-list.php:36
    375 #: addons/payments/admin/payment-history-list.php:148
    376 #: addons/payments/admin/pricing-list.php:32
    377 #: addons/payments/admin/pricing-list.php:115
    378 msgid "Bulk Actions"
    379 msgstr "Bulkacties"
    380 
    381 #: addons/payments/admin/payment-history-list.php:40
    382 #: addons/payments/admin/payment-history-list.php:88
    383 #: addons/payments/admin/payment-history-list.php:152
    384 #: addons/payments/admin/pricing-list.php:33
    385 #: addons/payments/admin/pricing-list.php:66
    386 #: addons/payments/admin/pricing-list.php:116 templates/manage.php:56
    387 #: templates/manage.php:57
    388 msgid "Delete"
    389 msgstr "Verwijderen"
    390 
    391 #: addons/payments/admin/payment-history-list.php:43
    392 #: addons/payments/admin/payment-history-list.php:154
    393 #: addons/payments/admin/pricing-list.php:36
    394 #: addons/payments/admin/pricing-list.php:118
    395 msgid "Apply"
    396 msgstr "Toepassen"
    397 
    398 #: addons/payments/admin/payment-history-list.php:49
    399 msgid "All dates"
    400 msgstr "Alle datums"
    401 
    402 #: addons/payments/admin/payment-history-list.php:50
    403 msgid "This month"
    404 msgstr "Deze maand"
    405 
    406 #: addons/payments/admin/payment-history-list.php:51
    407 msgid "Last month"
    408 msgstr "Afgelopen maand"
    409 
    410 #: addons/payments/admin/payment-history-list.php:56
    411 msgid "Filter"
    412 msgstr "Filteren"
    413 
    414 #: addons/payments/admin/payment-history-list.php:66
    415 msgid "ID"
    416 msgstr "ID"
    417 
    418 #: addons/payments/admin/payment-history-list.php:67
    419 msgid "User"
    420 msgstr "Gebruiker"
    421 
    422 #: addons/payments/admin/payment-history-list.php:69
    423 #: includes/admin-post-type.php:552 templates/list.php:52
    424 msgid "Date"
    425 msgstr "Datum"
    426 
    427 #: addons/payments/admin/payment-history-list.php:70
    428 msgid "Amount"
    429 msgstr "Bedrag"
    430 
    431 #: addons/payments/admin/payment-history-list.php:71
    432 #: addons/payments/admin/pricing-list.php:48
    433 msgid "Type"
    434 msgstr "Lijsttype"
    435 
    436 #: addons/payments/admin/payment-history-list.php:85
    437 #: addons/payments/admin/payment-history-list.php:87
     3973msgstr "Bekijk documentatie"
     3974
     3975#: wpadverts.php:407
     3976msgid "View Full Image"
     3977msgstr "Bekijk de volledige afbeelding"
     3978
     3979#: addons/payments/admin/payment-history-list.php:97
     3980#: addons/payments/admin/payment-history-list.php:99
    4383981msgid "View Order"
     3982msgstr "Bekijk bestelling"
     3983
     3984#: addons/payments/includes/admin-pages.php:636
     3985msgid "View order"
    4393986msgstr "Bestelling bekijken"
    4403987
    441 #: addons/payments/admin/payment-history-list.php:137
    442 #: addons/payments/admin/pricing-list.php:104
    443 msgid "&laquo;"
    444 msgstr "&laquo;"
    445 
    446 #: addons/payments/admin/payment-history-list.php:138
    447 #: addons/payments/admin/pricing-list.php:105
    448 msgid "&raquo;"
    449 msgstr "&raquo;"
    450 
    451 #: addons/payments/admin/pricing-edit.php:19
    452 #: addons/payments/admin/pricing-list.php:19
    453 msgid "Add New"
    454 msgstr "Toevoegen"
    455 
    456 #: addons/payments/admin/pricing-list.php:47
    457 #: addons/payments/includes/admin-pages.php:665
    458 #: includes/admin-post-type.php:548 includes/class-widget-ads.php:77
    459 #: includes/class-widget-ads.php:128 includes/class-widget-categories.php:74
    460 #: includes/defaults.php:96 includes/gallery.php:98 includes/gallery.php:216
    461 msgid "Title"
    462 msgstr "Titel"
    463 
    464 #: addons/payments/admin/pricing-list.php:49
    465 #: addons/payments/includes/admin-pages.php:680
    466 #: includes/admin-post-type.php:549 includes/class-widget-ads.php:133
    467 #: includes/defaults.php:130
    468 msgid "Price"
    469 msgstr "Prijs"
    470 
    471 #: addons/payments/admin/pricing-list.php:50
    472 #: addons/payments/includes/admin-pages.php:689
     3988#: addons/payments/admin/pricing-list.php:51
     3989#: addons/payments/includes/admin-pages.php:843
    4733990msgid "Visible"
    4743991msgstr "Zichtbaar"
    4753992
    476 #: addons/payments/admin/pricing-list.php:63
    477 #: addons/payments/admin/pricing-list.php:65 includes/admin-post-type.php:370
    478 #: templates/manage.php:55
    479 msgid "Edit"
    480 msgstr "Bewerken"
    481 
    482 #: addons/payments/admin/pricing-list.php:72
    483 msgid "New Post"
    484 msgstr "Bericht"
    485 
    486 #: addons/payments/admin/pricing-list.php:83 addons/payments/payments.php:299
    487 #: addons/payments/payments.php:353 addons/payments/payments.php:615
    488 msgid "Free"
    489 msgstr "Gratis"
    490 
    491 #: addons/payments/admin/pricing-list.php:89
    492 msgid "1 day"
    493 msgid_plural "%s days"
    494 msgstr[0] "1 dag"
    495 msgstr[1] "%s dagen"
    496 
    497 #: addons/payments/includes/admin-pages.php:75
    498 msgid ""
    499 "Enable at least one <a href='%s'>Payment Gateway</a> before selecting "
    500 "default."
    501 msgstr ""
    502 "Schakel ten minste één <a href='%s'>Betaalgateway</a> in voordat je een "
    503 "standaard selecteert."
    504 
    505 #: addons/payments/includes/admin-pages.php:88
    506 msgid "Create at least one <a href='%s'>Pricing</a> before selecting default."
    507 msgstr ""
    508 "Maak ten minste één <a href='%s'>set van prijzen</a> aan voordat je een "
    509 "standaard selecteert."
    510 
    511 #: addons/payments/includes/admin-pages.php:127
    512 #: addons/payments/includes/admin-pages.php:128
    513 msgid "Add Pricing"
    514 msgstr "Prijzen toevoegen"
    515 
    516 #: addons/payments/includes/admin-pages.php:149
    517 #: addons/payments/includes/admin-pages.php:195
    518 #: addons/payments/includes/admin-pages.php:310
    519 msgid "There was an error while saving pricing in database."
    520 msgstr ""
    521 "Er is een fout opgetreden bij het opslaan van de prijzen in de database."
    522 
    523 #: addons/payments/includes/admin-pages.php:153
    524 msgid "New pricing has been added."
    525 msgstr "Nieuwe prijzen zijn toegevoegd."
    526 
    527 #: addons/payments/includes/admin-pages.php:167
    528 msgid "Edit Pricing"
    529 msgstr "Prijzen bewerken"
    530 
    531 #: addons/payments/includes/admin-pages.php:168
    532 msgid "Update Pricing"
    533 msgstr "Prijzen bijwerken"
    534 
    535 #: addons/payments/includes/admin-pages.php:197
    536 msgid "Pricing updated."
    537 msgstr "Prijzen bijgewerkt."
    538 
    539 #: addons/payments/includes/admin-pages.php:210
    540 msgid "Adverts Pricing with given ID does not exist."
    541 msgstr "Advertentie-prijzen met opgegeven ID bestaan niet."
    542 
    543 #: addons/payments/includes/admin-pages.php:217
    544 msgid "Pricing deleted."
    545 msgstr "Prijzen verwijderd."
    546 
    547 #: addons/payments/includes/admin-pages.php:237
    548 msgid "1 Pricing deleted."
    549 msgid_plural "%s Pricings deleted."
    550 msgstr[0] "1 prijzen-set verwijderd."
    551 msgstr[1] "%s prijzen-sets verwijderd."
    552 
    553 #: addons/payments/includes/admin-pages.php:283
    554 msgid ""
    555 "Payment Method [%s] assigned to this Payment does not exist or was disabled."
    556 msgstr ""
    557 "Betalingsmethode [%s] toegewezen aan deze betaling bestaat niet of is "
    558 "uitgeschakeld."
    559 
    560 #: addons/payments/includes/admin-pages.php:300
    561 msgid "<strong>%1$s</strong> changed payment status to <strong>%2$s</strong>"
    562 msgstr ""
    563 "Gebruiker <strong>%1$s</strong> heeft betaalstatus aangepast naar <strong>"
    564 "%2$s</strong>."
    565 
    566 #: addons/payments/includes/admin-pages.php:312
    567 msgid "Payment updated."
    568 msgstr "Betaling bijgewerkt."
    569 
    570 #: addons/payments/includes/admin-pages.php:326
    571 msgid "Adverts Payment with given ID does not exist."
    572 msgstr "Betaling voor advertentie met opgegeven ID bestaat niet."
    573 
    574 #: addons/payments/includes/admin-pages.php:333
    575 #: addons/payments/includes/admin-pages.php:365
    576 msgid "1 Payment deleted."
    577 msgid_plural "%s Payments deleted."
    578 msgstr[0] "1 betaling verwijderd."
    579 msgstr[1] "%s betalingen verwijderd."
    580 
    581 #: addons/payments/includes/admin-pages.php:381
    582 msgid "Status for selected Payments was changed to: %s"
    583 msgstr "Status voor geselecteerde betalingen is veranderd in: %s"
    584 
    585 #: addons/payments/includes/admin-pages.php:406
    586 msgid "%1$s %2$d"
    587 msgstr "%1$s %2$d"
    588 
    589 #: addons/payments/includes/admin-pages.php:498
    590 msgid "View order"
    591 msgstr "Bestelling bekijken"
    592 
    593 #: addons/payments/includes/admin-pages.php:503
    594 msgid "Abandoned"
    595 msgstr "Afgebroken"
    596 
    597 #: addons/payments/includes/admin-pages.php:511
    598 #: addons/payments/includes/admin-pages.php:543
    599 msgid "Pending Payment"
    600 msgstr "In afwachting van betaling"
    601 
    602 #: addons/payments/includes/admin-pages.php:547
    603 #: includes/class-updates-manager.php:332 templates/manage-edit.php:47
    604 msgid "Update"
    605 msgstr "Bijwerken"
    606 
    607 #: addons/payments/includes/admin-pages.php:566
    608 msgid "User ID"
    609 msgstr "Gebruikersnaam"
    610 
    611 #: addons/payments/includes/admin-pages.php:625
    612 msgid "Default Payment Gateway"
    613 msgstr "Standaard betaalgateway"
    614 
    615 #: addons/payments/includes/admin-pages.php:634
    616 msgid "Default Pricing"
    617 msgstr "Standaardprijzen"
    618 
    619 #: addons/payments/includes/admin-pages.php:650
    620 msgid "Pricing Type"
    621 msgstr "Type aankoop"
    622 
    623 #: addons/payments/includes/admin-pages.php:654
    624 msgid "New Advert Posting"
    625 msgstr "Advertentie-categorieën"
    626 
    627 #: addons/payments/includes/admin-pages.php:655
    628 msgid "Advert Renewal"
    629 msgstr "Advertentie verlengen"
    630 
    631 #: addons/payments/includes/admin-pages.php:674 includes/defaults.php:120
    632 #: includes/gallery.php:113 includes/gallery.php:227
    633 msgid "Description"
    634 msgstr "Omschrijving"
    635 
    636 #: addons/payments/includes/admin-pages.php:690
    637 msgid "Number of days the Ad will be visible."
    638 msgstr "Aantal dagen dat de advertentie zichtbaar is."
    639 
    640 #: addons/payments/payments.php:67
    641 msgid "Unread <span class=\"count\">(%s)</span>"
    642 msgid_plural "Unread <span class=\"count\">(%s)</span>"
    643 msgstr[0] "Ongelezen <span class=\"count\">(%s)</span>"
    644 msgstr[1] "Ongelezen <span class=\"count\">(%s)</span>"
    645 
    646 #: addons/payments/payments.php:76
    647 msgid "Failed <span class=\"count\">(%s)</span>"
    648 msgid_plural "Failed <span class=\"count\">(%s)</span>"
    649 msgstr[0] "Mislukt <span class=\"count\">(%s)</span>"
    650 msgstr[1] "Mislukt <span class=\"count\">(%s)</span>"
    651 
    652 #: addons/payments/payments.php:85 addons/payments/payments.php:100
    653 msgid "Pending <span class=\"count\">(%s)</span>"
    654 msgid_plural "Pending <span class=\"count\">(%s)</span>"
    655 msgstr[0] "Uitstaande verzoeken <span class=\"count\">%s</span>"
    656 msgstr[1] "Uitstaande verzoeken <span class=\"count\">%s</span>"
    657 
    658 #: addons/payments/payments.php:94
    659 msgid "Refunded <span class=\"count\">(%s)</span>"
    660 msgid_plural "Refunded <span class=\"count\">(%s)</span>"
    661 msgstr[0] "Terugbetaald <span class=\"count\">(%s)</span>"
    662 msgstr[1] "Terugbetaald <span class=\"count\">(%s)</span>"
    663 
    664 #: addons/payments/payments.php:279 addons/payments/payments.php:593
    665 msgid "Listing Information"
    666 msgstr "Lijstinformatie"
    667 
    668 #: addons/payments/payments.php:310
    669 msgid "Listing"
    670 msgstr "Lijst"
    671 
    672 #: addons/payments/payments.php:380
     3993#: addons/payments/payments.php:440 addons/payments/payments.php:521
    6733994msgid "Visible 1 day"
    6743995msgid_plural "Visible %d days"
    675 msgstr[0] "Zichtbaar 1 dag"
     3996msgstr[0] "1 dag zichtbaar"
    6763997msgstr[1] "Zichtbaar %d dagen"
    6773998
    678 #: addons/payments/payments.php:438 includes/shortcodes.php:327
    679 msgid "Thank you for submitting your ad!"
    680 msgstr "Bedankt voor het indienen van deze advertentie!"
    681 
    682 #: addons/payments/payments.php:552
    683 msgid "Renew Ad"
    684 msgstr "Advertentie verlengen"
    685 
    686 #: addons/payments/payments.php:582
    687 msgid ""
    688 "Cannot renew Ads with status 'pending', <a href=\"%s\">cancel and go back</a>"
    689 "."
    690 msgstr ""
    691 "Kan geen advertenties verlengen met de status 'in behandeling', <a "
    692 "href=\"%s\">annuleren en terug</a> ."
    693 
    694 #: addons/payments/payments.php:656
    695 msgid "Renew"
    696 msgstr "Verlengen"
    697 
    698 #: addons/payments/payments.php:675 addons/payments/payments.php:706
    699 msgid "Renew <strong>%s</strong> or <a href=\"%s\">cancel and go back</a>."
    700 msgstr ""
    701 "Verlengen van <strong>%s</strong> of <a href=\"%s\">annuleren en terug</a> ."
    702 
    703 #: addons/payments/payments.php:683
    704 msgid "Ad <strong>%s</strong> renewed. <a href=\"%s\">Go back to Ads list</a>."
    705 msgstr ""
    706 "Advertentie <strong>%s</strong> verlengd. <a href=\"%s\">Ga terug naar "
    707 "advertenties</a>."
    708 
    709 #: addons/payments/payments.php:707
    710 msgid "Select renewal option and click \"Renew\" button."
    711 msgstr "Kies optie tot verlenging en klik op knop \"Verlengen\"."
    712 
    713 #: addons/payments/payments.php:741
    714 msgid "Adverts Payment History"
    715 msgstr "Betalingsgeschiedenis advertenties"
    716 
    717 #: addons/payments/payments.php:865
    718 msgid "Inactive — Waiting for payment."
    719 msgstr "Inactief – Wacht op betaling."
    720 
    721 #: addons/payments/templates/add-payment.php:15
    722 msgid "Total"
    723 msgstr "Totaal"
    724 
    725 #: addons/payments/templates/add-payment.php:27
    726 msgid "No Payment Gateways Enabled!"
    727 msgstr "Geen betaalgateways ingeschakeld!"
    728 
    729 #: addons/payments/templates/add-payment.php:44
    730 msgid "Place Order"
    731 msgstr "Bestelling plaatsen"
    732 
    733 #: admin/options.php:26
    734 msgid "Cannot be disabled"
    735 msgstr "Kan niet worden uitgeschakeld"
    736 
    737 #: admin/options.php:27 admin/options.php:35 admin/options.php:49
    738 msgid "Settings"
    739 msgstr "Instellingen"
    740 
    741 #: admin/options.php:34
    742 msgid "Addon Uploaded and Activated"
    743 msgstr "Add-on geüpload en geactiveerd"
    744 
    745 #: admin/options.php:37
    746 msgid "Addon Uploaded but Inactive"
    747 msgstr "Add-on geüpload maar niet geactiveerd"
    748 
    749 #: admin/options.php:38 includes/class-updates-manager.php:317
    750 msgid "Activate"
    751 msgstr "Activeren"
    752 
    753 #: admin/options.php:41
    754 msgid "Get This Addon"
    755 msgstr "Add-on downloaden"
    756 
    757 #: admin/options.php:50
    758 msgid "Disable"
    759 msgstr "Uit"
    760 
    761 #: admin/options.php:52
    762 msgid "Enable"
    763 msgstr "Aan"
    764 
    765 #: includes/admin-pages.php:37
    766 msgid "Adverts Options"
    767 msgstr "Advertentieopties"
    768 
    769 #: includes/admin-pages.php:80
    770 msgid "Modules"
    771 msgstr "Modules"
    772 
    773 #: includes/admin-pages.php:83
    774 msgid "Core"
    775 msgstr "Hoofdgedeelte"
    776 
    777 #: includes/admin-pages.php:84
    778 msgid ""
    779 "Here you can configure most basic Adverts options, applicable on any site."
    780 msgstr ""
    781 "Hier kunt u de algemene advertentieopties configureren die op elke site "
    782 "toepassing zijn."
    783 
    784 #: includes/admin-pages.php:89
    785 msgid "Payments"
    786 msgstr "Betalingen"
    787 
    788 #: includes/admin-pages.php:90
    789 msgid "Charge users for posting classified ads on your site."
    790 msgstr "Laat gebruikers betalen voor het plaatsen van advertenties op uw site."
     3999#: addons/core/includes/admin-pages.php:519
     4000msgid "Visible Thumbnails"
     4001msgstr "Zichtbare thumbnails"
     4002
     4003#: includes/admin-pages.php:130
     4004msgid ""
     4005"Visually adjust forms and buttons styling for seamless integration with your "
     4006"theme."
     4007msgstr ""
     4008"Pas visueel de vormgeving van formulieren en knoppen aan voor een naadloze "
     4009"integratie met jouw thema."
     4010
     4011#: includes/class-gallery-helper.php:311
     4012msgid "Volume Down"
     4013msgstr "Volume omlaag"
     4014
     4015#: includes/class-gallery-helper.php:314
     4016msgid "Volume Up"
     4017msgstr "Volume omhoog"
     4018
     4019#: addons/styling/admin/options.php:327
     4020msgid "Warm Gray"
     4021msgstr "Warm grijs"
     4022
     4023#: includes/class-moderate-admin.php:111
     4024msgid ""
     4025"When a classified contains any of these words in its content, it will return "
     4026"an error message. One word or phrase per line."
     4027msgstr ""
     4028"Wanneer een advertentie een van deze woorden in de inhoud bevat, wordt een "
     4029"foutmelding geretourneerd. Eén woord of zin per regel."
     4030
     4031#: includes/admin-post-type.php:91
     4032msgid "Whoops, the provided date is invalid."
     4033msgstr "Oeps, de opgegeven datum is ongeldig."
    7914034
    7924035#: includes/admin-pages.php:95
    7934036msgid "WooCommerce Payments"
    794 msgstr "WooCommerce-betalingen"
    795 
    796 #: includes/admin-pages.php:96
    797 msgid "Use WooCommerce to charge users for posting classifieds."
    798 msgstr ""
    799 "Gebruik WooCommerce om gebruikers te laten betalen voor het plaatsen van "
    800 "advertenties."
    801 
    802 #: includes/admin-pages.php:102
    803 msgid "BuddyPress Integration"
    804 msgstr "BuddyPress-integratie"
    805 
    806 #: includes/admin-pages.php:103
    807 msgid ""
    808 "Integrate user Ads with BuddyPress profiles, registration and private "
    809 "messages."
    810 msgstr ""
    811 "Integreer gebruikersadvertenties met BuddyPress-profielen, -registratie en "
    812 "privéberichten."
    813 
    814 #: includes/admin-pages.php:109
    815 msgid "Custom Fields"
    816 msgstr "Aangepaste velden"
    817 
    818 #: includes/admin-pages.php:110
    819 msgid ""
    820 "Allow users to edit: Add, Search and Contact forms using easy to use drag "
    821 "and drop editor."
    822 msgstr ""
    823 "Gebruikers toestaan om te bewerken: toevoegen, zoeken en contactformulieren "
    824 "via drag-and-drop editor."
    825 
    826 #: includes/admin-pages.php:118
    827 msgid "Features"
    828 msgstr "Features"
    829 
    830 #: includes/admin-pages.php:122
    831 msgid "Allow users to post Ads displayed always at the top of the list."
    832 msgstr ""
    833 "Gebruikers toestaan om advertenties te plaatsen die altijd bovenaan de lijst "
    834 "verschijnen."
    835 
    836 #: includes/admin-pages.php:128
    837 msgid ""
    838 "Display contact form on Ad details pages instead of just the contact "
    839 "information."
    840 msgstr ""
    841 "Contactformulier weergeven op advertentie-detailpagina's in plaats van "
    842 "alleen de contactgegevens."
    843 
    844 #: includes/admin-pages.php:133
    845 msgid "Maps And Locations"
    846 msgstr "Kaarten en locaties"
    847 
    848 #: includes/admin-pages.php:134
    849 msgid "Locations Taxonomy, Google Maps integration and more."
    850 msgstr "Locatie-taxonomie, Google Maps-integratie en meer."
    851 
    852 #: includes/admin-pages.php:140
    853 msgid "Fee Per Category"
    854 msgstr "Bedrag per categorie"
    855 
    856 #: includes/admin-pages.php:141
    857 msgid ""
    858 "Set fee for Ads posting per category or allow to post for free in some "
    859 "categories."
    860 msgstr ""
    861 "Stel de prijs voor advertenties per categorie in of maak advertenties gratis "
    862 "in sommige categorieën."
    863 
    864 #: includes/admin-pages.php:147
    865 msgid "reCAPTCHA"
    866 msgstr "reCAPTCHA"
    867 
    868 #: includes/admin-pages.php:148
    869 msgid ""
    870 "Protect your forms from SPAM using easy easy for humans and hard for bots "
    871 "captcha."
    872 msgstr ""
    873 "Bescherm je formulieren tegen SPAM via een captcha die gemakkelijk is voor "
    874 "mensen en maar moeilijk voor spambots."
    875 
    876 #: includes/admin-pages.php:156
    877 msgid "Payment Gateways"
    878 msgstr "Betalingsproviders"
    879 
    880 #: includes/admin-pages.php:160
    881 msgid ""
    882 "Allow users to pay for ad posting using direct bank transfer or cash "
    883 "payments."
    884 msgstr ""
    885 "Sta gebruikers toe om te betalen voor het plaatsen van advertenties via "
    886 "directe overschrijving of contante betalingen."
    887 
    888 #: includes/admin-pages.php:165
    889 msgid "PayPal Standard"
    890 msgstr "PayPal Standard"
    891 
    892 #: includes/admin-pages.php:166
    893 msgid "PayPal Payments Standard, allow users to pay for ads via PayPal."
    894 msgstr ""
    895 "PayPal Payments  Standaard, gebruikers toestaan om via PayPal te betalen "
    896 "voor advertenties."
    897 
    898 #: includes/admin-pages.php:308
    899 msgid "Category Icon"
    900 msgstr "Categorie-pictogram"
    901 
    902 #: includes/admin-pages.php:311
    903 msgid "Filter Icons ..."
    904 msgstr "Filter pictogrammen ..."
    905 
    906 #: includes/admin-post-type.php:93
    907 msgid "Whoops, the provided date is invalid."
    908 msgstr "Oeps, de opgegeven datum is ongeldig."
    909 
    910 #: includes/admin-post-type.php:202
    911 msgid "Post updated, but some required data is not filled properly."
    912 msgstr ""
    913 "Bericht bijgewerkt, maar een aantal vereiste gegevens is niet correct "
    914 "ingevuld."
    915 
    916 #. translators: 1: month number (01, 02, etc.), 2: month abbreviation
    917 #: includes/admin-post-type.php:274
    918 msgid "%1$s-%2$s"
    919 msgstr "%1$s-%2$s"
    920 
    921 #: includes/admin-post-type.php:286
    922 msgid "%1$s %2$s, %3$s @ %4$s : %5$s"
    923 msgstr "%1$s %2$s, %3$s @ %4$s : %5$s"
    924 
    925 #: includes/admin-post-type.php:291 includes/admin-post-type.php:343
    926 msgid "Never Expires"
    927 msgstr "Verloopt nooit"
    928 
    929 #: includes/admin-post-type.php:309 wpadverts.php:265
    930 msgid "OK"
    931 msgstr "OK"
    932 
    933 #: includes/admin-post-type.php:310 includes/class-updates-manager.php:333
    934 #: includes/gallery.php:133 includes/gallery.php:235 templates/manage.php:65
    935 msgid "Cancel"
    936 msgstr "Annuleren"
    937 
    938 #: includes/admin-post-type.php:331
    939 msgid "M j, Y @ G:i"
    940 msgstr "j M Y @ H:i"
    941 
    942 #: includes/admin-post-type.php:357
    943 msgid "Expired: <b>%s</b>"
    944 msgstr "Verlopen: <b>%s</b>"
    945 
    946 #: includes/admin-post-type.php:359
    947 msgid "Expires: <b>%s</b>"
    948 msgstr "Verloopt: <b>%s</b>"
    949 
    950 #: includes/admin-post-type.php:370
    951 msgid "Edit date and time"
    952 msgstr "Datum en tijd bewerken"
    953 
    954 #: includes/admin-post-type.php:442
    955 msgid "(required)"
    956 msgstr "(verplicht)"
    957 
    958 #: includes/admin-post-type.php:479 includes/admin-post-type.php:719
    959 msgid "Expired"
    960 msgstr "Verlopen"
    961 
    962 #: includes/admin-post-type.php:511
    963 msgid "Additional Information"
    964 msgstr "Extra informatie"
    965 
    966 #: includes/admin-post-type.php:528 includes/defaults.php:114
    967 msgid "Gallery"
    968 msgstr "Overzicht"
    969 
    970 #: includes/admin-post-type.php:550
    971 msgid "Author"
    972 msgstr "Auteur"
    973 
    974 #: includes/admin-post-type.php:551
    975 msgid "Expires"
    976 msgstr "Verloopdatum"
    977 
    978 #: includes/admin-post-type.php:579
    979 msgid "Never"
    980 msgstr "Nooit"
    981 
    982 #: includes/admin-post-type.php:584
    983 msgid "Y/m/d g:i:s A"
    984 msgstr "Y-m-d H:i:s"
    985 
    986 #: includes/admin-post-type.php:592 templates/manage.php:39
    987 msgid "Y/m/d"
    988 msgstr "Y-m-d"
    989 
    990 #: includes/admin-post-type.php:595
    991 msgid "in %s"
    992 msgstr "in %s"
    993 
    994 #: includes/admin-post-type.php:597
    995 msgid "%s ago"
    996 msgstr "%s geleden"
    997 
    998 #: includes/admin-post-type.php:612
    999 msgid "None"
    1000 msgstr "Geen"
    1001 
    1002 #: includes/admin-post-type.php:720
    1003 msgid "Expires:"
    1004 msgstr "Verloopdatum:"
    1005 
    1006 #: includes/admin-post-type.php:721
    1007 msgid "Expired:"
    1008 msgstr "Verlopen:"
    1009 
    1010 #: includes/admin-post-type.php:722
    1011 msgid ""
    1012 "Start typing user name, email or login below, some suggestions will appear."
    1013 msgstr ""
    1014 "Begin met tikken van gebruikersnaam, e-mail of login. Vervolgens worden "
    1015 "suggesties getoond."
    1016 
    1017 #: includes/ajax.php:62 includes/ajax.php:144 includes/ajax.php:197
    1018 #: includes/ajax.php:234 includes/ajax.php:358
    1019 msgid "Invalid Session. Please refresh the page and try again."
    1020 msgstr "Ongeldige sessie. Vernieuw de pagina en probeer het opnieuw."
    1021 
    1022 #: includes/ajax.php:244
    1023 msgid "Attachment does not exist."
    1024 msgstr "Bijlage bestaat niet."
    1025 
    1026 #: includes/ajax.php:246
    1027 msgid "Incorrect attachment ID."
    1028 msgstr "Onjuist bijlage-ID."
    1029 
    1030 #: includes/ajax.php:250
    1031 msgid "File could not be deleted."
    1032 msgstr "Bestand kan niet verwijderd worden."
    1033 
    1034 #: includes/ajax.php:277 includes/ajax.php:312
    1035 msgid "Post with given ID does not exist."
    1036 msgstr "Post met opgegeven ID bestaat niet."
    1037 
    1038 #: includes/ajax.php:366
    1039 msgid "Post you are trying to delete does not exist."
    1040 msgstr "Post die je probeert te verwijderen bestaat niet."
    1041 
    1042 #: includes/ajax.php:374
    1043 msgid "Post you are trying to delete does not belong to you."
    1044 msgstr "Post die je probeert te verwijderen is niet van jou."
    1045 
    1046 #: includes/ajax.php:382
    1047 msgid "This post is not an Advert."
    1048 msgstr "Deze post is geen advertentie."
    1049 
    1050 #: includes/ajax.php:412
    1051 msgid "Advert <strong>%s</strong> deleted."
    1052 msgstr "Advertentie <strong>%s</strong> verwijderd."
    1053 
    1054 #: includes/class-form.php:169
    1055 msgid "Invalid value."
    1056 msgstr "Ongeldige waarde."
    1057 
    1058 #: includes/class-updates-manager.php:116
    1059 msgid "License"
    1060 msgstr "Licentie"
    1061 
    1062 #: includes/class-updates-manager.php:150
    1063 msgid "Cannot connect to remote server. Please try again later."
    1064 msgstr ""
    1065 "Kan geen verbinding maken met externe server. Probeer het later opnieuw."
    1066 
    1067 #: includes/class-updates-manager.php:316
    1068 #: includes/class-updates-manager.php:331
    1069 msgid "License ..."
    1070 msgstr "Licentie ..."
    1071 
    1072 #: includes/class-updates-manager.php:320
    1073 msgid "Activate your License in order to enable automatic updates."
    1074 msgstr "Activeer je licentie om de automatische updates in te schakelen."
     4037msgstr "WooCommerce Betalingen"
     4038
     4039#. Plugin Name of the plugin/theme
     4040msgid "WP Adverts"
     4041msgstr "WP Adverts"
     4042
     4043#: includes/functions-blocks.php:840
     4044msgid "WP Templates"
     4045msgstr "WP templates"
    10754046
    10764047#: includes/class-widget-ads.php:35 includes/class-widget-ads.php:50
     
    10784049msgstr "WPAdverts Advertenties"
    10794050
    1080 #: includes/class-widget-ads.php:52
    1081 msgid "Displays list of recent ads."
    1082 msgstr "Toont lijst met recente advertenties."
    1083 
    1084 #: includes/class-widget-ads.php:82
    1085 msgid "Count"
    1086 msgstr "Aantal"
    1087 
    1088 #: includes/class-widget-ads.php:88
    1089 msgid "Keyword"
    1090 msgstr "Trefwoord"
    1091 
    1092 #: includes/class-widget-ads.php:93 includes/defaults.php:142
    1093 #: templates/single.php:52
    1094 msgid "Location"
    1095 msgstr "Plaats"
    1096 
    1097 #: includes/class-widget-ads.php:98 includes/defaults.php:105
    1098 #: templates/single.php:37
    1099 msgid "Category"
    1100 msgstr "Categorie"
    1101 
    1102 #: includes/class-widget-ads.php:105
    1103 msgid "Price Min."
    1104 msgstr "Prijs minimaal"
    1105 
    1106 #: includes/class-widget-ads.php:111
    1107 msgid "Price Max."
    1108 msgstr "Prijs maximaal"
    1109 
    1110 #: includes/class-widget-ads.php:117
    1111 msgid "Sort By"
    1112 msgstr "Sorteren op"
    1113 
    1114 #: includes/class-widget-ads.php:123
    1115 msgid "Publish Date"
    1116 msgstr "Publicatiedatum"
    1117 
    1118 #: includes/class-widget-ads.php:139
    1119 msgid "Order"
    1120 msgstr "Volgorde"
    1121 
    1122 #: includes/class-widget-ads.php:145
    1123 msgid "Descending"
    1124 msgstr "Aflopend"
    1125 
    1126 #: includes/class-widget-ads.php:150
    1127 msgid "Ascending"
    1128 msgstr "Oplopend"
    1129 
    1130 #: includes/class-widget-ads.php:161
    1131 msgid "Show featured Ads only."
    1132 msgstr "Toon alleen aanbevolen advertenties."
    1133 
    1134 #: includes/class-widget-ads.php:484 templates/list.php:76
    1135 msgid "There are no ads matching your search criteria."
    1136 msgstr "Er zijn geen advertenties die voldoen aan uw zoekcriteria."
    1137 
    1138 #: includes/class-widget-categories.php:30
    1139 #: includes/class-widget-categories.php:39
    1140 msgid "Advert Categories"
    1141 msgstr "Advertentie-categorieën"
    1142 
    1143 #: includes/class-widget-categories.php:41
    1144 msgid "Displays list of available categories."
    1145 msgstr "Toont lijst van beschikbare categorieën."
    1146 
    1147 #: includes/class-widget-categories.php:90
    1148 msgid "Hide empty"
    1149 msgstr "Lege verbergen"
    1150 
    1151 #: includes/class-widget-categories.php:104
    1152 msgid "Show post counts"
    1153 msgstr "Berichtaantal tonen"
    1154 
    1155 #: includes/class-widget-categories.php:118
    1156 msgid "Show top categories only"
    1157 msgstr "Alleen topcategorieën"
    1158 
    1159 #: includes/class-widget-categories.php:180
    1160 msgid "Go Up (%s)"
    1161 msgstr "Omhoog (%s)"
    1162 
    1163 #: includes/class-widget-categories.php:182
    1164 msgid "Go Up (Home)"
    1165 msgstr "Omhoog (Home)"
    1166 
    1167 #: includes/class-widget-categories.php:232 templates/categories-all.php:51
    1168 #: templates/categories-top.php:23
    1169 msgid "No categories found."
    1170 msgstr "Geen categorieën gevonden."
    1171 
    1172 #: includes/defaults.php:44
    1173 msgid "Contact Information"
    1174 msgstr "Contactinformatie"
    1175 
    1176 #: includes/defaults.php:50
    1177 msgid "Account"
    1178 msgstr "Account"
    1179 
    1180 #: includes/defaults.php:90
    1181 msgid "Item Information"
    1182 msgstr "Artikelinformatie"
    1183 
    1184 #: includes/defaults.php:157
    1185 msgid "Keyword ..."
    1186 msgstr "Trefwoord ..."
    1187 
    1188 #: includes/defaults.php:169
    1189 msgid "Location ..."
    1190 msgstr "Locatie ..."
    1191 
    1192 #: includes/defaults.php:267
    1193 msgid "Money - converts string formatted as price to float."
    1194 msgstr ""
    1195 "Money - converteert tekenreeks opgemaakt als prijs naar decimaal getal."
    1196 
    1197 #: includes/defaults.php:274
    1198 msgid "URL - converts string to a valid URL (if possible)."
    1199 msgstr "URL - converteert tekenreeks naar een geldige URL (indien mogelijk)."
    1200 
    1201 #: includes/defaults.php:281
    1202 msgid "Integer - converts string to absolute integer."
    1203 msgstr "Integer - converteert tekenreeks naar absolute integer."
    1204 
    1205 #: includes/defaults.php:288
    1206 msgid "Number - converts string to a number."
    1207 msgstr "Number - converteert string naar een getal."
    1208 
    1209 #: includes/defaults.php:298
    1210 msgid "Is Required"
    1211 msgstr "Is vereist"
    1212 
    1213 #: includes/defaults.php:300
    1214 msgid "Field cannot be empty."
    1215 msgstr "Veld mag niet leeg zijn."
    1216 
    1217 #: includes/defaults.php:311
    1218 msgid "Provided email address is invalid."
    1219 msgstr "Opgegeven emailadres is ongeldig."
    1220 
    1221 #: includes/defaults.php:321
    1222 msgid "Cannot create account. User with this email address already exists."
    1223 msgstr "Kan account niet aanmaken. Gebruiker met dit emailadres bestaat al."
    1224 
    1225 #: includes/defaults.php:329
    1226 msgid "URL"
    1227 msgstr "URL"
    1228 
    1229 #: includes/defaults.php:331
    1230 msgid "Provided URL is invalid."
    1231 msgstr "Opgegeven URL is ongeldig."
    1232 
    1233 #: includes/defaults.php:339
    1234 msgid "Is Integer"
    1235 msgstr "Is een geheel getal"
    1236 
    1237 #: includes/defaults.php:341
    1238 msgid "Provided value is not an integer."
    1239 msgstr "Opgegeven waarde is geen geheel getal."
    1240 
    1241 #: includes/defaults.php:349
    1242 msgid "Is Number"
    1243 msgstr "Numeriek"
    1244 
    1245 #: includes/defaults.php:351
    1246 msgid "Provided value is not a number."
    1247 msgstr "Opgegeven waarde is niet numeriek."
    1248 
    1249 #: includes/defaults.php:359
    1250 msgid "String Length"
    1251 msgstr "Lengte tekenreeks"
    1252 
    1253 #: includes/defaults.php:361
    1254 msgid "Incorrect string length."
    1255 msgstr "Onjuiste lengte van de tekenreeks."
    1256 
    1257 #: includes/defaults.php:363
    1258 msgid "Text needs to be at least %min% characters long."
    1259 msgstr "Tekst dient minstens %min% tekens lang zijn."
    1260 
    1261 #: includes/defaults.php:364
    1262 msgid "Text cannot be longer than %max% characters."
    1263 msgstr "Tekst kan niet langer zijn dan %max% tekens."
    1264 
    1265 #: includes/events.php:58
    1266 msgid "Every 5 minutes"
    1267 msgstr "Elke 5 minuten"
    1268 
    1269 #: includes/functions.php:268
    1270 msgid "Uploaded file is NOT an image"
    1271 msgstr "Geüploade bestand is geen afbeelding"
    1272 
    1273 #: includes/functions.php:397
    1274 msgid "Category: %s"
    1275 msgstr "Categorie: %s"
    1276 
    1277 #: includes/functions.php:1152
     4051#: includes/admin-post-type.php:619 templates/manage.php:39
     4052msgid "Y/m/d"
     4053msgstr "Y/m/d"
     4054
     4055#: includes/admin-post-type.php:611
     4056msgid "Y/m/d g:i:s A"
     4057msgstr "j F Y H:i"
     4058
     4059#: templates/manage.php:69
     4060msgid "Yes"
     4061msgstr "Ja"
     4062
     4063#: includes/class-timetrap.php:43 includes/class-timetrap.php:123
     4064msgid "You are filling the forms too fast!"
     4065msgstr "Je vult de formulieren te snel in!"
     4066
     4067#: includes/functions.php:1771
    12784068msgid ""
    12794069"You are posting as <strong>%1$s</strong>. <br/>If you want to use a "
    12804070"different account, please <a href=\"%2$s\">logout</a>."
    12814071msgstr ""
    1282 "Je plaatst deze advertentie als <strong>%1$s</strong>.<br/>Als je een andere "
    1283 "account wilt gebruiken, <a href=\"%2$s\">log dan uit</a>."
    1284 
    1285 #: includes/functions.php:1157
    1286 msgid ""
    1287 "Create an account for me so I can manage all my ads from one place (password "
    1288 "will be emailed to you) or <a href=\"%s\">Sign In</a>"
    1289 msgstr ""
    1290 "Maak een account zodat ik al mijn advertenties vanuit één plaats kan beheren "
    1291 "(wachtwoord wordt je via mail toegestuurd) of <a href=\"%s\">log nu in</a>"
    1292 
    1293 #: includes/functions.php:1372
    1294 msgid "Redirecting"
    1295 msgstr "Je wordt doorgestuurd"
    1296 
    1297 #: includes/functions.php:1373
     4072"Je bericht als <strong>%1$s</strong>. <br/>Als je een ander account wil "
     4073"gebruiken, <a href=\"%2$s\">log dan uit</a>."
     4074
     4075#: includes/shortcodes.php:549
     4076msgid ""
     4077"You are seeing a post preview. This page is not publicly available. <a "
     4078"href=\"%s\">Go back</a>"
     4079msgstr ""
     4080"Je ziet een berichtvoorbeeld. Deze pagina is niet openbaar beschikbaar. <a "
     4081"href=\"%s\">Ga terug</a>"
     4082
     4083#: includes/class-types-admin.php:224 includes/class-types-admin.php:252
     4084msgid "You are trying to restore unsupported post type."
     4085msgstr "Je probeert een niet-ondersteund berichttype te herstellen."
     4086
     4087#: includes/class-types-admin.php:640
     4088msgid ""
     4089"You can assign taxonomies to this post type while <a href=\"%s\">creating or "
     4090"editing</a> them."
     4091msgstr ""
     4092"Je kan taxonomieën aan dit berichttype toewijzen terwijl je ze <a "
     4093"href=\"%s\">maakt of bewerkt</a>."
     4094
     4095#: includes/ajax.php:1269 includes/ajax.php:1316
     4096msgid "You cannot access this page."
     4097msgstr "Je hebt geen toegang tot deze pagina."
     4098
     4099#: includes/ajax.php:450 includes/ajax.php:547 includes/ajax.php:618
     4100#: includes/ajax.php:838
     4101msgid "You cannot edit images."
     4102msgstr "Je kan geen afbeeldingen bewerken."
     4103
     4104#: includes/defaults.php:402
     4105msgid "You cannot select more than %max_choices% items."
     4106msgstr "Je kan niet meer dan %max_choices% items selecteren."
     4107
     4108#: includes/defaults.php:440
     4109msgid "You cannot upload more than %max% files."
     4110msgstr "Je mag niet meer dan %max% bestanden uploaden."
     4111
     4112#: templates/manage.php:94
     4113msgid "You do not have any Ads posted yet."
     4114msgstr "Je hebt nog geen advertenties geplaatst."
     4115
     4116#: blocks/manage/templates/manage-list.php:166
     4117msgid "You do not have any items posted yet."
     4118msgstr "Je hebt nog geen artikelen geplaatst."
     4119
     4120#: blocks/manage/class-manage-engine.php:238 includes/shortcodes.php:424
     4121#: includes/shortcodes.php:528
     4122msgid "You do not own this Ad."
     4123msgstr "Je bent niet de eigenaar van deze advertentie."
     4124
     4125#: includes/defaults.php:441
     4126msgid "You need to upload at least %min% files."
     4127msgstr "Je moet minimaal %min% bestanden uploaden."
     4128
     4129#: addons/emails/includes/class-emails-messages.php:160
     4130msgid "Your Ad has been approved by administrator."
     4131msgstr "Je advertentie is goedgekeurd door de beheerder."
     4132
     4133#: addons/payments/includes/class-emails-integration.php:149
     4134msgid "Your Ad has been paid and published."
     4135msgstr "Je advertentie is betaald en gepubliceerd."
     4136
     4137#: addons/emails/includes/class-emails-messages.php:132
     4138msgid "Your Ad has been published."
     4139msgstr "Je advertentie is gepubliceerd."
     4140
     4141#: blocks/publish/templates/publish-save.php:15 templates/add-save.php:7
     4142msgid ""
     4143"Your ad has been published. You can view it here \"<a href=\"%1$s\">%2$s</a>"
     4144"\"."
     4145msgstr ""
     4146"Je advertentie is gepubliceerd. Je kan je advertentie hier \"<a "
     4147"href=\"%1$s\">%2$s</a>\" bekijken."
     4148
     4149#: blocks/publish/templates/publish-save.php:13 templates/add-save.php:5
     4150msgid ""
     4151"Your ad has been put into moderation, please wait for admin to approve it."
     4152msgstr "Je advertentie is gemodereerd, wacht tot de beheerder deze goedkeurt."
     4153
     4154#: addons/emails/includes/class-emails-messages.php:174
     4155msgid "Your Ad has been rejected by administrator."
     4156msgstr "Je advertentie is afgewezen door de beheerder."
     4157
     4158#: addons/emails/includes/class-emails-messages.php:146
     4159msgid "Your Ad has been saved (pending moderation)."
     4160msgstr "Je advertentie is opgeslagen (in afwachting van moderatie)."
     4161
     4162#: addons/payments/includes/class-emails-integration.php:104
     4163msgid "Your Ad has been saved (waiting for payment)."
     4164msgstr "Je advertentie is opgeslagen (wacht op betaling)."
     4165
     4166#: addons/emails/includes/class-emails-messages.php:188
     4167msgid "Your Ad has expired."
     4168msgstr "Je advertentie is verlopen."
     4169
     4170#: includes/functions.php:2065
    12984171msgid ""
    12994172"Your are being redirected to Edit page. <a href=\"%s\">Click here</a> if it "
    13004173"is taking to long. "
    13014174msgstr ""
    1302 "Je wordt doorgestuurd naar de bewerkpagina. <a href=\"%s\">Klik hier</a> als "
     4175"Je wordt omgeleid naar de pagina Bewerken. <a href=\"%s\">Klik hier</a> als "
    13034176"het te lang duurt. "
    13044177
    1305 #: includes/functions.php:1542
    1306 msgid "US Dollars"
    1307 msgstr "Amerikaanse dollar"
    1308 
    1309 #: includes/functions.php:1543
    1310 msgid "Euros"
    1311 msgstr "Euro"
    1312 
    1313 #: includes/functions.php:1544
    1314 msgid "Pounds Sterling"
    1315 msgstr "Pond Sterling"
    1316 
    1317 #: includes/functions.php:1545
    1318 msgid "Australian Dollars"
    1319 msgstr "Australische dollar"
    1320 
    1321 #: includes/functions.php:1546
    1322 msgid "Brazilian Real"
    1323 msgstr "Braziliaanse real"
    1324 
    1325 #: includes/functions.php:1547
    1326 msgid "Canadian Dollars"
    1327 msgstr "Canadese dollar"
    1328 
    1329 #: includes/functions.php:1548
    1330 msgid "Czech Koruna"
    1331 msgstr "Tsjechische kroon"
    1332 
    1333 #: includes/functions.php:1549
    1334 msgid "Danish Krone"
    1335 msgstr "Deense kroon"
    1336 
    1337 #: includes/functions.php:1550
    1338 msgid "Hong Kong Dollar"
    1339 msgstr "Hongkongse dollar"
    1340 
    1341 #: includes/functions.php:1551
    1342 msgid "Hungarian Forint"
    1343 msgstr "Hongaarse forint"
    1344 
    1345 #: includes/functions.php:1552
    1346 msgid "Israeli Shekel"
    1347 msgstr "Israëlische shekel"
    1348 
    1349 #: includes/functions.php:1553
    1350 msgid "Japanese Yen"
    1351 msgstr "Japanse yen"
    1352 
    1353 #: includes/functions.php:1554
    1354 msgid "Malaysian Ringgits"
    1355 msgstr "Maleisische ringgit"
    1356 
    1357 #: includes/functions.php:1555
    1358 msgid "Mexican Peso"
    1359 msgstr "Mexicaanse peso"
    1360 
    1361 #: includes/functions.php:1556
    1362 msgid "New Zealand Dollar"
    1363 msgstr "Nieuw-Zeelandse dollar"
    1364 
    1365 #: includes/functions.php:1557
    1366 msgid "Norwegian Krone"
    1367 msgstr "Noorse kroon"
    1368 
    1369 #: includes/functions.php:1558
    1370 msgid "Philippine Pesos"
    1371 msgstr "Filippijnse peso"
    1372 
    1373 #: includes/functions.php:1559
    1374 msgid "Polish Zloty"
    1375 msgstr "Poolse zloty"
    1376 
    1377 #: includes/functions.php:1560
    1378 msgid "Singapore Dollar"
    1379 msgstr "Singaporese dollar"
    1380 
    1381 #: includes/functions.php:1561
    1382 msgid "Swedish Krona"
    1383 msgstr "Zweedse kroon"
    1384 
    1385 #: includes/functions.php:1562
    1386 msgid "Swiss Franc"
    1387 msgstr "Zwitserse frank"
    1388 
    1389 #: includes/functions.php:1563
    1390 msgid "Taiwan New Dollars"
    1391 msgstr "Taiwan New Dollars"
    1392 
    1393 #: includes/functions.php:1564
    1394 msgid "Thai Baht"
    1395 msgstr "Thaise baht"
    1396 
    1397 #: includes/functions.php:1565
    1398 msgid "Indian Rupee"
    1399 msgstr "Indiase roepie"
    1400 
    1401 #: includes/functions.php:1566
    1402 msgid "Turkish Lira"
    1403 msgstr "Turkse lira"
    1404 
    1405 #: includes/functions.php:1567
    1406 msgid "Iranian Rial"
    1407 msgstr "Iraanse rial"
    1408 
    1409 #: includes/functions.php:1568
    1410 msgid "Russian Rubles"
    1411 msgstr "Russische roebel"
    1412 
    1413 #: includes/functions.php:1569
    1414 msgid "South African Rand"
    1415 msgstr "Zuid-Afrikaanse rand"
    1416 
    1417 #: includes/functions.php:1926
    1418 msgid "Show Contact Information"
    1419 msgstr "Contactinformatie tonen"
    1420 
    1421 #: includes/gallery.php:44
    1422 msgid "Allowed Files"
    1423 msgstr "Toegestane bestanden"
    1424 
    1425 #: includes/gallery.php:65 includes/gallery.php:150
    1426 msgid "Drop Images Here"
    1427 msgstr "Afbeeldingen hier naartoe slepen"
    1428 
    1429 #: includes/gallery.php:66 includes/gallery.php:151
    1430 msgid "browse files ..."
    1431 msgstr "Door bestanden bladeren ..."
    1432 
    1433 #: includes/gallery.php:77
    1434 msgid "Close"
    1435 msgstr "Sluiten"
    1436 
    1437 #: includes/gallery.php:81 wpadverts.php:195
    1438 msgid "Edit Image"
    1439 msgstr "Afbeelding bewerken"
    1440 
    1441 #: includes/gallery.php:85 includes/gallery.php:210
    1442 msgid "Image Properties"
    1443 msgstr "Afbeeldingseigenschappen"
    1444 
    1445 #: includes/gallery.php:108 includes/gallery.php:223
    1446 msgid "Use this image as main image"
    1447 msgstr "Gebruik deze afbeelding als hoofdafbeelding"
    1448 
    1449 #: includes/gallery.php:134 includes/gallery.php:236
    1450 msgid "Update and Close"
    1451 msgstr "Bijwerken en sluiten"
    1452 
    1453 #: includes/shortcodes.php:308
    1454 msgid "There are errors in your form. Please correct them before proceeding."
    1455 msgstr "Je formulier bevat fouten. Corrigeer ze voordat je verder gaat."
    1456 
    1457 #: includes/shortcodes.php:361
    1458 msgid ""
    1459 "Only logged in users can access this page. <a href=\"%1$s\">Login</a> or <a "
    1460 "href=\"%2$s\">Register</a>."
    1461 msgstr ""
    1462 "Alleen ingelogde gebruikers kunnen toegang krijgen tot deze pagina. <a "
    1463 "href=\"%1$s\">Login</a> or <a href=\"%2$s\">Registeren</a>"
    1464 
    1465 #: includes/shortcodes.php:477
    1466 msgid "Ad does not exist."
    1467 msgstr "Advertentie bestaat niet."
    1468 
    1469 #: includes/shortcodes.php:483
    1470 msgid "You do not own this Ad."
    1471 msgstr "Je bent niet de eigenaar van deze advertentie."
    1472 
    1473 #: includes/shortcodes.php:491
    1474 msgid "Incorrect post status [%s]."
    1475 msgstr "Onjuist berichtstatus [%s]."
    1476 
    1477 #: includes/shortcodes.php:538
    1478 msgid "Post has been updated."
    1479 msgstr "Bericht is bijgewerkt."
    1480 
    1481 #: includes/shortcodes.php:542
    1482 msgid "Cannot update. There are errors in your form."
    1483 msgstr "Kan niet bijwerken. Je formulier bevat fouten."
    1484 
    1485 #: templates/add-preview.php:8
    1486 msgid "Edit Listing"
    1487 msgstr "Bewerken"
    1488 
    1489 #: templates/add-preview.php:14
    1490 msgid "Publish Listing"
    1491 msgstr "Plaatsen"
    1492 
    1493 #: templates/add-save.php:5
    1494 msgid ""
    1495 "Your ad has been put into moderation, please wait for admin to approve it."
    1496 msgstr "Je advertentie moet nog goedgekeurd worden door een beheerder."
    1497 
    1498 #: templates/add-save.php:7
    1499 msgid ""
    1500 "Your ad has been published. You can view it here \"<a href=\"%1$s\">%2$s</a>"
    1501 "\"."
    1502 msgstr ""
    1503 "Je advertentie is gepubliceerd. Je kunt hem hier bekijken \"<a href=\"%1$s\">"
    1504 "%2$s</a>\"."
    1505 
    1506 #: templates/add.php:47
    1507 msgid "Preview"
    1508 msgstr "Voorbeeld"
    1509 
    1510 #: templates/categories-all.php:39
    1511 msgid "<em>View All &raquo;</em>"
    1512 msgstr "<em>Alles bekijken &raquo;</ em>"
    1513 
    1514 #: templates/list.php:48
    1515 msgid "Grid"
    1516 msgstr "Grid"
    1517 
    1518 #: templates/list.php:49
    1519 msgid "List"
    1520 msgstr "Lijst"
    1521 
    1522 #: templates/list.php:57
    1523 msgid "Advanced Search"
    1524 msgstr "Uitgebreid zoeken"
    1525 
    1526 #: templates/list.php:59
    1527 msgid "SEARCH"
    1528 msgstr "ZOEKEN"
    1529 
    1530 #: templates/list.php:63
    1531 msgid "Filter Results"
    1532 msgstr "Resultaat"
    1533 
    1534 #: templates/manage-edit.php:2
    1535 msgid "Go Back"
    1536 msgstr "Terug"
    1537 
    1538 #: templates/manage-edit.php:3
    1539 msgid "View Ad"
    1540 msgstr "Advertentie bekijken"
    1541 
    1542 #: templates/manage.php:22
    1543 msgid "Inactive — This Ad is in moderation."
    1544 msgstr "Inactief – Deze advertentie wordt gemodereerd."
    1545 
    1546 #: templates/manage.php:26
    1547 msgid "Inactive — This Ad expired."
    1548 msgstr "Inactief – Deze advertentie is verlopen."
    1549 
    1550 #: templates/manage.php:39
    1551 msgid "Expires %s"
    1552 msgstr "Verloopt: <b>%s</b>"
    1553 
    1554 #: templates/manage.php:54
    1555 msgid "View"
    1556 msgstr "Bekijken"
    1557 
    1558 #: templates/manage.php:62
    1559 msgid "Are you sure?"
    1560 msgstr "Weet je het zeker?"
    1561 
    1562 #: templates/manage.php:64
    1563 msgid "Yes"
    1564 msgstr "Ja"
    1565 
    1566 #: templates/manage.php:73
    1567 msgid "More"
    1568 msgstr "Meer"
    1569 
    1570 #: templates/manage.php:87
    1571 msgid "You do not have any Ads posted yet."
    1572 msgstr "Je hebt nog geen advertenties gepubliceerd."
    1573 
    1574 #: templates/single.php:19
    1575 msgid "by <strong>%s</strong>"
    1576 msgstr "door <strong>%s</strong>"
    1577 
    1578 #: templates/single.php:20
    1579 msgid "Published: %1$s (%2$s ago)"
    1580 msgstr "Gepubliceerd: %1$s (%2$s geleden)"
    1581 
    1582 #: wpadverts.php:84
    1583 msgid "Expired <span class=\"count\">(%s)</span>"
    1584 msgid_plural "Expired <span class=\"count\">(%s)</span>"
    1585 msgstr[0] "Verlopen <span class=\"count\">(%s)</span>"
    1586 msgstr[1] "Verlopen <span class=\"count\">(%s)</span>"
    1587 
    1588 #: wpadverts.php:92
    1589 msgid "Temporary <span class=\"count\">(%s)</span>"
    1590 msgid_plural "Temporary <span class=\"count\">(%s)</span>"
    1591 msgstr[0] "Tijdelijk <span class=\"count\">(%s)</span>"
    1592 msgstr[1] "Tijdelijk <span class=\"count\">(%s)</span>"
    1593 
    1594 #: wpadverts.php:99
    1595 msgid "Add New Classified"
    1596 msgstr "Nieuwe advertentie toevoegen"
    1597 
    1598 #: wpadverts.php:100
    1599 msgid "Edit Classified"
    1600 msgstr "Advertentie bewerken"
    1601 
    1602 #: wpadverts.php:101
    1603 msgid "New Classified"
    1604 msgstr "Nieuwe advertentie"
    1605 
    1606 #: wpadverts.php:102
    1607 msgid "All Classifieds"
    1608 msgstr "Alle advertenties"
    1609 
    1610 #: wpadverts.php:103
    1611 msgid "View Classified"
    1612 msgstr "Advertentie bekijken"
    1613 
    1614 #: wpadverts.php:104
    1615 msgid "Search Classifieds"
    1616 msgstr "Advertenties zoeken"
    1617 
    1618 #: wpadverts.php:105
    1619 msgid "No Classifieds found"
    1620 msgstr "Geen advertenties gevonden"
    1621 
    1622 #: wpadverts.php:106
    1623 msgid "No Classifieds found in the Trash"
    1624 msgstr "Geen advertenties gevonden in de prullenbak"
    1625 
    1626 #: wpadverts.php:108
    1627 msgid "Classifieds"
    1628 msgstr "Advertenties"
    1629 
    1630 #: wpadverts.php:185
    1631 msgid "Select options ..."
    1632 msgstr "Selecteren ..."
    1633 
    1634 #: wpadverts.php:190
    1635 msgid "No results found."
    1636 msgstr "Geen resultaten gevonden."
    1637 
    1638 #: wpadverts.php:196
    1639 msgid "Delete Image"
    1640 msgstr "Afbeelding verwijderen"
    1641 
    1642 #: wpadverts.php:197
    1643 msgid "View Full Image"
    1644 msgstr "Bekijk de volledige afbeelding"
    1645 
    1646 #: wpadverts.php:198
    1647 msgid "Main"
    1648 msgstr "Standaard"
    1649 
    1650 #: wpadverts.php:384
    1651 msgid "Module activated successfully."
    1652 msgstr "Module succesvol geactiveerd."
    1653 
    1654 #. Plugin Name of the plugin/theme
    1655 msgid "WP Adverts"
    1656 msgstr "WP Adverts"
    1657 
    1658 #. Plugin URI of the plugin/theme
    1659 msgid "https://wpadverts.com/"
    1660 msgstr "https://wpadverts.com/"
    1661 
    1662 #. Description of the plugin/theme
    1663 msgid "The lightweight WordPress classifieds plugin done right."
    1664 msgstr ""
    1665 "De lichtgewicht WordPress-plugin voor regeladvertenties. Op de goede manier."
    1666 
    1667 #. Author of the plugin/theme
    1668 msgid "Greg Winiarski"
    1669 msgstr "Greg Winiarski"
    1670 
    1671 #: addons/payments/payments.php:62
    1672 msgctxt "completed status payment"
    1673 msgid "Completed"
    1674 msgstr "Voltooid"
    1675 
    1676 #: addons/payments/payments.php:71
    1677 msgctxt "failed status payment"
    1678 msgid "Failed"
    1679 msgstr "Mislukt"
    1680 
    1681 #: addons/payments/payments.php:80
    1682 msgctxt "pending status payment"
    1683 msgid "Pending"
    1684 msgstr "In behandeling"
    1685 
    1686 #: addons/payments/payments.php:89
    1687 msgctxt "refunded status payment"
    1688 msgid "Refunded"
    1689 msgstr "Terugbetaald"
    1690 
    1691 #: addons/payments/payments.php:98
    1692 msgctxt "post"
    1693 msgid "Pending"
    1694 msgstr "In behandeling"
    1695 
    1696 #: wpadverts.php:81
    1697 msgctxt "post"
    1698 msgid "Expired"
    1699 msgstr "Verlopen"
    1700 
    1701 #: wpadverts.php:88
    1702 msgctxt "post"
    1703 msgid "Temporary"
    1704 msgstr "Tijdelijk"
    1705 
    1706 #: wpadverts.php:96
    1707 msgctxt "post type general name"
    1708 msgid "Classifieds"
    1709 msgstr "Advertenties"
    1710 
    1711 #: wpadverts.php:97
    1712 msgctxt "post type singular name"
    1713 msgid "Classified"
    1714 msgstr "Advertentie"
    1715 
    1716 #: wpadverts.php:98
    1717 msgctxt "classified"
    1718 msgid "Add New"
    1719 msgstr "Toevoegen"
     4178#: blocks/single-gallery/templates/gallery.php:33
     4179msgid "Your browser cannot play this video."
     4180msgstr "Uw browser kan deze video niet afspelen."
     4181
     4182#: includes/class-gallery-helper.php:360
     4183msgid ""
     4184"Your browser cannot play this video. Please use a different browser or "
     4185"download the video and play on your device."
     4186msgstr ""
     4187"Je browser kan deze video niet afspelen. Gebruik een andere browser of "
     4188"download de video en speel deze af op jouw apparaat."
     4189
     4190#: addons/contact-form/contact-form.php:562
     4191msgid "Your Email"
     4192msgstr "Jouw e-mail"
     4193
     4194#: addons/payments/includes/class-emails-integration.php:179
     4195msgid "Your expired Ad has been renewed and is panding approval."
     4196msgstr "Jouw verlopen advertentie is vernieuwd en wacht op goedkeuring."
     4197
     4198#: addons/payments/includes/class-emails-integration.php:164
     4199msgid "Your expired Ad has been renewed and published."
     4200msgstr "Jouw verlopen advertentie is vernieuwd en gepubliceerd."
     4201
     4202#: addons/contact-form/contact-form.php:149
     4203#: addons/contact-form/contact-form.php:507
     4204#: addons/contact-form/includes/class-block-details.php:302
     4205msgid "Your message has been sent."
     4206msgstr "Je bericht is verzonden."
     4207
     4208#: addons/contact-form/contact-form.php:552
     4209msgid "Your Name"
     4210msgstr "Jouw naam"
     4211
     4212#: includes/gallery.php:621
     4213msgid "Zoom:"
     4214msgstr "Zoom:"
     4215
     4216#: addons/contact-form/includes/class-emails-integration.php:70
     4217msgid ""
     4218"{$form.message_body}\n"
     4219"\n"
     4220"URL: {$advert.ID|get_permalink}\n"
     4221"Price: {$advert.ID|adverts_get_the_price}"
     4222msgstr ""
     4223"{$form.message_body}\n"
     4224"\n"
     4225"URL: {$advert.ID|get_permalink}\n"
     4226"Prijs: {$advert.ID|adverts_get_the_price}"
     4227
     4228#: includes/functions-blocks.php:763 includes/functions-blocks.php:780
     4229msgid "~ no title ~"
     4230msgstr "~ geen titel ~"
  • wpadverts/trunk/languages/wpadverts.pot

    r3316823 r3340879  
    55"Project-Id-Version: WP Adverts 2.2.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpadverts\n"
    7 "POT-Creation-Date: 2025-06-24 09:03:08+00:00\n"
     7"POT-Creation-Date: 2025-08-07 10:33:52+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
     
    2929msgstr ""
    3030
    31 #: addons/bank-transfer/bank-transfer.php:42 includes/admin-pages.php:213
     31#: addons/bank-transfer/bank-transfer.php:42 includes/admin-pages.php:221
    3232msgid "Bank Transfer"
    3333msgstr ""
     
    7272#: addons/contact-form/contact-form.php:516
    7373#: addons/contact-form/includes/admin-pages.php:62
    74 #: addons/contact-form/includes/class-block-details.php:309
     74#: addons/contact-form/includes/class-block-details.php:311
    7575#: addons/core/includes/admin-pages.php:91
    7676#: addons/core/includes/admin-pages.php:171
     
    110110#: addons/contact-form/includes/class-block-details.php:49
    111111#: addons/contact-form/includes/class-emails-integration.php:44
    112 #: includes/admin-pages.php:146
     112#: includes/admin-pages.php:154
    113113msgid "Contact Form"
    114114msgstr ""
     
    117117#: addons/contact-form/contact-form.php:118
    118118#: addons/contact-form/includes/class-block-details.php:40
    119 #: addons/contact-form/includes/class-block-details.php:234
     119#: addons/contact-form/includes/class-block-details.php:236
    120120msgid "Send Message"
    121121msgstr ""
     
    134134#: addons/contact-form/contact-form.php:149
    135135#: addons/contact-form/contact-form.php:507
    136 #: addons/contact-form/includes/class-block-details.php:302
     136#: addons/contact-form/includes/class-block-details.php:304
    137137msgid "Your message has been sent."
    138138msgstr ""
     
    856856msgstr ""
    857857
    858 #: addons/featured/admin/options.php:15 includes/admin-pages.php:140
     858#: addons/featured/admin/options.php:15 includes/admin-pages.php:148
    859859msgid "Featured Ads"
    860860msgstr ""
     
    12171217
    12181218#: addons/payments/includes/admin-pages.php:685
    1219 #: blocks/manage/class-manage-engine.php:320
     1219#: blocks/manage/class-manage-engine.php:322
    12201220#: includes/class-moderate-admin.php:7 includes/class-types-admin.php:114
    12211221#: includes/class-types-admin.php:149 includes/class-updates-manager.php:332
     
    12661266
    12671267#: addons/payments/includes/class-emails-integration.php:78
    1268 #: includes/admin-pages.php:89
     1268#: includes/admin-pages.php:110
    12691269msgid "Payments"
    12701270msgstr ""
     
    19021902#: blocks/list/index.php:154 blocks/list/index.php:183
    19031903#: blocks/list/index.php:184 blocks/manage/class-manage-engine.php:26
    1904 #: blocks/manage/class-manage-engine.php:109
    1905 #: blocks/manage/class-manage-engine.php:110 blocks/search/index.php:126
     1904#: blocks/manage/class-manage-engine.php:111
     1905#: blocks/manage/class-manage-engine.php:112 blocks/search/index.php:126
    19061906#: blocks/search/index.php:149 blocks/search/index.php:150
    19071907#: includes/class-widget-ads.php:128 includes/shortcodes.php:96
     
    19121912#: blocks/list/index.php:156 blocks/list/index.php:184
    19131913#: blocks/manage/class-manage-engine.php:28
    1914 #: blocks/manage/class-manage-engine.php:110 blocks/search/index.php:128
     1914#: blocks/manage/class-manage-engine.php:112 blocks/search/index.php:128
    19151915#: blocks/search/index.php:150 includes/shortcodes.php:98
    19161916#: includes/shortcodes.php:120
     
    19521952
    19531953#: blocks/list/index.php:184 blocks/list/index.php:216
    1954 #: blocks/manage/class-manage-engine.php:110
    1955 #: blocks/manage/class-manage-engine.php:140 blocks/search/index.php:150
     1954#: blocks/manage/class-manage-engine.php:112
     1955#: blocks/manage/class-manage-engine.php:142 blocks/search/index.php:150
    19561956#: blocks/search/index.php:180 includes/shortcodes.php:120
    19571957#: includes/shortcodes.php:150
     
    19931993msgstr ""
    19941994
    1995 #: blocks/manage/class-manage-engine.php:166
     1995#: blocks/manage/class-manage-engine.php:168
    19961996msgid "Manage"
    19971997msgstr ""
    19981998
    1999 #: blocks/manage/class-manage-engine.php:230 includes/shortcodes.php:414
     1999#: blocks/manage/class-manage-engine.php:232 includes/shortcodes.php:414
    20002000#: includes/shortcodes.php:518
    20012001msgid "Ad does not exist."
    20022002msgstr ""
    20032003
    2004 #: blocks/manage/class-manage-engine.php:238 includes/shortcodes.php:424
     2004#: blocks/manage/class-manage-engine.php:240 includes/shortcodes.php:424
    20052005#: includes/shortcodes.php:528
    20062006msgid "You do not own this Ad."
    20072007msgstr ""
    20082008
    2009 #: blocks/manage/class-manage-engine.php:248 includes/shortcodes.php:436
     2009#: blocks/manage/class-manage-engine.php:250 includes/shortcodes.php:436
    20102010#: includes/shortcodes.php:540
    20112011msgid "Incorrect post status [%s]."
    20122012msgstr ""
    20132013
    2014 #: blocks/manage/class-manage-engine.php:287 includes/shortcodes.php:477
     2014#: blocks/manage/class-manage-engine.php:289 includes/shortcodes.php:477
    20152015msgid "Post has been updated."
    20162016msgstr ""
    20172017
    2018 #: blocks/manage/class-manage-engine.php:298 includes/shortcodes.php:488
     2018#: blocks/manage/class-manage-engine.php:300 includes/shortcodes.php:488
    20192019msgid "Cannot update. There are errors in your form."
    20202020msgstr ""
    20212021
    2022 #: blocks/manage/class-manage-engine.php:336 includes/gallery.php:347
     2022#: blocks/manage/class-manage-engine.php:338 includes/gallery.php:347
    20232023#: templates/manage.php:56
    20242024msgid "View"
    20252025msgstr ""
    20262026
    2027 #: blocks/manage/class-manage-engine.php:348
     2027#: blocks/manage/class-manage-engine.php:350
    20282028msgid "Delete ..."
    20292029msgstr ""
    20302030
    2031 #: blocks/manage/class-manage-engine.php:382 templates/manage-edit.php:69
     2031#: blocks/manage/class-manage-engine.php:384 templates/manage-edit.php:69
    20322032msgid ""
    20332033"<strong>Important Note.</strong> After submitting changes your Ad will be "
     
    20902090
    20912091#: blocks/publish/class-publish-engine.php:339
    2092 #: blocks/publish/class-publish-engine.php:514
     2092#: blocks/publish/class-publish-engine.php:515
    20932093#: blocks/publish/templates/publish-preview.php:41
    20942094#: blocks/publish/templates/publish-preview.php:87
     
    20992099
    21002100#: blocks/publish/class-publish-engine.php:342
    2101 #: blocks/publish/class-publish-engine.php:516
     2101#: blocks/publish/class-publish-engine.php:517
    21022102msgid "Preview Listing"
    21032103msgstr ""
    21042104
    2105 #: blocks/publish/class-publish-engine.php:392
     2105#: blocks/publish/class-publish-engine.php:393
    21062106#: includes/class-shortcode-adverts-add.php:346 includes/functions.php:3177
    21072107msgid ""
     
    21102110msgstr ""
    21112111
    2112 #: blocks/publish/class-publish-engine.php:394
     2112#: blocks/publish/class-publish-engine.php:395
    21132113#: includes/class-shortcode-adverts-add.php:348 includes/functions.php:3179
    21142114msgid "Checksum does not exist. Please refresh the page and try again."
    21152115msgstr ""
    21162116
    2117 #: blocks/publish/class-publish-engine.php:413
    2118 #: blocks/publish/class-publish-engine.php:563
     2117#: blocks/publish/class-publish-engine.php:414
     2118#: blocks/publish/class-publish-engine.php:564
    21192119#: includes/class-shortcode-adverts-add.php:367
    21202120#: includes/class-shortcode-adverts-add.php:477
     
    21242124msgstr ""
    21252125
    2126 #: blocks/publish/class-publish-engine.php:506
     2126#: blocks/publish/class-publish-engine.php:507
    21272127#: includes/class-shortcode-adverts-add.php:440
    21282128msgid "There are errors in your form. Please correct them before proceeding."
    21292129msgstr ""
    21302130
    2131 #: blocks/publish/class-publish-engine.php:584
     2131#: blocks/publish/class-publish-engine.php:585
    21322132#: includes/class-shortcode-adverts-add.php:497
    21332133msgid "Thank you for submitting your ad!"
    21342134msgstr ""
    21352135
    2136 #: blocks/publish/class-publish-engine.php:682
     2136#: blocks/publish/class-publish-engine.php:683
    21372137#: includes/class-shortcode-adverts-add.php:581 includes/shortcodes.php:279
    21382138msgid ""
     
    22552255msgstr ""
    22562256
     2257#: includes/admin-pages.php:89
     2258msgid "Custom Fields"
     2259msgstr ""
     2260
    22572261#: includes/admin-pages.php:90
     2262msgid "Allow users to customize forms using easy to use drag and drop editor."
     2263msgstr ""
     2264
     2265#: includes/admin-pages.php:96
     2266msgid "Elementor Integration"
     2267msgstr ""
     2268
     2269#: includes/admin-pages.php:97
     2270msgid "Build classifieds sections with Elementor page builder."
     2271msgstr ""
     2272
     2273#: includes/admin-pages.php:103
     2274msgid "WooCommerce Payments"
     2275msgstr ""
     2276
     2277#: includes/admin-pages.php:104
     2278msgid "Use WooCommerce to charge users for posting ads on your website."
     2279msgstr ""
     2280
     2281#: includes/admin-pages.php:111
    22582282msgid "Charge users for posting ads on your website."
    22592283msgstr ""
    22602284
    2261 #: includes/admin-pages.php:95
    2262 msgid "WooCommerce Payments"
    2263 msgstr ""
    2264 
    2265 #: includes/admin-pages.php:96
    2266 msgid "Use WooCommerce to charge users for posting ads on your website."
    2267 msgstr ""
    2268 
    2269 #: includes/admin-pages.php:102
     2285#: includes/admin-pages.php:116
     2286msgid "Emails"
     2287msgstr ""
     2288
     2289#: includes/admin-pages.php:117
     2290msgid ""
     2291"Emails module sends transactional emails to users and allows editing the "
     2292"email templates content."
     2293msgstr ""
     2294
     2295#: includes/admin-pages.php:122
    22702296msgid "BuddyPress Integration"
    22712297msgstr ""
    22722298
    2273 #: includes/admin-pages.php:103
     2299#: includes/admin-pages.php:123
    22742300msgid ""
    22752301"Integrate user Ads with BuddyPress profiles, registration and private "
     
    22772303msgstr ""
    22782304
    2279 #: includes/admin-pages.php:109
    2280 msgid "Custom Fields"
    2281 msgstr ""
    2282 
    2283 #: includes/admin-pages.php:110
    2284 msgid "Allow users to customize forms using easy to use drag and drop editor."
    2285 msgstr ""
    2286 
    2287 #: includes/admin-pages.php:116
     2305#: includes/admin-pages.php:129
    22882306msgid "Authors"
    22892307msgstr ""
    22902308
    2291 #: includes/admin-pages.php:117
     2309#: includes/admin-pages.php:130
    22922310msgid "Using Authors module users can create and manage their profiles."
    22932311msgstr ""
    22942312
    2295 #: includes/admin-pages.php:123
    2296 msgid "Emails"
    2297 msgstr ""
    2298 
    2299 #: includes/admin-pages.php:124
    2300 msgid ""
    2301 "Emails module sends transactional emails to users and allows editing the "
    2302 "email templates content."
    2303 msgstr ""
    2304 
    2305 #: includes/admin-pages.php:129
     2313#: includes/admin-pages.php:137
    23062314msgid "Default Styles"
    23072315msgstr ""
    23082316
    2309 #: includes/admin-pages.php:130
     2317#: includes/admin-pages.php:138
    23102318msgid ""
    23112319"Visually adjust forms and buttons styling for seamless integration with "
     
    23132321msgstr ""
    23142322
    2315 #: includes/admin-pages.php:137
     2323#: includes/admin-pages.php:145
    23162324msgid "Features"
    23172325msgstr ""
    23182326
    2319 #: includes/admin-pages.php:141
     2327#: includes/admin-pages.php:149
    23202328msgid "Allow users to post Ads displayed always at the top of the list."
    23212329msgstr ""
    23222330
    2323 #: includes/admin-pages.php:147
     2331#: includes/admin-pages.php:155
    23242332msgid "Display contact form on the Ad details pages."
    23252333msgstr ""
    23262334
    2327 #: includes/admin-pages.php:152
     2335#: includes/admin-pages.php:160
    23282336msgid "Better Messages"
    23292337msgstr ""
    23302338
    2331 #: includes/admin-pages.php:153
     2339#: includes/admin-pages.php:161
    23322340msgid "Enable Real-Time Messaging with Sellers Using Better Messages"
    23332341msgstr ""
    23342342
    2335 #: includes/admin-pages.php:159
     2343#: includes/admin-pages.php:167
    23362344msgid "Maps And Locations"
    23372345msgstr ""
    23382346
    2339 #: includes/admin-pages.php:160
     2347#: includes/admin-pages.php:168
    23402348msgid "Locations Taxonomy, Google Maps integration and more."
    23412349msgstr ""
    23422350
    2343 #: includes/admin-pages.php:166
     2351#: includes/admin-pages.php:174
    23442352msgid "Fee Per Category"
    23452353msgstr ""
    23462354
    2347 #: includes/admin-pages.php:167
     2355#: includes/admin-pages.php:175
    23482356msgid ""
    23492357"Set fee for Ads posting per category or allow to post for free in some "
     
    23512359msgstr ""
    23522360
    2353 #: includes/admin-pages.php:173
     2361#: includes/admin-pages.php:181
    23542362msgid "reCAPTCHA"
    23552363msgstr ""
    23562364
    2357 #: includes/admin-pages.php:174
     2365#: includes/admin-pages.php:182
    23582366msgid ""
    23592367"Protect your forms from SPAM using easy easy for humans and hard for bots "
     
    23612369msgstr ""
    23622370
    2363 #: includes/admin-pages.php:180
     2371#: includes/admin-pages.php:188
    23642372msgid "Category Icons"
    23652373msgstr ""
    23662374
    2367 #: includes/admin-pages.php:181
     2375#: includes/admin-pages.php:189
    23682376msgid "Set custom icons (small and big) for each category."
    23692377msgstr ""
    23702378
    2371 #: includes/admin-pages.php:187
     2379#: includes/admin-pages.php:195
    23722380msgid "Mark As Sold"
    23732381msgstr ""
    23742382
    2375 #: includes/admin-pages.php:188
     2383#: includes/admin-pages.php:196
    23762384msgid "Allow users and administrators to mark the Ads as sold."
    23772385msgstr ""
    23782386
    2379 #: includes/admin-pages.php:194
     2387#: includes/admin-pages.php:202
    23802388msgid "Analytics"
    23812389msgstr ""
    23822390
    2383 #: includes/admin-pages.php:195
     2391#: includes/admin-pages.php:203
    23842392msgid "Native analytics implementation independent of any third parties."
    23852393msgstr ""
    23862394
    2387 #: includes/admin-pages.php:201
     2395#: includes/admin-pages.php:209
    23882396msgid "Currencies"
    23892397msgstr ""
    23902398
    2391 #: includes/admin-pages.php:202
     2399#: includes/admin-pages.php:210
    23922400msgid "Expand your classifieds site globally with seamless multi-currency support."
    23932401msgstr ""
    23942402
    2395 #: includes/admin-pages.php:210
     2403#: includes/admin-pages.php:218
    23962404msgid "Payment Gateways"
    23972405msgstr ""
    23982406
    2399 #: includes/admin-pages.php:214
     2407#: includes/admin-pages.php:222
    24002408msgid ""
    24012409"Allow users to pay for ad posting using direct bank transfer or cash "
     
    24032411msgstr ""
    24042412
    2405 #: includes/admin-pages.php:219
     2413#: includes/admin-pages.php:227
    24062414msgid "PayPal Standard"
    24072415msgstr ""
    24082416
    2409 #: includes/admin-pages.php:220
     2417#: includes/admin-pages.php:228
    24102418msgid "PayPal Payments Standard, allow users to pay for ads via PayPal."
    24112419msgstr ""
    24122420
    2413 #: includes/admin-pages.php:226
     2421#: includes/admin-pages.php:234
    24142422msgid "Stripe"
    24152423msgstr ""
    24162424
    2417 #: includes/admin-pages.php:227
     2425#: includes/admin-pages.php:235
    24182426msgid ""
    24192427"Charge users for Ad postings using credit cards (and some other payment "
     
    24212429msgstr ""
    24222430
    2423 #: includes/admin-pages.php:413
     2431#: includes/admin-pages.php:421
    24242432msgid "Category Icon"
    24252433msgstr ""
    24262434
    2427 #: includes/admin-pages.php:417
     2435#: includes/admin-pages.php:425
    24282436msgid "Filter Icons ..."
    24292437msgstr ""
    24302438
    2431 #: includes/admin-pages.php:420
     2439#: includes/admin-pages.php:428
    24322440msgid "Icons V4"
    24332441msgstr ""
    24342442
    2435 #: includes/admin-pages.php:421
     2443#: includes/admin-pages.php:429
    24362444msgid "Icons V6"
    24372445msgstr ""
  • wpadverts/trunk/readme.txt

    r3316823 r3340879  
    66Requires at least: 5.7
    77Tested up to: 6.8
    8 Stable tag: 2.2.6
     8Stable tag: 2.2.7
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    125125
    126126== Changelog ==
     127
     128= 2.2.7 - 2025-08-07 =
     129
     130* FEATURE: New Plugin Elementor Integration.
     131* LANGUAGE: Updated NL translation.
     132* FIXED: Warning in the Contact Methods block with default contact methods.
     133* FIXED: Contact methods not detecting visible contact methods correctly (on the Ad details pages).
     134* FIXED: Warning in the Classifieds Manage block.
     135* FIXED: Ability to style the block buttons and forms individually.
    127136
    128137= 2.2.6 - 2025-06-24 =
  • wpadverts/trunk/templates/block-partials/form.php

    r3200814 r3340879  
    1818
    1919$_btn_classes = isset( $_btn_classes ) ? $_btn_classes : ["top" => "wpa-form-buttons", "inner" => "wpa-form-buttons-list"];
     20
    2021?>
     22<style type="text/css">
     23    <?php if( isset( $form_style_atts ) && is_array( $form_style_atts ) ): ?>
     24    .wpadverts-block.wpadverts-partial.wpadverts-form .wpadverts-form {
     25        <?php wpadverts_print_grays_variables( $form_style_atts ) ?>
     26    }
     27    <?php endif; ?>
     28
     29    <?php if( isset( $atts["primary_button"] ) && is_array( $atts["primary_button"] ) ): ?>
     30    <?php wpadverts_block_button_css( "primary", isset( $atts["primary_button"] ) ? $atts["primary_button"] : array(), ".wpadverts-blocks.wpadverts-block-search" ) ?>
     31    <?php endif; ?>
     32    <?php if( isset( $atts["secondary_button"] ) && is_array( $atts["secondary_button"] ) ): ?>
     33    <?php wpadverts_block_button_css( "secondary", isset( $atts["secondary_button"] ) ? $atts["secondary_button"] : array(), ".wpadverts-blocks.wpadverts-block-search" ) ?>
     34    <?php endif; ?>
     35</style>
    2136
    2237<div class="wpadverts-block wpadverts-partial wpadverts-form">
    23     <form <?php if($form_id): ?>id="<?php echo esc_attr( $form_id ) ?>"<?php endif; ?> action="<?php echo esc_attr( $redirect_to ) ?>" method="post" class="wpadverts-form <?php echo wpadverts_block_form_styles( $atts ) ?> <?php echo esc_attr( $form_layout ) ?>  atw-block atw-py-0">
     38    <form <?php if($form_id): ?>id="<?php echo esc_attr( $form_id ) ?>"<?php endif; ?> action="<?php echo esc_attr( $redirect_to ) ?>" method="post" class="wpadverts-form <?php echo wpadverts_block_form_styles( $form_style_atts ) ?> <?php echo esc_attr( $form_layout ) ?>  atw-block atw-py-0">
    2439
    2540        <?php foreach($form->get_fields( array( "type" => array( "adverts_field_hidden" ) ) ) as $field): ?>
Note: See TracChangeset for help on using the changeset viewer.