Advanced Ads - Version 1.6.8.3

Version Description

  • Hoe vet is dat!? added Dutch translation
  • fix selecting placement type in IE 11
  • fix errors with content injection when mbstring extension is missing on the server
Download this release

Release Info

Developer webzunft
Plugin Icon 128x128 Advanced Ads
Version 1.6.8.3
Comparing to
See all releases

Code changes from version 1.6.8.2 to 1.6.8.3

admin/assets/css/admin.css CHANGED
@@ -155,7 +155,7 @@
155
  .advads-placements-new-form .advads-placement-type { position: relative; top: 0; left: 0; float: left; }
156
  .advads-placements-new-form .advads-placement-type .ui-button { background: none; border-radius: 0; height: auto; }
157
  .advads-placements-new-form .advads-placement-type .ui-button-text { padding: 0; }
158
- .advads-placements-new-form .advads-placement-type .ui-button-text img { margin-top: 10px; max-width: 100%; }
159
  .advads-placements-new-form .advads-placement-type label { display: inline-block; width: 140px; text-align: center; border: 0; padding: 10px; }
160
  .advads-placements-new-form .advads-placement-type label .description { padding: 10px; }
161
  .advads-placements-new-form .advads-error-message { display: none; }
155
  .advads-placements-new-form .advads-placement-type { position: relative; top: 0; left: 0; float: left; }
156
  .advads-placements-new-form .advads-placement-type .ui-button { background: none; border-radius: 0; height: auto; }
157
  .advads-placements-new-form .advads-placement-type .ui-button-text { padding: 0; }
158
+ .advads-placements-new-form .advads-placement-type .ui-button-text img { margin-top: 10px; max-width: 100%; pointer-events: none; }
159
  .advads-placements-new-form .advads-placement-type label { display: inline-block; width: 140px; text-align: center; border: 0; padding: 10px; }
160
  .advads-placements-new-form .advads-placement-type label .description { padding: 10px; }
161
  .advads-placements-new-form .advads-error-message { display: none; }
admin/views/placements.php CHANGED
@@ -108,7 +108,10 @@
108
  <p><label><input type="checkbox" name="advads[placements][<?php echo $_placement_slug; ?>][options][start_from_bottom]" value="1" <?php
109
  if (isset($_placement['options']['start_from_bottom'])) { checked( $_placement['options']['start_from_bottom'], 1); }
110
  ?>/><?php _e( 'start counting from bottom', ADVADS_SLUG ); ?></label></p>
111
- </div><?php
 
 
 
112
  break;
113
  endswitch;
114
  do_action( 'advanced-ads-placement-options-after', $_placement_slug, $_placement );
108
  <p><label><input type="checkbox" name="advads[placements][<?php echo $_placement_slug; ?>][options][start_from_bottom]" value="1" <?php
109
  if (isset($_placement['options']['start_from_bottom'])) { checked( $_placement['options']['start_from_bottom'], 1); }
110
  ?>/><?php _e( 'start counting from bottom', ADVADS_SLUG ); ?></label></p>
111
+ </div>
112
+ <?php if( ! function_exists( 'mb_convert_encoding' ) ) : ?>
113
+ <p><span class="advads-error-message"><?php _e( 'Important Notice', ADVADS_SLUG ); ?>: </span><?php _e( 'Your server is missing an extension. This might break the content injection.<br/>Ignore this warning if everything works fine or else ask your hosting provider to enable <em>mbstring</em>.', ADVADS_SLUG ); ?></p>
114
+ <?php endif;
115
  break;
116
  endswitch;
117
  do_action( 'advanced-ads-placement-options-after', $_placement_slug, $_placement );
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.6.8.2
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
@@ -38,7 +38,7 @@ define( 'ADVADS_BASE_DIR', dirname( plugin_basename( __FILE__ ) ) ); // director
38
  // general and global slug, e.g. to store options in WP, textdomain
39
  define( 'ADVADS_SLUG', 'advanced-ads' );
40
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
41
- define( 'ADVADS_VERSION', '1.6.8.2' );
42
 
43
  /*----------------------------------------------------------------------------*
44
  * Autoloading, modules and functions
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.6.8.3
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
38
  // general and global slug, e.g. to store options in WP, textdomain
39
  define( 'ADVADS_SLUG', 'advanced-ads' );
40
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
41
+ define( 'ADVADS_VERSION', '1.6.8.3' );
42
 
43
  /*----------------------------------------------------------------------------*
44
  * Autoloading, modules and functions
classes/ad_placements.php CHANGED
@@ -299,7 +299,16 @@ class Advanced_Ads_Placements {
299
  // -TODO may want to verify the wpcharset is supported by server (mb_list_encodings)
300
  // prevent messages from dom parser
301
  $wpCharset = get_bloginfo('charset');
302
- $content = mb_convert_encoding($content, 'HTML-ENTITIES', $wpCharset);
 
 
 
 
 
 
 
 
 
303
 
304
  $dom = new DOMDocument('1.0', $wpCharset);
305
  // may loose some fragments or add autop-like code
299
  // -TODO may want to verify the wpcharset is supported by server (mb_list_encodings)
300
  // prevent messages from dom parser
301
  $wpCharset = get_bloginfo('charset');
302
+ // check if mbstring exists
303
+ if ( ! function_exists( 'mb_convert_encoding' ) ) {
304
+ if ( $wpCharset === "UTF-8" ) {
305
+ $content = htmlspecialchars_decode( htmlentities( $content, ENT_COMPAT, $wpCharset, false ) );
306
+ } else {
307
+ return $content;
308
+ }
309
+ } else {
310
+ $content = mb_convert_encoding( $content, 'HTML-ENTITIES', $wpCharset );
311
+ }
312
 
313
  $dom = new DOMDocument('1.0', $wpCharset);
314
  // may loose some fragments or add autop-like code
languages/advanced-ads-nl_NL.mo ADDED
Binary file
languages/advanced-ads-nl_NL.po ADDED
@@ -0,0 +1,2444 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Advanved Ads\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
5
+ "POT-Creation-Date: 2015-01-27 16:47+0100\n"
6
+ "PO-Revision-Date: Tue Sep 01 2015 21:46:56 GMT+0200 (CEST)\n"
7
+ "Last-Translator: admin <admin@localhost.dev>\n"
8
+ "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
9
+ "Language: Dutch\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Loco - https://localise.biz/\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Poedit-Basepath: ../\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Loco-Target-Locale: nl_NL"
24
+
25
+ #: ../admin/class-advanced-ads-admin.php:239
26
+ msgid "Overview"
27
+ msgstr "Overzicht"
28
+
29
+ #: ../admin/class-advanced-ads-admin.php:243 ../admin/class-advanced-ads-admin.
30
+ #: php:243 ../admin/views/ad-group-list-form-row.php:27 ../admin/views/ad-group-
31
+ #: list-header.php:5 ../admin/views/placements.php:78 ../admin/views/placements.
32
+ #: php:169 ../classes/widget.php:83 ../public/class-advanced-ads.php:552
33
+ msgid "Ads"
34
+ msgstr "Advertenties"
35
+
36
+ #: ../admin/class-advanced-ads-admin.php:247 ../admin/views/placements.php:71 ..
37
+ #: admin/views/placements.php:162 ../classes/widget.php:76
38
+ msgid "Ad Groups"
39
+ msgstr "Advertentiegroep"
40
+
41
+ #: ../admin/class-advanced-ads-admin.php:247 ../public/class-advanced-ads.php:525
42
+ msgid "Groups"
43
+ msgstr "Groepen"
44
+
45
+ #: ../admin/class-advanced-ads-admin.php:252 ../admin/views/debug.php:14
46
+ msgid "Ad Placements"
47
+ msgstr "Advertentie plaatsingen"
48
+
49
+ #: ../admin/class-advanced-ads-admin.php:252 ../admin/views/placements.php:18
50
+ msgid "Placements"
51
+ msgstr "Plaatsingen"
52
+
53
+ #: ../admin/class-advanced-ads-admin.php:256
54
+ msgid "Advanced Ads Settings"
55
+ msgstr "Advanced Ads instellingen"
56
+
57
+ #: ../admin/class-advanced-ads-admin.php:256 ../admin/class-advanced-ads-admin.
58
+ #: php:483 ../admin/views/debug.php:11
59
+ msgid "Settings"
60
+ msgstr "Instellingen"
61
+
62
+ #: ../admin/class-advanced-ads-admin.php:259
63
+ msgid "Advanced Ads Debugging"
64
+ msgstr ""
65
+ "Advanced Ads \n"
66
+ "Debugging"
67
+
68
+ #: ../admin/class-advanced-ads-admin.php:259
69
+ msgid "Debug"
70
+ msgstr "Debug"
71
+
72
+ #: ../admin/class-advanced-ads-admin.php:263 ../admin/class-advanced-ads-admin.
73
+ #: php:263
74
+ msgid "Advanced Ads Intro"
75
+ msgstr "Advanced Ads Introductie"
76
+
77
+ #: ../admin/class-advanced-ads-admin.php:267 ../admin/class-advanced-ads-admin.
78
+ #: php:267
79
+ msgid "Support"
80
+ msgstr "Ondersteuning"
81
+
82
+ #: ../admin/class-advanced-ads-admin.php:397 ../admin/class-advanced-ads-admin.
83
+ #: php:424
84
+ msgid "Sorry, you are not allowed to access this feature."
85
+ msgstr "Sorry, u heeft niet genoeg rechten om deze functionaliteit te gebruiken."
86
+
87
+ #: ../admin/class-advanced-ads-admin.php:410
88
+ msgid ""
89
+ "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
90
+ "deleted?"
91
+ msgstr ""
92
+ "U heeft geprobeerd een advertentie te bewerken die niet bestaat. Wellicht is "
93
+ "deze advertentie verwijderd?"
94
+
95
+ #: ../admin/class-advanced-ads-admin.php:525
96
+ msgid "Ad Type"
97
+ msgstr "Advertentietype"
98
+
99
+ #: ../admin/class-advanced-ads-admin.php:528
100
+ msgid "Ad Parameters"
101
+ msgstr "Advertentie parameters"
102
+
103
+ #: ../admin/class-advanced-ads-admin.php:531
104
+ msgid "Layout / Output"
105
+ msgstr "Layout / Output"
106
+
107
+ #: ../admin/class-advanced-ads-admin.php:534
108
+ msgid "Display Conditions"
109
+ msgstr "Vertoningsvoorwaarden"
110
+
111
+ #: ../admin/class-advanced-ads-admin.php:537
112
+ msgid "Visitor Conditions"
113
+ msgstr "Bezoekersvoorwaarden"
114
+
115
+ #: ../admin/class-advanced-ads-admin.php:703 ../admin/class-advanced-ads-admin.
116
+ #: php:704
117
+ msgid "Ad updated."
118
+ msgstr "Advertentie bijgewerkt."
119
+
120
+ #. translators: %s: date and time of the revision
121
+ #: ../admin/class-advanced-ads-admin.php:706
122
+ #, php-format
123
+ msgid "Ad restored to revision from %s"
124
+ msgstr "Advertentie hersteld naar revisie %s"
125
+
126
+ #: ../admin/class-advanced-ads-admin.php:707
127
+ msgid "Ad published."
128
+ msgstr "Advertentie gepubliceerd."
129
+
130
+ #: ../admin/class-advanced-ads-admin.php:708
131
+ msgid "Ad saved."
132
+ msgstr "Advertentie opgeslagen."
133
+
134
+ #: ../admin/class-advanced-ads-admin.php:709
135
+ msgid "Ad submitted."
136
+ msgstr ""
137
+ "Advertentie\n"
138
+ " ingediend."
139
+
140
+ #: ../admin/class-advanced-ads-admin.php:711
141
+ #, php-format
142
+ msgid "Ad scheduled for: <strong>%1$s</strong>."
143
+ msgstr "Advertentie is ingepland voor: <strong>%1$s</strong>."
144
+
145
+ #. translators: Publish box date format, see http://php.net/date
146
+ #: ../admin/class-advanced-ads-admin.php:713
147
+ msgid "M j, Y @ G:i"
148
+ msgstr "d-m-Y @ H:i"
149
+
150
+ #: ../admin/class-advanced-ads-admin.php:715
151
+ msgid "Ad draft updated."
152
+ msgstr "Advertentie concept bijgewerkt."
153
+
154
+ #: ../admin/class-advanced-ads-admin.php:734
155
+ #, php-format
156
+ msgid "%s ad updated."
157
+ msgid_plural "%s ads updated."
158
+ msgstr[0] "%s advertentie bijgewerkt."
159
+ msgstr[1] "%s advertenties bijgewerkt."
160
+
161
+ #: ../admin/class-advanced-ads-admin.php:735
162
+ #, php-format
163
+ msgid "%s ad not updated, somebody is editing it."
164
+ msgid_plural "%s ads not updated, somebody is editing them."
165
+ msgstr[0] "%s advertentie niet bijgewerkt, iemand anders is deze aan het bewerken."
166
+ msgstr[1] ""
167
+ "%s advertenties niet bijgewerkt, iemand anders is deze aan het \n"
168
+ "bewerken\n"
169
+ "."
170
+
171
+ #: ../admin/class-advanced-ads-admin.php:736
172
+ #, php-format
173
+ msgid "%s ad permanently deleted."
174
+ msgid_plural "%s ads permanently deleted."
175
+ msgstr[0] "%s advertentie permanent verwijderd."
176
+ msgstr[1] "%s advertenties permanent verwijderd."
177
+
178
+ #: ../admin/class-advanced-ads-admin.php:737
179
+ #, php-format
180
+ msgid "%s ad moved to the Trash."
181
+ msgid_plural "%s ads moved to the Trash."
182
+ msgstr[0] "%s advertentie verplaatst naar de prullenbak."
183
+ msgstr[1] "%s advertenties verplaatst naar de prullenbak."
184
+
185
+ #: ../admin/class-advanced-ads-admin.php:738
186
+ #, php-format
187
+ msgid "%s ad restored from the Trash."
188
+ msgid_plural "%s ads restored from the Trash."
189
+ msgstr[0] "%s advertentie teruggezet vanuit de prullenbak."
190
+ msgstr[1] "%s advertenties teruggezet vanuit de prullenbak."
191
+
192
+ #: ../admin/class-advanced-ads-admin.php:773 ../admin/views/settings.php:12
193
+ msgid "General"
194
+ msgstr "Algemeen"
195
+
196
+ #: ../admin/class-advanced-ads-admin.php:785 ../admin/class-advanced-ads-admin.
197
+ #: php:881
198
+ msgid "Licenses"
199
+ msgstr "Licenties"
200
+
201
+ #: ../admin/class-advanced-ads-admin.php:796
202
+ msgid "Disable ads"
203
+ msgstr "Advertenties uitschakelen"
204
+
205
+ #: ../admin/class-advanced-ads-admin.php:804
206
+ msgid "Hide ads for logged in users"
207
+ msgstr "Advertenties verbergen voor ingelogde gebruikers"
208
+
209
+ #: ../admin/class-advanced-ads-admin.php:812
210
+ msgid "Use advanced JavaScript"
211
+ msgstr "Geavanceerde JavaScript gebruiken"
212
+
213
+ #: ../admin/class-advanced-ads-admin.php:820
214
+ msgid "Unlimited ad injection"
215
+ msgstr "Ongelimiteerde advertentie injectie"
216
+
217
+ #: ../admin/class-advanced-ads-admin.php:828
218
+ msgid "Priority of content injection filter"
219
+ msgstr "Prioriteit van content injectie filter"
220
+
221
+ #: ../admin/class-advanced-ads-admin.php:836
222
+ msgid "Hide ads from bots"
223
+ msgstr "Advertenties verbergen voor bots"
224
+
225
+ #: ../admin/class-advanced-ads-admin.php:844
226
+ msgid "Disable notices"
227
+ msgstr "Notificaties uitschakelen"
228
+
229
+ #: ../admin/class-advanced-ads-admin.php:852
230
+ msgid "ID prefix"
231
+ msgstr "ID voorvoegsel"
232
+
233
+ #: ../admin/class-advanced-ads-admin.php:860
234
+ msgid "Remove Widget ID"
235
+ msgstr "Widget ID verwijderen"
236
+
237
+ #: ../admin/class-advanced-ads-admin.php:935
238
+ msgid "(display to all)"
239
+ msgstr "(aan iedereen tonen)"
240
+
241
+ #: ../admin/class-advanced-ads-admin.php:936
242
+ msgid "Subscriber"
243
+ msgstr "Abonnee"
244
+
245
+ #: ../admin/class-advanced-ads-admin.php:937
246
+ msgid "Contributor"
247
+ msgstr "Schrijver"
248
+
249
+ #: ../admin/class-advanced-ads-admin.php:938
250
+ msgid "Author"
251
+ msgstr "Auteur"
252
+
253
+ #: ../admin/class-advanced-ads-admin.php:939
254
+ msgid "Editor"
255
+ msgstr "Redacteur"
256
+
257
+ #: ../admin/class-advanced-ads-admin.php:940
258
+ msgid "Admin"
259
+ msgstr "Beheerder"
260
+
261
+ #: ../admin/class-advanced-ads-admin.php:948
262
+ msgid "Choose the lowest role a user must have in order to not see any ads."
263
+ msgstr ""
264
+ "Kies de laagste rol die een gebruiker moet hebben om geen advertenties te "
265
+ "zien."
266
+
267
+ #: ../admin/class-advanced-ads-admin.php:962
268
+ msgid ""
269
+ "<strong>notice: </strong>the file is currently enabled by an add-on that "
270
+ "needs it."
271
+ msgstr ""
272
+ "<strong>Notificatie: </strong>het bestand is ingeschakeld door een add-on "
273
+ "die het vereist. "
274
+
275
+ #: ../admin/class-advanced-ads-admin.php:965
276
+ #, php-format
277
+ msgid ""
278
+ "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
279
+ " Some features and add-ons might override this setting if they need features "
280
+ "from this file."
281
+ msgstr ""
282
+ "Schakel geavanceerde JavaScript functies in (<a href=\"%s\" "
283
+ "target=\"_blank\">hier</a>). Functies en add-ons kunnen deze instelling "
284
+ "overschrijven als dat nodig is."
285
+
286
+ #: ../admin/class-advanced-ads-admin.php:978
287
+ msgid ""
288
+ "Some plugins and themes trigger ad injection where it shouldn’t happen. "
289
+ "Therefore, Advanced Ads ignores injected placements on non-singular pages "
290
+ "and outside the loop. However, this can cause problems with some themes. You "
291
+ "can enable this option if you don’t see ads or want to enable ad injections "
292
+ "on archive pages AT YOUR OWN RISK."
293
+ msgstr ""
294
+ "Sommige plugins en thema's injecteren advertenties op plekken waar dat niet "
295
+ "zou moeten. Om die reden negeert Advanced Ads plaatsingen op non-singulaire "
296
+ "pagina's en buiten de WordPress loop. Soms kan dit problemen opleveren, "
297
+ "indien dat het geval is kan je deze instelling aan zetten om het injecteren "
298
+ "van advertenties op dat soort pagina's toe te staan. GEBRUIKEN OP EIGEN "
299
+ "RISICO!"
300
+
301
+ #: ../admin/class-advanced-ads-admin.php:992
302
+ msgid ""
303
+ "Play with this value in order to change the priority of the injected ads "
304
+ "compared to other auto injected elements in the post content."
305
+ msgstr ""
306
+ "Door deze waarde aan te passen kunt u de prioriteit van geïnjecteerde "
307
+ "advertenties veranderen ten opzichte van ander automatisch geïnjecteerde "
308
+ "content en/of elementen."
309
+
310
+ #: ../admin/class-advanced-ads-admin.php:1005
311
+ #, php-format
312
+ msgid ""
313
+ "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
314
+ "impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
315
+ "Add-On</a>."
316
+ msgstr ""
317
+ "Verberg advertenties van crawlers, bots en lege user agents. Voorkomt ook "
318
+ "het tellen van vertoningen voor bots als je gebruik maakt van de <a "
319
+ "href=\"%s\" target=\"_blank\">Tracking Add-On</a>."
320
+
321
+ #: ../admin/class-advanced-ads-admin.php:1006
322
+ msgid ""
323
+ "Disabling this option only makes sense if your ads contain content you want "
324
+ "to display to bots (like search engines) or your site is cached and bots "
325
+ "could create a cached version without the ads."
326
+ msgstr ""
327
+ "Het uitzetten van deze optie heeft alleen nut als uw advertenties inhoud "
328
+ "bevatten die u wilt tonen aan bots (zoals zoekmachines) of uw website is "
329
+ "gecached en bots een gecachete versie kunnen maken zonder advertenties."
330
+
331
+ #: ../admin/class-advanced-ads-admin.php:1019
332
+ msgid ""
333
+ "Disable internal notices like tips, tutorials, email newsletters and update "
334
+ "notices. Disabling notices is recommended if you run multiple blogs with "
335
+ "Advanced Ads already."
336
+ msgstr ""
337
+ "Schakel interne notificaties als tips, tutorials, email nieuwsbrief en "
338
+ "update notificaties uit. Het uitschakelen van deze notificaties is aan te "
339
+ "raden als u al meerdere blogs heeft met Advanced Ads geïnstalleerd."
340
+
341
+ #: ../admin/class-advanced-ads-admin.php:1041
342
+ msgid ""
343
+ "Prefix of class or id attributes in the frontend. Change it if you don’t "
344
+ "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
345
+ "need to <strong>rewrite css rules afterwards</strong>."
346
+ msgstr ""
347
+ "Voorvoegsel voor class of ID attributen aan de voorkant van uw website. "
348
+ "Verander deze waarde als u wilt voorkomen dat <strong>ad blockers</strong> "
349
+ "deze elementen blokkeert als zijnde advertenties."
350
+
351
+ #: ../admin/class-advanced-ads-admin.php:1062
352
+ msgid ""
353
+ "Remove the ID attribute from widgets in order to not make them an easy "
354
+ "target of ad blockers."
355
+ msgstr ""
356
+ "Verwijder het ID attribuut van widgets om te voorkomen dat ze een makkelijk "
357
+ "doelwit zijn voor ad blockers."
358
+
359
+ #: ../admin/class-advanced-ads-admin.php:1115
360
+ msgid "Ad Details"
361
+ msgstr "Advertentie details"
362
+
363
+ #: ../admin/class-advanced-ads-admin.php:1189
364
+ msgid "Ad Settings"
365
+ msgstr "Advertentie instellingen"
366
+
367
+ #: ../admin/class-advanced-ads-admin.php:1268 ../admin/views/overview.php:23
368
+ msgid "Ads Dashboard"
369
+ msgstr "Advertentie dashboard"
370
+
371
+ #: ../admin/class-advanced-ads-admin.php:1280
372
+ msgid "From the ad optimization universe"
373
+ msgstr "Van het advertentie-optimalisatie universum."
374
+
375
+ #: ../admin/class-advanced-ads-admin.php:1289
376
+ msgid "Advanced Ads Tutorials"
377
+ msgstr "Advanced Ads Tutorials"
378
+
379
+ #: ../admin/class-advanced-ads-admin.php:1300
380
+ #, php-format
381
+ msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
382
+ msgstr "%d advertenties – <a href=\"%s\">bewerken</a> - <a href=\"%s\">nieuwe</a>"
383
+
384
+ #: ../admin/class-advanced-ads-admin.php:1311
385
+ msgid "plugin manual and homepage"
386
+ msgstr "plugin handleiding en voorpagina"
387
+
388
+ #: ../admin/class-advanced-ads-admin.php:1318
389
+ msgid "Get the tutorial via email"
390
+ msgstr "Verkrijg de tutorial via e-mail"
391
+
392
+ #: ../admin/class-advanced-ads-admin.php:1325
393
+ msgid "Get AdSense tips via email"
394
+ msgstr "Verkrijg AdSense tips via e-mail"
395
+
396
+ #: ../admin/class-advanced-ads-admin.php:1399
397
+ msgid "Error while trying to register the license. Please contact support."
398
+ msgstr ""
399
+ "Er is een fout opgetreden tijdens de registratie van uw licentie. Neem "
400
+ "alstublieft contact op met support."
401
+
402
+ #: ../admin/class-advanced-ads-admin.php:1405
403
+ msgid "Please enter and save a valid license key first."
404
+ msgstr "Voer alstublieft eerst een legitieme licentie in."
405
+
406
+ #: ../admin/class-advanced-ads-admin.php:1425
407
+ #, php-format
408
+ msgid "License is invalid. Reason: %s"
409
+ msgstr "Licentie is niet legitiem. Namelijk: %s"
410
+
411
+ #: ../admin/includes/class-ad-groups-list.php:158
412
+ msgid "scheduled"
413
+ msgstr "ingepland"
414
+
415
+ #: ../admin/includes/class-ad-groups-list.php:161
416
+ msgid "pending"
417
+ msgstr "in afwachting van"
418
+
419
+ #: ../admin/includes/class-ad-groups-list.php:167
420
+ msgid "expired"
421
+ msgstr "verlopen"
422
+
423
+ #: ../admin/includes/class-ad-groups-list.php:172
424
+ msgid "Ad weight"
425
+ msgstr "Advertentie gewicht/prioriteit"
426
+
427
+ #: ../admin/includes/class-ad-groups-list.php:182
428
+ msgid "all published ads are displayed"
429
+ msgstr "Alle gepubliceerde advertenties worden getoond"
430
+
431
+ #: ../admin/includes/class-ad-groups-list.php:184
432
+ #, php-format
433
+ msgid "up to %d ads displayed"
434
+ msgstr "tot %s advertenties getoond."
435
+
436
+ #: ../admin/includes/class-ad-groups-list.php:187 ../admin/views/ad-group-list-
437
+ #: form-row.php:36
438
+ msgid "No ads assigned"
439
+ msgstr "Geen advertenties toegewezen"
440
+
441
+ #: ../admin/includes/class-ad-groups-list.php:235
442
+ msgid "Random ads"
443
+ msgstr "Willekeurige advertenties"
444
+
445
+ #: ../admin/includes/class-ad-groups-list.php:236
446
+ msgid "Display random ads based on ad weight"
447
+ msgstr "Toon willekeurige advertenties op basis van hun gewicht/prioriteit"
448
+
449
+ #: ../admin/includes/class-ad-groups-list.php:239
450
+ msgid "Ordered ads"
451
+ msgstr "Gesorteerde advertenties"
452
+
453
+ #: ../admin/includes/class-ad-groups-list.php:240
454
+ msgid "Display ads with the highest ad weight first"
455
+ msgstr "Toon advertenties met het hoogste gewicht/prioriteit eerst"
456
+
457
+ #: ../admin/includes/class-ad-groups-list.php:259 ../public/class-advanced-ads.
458
+ #: php:556
459
+ msgid "Edit"
460
+ msgstr "Bewerken"
461
+
462
+ #: ../admin/includes/class-ad-groups-list.php:260
463
+ msgid "Usage"
464
+ msgstr "Gebruik"
465
+
466
+ #: ../admin/includes/class-ad-groups-list.php:269
467
+ msgid "Delete"
468
+ msgstr "Verwijderen"
469
+
470
+ #: ../admin/includes/class-ad-groups-list.php:290
471
+ msgid "Invalid Ad Group"
472
+ msgstr "Incorrecte advertentiegroep"
473
+
474
+ #: ../admin/includes/class-ad-groups-list.php:295
475
+ msgid "You don’t have permission to change the ad groups"
476
+ msgstr "U heeft onvoldoende rechten om de advertentiegroepen aan te passen."
477
+
478
+ #: ../admin/includes/class-display-condition-callbacks.php:28
479
+ msgid "Display on all public <strong>post types</strong>."
480
+ msgstr "Toon op alle publieke <strong>post types</strong>."
481
+
482
+ #: ../admin/includes/class-display-condition-callbacks.php:31 ..
483
+ #: includes/array_ad_conditions.php:39
484
+ msgid "Choose the public post types on which to display the ad."
485
+ msgstr "Kies de publieke post types waar u deze advertentie wilt tonen."
486
+
487
+ #: ../admin/includes/class-display-condition-callbacks.php:86
488
+ msgid "Display for all <strong>categories, tags and taxonomies</strong>."
489
+ msgstr "Tonen bij alle <strong>categorieën, tags en taxonomieën</strong>."
490
+
491
+ #: ../admin/includes/class-display-condition-callbacks.php:87
492
+ msgid "Display here"
493
+ msgstr "Toon hier"
494
+
495
+ #: ../admin/includes/class-display-condition-callbacks.php:87
496
+ msgid ""
497
+ "Choose terms from public categories, tags and other taxonomies a post must "
498
+ "belong to in order to have ads."
499
+ msgstr ""
500
+ "Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
501
+ "waar een bericht bij moet horen om advertenties te tonen."
502
+
503
+ #: ../admin/includes/class-display-condition-callbacks.php:104 ..
504
+ #: admin/includes/class-display-condition-callbacks.php:217
505
+ msgid "Hide from here"
506
+ msgstr "Vanaf hier verbergen"
507
+
508
+ #: ../admin/includes/class-display-condition-callbacks.php:104
509
+ msgid ""
510
+ "Choose the terms from public categories, tags and other taxonomies a post "
511
+ "must belong to hide the ad from it."
512
+ msgstr ""
513
+ "Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
514
+ "waar een bericht bij moet horen de advertentie <strong>niet</strong> te "
515
+ "tonen."
516
+
517
+ #: ../admin/includes/class-display-condition-callbacks.php:149
518
+ msgctxt "display the terms search field on ad edit page"
519
+ msgid "add more terms"
520
+ msgstr ""
521
+ "Meer termen toevoegen [ toon het term-zoekveld op het advertentie bewerken "
522
+ "scherm ]"
523
+
524
+ #: ../admin/includes/class-display-condition-callbacks.php:150
525
+ msgid "add more terms"
526
+ msgstr "Meer termen toevoegen"
527
+
528
+ #: ../admin/includes/class-display-condition-callbacks.php:153
529
+ msgid "term name or id"
530
+ msgstr "Term naam of ID"
531
+
532
+ #: ../admin/includes/class-display-condition-callbacks.php:197
533
+ msgid "Display on all <strong>category archive pages</strong>."
534
+ msgstr "Toon op alle <strong>categorie archiefpagina's</strong>."
535
+
536
+ #: ../admin/includes/class-display-condition-callbacks.php:200
537
+ msgid ""
538
+ "Choose the terms from public categories, tags and other taxonomies on "
539
+ "which's archive page ads can appear"
540
+ msgstr ""
541
+ "Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
542
+ "waarvan er op archiefpagina's advertenties mogen verschijnen."
543
+
544
+ #: ../admin/includes/class-display-condition-callbacks.php:217
545
+ msgid ""
546
+ "Choose the terms from public categories, tags and other taxonomies on "
547
+ "which's archive pages ads are hidden."
548
+ msgstr ""
549
+ "Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
550
+ "waarvan er op archiefpagina's <strong>geen</strong> advertenties mogen "
551
+ "verschijnen."
552
+
553
+ #: ../admin/includes/class-display-condition-callbacks.php:239
554
+ msgid ""
555
+ "Display an all <strong>individual posts, pages</strong> and public post type "
556
+ "pages"
557
+ msgstr ""
558
+ "Toon op alle <strong>individuele berichten, pagina's</strong> en publieke "
559
+ "post type pagina's."
560
+
561
+ #: ../admin/includes/class-display-condition-callbacks.php:242 ..
562
+ #: includes/array_ad_conditions.php:57
563
+ msgid ""
564
+ "Choose on which individual posts, pages and public post type pages you want "
565
+ "to display or hide ads."
566
+ msgstr ""
567
+ "Kies op welke individuele berichten, pagina's en publieke post type pagina's "
568
+ "u advertenties wilt tonen of verbergen."
569
+
570
+ #: ../admin/includes/class-display-condition-callbacks.php:259
571
+ msgid "What should happen with ads on the list of individual posts below?"
572
+ msgstr ""
573
+ "Wat wilt u dat er gebeurt met de advertenties op de lijst met individuele "
574
+ "berichten hieronder?"
575
+
576
+ #: ../admin/includes/class-display-condition-callbacks.php:260
577
+ msgid "ignore the list"
578
+ msgstr "Negeer de lijst"
579
+
580
+ #: ../admin/includes/class-display-condition-callbacks.php:261
581
+ msgid "display the ad only there"
582
+ msgstr "Toon advertenties alleen daar"
583
+
584
+ #: ../admin/includes/class-display-condition-callbacks.php:262
585
+ msgid "hide the ad here"
586
+ msgstr "Verberg de advertentie hier"
587
+
588
+ #: ../admin/includes/class-display-condition-callbacks.php:270
589
+ msgid "Update warning"
590
+ msgstr "Update waarschuwing"
591
+
592
+ #: ../admin/includes/class-display-condition-callbacks.php:271
593
+ msgid ""
594
+ "Due to some conflicts before version 1.2.6, it is from now on only possible "
595
+ "to choose either individual pages to include or exclude an ad, but not both "
596
+ "with mixed settings. It seems you are still using mixed settings on this "
597
+ "page. Please consider changing your setup for this ad."
598
+ msgstr ""
599
+ "Vanwege problemen vóór versie 1.2.6 is het nu alleen nog mogelijk om "
600
+ "individuele pagina's te selecteren om advertenties te tonen of verbergen. "
601
+ "Gemixte instellingen zijn helaas niet meer mogelijk. Het lijkt erop dat u "
602
+ "nog gebruikt maakt van gemixte instellingen. Overweeg alstublieft de "
603
+ "instellingen voor deze advertentie te wijzigen."
604
+
605
+ #: ../admin/includes/class-display-condition-callbacks.php:272
606
+ msgid "Your old values are:"
607
+ msgstr "Uw oude waardes zijn:"
608
+
609
+ #: ../admin/includes/class-display-condition-callbacks.php:273
610
+ msgid "Post IDs the ad is displayed on:"
611
+ msgstr "Bericht ID's waarop deze advertentie wordt getoond."
612
+
613
+ #: ../admin/includes/class-display-condition-callbacks.php:274
614
+ msgid "Post IDs the ad is hidden from:"
615
+ msgstr "Bericht ID's waarop deze advertentie wordt verborgen."
616
+
617
+ #: ../admin/includes/class-display-condition-callbacks.php:275
618
+ msgid ""
619
+ "Below you find the pages the ad is displayed on. If this is ok, just save "
620
+ "the ad. If not, please update your settings."
621
+ msgstr ""
622
+ "Hieronder vind u de pagina's waarop deze advertentie wordt getoond. Als deze "
623
+ "gegevens correct zijn kunt u uw advertentie opslaan. Kloppen deze gegevens "
624
+ "niet? Kijk uw instellingen dan nog eens na."
625
+
626
+ #: ../admin/includes/class-display-condition-callbacks.php:318
627
+ msgid "new"
628
+ msgstr "nieuwe"
629
+
630
+ #: ../admin/includes/class-display-condition-callbacks.php:320
631
+ msgid "type the title"
632
+ msgstr "type de titel"
633
+
634
+ #: ../admin/includes/class-notices.php:359
635
+ #, php-format
636
+ msgid ""
637
+ "You don’t seem to have an email address. Please use <a href=\"%s\" "
638
+ "target=\"_blank\">this form</a> to sign up."
639
+ msgstr ""
640
+ "Het lijkt erop dat u geen e-mailadres heeft. Gebruik alstublieft <a "
641
+ "href=\"%s\" target=\"_blank\">dit formulier</a> om u in te schrijven."
642
+
643
+ #: ../admin/includes/class-notices.php:377
644
+ msgid "How embarrassing. The email server seems to be down. Please try again later."
645
+ msgstr ""
646
+ "Het lijkt er op dat de e-mail server offline is. Probeer het later nog eens. "
647
+ "Onze excuses voor het ongemak."
648
+
649
+ #: ../admin/includes/class-notices.php:382
650
+ #, php-format
651
+ msgid ""
652
+ "Please check your email (%s) for the confirmation message. If you didn’t "
653
+ "receive one or want to use another email address then please use <a "
654
+ "href=\"%s\" target=\"_blank\">this form</a> to sign up."
655
+ msgstr ""
656
+ "Kijk alstublieft in uw mailbox voor de bevestigingsmail. Als u deze e-mail "
657
+ "niet heeft ontvangen of u een ander e-mailadres wilt gebruiken kunt u <a "
658
+ "href=\"%s\" target=\"_blank\">dit formulier</a> gebruiken."
659
+
660
+ #: ../admin/includes/class-overview-widgets.php:45
661
+ msgid "Tips and Tutorials"
662
+ msgstr "Tips en tutorials"
663
+
664
+ #: ../admin/includes/class-overview-widgets.php:47
665
+ msgid "Setup and Optimization Help"
666
+ msgstr "Hulp bij installatie en optimalisatie"
667
+
668
+ #: ../admin/includes/class-overview-widgets.php:49
669
+ msgid "Manual and Support"
670
+ msgstr "Handleiding en ondersteuning"
671
+
672
+ #: ../admin/includes/class-overview-widgets.php:53
673
+ msgid "Advanced Ads Pro"
674
+ msgstr "Advanced Ads Pro"
675
+
676
+ #: ../admin/includes/class-overview-widgets.php:55
677
+ msgid "Tracking and Stats"
678
+ msgstr "Meten en statistieken"
679
+
680
+ #: ../admin/includes/class-overview-widgets.php:57
681
+ msgid "Responsive and Mobile ads"
682
+ msgstr "Responsive en mobiele advertenties"
683
+
684
+ #: ../admin/includes/class-overview-widgets.php:59
685
+ msgid "Sticky ads"
686
+ msgstr "Sticky advertenties"
687
+
688
+ #: ../admin/includes/class-overview-widgets.php:61
689
+ msgid "PopUps and Layers"
690
+ msgstr "Pop-ups en lagen"
691
+
692
+ #: ../admin/includes/class-overview-widgets.php:63
693
+ msgid "Ad Slider"
694
+ msgstr "Advertentie slider"
695
+
696
+ #: ../admin/includes/class-overview-widgets.php:81
697
+ msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
698
+ msgstr ""
699
+ "Ontvang 2 <strong>gratis add-ons</strong> als u zich inschrijft voor de "
700
+ "nieuwsbrief."
701
+
702
+ #: ../admin/includes/class-overview-widgets.php:82
703
+ msgid "Join now"
704
+ msgstr "Schrijf u nu in"
705
+
706
+ #: ../admin/includes/class-overview-widgets.php:89
707
+ msgid ""
708
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
709
+ "and Advanced Ads from the dedicated newsletter group."
710
+ msgstr ""
711
+ "Ontdek hoe, en <strong>hoe u meer kunt verdienen met AdSense</strong> en "
712
+ "Advanced Ads door u in te schrijven voor deze nieuwsbrief."
713
+
714
+ #: ../admin/includes/class-overview-widgets.php:90 ../admin/includes/notices.php:
715
+ #: 32 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
716
+ #: admin/views/notices/subscribe.php:3
717
+ msgid "Subscribe me now"
718
+ msgstr "Schrijf mij in"
719
+
720
+ #: ../admin/includes/class-overview-widgets.php:97
721
+ msgid "Get the first steps and more tutorials to your inbox."
722
+ msgstr "Ontvang de eerste stappen en tutorials in uw mailbox."
723
+
724
+ #: ../admin/includes/class-overview-widgets.php:98
725
+ msgid "Send it now"
726
+ msgstr "Stuur het op"
727
+
728
+ #: ../admin/includes/class-overview-widgets.php:121 ../admin/views/intro.php:78
729
+ msgid "Create your first ad"
730
+ msgstr "Maak je eerste advertentie aan"
731
+
732
+ #: ../admin/includes/class-overview-widgets.php:124
733
+ msgid ""
734
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
735
+ "single spot."
736
+ msgstr ""
737
+ "Advertentiegroepen bevatten advertenties en worden gebruikt om te af te "
738
+ "wisselen tussen verschillende advertenties op een bepaalde plek."
739
+
740
+ #: ../admin/includes/class-overview-widgets.php:126
741
+ msgid "Create your first group"
742
+ msgstr "Maak je eerste groep aan"
743
+
744
+ #: ../admin/includes/class-overview-widgets.php:129
745
+ msgid "Ad Placements are the best way to manage where to display ads and groups."
746
+ msgstr ""
747
+ "Advertentie plaatsingen zijn de beste manier om te beheren waar advertenties "
748
+ "en advertentiegroepen getoond worden."
749
+
750
+ #: ../admin/includes/class-overview-widgets.php:131
751
+ msgid "Create your first placement"
752
+ msgstr "Maak je eerste plaatsing aan."
753
+
754
+ #: ../admin/includes/class-overview-widgets.php:136
755
+ msgid "Next steps"
756
+ msgstr "Volgende stappen"
757
+
758
+ #: ../admin/includes/class-overview-widgets.php:148
759
+ #, php-format
760
+ msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
761
+ msgstr "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
762
+
763
+ #: ../admin/includes/class-overview-widgets.php:149
764
+ #, php-format
765
+ msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
766
+ msgstr "<a href=\"%s\" target=\"_blank\">Handleiding</a>"
767
+
768
+ #: ../admin/includes/class-overview-widgets.php:150
769
+ #, php-format
770
+ msgid "Ask other users in the <a href=\"%s\" target=\"_blank\">wordpress.org forum</a>"
771
+ msgstr ""
772
+ "Vraag het aan andere gebruikers op het <a href=\"%s\" "
773
+ "target=\"_blank\">wordpress.org forum</a>"
774
+
775
+ #: ../admin/includes/class-overview-widgets.php:151
776
+ #, php-format
777
+ msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
778
+ msgstr "Stem op <a href=\"%s\" target=\"_blank\">nieuwe functionaliteiten</a>"
779
+
780
+ #: ../admin/includes/class-overview-widgets.php:152
781
+ #, php-format
782
+ msgid ""
783
+ "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
784
+ "href=\"%s\" target=\"_blank\">wordpress.org</a>"
785
+ msgstr ""
786
+ "Bedank de ontwikkelaar van deze plugin met een &#9733;&#9733;&#9733;&#9733;"
787
+ "&#9733; beoordeling op <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
788
+
789
+ #: ../admin/includes/class-overview-widgets.php:161
790
+ msgid ""
791
+ "Need help to set up and optimize your ads? Need custom coding on your site? "
792
+ "Ask me for a quote."
793
+ msgstr ""
794
+ "Hulp nodig bij het opzetten en optimaliseren van uw advertenties? Heeft u "
795
+ "behoefte aan code op maat? Vraag een offerte aan."
796
+
797
+ #: ../admin/includes/class-overview-widgets.php:162
798
+ #, php-format
799
+ msgid "Help with ads on %s"
800
+ msgstr "Hulp met advertenties op %s"
801
+
802
+ #: ../admin/includes/class-overview-widgets.php:163
803
+ msgid "Get an offer"
804
+ msgstr "Ontvang een offerte"
805
+
806
+ #: ../admin/includes/class-overview-widgets.php:171
807
+ msgid "Ad management for advanced websites."
808
+ msgstr "Advertentiebeheer voor geavanceerde websites."
809
+
810
+ #: ../admin/includes/class-overview-widgets.php:172
811
+ msgid "Cache-busting"
812
+ msgstr "Cache-busting"
813
+
814
+ #: ../admin/includes/class-overview-widgets.php:173
815
+ msgid "Advanced visitor conditions"
816
+ msgstr "Geavanceerde bezoekersvoorwaarden"
817
+
818
+ #: ../admin/includes/class-overview-widgets.php:174
819
+ msgid "Flash ads with fallback"
820
+ msgstr "Flash advertenties met 'fallback'"
821
+
822
+ #: ../admin/includes/class-overview-widgets.php:176
823
+ msgid "Get Pro"
824
+ msgstr "Neem Pro"
825
+
826
+ #: ../admin/includes/class-overview-widgets.php:184
827
+ msgid "Track the impressions of and clicks on your ads."
828
+ msgstr "Meet het aantal vertoningen en clicks op uw advertenties."
829
+
830
+ #: ../admin/includes/class-overview-widgets.php:185
831
+ msgid "2 methods to count impressions"
832
+ msgstr "2 methoden om vertoningen te meten"
833
+
834
+ #: ../admin/includes/class-overview-widgets.php:186
835
+ msgid "beautiful stats for all or single ads"
836
+ msgstr "Beeldschone statistieken voor alle of specifieke advertenties"
837
+
838
+ #: ../admin/includes/class-overview-widgets.php:187
839
+ msgid "get stats for predefined and custom persiods"
840
+ msgstr "ontvang statistieken voor vooraf ingestelde of aangepaste periodes "
841
+
842
+ #: ../admin/includes/class-overview-widgets.php:188
843
+ msgid "group stats by day, week or month"
844
+ msgstr "groepeer statistieken op dag, week of maand"
845
+
846
+ #: ../admin/includes/class-overview-widgets.php:190
847
+ msgid "Get the Tracking add-on"
848
+ msgstr "Haal de Tracking add-on"
849
+
850
+ #: ../admin/includes/class-overview-widgets.php:198
851
+ msgid "Display ads based on the size of your visitor’s browser or device."
852
+ msgstr ""
853
+ "Toon advertenties op basis van de grootte van de browser of het toestel van "
854
+ "uw gebruiker."
855
+
856
+ #: ../admin/includes/class-overview-widgets.php:199
857
+ msgid "set a range (from … to …) pixels for the browser size"
858
+ msgstr "stel een bereik (van ... tot ...) in pixels in voor de browser afmeting."
859
+
860
+ #: ../admin/includes/class-overview-widgets.php:200
861
+ msgid "set custom sizes for AdSense responsive ads"
862
+ msgstr "Stel aangepaste maten in voor AdSense responsive advertenties"
863
+
864
+ #: ../admin/includes/class-overview-widgets.php:201
865
+ msgid "list all ads by their responsive settings"
866
+ msgstr "Toon alle advertenties gesorteerd op responsive instellingen"
867
+
868
+ #: ../admin/includes/class-overview-widgets.php:203
869
+ msgid "Get the Responsive add-on"
870
+ msgstr "Neem de Responsive add-on"
871
+
872
+ #: ../admin/includes/class-overview-widgets.php:211 ../admin/views/ad-info-top.
873
+ #: php:30
874
+ #, fuzzy
875
+ msgid ""
876
+ "Fix ads to the browser while users are scrolling and create best performing "
877
+ "anchor ads."
878
+ msgstr ""
879
+ "Zet advertenties vast in de browser terwijl een gebruiker scrollt voor de "
880
+ "best presterende verankerde advertenties"
881
+
882
+ #: ../admin/includes/class-overview-widgets.php:212
883
+ msgid "position ads that don’t scroll with the screen"
884
+ msgstr "Positioneer advertenties die niet met het scherm mee scrollen"
885
+
886
+ #: ../admin/includes/class-overview-widgets.php:213
887
+ msgid "build anchor ads not only on mobile devices"
888
+ msgstr "Maak verankerde advertenties niet alleen voor mobiele aparaten"
889
+
890
+ #: ../admin/includes/class-overview-widgets.php:215 ../admin/views/ad-info-top.
891
+ #: php:32
892
+ msgid "Get the Sticky add-on"
893
+ msgstr "Neem de Sticky add-on"
894
+
895
+ #: ../admin/includes/class-overview-widgets.php:223 ../admin/views/ad-info-top.
896
+ #: php:37
897
+ msgid "Display content and ads in layers and popups on custom events."
898
+ msgstr "Toon content en advertenties in lagen en pop-ups op aangepaste momenten."
899
+
900
+ #: ../admin/includes/class-overview-widgets.php:224
901
+ msgid "display a popup after a user interaction like scrolling"
902
+ msgstr ""
903
+ "Toon een pop-up na interactie van de gebruiker, bijvoorbeeld als iemand "
904
+ "scrollt"
905
+
906
+ #: ../admin/includes/class-overview-widgets.php:225
907
+ msgid "optional backgroup overlay"
908
+ msgstr "Optionele achtergrond laag"
909
+
910
+ #: ../admin/includes/class-overview-widgets.php:226
911
+ msgid "allow users to close the popup"
912
+ msgstr "sta gebruikers toe de pop-up te sluiten"
913
+
914
+ #: ../admin/includes/class-overview-widgets.php:228 ../admin/views/ad-info-top.
915
+ #: php:39
916
+ msgid "Get the PopUp and Layer add-on"
917
+ msgstr "Neem de PopUp and Layer add-on"
918
+
919
+ #: ../admin/includes/class-overview-widgets.php:236
920
+ msgid "Create a beautiful and simple slider from your ads."
921
+ msgstr "Maak prachtige doch simpele sliders met uw advertenties."
922
+
923
+ #: ../admin/includes/class-overview-widgets.php:238
924
+ msgid "Get the Slider add-on"
925
+ msgstr "Naam de Slider add-on"
926
+
927
+ #: ../admin/includes/notices.php:14
928
+ #, php-format
929
+ msgid ""
930
+ "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
931
+ "Steps</a>."
932
+ msgstr ""
933
+ "Advanced Ads is succesvol geïnstalleerd. Kijk ook eens naar de <a "
934
+ "href=\"%s\">eerste stappen</a>."
935
+
936
+ #: ../admin/includes/notices.php:19
937
+ msgid ""
938
+ "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
939
+ "receive the first steps via email?"
940
+ msgstr ""
941
+ "Bedankt voor het activeren van <strong>Advanced Ads</strong>. Wilt u een e-"
942
+ "mail ontvangen met daarin de eerst volgende stappen?"
943
+
944
+ #: ../admin/includes/notices.php:20
945
+ msgid "Yes, send it"
946
+ msgstr "Ja, stuur maar op"
947
+
948
+ #: ../admin/includes/notices.php:25
949
+ msgid ""
950
+ "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
951
+ "<strong>2 free add-ons</strong> for joining the newsletter."
952
+ msgstr ""
953
+ "Bedankt voor het gebruiken van <strong>Advanced Ads</strong>. Blijf up-to-"
954
+ "date en ontvang <strong>2 gratis add-ons</strong> als u zich inschrijft voor "
955
+ "de nieuwsbrief."
956
+
957
+ #: ../admin/includes/notices.php:26
958
+ msgid "Add me now"
959
+ msgstr "Voeg mij toe"
960
+
961
+ #: ../admin/includes/notices.php:31
962
+ msgid ""
963
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
964
+ "and Advanced Ads from my dedicated newsletter."
965
+ msgstr ""
966
+ "Ontdek hoe, en <strong>hoe u meer kunt verdienen met AdSense</strong> en "
967
+ "Advanced Ads door u in te schrijven voor deze nieuwsbrief."
968
+
969
+ #: ../admin/includes/notices.php:52
970
+ #, php-format
971
+ msgid ""
972
+ "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
973
+ "missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
974
+ msgstr ""
975
+ "Één of meer <strong>licenties voor Advanced Ads add-ons zijn niet "
976
+ "geactiveerd</strong>. Voeg <a href=\"%s\">hier</a> alstublieft een correcte "
977
+ "licentiecode in."
978
+
979
+ #: ../admin/includes/notices.php:57
980
+ #, php-format
981
+ msgid ""
982
+ "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
983
+ "soon</strong>. Don’t risk to lose support and updates and renew your license "
984
+ "before it expires with a significant discount on <a href=\"%s\" "
985
+ "target=\"_blank\">the add-on page</a>."
986
+ msgstr ""
987
+ "Één of meer <strong>licenties voor Advanced Ads add-ons zullen binnenkort "
988
+ "verlopen</strong>. Voorkom het verlies van updates en ondersteuning en "
989
+ "vernieuw uw licentie voordat deze verloopt en ontvang en flinke korting op "
990
+ "<a href=\"%s\" target=\"_blank\">de add-on pagina</a>."
991
+
992
+ #: ../admin/includes/notices.php:62
993
+ #, php-format
994
+ msgid ""
995
+ "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
996
+ "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
997
+ "information."
998
+ msgstr ""
999
+ "Een <strong>Advanced Ads</strong> licentie(s) is verlopen. Ondersteuning en "
1000
+ "updates zijn nu uitgeschakeld. Kijk op de <a href=\"%s\">licentie pagina</a> "
1001
+ "voor meer informatie."
1002
+
1003
+ #: ../admin/views/ad-display-metabox.php:8
1004
+ msgid "Choose where to display the ad and where to hide it."
1005
+ msgstr "Kies waar de advertentie getoond moet worden en waar niet."
1006
+
1007
+ #: ../admin/views/ad-display-metabox.php:10
1008
+ msgid "Display ad everywhere"
1009
+ msgstr "Toon advertentie overal"
1010
+
1011
+ #: ../admin/views/ad-display-metabox.php:11
1012
+ msgid "Set display conditions"
1013
+ msgstr "Stel vertoningsvoorwaarden in"
1014
+
1015
+ #: ../admin/views/ad-display-metabox.php:15
1016
+ msgid "If you want to display the ad everywhere, don't do anything here. "
1017
+ msgstr "Als u deze advertentie overal wilt tonen, stel hier dan niks in."
1018
+
1019
+ #: ../admin/views/ad-display-metabox.php:16
1020
+ msgid "The fewer conditions you enter, the better the performance will be."
1021
+ msgstr "Hoe minder voorwaarden u instelt, des te beter de prestaties zullen zijn."
1022
+
1023
+ #: ../admin/views/ad-display-metabox.php:17
1024
+ #, php-format
1025
+ msgid ""
1026
+ "Learn more about display conditions from the <a href=\"%s\" "
1027
+ "target=\"_blank\">manual</a>."
1028
+ msgstr ""
1029
+ "Lees de <a href=\"%s\" target=\"_blank\">handleiding</a> om meer te weten te "
1030
+ "komen over vertoningsvoorwaarden."
1031
+
1032
+ #: ../admin/views/ad-display-metabox.php:34
1033
+ msgid "Other conditions"
1034
+ msgstr "Andere voorwaarden"
1035
+
1036
+ #: ../admin/views/ad-display-metabox.php:52
1037
+ msgctxt "button label"
1038
+ msgid "on"
1039
+ msgstr "aan"
1040
+
1041
+ #: ../admin/views/ad-display-metabox.php:56
1042
+ msgctxt "button label"
1043
+ msgid "off"
1044
+ msgstr "uit"
1045
+
1046
+ #: ../admin/views/ad-display-metabox.php:71
1047
+ msgid "show debug output"
1048
+ msgstr "Toon debug waardes"
1049
+
1050
+ #: ../admin/views/ad-display-metabox.php:72
1051
+ msgid "Values saved for this ad in the database (post metas)"
1052
+ msgstr "Waardes die voor deze advertentie zijn opgeslagen in de database (post metas)"
1053
+
1054
+ #: ../admin/views/ad-group-edit.php:14
1055
+ msgid "You did not select an item for editing."
1056
+ msgstr "U heeft geen item geselecteerd om te bewerken."
1057
+
1058
+ #: ../admin/views/ad-group-edit.php:33
1059
+ msgctxt "Taxonomy Name"
1060
+ msgid "Name"
1061
+ msgstr "Naam"
1062
+
1063
+ #: ../admin/views/ad-group-edit.php:38
1064
+ msgctxt "Taxonomy Slug"
1065
+ msgid "Slug"
1066
+ msgstr "Slug"
1067
+
1068
+ #: ../admin/views/ad-group-edit.php:40
1069
+ msgid "An id-like string with only letters in lower case, numbers, and hyphens."
1070
+ msgstr ""
1071
+ "Een tekenreeks te vergelijken met een ID met alleen onderkast letters, "
1072
+ "nummers en streepjes (hyphens)."
1073
+
1074
+ #: ../admin/views/ad-group-edit.php:45
1075
+ msgctxt "Taxonomy Description"
1076
+ msgid "Description"
1077
+ msgstr "Beschrijving"
1078
+
1079
+ #: ../admin/views/ad-group-edit.php:57
1080
+ msgid "Create new Ad Group"
1081
+ msgstr "Maak een nieuwe advertentiegroep"
1082
+
1083
+ #: ../admin/views/ad-group-edit.php:59 ../classes/ad_type_content.php:68 ..
1084
+ #: classes/ad_type_content.php:69
1085
+ msgid "Update"
1086
+ msgstr "Opslaan"
1087
+
1088
+ #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
1089
+ msgid "Name"
1090
+ msgstr "Naam"
1091
+
1092
+ #: ../admin/views/ad-group-list-form-row.php:5
1093
+ msgid "Description"
1094
+ msgstr "Beschrijving"
1095
+
1096
+ #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
1097
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:48
1098
+ msgid "Type"
1099
+ msgstr "Type"
1100
+
1101
+ #: ../admin/views/ad-group-list-form-row.php:16
1102
+ msgid "Number of visible ads"
1103
+ msgstr "Aantal zichtbare advertenties"
1104
+
1105
+ #: ../admin/views/ad-group-list-form-row.php:21
1106
+ msgctxt "option to display all ads in an ad groups"
1107
+ msgid "all"
1108
+ msgstr "alle"
1109
+
1110
+ #: ../admin/views/ad-group-list-form-row.php:24
1111
+ msgid "Number of ads that are visible at the same time"
1112
+ msgstr "Aantal advertenties dat simultaan zichtbaar is"
1113
+
1114
+ #: ../admin/views/ad-group-list-form-row.php:30 ../public/class-advanced-ads.php:
1115
+ #: 553
1116
+ msgid "Ad"
1117
+ msgstr "Advertentie"
1118
+
1119
+ #: ../admin/views/ad-group-list-form-row.php:31
1120
+ msgid "weight"
1121
+ msgstr "gewicht"
1122
+
1123
+ #: ../admin/views/ad-group-list-header.php:3
1124
+ msgid "Ad Group"
1125
+ msgstr "Advertentiegroep"
1126
+
1127
+ #: ../admin/views/ad-group-list-header.php:4
1128
+ msgid "Details"
1129
+ msgstr "Details"
1130
+
1131
+ #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1132
+ #: admin/views/ad-info.php:3 ../admin/views/placements.php:56
1133
+ msgid "shortcode"
1134
+ msgstr "shortcode"
1135
+
1136
+ #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1137
+ #: admin/views/placements.php:59
1138
+ msgid "template"
1139
+ msgstr "template"
1140
+
1141
+ #: ../admin/views/ad-group-list-row.php:14
1142
+ #, php-format
1143
+ msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
1144
+ msgstr ""
1145
+ "Lees de <a href=\"%s\" target=\"_blank\">handleiding</a> om meer te weten te "
1146
+ "komen over het gebruik van groepen."
1147
+
1148
+ #: ../admin/views/ad-group-list-row.php:19
1149
+ #, php-format
1150
+ msgid "Type: %s"
1151
+ msgstr "Type: %s"
1152
+
1153
+ #: ../admin/views/ad-group-list-row.php:20
1154
+ #, php-format
1155
+ msgid "ID: %s"
1156
+ msgstr "ID: %s"
1157
+
1158
+ #: ../admin/views/ad-group-list-row.php:21
1159
+ #, php-format
1160
+ msgid "Slug: %s"
1161
+ msgstr "Slug: %s"
1162
+
1163
+ #: ../admin/views/ad-group.php:18
1164
+ msgid "Ad Groups successfully updated"
1165
+ msgstr "Advertentiegroep succesvol opgeslagen"
1166
+
1167
+ #: ../admin/views/ad-group.php:46
1168
+ #, php-format
1169
+ msgid "Search results for &#8220;%s&#8221;"
1170
+ msgstr ""
1171
+ "Zoekresultaten voor \n"
1172
+ "&#8220;%s&#8221;"
1173
+
1174
+ #: ../admin/views/ad-group.php:52
1175
+ msgid ""
1176
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
1177
+ "display random ads in the frontend or run split tests, but also just for "
1178
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1179
+ "ad can belong to multiple ad groups."
1180
+ msgstr ""
1181
+ "Advertentiegroepen zijn een flexibele methode om advertenties te bundelen. U "
1182
+ "kunt ze gebruiken om willekeurig advertenties te tonen aan de voorkant van "
1183
+ "uw website, split tests te doen maar ook puur voor informationele doeleinden."
1184
+ " Niet alleen kunnen advertentiegroepen meerdere advertenties bezitten maar "
1185
+ "kan een advertentie ook in meerdere advertentiegroepen voor komen."
1186
+
1187
+ #: ../admin/views/ad-group.php:60
1188
+ msgid "How to display an Ad Group?"
1189
+ msgstr "Hoe toon ik een advertentiegroep?"
1190
+
1191
+ #: ../admin/views/ad-group.php:62
1192
+ #, php-format
1193
+ msgid ""
1194
+ "Examples on how to display an ad group? Find more help and examples in the "
1195
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
1196
+ msgstr ""
1197
+ "Zoekt u voorbeelden voor het tonen van een advertentiegroep? Hulp en "
1198
+ "voorbeelden vind u in de <a href=\"%s\" target=\"_blank\">handleiding</a>."
1199
+
1200
+ #: ../admin/views/ad-group.php:64
1201
+ msgid "To display an ad group with the ID 6 in content fields"
1202
+ msgstr "Om een advertentiegroep met het ID 6 te tonen in content velden"
1203
+
1204
+ #: ../admin/views/ad-group.php:67
1205
+ msgid "To display an ad group with the ID 6 in template files"
1206
+ msgstr "Om een advertentiegroep met het ID 6 te tonen in template files"
1207
+
1208
+ #: ../admin/views/ad-group.php:87
1209
+ msgid "Update Groups"
1210
+ msgstr "Groepen opslaan"
1211
+
1212
+ #: ../admin/views/ad-info-top.php:4
1213
+ msgid "Cool, you just published an ad. What now?"
1214
+ msgstr "Cool, u heeft zojuist een advertentie gepubliceerd. Wat nu?"
1215
+
1216
+ #: ../admin/views/ad-info-top.php:5
1217
+ msgid "Display the ad in …"
1218
+ msgstr "Toon de advertentie in ..."
1219
+
1220
+ #: ../admin/views/ad-info-top.php:7
1221
+ msgid "… every post or page"
1222
+ msgstr "... ieder bericht of pagina"
1223
+
1224
+ #: ../admin/views/ad-info-top.php:9
1225
+ msgid "Use placements to inject the ad automatically into posts and pages."
1226
+ msgstr ""
1227
+ "Gebruik plaatsingen om advertenties automatisch in berichten of pagina's te "
1228
+ "injecteren."
1229
+
1230
+ #: ../admin/views/ad-info-top.php:10
1231
+ msgid "Configure Placements"
1232
+ msgstr "Stel plaatsingen in"
1233
+
1234
+ #: ../admin/views/ad-info-top.php:12
1235
+ msgid "… Sidebar or Widget Area"
1236
+ msgstr "... Sidebar of Widget gebieden"
1237
+
1238
+ #: ../admin/views/ad-info-top.php:14
1239
+ msgid "Use the <em>Advanced Ads</em> Widget to display ads in your sidebars."
1240
+ msgstr ""
1241
+ "Gebruik de <em>Advanced Ads</em> Widget om advertenties te tonen in uw "
1242
+ "Sidebars."
1243
+
1244
+ #: ../admin/views/ad-info-top.php:15
1245
+ msgid "Configure a Widget"
1246
+ msgstr "Stel een widget in"
1247
+
1248
+ #: ../admin/views/ad-info-top.php:17
1249
+ msgid "… a few hand selected posts or pages"
1250
+ msgstr "... een paar handgeselecteerde berichten of pagina's"
1251
+
1252
+ #: ../admin/views/ad-info-top.php:19
1253
+ msgid ""
1254
+ "Use the shortcode below to manually place the ad in the content editor of "
1255
+ "posts and pages."
1256
+ msgstr ""
1257
+ "Gebruik deze shortcode om de advertentie met de hand te plaatsen in de "
1258
+ "content editor van berichten of pagina's."
1259
+
1260
+ #: ../admin/views/ad-info-top.php:22
1261
+ msgid "… in a custom position in your theme"
1262
+ msgstr "... op een aangepaste locatie in uw thema"
1263
+
1264
+ #: ../admin/views/ad-info-top.php:24
1265
+ msgid ""
1266
+ "Use the function below to manually place the ad into your template files. "
1267
+ "This method is needed for more advanced placements like in the header of "
1268
+ "your theme."
1269
+ msgstr ""
1270
+ "Gebruik de functie hieronder om advertenties met de hand te verwerken in uw "
1271
+ "template files. Deze methode is vereist als u specifiekere plaatsingen in uw "
1272
+ "thema vereist."
1273
+
1274
+ #: ../admin/views/ad-info-top.php:27
1275
+ msgid "… in an anchor ad or pop-up"
1276
+ msgstr "... in een verankerde advertentie of pop-up"
1277
+
1278
+ #: ../admin/views/ad-info-top.php:34
1279
+ msgid "You find the settings for the Sticky Ads below."
1280
+ msgstr "U vind de instellingen voor Sticky Ads hieronder."
1281
+
1282
+ #: ../admin/views/ad-info-top.php:41
1283
+ msgid "You find the settings for the Layer and PopUp effects below."
1284
+ msgstr "U vind de instellingen voor de Laag en Pop-up effecten hieronder."
1285
+
1286
+ #: ../admin/views/ad-info-top.php:46
1287
+ #, php-format
1288
+ msgid ""
1289
+ "Learn more about your choices to display an ad in the <a href=\"%s\" "
1290
+ "target=\"_blank\">manual</a>"
1291
+ msgstr ""
1292
+ "Om meer te weten te komen over de mogelijkheden om uw advertenties te tonen "
1293
+ "kunt u de <a href=\"%s\" target=\"_blank\">handleiding</a> raadplegen."
1294
+
1295
+ #: ../admin/views/ad-info.php:2
1296
+ #, php-format
1297
+ msgid "Ad Id: %s"
1298
+ msgstr "Advertentie ID: %s"
1299
+
1300
+ #: ../admin/views/ad-info.php:5
1301
+ msgid "theme function"
1302
+ msgstr "thema functie"
1303
+
1304
+ #: ../admin/views/ad-info.php:7
1305
+ #, php-format
1306
+ msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1307
+ msgstr ""
1308
+ "U kunt meer opties voor het vertonen van uw advertenties vinden in de <a "
1309
+ "href=\"%s\" target=\"_blank\">handleiding</a>."
1310
+
1311
+ #: ../admin/views/ad-info.php:12
1312
+ msgid "click to change"
1313
+ msgstr "klik om te veranderen"
1314
+
1315
+ #: ../admin/views/ad-info.php:16
1316
+ msgid "Add a description"
1317
+ msgstr "Voeg een beschrijving toe"
1318
+
1319
+ #: ../admin/views/ad-info.php:19
1320
+ msgid "Internal description or your own notes about this ad."
1321
+ msgstr "Interne beschrijving of eigen notitie voor deze advertentie."
1322
+
1323
+ #: ../admin/views/ad-main-metabox.php:3
1324
+ msgid "No ad types defined"
1325
+ msgstr "Geen advertentie types gedefinieerd"
1326
+
1327
+ #: ../admin/views/ad-output-metabox.php:1
1328
+ msgid "Everything connected to the ads layout and output."
1329
+ msgstr "Alles wat in verbinding staat met de advertentie indeling en output."
1330
+
1331
+ #: ../admin/views/ad-output-metabox.php:5
1332
+ msgid "Position"
1333
+ msgstr "Positie"
1334
+
1335
+ #: ../admin/views/ad-output-metabox.php:6
1336
+ msgid "- default -"
1337
+ msgstr "- standaard -"
1338
+
1339
+ #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:49
1340
+ msgid "default"
1341
+ msgstr "standaard"
1342
+
1343
+ #: ../admin/views/ad-output-metabox.php:8
1344
+ msgid "left"
1345
+ msgstr "links"
1346
+
1347
+ #: ../admin/views/ad-output-metabox.php:11
1348
+ msgid "center"
1349
+ msgstr "center"
1350
+
1351
+ #: ../admin/views/ad-output-metabox.php:14
1352
+ msgid "right"
1353
+ msgstr "rechts"
1354
+
1355
+ #: ../admin/views/ad-output-metabox.php:19
1356
+ msgid ""
1357
+ "Check this if you don't want the following elements to float around the ad. "
1358
+ "(adds a clearfix)"
1359
+ msgstr ""
1360
+ "Vink dit aan als u wilt voorkomen dat andere elementen om uw advertentie "
1361
+ "heen 'zweven'. (Voegt een clearfix toe)"
1362
+
1363
+ #: ../admin/views/ad-output-metabox.php:22
1364
+ msgid "Margin"
1365
+ msgstr "Margin"
1366
+
1367
+ #: ../admin/views/ad-output-metabox.php:23
1368
+ msgid "top:"
1369
+ msgstr "bovenkant:"
1370
+
1371
+ #: ../admin/views/ad-output-metabox.php:25
1372
+ msgid "right:"
1373
+ msgstr "rechts:"
1374
+
1375
+ #: ../admin/views/ad-output-metabox.php:27
1376
+ msgid "bottom:"
1377
+ msgstr "onderkant:"
1378
+
1379
+ #: ../admin/views/ad-output-metabox.php:29
1380
+ msgid "left:"
1381
+ msgstr "links:"
1382
+
1383
+ #: ../admin/views/ad-output-metabox.php:31
1384
+ msgid "tip: use this to add a margin around the ad"
1385
+ msgstr "tip: gebruik dit om een margin toe te voegen rondom de advertentie"
1386
+
1387
+ #: ../admin/views/ad-parameters-metabox.php:15 ../classes/ad_ajax_callbacks.php:51
1388
+ msgid "size:"
1389
+ msgstr "formaat:"
1390
+
1391
+ #: ../admin/views/ad-parameters-metabox.php:16 ../classes/ad_ajax_callbacks.php:52
1392
+ msgid "width"
1393
+ msgstr "breedte"
1394
+
1395
+ #: ../admin/views/ad-parameters-metabox.php:17 ../classes/ad_ajax_callbacks.php:53
1396
+ msgid "height"
1397
+ msgstr "hoogte"
1398
+
1399
+ #: ../admin/views/ad-submitbox-meta.php:4
1400
+ msgid "Set expiry date"
1401
+ msgstr "Stel vervaldatum in"
1402
+
1403
+ #: ../admin/views/ad-submitbox-meta.php:11
1404
+ #, php-format
1405
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1406
+ msgid "%1$s-%2$s"
1407
+ msgstr "%1$s-%2$s"
1408
+
1409
+ #: ../admin/views/ad-submitbox-meta.php:19
1410
+ #, php-format
1411
+ msgctxt "order of expiry date fields 1: month, 2: day, 3: year"
1412
+ msgid "%1$s %2$s, %3$s"
1413
+ msgstr "%2$s %1$s, %3$s"
1414
+
1415
+ #: ../admin/views/ad-visitor-metabox.php:4
1416
+ msgid ""
1417
+ "Display conditions that are based on the user. Use with caution on cached "
1418
+ "websites."
1419
+ msgstr ""
1420
+ "Vertoningsvoorwaarden die zijn gebaseerd op de gebruiker. Wees voorzichtig "
1421
+ "met het gebruik van deze voorwaarden op websites die worden gecached."
1422
+
1423
+ #: ../admin/views/ad-visitor-metabox.php:28
1424
+ msgid ""
1425
+ "Visitor conditions limit the number of users who can see your ad. There is "
1426
+ "no need to set visitor conditions if you want all users to see the ad."
1427
+ msgstr ""
1428
+ "Bezoekersvoorwaarden limiteren het aantal bezoekers dat uw advertentie "
1429
+ "kunnen zien. Er is geen rede om deze instellingen te gebruiken als u wilt "
1430
+ "dat iedereen de advertentie kan zien."
1431
+
1432
+ #: ../admin/views/ad-visitor-metabox.php:32
1433
+ msgid "New condition"
1434
+ msgstr "Nieuwe voorwaarde"
1435
+
1436
+ #: ../admin/views/ad-visitor-metabox.php:35
1437
+ msgctxt "visitor condition connector"
1438
+ msgid "and"
1439
+ msgstr "en"
1440
+
1441
+ #: ../admin/views/ad-visitor-metabox.php:36
1442
+ msgctxt "visitor condition connector"
1443
+ msgid "or"
1444
+ msgstr "of"
1445
+
1446
+ #: ../admin/views/ad-visitor-metabox.php:39
1447
+ msgid "-- choose a condition --"
1448
+ msgstr "-- kies een voorwaarde --"
1449
+
1450
+ #: ../admin/views/ad-visitor-metabox.php:44
1451
+ msgid "add"
1452
+ msgstr "toevoegen"
1453
+
1454
+ #: ../admin/views/ad-visitor-metabox.php:48
1455
+ #, php-format
1456
+ msgid ""
1457
+ "Define the exact browser width for which an ad should be visible using the "
1458
+ "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1459
+ msgstr ""
1460
+ "Stel de exacte browser breedte in waarbij een advertentie zichtbaar zou "
1461
+ "moeten zijn bij het gebruik van de <a href=\"%s\" target=\"_blank\">Responsive "
1462
+ "add-on</a>."
1463
+
1464
+ #: ../admin/views/ad-visitor-metabox.php:106
1465
+ msgid ""
1466
+ "The visitor conditions below are deprecated. Please use the new version of "
1467
+ "visitor conditions to replace it."
1468
+ msgstr ""
1469
+ "De bezoekersvoorwaarden hieronder zijn niet langer in gebruik. Gebruik "
1470
+ "inplaats hiervan de vernieuwde versie van bezoekersvoorwaarden om ze te "
1471
+ "vervangen."
1472
+
1473
+ #: ../admin/views/ad-visitor-metabox.php:112
1474
+ msgid "Display on all devices"
1475
+ msgstr "Toon op alle apparaten"
1476
+
1477
+ #: ../admin/views/ad-visitor-metabox.php:116
1478
+ msgid "only on mobile devices"
1479
+ msgstr "alleen op mobiele apparaten"
1480
+
1481
+ #: ../admin/views/ad-visitor-metabox.php:120
1482
+ msgid "not on mobile devices"
1483
+ msgstr "niet op mobiele apparaten"
1484
+
1485
+ #: ../admin/views/debug.php:6 ../admin/views/settings.php:41
1486
+ msgid "Debug Page"
1487
+ msgstr "Debug Pagina"
1488
+
1489
+ #: ../admin/views/debug.php:7
1490
+ msgid "Work in progress"
1491
+ msgstr "In ontwikkeling"
1492
+
1493
+ #: ../admin/views/debug.php:8
1494
+ msgid ""
1495
+ "This screen is work in progress. You can use the information if you "
1496
+ "understand them, but there is nothing to do here yet."
1497
+ msgstr ""
1498
+ "Dit scherm is nog in ontwikkeling. U kunt deze informatie gebruiken als u er "
1499
+ "verstand van heeft, maar u kunt hier verder nog niets doen."
1500
+
1501
+ #: ../admin/views/intro.php:18
1502
+ msgid "5-Star Usability"
1503
+ msgstr "5-Sterren gebruikersvriendelijkheid"
1504
+
1505
+ #: ../admin/views/intro.php:19
1506
+ msgid ""
1507
+ "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1508
+ "standards. If you know how to publish a post then you know how to create an "
1509
+ "ad."
1510
+ msgstr ""
1511
+ "Advanced Ads is krachtig en simpel in gebruik omdat het is gebouwd op de "
1512
+ "WordPress standaarden. Als u weet hoe u een bericht kunt publiceren weet u "
1513
+ "ook direct hoe u een advertentie kunt creëren."
1514
+
1515
+ #: ../admin/views/intro.php:23
1516
+ msgid "5-Star Support"
1517
+ msgstr "5-Sterren ondersteuning"
1518
+
1519
+ #: ../admin/views/intro.php:24
1520
+ msgid ""
1521
+ "I promise you the best supported ad management plugin for WordPress. Whether "
1522
+ "a pro user or not, you can reach me easily through the support page, in the "
1523
+ "chat on the homepage or replying to a newsletter."
1524
+ msgstr ""
1525
+ "Ik beloof u de best ondersteunde advertentie-beheer plugin voor WordPress. "
1526
+ "Of u nou een pro gebruiker bent of niet, u kunt mij altijd bereiken via de "
1527
+ "ondersteuningspagina, in de chat op de website of door op een nieuwsbrief te "
1528
+ "reageren."
1529
+
1530
+ #: ../admin/views/intro.php:28
1531
+ msgid "5-Star Experience"
1532
+ msgstr "5-Sterren ervaring"
1533
+
1534
+ #: ../admin/views/intro.php:29
1535
+ msgid ""
1536
+ "Advanced Ads was built out of my own experience. I am personally using it to "
1537
+ "serve millions of ad impressions per month and constantly test new ways to "
1538
+ "optimize ad settings."
1539
+ msgstr ""
1540
+ "Advanced Ads is voortgekomen uit mijn eigen ervaring. Ik gebruik het zelf om "
1541
+ "miljoenen vertoningen van advertenties per maand te verwerken en constant op "
1542
+ "zoek naar betere manieren om advertenties in te stellen."
1543
+
1544
+ #: ../admin/views/intro.php:34
1545
+ msgid "Welcome to <strong>Advanced Ads</strong>"
1546
+ msgstr "Welkom bij <strong>Advanced Ads</strong>"
1547
+
1548
+ #: ../admin/views/intro.php:36
1549
+ msgid "Let me give you an introduction into your future ad management solution."
1550
+ msgstr "Laat mij u introduceren aan uw toekomstige advertentie-beheer oplossing."
1551
+
1552
+ #: ../admin/views/intro.php:61
1553
+ msgid "Next Steps"
1554
+ msgstr "Volgende stappen"
1555
+
1556
+ #: ../admin/views/intro.php:64
1557
+ msgid "Subscribe to the Mailing List"
1558
+ msgstr "Schrijf u in op de nieuwsbrief"
1559
+
1560
+ #: ../admin/views/intro.php:65
1561
+ msgid "Subscribe to the newsletter and instantly"
1562
+ msgstr "Schrijf u in op de nieuwsbrief en ontvang direct"
1563
+
1564
+ #: ../admin/views/intro.php:67
1565
+ msgid "get 2 free add-ons."
1566
+ msgstr "2 gratis add-ons."
1567
+
1568
+ #: ../admin/views/intro.php:68
1569
+ msgid "reply to the welcome message with a question."
1570
+ msgstr "Reageer op het welkomstbericht met een vraag."
1571
+
1572
+ #: ../admin/views/intro.php:69
1573
+ msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1574
+ msgstr ""
1575
+ "Schrijf u in voor een speciaal toegewijde groep voor tutorials of AdSense "
1576
+ "tips."
1577
+
1578
+ #: ../admin/views/intro.php:79
1579
+ #, php-format
1580
+ msgid ""
1581
+ "Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
1582
+ "watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
1583
+ msgstr ""
1584
+ "Ga van start en <a href=\"$1%s\" target=\"blank\"> maak direct uw eerste "
1585
+ "advertentie</a> of bekijk de <a href=\"$2%s\" target=\"blank\">tutorial video (3:"
1586
+ "29min)</a>."
1587
+
1588
+ #: ../admin/views/intro.php:82
1589
+ msgid "Display your ad"
1590
+ msgstr "Toon uw advertentie"
1591
+
1592
+ #: ../admin/views/intro.php:83
1593
+ msgid ""
1594
+ "You can display your ad using a shortcode, widget or one of the powerful "
1595
+ "placements. Placements help you to inject ads into the content or place them "
1596
+ "on your site without coding."
1597
+ msgstr ""
1598
+ "U kunt uw advertenties tonen door middel van een shortcode, widget of een "
1599
+ "specifieke plaatsing. Plaatsingen helpen u bij het injecteren van "
1600
+ "advertenties in uw content zonder kennis nodig te hebben van programmeren."
1601
+
1602
+ #: ../admin/views/intro.php:85
1603
+ msgid "List of all available placements"
1604
+ msgstr "Toon alle mogelijke plaatsingen"
1605
+
1606
+ #: ../admin/views/intro.php:86
1607
+ msgid "Create a placement"
1608
+ msgstr "Maak een nieuwe plaatsing"
1609
+
1610
+ #: ../admin/views/placements.php:8
1611
+ msgid ""
1612
+ "Couldn’t create the new placement. Please check your form field and whether "
1613
+ "the name is already in use."
1614
+ msgstr ""
1615
+ "We konden de plaatsing niet aanmaken. Controleer of de naam niet al in "
1616
+ "gebruik is en of de ingevulde waardes kloppen."
1617
+
1618
+ #: ../admin/views/placements.php:10
1619
+ msgid "Placements updated"
1620
+ msgstr "Plaatsingen opgeslagen"
1621
+
1622
+ #: ../admin/views/placements.php:15
1623
+ msgid ""
1624
+ "Placements are physically places in your theme and posts. You can use them "
1625
+ "if you plan to change ads and ad groups on the same place without the need "
1626
+ "to change your templates."
1627
+ msgstr ""
1628
+ "Plaatsingen zijn fysieke locaties in uw thema of berichten. U kunt ze "
1629
+ "gebruiken als u van plan bent om advertenties en advertentiegroepen aan te "
1630
+ "passen zonder uw templates aan te hoeven passen."
1631
+
1632
+ #: ../admin/views/placements.php:16
1633
+ #, php-format
1634
+ msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1635
+ msgstr ""
1636
+ "Voor meer informatie over plaatsingen kunt u de <a "
1637
+ "href=\"$1%s\">handleiding</a> raadplegen."
1638
+
1639
+ #: ../admin/views/placements.php:25
1640
+ msgid "Options"
1641
+ msgstr "Opties"
1642
+
1643
+ #: ../admin/views/placements.php:40
1644
+ #, php-format
1645
+ msgid ""
1646
+ "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1647
+ "if the responsible add-on is activated."
1648
+ msgstr ""
1649
+ "Plaatsingstype \"%s\" ontbreekt en is terug gezet naar \"standaard\".<br "
1650
+ "/>Controleer of de verantwoordelijke add-on wel geactiveerd is."
1651
+
1652
+ #: ../admin/views/placements.php:55
1653
+ msgid "show usage"
1654
+ msgstr "toon gebruik"
1655
+
1656
+ #: ../admin/views/placements.php:67
1657
+ msgid "Item"
1658
+ msgstr "Item"
1659
+
1660
+ #: ../admin/views/placements.php:69 ../admin/views/placements.php:160
1661
+ msgid "--not selected--"
1662
+ msgstr "--niet geselecteerd--"
1663
+
1664
+ #: ../admin/views/placements.php:89
1665
+ msgid "Inject"
1666
+ msgstr "Injecteer"
1667
+
1668
+ #: ../admin/views/placements.php:90
1669
+ msgid "after"
1670
+ msgstr "na"
1671
+
1672
+ #: ../admin/views/placements.php:90
1673
+ msgid "before"
1674
+ msgstr "voor"
1675
+
1676
+ #: ../admin/views/placements.php:110
1677
+ msgid "start counting from bottom"
1678
+ msgstr "start met tellen van beneden"
1679
+
1680
+ #: ../admin/views/placements.php:118
1681
+ msgid "remove placement"
1682
+ msgstr "plaatsing verwijderen"
1683
+
1684
+ #: ../admin/views/placements.php:124
1685
+ msgid "Save Placements"
1686
+ msgstr "Plaatsingen opslaan"
1687
+
1688
+ #: ../admin/views/placements.php:126
1689
+ msgid "Create a new placement"
1690
+ msgstr "Maak een nieuwe plaatsing"
1691
+
1692
+ #: ../admin/views/placements.php:127
1693
+ msgid "New Placement"
1694
+ msgstr "Nieuwe plaatsing"
1695
+
1696
+ #: ../admin/views/placements.php:133
1697
+ msgid "Choose a placement type"
1698
+ msgstr "Kies een plaatsingstype"
1699
+
1700
+ #: ../admin/views/placements.php:134
1701
+ #, php-format
1702
+ msgid ""
1703
+ "Placement types define where the ad is going to be displayed. Learn more "
1704
+ "about the different types from the <a href=\"%s\">manual</a>"
1705
+ msgstr ""
1706
+ "Plaatsingstypes stellen vast waar een advertentie getoond zal worden. Voor "
1707
+ "meer informatie over plaatsingstypes kunt u de <a "
1708
+ "href=\"$1%s\">handleiding</a> raadplegen."
1709
+
1710
+ #: ../admin/views/placements.php:151
1711
+ msgid "Please select a placement type."
1712
+ msgstr "Selecteer alstublieft een plaatsingstype"
1713
+
1714
+ #: ../admin/views/placements.php:153
1715
+ msgid "Choose a Name"
1716
+ msgstr "Kies een naam"
1717
+
1718
+ #: ../admin/views/placements.php:154
1719
+ msgid ""
1720
+ "The name of the placement is only visible to you. Tip: choose a descriptive "
1721
+ "one, e.g. <em>Below Post Headline</em>."
1722
+ msgstr ""
1723
+ "De naam van een plaatsing is alleen zichtbaar voor u. Tip: kies een naam die "
1724
+ "de plaatsing goed omschrijft. (Voorbeeld: <em>Onder bericht titel</em>)"
1725
+
1726
+ #: ../admin/views/placements.php:155
1727
+ msgid "Placement Name"
1728
+ msgstr "Plaatsing naam"
1729
+
1730
+ #: ../admin/views/placements.php:156
1731
+ msgid "Please enter a name for your placement."
1732
+ msgstr "Vul alstublieft de naam van uw plaatsing in."
1733
+
1734
+ #: ../admin/views/placements.php:157
1735
+ msgid "Choose the Ad or Group"
1736
+ msgstr "Kies de advertentie of advertentiegroep"
1737
+
1738
+ #: ../admin/views/placements.php:158
1739
+ msgid "The ad or group that should be displayed."
1740
+ msgstr "De advertentie of advertentiegroep die getoond moet worden."
1741
+
1742
+ #: ../admin/views/placements.php:177
1743
+ msgid "Save New Placement"
1744
+ msgstr "Nieuwe plaatsing opslaan"
1745
+
1746
+ #: ../admin/views/post-ad-settings-metabox.php:3
1747
+ msgid "Disable ads on this page"
1748
+ msgstr "Advertenties op deze pagina uitschakelen"
1749
+
1750
+ #: ../admin/views/setting-license.php:10
1751
+ #, php-format
1752
+ msgid ""
1753
+ "Your license expired. Please visit <a href=\"%s\" target=\"_blank\">the plugin "
1754
+ "page</a> to renew it."
1755
+ msgstr ""
1756
+ "Uw licentie is verlopen. Ga naar de <a href=\"%s\" target=\"_blank\">plugin "
1757
+ "pagina</a> om uw licentie te vernieuwen."
1758
+
1759
+ #: ../admin/views/setting-license.php:14
1760
+ msgid "License key"
1761
+ msgstr "Licentiecode"
1762
+
1763
+ #: ../admin/views/setting-license.php:26
1764
+ msgid "Activate License"
1765
+ msgstr "Activeer licentie"
1766
+
1767
+ #: ../admin/views/setting-license.php:29
1768
+ msgid "license key invalid"
1769
+ msgstr "licentiecode incorrect"
1770
+
1771
+ #: ../admin/views/setting-license.php:35
1772
+ msgid "active"
1773
+ msgstr "actief"
1774
+
1775
+ #: ../admin/views/setting-license.php:36
1776
+ #, php-format
1777
+ msgid "(%d days left)"
1778
+ msgstr "(%d dagen over)"
1779
+
1780
+ #: ../admin/views/setting-license.php:39
1781
+ msgid ""
1782
+ "1. enter the key and save options; 2. click the activate button behind the "
1783
+ "field"
1784
+ msgstr ""
1785
+ "1. Vul uw licentiecode in en sla de instellingen op; 2. Klik op de activatie "
1786
+ "knop achter het invulveld."
1787
+
1788
+ #: ../admin/views/settings-disable-ads.php:3
1789
+ msgid "Disable all ads in frontend"
1790
+ msgstr "Schakel alle advertenties aan de voorkant van uw website uit"
1791
+
1792
+ #: ../admin/views/settings-disable-ads.php:4
1793
+ msgid ""
1794
+ "Use this option to disable all ads in the frontend, but still be able to use "
1795
+ "the plugin."
1796
+ msgstr ""
1797
+ "Gebruik deze instelling om alle advertenties in de voorkant van uw website "
1798
+ "uit te schakelen. U kunt wel gewoon gebruik blijven maken van de plugin."
1799
+
1800
+ #: ../admin/views/settings-disable-ads.php:8
1801
+ msgid "Disable ads on 404 error pages"
1802
+ msgstr "Schakel advertenties uit op 404 error pagina's"
1803
+
1804
+ #: ../admin/views/settings-disable-ads.php:12
1805
+ msgid "Disable ads on non-singular pages"
1806
+ msgstr "Schakel advertenties uit op niet-singulaire pagina's"
1807
+
1808
+ #: ../admin/views/settings-disable-ads.php:13
1809
+ msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
1810
+ msgstr ""
1811
+ "Bijvoorbeeld: archief pagina's zoals categorieën, tags, auteurs en de "
1812
+ "homepagina (indien lijst)"
1813
+
1814
+ #: ../admin/views/settings-disable-ads.php:16
1815
+ msgid "Disable ads on secondary queries"
1816
+ msgstr "Schakel advertenties uit op secundaire queries"
1817
+
1818
+ #: ../admin/views/settings-disable-ads.php:17
1819
+ msgid ""
1820
+ "Secondary queries are custom queries of posts outside the main query of a "
1821
+ "page. Try this option if you see ads injected on places where they shouldn’t "
1822
+ "appear."
1823
+ msgstr ""
1824
+ "Secundaire queries zijn aangepaste queries van berichten buiten de hoofd-"
1825
+ "query van een pagina. Probeer deze optie als u advertenties ziet verschijnen "
1826
+ "op plekken waar dit niet hoort."
1827
+
1828
+ #: ../admin/views/settings.php:34
1829
+ msgid "Save settings on this page"
1830
+ msgstr "Instellingen op deze pagina opslaan"
1831
+
1832
+ #: ../admin/views/settings.php:42
1833
+ msgid "Welcome Page"
1834
+ msgstr "Welkomstpagina"
1835
+
1836
+ #: ../admin/views/settings.php:43
1837
+ msgid "Advanced Ads on WordPress.org"
1838
+ msgstr "Advanced Ads op WordPress.org"
1839
+
1840
+ #: ../admin/views/settings.php:43
1841
+ msgid "Advanced Ads on wp.org"
1842
+ msgstr "Advanced Ads op wp.org"
1843
+
1844
+ #: ../admin/views/settings.php:44
1845
+ msgid "the company behind Advanced Ads"
1846
+ msgstr "het bedrijf achter Advanced Ads"
1847
+
1848
+ #: ../admin/views/settings.php:44
1849
+ msgid "webgilde GmbH"
1850
+ msgstr "webgilde GmbH"
1851
+
1852
+ #: ../admin/views/support.php:9
1853
+ msgid "Email was successfully sent."
1854
+ msgstr "De e-mail is succesvol verstuurd."
1855
+
1856
+ #: ../admin/views/support.php:10
1857
+ msgid "Search"
1858
+ msgstr "Zoeken"
1859
+
1860
+ #: ../admin/views/support.php:11
1861
+ msgid ""
1862
+ "Use the following form to search for solutions in the manual on "
1863
+ "wpadvancedads.com"
1864
+ msgstr ""
1865
+ "Gebruik het formulier om te zoeken naar oplossingen in de handleiding op "
1866
+ "wpadvancedads.com"
1867
+
1868
+ #: ../admin/views/support.php:14
1869
+ msgid "search"
1870
+ msgstr "zoeken"
1871
+
1872
+ #: ../admin/views/support.php:17
1873
+ msgid "Contact"
1874
+ msgstr "Contact"
1875
+
1876
+ #: ../admin/views/support.php:18
1877
+ #, php-format
1878
+ msgid ""
1879
+ "Please search the manual for a solution and take a look at <a href=\"%s\" "
1880
+ "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
1881
+ msgstr ""
1882
+ "Probeer gelieve eerst te zoeken naar oplossingen in de handleiding of op de "
1883
+ "pagina <a href=\"%s\" target=\"_blank\">Advertenties verschijnen niet?</a> "
1884
+ "alvorens u contact opneemt voor ondersteuning. "
1885
+
1886
+ #: ../admin/views/support.php:20
1887
+ msgid "your email"
1888
+ msgstr "uw e-mailadres"
1889
+
1890
+ #: ../admin/views/support.php:21
1891
+ msgid "your name"
1892
+ msgstr "uw naam"
1893
+
1894
+ #: ../admin/views/support.php:22
1895
+ msgid "your message"
1896
+ msgstr "uw bericht"
1897
+
1898
+ #: ../admin/views/support.php:23
1899
+ msgid "send"
1900
+ msgstr "versturen"
1901
+
1902
+ #: ../classes/ad_placements.php:31
1903
+ msgid "Manual Placement"
1904
+ msgstr "Handmatige plaatsing"
1905
+
1906
+ #: ../classes/ad_placements.php:32
1907
+ msgid "Manual placement to use as function or shortcode."
1908
+ msgstr "Handmatige plaatsing door middel van een functie of shortcode"
1909
+
1910
+ #: ../classes/ad_placements.php:36
1911
+ msgid "Header Code"
1912
+ msgstr "Header Code"
1913
+
1914
+ #: ../classes/ad_placements.php:37
1915
+ msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
1916
+ msgstr ""
1917
+ "Geïnjecteerd in de Header (voor de sluitende &lt;/head&gt; tag, meestal niet "
1918
+ "zichtbaar)."
1919
+
1920
+ #: ../classes/ad_placements.php:41
1921
+ msgid "Footer Code"
1922
+ msgstr "Footer code"
1923
+
1924
+ #: ../classes/ad_placements.php:42
1925
+ msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
1926
+ msgstr "Geïnjecteerd in de Footer (voor de sluitende &lt;/body&gt; tag)."
1927
+
1928
+ #: ../classes/ad_placements.php:46
1929
+ msgid "Before Content"
1930
+ msgstr "Voor de content"
1931
+
1932
+ #: ../classes/ad_placements.php:47
1933
+ msgid "Injected before the post content."
1934
+ msgstr "Geïnjecteerd voor de post content"
1935
+
1936
+ #: ../classes/ad_placements.php:51
1937
+ msgid "After Content"
1938
+ msgstr "Na de content"
1939
+
1940
+ #: ../classes/ad_placements.php:52
1941
+ msgid "Injected after the post content."
1942
+ msgstr "Geïnjecteerd na de post content"
1943
+
1944
+ #: ../classes/ad_placements.php:56
1945
+ msgid "Post Content"
1946
+ msgstr "In de content"
1947
+
1948
+ #: ../classes/ad_placements.php:57
1949
+ msgid ""
1950
+ "Injected into the post content. You can choose the paragraph after which the "
1951
+ "ad content is displayed."
1952
+ msgstr ""
1953
+ "Geïnjecteerd in de post content. U kunt een paragraaf kiezen achter welke de "
1954
+ "advertentie getoond zal worden."
1955
+
1956
+ #: ../classes/ad_placements.php:199
1957
+ #, php-format
1958
+ msgid "paragraph (%s)"
1959
+ msgstr "paragraaf (%s)"
1960
+
1961
+ #: ../classes/ad_placements.php:200
1962
+ #, php-format
1963
+ msgid "headline 2 (%s)"
1964
+ msgstr "koptekst 2 (%s)"
1965
+
1966
+ #: ../classes/ad_placements.php:201
1967
+ #, php-format
1968
+ msgid "headline 3 (%s)"
1969
+ msgstr "koptekst 3 (%s)"
1970
+
1971
+ #: ../classes/ad_placements.php:202
1972
+ #, php-format
1973
+ msgid "headline 4 (%s)"
1974
+ msgstr "koptekst 4 (%s)"
1975
+
1976
+ #: ../classes/ad_type_content.php:35
1977
+ msgid "Rich Content"
1978
+ msgstr "Rijke tekstopmaak"
1979
+
1980
+ #: ../classes/ad_type_content.php:36
1981
+ msgid ""
1982
+ "The full content editor from WordPress with all features like shortcodes, "
1983
+ "image upload or styling, but also simple text/html mode for scripts and code."
1984
+ msgstr ""
1985
+ "De volledige text-editor van WordPress met alle functionaliteiten zoals "
1986
+ "shortcodes, afbeelding uploads en stijlen maar ook de simpele text/html "
1987
+ "modus voor scripts en andere code."
1988
+
1989
+ #: ../classes/ad_type_content.php:63
1990
+ msgid "Please <strong>save the ad</strong> before changing it to the content type."
1991
+ msgstr ""
1992
+ "Sla alstublieft eerst de advertentie op alvorens u het content type "
1993
+ "veranderd."
1994
+
1995
+ #: ../classes/ad_type_content.php:66
1996
+ msgid "Save Draft"
1997
+ msgstr "Concept opslaan"
1998
+
1999
+ #: ../classes/ad_type_plain.php:31
2000
+ msgid "Plain Text and Code"
2001
+ msgstr "Platte tekst en code"
2002
+
2003
+ #: ../classes/ad_type_plain.php:32
2004
+ msgid ""
2005
+ "Simple text editor without any filters. You might use it to display "
2006
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
2007
+ "content field magic does not work here."
2008
+ msgstr ""
2009
+ "Simpele text-editor zonder enige filters. U kunt deze optie gebruiken om "
2010
+ "ongefilterde content, PHP code of JavaScript in te zetten. Shortcodes en "
2011
+ "andere WordPress magie is hierin niet te gebruiken."
2012
+
2013
+ #: ../classes/ad_type_plain.php:67
2014
+ msgid "Insert plain text or code into this field."
2015
+ msgstr "Vul hier uw platte tekst of code in."
2016
+
2017
+ #: ../classes/ad_type_plain.php:70
2018
+ msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2019
+ msgstr ""
2020
+ "Voer PHP code uit (zorg dat uw code omwikkeld is met <code>&lt;?php ?&gt;"
2021
+ "</code>)"
2022
+
2023
+ #: ../classes/EDD_SL_Plugin_Updater.php:177
2024
+ #, php-format
2025
+ msgid ""
2026
+ "There is a new version of %1$s available. <a target=\"_blank\" "
2027
+ "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
2028
+ msgstr ""
2029
+ "Er is een nieuwe versie van %1$s beschikbaar. <a target=\"_blank\" "
2030
+ "class=\"thickbox\" href=\"%2$s\">Bekijk versie %3$s details</a>."
2031
+
2032
+ #: ../classes/EDD_SL_Plugin_Updater.php:184
2033
+ #, php-format
2034
+ msgid ""
2035
+ "There is a new version of %1$s available. <a target=\"_blank\" "
2036
+ "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
2037
+ "href=\"%4$s\">update now</a>."
2038
+ msgstr ""
2039
+ "Er is een nieuwe versie van %1$s beschikbaar. <a target=\"_blank\" "
2040
+ "class=\"thickbox\" href=\"%2$s\">Bekijk versie %3$s details</a> of <a "
2041
+ "href=\"%4$s\">update nu</a>."
2042
+
2043
+ #: ../classes/EDD_SL_Plugin_Updater.php:324
2044
+ msgid "You do not have permission to install plugin updates"
2045
+ msgstr "U heeft niet genoeg rechten om plugin updates uit te voeren"
2046
+
2047
+ #: ../classes/EDD_SL_Plugin_Updater.php:324
2048
+ msgid "Error"
2049
+ msgstr "Foutmelding"
2050
+
2051
+ #: ../classes/visitor-conditions.php:32
2052
+ msgid "mobile device"
2053
+ msgstr "mobiel apparaat"
2054
+
2055
+ #: ../classes/visitor-conditions.php:33
2056
+ msgid "Display ads only on mobile devices or hide them."
2057
+ msgstr "Toon advertenties alleen op mobiele apparaten of verberg ze."
2058
+
2059
+ #: ../classes/visitor-conditions.php:38
2060
+ msgid "logged in visitor"
2061
+ msgstr "ingelogde bezoeker"
2062
+
2063
+ #: ../classes/visitor-conditions.php:39
2064
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
2065
+ msgstr ""
2066
+ "Of de bezoeker wel of niet ingelogd moet zijn om de advertentie te kunnen "
2067
+ "zien."
2068
+
2069
+ #: ../classes/visitor-conditions.php:87
2070
+ msgid "is"
2071
+ msgstr "is"
2072
+
2073
+ #: ../classes/visitor-conditions.php:88
2074
+ msgid "is not"
2075
+ msgstr "is niet"
2076
+
2077
+ #: ../classes/visitor-conditions.php:120
2078
+ msgid "equal"
2079
+ msgstr "gelijk aan"
2080
+
2081
+ #: ../classes/visitor-conditions.php:121
2082
+ msgid "equal or higher"
2083
+ msgstr "gelijk aan of hoger"
2084
+
2085
+ #: ../classes/visitor-conditions.php:122
2086
+ msgid "equal or lower"
2087
+ msgstr "gelijk aan of lager"
2088
+
2089
+ #: ../classes/visitor-conditions.php:154
2090
+ msgid "contains"
2091
+ msgstr "bevat"
2092
+
2093
+ #: ../classes/visitor-conditions.php:155
2094
+ msgid "starts with"
2095
+ msgstr "begint met"
2096
+
2097
+ #: ../classes/visitor-conditions.php:156
2098
+ msgid "ends with"
2099
+ msgstr "eindigd met"
2100
+
2101
+ #: ../classes/visitor-conditions.php:157
2102
+ msgid "matches"
2103
+ msgstr "komt overeen met"
2104
+
2105
+ #: ../classes/visitor-conditions.php:158
2106
+ msgid "matches regex"
2107
+ msgstr "komt overeen met regex"
2108
+
2109
+ #: ../classes/visitor-conditions.php:159
2110
+ msgid "does not contain"
2111
+ msgstr "bevat niet"
2112
+
2113
+ #: ../classes/visitor-conditions.php:160
2114
+ msgid "does not start with"
2115
+ msgstr "start niet met"
2116
+
2117
+ #: ../classes/visitor-conditions.php:161
2118
+ msgid "does not end with"
2119
+ msgstr "eindigd niet met"
2120
+
2121
+ #: ../classes/visitor-conditions.php:162
2122
+ msgid "does not match"
2123
+ msgstr "komt niet overeen met"
2124
+
2125
+ #: ../classes/visitor-conditions.php:163
2126
+ msgid "does not match regex"
2127
+ msgstr "komt niet overeen met regex"
2128
+
2129
+ #: ../classes/widget.php:25
2130
+ msgid "Display Ads and Ad Groups."
2131
+ msgstr "Toon advertenties en advertentiegroepen"
2132
+
2133
+ #: ../classes/widget.php:68
2134
+ msgid "Title:"
2135
+ msgstr "Titel:"
2136
+
2137
+ #: ../classes/widget.php:74
2138
+ msgid "--empty--"
2139
+ msgstr "--leeg--"
2140
+
2141
+ #: ../includes/array_ad_conditions.php:38
2142
+ msgid "Post Types"
2143
+ msgstr "Post Types"
2144
+
2145
+ #: ../includes/array_ad_conditions.php:44
2146
+ msgid "Categories, Tags and Taxonomies"
2147
+ msgstr "Categorieën, Tags en Taxonomieën"
2148
+
2149
+ #: ../includes/array_ad_conditions.php:45
2150
+ msgid ""
2151
+ "Choose terms from public category, tag and other taxonomies a post must "
2152
+ "belong to in order to have ads."
2153
+ msgstr ""
2154
+ "Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
2155
+ "waar een bericht bij moet horen om advertenties te tonen."
2156
+
2157
+ #: ../includes/array_ad_conditions.php:50
2158
+ msgid "Category Archives"
2159
+ msgstr "Categorie archieven"
2160
+
2161
+ #: ../includes/array_ad_conditions.php:51
2162
+ msgid "comma seperated IDs of category archives"
2163
+ msgstr "komma-gescheiden ID's of categorie archieven"
2164
+
2165
+ #: ../includes/array_ad_conditions.php:56
2166
+ msgid "Individual Posts, Pages and Public Post Types"
2167
+ msgstr "Individuele berichten, pagina's en publieke post types"
2168
+
2169
+ #: ../includes/array_ad_conditions.php:62
2170
+ msgid "Home Page"
2171
+ msgstr "Home pagina"
2172
+
2173
+ #: ../includes/array_ad_conditions.php:63
2174
+ msgid "show on Home page"
2175
+ msgstr "toon op home pagina"
2176
+
2177
+ #: ../includes/array_ad_conditions.php:67
2178
+ msgid "Singular Pages"
2179
+ msgstr "Singulaire pagina's"
2180
+
2181
+ #: ../includes/array_ad_conditions.php:68
2182
+ msgid "show on singular pages/posts"
2183
+ msgstr "toon op singulaire pagina's/berichten"
2184
+
2185
+ #: ../includes/array_ad_conditions.php:72
2186
+ msgid "Archive Pages"
2187
+ msgstr "Archief pagina's"
2188
+
2189
+ #: ../includes/array_ad_conditions.php:73
2190
+ msgid "show on any type of archive page (category, tag, author and date)"
2191
+ msgstr "toon op ieder type archief pagina (categorie, tag, auteur en datum)"
2192
+
2193
+ #: ../includes/array_ad_conditions.php:77
2194
+ msgid "Search Results"
2195
+ msgstr "Zoekresultaten"
2196
+
2197
+ #: ../includes/array_ad_conditions.php:78
2198
+ msgid "show on search result pages"
2199
+ msgstr "toon op zoekresultaten pagina's"
2200
+
2201
+ #: ../includes/array_ad_conditions.php:82
2202
+ msgid "404 Page"
2203
+ msgstr "404 pagina"
2204
+
2205
+ #: ../includes/array_ad_conditions.php:83
2206
+ msgid "show on 404 error page"
2207
+ msgstr "toon op 404 error pagina"
2208
+
2209
+ #: ../includes/array_ad_conditions.php:87
2210
+ msgid "Attachment Pages"
2211
+ msgstr "Bijlage pagina's"
2212
+
2213
+ #: ../includes/array_ad_conditions.php:88
2214
+ msgid "show on attachment pages"
2215
+ msgstr "toon op bijlage pagina's"
2216
+
2217
+ #: ../includes/array_ad_conditions.php:92
2218
+ msgid "Secondary Queries"
2219
+ msgstr "Secundaire queries"
2220
+
2221
+ #: ../includes/array_ad_conditions.php:93
2222
+ msgid "allow ads in secondary queries"
2223
+ msgstr "sta advertenties toe in secundaire queries"
2224
+
2225
+ #: ../modules/gadsense/main.php:19
2226
+ #, fuzzy
2227
+ msgid " at "
2228
+ msgstr "bij"
2229
+
2230
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:26 ..
2231
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:51
2232
+ msgid "Responsive"
2233
+ msgstr "Responsive"
2234
+
2235
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:44
2236
+ msgid "The ad details couldn't be retrieved from the ad code"
2237
+ msgstr "De advertentiedetails konden niet worden opgehaald vanuit de advertentiecode"
2238
+
2239
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:45
2240
+ msgid ""
2241
+ "Warning : The AdSense account from this code does not match the one set with "
2242
+ "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2243
+ "end."
2244
+ msgstr ""
2245
+ "Waarschuwing: Het AdSense account van deze code komt niet overeen met het "
2246
+ "account wat is ingesteld in de Advanced Ads plugin. Deze advertentie kan "
2247
+ "problemen veroorzaken wanneer deze wordt gebruikt op de voorkant van de "
2248
+ "website."
2249
+
2250
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:123 ..
2251
+ #: modules/gadsense/admin/class-gadsense-admin.php:227
2252
+ msgid "AdSense"
2253
+ msgstr "AdSense"
2254
+
2255
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:131
2256
+ msgid "AdSense ID"
2257
+ msgstr "AdSense ID"
2258
+
2259
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:140
2260
+ msgid "Limit to 3 ads"
2261
+ msgstr "Limiteer tot 3 advertenties"
2262
+
2263
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:168
2264
+ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2265
+ msgstr "Uw AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2266
+
2267
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:180
2268
+ #, php-format
2269
+ msgid "Limit to %d AdSense ads"
2270
+ msgstr "Limiteer tot %d AdSense advertenties"
2271
+
2272
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:184
2273
+ #, php-format
2274
+ msgid ""
2275
+ "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2276
+ "Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
2277
+ "this limitation at your own risks."
2278
+ msgstr ""
2279
+ "Op dit moment hanteert de Google AdSense <a target=\"_blank\" href=\"%s\" "
2280
+ "title=\"Terms Of Service\">TOS</a> een limiet van %d vertoningen per "
2281
+ "advertentie per pagina. U kunt deze limitatie op eigen risico uitschakelen."
2282
+
2283
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:187
2284
+ msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
2285
+ msgstr ""
2286
+ "Notificatie: Advanced Ads beschouwt alleen AdSense advertenties voor deze "
2287
+ "limiet."
2288
+
2289
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:205 ..
2290
+ #: modules/gadsense/includes/class-ad-type-adsense.php:73
2291
+ msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2292
+ msgstr "Het Publisher ID heeft een incorrect format. (moet starten met \"pub-\")"
2293
+
2294
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
2295
+ msgid "Copy&Paste existing ad code"
2296
+ msgstr "Kopieer & Plak bestaande advertentiecode"
2297
+
2298
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
2299
+ msgid "Ad Slot ID"
2300
+ msgstr "Ad Slot ID"
2301
+
2302
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
2303
+ #, php-format
2304
+ msgid "Publisher ID: %s"
2305
+ msgstr "Publisher ID: %s"
2306
+
2307
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
2308
+ #, php-format
2309
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2310
+ msgstr "<a href=\"%s\" target=\"_blank\">Pas het alstublieft hier aan</a>."
2311
+
2312
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
2313
+ msgid "Normal"
2314
+ msgstr "Normaal"
2315
+
2316
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
2317
+ #, php-format
2318
+ msgid ""
2319
+ "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2320
+ "define the exact creative for each browser width."
2321
+ msgstr ""
2322
+ "Gebruik de <a href=\"%s\" target=\"_blank\">Responsive add-on</a> om de exacte "
2323
+ "creative in te stellen voor iedere browser breedte. "
2324
+
2325
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
2326
+ msgid "Resizing"
2327
+ msgstr "Schalen"
2328
+
2329
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
2330
+ msgid "Copy the ad code from your AdSense account and paste it in the area below"
2331
+ msgstr ""
2332
+ "Kopieer de advertentiecode van uw AdSense account en plak de code in het "
2333
+ "tekstveld hieronder."
2334
+
2335
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
2336
+ msgid "Get details"
2337
+ msgstr "Verkrijg details"
2338
+
2339
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
2340
+ msgid "Close"
2341
+ msgstr "Sluiten"
2342
+
2343
+ #: ../modules/gadsense/includes/class-ad-type-adsense.php:35
2344
+ msgid "AdSense ad"
2345
+ msgstr "AdSense advertentie"
2346
+
2347
+ #: ../modules/gadsense/includes/class-ad-type-adsense.php:36
2348
+ msgid "Use ads from your Google AdSense account"
2349
+ msgstr "Gebruik advertenties van uw Google AdSense account"
2350
+
2351
+ #: ../modules/gadsense/includes/class-ad-type-adsense.php:101
2352
+ msgid "Your AdSense Publisher ID is missing."
2353
+ msgstr "Uw AdSense Publisher ID ontbreekt."
2354
+
2355
+ #: ../modules/gadsense/includes/class-gadsense-data.php:42
2356
+ msgid "Auto"
2357
+ msgstr "Automatisch"
2358
+
2359
+ #: ../public/class-advanced-ads.php:297
2360
+ #, php-format
2361
+ msgid "Advanced Ads Error: %s"
2362
+ msgstr "Advanced Ads Foutmelding: %s"
2363
+
2364
+ #: ../public/class-advanced-ads.php:515
2365
+ msgctxt "ad group general name"
2366
+ msgid "Ad Groups"
2367
+ msgstr "Advertentiegroepen"
2368
+
2369
+ #: ../public/class-advanced-ads.php:516
2370
+ msgctxt "ad group singular name"
2371
+ msgid "Ad Group"
2372
+ msgstr "Advertentiegroep"
2373
+
2374
+ #: ../public/class-advanced-ads.php:517
2375
+ msgid "Search Ad Groups"
2376
+ msgstr "Zoek advertentiegroepen"
2377
+
2378
+ #: ../public/class-advanced-ads.php:518
2379
+ msgid "All Ad Groups"
2380
+ msgstr "Alle advertentiegroepen"
2381
+
2382
+ #: ../public/class-advanced-ads.php:519
2383
+ msgid "Parent Ad Groups"
2384
+ msgstr "Bovenliggende advertentiegroepen"
2385
+
2386
+ #: ../public/class-advanced-ads.php:520
2387
+ msgid "Parent Ad Groups:"
2388
+ msgstr "Bovenliggende advertentiegroepen:"
2389
+
2390
+ #: ../public/class-advanced-ads.php:521
2391
+ msgid "Edit Ad Group"
2392
+ msgstr "Advertentiegroep bewerken"
2393
+
2394
+ #: ../public/class-advanced-ads.php:522
2395
+ msgid "Update Ad Group"
2396
+ msgstr "Advertentiegroep bijwerken"
2397
+
2398
+ #: ../public/class-advanced-ads.php:523
2399
+ msgid "Add New Ad Group"
2400
+ msgstr "Nieuwe advertentiegroep toevoegen"
2401
+
2402
+ #: ../public/class-advanced-ads.php:524
2403
+ msgid "New Ad Groups Name"
2404
+ msgstr "Nieuwe advertentiegroep naam"
2405
+
2406
+ #: ../public/class-advanced-ads.php:526
2407
+ msgid "No Ad Group found"
2408
+ msgstr "Geen advertentiegroep gevonden"
2409
+
2410
+ #: ../public/class-advanced-ads.php:554 ../public/class-advanced-ads.php:558
2411
+ msgid "New Ad"
2412
+ msgstr "Nieuwe advertentie"
2413
+
2414
+ #: ../public/class-advanced-ads.php:555
2415
+ msgid "Add New Ad"
2416
+ msgstr "Nieuwe advertentie toevoegen"
2417
+
2418
+ #: ../public/class-advanced-ads.php:557
2419
+ msgid "Edit Ad"
2420
+ msgstr "Advertentie bewerken"
2421
+
2422
+ #: ../public/class-advanced-ads.php:559
2423
+ msgid "View"
2424
+ msgstr "Bekijken"
2425
+
2426
+ #: ../public/class-advanced-ads.php:560
2427
+ msgid "View the Ad"
2428
+ msgstr "Bekijk de advertentie"
2429
+
2430
+ #: ../public/class-advanced-ads.php:561
2431
+ msgid "Search Ads"
2432
+ msgstr "Advertenties zoeken"
2433
+
2434
+ #: ../public/class-advanced-ads.php:562
2435
+ msgid "No Ads found"
2436
+ msgstr "Geen advertenties gevonden"
2437
+
2438
+ #: ../public/class-advanced-ads.php:563
2439
+ msgid "No Ads found in Trash"
2440
+ msgstr "Geen advertenties gevonden in de prullenbak"
2441
+
2442
+ #: ../public/class-advanced-ads.php:564
2443
+ msgid "Parent Ad"
2444
+ msgstr "Bovenliggende advertentie"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id
4
  Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.3
7
- Stable tag: 1.6.8.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -113,7 +113,7 @@ There is an ad type dedicated to Google AdSense that supports:
113
 
114
  Learn more on the [plugin homepage](https://wpadvancedads.com).
115
 
116
- Localizations: English, German, Italien, Portuguese
117
 
118
  > <strong>Add-Ons</strong>
119
  >
@@ -186,6 +186,12 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
186
 
187
  == Changelog ==
188
 
 
 
 
 
 
 
189
  = 1.6.8.2 =
190
 
191
  * added introduction page with first steps
4
  Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.3
7
+ Stable tag: 1.6.8.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
113
 
114
  Learn more on the [plugin homepage](https://wpadvancedads.com).
115
 
116
+ Localizations: English, German, Dutch, Italian, Portuguese
117
 
118
  > <strong>Add-Ons</strong>
119
  >
186
 
187
  == Changelog ==
188
 
189
+ = 1.6.8.3 =
190
+
191
+ * Hoe vet is dat!? – added Dutch translation
192
+ * fix selecting placement type in IE 11
193
+ * fix errors with content injection when mbstring extension is missing on the server
194
+
195
  = 1.6.8.2 =
196
 
197
  * added introduction page with first steps