Changeset 3340879
- Timestamp:
- 08/07/2025 10:37:23 AM (7 months ago)
- Location:
- wpadverts/trunk
- Files:
-
- 1 added
- 14 edited
-
addons/contact-form/contact-form.php (modified) (1 diff)
-
addons/contact-form/includes/class-block-details.php (modified) (5 diffs)
-
assets/images/options/elementor-integration.svg (added)
-
assets/js/wpadverts-autocomplete.js (modified) (1 diff)
-
blocks/manage/class-manage-engine.php (modified) (1 diff)
-
blocks/publish/class-publish-engine.php (modified) (1 diff)
-
blocks/search/index.php (modified) (2 diffs)
-
blocks/single-contact/index.php (modified) (3 diffs)
-
blocks/single-contact/templates/contact.php (modified) (1 diff)
-
includes/admin-pages.php (modified) (4 diffs)
-
languages/wpadverts-nl_NL.mo (modified) (previous)
-
languages/wpadverts-nl_NL.po (modified) (3 diffs)
-
languages/wpadverts.pot (modified) (24 diffs)
-
readme.txt (modified) (2 diffs)
-
templates/block-partials/form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpadverts/trunk/addons/contact-form/contact-form.php
r3037870 r3340879 459 459 $bd = new Adext_Contact_Form_Block_Details( $atts, $post_id ); 460 460 461 if( ! $atts["custom_contact"] && isset( $contact_options["contact-reveal"] ) ) {461 if( isset( $atts["custom_contact"] ) && ! $atts["custom_contact"] && isset( $contact_options["contact-reveal"] ) ) { 462 462 $contact_options["contact-reveal"]["is_active"] = false; 463 463 } -
wpadverts/trunk/addons/contact-form/includes/class-block-details.php
r3200814 r3340879 148 148 $atts_style = []; 149 149 150 /* 150 151 if( $atts["form_style"] ) { 151 152 … … 154 155 ]; 155 156 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 */ 158 160 159 161 $data = $this->_adext_contact_form_content( $post_id, $atts ); … … 186 188 "form" => $form, // Adverts_Form (required) 187 189 "form_id" => "wpadverts-contact-form", 188 "form_style_atts" => [],190 "form_style_atts" => $atts["form_style"], 189 191 "form_layout" => "wpa-layout-stacked", 190 192 "form_layout_prop" => "atw-w-1/3", … … 434 436 unset( $atts["interline"] ); 435 437 } 438 if( isset( $atts["customize"] ) && $atts["customize"] == 1) { 439 return $atts; 440 } 436 441 if( isset( $atts["style"] ) && $atts["style"] == "wpa-solid" ) { 437 442 $atts["style"] = "wpa-flat"; … … 440 445 } 441 446 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 }450 447 } -
wpadverts/trunk/assets/js/wpadverts-autocomplete.js
r2759717 r3340879 117 117 118 118 if(this._firstLoad) { 119 // maybe? 119 120 this.Load(); 120 121 this._firstLoad = false; -
wpadverts/trunk/blocks/manage/class-manage-engine.php
r3233901 r3340879 83 83 } else if( $action == "edit" ) { 84 84 $content = $this->action_edit( $atts ); 85 } 85 } else { 86 $content = ""; 87 } 86 88 87 89 return apply_filters("adverts_manage_action_$action", $content, $atts, true); -
wpadverts/trunk/blocks/publish/class-publish-engine.php
r3233901 r3340879 367 367 368 368 $form_layout = $_layouts[$form->get_layout()]; 369 $atts = $this->_params["form"]; 369 $atts = $this->_params; 370 $form_style_atts = $atts["form"]; 370 371 371 372 // adverts/templates/add.php -
wpadverts/trunk/blocks/search/index.php
r3137547 r3340879 10 10 11 11 public function init() { 12 12 13 13 $package = "wpadverts"; 14 14 $module = "search"; … … 58 58 59 59 public function render( $atts = array() ) { 60 60 61 61 $atts = $this->handlePayload( $atts ); 62 62 -
wpadverts/trunk/blocks/single-contact/index.php
r3233901 r3340879 144 144 } 145 145 146 $has_visible_contact_options = false;146 147 147 148 148 foreach( $contact_options as $k => $o ) { … … 151 151 } 152 152 153 154 155 153 if( $contact_options[$k]["is_active"] && $contact_options[$k]["is_visible"] ) { 156 $has_visible_contact_options = true;157 154 158 155 if($o["class"] == "wpadverts-show-contact-form" && $atts["form_button_hide"] ) { … … 167 164 168 165 $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 169 174 $contact_options = $this->_set_primary_contact_option( $contact_options ); 170 175 -
wpadverts/trunk/blocks/single-contact/templates/contact.php
r3200814 r3340879 1 1 <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> 2 11 3 12 <?php if( $has_visible_contact_options ): ?> -
wpadverts/trunk/includes/admin-pages.php
r3316823 r3340879 86 86 "plugin" => null, 87 87 ), 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 ), 88 109 "payments" => array( 89 110 "title" => __("Payments", "wpadverts"), … … 92 113 "plugin" => null 93 114 ), 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 100 120 ), 101 121 "buddypress" => array( … … 106 126 "purchase_url" => "https://wpadverts.com/extensions/buddypress-integration/" 107 127 ), 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 ),115 128 "authors" => array( 116 129 "title" => __("Authors", "wpadverts"), … … 120 133 "purchase_url" => "https://wpadverts.com/extensions/authors/" 121 134 ), 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 128 136 "styling" => array( 129 137 "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 – Classifieds Plugin - Stable (latest release) in Dutch 2 # This file is distributed under the same license as the Plugins - WPAdverts – Classifieds Plugin - Stable (latest release) package. 3 msgid "" 4 msgstr "" 5 "PO-Revision-Date: 2025-07-22 17:40+0000\n" 8 6 "MIME-Version: 1.0\n" 9 7 "Content-Type: text/plain; charset=UTF-8\n" 10 8 "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" 13 10 "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 – 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" 21 17 "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 21 msgid "%1$s %2$d" 22 msgstr "%1$s %2$d" 23 24 #: includes/admin-post-type.php:286 25 msgid "%1$s %2$s, %3$s @ %4$s : %5$s" 26 msgstr "%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 30 msgid "%1$s-%2$s" 31 msgstr "%1$s-%2$s" 32 33 #: includes/class-types-admin.php:282 34 msgid "" 35 "%d comments enabled. If you are using some caching plugin make sure to clear " 36 "cache." 37 msgstr "" 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 42 msgid "%s ago" 43 msgstr "%s geleden" 44 45 #: addons/payments/admin/payment-history-list.php:141 46 #: addons/payments/admin/pricing-list.php:105 47 msgid "«" 48 msgstr "«" 49 50 #: addons/payments/admin/payment-history-list.php:142 51 #: addons/payments/admin/pricing-list.php:106 52 msgid "»" 53 msgstr "»" 54 55 #: includes/admin-post-type.php:447 56 msgid "(required)" 57 msgstr "(vereist)" 58 59 #: includes/class-types-admin.php:158 60 msgid "+ New Post Type" 61 msgstr "+ Nieuwe post type" 62 63 #: addons/core/admin/types-list.php:93 64 msgid "+ New Taxonomy" 65 msgstr "+ Nieuwe taxonomie" 66 67 #: addons/payments/admin/pricing-list.php:90 68 msgid "1 day" 69 msgid_plural "%s days" 70 msgstr[0] "1 dag" 71 msgstr[1] "%s dagen" 72 73 #: addons/payments/includes/admin-pages.php:419 74 #: addons/payments/includes/admin-pages.php:455 75 msgid "1 Payment deleted." 76 msgid_plural "%s Payments deleted." 77 msgstr[0] "1 betaling verwijderd." 78 msgstr[1] "%s betalingen verwijderd." 79 80 #: addons/payments/includes/admin-pages.php:258 81 msgid "1 Pricing deleted." 82 msgid_plural "%s Pricings deleted." 83 msgstr[0] "1 prijs verwijderd." 84 msgstr[1] "%s prijzen verwijderd." 85 86 #: addons/payments/payments.php:634 87 msgid "" 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>" 90 msgstr "" 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 96 msgid "" 97 "<em>Exact Matching</em> will match whole words, so “press” will NOT match " 98 "“WordPress”." 99 msgstr "" 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 104 msgid "" 105 "<em>Partial Matching</em> will match inside words, so “press” will match " 106 "“WordPress”." 107 msgstr "" 108 "<em>Gedeeltelijke overeenkomsten</em> komen overeen met woorden, dus " 109 "\"druk\" komt overeen met \"WordPress\"." 110 111 #: templates/categories-all.php:41 112 msgid "<em>View All »</em>" 113 msgstr "<em>Alles bekijken »</em>" 114 115 #: addons/payments/payments.php:629 116 msgid "" 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>" 119 msgstr "" 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 124 msgid "" 125 "<p><strong>Your Payment Is Required</strong><p>Please complete payment for " 126 "the <em>'%s'</em> Ad posting.</p>" 127 msgstr "" 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 132 msgid "<strong>%1$s</strong> changed payment status to <strong>%2$s</strong>" 133 msgstr "" 134 "<strong>%1$s</strong> heeft de betalingsstatus gewijzigd in <strong>" 135 "%2$s</strong>" 136 137 #: addons/core/includes/admin-pages.php:400 138 msgid "" 139 "<strong>200</strong> — Show Ad details page with contact options disabled." 140 msgstr "" 141 "<strong>200</strong> — Toon de pagina met advertentiedetails met " 142 "uitgeschakelde contactopties." 143 144 #: addons/core/includes/admin-pages.php:399 145 msgid "<strong>301</strong> — Redirect to a different page ..." 146 msgstr "<strong>301</strong> — Omleiden naar een andere pagina ..." 147 148 #: addons/core/includes/admin-pages.php:398 149 msgid "<strong>404</strong> — Show 'Page Not Found' Error" 150 msgstr "<strong>404</strong> — Toon 'Pagina niet gevonden' fout" 151 152 #: blocks/manage/class-manage-engine.php:382 templates/manage-edit.php:69 153 msgid "" 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." 157 msgstr "" 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 163 msgid "" 164 "<strong>This Ad expired and is no longer available.</strong><br/>See our " 165 "other active <a href=\"%s\">classified ads</a>." 166 msgstr "" 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 171 msgid "" 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." 174 msgstr "" 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 180 msgid "[{$advert.post_title}] {$form.message_subject}." 181 msgstr "[{$advert.post_title}] {$form.message_subject}." 182 183 #: addons/payments/includes/admin-pages.php:641 184 msgid "Abandoned" 185 msgstr "Verlaten" 186 187 #: includes/defaults.php:50 188 msgid "Account" 189 msgstr "Account" 190 191 #: addons/core/admin/types-edit-post.php:81 includes/gallery.php:589 192 msgid "Actions" 193 msgstr "Acties" 194 195 #: admin/options.php:138 includes/class-updates-manager.php:317 196 msgid "Activate" 197 msgstr "Activeer" 198 199 #: includes/class-updates-manager.php:320 200 msgid "Activate your License in order to enable automatic updates." 201 msgstr "Activeer je licentie om automatische updates mogelijk te maken." 202 203 #: addons/payments/payments.php:1052 204 msgid "Ad <strong>%s</strong> renewed. <a href=\"%s\">Go back to Ads list</a>." 205 msgstr "" 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 211 msgid "Ad does not exist." 212 msgstr "Advertentie bestaat niet." 213 214 #: addons/emails/includes/class-emails-admin.php:306 215 msgid "Add Attachment" 216 msgstr "Bijlage toevoegen" 217 218 #: addons/emails/includes/class-emails-admin.php:284 219 msgid "Add Header" 220 msgstr "Header toevoegen" 221 222 #: addons/payments/admin/pricing-edit.php:19 223 #: addons/payments/admin/pricing-list.php:19 224 msgid "Add New" 225 msgstr "Nieuwe toevoegen" 226 227 #: wpadverts.php:241 228 msgid "Add New Classified" 229 msgstr "Nieuwe advertentie toevoegen" 230 231 #: addons/payments/includes/admin-pages.php:132 232 #: addons/payments/includes/admin-pages.php:133 233 msgid "Add Pricing" 234 msgstr "Prijzen toevoegen" 235 236 #: includes/class-moderate-admin.php:103 237 msgid "" 238 "Adding more than 'Max. Links' in the content will disallow posting an Ad. " 239 "Empty value = unlimited number of links" 240 msgstr "" 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 245 msgid "Additional Information" 246 msgstr "Aanvullende informatie" 247 248 #: admin/options.php:134 249 msgid "Addon Uploaded and Activated" 250 msgstr "Add-on geüpload en actief" 251 252 #: admin/options.php:137 253 msgid "Addon Uploaded but Inactive" 254 msgstr "Add-on geüpload maar inactief" 255 256 #: addons/emails/admin/emails-list.php:37 257 #: addons/emails/admin/emails-list.php:93 258 msgid "Administrator" 259 msgstr "Beheerder" 260 261 #: includes/class-widget-ads.php:171 262 msgid "Ads Types" 263 msgstr "Advertentie types" 264 265 #: templates/list.php:85 266 msgid "Advanced Search" 267 msgstr "Geavanceerd zoeken" 268 269 #: includes/ajax.php:1254 270 msgid "Advert <strong>%s</strong> deleted." 271 msgstr "Advertentie <strong>%s</strong> verwijderd." 272 273 #: includes/class-widget-categories.php:31 274 #: includes/class-widget-categories.php:41 275 msgid "Advert Categories" 276 msgstr "Advertentie categorieën" 277 278 #: addons/core/includes/admin-pages.php:501 279 #: addons/core/includes/admin-pages.php:502 280 msgid "Advert Details Pages" 281 msgstr "Advertentie detail pagina's" 282 283 #: addons/core/includes/admin-pages.php:590 284 msgid "Adverts Gallery" 285 msgstr "Advertentie galerij" 286 287 #: addons/core/includes/admin-pages.php:597 288 msgid "Adverts List" 289 msgstr "Advertentie lijst" 290 291 #: includes/admin-pages.php:37 292 msgid "Adverts Options" 293 msgstr "Advertentie opties" 294 295 #: addons/payments/payments.php:1117 296 msgid "Adverts Payment History" 297 msgstr "Betaal geschiedenis advertenties" 298 299 #: addons/payments/includes/admin-pages.php:408 300 msgid "Adverts Payment with given ID does not exist." 301 msgstr "Een betaling van advertentie met opgegeven ID bestaat niet." 302 303 #: addons/payments/includes/admin-pages.php:223 304 msgid "Adverts Pricing with given ID does not exist." 305 msgstr "Advertenties prijzen met opgegeven ID bestaan niet." 306 307 #: addons/payments/admin/payment-history-list.php:23 308 #: includes/class-widget-ads.php:174 309 msgid "All" 310 msgstr "Alle" 311 312 #: wpadverts.php:244 313 msgid "All Classifieds" 314 msgstr "Alle advertenties" 315 316 #: addons/payments/admin/payment-history-list.php:54 317 msgid "All dates" 318 msgstr "Alle datums" 319 320 #: addons/payments/admin/payment-history-list.php:64 321 msgid "All Payments" 322 msgstr "Alle betalingen" 323 324 #: addons/core/includes/admin-pages.php:535 325 msgid "Allow opening Gallery images in a Lightbox." 326 msgstr "Sta het openen van galerijafbeeldingen in een lightbox toe." 327 328 #: includes/admin-pages.php:188 329 msgid "Allow users and administrators to mark the Ads as sold." 330 msgstr "" 331 "Sta gebruikers en beheerders toe om de advertenties als verkocht te markeren." 332 333 #: includes/admin-pages.php:110 334 msgid "Allow users to customize forms using easy to use drag and drop editor." 335 msgstr "" 336 "Gebruikers toestaan formulieren aan te passen met de drag and drop editor." 337 338 #: includes/admin-pages.php:214 339 msgid "" 340 "Allow users to pay for ad posting using direct bank transfer or cash " 341 "payments." 342 msgstr "" 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 347 msgid "Allow users to post Ads displayed always at the top of the list." 348 msgstr "" 349 "Sta gebruikers toe advertenties te plaatsen die altijd bovenaan de lijst " 350 "worden weergegeven." 351 352 #: addons/core/includes/admin-pages.php:486 353 msgid "Allow users to switch between grid and list view." 354 msgstr "Sta gebruikers toe te wisselen tussen raster- en lijstweergave." 355 356 #: includes/gallery.php:70 357 msgid "Allowed Files" 358 msgstr "Toegestane bestanden" 359 360 #: addons/core/includes/admin-pages.php:414 361 msgid "Always Visible For" 362 msgstr "Altijd zichtbaar voor" 363 364 #: addons/payments/admin/payment-history-list.php:82 365 msgid "Amount" 366 msgstr "Aantal" 367 368 #: includes/admin-pages.php:194 369 msgid "Analytics" 370 msgstr "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 376 msgid "Apply" 377 msgstr "Toepassen" 378 379 #: includes/gallery.php:603 380 msgid "Apply changes to all image sizes" 381 msgstr "Wijzigingen toepassen op alle afbeeldingsformaten" 382 383 #: includes/class-honeypot.php:31 includes/class-honeypot.php:75 384 msgid "Are you a bot trying to submit a classified Ad?" 385 msgstr "Ben jij een robot die probeert een advertentie te plaatsen?" 386 387 #: blocks/manage/index.php:50 388 msgid "Are you sure you want to delete '%s'" 389 msgstr "Weet je zeker dat je '%s' wil verwijderen" 390 391 #: wpadverts.php:554 392 msgid "Are you sure you want to reset this settings to defaults?" 393 msgstr "" 394 "Weet je zeker dat je deze instellingen wilt terugzetten naar de " 395 "standaardwaarden?" 396 397 #: templates/manage.php:67 398 msgid "Are you sure?" 399 msgstr "Weet je het zeker?" 400 401 #: includes/class-widget-ads.php:160 402 msgid "Ascending" 403 msgstr "Oplopend" 404 405 #: addons/core/admin/types-list.php:101 406 msgid "Assigned To" 407 msgstr "Toegewezen aan" 408 409 #: includes/gallery.php:366 410 msgid "Attachment details" 411 msgstr "Bijlage gegevens" 412 413 #: includes/ajax.php:339 414 msgid "Attachment does not exist." 415 msgstr "Bijlage bestaat niet." 416 417 #: addons/emails/includes/class-emails-admin.php:399 418 msgid "Attachments" 419 msgstr "Bijlagen" 420 421 #: includes/functions.php:2243 422 msgid "Australian Dollars" 423 msgstr "Australische dollars" 424 425 #: includes/admin-post-type.php:577 includes/class-types-admin.php:618 426 msgid "Author" 427 msgstr "Auteur" 428 429 #: includes/admin-pages.php:116 430 msgid "Authors" 431 msgstr "Auteurs" 432 433 #: addons/payments/admin/payment-history-list.php:165 434 msgid "Automatic cleanup was never run." 435 msgstr "Automatische opschoning is nooit uitgevoerd." 436 437 #: includes/class-types-admin.php:632 438 msgid "Automatically enable comments when Ad is saved in the database." 439 msgstr "" 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 445 msgid "Background" 446 msgstr "Achtergrond" 447 448 #: addons/bank-transfer/bank-transfer.php:42 includes/admin-pages.php:213 449 msgid "Bank Transfer" 450 msgstr "Overschrijving per bank" 451 452 #: includes/admin-pages.php:152 453 msgid "Better Messages" 454 msgstr "Better Messages" 455 456 #: includes/class-moderate-admin.php:109 457 msgid "Blacklisted Phrases" 458 msgstr "Zwarte lijst woorden" 459 460 #: includes/class-types-admin.php:799 461 msgid "Block (recommended) - use block templates." 462 msgstr "Blokkeren (aanbevolen) - gebruik blok templates." 463 464 #: addons/styling/admin/options.php:323 465 msgid "Blue Gray" 466 msgstr "Blauw grijs" 467 468 #: addons/emails/includes/class-emails-admin.php:393 469 msgid "Body" 470 msgstr "Body" 471 472 #: addons/styling/admin/options.php:84 addons/styling/admin/options.php:216 473 msgid "Bold" 474 msgstr "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 478 msgid "Border" 479 msgstr "Rand" 480 481 #: addons/styling/admin/options.php:56 addons/styling/admin/options.php:188 482 #: addons/styling/admin/options.php:359 483 msgid "Border Radius" 484 msgstr "Randradius" 485 486 #: addons/styling/admin/options.php:355 487 msgid "Border Settings" 488 msgstr "Rand instellingen" 489 490 #: addons/styling/admin/options.php:69 addons/styling/admin/options.php:201 491 #: addons/styling/admin/options.php:372 492 msgid "Border Width" 493 msgstr "Rand breedte" 494 495 #: addons/styling/admin/options.php:337 496 msgid "Bottom Border" 497 msgstr "Onderrand" 498 499 #: includes/functions.php:2244 500 msgid "Brazilian Real" 501 msgstr "Braziliaanse real" 502 503 #: includes/gallery.php:124 504 msgid "browse files ..." 505 msgstr "bestanden doorbladeren ..." 506 507 #: includes/admin-pages.php:102 508 msgid "BuddyPress Integration" 509 msgstr "BuddyPress integratie" 510 511 #: includes/functions-blocks.php:805 512 msgid "Builtin Templates" 513 msgstr "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 519 msgid "Bulk Actions" 520 msgstr "Bulkacties" 521 522 #: templates/single.php:23 523 msgid "by <strong>%s</strong>" 524 msgstr "met <strong>%s</strong>" 525 526 #: addons/core/includes/admin-pages.php:418 527 msgid "Cabability (or Role) required to always see expired Ads details pages." 528 msgstr "" 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 533 msgid "Cabability required to edit images in the Gallery." 534 msgstr "Mogelijkheid vereist om afbeeldingen in de galerij te bewerken." 535 536 #: blocks/single-author/templates/list.php:37 537 msgid "call" 538 msgstr "bel" 539 540 #: addons/contact-form/includes/class-block-details.php:89 541 msgid "" 542 "Call <span data-ph1=\"%s\" class=\"wpadverts-phone\">%s...</span> <a " 543 "href=\"#\" class=\"wpadverts-phone-reveal\">show phone</a>" 544 msgstr "" 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 549 msgid "Call <span data-ph1=\"%s\" class=\"wpadverts-phone\">%s</span>" 550 msgstr "Bel <span data-ph1=\"%s\" class=\"wpadverts-phone\">%s</span>" 551 552 #: includes/functions.php:2245 553 msgid "Canadian Dollars" 554 msgstr "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 560 msgid "Cancel" 561 msgstr "Annuleren" 562 563 #: admin/options.php:126 564 msgid "Cannot be disabled" 565 msgstr "Kan niet worden uitgeschakeld" 566 567 #: includes/class-updates-manager.php:150 568 msgid "Cannot connect to remote server. Please try again later." 569 msgstr "" 570 "Kan geen verbinding maken met externe server. Probeer het later opnieuw." 571 572 #: includes/defaults.php:348 573 msgid "Cannot create account. User with this email address already exists." 574 msgstr "Kan geen account maken. Gebruiker met dit e-mailadres bestaat al." 575 576 #: addons/payments/payments.php:895 577 msgid "" 578 "Cannot renew Ads with status 'pending', <a href=\"%s\">cancel and go back</a>" 579 "." 580 msgstr "" 581 "Kan advertenties met status 'in behandeling' niet verlengen, <a href=\"%s\">" 582 "annuleer en ga terug</a>." 583 584 #: wpadverts.php:398 585 msgid "Cannot select more than %s items." 586 msgstr "Kan niet meer dan %s items selecteren." 587 588 #: blocks/manage/class-manage-engine.php:298 includes/shortcodes.php:488 589 msgid "Cannot update. There are errors in your form." 590 msgstr "Kan niet updaten. Er staan fouten in je formulier." 591 592 #: includes/defaults.php:480 593 msgid "Cannot validate uploaded image width and height." 594 msgstr "Kan breedte en hoogte van geüploade afbeelding niet valideren." 595 596 #: includes/functions.php:4090 597 msgid "Cannot verify config nonce. <a href=''>Retry</a>" 598 msgstr "" 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 605 msgid "Cannot verify nonce." 606 msgstr "Nonce kan niet worden geverifieerd." 607 608 #: includes/gallery.php:509 609 msgid "Capture ..." 610 msgstr "Vastleggen ..." 611 612 #: wpadverts.php:278 613 msgid "Categories" 614 msgstr "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 619 msgid "Category" 620 msgstr "Categorie" 621 622 #: includes/admin-pages.php:413 623 msgid "Category Icon" 624 msgstr "Categorie pictogram" 625 626 #: includes/admin-pages.php:180 627 msgid "Category Icons" 628 msgstr "Categorie pictogrammen" 629 630 #: includes/functions.php:463 631 msgid "Category: %s" 632 msgstr "Categorie: %s" 633 634 #: includes/admin-pages.php:227 635 msgid "" 636 "Charge users for Ad postings using credit cards (and some other payment " 637 "gateways)." 638 msgstr "" 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 643 msgid "Charge users for posting ads on your website." 644 msgstr "" 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 649 msgid "Cheapest First" 650 msgstr "Goedkoopste eerst" 651 652 #: addons/styling/includes/admin-pages.php:104 653 msgid "Checkbox" 654 msgstr "Selectievakje" 655 656 #: blocks/publish/class-publish-engine.php:394 657 #: includes/class-shortcode-adverts-add.php:348 includes/functions.php:3179 658 msgid "Checksum does not exist. Please refresh the page and try again." 659 msgstr "Checksum bestaat niet. Ververs de pagina en probeer het opnieuw." 660 661 #: wpadverts.php:240 662 msgctxt "classified" 663 msgid "Add New" 664 msgstr "Nieuwe toevoegen" 665 666 #: blocks/class-block-manager.php:44 blocks/class-block-patterns.php:8 667 #: wpadverts.php:250 668 msgid "Classifieds" 669 msgstr "Advertenties" 670 671 #: blocks/class-block-patterns.php:28 blocks/class-block-patterns.php:40 672 msgid "Classifieds details" 673 msgstr "Advertenties details" 674 675 #: blocks/class-block-patterns.php:41 676 msgid "Classifieds details page with a sidebar" 677 msgstr "Advertenties details pagina met zijbalk" 678 679 #: includes/gallery.php:828 680 msgid "Classifieds List" 681 msgstr "Lijst met advertenties" 682 683 #: blocks/class-block-patterns.php:17 684 msgid "" 685 "Classifieds list with a search form in the left sidebar. Best to use with " 686 "full-width page template." 687 msgstr "" 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 692 msgid "Classifieds with a sidebar" 693 msgstr "Advertenties met een zijblak" 694 695 #: addons/payments/admin/payment-history-list.php:161 696 msgid "Cleanup Now" 697 msgstr "Nu opschonen" 698 699 #: blocks/manage/index.php:56 includes/gallery.php:644 wpadverts.php:394 700 msgid "Close" 701 msgstr "Sluiten" 702 703 #: addons/emails/admin/emails-list.php:52 704 msgid "Code" 705 msgstr "Code" 706 707 #: addons/styling/admin/options.php:321 708 msgid "Color Palette" 709 msgstr "Kleurenpalet" 710 711 #: addons/styling/admin/options.php:117 addons/styling/admin/options.php:248 712 msgid "Colors Hover" 713 msgstr "Hover kleuren" 714 715 #: addons/styling/admin/options.php:91 addons/styling/admin/options.php:223 716 msgid "Colors Normal" 717 msgstr "Kleuren normaal" 718 719 #: addons/core/includes/admin-pages.php:457 720 msgid "Columns" 721 msgstr "Kolommen" 722 723 #: includes/class-types-admin.php:622 includes/class-types-admin.php:628 724 msgid "Comments" 725 msgstr "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 730 msgid "Common Settings" 731 msgstr "Algemene instellingen" 732 733 #: addons/payments/includes/ajax.php:105 addons/payments/payments.php:785 734 #: addons/payments/payments.php:1287 735 msgid "Complete Payment" 736 msgstr "Complete betaling" 737 738 #: addons/payments/includes/admin-pages.php:788 739 msgid "Complete Payment Page" 740 msgstr "Pagina complete betaling" 741 742 #: addons/payments/payments.php:74 743 msgctxt "completed status payment" 744 msgid "Completed" 745 msgstr "Afgerond" 746 747 #: addons/core/admin/types-edit-post.php:33 748 msgid "Configuration" 749 msgstr "Configuratie" 750 751 #: includes/class-types-admin.php:705 752 msgid "Connect To" 753 msgstr "Verbind met" 754 755 #: blocks/single-data-table/index.php:208 includes/class-rest-blocks.php:197 756 msgid "Contact Email" 757 msgstr "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 763 msgid "Contact Form" 764 msgstr "Contact formulier" 765 766 #: includes/defaults.php:44 767 msgid "Contact Information" 768 msgstr "Contactgegevens" 769 770 #: blocks/single-contact/index.php:73 771 msgid "Contact options are disabled for expired ads." 772 msgstr "Voor verlopen advertenties zijn de contactopties uitgeschakeld." 773 774 #: blocks/publish/templates/publish-preview.php:59 775 msgid "Contact options are hidden in the preview." 776 msgstr "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 782 msgid "Contact Person" 783 msgstr "Contact persoon" 784 785 #: blocks/single-data-table/index.php:215 includes/class-rest-blocks.php:201 786 msgid "Contact Phone" 787 msgstr "Contact telefoon" 788 789 #: addons/core/includes/admin-pages.php:546 790 msgid "Contain" 791 msgstr "Bevat" 792 793 #: includes/class-rest-blocks.php:173 794 msgid "Content" 795 msgstr "Inhoud" 796 797 #: includes/class-moderate-admin.php:90 798 msgid "Content Blacklist" 799 msgstr "Inhoud zwarte lijst" 800 801 #: addons/styling/admin/options.php:324 802 msgid "Cool Gray" 803 msgstr "Koel grijs" 804 805 #: blocks/single-author/templates/list.php:36 806 msgid "copy" 807 msgstr "kopieëren" 808 809 #: addons/emails/includes/class-emails.php:368 includes/admin-pages.php:83 810 msgid "Core" 811 msgstr "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 816 msgid "Core Options" 817 msgstr "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 823 msgid "" 824 "Could not validate. Refresh your session and make sure you are using cookies." 825 msgstr "" 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 831 msgid "" 832 "Could not verify the request checksum. Please refresh the page and try again." 833 msgstr "" 834 "Kan de checksum van het verzoek niet verifiëren. Ververs de pagina en " 835 "probeer het opnieuw." 836 837 #: includes/ajax.php:881 838 msgid "Could not write file %s" 839 msgstr "Kan bestand %s niet schrijven" 840 841 #: includes/class-widget-ads.php:82 842 msgid "Count" 843 msgstr "Aantal" 844 845 #: addons/core/includes/admin-pages.php:547 846 msgid "Cover" 847 msgstr "Omslagafbeelding" 848 849 #: includes/functions.php:1776 850 msgid "" 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>" 853 msgstr "" 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 859 msgid "Create at least one <a href='%s'>Pricing</a> before selecting default." 860 msgstr "" 861 "Maak ten minste één <a href='%s'>prijs</a> voordat je standaard selecteert." 862 863 #: includes/gallery.php:504 864 msgid "Create Image" 865 msgstr "Creëer afbeelding" 866 867 #: includes/functions.php:4119 868 msgid "Create new types with <strong>Multiverse</strong> extension." 869 msgstr "Maak nieuwe typen met de extensie <strong>Multiverse</strong>." 870 871 #: includes/gallery.php:504 872 msgid "Create thumbnail from full size image." 873 msgstr "Maak een thumbnail van een afbeelding." 874 875 #: addons/payments/admin/payment-history-edit.php:47 876 msgid "Created" 877 msgstr "Gemaakt" 878 879 #: includes/gallery.php:571 880 msgid "Crop" 881 msgstr "Bijsnijden" 882 883 #: addons/core/includes/admin-pages.php:692 884 msgid "crop image" 885 msgstr "afbeelding bijsnijden" 886 887 #: includes/admin-pages.php:201 888 msgid "Currencies" 889 msgstr "Valuta" 890 891 #: addons/core/includes/admin-pages.php:349 892 msgid "Currency" 893 msgstr "Valuta" 894 895 #: addons/core/includes/admin-pages.php:356 896 msgid "Currency Position" 897 msgstr "Positie valutasymbool" 898 899 #: addons/core/includes/admin-pages.php:342 900 #: addons/core/includes/admin-pages.php:343 901 msgid "Currency Settings" 902 msgstr "Valutainstellingen" 903 904 #: includes/gallery.php:617 905 msgid "Current size:" 906 msgstr "Huidige grootte:" 907 908 #: includes/admin-pages.php:109 909 msgid "Custom Fields" 910 msgstr "Aangepaste velden" 911 912 #: addons/payments/admin/payment-history-edit.php:125 913 msgid "Customer Details" 914 msgstr "Klant details" 915 916 #: includes/functions.php:2246 917 msgid "Czech Koruna" 918 msgstr "Tsjechische kroon" 919 920 #: includes/functions.php:2247 921 msgid "Danish Krone" 922 msgstr "Deense kroon" 923 924 #: addons/payments/admin/payment-history-list.php:81 925 #: includes/admin-post-type.php:579 926 msgid "Date" 927 msgstr "Datum" 928 929 #: addons/core/includes/admin-pages.php:302 930 msgid "Date Format" 931 msgstr "Datumnotatie" 932 933 #: addons/core/includes/admin-pages.php:366 934 msgid "Decimal Places" 935 msgstr "Decimaal plaatsen" 936 937 #: addons/core/includes/admin-pages.php:376 938 msgid "Decimal Separator" 939 msgstr "Scheidingsteken decimalen" 940 941 #: addons/core/includes/admin-pages.php:565 942 msgid "Default" 943 msgstr "Standaard" 944 945 #: addons/core/includes/admin-pages.php:273 946 msgid "Default Ads List Page" 947 msgstr "Pagina met advertentielijst" 948 949 #: includes/functions-blocks.php:811 950 msgid "Default Block Template" 951 msgstr "Standaard blok template" 952 953 #: blocks/class-block-patterns.php:29 954 msgid "Default classifieds details page" 955 msgstr "Standaard advertentie details pagina" 956 957 #: addons/payments/includes/admin-pages.php:771 958 msgid "Default Payment Gateway" 959 msgstr "Standaard betalingsgateway" 960 961 #: addons/payments/includes/admin-pages.php:780 962 msgid "Default Pricing" 963 msgstr "Standaard prijzen" 964 965 #: includes/admin-pages.php:129 966 msgid "Default Styles" 967 msgstr "Standaard stijlen" 968 969 #: addons/core/includes/admin-pages.php:283 970 msgid "Default Visibility" 971 msgstr "Standaard zichtbaarheid" 972 973 #: addons/core/includes/admin-pages.php:424 974 #: addons/core/includes/admin-pages.php:425 975 msgid "Defaults Values For [adverts_list]" 976 msgstr "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 985 msgid "Delete" 986 msgstr "Verwijderen" 987 988 #: blocks/manage/class-manage-engine.php:348 989 msgid "Delete ..." 990 msgstr "Verwijderen..." 991 992 #: addons/core/includes/admin-pages.php:326 993 msgid "Delete Ad images from Media Library when deleting an Ad." 994 msgstr "" 995 "Verwijder advertentieafbeeldingen uit de mediabibliotheek bij het " 996 "verwijderen van een advertentie." 997 998 #: includes/gallery.php:354 999 msgid "Delete File" 1000 msgstr "Verwijder bestand" 1001 1002 #: wpadverts.php:406 1003 msgid "Delete Image" 1004 msgstr "Verwijder afbeelding" 1005 1006 #: blocks/manage/index.php:49 1007 msgid "Delete this item?" 1008 msgstr "Dit item verwijderen?" 1009 1010 #: addons/payments/includes/admin-pages.php:482 1011 msgid "Deleted %d temporary payment." 1012 msgid_plural "Deleted %d temporary payments" 1013 msgstr[0] "%d tijdelijke betaling verwijderd." 1014 msgstr[1] "%d tijdelijke betalingen verwijderd" 1015 1016 #: includes/class-widget-ads.php:155 1017 msgid "Descending" 1018 msgstr "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 1023 msgid "Description" 1024 msgstr "Beschrijving" 1025 1026 #: includes/gallery.php:545 1027 msgid "Dimensions:" 1028 msgstr "Afmetingen:" 1029 1030 #: admin/options.php:150 1031 msgid "Disable" 1032 msgstr "Uitschakelen" 1033 1034 #: addons/core/includes/admin-pages.php:434 1035 msgid "Disabled" 1036 msgstr "Uitgeschakeld" 1037 1038 #: addons/core/includes/admin-pages.php:443 1039 msgid "Display Ads As" 1040 msgstr "Advertenties weergeven als" 1041 1042 #: includes/admin-pages.php:147 1043 msgid "Display contact form on the Ad details pages." 1044 msgstr "Toon contactformulier op de advertentiedetailpagina." 1045 1046 #: addons/featured/featured.php:71 1047 msgid "Display this listing as featured." 1048 msgstr "Toon deze vermelding als uitgelicht." 1049 1050 #: includes/class-widget-categories.php:43 1051 msgid "Displays list of available categories." 1052 msgstr "Een lijst van beschikbare categorieën weergeven." 1053 1054 #: includes/class-widget-ads.php:52 1055 msgid "Displays list of recent ads." 1056 msgstr "Toont een lijst met recente advertenties." 1057 1058 #: addons/core/includes/admin-pages.php:317 1059 msgid "Do not show Ad images (and other files) in Media Library." 1060 msgstr "" 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 1067 msgid "Download" 1068 msgstr "Download" 1069 1070 #: includes/class-gallery-helper.php:251 includes/class-gallery-helper.php:411 1071 #: includes/gallery.php:443 1072 msgid "Download File" 1073 msgstr "Download bestand" 1074 1075 #: includes/functions-blocks.php:826 1076 msgid "Draft Templates" 1077 msgstr "Concept templates" 1078 1079 #: includes/gallery.php:123 1080 msgid "Drop files here to add them." 1081 msgstr "Sleep bestanden naar dit vak om ze toe te voegen." 1082 1083 #: addons/styling/includes/admin-pages.php:90 1084 msgid "Dropdown" 1085 msgstr "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 1091 msgid "Edit" 1092 msgstr "Bewerken" 1093 1094 #: includes/class-types-admin.php:112 1095 msgid "Edit '%s'" 1096 msgstr "Bewerk '%s'" 1097 1098 #: includes/class-types-admin.php:147 1099 msgid "Edit '%s' Taxonomy" 1100 msgstr "Bewerk '%s' taxonomie" 1101 1102 #: wpadverts.php:242 1103 msgid "Edit Classified" 1104 msgstr "Bewerk advertentie" 1105 1106 #: addons/core/admin/types-list.php:61 1107 msgid "Edit Classified Type" 1108 msgstr "Bewerk advertentie type" 1109 1110 #: includes/admin-post-type.php:377 1111 msgid "Edit date and time" 1112 msgstr "Datum en tijd bewerken" 1113 1114 #: includes/gallery.php:352 1115 msgid "Edit File" 1116 msgstr "Bestand bewerken" 1117 1118 #: includes/gallery.php:503 wpadverts.php:405 1119 msgid "Edit Image" 1120 msgstr "Bewerk afbeelding" 1121 1122 #: blocks/publish/templates/publish-preview.php:27 1123 #: blocks/publish/templates/publish-preview.php:73 templates/add-preview.php:9 1124 msgid "Edit Listing" 1125 msgstr "Vermelding bewerken" 1126 1127 #: addons/payments/includes/admin-pages.php:176 1128 msgid "Edit Pricing" 1129 msgstr "Prijzen bewerken" 1130 1131 #: addons/core/admin/types-list.php:114 1132 msgid "Edit Taxonomy" 1133 msgstr "Bewerk taxonomie" 1134 1135 #: includes/class-types-admin.php:617 1136 msgid "Editor" 1137 msgstr "Redacteur" 1138 1139 #: includes/functions.php:2248 1140 msgid "Egyptian Pound" 1141 msgstr "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 1148 msgid "Email" 1149 msgstr "E-mail" 1150 1151 #: addons/emails/includes/class-field-name-email.php:68 1152 msgid "Email Address (e.g. user@example.com)" 1153 msgstr "E-mailadres (bijv. gebruiker@example.com)" 1154 1155 #: addons/emails/includes/class-emails-admin.php:344 1156 msgid "Email Name" 1157 msgstr "E-mail naam" 1158 1159 #: addons/emails/admin/emails-list.php:50 1160 msgid "Email Subject" 1161 msgstr "E-mail onderwerp" 1162 1163 #: addons/emails/includes/class-emails-admin.php:175 1164 msgid "Email template has been saved." 1165 msgstr "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 1169 msgid "Email Templates" 1170 msgstr "E-mail templates" 1171 1172 #: includes/admin-pages.php:123 1173 msgid "Emails" 1174 msgstr "E-mails" 1175 1176 #: includes/admin-pages.php:124 1177 msgid "" 1178 "Emails module sends transactional emails to users and allows editing the " 1179 "email templates content." 1180 msgstr "" 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 1185 msgid "Empty Price Text" 1186 msgstr "Lege prijstekst" 1187 1188 #: admin/options.php:152 1189 msgid "Enable" 1190 msgstr "Activeer" 1191 1192 #: addons/payments/includes/admin-pages.php:80 1193 msgid "" 1194 "Enable at least one <a href='%s'>Payment Gateway</a> before selecting " 1195 "default." 1196 msgstr "" 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 1201 msgid "Enable comments for these ads now" 1202 msgstr "Schakel nu reacties voor deze advertenties in" 1203 1204 #: includes/class-moderate-admin.php:144 1205 msgid "Enable Honeypot" 1206 msgstr "Honeypot inschakelen" 1207 1208 #: includes/admin-pages.php:153 1209 msgid "Enable Real-Time Messaging with Sellers Using Better Messages" 1210 msgstr "" 1211 "Maak realtime berichtenverkeer met verkopers mogelijk met Better Messages" 1212 1213 #: addons/emails/includes/class-emails-admin.php:353 1214 msgid "Enable sending this message." 1215 msgstr "Schakel verzenden van dit bericht in." 1216 1217 #: includes/class-moderate-admin.php:174 1218 msgid "Enable Timetrap" 1219 msgstr "Timetrap inschakelen" 1220 1221 #: addons/core/includes/admin-pages.php:433 1222 msgid "Enabled" 1223 msgstr "Ingeschakeld" 1224 1225 #: includes/functions.php:2241 1226 msgid "Euros" 1227 msgstr "Euro's" 1228 1229 #: includes/events.php:64 1230 msgid "Every 5 minutes" 1231 msgstr "Elke 5 minuten" 1232 1233 #: addons/styling/includes/admin-pages.php:78 1234 msgid "Example Header" 1235 msgstr "Voorbeeld header" 1236 1237 #: blocks/single-data-table/index.php:159 includes/class-rest-blocks.php:169 1238 #: includes/class-types-admin.php:620 1239 msgid "Excerpt" 1240 msgstr "Samenvatting" 1241 1242 #: includes/class-types-admin.php:585 1243 msgid "Exclude From Search" 1244 msgstr "Uitsluiten van zoeken" 1245 1246 #: includes/class-types-admin.php:588 1247 msgid "Exclude posts with this post type from front end search results." 1248 msgstr "Sluit berichten met dit berichttype uit van front-end zoekresultaten." 1249 1250 #: includes/admin-pages.php:202 1251 msgid "" 1252 "Expand your classifieds site globally with seamless multi-currency support." 1253 msgstr "" 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 1258 msgid "Expired" 1259 msgstr "Verlopen" 1260 1261 #: wpadverts.php:226 1262 msgid "Expired <span class=\"count\">(%s)</span>" 1263 msgid_plural "Expired <span class=\"count\">(%s)</span>" 1264 msgstr[0] "<span class=\"count\">(%s)</span> verlopen" 1265 msgstr[1] "<span class=\"count\">(%s)</span> verlopen" 1266 1267 #: addons/payments/includes/class-emails-integration.php:254 1268 msgid "Expired Ad has been renewed (action required)." 1269 msgstr "Verlopen advertentie is vernieuwd (actie vereist)." 1270 1271 #: addons/payments/includes/class-emails-integration.php:239 1272 msgid "Expired Ad has been renewed." 1273 msgstr "Verlopen advertentie is verlengd." 1274 1275 #: addons/core/includes/admin-pages.php:395 1276 msgid "Expired Ad HTTP Status" 1277 msgstr "HTTP-status van verlopen advertentie" 1278 1279 #: addons/core/includes/admin-pages.php:388 1280 #: addons/core/includes/admin-pages.php:389 1281 msgid "Expired Ads Handling" 1282 msgstr "Verlopen advertentie verwerking" 1283 1284 #: includes/admin-post-type.php:748 1285 msgid "Expired:" 1286 msgstr "Verlopen:" 1287 1288 #: includes/admin-post-type.php:364 1289 msgid "Expired: <b>%s</b>" 1290 msgstr "Verlopen: <b>%s</b>" 1291 1292 #: includes/admin-post-type.php:578 1293 msgid "Expires" 1294 msgstr "Verloopt" 1295 1296 #: templates/manage.php:39 1297 msgid "Expires %s" 1298 msgstr "Verloopt %s" 1299 1300 #: includes/admin-post-type.php:747 1301 msgid "Expires:" 1302 msgstr "Verloopt:" 1303 1304 #: includes/admin-post-type.php:366 1305 msgid "Expires: <b>%s</b>" 1306 msgstr "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 1310 msgid "Extra Large" 1311 msgstr "Extra groot" 1312 1313 #: addons/styling/admin/options.php:59 addons/styling/admin/options.php:191 1314 #: addons/styling/admin/options.php:362 1315 msgid "Extra Small" 1316 msgstr "Extra klein" 1317 1318 #: addons/styling/admin/options.php:74 addons/styling/admin/options.php:206 1319 #: addons/styling/admin/options.php:377 1320 msgid "Extra Thick" 1321 msgstr "Extra vet" 1322 1323 #: addons/payments/payments.php:88 1324 msgid "Failed <span class=\"count\">(%s)</span>" 1325 msgid_plural "Failed <span class=\"count\">(%s)</span>" 1326 msgstr[0] "Mislukt <span class=\"count\">(%s)</span>" 1327 msgstr[1] "Mislukt <span class=\"count\">(%s)</span>" 1328 1329 #: addons/payments/payments.php:83 1330 msgctxt "failed status payment" 1331 msgid "Failed" 1332 msgstr "Mislukt" 1333 1334 #: addons/featured/featured.php:161 1335 msgid "Feature this ad - it will be styled differently and sticky" 1336 msgstr "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 1341 msgid "Featured" 1342 msgstr "Uitgelicht" 1343 1344 #: addons/featured/admin/options.php:15 includes/admin-pages.php:140 1345 msgid "Featured Ads" 1346 msgstr "Aanbevolen advertenties" 1347 1348 #: includes/class-widget-ads.php:175 1349 msgid "Featured Only" 1350 msgstr "Alleen uitgelicht" 1351 1352 #: includes/admin-pages.php:137 1353 msgid "Features" 1354 msgstr "Functies" 1355 1356 #: includes/admin-pages.php:166 1357 msgid "Fee Per Category" 1358 msgstr "Vergoeding per categorie" 1359 1360 #: includes/defaults.php:327 1361 msgid "Field cannot be empty." 1362 msgstr "Veld mag niet leeg zijn." 1363 1364 #: includes/ajax.php:345 1365 msgid "File could not be deleted." 1366 msgstr "Bestand kon niet worden verwijderd." 1367 1368 #: includes/ajax.php:414 1369 msgid "File does not exist." 1370 msgstr "Bestand bestaat niet." 1371 1372 #: includes/gallery.php:529 1373 msgid "File name:" 1374 msgstr "Bestandsnaam:" 1375 1376 #: includes/gallery.php:541 1377 msgid "File size:" 1378 msgstr "Bestandsgrootte:" 1379 1380 #: includes/gallery.php:533 1381 msgid "File type:" 1382 msgstr "Bestandstype:" 1383 1384 #: blocks/single-gallery/templates/gallery.php:47 1385 msgid "File: " 1386 msgstr "Bestand:" 1387 1388 #: addons/core/includes/admin-pages.php:548 1389 msgid "Fill" 1390 msgstr "Vullen" 1391 1392 #: addons/payments/templates/publish-payment.php:52 1393 msgid "Fill Payment Form" 1394 msgstr "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 1399 msgid "Filter" 1400 msgstr "Filter" 1401 1402 #: addons/core/admin/types-icon-picker.php:7 1403 msgid "Filter ..." 1404 msgstr "Filter…" 1405 1406 #: addons/emails/admin/emails-list.php:29 1407 #: addons/emails/admin/emails-list.php:128 1408 msgid "Filter By Module" 1409 msgstr "Filteren op module" 1410 1411 #: addons/emails/admin/emails-list.php:35 1412 msgid "Filter By Recipient" 1413 msgstr "Filteren op ontvanger" 1414 1415 #: includes/admin-pages.php:417 1416 msgid "Filter Icons ..." 1417 msgstr "Filter pictogrammen..." 1418 1419 #: templates/list.php:91 1420 msgid "Filter Results" 1421 msgstr "Resultaten filteren" 1422 1423 #: addons/emails/includes/class-field-name-email.php:82 1424 msgid "First Name" 1425 msgstr "Voornaam" 1426 1427 #: addons/styling/admin/options.php:335 1428 msgid "Flat" 1429 msgstr "Vlak" 1430 1431 #: includes/gallery.php:575 1432 msgid "Flip Horizontally" 1433 msgstr "Horizontaal spiegelen" 1434 1435 #: includes/gallery.php:574 1436 msgid "Flip Vertically" 1437 msgstr "Verticaal spiegelen" 1438 1439 #: addons/styling/admin/options.php:79 addons/styling/admin/options.php:211 1440 msgid "Font Weight" 1441 msgstr "Lettertype gewicht" 1442 1443 #: addons/styling/admin/options.php:18 1444 msgid "Forms" 1445 msgstr "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 1450 msgid "Free" 1451 msgstr "Gratis" 1452 1453 #: addons/payments/payments.php:1064 1454 msgid "Free Renewal automatically marked as completed." 1455 msgstr "Gratis verlenging automatisch gemarkeerd als voltooid." 1456 1457 #: addons/payments/payments.php:1049 1458 msgid "Free Renewals cannot be used more than once every %d days." 1459 msgstr "" 1460 "Gratis verlengingen kunnen niet meer dan eens per %d dagen worden gebruikt." 1461 1462 #: addons/emails/includes/class-emails-admin.php:367 1463 msgid "From" 1464 msgstr "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 1468 msgid "From A to Z" 1469 msgstr "Van A naar Z" 1470 1471 #: addons/contact-form/includes/admin-pages.php:112 1472 msgid "From Email" 1473 msgstr "Van e-mail" 1474 1475 #: addons/contact-form/includes/admin-pages.php:105 1476 msgid "From Name" 1477 msgstr "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 1481 msgid "From Z to A" 1482 msgstr "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 1486 msgid "Full" 1487 msgstr "Volledig" 1488 1489 #: addons/emails/includes/class-field-name-email.php:64 1490 msgid "Full Name" 1491 msgstr "Volledige naam" 1492 1493 #: includes/class-gallery-helper.php:319 1494 msgid "Full Screen" 1495 msgstr "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 1501 msgid "Gallery" 1502 msgstr "Galerij" 1503 1504 #: includes/gallery.php:818 1505 msgid "Gallery - Full Size" 1506 msgstr "Galerij - volle grootte" 1507 1508 #: includes/gallery.php:823 1509 msgid "Gallery - Slider" 1510 msgstr "Galerij - slider" 1511 1512 #: addons/core/includes/admin-pages.php:508 1513 msgid "Gallery Pagination" 1514 msgstr "Galerij paginering" 1515 1516 #: addons/core/includes/admin-pages.php:556 1517 #: addons/core/includes/admin-pages.php:557 1518 msgid "Gallery Upload" 1519 msgstr "Galerij upload" 1520 1521 #: addons/payments/admin/payment-history-edit.php:36 1522 msgid "Gateway" 1523 msgstr "Methode" 1524 1525 #: addons/core/admin/types-edit-post.php:68 1526 msgid "General" 1527 msgstr "Algemeen" 1528 1529 #: admin/options.php:141 1530 msgid "Get This Addon" 1531 msgstr "Verkrijg deze add-on" 1532 1533 #: templates/manage-edit.php:2 1534 msgid "Go Back" 1535 msgstr "Ga terug" 1536 1537 #: blocks/manage/templates/manage-edit.php:16 1538 msgid "Go back" 1539 msgstr "Ga terug" 1540 1541 #: blocks/manage/index.php:54 1542 msgid "Go back to ads list" 1543 msgstr "Ga terug naar het advertentie overzicht" 1544 1545 #: includes/class-widget-categories.php:273 1546 msgid "Go Up (%s)" 1547 msgstr "Ga omhoog (%s)" 1548 1549 #: includes/class-widget-categories.php:275 1550 msgid "Go Up (Home)" 1551 msgstr "Ga omhoog (Home)" 1552 1553 #: addons/styling/admin/options.php:325 1554 msgid "Gray" 1555 msgstr "Grijs" 1556 1557 #. Author of the plugin/theme 1558 msgid "Greg Winiarski" 1559 msgstr "Greg Winiarski" 1560 1561 #: templates/list.php:50 1562 msgid "Grid" 1563 msgstr "Raster" 1564 1565 #: addons/core/includes/admin-pages.php:446 1566 msgid "Grid (2 or more columns)" 1567 msgstr "Raster (2 of meer kolommen)" 1568 1569 #: addons/emails/admin/emails-edit.php:51 1570 msgid "Header Name" 1571 msgstr "Headernaam" 1572 1573 #: addons/payments/includes/class-emails-integration.php:165 1574 msgid "" 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}" 1581 msgstr "" 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 1590 msgid "" 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}" 1599 msgstr "" 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 1610 msgid "" 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}" 1619 msgstr "" 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 1630 msgid "" 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." 1639 msgstr "" 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 1651 msgid "" 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}" 1660 msgstr "" 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 1672 msgid "" 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}" 1681 msgstr "" 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 1692 msgid "" 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." 1701 msgstr "" 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 1713 msgid "" 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}" 1719 msgstr "" 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 1727 msgid "" 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." 1731 msgstr "" 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 1738 msgid "" 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}" 1750 msgstr "" 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 1764 msgid "" 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}" 1770 msgstr "" 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 1778 msgid "" 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}" 1784 msgstr "" 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 1792 msgid "" 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}" 1798 msgstr "" 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 1806 msgid "" 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." 1813 msgstr "" 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 1822 msgid "" 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." 1828 msgstr "" 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 1836 msgid "" 1837 "Hello,\n" 1838 "your Ad titled '{$advert.post_title}' has expired and is no longer available " 1839 "on site." 1840 msgstr "" 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 1846 msgid "" 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." 1853 msgstr "" 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 1862 msgid "" 1863 "Hello,\n" 1864 "your order {$payment|payment_order_id} has been proccessed and marked as " 1865 "completed." 1866 msgstr "" 1867 "Hallo,\n" 1868 "je bestelling {$payment|payment_order_id} is verwerkt en gemarkeerd als " 1869 "voltooid." 1870 1871 #: includes/admin-pages.php:84 1872 msgid "Here you can configure most basic options, applicable on any site." 1873 msgstr "" 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 1878 msgid "Hide" 1879 msgstr "Verbergen" 1880 1881 #: includes/class-widget-categories.php:92 1882 msgid "Hide empty" 1883 msgstr "Verberg leeg" 1884 1885 #: addons/payments/admin/payment-history-list.php:65 1886 msgid "Hide Free" 1887 msgstr "Verberg gratis" 1888 1889 #: includes/class-types-admin.php:713 1890 msgid "Hierarchical" 1891 msgstr "Hiërarchisch" 1892 1893 #: includes/class-moderate-admin.php:112 1894 msgid "" 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>." 1898 msgstr "" 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 1904 msgid "Honeypot" 1905 msgstr "Honeypot" 1906 1907 #: includes/class-moderate-admin.php:157 1908 msgid "Honeypot Name" 1909 msgstr "Honeypot naam" 1910 1911 #: includes/class-moderate-admin.php:150 1912 msgid "Honeypot Title" 1913 msgstr "Honeypot titel" 1914 1915 #: includes/functions.php:2249 1916 msgid "Hong Kong Dollar" 1917 msgstr "Hong Kong dollar" 1918 1919 #: addons/core/includes/admin-pages.php:550 1920 msgid "How images should be displayed in the gallery." 1921 msgstr "Hoe afbeeldingen in de galerij moeten worden weergegeven." 1922 1923 #: includes/defaults.php:315 1924 msgid "HTML - removes unsafe HTML tags and attributes." 1925 msgstr "HTML - verwijdert onveilige HTML-tags en -attributen." 1926 1927 #. Plugin URI of the plugin/theme 1928 msgid "https://wpadverts.com/" 1929 msgstr "https://wpadverts.com/" 1930 1931 #: includes/functions.php:2250 1932 msgid "Hungarian Forint" 1933 msgstr "Hongaarse forint" 1934 1935 #: includes/admin-pages.php:420 1936 msgid "Icons V4" 1937 msgstr "Pictogrammen V6" 1938 1939 #: includes/admin-pages.php:421 1940 msgid "Icons V6" 1941 msgstr "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 1945 msgid "ID" 1946 msgstr "ID" 1947 1948 #: addons/core/includes/admin-pages.php:563 1949 msgid "Image Editor" 1950 msgstr "Afbeelding editor" 1951 1952 #: addons/core/includes/admin-pages.php:573 1953 msgid "Image Editor Capability" 1954 msgstr "Afbeelding editor rechten" 1955 1956 #: addons/core/includes/admin-pages.php:542 1957 msgid "Image Fit" 1958 msgstr "Afbeelding fit" 1959 1960 #: includes/gallery.php:819 1961 msgid "" 1962 "Image in original size - used on classified details page in the gallery." 1963 msgstr "" 1964 "Afbeelding in originele grootte - gebruikt op de geclassificeerde " 1965 "detailpagina in de galerij." 1966 1967 #: includes/gallery.php:570 1968 msgid "Image Manipulation" 1969 msgstr "Afbeeldings-manipulatie" 1970 1971 #: includes/gallery.php:834 1972 msgid "Image resized to %d x %d - the image visible in upload preview." 1973 msgstr "" 1974 "Afbeelding aangepast naar %d x %d - de afbeelding zichtbaar in " 1975 "uploadvoorbeeld." 1976 1977 #: includes/gallery.php:824 1978 msgid "" 1979 "Image resized to %d x %d - used in the images slider on classified details " 1980 "page." 1981 msgstr "" 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 1986 msgid "Image resized to %d x %d - used on the classifieds list." 1987 msgstr "" 1988 "Afbeelding aangepast naar %d x %d - gebruikt op de lijst met advertenties." 1989 1990 #: includes/gallery.php:581 1991 msgid "Image Size" 1992 msgstr "Afbeeldingsgrootte" 1993 1994 #: addons/core/includes/admin-pages.php:583 1995 #: addons/core/includes/admin-pages.php:584 1996 msgid "Image Sizes" 1997 msgstr "Afbeeldingsformaten" 1998 1999 #: includes/admin-post-type.php:622 2000 msgid "in %s" 2001 msgstr "in %s" 2002 2003 #: includes/gallery.php:409 2004 msgid "" 2005 "In 'Preview' select 'Video' and click 'Capture ...' button to generate " 2006 "thumbnails." 2007 msgstr "" 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 2012 msgid "Inactive — This Ad expired." 2013 msgstr "Inactief — Deze advertentie is verlopen." 2014 2015 #: blocks/manage/templates/manage-list-item.php:43 templates/manage.php:22 2016 msgid "Inactive — This Ad is in moderation." 2017 msgstr "Inactief — Deze advertentie is met behandeling." 2018 2019 #: addons/payments/payments.php:1246 addons/payments/payments.php:1286 2020 msgid "Inactive — Waiting for payment." 2021 msgstr "Non-actief - Wacht op betaling." 2022 2023 #: includes/ajax.php:341 2024 msgid "Incorrect attachment ID." 2025 msgstr "Onjuiste bijlage-ID." 2026 2027 #: includes/ajax.php:386 2028 msgid "Incorrect field name." 2029 msgstr "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 2033 msgid "Incorrect Post or Attachment ID." 2034 msgstr "Onjuist bericht- of bijlage-ID." 2035 2036 #: blocks/manage/class-manage-engine.php:248 includes/shortcodes.php:436 2037 #: includes/shortcodes.php:540 2038 msgid "Incorrect post status [%s]." 2039 msgstr "Onjuiste berichtstatus [%s]." 2040 2041 #: includes/defaults.php:388 2042 msgid "Incorrect string length." 2043 msgstr "Onjuiste string lengte." 2044 2045 #: includes/functions.php:2252 2046 msgid "Indian Rupees" 2047 msgstr "Indiase roepie" 2048 2049 #: addons/styling/admin/options.php:347 2050 msgid "Inside" 2051 msgstr "Binnen" 2052 2053 #: includes/defaults.php:301 2054 msgid "Integer - converts string to absolute integer." 2055 msgstr "Integer - converteert een string naar geheel getal." 2056 2057 #: includes/admin-pages.php:103 2058 msgid "" 2059 "Integrate user Ads with BuddyPress profiles, registration and private " 2060 "messages." 2061 msgstr "" 2062 "Integreer gebruikersadvertenties met BuddyPress-profielen, registratie en " 2063 "privéberichten." 2064 2065 #: addons/styling/admin/options.php:386 2066 msgid "Interline" 2067 msgstr "tussenlijn" 2068 2069 #: includes/ajax.php:1000 2070 msgid "Invalid Nonce." 2071 msgstr "Ongeldige nonce." 2072 2073 #: includes/class-types-admin.php:220 includes/class-types-admin.php:248 2074 #: includes/class-types-admin.php:294 2075 msgid "Invalid nonce." 2076 msgstr "Ongeldige nonce." 2077 2078 #: includes/ajax.php:1278 includes/ajax.php:1325 2079 msgid "Invalid param name." 2080 msgstr "Ongeldige parameternaam." 2081 2082 #: includes/class-form.php:176 includes/class-upload-helper.php:122 2083 msgid "Invalid value." 2084 msgstr "Ongeldige waarde." 2085 2086 #: includes/functions.php:2268 2087 msgid "Iranian Rial" 2088 msgstr "Iraanse rial" 2089 2090 #: addons/emails/includes/class-emails-admin.php:351 2091 msgid "Is Active" 2092 msgstr "Is actief" 2093 2094 #: includes/class-moderate-admin.php:141 includes/class-moderate-admin.php:171 2095 msgid "Is Enabled" 2096 msgstr "Is ingeschakeld" 2097 2098 #: includes/defaults.php:366 2099 msgid "Is Integer" 2100 msgstr "Is integer" 2101 2102 #: includes/defaults.php:376 2103 msgid "Is Number" 2104 msgstr "Is nummer" 2105 2106 #: includes/defaults.php:325 2107 msgid "Is Required" 2108 msgstr "Is vereist" 2109 2110 #: includes/functions.php:2251 2111 msgid "Israeli Shekel" 2112 msgstr "Israëlische sjekel" 2113 2114 #: includes/functions.php:3235 2115 msgid "" 2116 "It seems you are not the post %d author. Please refresh the page and try " 2117 "again." 2118 msgstr "" 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 2123 msgid "Item deleted successfully." 2124 msgstr "Item succesvol verwijderd." 2125 2126 #: includes/defaults.php:90 2127 msgid "Item Information" 2128 msgstr "Item informatie" 2129 2130 #: addons/payments/admin/payment-history-list.php:177 2131 msgid "Items: <strong>%d</strong>. Revenue <strong>%s</strong>." 2132 msgstr "Artikelen: <strong>%d</strong>. Opbrengst <strong>%s</strong>." 2133 2134 #: includes/functions.php:2253 2135 msgid "Japanese Yen" 2136 msgstr "Japanse yen" 2137 2138 #: includes/class-widget-ads.php:93 2139 msgid "Keyword" 2140 msgstr "Trefwoord" 2141 2142 #: includes/defaults.php:169 2143 msgid "Keyword ..." 2144 msgstr "Trefwoord ..." 2145 2146 #: includes/functions.php:2254 2147 msgid "Kuwaiti Dinar" 2148 msgstr "Kuwaiti dinar" 2149 2150 #: includes/class-types-admin.php:579 includes/class-types-admin.php:699 2151 msgid "Label" 2152 msgstr "Label" 2153 2154 #: addons/core/admin/types-edit-post.php:69 2155 msgid "Labels" 2156 msgstr "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 2160 msgid "Large" 2161 msgstr "Groot" 2162 2163 #: addons/payments/admin/payment-history-list.php:56 2164 msgid "Last month" 2165 msgstr "Afgelopen maand" 2166 2167 #: addons/emails/includes/class-field-name-email.php:97 2168 msgid "Last Name" 2169 msgstr "Achternaam" 2170 2171 #: includes/gallery.php:549 2172 msgid "Length:" 2173 msgstr "Lengte:" 2174 2175 #: includes/class-updates-manager.php:116 2176 msgid "License" 2177 msgstr "Licentie" 2178 2179 #: includes/class-updates-manager.php:316 2180 #: includes/class-updates-manager.php:331 2181 msgid "License ..." 2182 msgstr "Licentie ..." 2183 2184 #: addons/core/includes/admin-pages.php:533 2185 msgid "Lightbox" 2186 msgstr "Lightbox" 2187 2188 #: templates/list.php:51 2189 msgid "List" 2190 msgstr "Lijst" 2191 2192 #: addons/core/includes/admin-pages.php:447 2193 msgid "List (1 column)" 2194 msgstr "Lijst (1 kolom)" 2195 2196 #: addons/payments/payments.php:354 2197 msgid "Listing" 2198 msgstr "Vermelding" 2199 2200 #: addons/payments/payments.php:320 addons/payments/payments.php:906 2201 msgid "Listing Information" 2202 msgstr "Vermeldingsinformatie" 2203 2204 #: addons/payments/payments.php:1515 2205 msgid "Listing Type" 2206 msgstr "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 2212 msgid "Location" 2213 msgstr "Locatie" 2214 2215 #: includes/class-rest-blocks.php:213 2216 msgid "Location (Formatted)" 2217 msgstr "Locatie (opgemaakt)" 2218 2219 #: includes/defaults.php:181 2220 msgid "Location ..." 2221 msgstr "Locatie..." 2222 2223 #: includes/admin-pages.php:160 2224 msgid "Locations Taxonomy, Google Maps integration and more." 2225 msgstr "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 2229 msgid "Login" 2230 msgstr "Login" 2231 2232 #: includes/admin-post-type.php:331 2233 msgid "M j, Y @ G:i" 2234 msgstr "M j, Y @ G:i" 2235 2236 #: wpadverts.php:408 2237 msgid "Main" 2238 msgstr "Hoofd" 2239 2240 #: includes/functions.php:2255 2241 msgid "Malaysian Ringgits" 2242 msgstr "Maleisische ringgit" 2243 2244 #: blocks/manage/class-manage-engine.php:166 2245 msgid "Manage" 2246 msgstr "Beheren" 2247 2248 #: addons/core/includes/admin-pages.php:332 2249 msgid "Manage Moderation" 2250 msgstr "Moderatie beheren" 2251 2252 #: includes/admin-pages.php:159 2253 msgid "Maps And Locations" 2254 msgstr "Kaarten en locaties" 2255 2256 #: includes/admin-pages.php:187 2257 msgid "Mark As Sold" 2258 msgstr "Markeren als verkocht" 2259 2260 #: includes/class-moderate-admin.php:123 2261 msgid "Match exact phrases" 2262 msgstr "Match exacte zinnen" 2263 2264 #: includes/class-moderate-admin.php:122 2265 msgid "Match partial phrases" 2266 msgstr "Match gedeeltelijk zinnen" 2267 2268 #: includes/defaults.php:400 2269 msgid "Max Choices" 2270 msgstr "Maximale keuzes" 2271 2272 #: addons/core/includes/admin-pages.php:689 2273 msgid "max. height" 2274 msgstr "max. hoogte" 2275 2276 #: includes/class-moderate-admin.php:97 2277 msgid "Max. Links In The Content" 2278 msgstr "Maximaal aantal links in de inhoud" 2279 2280 #: addons/core/includes/admin-pages.php:684 2281 msgid "max. width" 2282 msgstr "max. breedte" 2283 2284 #: addons/core/includes/admin-pages.php:314 2285 msgid "Media Library" 2286 msgstr "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 2291 msgid "Medium" 2292 msgstr "Medium" 2293 2294 #: includes/class-types-admin.php:606 2295 msgid "Menu Icon" 2296 msgstr "Menu pictogram" 2297 2298 #: includes/class-types-admin.php:594 2299 msgid "Menu Position" 2300 msgstr "Menu positie" 2301 2302 #: addons/bank-transfer/includes/admin-pages.php:74 2303 #: addons/contact-form/contact-form.php:584 2304 msgid "Message" 2305 msgstr "Bericht" 2306 2307 #: addons/emails/admin/emails-list.php:54 2308 msgid "Message Enabled" 2309 msgstr "Bericht ingeschakeld" 2310 2311 #: includes/functions.php:2256 2312 msgid "Mexican Peso" 2313 msgstr "Mexicaanse peso" 2314 2315 #: blocks/single-data-table/index.php:187 2316 #: blocks/single-data-table/index.php:194 2317 msgid "Modified" 2318 msgstr "Aangepast" 2319 2320 #: includes/class-rest-blocks.php:185 2321 msgid "Modified Date" 2322 msgstr "Gewijzigde datum" 2323 2324 #: includes/class-rest-blocks.php:189 2325 msgid "Modified Date (GMT)" 2326 msgstr "Gewijzigde datum (GMT)" 2327 2328 #: addons/emails/admin/emails-list.php:79 2329 msgid "Module / %s" 2330 msgstr "Module / %s" 2331 2332 #: wpadverts.php:672 2333 msgid "Module activated successfully." 2334 msgstr "Module succesvol geactiveerd." 2335 2336 #: includes/admin-pages.php:80 2337 msgid "Modules" 2338 msgstr "Modules" 2339 2340 #: admin/options.php:87 2341 msgid "Modules and Extensions" 2342 msgstr "Modules en uitbreidingen" 2343 2344 #: includes/defaults.php:287 2345 msgid "Money - converts string formatted as price to float." 2346 msgstr "Geld - converteert een string die is opgemaakt als prijs naar float." 2347 2348 #: templates/manage.php:78 2349 msgid "More" 2350 msgstr "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 2354 msgid "Most Expensive First" 2355 msgstr "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 2359 msgid "Name" 2360 msgstr "Naam" 2361 2362 #: includes/admin-pages.php:195 2363 msgid "Native analytics implementation independent of any third parties." 2364 msgstr "Native analytics-implementatie, onafhankelijk van derde partijen." 2365 2366 #: includes/admin-post-type.php:606 2367 msgid "Never" 2368 msgstr "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 2373 msgid "Never Expires" 2374 msgstr "Verloopt nooit" 2375 2376 #: addons/payments/includes/class-emails-integration.php:224 2377 msgid "New Ad has been paid and published" 2378 msgstr "Nieuwe advertentie is betaald en gepubliceerd" 2379 2380 #: addons/emails/includes/class-emails-messages.php:202 2381 msgid "New Ad has been published." 2382 msgstr "Er is een nieuwe advertentie geplaatst." 2383 2384 #: addons/payments/includes/class-emails-integration.php:194 2385 msgid "New Ad has been saved (waiting for payment)." 2386 msgstr "Nieuwe advertentie is opgeslagen (wacht op betaling)." 2387 2388 #: addons/emails/includes/class-emails-messages.php:216 2389 msgid "New Ad is pending (action required)." 2390 msgstr "Nieuwe advertentie is in behandeling (actie vereist)." 2391 2392 #: wpadverts.php:243 2393 msgid "New Classified" 2394 msgstr "Nieuwe advertentie" 2395 2396 #: addons/payments/admin/pricing-list.php:73 2397 msgid "New Post" 2398 msgstr "Nieuw bericht" 2399 2400 #: addons/payments/includes/admin-pages.php:808 2401 msgid "New Posting" 2402 msgstr "Nieuwe plaatsing" 2403 2404 #: addons/payments/includes/admin-pages.php:162 2405 msgid "New pricing has been added." 2406 msgstr "Er zijn nieuwe prijzen toegevoegd." 2407 2408 #: includes/functions.php:2258 2409 msgid "New Zealand Dollar" 2410 msgstr "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 2417 msgid "Newest First" 2418 msgstr "Nieuwste eerst" 2419 2420 #: includes/class-gallery-helper.php:461 includes/class-gallery-helper.php:550 2421 msgid "Next" 2422 msgstr "Volgende" 2423 2424 #: addons/core/includes/admin-pages.php:510 2425 msgid "Next and Previous Buttons" 2426 msgstr "Vorige en Volgende knoppen" 2427 2428 #: addons/payments/admin/payment-history-list.php:167 2429 msgid "Next automatic cleanup <strong>%s</strong>." 2430 msgstr "Volgende automatische opschoning <strong>%s</strong>." 2431 2432 #: includes/functions.php:2257 2433 msgid "Nigerian Naira" 2434 msgstr "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 2440 msgid "No categories found." 2441 msgstr "Geen categorieën gevonden." 2442 2443 #: wpadverts.php:247 2444 msgid "No Classifieds found" 2445 msgstr "Geen advertenties gevonden" 2446 2447 #: wpadverts.php:248 2448 msgid "No Classifieds found in the Trash" 2449 msgstr "Geen advertenties gevonden in de prullenbak" 2450 2451 #: blocks/single-value/index.php:72 2452 msgid "no data selected!" 2453 msgstr "geen gegevens geselecteerd!" 2454 2455 #: addons/payments/templates/add-payment.php:27 2456 #: addons/payments/templates/publish-payment.php:36 2457 msgid "No Payment Gateway Enabled!" 2458 msgstr "Geen betalingsgateway ingeschakeld!" 2459 2460 #: blocks/list/templates/list.php:161 2461 #: blocks/manage/templates/manage-list.php:165 wpadverts.php:392 2462 msgid "No results found." 2463 msgstr "Geen resultaten gevonden." 2464 2465 #: addons/payments/includes/admin-pages.php:485 2466 msgid "No temporary payments to delete at this time." 2467 msgstr "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 2473 msgid "None" 2474 msgstr "Geen" 2475 2476 #: addons/styling/admin/options.php:334 addons/styling/admin/options.php:344 2477 msgid "None (default styling)" 2478 msgstr "Geen (standaardstijl)" 2479 2480 #: includes/class-types-admin.php:800 2481 msgid "None - you will need to create your own templates." 2482 msgstr "Geen - je moet je eigen templates maken." 2483 2484 #: addons/styling/admin/options.php:82 addons/styling/admin/options.php:214 2485 msgid "Normal" 2486 msgstr "Normaal" 2487 2488 #: includes/functions.php:2259 2489 msgid "Norwegian Krone" 2490 msgstr "Noorse kroon" 2491 2492 #: includes/defaults.php:308 2493 msgid "Number - converts string to a number." 2494 msgstr "Nummer - converteert een string naar een getal." 2495 2496 #: addons/core/includes/admin-pages.php:284 2497 msgid "Number of days Ad will be visible by default." 2498 msgstr "Aantal dagen dat een advertentie standaard zichtbaar is." 2499 2500 #: addons/payments/includes/admin-pages.php:844 2501 msgid "Number of days the Ad will be visible." 2502 msgstr "Aantal dagen dat de advertentie zichtbaar is." 2503 2504 #: addons/core/includes/admin-pages.php:527 2505 msgid "Number of thumbnails to scroll when clicking Previous or Next buttons." 2506 msgstr "" 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 2511 msgid "Number of thumbnails to show below gallery." 2512 msgstr "Aantal thumbnails dat onder de galerij moet worden weergegeven." 2513 2514 #: includes/admin-post-type.php:309 wpadverts.php:395 wpadverts.php:499 2515 msgid "OK" 2516 msgstr "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 2520 msgid "Oldest First" 2521 msgstr "Oudste eerst" 2522 2523 #: includes/defaults.php:413 2524 msgid "One or more selected values are not available in the options list." 2525 msgstr "" 2526 "Een of meer geselecteerde waarden zijn niet beschikbaar in de optielijst." 2527 2528 #: blocks/manage/class-manage-engine.php:54 2529 msgid "Only logged in users can access this page." 2530 msgstr "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 2534 msgid "" 2535 "Only logged in users can access this page. <a href=\"%1$s\">Login</a> or <a " 2536 "href=\"%2$s\">Register</a>." 2537 msgstr "" 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 2542 msgid "Only logged-in members can contact sellers." 2543 msgstr "Alleen ingelogde gebruikers kunnen contact opnemen met verkopers." 2544 2545 #: wpadverts.php:393 2546 msgid "Open" 2547 msgstr "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 2554 msgid "Options" 2555 msgstr "Opties" 2556 2557 #: includes/gallery.php:108 2558 msgid "or drag and drop." 2559 msgstr "of slepen en neerzetten." 2560 2561 #: includes/class-widget-ads.php:149 2562 msgid "Order" 2563 msgstr "Bestelling" 2564 2565 #: includes/gallery.php:616 2566 msgid "Original size:" 2567 msgstr "Originele grootte:" 2568 2569 #: addons/emails/admin/emails-list.php:95 addons/styling/admin/options.php:382 2570 msgid "Other" 2571 msgstr "Andere" 2572 2573 #: addons/payments/admin/payment-history-edit.php:82 2574 msgid "Paid" 2575 msgstr "Betaald" 2576 2577 #: includes/class-gallery-helper.php:301 2578 msgid "Pause" 2579 msgstr "Pauzeer" 2580 2581 #: addons/payments/admin/payment-history-edit.php:31 2582 msgid "Payment" 2583 msgstr "Betaling" 2584 2585 #: addons/payments/includes/admin-pages.php:298 2586 msgid "Payment #%d does not exist or was deleted." 2587 msgstr "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 2591 msgid "Payment Completed ({$payment|payment_order_id})." 2592 msgstr "Betaling voltooid ({$payment|payment_order_id})." 25 2593 26 2594 #: addons/bank-transfer/admin/options.php:15 27 2595 msgid "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 2596 msgstr "Betalingsgateway / Bankoverschrijving" 2597 2598 #: addons/bank-transfer/includes/admin-pages.php:65 2599 msgid "Payment gateway name visible in the frontend when making a payment." 2600 msgstr "" 2601 "Naam van de betalingsgateway zichtbaar in de frontend bij het doen van een " 2602 "betaling." 2603 2604 #: includes/admin-pages.php:210 2605 msgid "Payment Gateways" 2606 msgstr "Betaling gateways" 2607 2608 #: addons/payments/admin/payment-history-list.php:16 2609 #: addons/payments/payments.php:1118 2610 msgid "Payment History" 2611 msgstr "Betalingsgeschiedenis" 2612 2613 #: addons/payments/admin/payment-history-edit.php:16 2614 msgid "Payment History Edit" 2615 msgstr "Betalingsgeschiedenis bewerking" 2616 2617 #: addons/payments/admin/payment-history-edit.php:143 2618 msgid "Payment Log" 2619 msgstr "Betalingslog" 2620 2621 #: addons/payments/includes/admin-pages.php:347 2622 msgid "" 2623 "Payment Method [%s] assigned to this Payment does not exist or was disabled." 2624 msgstr "" 2625 "Betalingsmethode [%s] toegewezen aan deze betaling bestaat niet of is " 2626 "uitgeschakeld." 2627 2628 #: addons/bank-transfer/includes/admin-pages.php:64 2629 msgid "Payment Name" 2630 msgstr "Naam betaling" 2631 2632 #: addons/payments/includes/class-emails-integration.php:119 2633 msgid "Payment Pending ({$payment|payment_order_id})." 2634 msgstr "Betaling in behandeling ({$payment|payment_order_id})." 2635 2636 #: addons/payments/includes/admin-pages.php:394 2637 msgid "Payment updated." 2638 msgstr "Betaling is geüpdatet." 2639 2640 #: addons/payments/includes/class-emails-integration.php:78 2641 #: includes/admin-pages.php:89 2642 msgid "Payments" 2643 msgstr "Betalingen" 2644 2645 #: includes/admin-pages.php:220 2646 msgid "PayPal Payments Standard, allow users to pay for ads via PayPal." 2647 msgstr "" 2648 "Standaard PayPal Payments, stelt gebruikers in staat om via PayPal voor " 2649 "advertenties te betalen." 2650 2651 #: includes/admin-pages.php:219 2652 msgid "PayPal Standard" 2653 msgstr "Standaard PayPal" 2654 2655 #: addons/payments/payments.php:97 addons/payments/payments.php:112 2656 msgid "Pending <span class=\"count\">(%s)</span>" 2657 msgid_plural "Pending <span class=\"count\">(%s)</span>" 2658 msgstr[0] "<span class=\"count\">(%s)</span> in behandeling" 2659 msgstr[1] "<span class=\"count\">(%s)</span> in behandeling" 2660 2661 #: includes/functions.php:2947 2662 msgid "Pending Ads" 2663 msgstr "Advertenties in afwachting" 2664 2665 #: addons/payments/includes/admin-pages.php:649 2666 #: addons/payments/includes/admin-pages.php:681 2667 msgid "Pending Payment" 2668 msgstr "In afwachting van betaling" 2669 2670 #: addons/payments/payments.php:92 2671 msgctxt "pending status payment" 2672 msgid "Pending" 2673 msgstr "In afwachting" 2674 2675 #: includes/class-types-admin.php:645 includes/class-types-admin.php:722 2676 msgid "Permalink Prefix" 2677 msgstr "Permalink voorvoegsel" 2678 2679 #: includes/functions.php:2260 2680 msgid "Philippine Pesos" 2681 msgstr "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 2687 msgid "Phone" 2688 msgstr "Telefoon" 2689 2690 #: addons/contact-form/includes/admin-pages.php:79 includes/defaults.php:78 2691 msgid "Phone Number" 2692 msgstr "Telefoonnummer" 2693 2694 #: includes/class-moderate-admin.php:120 2695 msgid "Phrases Matching" 2696 msgstr "Zinnen die overeenkomen" 2697 2698 #: addons/payments/templates/add-payment.php:44 2699 #: addons/payments/templates/publish-payment.php:63 2700 msgid "Place Order" 2701 msgstr "Plaats bestelling" 2702 2703 #: includes/class-gallery-helper.php:300 2704 msgid "Play" 2705 msgstr "Afspelen" 2706 2707 #: blocks/single-contact/index.php:80 2708 msgid "Please login or register to to send a message." 2709 msgstr "Log in of registreer om een bericht te sturen" 2710 2711 #: blocks/single-gallery/templates/gallery.php:34 2712 msgid "" 2713 "Please use a different browser or download the video and play on your device." 2714 msgstr "" 2715 "Gebruik een andere browser of download de video en speel deze af op uw " 2716 "apparaat." 2717 2718 #: includes/functions.php:2261 2719 msgid "Polish Zloty" 2720 msgstr "Poolse zloty" 2721 2722 #: wpadverts.php:223 2723 msgctxt "post" 2724 msgid "Expired" 2725 msgstr "Verlopen" 2726 2727 #: addons/payments/payments.php:110 2728 msgctxt "post" 2729 msgid "Pending" 2730 msgstr "In afwachting" 2731 2732 #: wpadverts.php:230 2733 msgctxt "post" 2734 msgid "Temporary" 2735 msgstr "Tijdelijk" 2736 2737 #: includes/class-rest-blocks.php:177 2738 msgid "Post Date" 2739 msgstr "Berichtdatum" 2740 2741 #: includes/class-rest-blocks.php:221 2742 msgid "Post date (Formatted)" 2743 msgstr "Bericht datum (opgemaakt)" 2744 2745 #: includes/class-rest-blocks.php:181 2746 msgid "Post Date (GMT)" 2747 msgstr "Bericht datum (GMT)" 2748 2749 #: blocks/manage/class-manage-engine.php:287 includes/shortcodes.php:477 2750 msgid "Post has been updated." 2751 msgstr "Bericht is geüpdatet." 2752 2753 #: includes/functions.php:3243 2754 msgid "Post ID not provided." 2755 msgstr "Bericht-ID niet opgegeven." 2756 2757 #: includes/class-types-admin.php:236 2758 msgid "Post Type configuration restored to default." 2759 msgstr "Advertentie instellingen teruggezet naar standaard." 2760 2761 #: wpadverts.php:238 2762 msgctxt "post type general name" 2763 msgid "Classifieds" 2764 msgstr "Advertenties" 2765 2766 #: wpadverts.php:239 2767 msgctxt "post type singular name" 2768 msgid "Classified" 2769 msgstr "Advertentie" 2770 2771 #: includes/class-types-admin.php:464 2772 msgid "Post Type updated." 2773 msgstr "Berichttype bijgewerkt." 2774 2775 #: includes/class-types-admin.php:157 2776 msgid "Post Types" 2777 msgstr "Bericht typen" 2778 2779 #: includes/admin-post-type.php:196 2780 msgid "Post updated, but some required data is not filled properly." 2781 msgstr "" 2782 "Bericht geüpdatet, echter sommige vereiste gegevens zijn niet correct " 2783 "ingevuld." 2784 2785 #: includes/ajax.php:1008 includes/ajax.php:1069 2786 msgid "Post with given ID does not exist." 2787 msgstr "Bericht met opgegeven ID bestaat niet." 2788 2789 #: includes/ajax.php:1215 2790 msgid "Post you are trying to delete does not belong to you." 2791 msgstr "Bericht die je probeert te verwijderen, is niet van jou." 2792 2793 #: includes/ajax.php:1207 2794 msgid "Post you are trying to delete does not exist." 2795 msgstr "Het bericht dat je probeert te verwijderen bestaat niet." 2796 2797 #: addons/payments/payments.php:1483 2798 msgid "Posting" 2799 msgstr "Plaatsen" 2800 2801 #: addons/core/includes/admin-pages.php:471 2802 msgid "Posts Per Page" 2803 msgstr "Berichten per pagina" 2804 2805 #: includes/functions.php:2242 2806 msgid "Pounds Sterling" 2807 msgstr "Pond sterling" 2808 2809 #: addons/core/includes/admin-pages.php:358 2810 msgid "Prefix - $10" 2811 msgstr "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 2817 msgid "Preview" 2818 msgstr "Voorbeeld bekijken" 2819 2820 #: templates/manage-edit.php:8 2821 msgid "Preview Ad" 2822 msgstr "Voorbeeld advertentie" 2823 2824 #: blocks/publish/class-publish-engine.php:342 2825 #: blocks/publish/class-publish-engine.php:516 2826 msgid "Preview Listing" 2827 msgstr "Voorbeeld advertentie" 2828 2829 #: includes/class-types-admin.php:657 includes/class-types-admin.php:744 2830 msgid "" 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>." 2834 msgstr "" 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 2840 msgid "Previous" 2841 msgstr "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 2851 msgid "Price" 2852 msgstr "Prijs" 2853 2854 #: includes/class-rest-blocks.php:217 2855 msgid "Price (Formatted)" 2856 msgstr "Prijs (opgemaakt)" 2857 2858 #: includes/class-widget-ads.php:116 2859 msgid "Price Max." 2860 msgstr "Max. prijs" 2861 2862 #: includes/class-widget-ads.php:110 2863 msgid "Price Min." 2864 msgstr "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 2869 msgid "Pricing" 2870 msgstr "Prijzen" 2871 2872 #: addons/payments/includes/admin-pages.php:234 2873 msgid "Pricing deleted." 2874 msgstr "Prijzen verwijderd." 2875 2876 #: addons/payments/includes/admin-pages.php:804 2877 msgid "Pricing Type" 2878 msgstr "Prijstype" 2879 2880 #: addons/payments/includes/admin-pages.php:210 2881 msgid "Pricing updated." 2882 msgstr "Prijs geüpdatet." 2883 2884 #: addons/styling/admin/options.php:16 addons/styling/admin/options.php:161 2885 msgid "Primary Button" 2886 msgstr "Primaire knop" 2887 2888 #: addons/styling/admin/options.php:165 2889 msgid "Primary Button Hover" 2890 msgstr "Primaire knop hover" 2891 2892 #: includes/admin-pages.php:174 2893 msgid "" 2894 "Protect your forms from SPAM using easy easy for humans and hard for bots " 2895 "captcha." 2896 msgstr "" 2897 "Bescherm je formulieren tegen SPAM met captcha gemakkelijk voor mensen en " 2898 "moeilijk voor bots." 2899 2900 #: includes/defaults.php:338 2901 msgid "Provided email address is invalid." 2902 msgstr "Opgegeven e-mailadres is ongeldig." 2903 2904 #: includes/defaults.php:424 2905 msgid "Provided text is invalid." 2906 msgstr "De opgegeven tekst is ongeldig." 2907 2908 #: includes/defaults.php:358 2909 msgid "Provided URL is invalid." 2910 msgstr "De opgegeven URL is ongeldig." 2911 2912 #: includes/defaults.php:378 2913 msgid "Provided value is not a number." 2914 msgstr "Opgegeven waarde is geen getal." 2915 2916 #: includes/defaults.php:368 2917 msgid "Provided value is not an integer." 2918 msgstr "De opgegeven waarde is geen integer." 2919 2920 #: blocks/publish/templates/publish-save.php:34 2921 msgid "Publish another Ad" 2922 msgstr "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 2931 msgid "Publish Date" 2932 msgstr "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 2940 msgid "Publish Listing" 2941 msgstr "Vermelding publiceren" 2942 2943 #: blocks/manage/templates/manage-list.php:171 2944 msgid "Publish your first Ad" 2945 msgstr "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 2950 msgid "Published" 2951 msgstr "Gepubliceerd" 2952 2953 #: blocks/manage/templates/manage-list-item.php:55 2954 msgid "Published — %s" 2955 msgstr "Gepubliceerd — %s" 2956 2957 #: blocks/details/templates/single.php:28 2958 #: blocks/single-author/templates/list.php:19 2959 msgid "Published %1$s - %2$s ago" 2960 msgstr "%1$s - %2$s geleden gepubliceerd" 2961 2962 #: templates/single.php:24 2963 msgid "Published: %1$s (%2$s ago)" 2964 msgstr "Gepubliceerd: %1$s (%2$s geleden)" 2965 2966 #: addons/payments/admin/payment-history-edit.php:110 2967 msgid "Purchase Details" 2968 msgstr "Aankoop details" 2969 2970 #: addons/payments/payments.php:1508 2971 msgid "Purchase Type" 2972 msgstr "Aankoop type" 2973 2974 #: addons/payments/payments.php:1527 2975 msgid "Purchased Item" 2976 msgstr "Gekocht item" 2977 2978 #: includes/functions.php:2275 2979 msgid "Qatari Riyal" 2980 msgstr "Qatari riyal" 2981 2982 #: addons/styling/includes/admin-pages.php:116 2983 msgid "Radio" 2984 msgstr "Radio" 2985 2986 #: blocks/list/index.php:175 includes/class-widget-ads.php:143 2987 msgid "Random" 2988 msgstr "Willekeurig" 2989 2990 #: blocks/list/index.php:177 2991 msgid "Random Order" 2992 msgstr "Willekeurige volgorde" 2993 2994 #: includes/class-moderate-admin.php:194 2995 msgid "" 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." 2999 msgstr "" 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 3005 msgid "Read when this message is sent ..." 3006 msgstr "Lees wanneer dit bericht wordt verzonden..." 3007 3008 #: includes/admin-pages.php:173 3009 msgid "reCAPTCHA" 3010 msgstr "reCAPTCHA" 3011 3012 #: addons/emails/admin/emails-list.php:51 3013 msgid "Recipient" 3014 msgstr "Ontvanger" 3015 3016 #: includes/gallery.php:619 3017 msgid "Recommended size:" 3018 msgstr "Aanbevolen grootte:" 3019 3020 #: addons/core/includes/admin-pages.php:407 3021 msgid "Redirect URL" 3022 msgstr "Omleiding URL" 3023 3024 #: includes/functions.php:2064 3025 msgid "Redirecting" 3026 msgstr "Omleiden" 3027 3028 #: addons/payments/payments.php:106 3029 msgid "Refunded <span class=\"count\">(%s)</span>" 3030 msgid_plural "Refunded <span class=\"count\">(%s)</span>" 3031 msgstr[0] "Terugbetaald <span class=\"count\">(%s)</span>" 3032 msgstr[1] "Terugbetaald <span class=\"count\">(%s)</span>" 3033 3034 #: addons/payments/payments.php:101 3035 msgctxt "refunded status payment" 3036 msgid "Refunded" 3037 msgstr "Terugbetaald" 3038 3039 #: blocks/manage/class-manage-engine.php:64 3040 #: blocks/single-contact/templates/contact-disabled.php:32 3041 msgid "Register" 3042 msgstr "Registreren" 3043 3044 #: includes/class-widget-ads.php:176 3045 msgid "Regular Only" 3046 msgstr "Alleen regulier" 3047 3048 #: includes/class-types-admin.php:465 includes/class-types-admin.php:542 3049 msgid "" 3050 "Remember to reset permalinks by clicking \"Save Changes\" button in the <a " 3051 "href=\"%s\">Permalinks</a> panel." 3052 msgstr "" 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 3058 msgid "Renderer Template" 3059 msgstr "Renderer template" 3060 3061 #: includes/class-types-admin.php:793 3062 msgid "Renderer Type" 3063 msgstr "Renderer type" 3064 3065 #: addons/core/admin/types-edit-post.php:70 3066 msgid "Rendering" 3067 msgstr "Weergave" 3068 3069 #: addons/payments/payments.php:977 addons/payments/payments.php:993 3070 msgid "Renew" 3071 msgstr "Verlengen" 3072 3073 #: addons/payments/payments.php:1018 addons/payments/payments.php:1081 3074 msgid "Renew <strong>%s</strong> or <a href=\"%s\">cancel and go back</a>." 3075 msgstr "" 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 3079 msgid "Renew Ad" 3080 msgstr "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 3085 msgid "Renewal" 3086 msgstr "Verlenging" 3087 3088 #: includes/class-gallery-helper.php:302 3089 msgid "Replay" 3090 msgstr "Opnieuw afspelen" 3091 3092 #: addons/styling/admin/options.php:143 addons/styling/admin/options.php:275 3093 #: addons/styling/admin/options.php:407 3094 msgid "Reset to defaults" 3095 msgstr "Resetten naar standaardwaarden" 3096 3097 #: includes/gallery.php:594 3098 msgid "Restore" 3099 msgstr "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 3103 msgid "Restore Defaults" 3104 msgstr "Standaardwaarden herstellen" 3105 3106 #: includes/gallery.php:594 3107 msgid "Restore original image" 3108 msgstr "Originele afbeelding herstellen" 3109 3110 #: blocks/list/templates/list.php:139 3111 #: blocks/manage/templates/manage-list.php:141 3112 msgid "results found." 3113 msgstr "gevonden resultaten." 3114 3115 #: includes/functions-blocks.php:937 3116 msgid "Reveal Contact Info" 3117 msgstr "Toon contactinformatie" 3118 3119 #: includes/gallery.php:573 3120 msgid "Rotate -90 degrees" 3121 msgstr "Draai -90 graden" 3122 3123 #: includes/gallery.php:572 3124 msgid "Rotate 90 degrees" 3125 msgstr "Draai 90 graden" 3126 3127 #: addons/styling/admin/options.php:394 3128 msgid "Row Spacing" 3129 msgstr "Rijafstand" 3130 3131 #: includes/functions.php:2269 3132 msgid "Russian Rubles" 3133 msgstr "Russische roebels" 3134 3135 #: includes/functions.php:2270 3136 msgid "Saudi Riyal" 3137 msgstr "Saudi riyal" 3138 3139 #: includes/gallery.php:591 3140 msgid "Save" 3141 msgstr "Opslaan" 3142 3143 #: addons/styling/admin/options.php:405 3144 msgid "Save Form Styling Settings" 3145 msgstr "Sla instellingen voor formulierstijl op" 3146 3147 #: includes/gallery.php:591 3148 msgid "Save Image" 3149 msgstr "Afbeelding opslaan" 3150 3151 #: addons/styling/admin/options.php:142 3152 msgid "Save Primary Button Settings" 3153 msgstr "Sla de instellingen van de primaire knop op" 3154 3155 #: addons/styling/admin/options.php:273 3156 msgid "Save Secondary Button Settings" 3157 msgstr "Sla de instellingen van de secundaire knop op" 3158 3159 #: includes/gallery.php:513 3160 msgid "Save Thumbnail" 3161 msgstr "Thumbnail opslaan" 3162 3163 #: includes/gallery.php:585 3164 msgid "Scale" 3165 msgstr "Schaal" 3166 3167 #: includes/gallery.php:487 3168 msgid "" 3169 "Scroll the video to a selected place and click 'Capture' button to create " 3170 "video cover." 3171 msgstr "" 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 3176 msgid "Scrolling Thumbnails" 3177 msgstr "Scrolling thumbnails" 3178 3179 #: templates/list.php:87 3180 msgid "SEARCH" 3181 msgstr "ZOEKEN" 3182 3183 #: addons/core/includes/admin-pages.php:430 3184 msgid "Search Bar" 3185 msgstr "Zoekbalk" 3186 3187 #: wpadverts.php:246 3188 msgid "Search Classifieds" 3189 msgstr "Zoek advertenties" 3190 3191 #: addons/styling/admin/options.php:17 addons/styling/admin/options.php:294 3192 msgid "Secondary Button" 3193 msgstr "Secundaire knop" 3194 3195 #: addons/styling/admin/options.php:298 3196 msgid "Secondary Button Hover" 3197 msgstr "Secundaire knop hover" 3198 3199 #: addons/payments/admin/payment-history-edit.php:117 3200 msgid "Secure Complete Payment URL" 3201 msgstr "Veilige betalings URL" 3202 3203 #: addons/core/admin/types-icon-picker.php:20 3204 msgid "Select" 3205 msgstr "Selecteer" 3206 3207 #: addons/core/admin/types-icon-picker.php:10 3208 msgid "Select Icon" 3209 msgstr "Selecteer pictogram" 3210 3211 #: addons/styling/includes/admin-pages.php:93 3212 msgid "Select Option" 3213 msgstr "Selecteer optie" 3214 3215 #: wpadverts.php:387 3216 msgid "Select options ..." 3217 msgstr "Selecteer opties ..." 3218 3219 #: addons/payments/includes/admin-pages.php:791 3220 msgid "" 3221 "Select page where user can complete payments. This should be a page with " 3222 "[adverts_payments_checkout] shortcode." 3223 msgstr "" 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 3228 msgid "Select Payment Method" 3229 msgstr "Selecteer betaalmethode" 3230 3231 #: addons/payments/payments.php:1082 3232 msgid "Select renewal option and click \"Renew\" button." 3233 msgstr "Selecteer de verlengingsoptie en klik op de knop \"Verlengen\"." 3234 3235 #: addons/core/includes/admin-pages.php:274 3236 msgid "Select the main page with list of Ads." 3237 msgstr "Selecteer de hoofdpagina met een lijst met advertenties." 3238 3239 #: wpadverts.php:397 3240 msgid "Selected" 3241 msgstr "Geselecteerd" 3242 3243 #: includes/gallery.php:622 3244 msgid "Selection:" 3245 msgstr "Selectie:" 3246 3247 #: addons/styling/admin/options.php:83 addons/styling/admin/options.php:215 3248 msgid "Semi Bold" 3249 msgstr "Half vet" 3250 3251 #: addons/emails/includes/class-emails-admin.php:420 3252 msgid "Send Admin Notifications To" 3253 msgstr "Stuur beheerdersmeldingen naar" 3254 3255 #: addons/emails/includes/class-emails-admin.php:429 3256 msgid "Send emails as HTML" 3257 msgstr "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 3263 msgid "Send Message" 3264 msgstr "Bericht versturen" 3265 3266 #: addons/core/includes/admin-pages.php:335 3267 msgid "Set Ad status to 'pending' when user updates his Ad in the frontend." 3268 msgstr "" 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 3273 msgid "Set custom icons (small and big) for each category." 3274 msgstr "Stel aangepaste pictogrammen in (klein en groot) voor elke categorie." 3275 3276 #: includes/admin-pages.php:167 3277 msgid "" 3278 "Set fee for Ads posting per category or allow to post for free in some " 3279 "categories." 3280 msgstr "" 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 3285 msgid "Settings" 3286 msgstr "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 3295 msgid "Settings updated." 3296 msgstr "Instellingen geüpdatet." 3297 3298 #: addons/styling/admin/options.php:342 3299 msgid "Shadow" 3300 msgstr "Schaduw" 3301 3302 #: includes/class-types-admin.php:798 3303 msgid "Shortcode - use the old version 1.5 templates." 3304 msgstr "Shortcode - gebruik de oude versie 1.5 templates." 3305 3306 #: addons/styling/admin/options.php:389 3307 msgid "Show" 3308 msgstr "Tonen" 3309 3310 #: includes/functions-blocks.php:924 3311 msgid "Show Contact Info" 3312 msgstr "Toon contactinformatie" 3313 3314 #: includes/functions.php:2718 3315 msgid "Show Contact Information" 3316 msgstr "Toon contactgegevens" 3317 3318 #: includes/class-widget-ads.php:88 3319 msgid "Show images on the list." 3320 msgstr "Toon afbeeldingen op de lijst." 3321 3322 #: includes/class-widget-categories.php:134 3323 msgid "Show multiple category levels" 3324 msgstr "Laat verschillende categorie niveaus zien" 3325 3326 #: addons/contact-form/contact-form.php:73 3327 msgid "show phone" 3328 msgstr "toon telefoonnummer" 3329 3330 #: blocks/single-author/templates/list.php:27 3331 msgid "show phone number" 3332 msgstr "toon telefoonnummer" 3333 3334 #: addons/contact-form/includes/admin-pages.php:83 3335 msgid "Show phone number next to contact button." 3336 msgstr "Toon telefoonnummer naast de contactknop." 3337 3338 #: includes/class-widget-categories.php:106 3339 msgid "Show post counts" 3340 msgstr "Berichtaantal tonen" 3341 3342 #: includes/class-gallery-helper.php:448 3343 msgid "Show Thumbnails ..." 3344 msgstr "Thumbnails tonen..." 3345 3346 #: includes/class-widget-categories.php:120 3347 msgid "Show top categories only" 3348 msgstr "Laat alleen bovenste categorie zien" 3349 3350 #: includes/functions.php:2262 3351 msgid "Singapore Dollar" 3352 msgstr "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 3357 msgid "Small" 3358 msgstr "Klein" 3359 3360 #: addons/styling/admin/options.php:336 3361 msgid "Solid" 3362 msgstr "Ononderbroken" 3363 3364 #: blocks/list/templates/list.php:101 3365 #: blocks/manage/templates/manage-list.php:103 3366 #: includes/class-widget-ads.php:122 3367 msgid "Sort By" 3368 msgstr "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 3375 msgid "Sort By: %s - %s" 3376 msgstr "Sorteren op: %s - %s" 3377 3378 #: includes/functions.php:2271 3379 msgid "South African Rand" 3380 msgstr "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 3385 msgid "Spam" 3386 msgstr "Spam" 3387 3388 #: includes/functions.php:2272 3389 msgid "Sri Lankan Rupees" 3390 msgstr "Sri Lankaanse roepies" 3391 3392 #: wpadverts.php:400 3393 msgid "start typing here ..." 3394 msgstr "begin hier met typen ..." 3395 3396 #: includes/admin-post-type.php:749 3397 msgid "" 3398 "Start typing user name, email or login below, some suggestions will appear." 3399 msgstr "" 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 3405 msgid "Status" 3406 msgstr "Status" 3407 3408 #: addons/payments/includes/admin-pages.php:473 3409 msgid "Status for selected Payments was changed to: %s" 3410 msgstr "Status voor geselecteerde betalingen is gewijzigd in: %s" 3411 3412 #: includes/defaults.php:386 3413 msgid "String Length" 3414 msgstr "String lengte" 3415 3416 #: includes/admin-pages.php:226 3417 msgid "Stripe" 3418 msgstr "Streep" 3419 3420 #: addons/styling/admin/options.php:332 3421 msgid "Style" 3422 msgstr "Stijl" 3423 3424 #: addons/contact-form/contact-form.php:573 3425 #: addons/emails/includes/class-emails-admin.php:361 3426 msgid "Subject" 3427 msgstr "Onderwerp" 3428 3429 #: addons/core/includes/admin-pages.php:359 3430 msgid "Suffix - 10$" 3431 msgstr "Achtervoegsel - 10$" 3432 3433 #: includes/class-types-admin.php:612 3434 msgid "Supports" 3435 msgstr "Ondersteunt" 3436 3437 #: includes/functions.php:2263 3438 msgid "Swedish Krona" 3439 msgstr "Zweedse kroon" 3440 3441 #: includes/functions.php:2264 3442 msgid "Swiss Franc" 3443 msgstr "Zwitserse frank" 3444 3445 #: addons/core/includes/admin-pages.php:483 3446 msgid "Switch Views" 3447 msgstr "Van weergave wisselen" 3448 3449 #: includes/functions.php:2265 3450 msgid "Taiwan New Dollars" 3451 msgstr "Taiwanese nieuwe dollars" 3452 3453 #: addons/core/admin/types-list.php:92 includes/class-types-admin.php:638 3454 msgid "Taxonomies" 3455 msgstr "Taxonomieën" 3456 3457 #: includes/class-types-admin.php:307 3458 msgid "Taxonomy configuration restored to default." 3459 msgstr "Taxonomie instellingen hersteld naar standaard." 3460 3461 #: wpadverts.php:276 3462 msgctxt "taxonomy general name" 3463 msgid "Adverts Categories" 3464 msgstr "Advertentie categorieën" 3465 3466 #: wpadverts.php:277 3467 msgctxt "taxonomy singular name" 3468 msgid "Advert Category" 3469 msgstr "Advertentie categorie" 3470 3471 #: includes/class-types-admin.php:541 3472 msgid "Taxonomy updated." 3473 msgstr "Taxonomie geüpdatet." 3474 3475 #: includes/functions-blocks.php:816 3476 msgid "Template with a sidebar" 3477 msgstr "Template met zijbalk" 3478 3479 #: wpadverts.php:234 3480 msgid "Temporary <span class=\"count\">(%s)</span>" 3481 msgid_plural "Temporary <span class=\"count\">(%s)</span>" 3482 msgstr[0] "Tijdelijk <span class=\"count\">(%s)</span>" 3483 msgstr[1] "Tijdelijk <span class=\"count\">(%s)</span>" 3484 3485 #: addons/payments/payments.php:65 3486 msgctxt "temporary status payment" 3487 msgid "Temporary" 3488 msgstr "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 3492 msgid "Text" 3493 msgstr "Tekst" 3494 3495 #: includes/defaults.php:391 3496 msgid "Text cannot be longer than %max% characters." 3497 msgstr "Tekst mag niet langer zijn dan %max% tekens." 3498 3499 #: includes/defaults.php:426 3500 msgid "Text cannot have more than %max_links% links." 3501 msgstr "Tekst mag niet meer dan %max_links% links bevatten." 3502 3503 #: includes/defaults.php:427 3504 msgid "Text contains phrases that are considered SPAM." 3505 msgstr "Tekst bevat zinnen die als SPAM worden beschouwd." 3506 3507 #: includes/defaults.php:390 3508 msgid "Text needs to be at least %min% characters long." 3509 msgstr "Tekst moet minimaal %min% tekens lang zijn." 3510 3511 #: includes/functions.php:2266 3512 msgid "Thai Baht" 3513 msgstr "Thaise baht" 3514 3515 #: blocks/publish/class-publish-engine.php:584 3516 #: includes/class-shortcode-adverts-add.php:497 3517 msgid "Thank you for submitting your ad!" 3518 msgstr "Bedankt voor het plaatsen van je advertentie!" 3519 3520 #: includes/defaults.php:478 3521 msgid "The file size is incorrect." 3522 msgstr "De bestandsgrootte is onjuist." 3523 3524 #: includes/defaults.php:484 3525 msgid "The image max. height should be %max_height%." 3526 msgstr "De afbeelding max. hoogte moet %max_height% zijn." 3527 3528 #: includes/defaults.php:482 3529 msgid "The image max. width should be %max_width%." 3530 msgstr "De afbeelding max. breedte moet %max_width% zijn." 3531 3532 #: includes/defaults.php:483 3533 msgid "The image min. height should be %min_height%." 3534 msgstr "De afbeelding min. hoogte moet %min_height% zijn." 3535 3536 #: includes/defaults.php:481 3537 msgid "The image min. width should be %min_width%." 3538 msgstr "De afbeelding min. breedte moet %min_width% zijn." 3539 3540 #: addons/core/includes/admin-pages.php:567 3541 msgid "The library used for processing uploaded images." 3542 msgstr "" 3543 "De bibliotheek die wordt gebruikt voor het verwerken van geüploade " 3544 "afbeeldingen." 3545 3546 #. Description of the plugin/theme 3547 msgid "The lightweight WordPress classifieds plugin done right." 3548 msgstr "De lichtgewicht plugin voor WordPress advertenties is goed gelukt." 3549 3550 #: includes/defaults.php:455 3551 msgid "The max. allowed file size is %max%." 3552 msgstr "De maximale toegestane bestandsgrootte is %max%." 3553 3554 #: includes/defaults.php:456 3555 msgid "The min. allowed file size is %min%." 3556 msgstr "De minimale toegestane bestandsgrootte is %min%." 3557 3558 #: addons/payments/includes/shortcodes.php:68 3559 msgid "The payment does not exist or the payment hash is incorrect." 3560 msgstr "De betaling bestaat niet of de betalinghash is onjuist." 3561 3562 #: addons/payments/includes/shortcodes.php:104 3563 msgid "" 3564 "The payment has been already approved and your Ad should be published soon." 3565 msgstr "" 3566 "De betaling is al goedgekeurd en je advertentie zal binnenkort moeten worden " 3567 "gepubliceerd." 3568 3569 #: addons/payments/includes/shortcodes.php:76 3570 msgid "The provided hash is not assigned to any of the payment objects." 3571 msgstr "" 3572 "Het verstrekte hash is niet toegewezen aan een van de betalingsobjecten." 3573 3574 #: addons/payments/includes/shortcodes.php:56 3575 msgid "The provided payment hash could not be found." 3576 msgstr "Het opgegeven betalingshekje (#) kan niet worden gevonden." 3577 3578 #: addons/core/includes/admin-pages.php:295 3579 msgid "The text to display instead of price if item price was not provided." 3580 msgstr "" 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 3585 msgid "There are <strong>%d</strong> published ads with comments disabled." 3586 msgstr "" 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 3591 msgid "There are errors in your form" 3592 msgstr "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 3608 msgid "There are errors in your form." 3609 msgstr "Er staan fouten in je formulier." 3610 3611 #: blocks/publish/class-publish-engine.php:506 3612 #: includes/class-shortcode-adverts-add.php:440 3613 msgid "There are errors in your form. Please correct them before proceeding." 3614 msgstr "" 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 3618 msgid "There are no ads matching your search criteria." 3619 msgstr "Er zijn geen advertenties die voldoen aan jouw zoekcriteria." 3620 3621 #: blocks/list/templates/list.php:162 3622 msgid "There aren't any results matching your search query." 3623 msgstr "Er zijn geen resultaten die overeenkomen met je zoekopdracht." 3624 3625 #: blocks/manage/index.php:55 3626 msgid "There was an error while deleting." 3627 msgstr "Er is een fout opgetreden bij het verwijderen." 3628 3629 #: includes/class-types-admin.php:280 3630 msgid "There was an error while executing a MySQL query." 3631 msgstr "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 3636 msgid "There was an error while saving pricing in database." 3637 msgstr "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 3641 msgid "Thick" 3642 msgstr "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 3647 msgid "Thin" 3648 msgstr "Dun" 3649 3650 #: addons/core/includes/admin-pages.php:303 3651 msgid "This date format will be used on the ads list and details pages." 3652 msgstr "Datum format wordt gebruikt op de advertentielijst en detailpagina's." 3653 3654 #: includes/defaults.php:467 3655 msgid "This file type is not allowed." 3656 msgstr "Dit bestandstype is niet toegestaan." 3657 3658 #: addons/core/includes/admin-pages.php:605 3659 msgid "This image size is being used in gallery thumbnails." 3660 msgstr "Deze afbeeldingsgrootte wordt gebruikt in galerij thumbnails." 3661 3662 #: addons/core/includes/admin-pages.php:598 3663 msgid "This image size is being used in the [adverts_list] shortcode." 3664 msgstr "Dit afbeeldingsformaat wordt gebruikt in de shortcode [adverts_list]." 3665 3666 #: addons/core/includes/admin-pages.php:591 3667 msgid "" 3668 "This image size is being used in the image slider on Advert details pages." 3669 msgstr "" 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 3674 msgid "This month" 3675 msgstr "Deze maand" 3676 3677 #: addons/payments/includes/shortcodes.php:84 3678 msgid "This payment has already been paid." 3679 msgstr "Deze betaling is al betaald." 3680 3681 #: includes/functions.php:3292 3682 msgid "This post cannot be edited by annonymous users." 3683 msgstr "Dit bericht kan niet worden bewerkt door anonieme gebruikers." 3684 3685 #: includes/functions.php:3300 3686 msgid "This post does not belong to you." 3687 msgstr "Dit bericht is niet van jou." 3688 3689 #: includes/functions.php:3273 3690 msgid "This post does not exist." 3691 msgstr "Dit bericht bestaat niet." 3692 3693 #: includes/ajax.php:1223 includes/functions.php:3318 3694 msgid "This post is not an Advert." 3695 msgstr "Dit bericht is geen advertentie." 3696 3697 #: includes/class-types-admin.php:716 3698 msgid "This taxonomy is hierarchical." 3699 msgstr "Deze taxonomie is hiërarchisch." 3700 3701 #: includes/gallery.php:405 3702 msgid "This video does not have thumbnails yet. " 3703 msgstr "Deze video heeft nog geen thumbnails. " 3704 3705 #: addons/core/includes/admin-pages.php:382 3706 msgid "Thousands Separator" 3707 msgstr "Scheidingsteken duizendtallen" 3708 3709 #: includes/gallery.php:833 3710 msgid "Thumbnail" 3711 msgstr "Thumbnail" 3712 3713 #: includes/class-types-admin.php:619 3714 msgid "Thumbnail (Featured Image)" 3715 msgstr "Thumbnail (uitgelichte afbeelding)" 3716 3717 #: addons/core/includes/admin-pages.php:511 3718 msgid "Thumbnails Slider" 3719 msgstr "Thumbnails slider" 3720 3721 #: includes/class-moderate-admin.php:165 3722 msgid "Time Trap" 3723 msgstr "Timetrap" 3724 3725 #: includes/class-moderate-admin.php:181 3726 msgid "Timetrap Delta (in seconds)" 3727 msgstr "Timetrap delta (in seconden)" 3728 3729 #: includes/class-moderate-admin.php:193 3730 msgid "Timetrap Key" 3731 msgstr "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 3742 msgid "Title" 3743 msgstr "Titel" 3744 3745 #: addons/emails/includes/class-emails-admin.php:374 3746 msgid "To" 3747 msgstr "Naar" 3748 3749 #: addons/payments/admin/payment-history-edit.php:75 3750 msgid "To Pay" 3751 msgstr "Te betalen" 3752 3753 #: addons/payments/templates/add-payment.php:15 3754 #: addons/payments/templates/publish-payment.php:25 3755 msgid "Total" 3756 msgstr "Totaal" 3757 3758 #: includes/class-gallery-helper.php:453 3759 msgid "Total Files" 3760 msgstr "Totaal aantal bestanden" 3761 3762 #: includes/class-types-admin.php:621 3763 msgid "Trackbacks" 3764 msgstr "Trackbacks" 3765 3766 #: addons/styling/admin/options.php:326 3767 msgid "True Gray" 3768 msgstr "Echt grijs" 3769 3770 #: includes/functions.php:2267 3771 msgid "Turkish Lira" 3772 msgstr "Turkse lira" 3773 3774 #: addons/payments/admin/payment-history-list.php:83 3775 #: addons/payments/admin/pricing-list.php:49 3776 msgid "Type" 3777 msgstr "Type" 3778 3779 #: wpadverts.php:399 3780 msgid "Type in the box above to see suggestions ..." 3781 msgstr "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 3786 msgid "Types" 3787 msgstr "Types" 3788 3789 #: includes/functions.php:2273 3790 msgid "UAE Dirham" 3791 msgstr "VAE dirham" 3792 3793 #: includes/functions.php:2274 3794 msgid "Ukrainian hryvnia" 3795 msgstr "Oekraïense hryvnia" 3796 3797 #: includes/gallery.php:576 3798 msgid "Undo" 3799 msgstr "Ongedaan maken" 3800 3801 #: addons/emails/admin/emails-list.php:78 3802 msgid "Unknown" 3803 msgstr "Onbekend" 3804 3805 #: addons/payments/payments.php:70 addons/payments/payments.php:79 3806 msgid "Unread <span class=\"count\">(%s)</span>" 3807 msgid_plural "Unread <span class=\"count\">(%s)</span>" 3808 msgstr[0] "Ongelezen <span class=\"count\">(%s)</span>" 3809 msgstr[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 3816 msgid "Update" 3817 msgstr "Update" 3818 3819 #: includes/gallery.php:473 3820 msgid "Update Description" 3821 msgstr "Beschrijving updaten" 3822 3823 #: addons/emails/includes/class-emails-admin.php:165 3824 msgid "Update Message Template" 3825 msgstr "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 51 3834 msgid "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 3835 msgstr "Update opties" 3836 3837 #: addons/payments/admin/payment-history-edit.php:93 3838 msgid "Update Payment" 3839 msgstr "Update betaling" 3840 3841 #: addons/payments/includes/admin-pages.php:177 3842 msgid "Update Pricing" 3843 msgstr "Prijs updaten" 3844 3845 #: includes/gallery.php:107 3846 msgid "Upload a file" 3847 msgstr "Een bestand uploaden" 3848 3849 #: includes/defaults.php:476 3850 msgid "Upload Dimensions" 3851 msgstr "Afmetingen uploaden" 3852 3853 #: includes/defaults.php:436 3854 msgid "Upload Limit" 3855 msgstr "Uploadlimiet" 3856 3857 #: addons/core/includes/admin-pages.php:604 3858 msgid "Upload Thumbnail" 3859 msgstr "Upload thumbnail" 3860 3861 #: includes/defaults.php:451 includes/defaults.php:465 3862 msgid "Upload Type" 3863 msgstr "Uploadtype" 3864 3865 #: includes/functions.php:268 3866 msgid "Uploaded file is NOT an image" 3867 msgstr "Het geüploade bestand is GEEN afbeelding" 3868 3869 #: includes/gallery.php:537 3870 msgid "Uploaded on:" 3871 msgstr "Geüpload op:" 3872 3873 #: includes/defaults.php:356 3874 msgid "URL" 3875 msgstr "URL" 3876 3877 #: includes/defaults.php:294 3878 msgid "URL - converts string to a valid URL (if possible)." 3879 msgstr "URL - converteert een string naar geldige URL (indien mogelijk)." 3880 3881 #: includes/functions.php:2240 3882 msgid "US Dollars" 3883 msgstr "US dollars" 3884 3885 #: includes/class-types-admin.php:797 3886 msgid "Use default method." 3887 msgstr "Gebruik de standaardmethode." 3888 3889 #: includes/class-types-admin.php:735 3890 msgid "Use hierarchical URLs." 3891 msgstr "Gebruik hiërarchische URL's." 3892 3893 #: includes/gallery.php:455 3894 msgid "Use this image as main image" 3895 msgstr "Gebruik deze afbeelding als hoofdafbeelding" 3896 3897 #: includes/admin-pages.php:96 3898 msgid "Use WooCommerce to charge users for posting ads on your website." 3899 msgstr "" 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 3906 msgid "User" 3907 msgstr "Gebruiker" 3908 3909 #: addons/payments/includes/admin-pages.php:313 3910 msgid "User ID" 3911 msgstr "Gebruikers ID" 3912 3913 #: addons/payments/admin/payment-history-edit.php:54 3914 msgid "User IP" 3915 msgstr "Gebruiker IP" 3916 3917 #: addons/contact-form/includes/admin-pages.php:96 3918 msgid "User needs to click a link to reveal a phone number." 3919 msgstr "" 3920 "De gebruiker moet op een link klikken om een telefoonnummer weer te geven." 3921 3922 #: addons/emails/includes/class-emails-messages.php:230 3923 msgid "User updated his Ad (action required)." 3924 msgstr "Gebruiker heeft zijn advertentie bijgewerkt (actie vereist)." 3925 3926 #: addons/bank-transfer/includes/admin-pages.php:77 88 3927 msgid "" 89 3928 "User will see this message when asked to make payment, make sure that " … … 93 3932 "remove whole text from editor and save the form." 94 3933 msgstr "" 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 3942 msgid "Using Authors module users can create and manage their profiles." 3943 msgstr "Met de Authors module kunnen gebruikers een profiel maken en beheren." 3944 3945 #: includes/defaults.php:411 3946 msgid "Verify Choices" 3947 msgstr "Verifieer keuzes" 3948 3949 #: includes/gallery.php:339 includes/gallery.php:487 3950 msgid "Video" 3951 msgstr "Video" 3952 3953 #: blocks/manage/class-manage-engine.php:336 includes/gallery.php:347 3954 #: templates/manage.php:56 3955 msgid "View" 3956 msgstr "Bekijken" 3957 3958 #: templates/manage-edit.php:5 3959 msgid "View Ad" 3960 msgstr "Advertentie bekijken" 3961 3962 #: blocks/manage/templates/manage-list.php:175 3963 #: blocks/publish/templates/publish-save.php:38 3964 msgid "View ads list" 3965 msgstr "Advertentielijst bekijken" 3966 3967 #: wpadverts.php:245 3968 msgid "View Classified" 3969 msgstr "Bekijk advertenties" 260 3970 261 3971 #: addons/featured/admin/options.php:22 262 3972 msgid "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 3973 msgstr "Bekijk documentatie" 3974 3975 #: wpadverts.php:407 3976 msgid "View Full Image" 3977 msgstr "Bekijk de volledige afbeelding" 3978 3979 #: addons/payments/admin/payment-history-list.php:97 3980 #: addons/payments/admin/payment-history-list.php:99 438 3981 msgid "View Order" 3982 msgstr "Bekijk bestelling" 3983 3984 #: addons/payments/includes/admin-pages.php:636 3985 msgid "View order" 439 3986 msgstr "Bestelling bekijken" 440 3987 441 #: addons/payments/admin/payment-history-list.php:137 442 #: addons/payments/admin/pricing-list.php:104 443 msgid "«" 444 msgstr "«" 445 446 #: addons/payments/admin/payment-history-list.php:138 447 #: addons/payments/admin/pricing-list.php:105 448 msgid "»" 449 msgstr "»" 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 473 3990 msgid "Visible" 474 3991 msgstr "Zichtbaar" 475 3992 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 673 3994 msgid "Visible 1 day" 674 3995 msgid_plural "Visible %d days" 675 msgstr[0] " Zichtbaar 1 dag"3996 msgstr[0] "1 dag zichtbaar" 676 3997 msgstr[1] "Zichtbaar %d dagen" 677 3998 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 4000 msgid "Visible Thumbnails" 4001 msgstr "Zichtbare thumbnails" 4002 4003 #: includes/admin-pages.php:130 4004 msgid "" 4005 "Visually adjust forms and buttons styling for seamless integration with your " 4006 "theme." 4007 msgstr "" 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 4012 msgid "Volume Down" 4013 msgstr "Volume omlaag" 4014 4015 #: includes/class-gallery-helper.php:314 4016 msgid "Volume Up" 4017 msgstr "Volume omhoog" 4018 4019 #: addons/styling/admin/options.php:327 4020 msgid "Warm Gray" 4021 msgstr "Warm grijs" 4022 4023 #: includes/class-moderate-admin.php:111 4024 msgid "" 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." 4027 msgstr "" 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 4032 msgid "Whoops, the provided date is invalid." 4033 msgstr "Oeps, de opgegeven datum is ongeldig." 791 4034 792 4035 #: includes/admin-pages.php:95 793 4036 msgid "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." 4037 msgstr "WooCommerce Betalingen" 4038 4039 #. Plugin Name of the plugin/theme 4040 msgid "WP Adverts" 4041 msgstr "WP Adverts" 4042 4043 #: includes/functions-blocks.php:840 4044 msgid "WP Templates" 4045 msgstr "WP templates" 1075 4046 1076 4047 #: includes/class-widget-ads.php:35 includes/class-widget-ads.php:50 … … 1078 4049 msgstr "WPAdverts Advertenties" 1079 4050 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 4052 msgid "Y/m/d" 4053 msgstr "Y/m/d" 4054 4055 #: includes/admin-post-type.php:611 4056 msgid "Y/m/d g:i:s A" 4057 msgstr "j F Y H:i" 4058 4059 #: templates/manage.php:69 4060 msgid "Yes" 4061 msgstr "Ja" 4062 4063 #: includes/class-timetrap.php:43 includes/class-timetrap.php:123 4064 msgid "You are filling the forms too fast!" 4065 msgstr "Je vult de formulieren te snel in!" 4066 4067 #: includes/functions.php:1771 1278 4068 msgid "" 1279 4069 "You are posting as <strong>%1$s</strong>. <br/>If you want to use a " 1280 4070 "different account, please <a href=\"%2$s\">logout</a>." 1281 4071 msgstr "" 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 4076 msgid "" 4077 "You are seeing a post preview. This page is not publicly available. <a " 4078 "href=\"%s\">Go back</a>" 4079 msgstr "" 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 4084 msgid "You are trying to restore unsupported post type." 4085 msgstr "Je probeert een niet-ondersteund berichttype te herstellen." 4086 4087 #: includes/class-types-admin.php:640 4088 msgid "" 4089 "You can assign taxonomies to this post type while <a href=\"%s\">creating or " 4090 "editing</a> them." 4091 msgstr "" 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 4096 msgid "You cannot access this page." 4097 msgstr "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 4101 msgid "You cannot edit images." 4102 msgstr "Je kan geen afbeeldingen bewerken." 4103 4104 #: includes/defaults.php:402 4105 msgid "You cannot select more than %max_choices% items." 4106 msgstr "Je kan niet meer dan %max_choices% items selecteren." 4107 4108 #: includes/defaults.php:440 4109 msgid "You cannot upload more than %max% files." 4110 msgstr "Je mag niet meer dan %max% bestanden uploaden." 4111 4112 #: templates/manage.php:94 4113 msgid "You do not have any Ads posted yet." 4114 msgstr "Je hebt nog geen advertenties geplaatst." 4115 4116 #: blocks/manage/templates/manage-list.php:166 4117 msgid "You do not have any items posted yet." 4118 msgstr "Je hebt nog geen artikelen geplaatst." 4119 4120 #: blocks/manage/class-manage-engine.php:238 includes/shortcodes.php:424 4121 #: includes/shortcodes.php:528 4122 msgid "You do not own this Ad." 4123 msgstr "Je bent niet de eigenaar van deze advertentie." 4124 4125 #: includes/defaults.php:441 4126 msgid "You need to upload at least %min% files." 4127 msgstr "Je moet minimaal %min% bestanden uploaden." 4128 4129 #: addons/emails/includes/class-emails-messages.php:160 4130 msgid "Your Ad has been approved by administrator." 4131 msgstr "Je advertentie is goedgekeurd door de beheerder." 4132 4133 #: addons/payments/includes/class-emails-integration.php:149 4134 msgid "Your Ad has been paid and published." 4135 msgstr "Je advertentie is betaald en gepubliceerd." 4136 4137 #: addons/emails/includes/class-emails-messages.php:132 4138 msgid "Your Ad has been published." 4139 msgstr "Je advertentie is gepubliceerd." 4140 4141 #: blocks/publish/templates/publish-save.php:15 templates/add-save.php:7 4142 msgid "" 4143 "Your ad has been published. You can view it here \"<a href=\"%1$s\">%2$s</a>" 4144 "\"." 4145 msgstr "" 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 4150 msgid "" 4151 "Your ad has been put into moderation, please wait for admin to approve it." 4152 msgstr "Je advertentie is gemodereerd, wacht tot de beheerder deze goedkeurt." 4153 4154 #: addons/emails/includes/class-emails-messages.php:174 4155 msgid "Your Ad has been rejected by administrator." 4156 msgstr "Je advertentie is afgewezen door de beheerder." 4157 4158 #: addons/emails/includes/class-emails-messages.php:146 4159 msgid "Your Ad has been saved (pending moderation)." 4160 msgstr "Je advertentie is opgeslagen (in afwachting van moderatie)." 4161 4162 #: addons/payments/includes/class-emails-integration.php:104 4163 msgid "Your Ad has been saved (waiting for payment)." 4164 msgstr "Je advertentie is opgeslagen (wacht op betaling)." 4165 4166 #: addons/emails/includes/class-emails-messages.php:188 4167 msgid "Your Ad has expired." 4168 msgstr "Je advertentie is verlopen." 4169 4170 #: includes/functions.php:2065 1298 4171 msgid "" 1299 4172 "Your are being redirected to Edit page. <a href=\"%s\">Click here</a> if it " 1300 4173 "is taking to long. " 1301 4174 msgstr "" 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 " 1303 4176 "het te lang duurt. " 1304 4177 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 »</em>" 1512 msgstr "<em>Alles bekijken »</ 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 4179 msgid "Your browser cannot play this video." 4180 msgstr "Uw browser kan deze video niet afspelen." 4181 4182 #: includes/class-gallery-helper.php:360 4183 msgid "" 4184 "Your browser cannot play this video. Please use a different browser or " 4185 "download the video and play on your device." 4186 msgstr "" 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 4191 msgid "Your Email" 4192 msgstr "Jouw e-mail" 4193 4194 #: addons/payments/includes/class-emails-integration.php:179 4195 msgid "Your expired Ad has been renewed and is panding approval." 4196 msgstr "Jouw verlopen advertentie is vernieuwd en wacht op goedkeuring." 4197 4198 #: addons/payments/includes/class-emails-integration.php:164 4199 msgid "Your expired Ad has been renewed and published." 4200 msgstr "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 4205 msgid "Your message has been sent." 4206 msgstr "Je bericht is verzonden." 4207 4208 #: addons/contact-form/contact-form.php:552 4209 msgid "Your Name" 4210 msgstr "Jouw naam" 4211 4212 #: includes/gallery.php:621 4213 msgid "Zoom:" 4214 msgstr "Zoom:" 4215 4216 #: addons/contact-form/includes/class-emails-integration.php:70 4217 msgid "" 4218 "{$form.message_body}\n" 4219 "\n" 4220 "URL: {$advert.ID|get_permalink}\n" 4221 "Price: {$advert.ID|adverts_get_the_price}" 4222 msgstr "" 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 4229 msgid "~ no title ~" 4230 msgstr "~ geen titel ~" -
wpadverts/trunk/languages/wpadverts.pot
r3316823 r3340879 5 5 "Project-Id-Version: WP Adverts 2.2.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpadverts\n" 7 "POT-Creation-Date: 2025-0 6-24 09:03:08+00:00\n"7 "POT-Creation-Date: 2025-08-07 10:33:52+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" … … 29 29 msgstr "" 30 30 31 #: addons/bank-transfer/bank-transfer.php:42 includes/admin-pages.php:2 1331 #: addons/bank-transfer/bank-transfer.php:42 includes/admin-pages.php:221 32 32 msgid "Bank Transfer" 33 33 msgstr "" … … 72 72 #: addons/contact-form/contact-form.php:516 73 73 #: addons/contact-form/includes/admin-pages.php:62 74 #: addons/contact-form/includes/class-block-details.php:3 0974 #: addons/contact-form/includes/class-block-details.php:311 75 75 #: addons/core/includes/admin-pages.php:91 76 76 #: addons/core/includes/admin-pages.php:171 … … 110 110 #: addons/contact-form/includes/class-block-details.php:49 111 111 #: addons/contact-form/includes/class-emails-integration.php:44 112 #: includes/admin-pages.php:1 46112 #: includes/admin-pages.php:154 113 113 msgid "Contact Form" 114 114 msgstr "" … … 117 117 #: addons/contact-form/contact-form.php:118 118 118 #: addons/contact-form/includes/class-block-details.php:40 119 #: addons/contact-form/includes/class-block-details.php:23 4119 #: addons/contact-form/includes/class-block-details.php:236 120 120 msgid "Send Message" 121 121 msgstr "" … … 134 134 #: addons/contact-form/contact-form.php:149 135 135 #: addons/contact-form/contact-form.php:507 136 #: addons/contact-form/includes/class-block-details.php:30 2136 #: addons/contact-form/includes/class-block-details.php:304 137 137 msgid "Your message has been sent." 138 138 msgstr "" … … 856 856 msgstr "" 857 857 858 #: addons/featured/admin/options.php:15 includes/admin-pages.php:14 0858 #: addons/featured/admin/options.php:15 includes/admin-pages.php:148 859 859 msgid "Featured Ads" 860 860 msgstr "" … … 1217 1217 1218 1218 #: addons/payments/includes/admin-pages.php:685 1219 #: blocks/manage/class-manage-engine.php:32 01219 #: blocks/manage/class-manage-engine.php:322 1220 1220 #: includes/class-moderate-admin.php:7 includes/class-types-admin.php:114 1221 1221 #: includes/class-types-admin.php:149 includes/class-updates-manager.php:332 … … 1266 1266 1267 1267 #: addons/payments/includes/class-emails-integration.php:78 1268 #: includes/admin-pages.php: 891268 #: includes/admin-pages.php:110 1269 1269 msgid "Payments" 1270 1270 msgstr "" … … 1902 1902 #: blocks/list/index.php:154 blocks/list/index.php:183 1903 1903 #: blocks/list/index.php:184 blocks/manage/class-manage-engine.php:26 1904 #: blocks/manage/class-manage-engine.php:1 091905 #: blocks/manage/class-manage-engine.php:11 0blocks/search/index.php:1261904 #: blocks/manage/class-manage-engine.php:111 1905 #: blocks/manage/class-manage-engine.php:112 blocks/search/index.php:126 1906 1906 #: blocks/search/index.php:149 blocks/search/index.php:150 1907 1907 #: includes/class-widget-ads.php:128 includes/shortcodes.php:96 … … 1912 1912 #: blocks/list/index.php:156 blocks/list/index.php:184 1913 1913 #: blocks/manage/class-manage-engine.php:28 1914 #: blocks/manage/class-manage-engine.php:11 0blocks/search/index.php:1281914 #: blocks/manage/class-manage-engine.php:112 blocks/search/index.php:128 1915 1915 #: blocks/search/index.php:150 includes/shortcodes.php:98 1916 1916 #: includes/shortcodes.php:120 … … 1952 1952 1953 1953 #: blocks/list/index.php:184 blocks/list/index.php:216 1954 #: blocks/manage/class-manage-engine.php:11 01955 #: blocks/manage/class-manage-engine.php:14 0blocks/search/index.php:1501954 #: blocks/manage/class-manage-engine.php:112 1955 #: blocks/manage/class-manage-engine.php:142 blocks/search/index.php:150 1956 1956 #: blocks/search/index.php:180 includes/shortcodes.php:120 1957 1957 #: includes/shortcodes.php:150 … … 1993 1993 msgstr "" 1994 1994 1995 #: blocks/manage/class-manage-engine.php:16 61995 #: blocks/manage/class-manage-engine.php:168 1996 1996 msgid "Manage" 1997 1997 msgstr "" 1998 1998 1999 #: blocks/manage/class-manage-engine.php:23 0includes/shortcodes.php:4141999 #: blocks/manage/class-manage-engine.php:232 includes/shortcodes.php:414 2000 2000 #: includes/shortcodes.php:518 2001 2001 msgid "Ad does not exist." 2002 2002 msgstr "" 2003 2003 2004 #: blocks/manage/class-manage-engine.php:2 38includes/shortcodes.php:4242004 #: blocks/manage/class-manage-engine.php:240 includes/shortcodes.php:424 2005 2005 #: includes/shortcodes.php:528 2006 2006 msgid "You do not own this Ad." 2007 2007 msgstr "" 2008 2008 2009 #: blocks/manage/class-manage-engine.php:2 48includes/shortcodes.php:4362009 #: blocks/manage/class-manage-engine.php:250 includes/shortcodes.php:436 2010 2010 #: includes/shortcodes.php:540 2011 2011 msgid "Incorrect post status [%s]." 2012 2012 msgstr "" 2013 2013 2014 #: blocks/manage/class-manage-engine.php:28 7includes/shortcodes.php:4772014 #: blocks/manage/class-manage-engine.php:289 includes/shortcodes.php:477 2015 2015 msgid "Post has been updated." 2016 2016 msgstr "" 2017 2017 2018 #: blocks/manage/class-manage-engine.php: 298includes/shortcodes.php:4882018 #: blocks/manage/class-manage-engine.php:300 includes/shortcodes.php:488 2019 2019 msgid "Cannot update. There are errors in your form." 2020 2020 msgstr "" 2021 2021 2022 #: blocks/manage/class-manage-engine.php:33 6includes/gallery.php:3472022 #: blocks/manage/class-manage-engine.php:338 includes/gallery.php:347 2023 2023 #: templates/manage.php:56 2024 2024 msgid "View" 2025 2025 msgstr "" 2026 2026 2027 #: blocks/manage/class-manage-engine.php:3 482027 #: blocks/manage/class-manage-engine.php:350 2028 2028 msgid "Delete ..." 2029 2029 msgstr "" 2030 2030 2031 #: blocks/manage/class-manage-engine.php:38 2templates/manage-edit.php:692031 #: blocks/manage/class-manage-engine.php:384 templates/manage-edit.php:69 2032 2032 msgid "" 2033 2033 "<strong>Important Note.</strong> After submitting changes your Ad will be " … … 2090 2090 2091 2091 #: blocks/publish/class-publish-engine.php:339 2092 #: blocks/publish/class-publish-engine.php:51 42092 #: blocks/publish/class-publish-engine.php:515 2093 2093 #: blocks/publish/templates/publish-preview.php:41 2094 2094 #: blocks/publish/templates/publish-preview.php:87 … … 2099 2099 2100 2100 #: blocks/publish/class-publish-engine.php:342 2101 #: blocks/publish/class-publish-engine.php:51 62101 #: blocks/publish/class-publish-engine.php:517 2102 2102 msgid "Preview Listing" 2103 2103 msgstr "" 2104 2104 2105 #: blocks/publish/class-publish-engine.php:39 22105 #: blocks/publish/class-publish-engine.php:393 2106 2106 #: includes/class-shortcode-adverts-add.php:346 includes/functions.php:3177 2107 2107 msgid "" … … 2110 2110 msgstr "" 2111 2111 2112 #: blocks/publish/class-publish-engine.php:39 42112 #: blocks/publish/class-publish-engine.php:395 2113 2113 #: includes/class-shortcode-adverts-add.php:348 includes/functions.php:3179 2114 2114 msgid "Checksum does not exist. Please refresh the page and try again." 2115 2115 msgstr "" 2116 2116 2117 #: blocks/publish/class-publish-engine.php:41 32118 #: blocks/publish/class-publish-engine.php:56 32117 #: blocks/publish/class-publish-engine.php:414 2118 #: blocks/publish/class-publish-engine.php:564 2119 2119 #: includes/class-shortcode-adverts-add.php:367 2120 2120 #: includes/class-shortcode-adverts-add.php:477 … … 2124 2124 msgstr "" 2125 2125 2126 #: blocks/publish/class-publish-engine.php:50 62126 #: blocks/publish/class-publish-engine.php:507 2127 2127 #: includes/class-shortcode-adverts-add.php:440 2128 2128 msgid "There are errors in your form. Please correct them before proceeding." 2129 2129 msgstr "" 2130 2130 2131 #: blocks/publish/class-publish-engine.php:58 42131 #: blocks/publish/class-publish-engine.php:585 2132 2132 #: includes/class-shortcode-adverts-add.php:497 2133 2133 msgid "Thank you for submitting your ad!" 2134 2134 msgstr "" 2135 2135 2136 #: blocks/publish/class-publish-engine.php:68 22136 #: blocks/publish/class-publish-engine.php:683 2137 2137 #: includes/class-shortcode-adverts-add.php:581 includes/shortcodes.php:279 2138 2138 msgid "" … … 2255 2255 msgstr "" 2256 2256 2257 #: includes/admin-pages.php:89 2258 msgid "Custom Fields" 2259 msgstr "" 2260 2257 2261 #: includes/admin-pages.php:90 2262 msgid "Allow users to customize forms using easy to use drag and drop editor." 2263 msgstr "" 2264 2265 #: includes/admin-pages.php:96 2266 msgid "Elementor Integration" 2267 msgstr "" 2268 2269 #: includes/admin-pages.php:97 2270 msgid "Build classifieds sections with Elementor page builder." 2271 msgstr "" 2272 2273 #: includes/admin-pages.php:103 2274 msgid "WooCommerce Payments" 2275 msgstr "" 2276 2277 #: includes/admin-pages.php:104 2278 msgid "Use WooCommerce to charge users for posting ads on your website." 2279 msgstr "" 2280 2281 #: includes/admin-pages.php:111 2258 2282 msgid "Charge users for posting ads on your website." 2259 2283 msgstr "" 2260 2284 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 2286 msgid "Emails" 2287 msgstr "" 2288 2289 #: includes/admin-pages.php:117 2290 msgid "" 2291 "Emails module sends transactional emails to users and allows editing the " 2292 "email templates content." 2293 msgstr "" 2294 2295 #: includes/admin-pages.php:122 2270 2296 msgid "BuddyPress Integration" 2271 2297 msgstr "" 2272 2298 2273 #: includes/admin-pages.php:1 032299 #: includes/admin-pages.php:123 2274 2300 msgid "" 2275 2301 "Integrate user Ads with BuddyPress profiles, registration and private " … … 2277 2303 msgstr "" 2278 2304 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 2288 2306 msgid "Authors" 2289 2307 msgstr "" 2290 2308 2291 #: includes/admin-pages.php:1 172309 #: includes/admin-pages.php:130 2292 2310 msgid "Using Authors module users can create and manage their profiles." 2293 2311 msgstr "" 2294 2312 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 2306 2314 msgid "Default Styles" 2307 2315 msgstr "" 2308 2316 2309 #: includes/admin-pages.php:13 02317 #: includes/admin-pages.php:138 2310 2318 msgid "" 2311 2319 "Visually adjust forms and buttons styling for seamless integration with " … … 2313 2321 msgstr "" 2314 2322 2315 #: includes/admin-pages.php:1 372323 #: includes/admin-pages.php:145 2316 2324 msgid "Features" 2317 2325 msgstr "" 2318 2326 2319 #: includes/admin-pages.php:14 12327 #: includes/admin-pages.php:149 2320 2328 msgid "Allow users to post Ads displayed always at the top of the list." 2321 2329 msgstr "" 2322 2330 2323 #: includes/admin-pages.php:1 472331 #: includes/admin-pages.php:155 2324 2332 msgid "Display contact form on the Ad details pages." 2325 2333 msgstr "" 2326 2334 2327 #: includes/admin-pages.php:1 522335 #: includes/admin-pages.php:160 2328 2336 msgid "Better Messages" 2329 2337 msgstr "" 2330 2338 2331 #: includes/admin-pages.php:1 532339 #: includes/admin-pages.php:161 2332 2340 msgid "Enable Real-Time Messaging with Sellers Using Better Messages" 2333 2341 msgstr "" 2334 2342 2335 #: includes/admin-pages.php:1 592343 #: includes/admin-pages.php:167 2336 2344 msgid "Maps And Locations" 2337 2345 msgstr "" 2338 2346 2339 #: includes/admin-pages.php:16 02347 #: includes/admin-pages.php:168 2340 2348 msgid "Locations Taxonomy, Google Maps integration and more." 2341 2349 msgstr "" 2342 2350 2343 #: includes/admin-pages.php:1 662351 #: includes/admin-pages.php:174 2344 2352 msgid "Fee Per Category" 2345 2353 msgstr "" 2346 2354 2347 #: includes/admin-pages.php:1 672355 #: includes/admin-pages.php:175 2348 2356 msgid "" 2349 2357 "Set fee for Ads posting per category or allow to post for free in some " … … 2351 2359 msgstr "" 2352 2360 2353 #: includes/admin-pages.php:1 732361 #: includes/admin-pages.php:181 2354 2362 msgid "reCAPTCHA" 2355 2363 msgstr "" 2356 2364 2357 #: includes/admin-pages.php:1 742365 #: includes/admin-pages.php:182 2358 2366 msgid "" 2359 2367 "Protect your forms from SPAM using easy easy for humans and hard for bots " … … 2361 2369 msgstr "" 2362 2370 2363 #: includes/admin-pages.php:18 02371 #: includes/admin-pages.php:188 2364 2372 msgid "Category Icons" 2365 2373 msgstr "" 2366 2374 2367 #: includes/admin-pages.php:18 12375 #: includes/admin-pages.php:189 2368 2376 msgid "Set custom icons (small and big) for each category." 2369 2377 msgstr "" 2370 2378 2371 #: includes/admin-pages.php:1 872379 #: includes/admin-pages.php:195 2372 2380 msgid "Mark As Sold" 2373 2381 msgstr "" 2374 2382 2375 #: includes/admin-pages.php:1 882383 #: includes/admin-pages.php:196 2376 2384 msgid "Allow users and administrators to mark the Ads as sold." 2377 2385 msgstr "" 2378 2386 2379 #: includes/admin-pages.php: 1942387 #: includes/admin-pages.php:202 2380 2388 msgid "Analytics" 2381 2389 msgstr "" 2382 2390 2383 #: includes/admin-pages.php: 1952391 #: includes/admin-pages.php:203 2384 2392 msgid "Native analytics implementation independent of any third parties." 2385 2393 msgstr "" 2386 2394 2387 #: includes/admin-pages.php:20 12395 #: includes/admin-pages.php:209 2388 2396 msgid "Currencies" 2389 2397 msgstr "" 2390 2398 2391 #: includes/admin-pages.php:2 022399 #: includes/admin-pages.php:210 2392 2400 msgid "Expand your classifieds site globally with seamless multi-currency support." 2393 2401 msgstr "" 2394 2402 2395 #: includes/admin-pages.php:21 02403 #: includes/admin-pages.php:218 2396 2404 msgid "Payment Gateways" 2397 2405 msgstr "" 2398 2406 2399 #: includes/admin-pages.php:2 142407 #: includes/admin-pages.php:222 2400 2408 msgid "" 2401 2409 "Allow users to pay for ad posting using direct bank transfer or cash " … … 2403 2411 msgstr "" 2404 2412 2405 #: includes/admin-pages.php:2 192413 #: includes/admin-pages.php:227 2406 2414 msgid "PayPal Standard" 2407 2415 msgstr "" 2408 2416 2409 #: includes/admin-pages.php:22 02417 #: includes/admin-pages.php:228 2410 2418 msgid "PayPal Payments Standard, allow users to pay for ads via PayPal." 2411 2419 msgstr "" 2412 2420 2413 #: includes/admin-pages.php:2 262421 #: includes/admin-pages.php:234 2414 2422 msgid "Stripe" 2415 2423 msgstr "" 2416 2424 2417 #: includes/admin-pages.php:2 272425 #: includes/admin-pages.php:235 2418 2426 msgid "" 2419 2427 "Charge users for Ad postings using credit cards (and some other payment " … … 2421 2429 msgstr "" 2422 2430 2423 #: includes/admin-pages.php:4 132431 #: includes/admin-pages.php:421 2424 2432 msgid "Category Icon" 2425 2433 msgstr "" 2426 2434 2427 #: includes/admin-pages.php:4 172435 #: includes/admin-pages.php:425 2428 2436 msgid "Filter Icons ..." 2429 2437 msgstr "" 2430 2438 2431 #: includes/admin-pages.php:42 02439 #: includes/admin-pages.php:428 2432 2440 msgid "Icons V4" 2433 2441 msgstr "" 2434 2442 2435 #: includes/admin-pages.php:42 12443 #: includes/admin-pages.php:429 2436 2444 msgid "Icons V6" 2437 2445 msgstr "" -
wpadverts/trunk/readme.txt
r3316823 r3340879 6 6 Requires at least: 5.7 7 7 Tested up to: 6.8 8 Stable tag: 2.2. 68 Stable tag: 2.2.7 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 125 125 126 126 == 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. 127 136 128 137 = 2.2.6 - 2025-06-24 = -
wpadverts/trunk/templates/block-partials/form.php
r3200814 r3340879 18 18 19 19 $_btn_classes = isset( $_btn_classes ) ? $_btn_classes : ["top" => "wpa-form-buttons", "inner" => "wpa-form-buttons-list"]; 20 20 21 ?> 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> 21 36 22 37 <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"> 24 39 25 40 <?php foreach($form->get_fields( array( "type" => array( "adverts_field_hidden" ) ) ) as $field): ?>
Note: See TracChangeset
for help on using the changeset viewer.