Advanced Ads - Version 1.7.5

Version Description

  • prepared for Advanced Ads Pro 1.4 with ad reloads, single request mode and placement tests
Download this release

Release Info

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

Code changes from version 1.7.4.5 to 1.7.5

admin/assets/css/admin.css CHANGED
@@ -194,7 +194,7 @@ select + .advads-conditions-single { display: inline-block; }
194
  .advads-placements-table tbody tr { border-top: 1px solid #f1f1f1; }
195
  .advads-placements-table tbody tr td:first-child { width: 70px; }
196
  .advads-placements-table tbody tr td:nth-child(2) { width: 100px; }
197
- .advads-placements-table tbody tr td:nth-child(4) { width: 70px; }
198
  .advads-placements-table th { margin: 0; padding: 10px; text-align: left; vertical-align: top; }
199
  .advads-placements-table.widefat tbody th { font-weight: bold; }
200
  .advads-placements-table th span { font-weight: normal; }
194
  .advads-placements-table tbody tr { border-top: 1px solid #f1f1f1; }
195
  .advads-placements-table tbody tr td:first-child { width: 70px; }
196
  .advads-placements-table tbody tr td:nth-child(2) { width: 100px; }
197
+ .advads-placements-table tbody tr td:last-child { width: 70px; }
198
  .advads-placements-table th { margin: 0; padding: 10px; text-align: left; vertical-align: top; }
199
  .advads-placements-table.widefat tbody th { font-weight: bold; }
200
  .advads-placements-table th span { font-weight: normal; }
admin/views/ad-output-metabox.php CHANGED
@@ -44,9 +44,14 @@
44
  <p class="description"><?php _e( 'Specify one or more classes for the container. Separate multiple classes with a space', 'advanced-ads.' ); ?></p>
45
  </div>
46
  <hr class="advads-hide-in-wizard"/>
47
- <label class="label advads-hide-in-wizard"><?php _e( 'Enable debug mode', 'advanced-ads' ); ?></label>
48
  <div class="advads-hide-in-wizard">
49
- <input type="checkbox" name="advanced_ad[output][debugmode]" value="1"<?php if ( isset($options['debugmode']) ) { checked( $options['debugmode'], 1 ); } ?>/>
 
50
  <a href="<?php echo ADVADS_URL; ?>manual/ad-debug-mode/#utm_source=advanced-ads&utm_medium=link&utm_campaign=ad-debug-mode" target="_blank"><?php _e( 'Manual', 'advanced-ads' ); ?></a>
51
  </div>
 
 
 
 
52
  </div>
44
  <p class="description"><?php _e( 'Specify one or more classes for the container. Separate multiple classes with a space', 'advanced-ads.' ); ?></p>
45
  </div>
46
  <hr class="advads-hide-in-wizard"/>
47
+ <label for="advads-output-debugmode" class="label advads-hide-in-wizard"><?php _e( 'Enable debug mode', 'advanced-ads' ); ?></label>
48
  <div class="advads-hide-in-wizard">
49
+ <input id="advads-output-debugmode" type="checkbox" name="advanced_ad[output][debugmode]" value="1"<?php if ( isset($options['debugmode']) ) { checked( $options['debugmode'], 1 ); } ?>/>
50
+
51
  <a href="<?php echo ADVADS_URL; ?>manual/ad-debug-mode/#utm_source=advanced-ads&utm_medium=link&utm_campaign=ad-debug-mode" target="_blank"><?php _e( 'Manual', 'advanced-ads' ); ?></a>
52
  </div>
53
+
54
+
55
+ <?php do_action( 'advanced-ads-output-metabox-after', $ad ); ?>
56
+
57
  </div>
admin/views/placements.php CHANGED
@@ -14,7 +14,8 @@
14
  <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
15
  <p class="description"><?php _e( 'Placements are physically places in your theme and posts. You can use them if you plan to change ads and ad groups on the same place without the need to change your templates.', 'advanced-ads' ); ?></p>
16
  <p class="description"><?php printf( __( 'See also the manual for more information on <a href="%s">placements</a>.', 'advanced-ads' ), ADVADS_URL . 'manual/placements/#utm_source=advanced-ads&utm_medium=link&utm_campaign=placements' ); ?></p>
17
- <?php if ( isset($placements) && is_array( $placements ) && count( $placements ) ) : ?>
 
18
  <h2><?php _e( 'Placements', 'advanced-ads' ); ?></h2>
19
  <form method="POST" action="">
20
  <table class="widefat advads-placements-table striped">
@@ -23,6 +24,7 @@
23
  <th><?php _e( 'Type', 'advanced-ads' ); ?></th>
24
  <th><?php _e( 'Name', 'advanced-ads' ); ?></th>
25
  <th><?php _e( 'Options', 'advanced-ads' ); ?></th>
 
26
  <th></th>
27
  </tr>
28
  </thead>
@@ -129,6 +131,7 @@
129
  ?></div><?php
130
  endif;
131
  ?></td>
 
132
  <td>
133
  <input type="checkbox" id="adsads-placements-item-delete-<?php echo $_placement_slug; ?>" name="advads[placements][<?php echo $_placement_slug; ?>][delete]" value="1"/>
134
  <label for="adsads-placements-item-delete-<?php echo $_placement_slug; ?>"><?php _ex( 'delete', 'checkbox to remove placement', 'advanced-ads' ); ?></label>
@@ -137,10 +140,11 @@
137
  <?php endforeach; ?>
138
  </tbody>
139
  </table>
140
- <input type="submit" class="button button-primary" value="<?php _e( 'Save Placements', 'advanced-ads' ); ?>"/>
141
  <?php wp_nonce_field( 'advads-placement', 'advads_placement', true ) ?>
142
  <button type="button" title="<?php _e( 'Create a new placement', 'advanced-ads' ); ?>" class="button-secondary" onclick="advads_toggle('.advads-placements-new-form')"><?php
143
  _e( 'New Placement', 'advanced-ads' ); ?></button>
 
144
  </form>
145
  <?php do_action( 'advanced-ads-placements-list-after', $placements );
146
  endif;
14
  <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
15
  <p class="description"><?php _e( 'Placements are physically places in your theme and posts. You can use them if you plan to change ads and ad groups on the same place without the need to change your templates.', 'advanced-ads' ); ?></p>
16
  <p class="description"><?php printf( __( 'See also the manual for more information on <a href="%s">placements</a>.', 'advanced-ads' ), ADVADS_URL . 'manual/placements/#utm_source=advanced-ads&utm_medium=link&utm_campaign=placements' ); ?></p>
17
+ <?php if ( isset($placements) && is_array( $placements ) && count( $placements ) ) :
18
+ do_action( 'advanced-ads-placements-list-before', $placements ); ?>
19
  <h2><?php _e( 'Placements', 'advanced-ads' ); ?></h2>
20
  <form method="POST" action="">
21
  <table class="widefat advads-placements-table striped">
24
  <th><?php _e( 'Type', 'advanced-ads' ); ?></th>
25
  <th><?php _e( 'Name', 'advanced-ads' ); ?></th>
26
  <th><?php _e( 'Options', 'advanced-ads' ); ?></th>
27
+ <?php do_action( 'advanced-ads-placements-list-column-header' ); ?>
28
  <th></th>
29
  </tr>
30
  </thead>
131
  ?></div><?php
132
  endif;
133
  ?></td>
134
+ <?php do_action( 'advanced-ads-placements-list-column', $_placement_slug, $_placement ); ?>
135
  <td>
136
  <input type="checkbox" id="adsads-placements-item-delete-<?php echo $_placement_slug; ?>" name="advads[placements][<?php echo $_placement_slug; ?>][delete]" value="1"/>
137
  <label for="adsads-placements-item-delete-<?php echo $_placement_slug; ?>"><?php _ex( 'delete', 'checkbox to remove placement', 'advanced-ads' ); ?></label>
140
  <?php endforeach; ?>
141
  </tbody>
142
  </table>
143
+ <input type="submit" id="advads-save-placements-button" class="button button-primary" value="<?php _e( 'Save Placements', 'advanced-ads' ); ?>"/>
144
  <?php wp_nonce_field( 'advads-placement', 'advads_placement', true ) ?>
145
  <button type="button" title="<?php _e( 'Create a new placement', 'advanced-ads' ); ?>" class="button-secondary" onclick="advads_toggle('.advads-placements-new-form')"><?php
146
  _e( 'New Placement', 'advanced-ads' ); ?></button>
147
+ <?php do_action( 'advanced-ads-placements-list-buttons', $placements ); ?>
148
  </form>
149
  <?php do_action( 'advanced-ads-placements-list-after', $placements );
150
  endif;
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.7.4.5
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
- define( 'ADVADS_VERSION', '1.7.4.5' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * 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.7.5
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
+ define( 'ADVADS_VERSION', '1.7.5' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
classes/EDD_SL_Plugin_Updater.php CHANGED
@@ -183,7 +183,7 @@ class EDD_SL_Plugin_Updater {
183
 
184
  if ( empty( $version_info->download_link ) ) {
185
  printf(
186
- __( 'There is a new version of %1$s available. %2$sView version %3$s details%4$s.', 'easy-digital-downloads' ),
187
  esc_html( $version_info->name ),
188
  '<a target="_blank" class="thickbox" href="' . esc_url( $changelog_link ) . '">',
189
  esc_html( $version_info->new_version ),
@@ -191,7 +191,7 @@ class EDD_SL_Plugin_Updater {
191
  );
192
  } else {
193
  printf(
194
- __( 'There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s.', 'easy-digital-downloads' ),
195
  esc_html( $version_info->name ),
196
  '<a target="_blank" class="thickbox" href="' . esc_url( $changelog_link ) . '">',
197
  esc_html( $version_info->new_version ),
183
 
184
  if ( empty( $version_info->download_link ) ) {
185
  printf(
186
+ __( 'There is a new version of %1$s available. %2$sView version %3$s details%4$s.', 'advanced-ads' ),
187
  esc_html( $version_info->name ),
188
  '<a target="_blank" class="thickbox" href="' . esc_url( $changelog_link ) . '">',
189
  esc_html( $version_info->new_version ),
191
  );
192
  } else {
193
  printf(
194
+ __( 'There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s.', 'advanced-ads' ),
195
  esc_html( $version_info->name ),
196
  '<a target="_blank" class="thickbox" href="' . esc_url( $changelog_link ) . '">',
197
  esc_html( $version_info->new_version ),
classes/ad-ajax.php CHANGED
@@ -26,8 +26,6 @@ class Advanced_Ads_Ajax {
26
 
27
  /**
28
  * Simple wp ajax interface for ad selection.
29
- *
30
- * Provides a single ad given ID and selection method.
31
  */
32
  public function advads_ajax_ad_select() {
33
  // set proper header
@@ -36,40 +34,62 @@ class Advanced_Ads_Ajax {
36
  // allow modules / add ons to test (this is rather late but should happen before anything important is called)
37
  do_action( 'advanced-ads-ajax-ad-select-init' );
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  // init handlers
40
  $selector = Advanced_Ads_Select::get_instance();
41
  $methods = $selector->get_methods();
42
- $method = isset( $_REQUEST['ad_method'] ) ? (string) $_REQUEST['ad_method'] : null;
43
- $id = isset( $_REQUEST['ad_id'] ) ? (string) $_REQUEST['ad_id'] : null;
44
- $arguments = isset( $_REQUEST['ad_args'] ) ? $_REQUEST['ad_args'] : array();
45
  if (is_string($arguments)) {
46
  $arguments = stripslashes($arguments);
47
  $arguments = json_decode($arguments, true);
48
  }
49
- $adIds = isset( $_REQUEST['ad_ids'] ) ? $_REQUEST['ad_ids'] : null;
50
- if ( is_string( $adIds ) ) {
51
- $adIds = json_decode( $adIds, true );
52
- }
53
 
54
  $response = array();
55
  if ( isset( $methods[ $method ] ) && isset( $id ) ) {
56
  $advads = Advanced_Ads::get_instance();
57
- if (is_array($adIds)) { // ads loaded previously and passed by query
58
- $advads->current_ads += $adIds;
59
- }
60
  $l = count( $advads->current_ads );
61
 
62
  // build content
63
  $content = $selector->get_ad_by_method( $id, $method, $arguments );
64
  $adIds = array_slice( $advads->current_ads, $l ); // ads loaded by this request
65
 
66
- $response = array( 'status' => 'success', 'item' => $content, 'id' => $id, 'method' => $method, 'ads' => $adIds );
67
  } else {
68
  // report error
69
- $response = array( 'status' => 'error', 'message' => 'No valid ID or METHOD found.' );
70
  }
71
-
72
- echo json_encode( $response );
73
- die();
74
  }
75
  }
26
 
27
  /**
28
  * Simple wp ajax interface for ad selection.
 
 
29
  */
30
  public function advads_ajax_ad_select() {
31
  // set proper header
34
  // allow modules / add ons to test (this is rather late but should happen before anything important is called)
35
  do_action( 'advanced-ads-ajax-ad-select-init' );
36
 
37
+ $adIds = isset( $_REQUEST['ad_ids'] ) ? $_REQUEST['ad_ids'] : null;
38
+ if ( is_string( $adIds ) ) {
39
+ $adIds = json_decode( $adIds, true );
40
+ }
41
+ if (is_array($adIds)) { // ads loaded previously and passed by query
42
+ Advanced_Ads::get_instance()->current_ads += $adIds;
43
+ }
44
+
45
+ $deferedAds = isset( $_REQUEST['deferedAds'] ) ? $_REQUEST['deferedAds'] : null;
46
+ if ( $deferedAds ) { // load all ajax ads with a single request
47
+ $response = array();
48
+
49
+ foreach ( (array) $deferedAds as $request ) {
50
+ $result = $this->select_one( $request );
51
+ $result['elementId'] = ! empty( $request['elementId'] ) ? $request['elementId'] : null;
52
+ $response[] = $result;
53
+ }
54
+ echo json_encode( $response );
55
+ die();
56
+ }
57
+
58
+ $response = $this->select_one( $_REQUEST );
59
+ echo json_encode( $response );
60
+ die();
61
+ }
62
+
63
+ /**
64
+ * Provides a single ad (ad, group, placement) given ID and selection method.
65
+ *
66
+ * @param $request array
67
+ */
68
+ private function select_one( $request ) {
69
  // init handlers
70
  $selector = Advanced_Ads_Select::get_instance();
71
  $methods = $selector->get_methods();
72
+ $method = isset( $request['ad_method'] ) ? (string) $request['ad_method'] : null;
73
+ $id = isset( $request['ad_id'] ) ? (string) $request['ad_id'] : null;
74
+ $arguments = isset( $request['ad_args'] ) ? $request['ad_args'] : array();
75
  if (is_string($arguments)) {
76
  $arguments = stripslashes($arguments);
77
  $arguments = json_decode($arguments, true);
78
  }
 
 
 
 
79
 
80
  $response = array();
81
  if ( isset( $methods[ $method ] ) && isset( $id ) ) {
82
  $advads = Advanced_Ads::get_instance();
 
 
 
83
  $l = count( $advads->current_ads );
84
 
85
  // build content
86
  $content = $selector->get_ad_by_method( $id, $method, $arguments );
87
  $adIds = array_slice( $advads->current_ads, $l ); // ads loaded by this request
88
 
89
+ return array( 'status' => 'success', 'item' => $content, 'id' => $id, 'method' => $method, 'ads' => $adIds );
90
  } else {
91
  // report error
92
+ return array( 'status' => 'error', 'message' => 'No valid ID or METHOD found.' );
93
  }
 
 
 
94
  }
95
  }
classes/ad-model.php CHANGED
@@ -118,4 +118,14 @@ class Advanced_Ads_Model {
118
 
119
  return $this->ad_placements;
120
  }
 
 
 
 
 
 
 
 
 
 
121
  }
118
 
119
  return $this->ad_placements;
120
  }
121
+
122
+ /**
123
+ * update the array with ad placements
124
+ *
125
+ * @param arr $ad_placements
126
+ */
127
+ public function update_ad_placements_array( $ad_placements ) {
128
+ update_option( 'advads-ads-placements', $ad_placements );
129
+ $this->ad_placements = $ad_placements;
130
+ }
131
  }
classes/ad-select.php CHANGED
@@ -82,7 +82,7 @@ class Advanced_Ads_Select {
82
  if ( $id || ! isset( $args['id'] ) ) $args['id'] = $id;
83
  $args['method'] = $method;
84
 
85
- $args = apply_filters( 'advanced-ads-ad-select-args', $args );
86
 
87
  return $args;
88
  }
82
  if ( $id || ! isset( $args['id'] ) ) $args['id'] = $id;
83
  $args['method'] = $method;
84
 
85
+ $args = apply_filters( 'advanced-ads-ad-select-args', $args, $method, $id );
86
 
87
  return $args;
88
  }
classes/ad.php CHANGED
@@ -118,6 +118,9 @@ class Advanced_Ads_Ad {
118
  $this->id = $id;
119
  $this->args = is_array( $args ) ? $args : array();
120
 
 
 
 
121
  if ( ! empty($id) ) { $this->load( $id ); }
122
 
123
  // dynamically add sanitize filters for condition types
@@ -257,7 +260,7 @@ class Advanced_Ads_Ad {
257
  public function output( $output_options = array() ){
258
  if ( ! $this->is_ad ) { return ''; }
259
 
260
- $output_options = wp_parse_args( $output_options, array( 'global_output' => true ) );
261
 
262
  // switch between normal and debug mode
263
  if( isset( $this->output['debugmode'] ) ){
@@ -266,9 +269,9 @@ class Advanced_Ads_Ad {
266
  $output = $this->prepare_frontend_output();
267
  }
268
 
 
 
269
  if ( $output_options['global_output'] ) {
270
- // add the ad to the global output array
271
- $advads = Advanced_Ads::get_instance();
272
  $advads->current_ads[] = array('type' => 'ad', 'id' => $this->id, 'title' => $this->title, 'output' => $output);
273
  }
274
 
@@ -759,6 +762,8 @@ class Advanced_Ads_Ad {
759
  $wrapper['style']['height'] = intval( $this->height ) . 'px';
760
  }
761
 
 
 
762
  return $wrapper;
763
  }
764
 
@@ -857,14 +862,20 @@ class Advanced_Ads_Ad {
857
  * @return str $output
858
  */
859
  public function maybe_add_label( &$output ) {
860
- if ( $this->type !== 'group' && $label = Advanced_Ads::get_instance()->get_label() ) {
861
- if ( isset( $this->args['group_info']['type'] ) && $this->args['group_info']['type'] === 'slider' ) {
 
 
 
 
 
 
 
862
  return $output;
863
  }
864
  // first ad in a group or single ad without group, and not group output for passive cb
865
  if ( empty( $this->args['group_info']['ads_displayed'] ) && empty( $this->args['group_info']['passive_cb'] ) ) {
866
  $output = $label . $output;
867
- // output label for every ad when slider is used
868
  }
869
  }
870
 
118
  $this->id = $id;
119
  $this->args = is_array( $args ) ? $args : array();
120
 
121
+ // whether the ad will be tracked
122
+ $this->global_output = isset( $this->args['global_output'] ) ? (bool) $this->args['global_output'] : true;
123
+
124
  if ( ! empty($id) ) { $this->load( $id ); }
125
 
126
  // dynamically add sanitize filters for condition types
260
  public function output( $output_options = array() ){
261
  if ( ! $this->is_ad ) { return ''; }
262
 
263
+ $output_options['global_output'] = isset( $output_options['global_output'] ) ? $output_options['global_output'] : $this->global_output;
264
 
265
  // switch between normal and debug mode
266
  if( isset( $this->output['debugmode'] ) ){
269
  $output = $this->prepare_frontend_output();
270
  }
271
 
272
+ // add the ad to the global output array
273
+ $advads = Advanced_Ads::get_instance();
274
  if ( $output_options['global_output'] ) {
 
 
275
  $advads->current_ads[] = array('type' => 'ad', 'id' => $this->id, 'title' => $this->title, 'output' => $output);
276
  }
277
 
762
  $wrapper['style']['height'] = intval( $this->height ) . 'px';
763
  }
764
 
765
+ $wrapper['data-id'] = $this->id;
766
+
767
  return $wrapper;
768
  }
769
 
862
  * @return str $output
863
  */
864
  public function maybe_add_label( &$output ) {
865
+ if ( isset( $this->args['placement_type'] ) && $this->args['placement_type'] !== 'header' &&
866
+ $this->type !== 'group' &&
867
+ $label = Advanced_Ads::get_instance()->get_label()
868
+ ) {
869
+ // ignore slider and group with refresh
870
+ if ( isset( $this->args['group_info']['type'] ) &&
871
+ $this->args['group_info']['type'] === 'slider' &&
872
+ ! empty( $this->args['group_info']['refresh_enabled'] )
873
+ ) {
874
  return $output;
875
  }
876
  // first ad in a group or single ad without group, and not group output for passive cb
877
  if ( empty( $this->args['group_info']['ads_displayed'] ) && empty( $this->args['group_info']['passive_cb'] ) ) {
878
  $output = $label . $output;
 
879
  }
880
  }
881
 
classes/ad_group.php CHANGED
@@ -175,12 +175,12 @@ class Advanced_Ads_Group {
175
  $ad_count = apply_filters( 'advanced-ads-group-ad-count', $this->ad_count, $this );
176
 
177
  $ad_select = Advanced_Ads_Select::get_instance();
 
 
 
 
178
  foreach ( $ordered_ad_ids as $_ad_id ) {
179
- // the Advanced_Ads_Ad obj can access this info
180
- $this->ad_args['group_info'] = array(
181
- 'ads_displayed' => $ads_displayed,
182
- 'type' => $this->type
183
- );
184
 
185
  // load the ad object
186
  $ad = $ad_select->get_ad_by_method( $_ad_id, Advanced_Ads_Select::AD, $this->ad_args );
175
  $ad_count = apply_filters( 'advanced-ads-group-ad-count', $this->ad_count, $this );
176
 
177
  $ad_select = Advanced_Ads_Select::get_instance();
178
+
179
+ // the Advanced_Ads_Ad obj can access this info
180
+ $this->ad_args['group_info'] = array( 'refresh_enabled' => ! empty( $this->options['refresh']['enabled'] ), 'type' => $this->type );
181
+
182
  foreach ( $ordered_ad_ids as $_ad_id ) {
183
+ $this->ad_args['group_info']['ads_displayed'] = $ads_displayed;
 
 
 
 
184
 
185
  // load the ad object
186
  $ad = $ad_select->get_ad_by_method( $_ad_id, Advanced_Ads_Select::AD, $this->ad_args );
classes/ad_placements.php CHANGED
@@ -78,6 +78,8 @@ class Advanced_Ads_Placements {
78
  return;
79
  }
80
 
 
 
81
  if ( isset($_POST['advads']['placement']) && check_admin_referer( 'advads-placement', 'advads_placement' ) ){
82
  $success = self::save_new_placement( $_POST['advads']['placement'] );
83
  }
@@ -86,6 +88,8 @@ class Advanced_Ads_Placements {
86
  $success = self::save_placements( $_POST['advads']['placements'] );
87
  }
88
 
 
 
89
  if(isset($success)){
90
  $message = $success ? 'updated' : 'error';
91
  wp_redirect( esc_url_raw( add_query_arg(array('message' => $message)) ) );
@@ -132,7 +136,7 @@ class Advanced_Ads_Placements {
132
  }
133
 
134
  // save array
135
- update_option( 'advads-ads-placements', $placements );
136
 
137
  return $new_placement['slug'];
138
  }
@@ -169,7 +173,7 @@ class Advanced_Ads_Placements {
169
  }
170
 
171
  // save array
172
- update_option( 'advads-ads-placements', $placements );
173
 
174
  return true;
175
  }
78
  return;
79
  }
80
 
81
+ $success = null;
82
+
83
  if ( isset($_POST['advads']['placement']) && check_admin_referer( 'advads-placement', 'advads_placement' ) ){
84
  $success = self::save_new_placement( $_POST['advads']['placement'] );
85
  }
88
  $success = self::save_placements( $_POST['advads']['placements'] );
89
  }
90
 
91
+ $success = apply_filters( 'advanced-ads-update-placements', $success );
92
+
93
  if(isset($success)){
94
  $message = $success ? 'updated' : 'error';
95
  wp_redirect( esc_url_raw( add_query_arg(array('message' => $message)) ) );
136
  }
137
 
138
  // save array
139
+ Advanced_Ads::get_instance()->get_model()->update_ad_placements_array( $placements );
140
 
141
  return $new_placement['slug'];
142
  }
173
  }
174
 
175
  // save array
176
+ Advanced_Ads::get_instance()->get_model()->update_ad_placements_array( $placements );
177
 
178
  return true;
179
  }
languages/advanced-ads-de_DE.mo DELETED
Binary file
languages/advanced-ads-de_DE.po DELETED
@@ -1,3166 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Advanved Ads\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-01-27 16:47+0100\n"
6
- "PO-Revision-Date: Mon Jun 13 2016 14:41:29 GMT+0200 (CEST)\n"
7
- "Last-Translator: admin <post@webzunft.de>\n"
8
- "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
9
- "Language: German\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-Basepath: .\n"
17
- "X-Poedit-SearchPath-0: ../../plugins/advanced-ads\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "X-Loco-Target-Locale: de_DE"
24
-
25
- #: ../admin/views/ad-display-metabox.php:50
26
- msgid "Forced to OR."
27
- msgstr "ODER erzwungen."
28
-
29
- #: ../admin/views/ad-display-metabox.php:51 ../admin/views/ad-info-top.php:45
30
- msgid "manual"
31
- msgstr "Anleitung"
32
-
33
- #: ../admin/views/ad-info-top.php:42
34
- msgid ""
35
- "The Wizard helps you to quickly create and publish an ad. Therefore, only "
36
- "the most common options are visible."
37
- msgstr ""
38
- "Der Wizard hilft dabei eine Anzeige schnell zu erstellen und zu "
39
- "veröffentlichen. Es sind nur die wichtigsten Funktionen sichtbar."
40
-
41
- #: ../admin/views/ad-parameters-metabox.php:29
42
- msgid ""
43
- "The code of this ad might not work properly with the <em>Content</em> "
44
- "placement."
45
- msgstr ""
46
- "Der Code dieser Anzeige könnte bei Nutzung im Inhaltsbereich zu Fehlern "
47
- "führen."
48
-
49
- #: ../admin/views/ad-parameters-metabox.php:30
50
- #, php-format
51
- msgid "Reach out to <a href=\"%s\">support</a> to get help."
52
- msgstr "Kontaktieren Sie ggf. den Support für weitere Informationen."
53
-
54
- #: ../admin/views/feedback_disable.php:3
55
- msgid "Thank you for helping to improve Advanced Ads."
56
- msgstr ""
57
-
58
- #: ../admin/views/feedback_disable.php:4
59
- msgid ""
60
- "Your feedback will motivates me to work harder towards a professional ad "
61
- "management solution."
62
- msgstr ""
63
-
64
- #: ../admin/views/feedback_disable.php:5
65
- msgid "Why did you decide to disable Advanced Ads?"
66
- msgstr ""
67
-
68
- #: ../admin/views/feedback_disable.php:7
69
- msgid "I stopped showing ads on my site"
70
- msgstr ""
71
-
72
- #: ../admin/views/feedback_disable.php:9
73
- msgid "I have a technical problem"
74
- msgstr ""
75
-
76
- #: ../admin/views/feedback_disable.php:10
77
- msgid "other reason"
78
- msgstr ""
79
-
80
- #: ../admin/views/feedback_disable.php:12
81
- msgid "Please specify, if possible"
82
- msgstr ""
83
-
84
- #: ../admin/views/feedback_disable.php:13
85
- msgid "What would be a reason to return to Advanced Ads?"
86
- msgstr ""
87
-
88
- #. Plugin Name of the plugin/theme
89
- msgid "Advanced Ads"
90
- msgstr "Advanced Ads"
91
-
92
- #. Plugin URI of the plugin/theme
93
- msgid "https://wpadvancedads.com"
94
- msgstr "https://wpadvancedads.com"
95
-
96
- #. Description of the plugin/theme
97
- msgid "Manage and optimize your ads in WordPress"
98
- msgstr "Anzeigen in WordPress verwalten und optimieren."
99
-
100
- #. Author of the plugin/theme
101
- msgid "Thomas Maier"
102
- msgstr "Thomas Maier"
103
-
104
- #. Author URI of the plugin/theme
105
- msgid "http://webgilde.com"
106
- msgstr "http://webgilde.com"
107
-
108
- #: ../admin/class-advanced-ads-admin.php:223 ../admin/views/ad-display-metabox.
109
- #: php:103 ../classes/display-conditions.php:169 ../classes/visitor-conditions.
110
- #: php:214
111
- msgid "or"
112
- msgstr "oder"
113
-
114
- #: ../admin/class-advanced-ads-admin.php:224 ../admin/views/ad-visitor-metabox.
115
- #: php:68 ../classes/display-conditions.php:169 ../classes/visitor-conditions.php:
116
- #: 214
117
- msgid "and"
118
- msgstr "und"
119
-
120
- #: ../admin/class-advanced-ads-admin.php:225
121
- msgid "After which paragraph?"
122
- msgstr "Nach welchem Absatz?"
123
-
124
- #: ../admin/class-advanced-ads-admin.php:292
125
- msgid "Overview"
126
- msgstr "Übersicht"
127
-
128
- #: ../admin/class-advanced-ads-admin.php:296 ../admin/class-advanced-ads-admin.
129
- #: php:296 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
130
- #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
131
- #: admin/views/placements.php:81 ../admin/views/placements.php:185 ..
132
- #: classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
133
- #: public/class-advanced-ads.php:590
134
- msgid "Ads"
135
- msgstr "Anzeigen"
136
-
137
- #: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:593
138
- msgid "Add New Ad"
139
- msgstr "Neue Anzeige hinzufügen"
140
-
141
- #: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:592
142
- #: ../public/class-advanced-ads.php:596
143
- msgid "New Ad"
144
- msgstr "Neue Anzeige"
145
-
146
- #: ../admin/class-advanced-ads-admin.php:307 ../admin/includes/class-shortcode-
147
- #: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
148
- #: 178 ../classes/widget.php:82
149
- msgid "Ad Groups"
150
- msgstr "Anzeigen-Gruppen"
151
-
152
- #: ../admin/class-advanced-ads-admin.php:307 ../modules/import-export/views/page.
153
- #: php:24 ../public/class-advanced-ads.php:563
154
- msgid "Groups"
155
- msgstr "Gruppen"
156
-
157
- #: ../admin/class-advanced-ads-admin.php:312
158
- msgid "Ad Placements"
159
- msgstr "Anzeigen-Platzierungen"
160
-
161
- #: ../admin/class-advanced-ads-admin.php:312 ../admin/includes/class-shortcode-
162
- #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75 ..
163
- #: modules/import-export/views/page.php:25
164
- msgid "Placements"
165
- msgstr "Platzierungen"
166
-
167
- #: ../admin/class-advanced-ads-admin.php:316
168
- msgid "Advanced Ads Settings"
169
- msgstr "Advanced-Ads-Einstellungen"
170
-
171
- #: ../admin/class-advanced-ads-admin.php:316 ../admin/class-advanced-ads-admin.
172
- #: php:564 ../admin/views/debug.php:10
173
- msgid "Settings"
174
- msgstr "Einstellungen"
175
-
176
- #: ../admin/class-advanced-ads-admin.php:319
177
- msgid "Advanced Ads Debugging"
178
- msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
179
-
180
- #: ../admin/class-advanced-ads-admin.php:319
181
- msgid "Debug"
182
- msgstr "Debug"
183
-
184
- #: ../admin/class-advanced-ads-admin.php:323 ../admin/class-advanced-ads-admin.
185
- #: php:323
186
- msgid "Advanced Ads Intro"
187
- msgstr "Advanced Ads Einführung"
188
-
189
- #: ../admin/class-advanced-ads-admin.php:327 ../admin/class-advanced-ads-admin.
190
- #: php:327 ../admin/class-advanced-ads-admin.php:2159
191
- msgid "Support"
192
- msgstr "Support"
193
-
194
- #: ../admin/class-advanced-ads-admin.php:439
195
- msgid "Please enter a message"
196
- msgstr "Bitte geben Sie eine Nachricht ein."
197
-
198
- #: ../admin/class-advanced-ads-admin.php:449
199
- #, php-format
200
- msgid "Email could NOT be sent. Please contact us directly at %s."
201
- msgstr ""
202
- "Die E-Mail konnte nicht gesendet werden. Bitte kontaktieren Sie uns direkt "
203
- "unter %s."
204
-
205
- #: ../admin/class-advanced-ads-admin.php:452
206
- msgid "Please enter a valid email address"
207
- msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
208
-
209
- #: ../admin/class-advanced-ads-admin.php:478 ../admin/class-advanced-ads-admin.
210
- #: php:505
211
- msgid "Sorry, you are not allowed to access this feature."
212
- msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
213
-
214
- #: ../admin/class-advanced-ads-admin.php:491
215
- msgid ""
216
- "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
217
- "deleted?"
218
- msgstr ""
219
- "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
220
- "Vielleicht wurde es gelöscht?"
221
-
222
- #: ../admin/class-advanced-ads-admin.php:659
223
- msgid "Ad Type"
224
- msgstr "Anzeigen-Typ"
225
-
226
- #: ../admin/class-advanced-ads-admin.php:665
227
- msgid "Ad Parameters"
228
- msgstr "Anzeigen-Parameter"
229
-
230
- #: ../admin/class-advanced-ads-admin.php:668
231
- msgid "Layout / Output"
232
- msgstr "Layout / Ausgabe"
233
-
234
- #: ../admin/class-advanced-ads-admin.php:671
235
- msgid "Display Conditions"
236
- msgstr "Anzeige-Bedingungen"
237
-
238
- #: ../admin/class-advanced-ads-admin.php:674
239
- msgid "Visitor Conditions"
240
- msgstr "Besucher-Bedingungen"
241
-
242
- #: ../admin/class-advanced-ads-admin.php:776 ../admin/class-advanced-ads-admin.
243
- #: php:787 ../admin/class-advanced-ads-admin.php:792 ../admin/class-advanced-ads-
244
- #: admin.php:1386 ../admin/views/ad-output-metabox.php:50
245
- msgid "Manual"
246
- msgstr "Anleitung"
247
-
248
- #: ../admin/class-advanced-ads-admin.php:786
249
- msgid "Video"
250
- msgstr "Video"
251
-
252
- #: ../admin/class-advanced-ads-admin.php:964 ../admin/class-advanced-ads-admin.
253
- #: php:965
254
- msgid "Ad updated."
255
- msgstr "Anzeige aktualisiert."
256
-
257
- #. translators: %s: date and time of the revision
258
- #: ../admin/class-advanced-ads-admin.php:967
259
- #, php-format
260
- msgid "Ad restored to revision from %s"
261
- msgstr "Anzeige aus Revision %s wiederhergestellt"
262
-
263
- #: ../admin/class-advanced-ads-admin.php:968
264
- msgid "Ad published."
265
- msgstr "Anzeige veröffentlicht."
266
-
267
- #: ../admin/class-advanced-ads-admin.php:969
268
- msgid "Ad saved."
269
- msgstr "Anzeige gespeichert."
270
-
271
- #: ../admin/class-advanced-ads-admin.php:970
272
- msgid "Ad submitted."
273
- msgstr "Anzeige gesendet."
274
-
275
- #: ../admin/class-advanced-ads-admin.php:972
276
- #, php-format
277
- msgid "Ad scheduled for: <strong>%1$s</strong>."
278
- msgstr "Anzeige geplant für <strong>%1$s</strong>."
279
-
280
- #. translators: Publish box date format, see http:php.net/date
281
- #: ../admin/class-advanced-ads-admin.php:974
282
- msgid "M j, Y @ G:i"
283
- msgstr "j M Y @ G:i"
284
-
285
- #: ../admin/class-advanced-ads-admin.php:976
286
- msgid "Ad draft updated."
287
- msgstr "Anzeigenentwurf gespeichert."
288
-
289
- #: ../admin/class-advanced-ads-admin.php:995
290
- #, php-format
291
- msgid "%s ad updated."
292
- msgid_plural "%s ads updated."
293
- msgstr[0] "%s Anzeige aktualisiert."
294
- msgstr[1] "%s Anzeigen aktualisiert."
295
-
296
- #: ../admin/class-advanced-ads-admin.php:996
297
- #, php-format
298
- msgid "%s ad not updated, somebody is editing it."
299
- msgid_plural "%s ads not updated, somebody is editing them."
300
- msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
301
- msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
302
-
303
- #: ../admin/class-advanced-ads-admin.php:997
304
- #, php-format
305
- msgid "%s ad permanently deleted."
306
- msgid_plural "%s ads permanently deleted."
307
- msgstr[0] "%s Anzeige endgültig gelöscht."
308
- msgstr[1] "%s Anzeigen endgültig gelöscht."
309
-
310
- #: ../admin/class-advanced-ads-admin.php:998
311
- #, php-format
312
- msgid "%s ad moved to the Trash."
313
- msgid_plural "%s ads moved to the Trash."
314
- msgstr[0] "%s Anzeige in den Papierkorb verschoben."
315
- msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
316
-
317
- #: ../admin/class-advanced-ads-admin.php:999
318
- #, php-format
319
- msgid "%s ad restored from the Trash."
320
- msgid_plural "%s ads restored from the Trash."
321
- msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
322
- msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
323
-
324
- #: ../admin/class-advanced-ads-admin.php:1034 ../admin/views/settings.php:12
325
- msgid "General"
326
- msgstr "Allgemein"
327
-
328
- #: ../admin/class-advanced-ads-admin.php:1046 ../admin/class-advanced-ads-admin.
329
- #: php:1158
330
- msgid "Licenses"
331
- msgstr "Lizenzen"
332
-
333
- #: ../admin/class-advanced-ads-admin.php:1057
334
- msgid "Disable ads"
335
- msgstr "Anzeigen auf dieser Seite deaktivieren."
336
-
337
- #: ../admin/class-advanced-ads-admin.php:1065
338
- msgid "Hide ads for logged in users"
339
- msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
340
-
341
- #: ../admin/class-advanced-ads-admin.php:1073
342
- msgid "Use advanced JavaScript"
343
- msgstr "Advanced-JavaScript benutzen"
344
-
345
- #: ../admin/class-advanced-ads-admin.php:1081
346
- msgid "Unlimited ad injection"
347
- msgstr "Anzeigen-Injektion überall aktivieren "
348
-
349
- #: ../admin/class-advanced-ads-admin.php:1089
350
- msgid "Priority of content injection filter"
351
- msgstr "Priorität der Anzeigen-Injektion"
352
-
353
- #: ../admin/class-advanced-ads-admin.php:1097
354
- msgid "Hide ads from bots"
355
- msgstr "Anzeigen vor Bots verbergen"
356
-
357
- #: ../admin/class-advanced-ads-admin.php:1105
358
- msgid "Disable notices"
359
- msgstr "Mitteilungen deaktivieren"
360
-
361
- #: ../admin/class-advanced-ads-admin.php:1113
362
- msgid "ID prefix"
363
- msgstr "ID Präfix"
364
-
365
- #: ../admin/class-advanced-ads-admin.php:1121
366
- msgid "Remove Widget ID"
367
- msgstr "ID des Widget entfernen"
368
-
369
- #: ../admin/class-advanced-ads-admin.php:1129
370
- msgid "Allow editors to manage ads"
371
- msgstr "Redakteure können Anzeigen verwalten"
372
-
373
- #: ../admin/class-advanced-ads-admin.php:1137
374
- msgid "Ad label"
375
- msgstr "Anzeigenüberschrift"
376
-
377
- #: ../admin/class-advanced-ads-admin.php:1214
378
- msgid "(display to all)"
379
- msgstr "(für alle sichtbar)"
380
-
381
- #: ../admin/class-advanced-ads-admin.php:1215
382
- msgid "Subscriber"
383
- msgstr "Abonnent"
384
-
385
- #: ../admin/class-advanced-ads-admin.php:1216
386
- msgid "Contributor"
387
- msgstr "Mitarbeiter"
388
-
389
- #: ../admin/class-advanced-ads-admin.php:1217
390
- msgid "Author"
391
- msgstr "Autor"
392
-
393
- #: ../admin/class-advanced-ads-admin.php:1218
394
- msgid "Editor"
395
- msgstr "Redakteur"
396
-
397
- #: ../admin/class-advanced-ads-admin.php:1219
398
- msgid "Admin"
399
- msgstr "Admin"
400
-
401
- #: ../admin/class-advanced-ads-admin.php:1227
402
- msgid "Choose the lowest role a user must have in order to not see any ads."
403
- msgstr ""
404
- "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
405
- "Anzeigen zu sehen."
406
-
407
- #: ../admin/class-advanced-ads-admin.php:1241
408
- msgid ""
409
- "<strong>notice: </strong>the file is currently enabled by an add-on that "
410
- "needs it."
411
- msgstr ""
412
- "<strong>Hinweis: </strong>die Datei wird aktuell von einer Erweiterung "
413
- "benutzt."
414
-
415
- #: ../admin/class-advanced-ads-admin.php:1244
416
- #, php-format
417
- msgid ""
418
- "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
419
- " Some features and add-ons might override this setting if they need features "
420
- "from this file."
421
- msgstr ""
422
- "Erweiterte JavaScript-Funktionen aktivieren (<a href=\"%s\" "
423
- "target=\"_blank\">Info</a>). Einige Funktionen und Erweiterungen können diese "
424
- "Einstellung überschreiben, wenn sie die Datei benötigen."
425
-
426
- #: ../admin/class-advanced-ads-admin.php:1257
427
- msgid ""
428
- "Some plugins and themes trigger ad injection where it shouldn’t happen. "
429
- "Therefore, Advanced Ads ignores injected placements on non-singular pages "
430
- "and outside the loop. However, this can cause problems with some themes. You "
431
- "can enable this option if you don’t see ads or want to enable ad injections "
432
- "on archive pages AT YOUR OWN RISK."
433
- msgstr ""
434
- "Einige Plugins und Themes provozieren die Anzeigen-Injektion an Stellen, wo "
435
- "sie nicht passieren sollte. Advanced Ads hat daher eine "
436
- "Sicherheitseinstellung, die Anzeigen, die über eine automatische Platzierung "
437
- "eingebunden werden nur im Hauptinhalt auf Einzelseiten einbindet. Einige "
438
- "Themes laden den Inhalt jedoch abweichend von den üblichen Methoden und "
439
- "verhindert damit automatische Platzierungen. Wenn Sie diese Einstellung "
440
- "aktivieren, werden alle Sicherheitseinstellungen ignoriert und Anzeigen "
441
- "werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
442
- "Archiv-Seiten)."
443
-
444
- #: ../admin/class-advanced-ads-admin.php:1273
445
- msgid ""
446
- "Please check your post content. A priority of 10 and below might cause "
447
- "issues (wpautop function might run twice)."
448
- msgstr ""
449
- "Bitte überprüfe den Seiteninhalt. Eine Priorität von 10 oder weniger kann "
450
- "Probleme verursachen."
451
-
452
- #: ../admin/class-advanced-ads-admin.php:1275
453
- msgid ""
454
- "Play with this value in order to change the priority of the injected ads "
455
- "compared to other auto injected elements in the post content."
456
- msgstr ""
457
- "Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
458
- "Content gegenüber anderer Elementen zu beeinflussen."
459
-
460
- #: ../admin/class-advanced-ads-admin.php:1289
461
- #, php-format
462
- msgid ""
463
- "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
464
- "impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
465
- "Add-On</a>."
466
- msgstr ""
467
- "Verbergen Sie Anzeigen vor Crawlern, Bots und leeren User Agents. Für diese "
468
- "werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
469
- "keine Impressionen mehr gezählt."
470
-
471
- #: ../admin/class-advanced-ads-admin.php:1290
472
- msgid ""
473
- "Disabling this option only makes sense if your ads contain content you want "
474
- "to display to bots (like search engines) or your site is cached and bots "
475
- "could create a cached version without the ads."
476
- msgstr ""
477
- "Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
478
- "Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
479
-
480
- #: ../admin/class-advanced-ads-admin.php:1303
481
- msgid ""
482
- "Disable internal notices like tips, tutorials, email newsletters and update "
483
- "notices. Disabling notices is recommended if you run multiple blogs with "
484
- "Advanced Ads already."
485
- msgstr ""
486
- "Deaktivierung von internen Mitteilungen wie Tipps, Anleitungen, \n"
487
- "Newsletter und Update-Benachrichtigungen. Nutzen Sie \n"
488
- "diese Einstellung, wenn Sie Advanced Ads auf mehreren Blog installiert \n"
489
- "haben."
490
-
491
- #: ../admin/class-advanced-ads-admin.php:1320
492
- msgid ""
493
- "Prefix of class or id attributes in the frontend. Change it if you don’t "
494
- "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
495
- "need to <strong>rewrite css rules afterwards</strong>."
496
- msgstr ""
497
- "Präfix der class oder id Attribute im Frontend. Eine Änderung kann helfen "
498
- "damit Ad-Blocker die Inhalte nicht pauschal entfernen."
499
-
500
- #: ../admin/class-advanced-ads-admin.php:1341
501
- msgid ""
502
- "Remove the ID attribute from widgets in order to not make them an easy "
503
- "target of ad blockers."
504
- msgstr ""
505
- "ID-Attribut des Anzeigenwidgets entfernen, damit Ad-Blocker hier keinen "
506
- "Ansatz haben es zu blockieren."
507
-
508
- #: ../admin/class-advanced-ads-admin.php:1344
509
- msgid ""
510
- "If checked, the Advanced Ads Widget will not work with the fixed option of "
511
- "the <strong>Q2W3 Fixed Widget</strong> plugin."
512
- msgstr ""
513
- "Bei Aktivierung kann das Widget nicht mehr mit dem <strong>Q2W3 Fixed "
514
- "Widget</strong> Plugin fixiert werden."
515
-
516
- #: ../admin/class-advanced-ads-admin.php:1366
517
- msgid "Allow editors to also manage and publish ads."
518
- msgstr "Redakteuren erlauben, Anzeigen zu verwalten und veröffentlichen."
519
-
520
- #: ../admin/class-advanced-ads-admin.php:1367
521
- #, php-format
522
- msgid ""
523
- "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
524
- "target=\"_blank\">Advanced Ads Pro</a>."
525
- msgstr ""
526
- "Mit <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> können Sie Nutzern "
527
- "verschiedene Rechte für Anzeigen einräumen."
528
-
529
- #: ../admin/class-advanced-ads-admin.php:1379 ../public/class-advanced-ads.php:714
530
- msgctxt "label before ads"
531
- msgid "Advertisements"
532
- msgstr "Werbung"
533
-
534
- #: ../admin/class-advanced-ads-admin.php:1386
535
- msgid "Displayed above ads."
536
- msgstr "Über der Anzeige eingeblendet."
537
-
538
- #: ../admin/class-advanced-ads-admin.php:1445 ../admin/class-advanced-ads-admin.
539
- #: php:1450
540
- msgid "Ad Details"
541
- msgstr "Anzeigeneinstellungen"
542
-
543
- #: ../admin/class-advanced-ads-admin.php:1446 ../admin/class-advanced-ads-admin.
544
- #: php:1451
545
- msgid "Ad Planning"
546
- msgstr "Anzeigenplanung"
547
-
548
- #: ../admin/class-advanced-ads-admin.php:1585
549
- msgid "Ad Settings"
550
- msgstr "Anzeigen-Einstellungen"
551
-
552
- #: ../admin/class-advanced-ads-admin.php:1664 ../admin/views/overview.php:23
553
- msgid "Ads Dashboard"
554
- msgstr "Anzeigen-Dashboard"
555
-
556
- #: ../admin/class-advanced-ads-admin.php:1676
557
- msgid "From the ad optimization universe"
558
- msgstr "Neues aus dem Anzeigen-Universum"
559
-
560
- #: ../admin/class-advanced-ads-admin.php:1685
561
- msgid "Advanced Ads Tutorials"
562
- msgstr "Advanced Ads Tutorials"
563
-
564
- #: ../admin/class-advanced-ads-admin.php:1696
565
- #, php-format
566
- msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
567
- msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
568
-
569
- #: ../admin/class-advanced-ads-admin.php:1707
570
- msgid "plugin manual and homepage"
571
- msgstr "Plugin-Anleitung und Homepage"
572
-
573
- #: ../admin/class-advanced-ads-admin.php:1714
574
- msgid "Get the tutorial via email"
575
- msgstr "Tutorial per E-Mail (engl.)"
576
-
577
- #: ../admin/class-advanced-ads-admin.php:1721
578
- msgid "Get AdSense tips via email"
579
- msgstr "AdSense Tips per E-Mail (engl.)"
580
-
581
- #: ../admin/class-advanced-ads-admin.php:1810
582
- #, php-format
583
- msgid "time of %s"
584
- msgstr "Zeit von %s"
585
-
586
- #: ../admin/class-advanced-ads-admin.php:1846
587
- msgid "Error while trying to register the license. Please contact support."
588
- msgstr ""
589
- "Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
590
- "Support."
591
-
592
- #: ../admin/class-advanced-ads-admin.php:1851 ../admin/views/setting-license.php:37
593
- msgid "Please enter a valid license key"
594
- msgstr "Bitte geben Sie einen gültigen Lizenzschlüssel ein"
595
-
596
- #: ../admin/class-advanced-ads-admin.php:1877
597
- msgid "License couldn’t be activated. Please try again later."
598
- msgstr ""
599
- "Die Lizenz konnte nicht aktiviert werden. Bitte versuchen Sie es später noch "
600
- "einmal."
601
-
602
- #: ../admin/class-advanced-ads-admin.php:1889
603
- msgid "This is the bundle license key."
604
- msgstr "Diese Lizenz gehört zu einem Bundle."
605
-
606
- #: ../admin/class-advanced-ads-admin.php:1890
607
- msgid "This is not the correct key for this add-on."
608
- msgstr "Diese Lizenz gehört nicht zu diesem Produkt."
609
-
610
- #: ../admin/class-advanced-ads-admin.php:1891
611
- msgid "There are no activations left."
612
- msgstr "Keine Aktivierungen übrig."
613
-
614
- #: ../admin/class-advanced-ads-admin.php:1900
615
- #, php-format
616
- msgid "License is invalid. Reason: %s"
617
- msgstr "Die Lizenz ist ungültig. Grund: %s"
618
-
619
- #: ../admin/class-advanced-ads-admin.php:1958
620
- msgid "Error while trying to disable the license. Please contact support."
621
- msgstr "Fehler beim Deaktivieren der Lizenz. Bitte Support kontaktieren."
622
-
623
- #: ../admin/class-advanced-ads-admin.php:1981 ../admin/class-advanced-ads-admin.
624
- #: php:1999
625
- msgid "License couldn’t be deactivated. Please try again later."
626
- msgstr ""
627
- "Die Lizenz konnte nicht deaktiviert werden. Bitte versuchen Sie es später "
628
- "noch einmal."
629
-
630
- #: ../admin/class-advanced-ads-admin.php:2163
631
- msgid "Add-Ons"
632
- msgstr "Erweiterungen"
633
-
634
- #: ../admin/includes/class-ad-groups-list.php:156
635
- msgid "Ad weight"
636
- msgstr "Anzeigengewichtung"
637
-
638
- #: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
639
- #: column.php:4
640
- #, php-format
641
- msgid "starts %s"
642
- msgstr "beginnt %s"
643
-
644
- #: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
645
- #: column.php:21
646
- #, php-format
647
- msgid "expires %s"
648
- msgstr "endet %s"
649
-
650
- #: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
651
- #: column.php:23
652
- #, php-format
653
- msgid "<strong>expired</strong> %s"
654
- msgstr "abgelaufen %s"
655
-
656
- #: ../admin/includes/class-ad-groups-list.php:198
657
- msgid "all published ads are displayed"
658
- msgstr "Alle veröffentlichten Anzeigen werden dargestellt"
659
-
660
- #: ../admin/includes/class-ad-groups-list.php:200
661
- #, php-format
662
- msgid "up to %d ads displayed"
663
- msgstr "bis zu %d Anzeigen sichtbar"
664
-
665
- #: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
666
- #: form-row.php:37
667
- msgid "No ads assigned"
668
- msgstr "Keine Anzeigen zugeordnet"
669
-
670
- #: ../admin/includes/class-ad-groups-list.php:251
671
- msgid "Random ads"
672
- msgstr "Zufällige Anzeigen"
673
-
674
- #: ../admin/includes/class-ad-groups-list.php:252
675
- msgid "Display random ads based on ad weight"
676
- msgstr "Anzeigen in zufälliger Reihenfolge basierend auf dem Anzeigengewicht"
677
-
678
- #: ../admin/includes/class-ad-groups-list.php:255
679
- msgid "Ordered ads"
680
- msgstr "Geordnete Anzeigen"
681
-
682
- #: ../admin/includes/class-ad-groups-list.php:256
683
- msgid "Display ads with the highest ad weight first"
684
- msgstr "Anzeigen mit dem höchsten Anzeigengewicht zuerst einblenden."
685
-
686
- #: ../admin/includes/class-ad-groups-list.php:275 ../modules/import-
687
- #: export/classes/import.php:137 ../modules/import-export/classes/import.php:177 .
688
- #: ./modules/import-export/classes/import.php:467 ../public/class-advanced-ads.
689
- #: php:594
690
- msgid "Edit"
691
- msgstr "Bearbeiten"
692
-
693
- #: ../admin/includes/class-ad-groups-list.php:276
694
- msgid "Usage"
695
- msgstr "Einbindung"
696
-
697
- #: ../admin/includes/class-ad-groups-list.php:285
698
- msgid "Delete"
699
- msgstr "Entfernen"
700
-
701
- #: ../admin/includes/class-ad-groups-list.php:306
702
- msgid "Invalid Ad Group"
703
- msgstr "Ungültige Anzeigengruppe"
704
-
705
- #: ../admin/includes/class-ad-groups-list.php:311
706
- msgid "You don’t have permission to change the ad groups"
707
- msgstr "Sie haben nicht die notwendigen Rechte um Anzeigengruppen zu löschen."
708
-
709
- #: ../admin/includes/class-notices.php:424
710
- #, php-format
711
- msgid ""
712
- "You don’t seem to have an email address. Please use <a href=\"%s\" "
713
- "target=\"_blank\">this form</a> to sign up."
714
- msgstr ""
715
- "Es scheint keine E-Mail Adresse hinterlegt worden zu sein. Bitte nutzen Sie "
716
- "<a href=\"%s\" target=\"_blank\">dieses Formular</a> um sich anzumelden."
717
-
718
- #: ../admin/includes/class-notices.php:442
719
- msgid "How embarrassing. The email server seems to be down. Please try again later."
720
- msgstr ""
721
- "Peinlich. Der E-Mail-Dienst scheint gerade nicht erreichbar zu sein. Bitte "
722
- "versuchen Sie es später noch einmal."
723
-
724
- #: ../admin/includes/class-notices.php:447
725
- #, php-format
726
- msgid ""
727
- "Please check your email (%s) for the confirmation message. If you didn’t "
728
- "receive one or want to use another email address then please use <a "
729
- "href=\"%s\" target=\"_blank\">this form</a> to sign up."
730
- msgstr ""
731
- "Die Bestätigungsnachricht wurde an Ihre Adresse (%s) gesendet. Wenn Sie sie "
732
- "nicht erhalten haben oder sich mit einer anderen Adresse anmelden wollen, "
733
- "dann nutzen Sie bitte <a href=\"%s\" target=\"_blank\">dieses Formular</a>."
734
-
735
- #: ../admin/includes/class-overview-widgets.php:45
736
- msgid "Tips and Tutorials"
737
- msgstr "Tipps und Tutorials"
738
-
739
- #: ../admin/includes/class-overview-widgets.php:47
740
- msgid "Setup and Optimization Help"
741
- msgstr "Hilfe bei Setup und Optimierung"
742
-
743
- #: ../admin/includes/class-overview-widgets.php:49
744
- msgid "Manual and Support"
745
- msgstr "Anleitung und Support"
746
-
747
- #: ../admin/includes/class-overview-widgets.php:53
748
- msgid "Advanced Ads Pro"
749
- msgstr "Advanced Ads Pro"
750
-
751
- #: ../admin/includes/class-overview-widgets.php:55
752
- msgid "Tracking and Stats"
753
- msgstr "Tracking und Statistik"
754
-
755
- #: ../admin/includes/class-overview-widgets.php:57
756
- msgid "Responsive and Mobile ads"
757
- msgstr "Responsive und Mobile Anzeigen"
758
-
759
- #: ../admin/includes/class-overview-widgets.php:59
760
- msgid "Geo Targeting"
761
- msgstr "Geo-Targeting"
762
-
763
- #: ../admin/includes/class-overview-widgets.php:61
764
- msgid "Sticky ads"
765
- msgstr "Sticky (fixierte) Anzeigen"
766
-
767
- #: ../admin/includes/class-overview-widgets.php:63
768
- msgid "PopUps and Layers"
769
- msgstr "PopUps und Layer"
770
-
771
- #: ../admin/includes/class-overview-widgets.php:65
772
- msgid "Ad Slider"
773
- msgstr "Anzeigen-Slideshow"
774
-
775
- #: ../admin/includes/class-overview-widgets.php:83
776
- msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
777
- msgstr "Abonniere den Newsletter und erhalte <strong>2 kostenlose Add-ons</strong>."
778
-
779
- #: ../admin/includes/class-overview-widgets.php:84
780
- msgid "Join now"
781
- msgstr "Jetzt abonnieren"
782
-
783
- #: ../admin/includes/class-overview-widgets.php:91
784
- msgid ""
785
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
786
- "and Advanced Ads from the dedicated newsletter group."
787
- msgstr ""
788
- "Erfahre mehr darüber wie und <strong>wie viel man mit AdSense "
789
- "verdienen</strong> in der AdSense-Gruppe des Newsletters."
790
-
791
- #: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
792
- #: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
793
- #: admin/views/notices/subscribe.php:3
794
- msgid "Subscribe me now"
795
- msgstr "Jetzt abonnieren"
796
-
797
- #: ../admin/includes/class-overview-widgets.php:99
798
- msgid "Get the first steps and more tutorials to your inbox."
799
- msgstr ""
800
- "Erhalten Sie die Ersten Schritte und weitere Tutorials direkt in Ihr "
801
- "Postfach."
802
-
803
- #: ../admin/includes/class-overview-widgets.php:100
804
- msgid "Send it now"
805
- msgstr "Jetzt senden"
806
-
807
- #: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
808
- msgid "Create your first ad"
809
- msgstr "Erstellen Sie Ihre erste Anzeige"
810
-
811
- #: ../admin/includes/class-overview-widgets.php:126
812
- msgid ""
813
- "Ad Groups contain ads and are currently used to rotate multiple ads on a "
814
- "single spot."
815
- msgstr ""
816
- "Anzeigengruppen enthalten Anzeigen und werden verwendet, um mehrere Anzeigen "
817
- "an einer Stelle zu rotieren."
818
-
819
- #: ../admin/includes/class-overview-widgets.php:128
820
- msgid "Create your first group"
821
- msgstr "Erstellen Sie Ihre erste Gruppe"
822
-
823
- #: ../admin/includes/class-overview-widgets.php:131
824
- msgid "Ad Placements are the best way to manage where to display ads and groups."
825
- msgstr ""
826
- "Anzeigen-Platzierungen sind am besten geeignet um zu bestimmen, wo Anzeigen "
827
- "und Gruppen veröffentlicht werden."
828
-
829
- #: ../admin/includes/class-overview-widgets.php:133
830
- msgid "Create your first placement"
831
- msgstr "Erstellen Sie Ihre erste Platzierung"
832
-
833
- #: ../admin/includes/class-overview-widgets.php:138
834
- msgid "Next steps"
835
- msgstr "Nächste Schritte"
836
-
837
- #: ../admin/includes/class-overview-widgets.php:150
838
- #, php-format
839
- msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
840
- msgstr "<a href=\"%s\" target=\"_blank\">Anleitung (engl.)</a>"
841
-
842
- #: ../admin/includes/class-overview-widgets.php:151
843
- #, php-format
844
- msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
845
- msgstr "FAQ und Support"
846
-
847
- #: ../admin/includes/class-overview-widgets.php:152
848
- #, php-format
849
- msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
850
- msgstr "Über <a href=\"%s\" target=\"_blank\">neue Funktionen</a> abstimmen."
851
-
852
- #: ../admin/includes/class-overview-widgets.php:153
853
- #, php-format
854
- msgid ""
855
- "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
856
- "href=\"%s\" target=\"_blank\">wordpress.org</a>"
857
- msgstr ""
858
- "Dem Entwickler mit einem &#9733;&#9733;&#9733;&#9733;&#9733; Review auf <a "
859
- "href=\"%s\" target=\"_blank\">wordpress.org</a> danken."
860
-
861
- #: ../admin/includes/class-overview-widgets.php:162
862
- msgid ""
863
- "Need help to set up and optimize your ads? Need custom coding on your site? "
864
- "Ask me for a quote."
865
- msgstr ""
866
- "Brauchen Sie Hilfe bei der Installation oder Optimierung Ihrer Anzeigen? "
867
- "Benötigen Sie einen erfahrenen, deutschsprachigen WordPress-Entwickler? "
868
- "Kontaktieren Sie mich bzgl. eines Angebotes."
869
-
870
- #: ../admin/includes/class-overview-widgets.php:163
871
- #, php-format
872
- msgid "Help with ads on %s"
873
- msgstr "Unterstützung von %s"
874
-
875
- #: ../admin/includes/class-overview-widgets.php:164
876
- msgid "Get an offer"
877
- msgstr "Angebot erfragen"
878
-
879
- #: ../admin/includes/class-overview-widgets.php:172
880
- msgid "Ad management for advanced websites."
881
- msgstr "Anzeigenverwaltung für Fortgeschrittene."
882
-
883
- #: ../admin/includes/class-overview-widgets.php:173
884
- msgid "Cache-busting"
885
- msgstr "Cache-busting"
886
-
887
- #: ../admin/includes/class-overview-widgets.php:174
888
- msgid "Advanced visitor conditions"
889
- msgstr "Erweiterte Besucherbedingungen"
890
-
891
- #: ../admin/includes/class-overview-widgets.php:175
892
- msgid "Flash ads with fallback"
893
- msgstr "Flash-Anzeigen"
894
-
895
- #: ../admin/includes/class-overview-widgets.php:177
896
- msgid "Get Pro"
897
- msgstr "Pro holen"
898
-
899
- #: ../admin/includes/class-overview-widgets.php:185
900
- msgid "Track the impressions of and clicks on your ads."
901
- msgstr "Einblendungen und Klicks von Anzeigen erfassen und auswerten."
902
-
903
- #: ../admin/includes/class-overview-widgets.php:186
904
- msgid "2 methods to count impressions"
905
- msgstr "2 Zählmethoden"
906
-
907
- #: ../admin/includes/class-overview-widgets.php:187
908
- msgid "beautiful stats for all or single ads"
909
- msgstr "Wunderschöne Statistiken"
910
-
911
- #: ../admin/includes/class-overview-widgets.php:188
912
- msgid "group stats by day, week or month"
913
- msgstr "Statistik nach Tag, Woche oder Monat"
914
-
915
- #: ../admin/includes/class-overview-widgets.php:190
916
- msgid "Get the Tracking add-on"
917
- msgstr "Tracking-Erweiterung holen"
918
-
919
- #: ../admin/includes/class-overview-widgets.php:198
920
- msgid "Display ads based on the size of your visitor’s browser or device."
921
- msgstr ""
922
- "Anzeigen anhand der Browserbreite der Besucher ausliefern. DIE Lösung für "
923
- "mobile Layouts."
924
-
925
- #: ../admin/includes/class-overview-widgets.php:199
926
- msgid "set a range (from … to …) pixels for the browser size"
927
- msgstr "von … bis … Browserbreiten für Anzeigen angeben"
928
-
929
- #: ../admin/includes/class-overview-widgets.php:200
930
- msgid "set custom sizes for AdSense responsive ads"
931
- msgstr "Größen von AdSense Responsive Ads feinsteuern"
932
-
933
- #: ../admin/includes/class-overview-widgets.php:201
934
- msgid "list all ads by their responsive settings"
935
- msgstr "aller responsiven Anzeigen auf einem Blick listen"
936
-
937
- #: ../admin/includes/class-overview-widgets.php:203
938
- msgid "Get the Responsive add-on"
939
- msgstr "Responsive-Erweiterung holen"
940
-
941
- #: ../admin/includes/class-overview-widgets.php:211
942
- msgid "Target visitors by their geo location."
943
- msgstr "Anzeigen für Besucher aus bestimmten Regionen einblenden"
944
-
945
- #: ../admin/includes/class-overview-widgets.php:213
946
- msgid "Get the Geo Targeting add-on"
947
- msgstr "Geo-Targeting holen"
948
-
949
- #: ../admin/includes/class-overview-widgets.php:221
950
- msgid ""
951
- "Fix ads to the browser while users are scrolling and create best performing "
952
- "anchor ads."
953
- msgstr ""
954
- "Erstellen Sie stark performande Anzeigen durch mitscrollende Anzeigen am "
955
- "Browserfenster."
956
-
957
- #: ../admin/includes/class-overview-widgets.php:222
958
- msgid "position ads that don’t scroll with the screen"
959
- msgstr "Anzeigen erstellen, die beim Scrollen nicht verschwinden"
960
-
961
- #: ../admin/includes/class-overview-widgets.php:223
962
- msgid "build anchor ads not only on mobile devices"
963
- msgstr "Anchor-Anzeigen auch für Desktop-Geräte"
964
-
965
- #: ../admin/includes/class-overview-widgets.php:225
966
- msgid "Get the Sticky add-on"
967
- msgstr "Sticky-Erweiterung holen"
968
-
969
- #: ../admin/includes/class-overview-widgets.php:233
970
- msgid "Display content and ads in layers and popups on custom events."
971
- msgstr "Anzeigen und Inhalte in Layern und PopUps einblenden."
972
-
973
- #: ../admin/includes/class-overview-widgets.php:234
974
- msgid "display a popup after a user interaction like scrolling"
975
- msgstr "verschiedene Auslöser, z.B. nach Scrollen oder auf 2. Seitenhälfte"
976
-
977
- #: ../admin/includes/class-overview-widgets.php:235
978
- msgid "optional background overlay"
979
- msgstr "optionaler Hintergrund"
980
-
981
- #: ../admin/includes/class-overview-widgets.php:236
982
- msgid "allow users to close the popup"
983
- msgstr "Nutzern das Schließen des PopUps erlauben"
984
-
985
- #: ../admin/includes/class-overview-widgets.php:238
986
- msgid "Get the PopUp and Layer add-on"
987
- msgstr "PopUp und Layer Erweiterung holen"
988
-
989
- #: ../admin/includes/class-overview-widgets.php:246
990
- msgid "Create a beautiful and simple slider from your ads."
991
- msgstr "Erstelle einen Slider aus deinen Anzeigen."
992
-
993
- #: ../admin/includes/class-overview-widgets.php:248
994
- msgid "Get the Slider add-on"
995
- msgstr "Slider-Erweiterung holen"
996
-
997
- #: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
998
- msgid "--empty--"
999
- msgstr "--leer--"
1000
-
1001
- #: ../admin/includes/notices.php:14
1002
- #, php-format
1003
- msgid ""
1004
- "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1005
- "Steps</a>."
1006
- msgstr ""
1007
- "Advanced Ads wurde erfolgreich installiert. <a href=\"%s\">Einführung "
1008
- "anschauen</a>."
1009
-
1010
- #: ../admin/includes/notices.php:20
1011
- msgid ""
1012
- "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1013
- "receive the first steps via email?"
1014
- msgstr ""
1015
- "Danke, dass Sie <strong>Advanced Ads</strong> aktiviert haben. Möchten Sie "
1016
- "die Ersten Schritte per E-Mail erhalten?"
1017
-
1018
- #: ../admin/includes/notices.php:21
1019
- msgid "Yes, send it"
1020
- msgstr "Ja, jetzt senden"
1021
-
1022
- #: ../admin/includes/notices.php:27
1023
- msgid ""
1024
- "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1025
- "<strong>2 free add-ons</strong> for joining the newsletter."
1026
- msgstr ""
1027
- "Danke, dass Sie <strong>Advanced Ads</strong> benutzen. Abonieren Sie den "
1028
- "Newsletter und erhalten <strong>2 Add-ons kostenfrei</strong>."
1029
-
1030
- #: ../admin/includes/notices.php:28
1031
- msgid "Add me now"
1032
- msgstr "Jetzt abonnieren"
1033
-
1034
- #: ../admin/includes/notices.php:34
1035
- msgid ""
1036
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1037
- "and Advanced Ads from my dedicated newsletter."
1038
- msgstr ""
1039
- "Erfahren Sie im Newsletter mehr darüber, wie und <strong>wie viel Sie mit "
1040
- "AdSense verdienen</strong> können (engl.)."
1041
-
1042
- #: ../admin/includes/notices.php:61
1043
- msgid ""
1044
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1045
- "missing</strong>."
1046
- msgstr ""
1047
- "Ein oder mehrere Lizenzschlüssel für <strong>Advanced Ads Erweiterungen sind "
1048
- "ungültig oder fehlen</strong>."
1049
-
1050
- #: ../admin/includes/notices.php:61
1051
- #, php-format
1052
- msgid "Please add valid license keys <a href=\"%s\">here</a>."
1053
- msgstr "Bitte fügen Sie hier gültige Lizenzschlüssel hinzu."
1054
-
1055
- #: ../admin/includes/notices.php:67
1056
- #, php-format
1057
- msgid ""
1058
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1059
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1060
- "before it expires with a significant discount on <a href=\"%s\" "
1061
- "target=\"_blank\">the add-on page</a>."
1062
- msgstr ""
1063
- "Ein oder mehrere Lizenzschlüssel für <strong>Advanced Ads Erweiterungen "
1064
- "laufen demnächst ab</strong>. Verlängern Sie Ihre Lizenz noch vor dem Ablauf "
1065
- "für weiteren Support und Updates und erhalten Sie dafür einen deutlichen "
1066
- "Rabatt. <a href=\"%s\" target=\"_blank\">Zur Plugin-Seite</a>."
1067
-
1068
- #: ../admin/includes/notices.php:73 ../admin/views/support.php:28
1069
- #, php-format
1070
- msgid ""
1071
- "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1072
- "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1073
- "information."
1074
- msgstr ""
1075
- "Eine oder mehrere Lizenzen für <strong>Erweiterungen für Advanced "
1076
- "Ads</strong> sind abgelaufen. Support und Updates sind deaktiviert. Bitte "
1077
- "besuchen Sie die <a href=\"%s\">Lizenz-Übersicht</a> für weitere Informationen."
1078
-
1079
- #: ../admin/includes/notices.php:79
1080
- #, php-format
1081
- msgid ""
1082
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
1083
- "image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
1084
- "you! If you need my help then please visit the <a href=\"%1$s\" "
1085
- "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
1086
- "Review</h3><p>If you share my passion and find Advanced Ads useful then "
1087
- "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
1088
- "org</a>.</p><p><em>Thomas</em>"
1089
- msgstr ""
1090
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
1091
- "image\"/>Sie benutzen <strong>Advanced Ads</strong> seit einiger Zeit. Vielen "
1092
- "Dank! Wenn Sie kostenlose Hilfe wünschen, dann besuchen Sie bitte die <a "
1093
- "href=\"%1$s\" target=\"_blank\">Support-Seite</a>.</p><h3>Danke für Ihren "
1094
- "Review</h3><p>Wenn Sie meine Begeisterung für Advanced Ads teilen, dann "
1095
- "unterstützen Sie mich bitte mit einer <a href=\"%2$s\" target=\"_blank\">5-"
1096
- "Sterne-Bewertung auf wordpress.org</a>.</p><p><em>Thomas</em>"
1097
-
1098
- #: ../admin/includes/notices.php:85
1099
- #, php-format
1100
- msgid ""
1101
- "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1102
- "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1103
- "disguise."
1104
- msgstr ""
1105
- "Einige Dateien haben sich geändert. Bitte aktualisieren Sie den Dateiordner "
1106
- "für den Ad Block Fix in den <a href=\"%s\">Advanced Ads Einstellungen</a>."
1107
-
1108
- #: ../admin/includes/shortcode-creator-l10n.php:10
1109
- msgctxt "shortcode creator"
1110
- msgid "Add an ad"
1111
- msgstr "Anzeige hinzufügen"
1112
-
1113
- #: ../admin/includes/shortcode-creator-l10n.php:11
1114
- msgctxt "shortcode creator"
1115
- msgid "Add shortcode"
1116
- msgstr "Shortcode hinzufügen"
1117
-
1118
- #: ../admin/includes/shortcode-creator-l10n.php:12
1119
- msgctxt "shortcode creator"
1120
- msgid "Cancel"
1121
- msgstr "Abbrechen"
1122
-
1123
- #: ../admin/views/ad-display-metabox.php:6
1124
- msgid "Set Display Conditions to allow or hide the ad on specific pages."
1125
- msgstr "Anzeigebedingungen limitierten Anzeigen für bestimmte Seiten."
1126
-
1127
- #: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
1128
- #: php:2
1129
- #, php-format
1130
- msgid ""
1131
- "There might be a problem with layouts and scripts in your dashboard. Please "
1132
- "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1133
- msgstr ""
1134
- "Es könnte ein Problem mit Layout oder Skripten in Ihrem Dashboard geben. "
1135
- "Mehr erfahren Sie <a href=\"%s\" target=\"_blank\">in diesem Artikel (engl.)</a>."
1136
-
1137
- #: ../admin/views/ad-display-metabox.php:66
1138
- msgid "If you want to display the ad everywhere, don't do anything here. "
1139
- msgstr ""
1140
- "Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu "
1141
- "tun."
1142
-
1143
- #: ../admin/views/ad-display-metabox.php:69 ../admin/views/ad-visitor-metabox.php:
1144
- #: 34
1145
- msgid "New condition"
1146
- msgstr "Neue Bedingung"
1147
-
1148
- #: ../admin/views/ad-display-metabox.php:72 ../admin/views/ad-visitor-metabox.php:
1149
- #: 37
1150
- msgid "-- choose a condition --"
1151
- msgstr "-- Bedingung wählen --"
1152
-
1153
- #: ../admin/views/ad-display-metabox.php:77 ../admin/views/ad-visitor-metabox.php:
1154
- #: 42
1155
- msgid "add"
1156
- msgstr "hinzufügen"
1157
-
1158
- #: ../admin/views/ad-group-edit.php:14
1159
- msgid "You did not select an item for editing."
1160
- msgstr "Sie haben nichts zur Bearbeitung gewählt."
1161
-
1162
- #: ../admin/views/ad-group-edit.php:33
1163
- msgctxt "Taxonomy Name"
1164
- msgid "Name"
1165
- msgstr "Name"
1166
-
1167
- #: ../admin/views/ad-group-edit.php:38
1168
- msgctxt "Taxonomy Slug"
1169
- msgid "Slug"
1170
- msgstr "Slug"
1171
-
1172
- #: ../admin/views/ad-group-edit.php:40
1173
- msgid "An id-like string with only letters in lower case, numbers, and hyphens."
1174
- msgstr "Ein ID-ähnlicher String mit nur Kleinbuchstaben, Zahlen und Bindestrichen."
1175
-
1176
- #: ../admin/views/ad-group-edit.php:45
1177
- msgctxt "Taxonomy Description"
1178
- msgid "Description"
1179
- msgstr "Beschreibung"
1180
-
1181
- #: ../admin/views/ad-group-edit.php:57
1182
- msgid "Create new Ad Group"
1183
- msgstr "Neue Anzeigengruppe erstellen"
1184
-
1185
- #: ../admin/views/ad-group-edit.php:59
1186
- msgid "Update"
1187
- msgstr "Update"
1188
-
1189
- #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
1190
- msgid "Name"
1191
- msgstr "Name"
1192
-
1193
- #: ../admin/views/ad-group-list-form-row.php:5
1194
- msgid "Description"
1195
- msgstr "Beschreibung"
1196
-
1197
- #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
1198
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:47
1199
- msgid "Type"
1200
- msgstr "Typ"
1201
-
1202
- #: ../admin/views/ad-group-list-form-row.php:16
1203
- msgid "Number of visible ads"
1204
- msgstr "Anzahl sichtbarer Anzeigen"
1205
-
1206
- #: ../admin/views/ad-group-list-form-row.php:22
1207
- msgctxt "option to display all ads in an ad groups"
1208
- msgid "all"
1209
- msgstr "alle"
1210
-
1211
- #: ../admin/views/ad-group-list-form-row.php:25
1212
- msgid "Number of ads that are visible at the same time"
1213
- msgstr "Anzahl der Anzeigen, die gleichzeitig sichtbar sein sollen."
1214
-
1215
- #: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
1216
- #: 591
1217
- msgid "Ad"
1218
- msgstr "Anzeige"
1219
-
1220
- #: ../admin/views/ad-group-list-form-row.php:32
1221
- msgid "weight"
1222
- msgstr "Gewicht"
1223
-
1224
- #: ../admin/views/ad-group-list-header.php:3 ../classes/ad_type_group.php:30
1225
- msgid "Ad Group"
1226
- msgstr "Anzeigengruppe"
1227
-
1228
- #: ../admin/views/ad-group-list-header.php:4
1229
- msgid "Details"
1230
- msgstr "Details"
1231
-
1232
- #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1233
- #: admin/views/ad-info.php:3 ../admin/views/placements.php:59
1234
- msgid "shortcode"
1235
- msgstr "Shortcode"
1236
-
1237
- #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1238
- #: admin/views/placements.php:62
1239
- msgid "template"
1240
- msgstr "Template"
1241
-
1242
- #: ../admin/views/ad-group-list-row.php:14
1243
- #, php-format
1244
- msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
1245
- msgstr ""
1246
- "Mehr über Anzeigengruppen finden Sie in der <a href=\"%s\" "
1247
- "target=\"_blank\">Anleitung (engl.)</a>."
1248
-
1249
- #: ../admin/views/ad-group-list-row.php:19
1250
- #, php-format
1251
- msgid "Type: %s"
1252
- msgstr "Typ: %s"
1253
-
1254
- #: ../admin/views/ad-group-list-row.php:20
1255
- #, php-format
1256
- msgid "ID: %s"
1257
- msgstr "ID: %s"
1258
-
1259
- #: ../admin/views/ad-group.php:18
1260
- msgid "Ad Groups successfully updated"
1261
- msgstr "Anzeigengruppe erfolgreich aktualisiert."
1262
-
1263
- #: ../admin/views/ad-group.php:46
1264
- #, php-format
1265
- msgid "Search results for &#8220;%s&#8221;"
1266
- msgstr "Suchergebnisse für &#8220;%s&#8221;"
1267
-
1268
- #: ../admin/views/ad-group.php:52
1269
- msgid ""
1270
- "Ad Groups are a very flexible method to bundle ads. You can use them to "
1271
- "display random ads in the frontend or run split tests, but also just for "
1272
- "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1273
- "ad can belong to multiple ad groups."
1274
- msgstr ""
1275
- "Anzeigen-Gruppen sind eine sehr flexible Methode, um Anzeigen zu bündeln. "
1276
- "Sie können sie verwenden um Zufallsanzeigen im Frontend anzuzeigen oder um "
1277
- "A/B-Tests durchzuführen, aber auch einfach nur zu Informationszwecken. Eine "
1278
- "Anzeigen-Gruppe kann mehrere Anzeigen enthalten, aber eine Anzeige kann auch "
1279
- "zu mehreren Anzeigen-Gruppen gehören."
1280
-
1281
- #: ../admin/views/ad-group.php:60
1282
- msgid "How to display an Ad Group?"
1283
- msgstr "Wie kann eine Anzeigengruppe angezeigt werden?"
1284
-
1285
- #: ../admin/views/ad-group.php:62
1286
- #, php-format
1287
- msgid ""
1288
- "Examples on how to display an ad group? Find more help and examples in the "
1289
- "<a href=\"%s\" target=\"_blank\">manual</a>"
1290
- msgstr ""
1291
- "Suchen Sie Beispiele, wie eine Anzeigen-Gruppe veröffentlicht wird? Sie "
1292
- "finden Hilfe in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
1293
-
1294
- #: ../admin/views/ad-group.php:64
1295
- msgid "To display an ad group with the ID 6 in content fields"
1296
- msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 im Beitrag."
1297
-
1298
- #: ../admin/views/ad-group.php:67
1299
- msgid "To display an ad group with the ID 6 in template files"
1300
- msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 in Template-Dateien"
1301
-
1302
- #: ../admin/views/ad-group.php:87
1303
- msgid "Update Groups"
1304
- msgstr "Gruppen aktualisieren"
1305
-
1306
- #: ../admin/views/ad-info-bottom.php:2
1307
- msgctxt "wizard navigation"
1308
- msgid "previous"
1309
- msgstr "zurück"
1310
-
1311
- #: ../admin/views/ad-info-bottom.php:3
1312
- msgctxt "advanced-ads"
1313
- msgid "Stop Wizard"
1314
- msgstr "Assistenten beenden"
1315
-
1316
- #: ../admin/views/ad-info-bottom.php:4
1317
- msgctxt "wizard navigation"
1318
- msgid "save"
1319
- msgstr "speichern"
1320
-
1321
- #: ../admin/views/ad-info-bottom.php:5
1322
- msgctxt "wizard navigation"
1323
- msgid "next"
1324
- msgstr "weiter"
1325
-
1326
- #: ../admin/views/ad-info-top.php:4
1327
- #, php-format
1328
- msgid ""
1329
- "Congratulations! Your ad is now visible in the frontend. You can adjust the "
1330
- "placement options <a href=\"%s\">here</a>."
1331
- msgstr ""
1332
- "Herzlichen Glückwunsch! Ihre Anzeige ist jetzt für Besucher sichtbar. Sie "
1333
- "können die Platzierung <a href=\"%s\">hier</a> anpassen."
1334
-
1335
- #: ../admin/views/ad-info-top.php:5
1336
- msgid "Where do you want to display the ad?"
1337
- msgstr "Wo wollen Sie die Anzeige platzieren?"
1338
-
1339
- #: ../admin/views/ad-info-top.php:6 ../classes/ad_placements.php:46
1340
- msgid "Before Content"
1341
- msgstr "Vor dem Inhalt"
1342
-
1343
- #: ../admin/views/ad-info-top.php:7
1344
- msgid "Content"
1345
- msgstr "Inhalt"
1346
-
1347
- #: ../admin/views/ad-info-top.php:8 ../classes/ad_placements.php:51
1348
- msgid "After Content"
1349
- msgstr "Nach dem Inhalt"
1350
-
1351
- #: ../admin/views/ad-info-top.php:9
1352
- msgid "Manage Sidebar"
1353
- msgstr "Sidebar verwalten"
1354
-
1355
- #: ../admin/views/ad-info-top.php:11
1356
- msgid "Show Pro Places"
1357
- msgstr "Pro Optionen zeigen"
1358
-
1359
- #: ../admin/views/ad-info-top.php:14
1360
- msgid "Show Sticky Places"
1361
- msgstr "Sticky Position zeigen"
1362
-
1363
- #: ../admin/views/ad-info-top.php:17
1364
- msgid "Show PopUp"
1365
- msgstr "PopUp zeigen"
1366
-
1367
- #: ../admin/views/ad-info-top.php:21
1368
- #, php-format
1369
- msgid "Or use the shortcode %s to insert the ad into the content manually."
1370
- msgstr "Oder benutzen Sie den Shortcode %s um die Anzeige manuell zu platzieren."
1371
-
1372
- #: ../admin/views/ad-info-top.php:22
1373
- #, php-format
1374
- msgid ""
1375
- "Learn more about your choices to display an ad in the <a href=\"%s\" "
1376
- "target=\"_blank\">manual</a>."
1377
- msgstr ""
1378
- "Weitere Möglichkeiten um Anzeigen zu platzieren finden Sie in der <a "
1379
- "href=\"%s\" target=\"_blank\">Anleitung</a>."
1380
-
1381
- #: ../admin/views/ad-info-top.php:31 ../admin/views/ad-info-top.php:43
1382
- msgid "Start Wizard"
1383
- msgstr "Assistenten starten"
1384
-
1385
- #: ../admin/views/ad-info-top.php:32
1386
- msgid "Stop Wizard"
1387
- msgstr "Assistenten beenden"
1388
-
1389
- #: ../admin/views/ad-info-top.php:41
1390
- msgid "Welcome to the Wizard"
1391
- msgstr "Willkommen beim Assistenten"
1392
-
1393
- #: ../admin/views/ad-info-top.php:44
1394
- msgid "Stop Wizard and show all options"
1395
- msgstr "Assistenten beenden und alle Optionen anzeigen"
1396
-
1397
- #: ../admin/views/ad-info.php:2
1398
- #, php-format
1399
- msgid "Ad Id: %s"
1400
- msgstr "Anzeigen-ID: %s"
1401
-
1402
- #: ../admin/views/ad-info.php:5
1403
- msgid "theme function"
1404
- msgstr "Funktion"
1405
-
1406
- #: ../admin/views/ad-info.php:7
1407
- #, php-format
1408
- msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1409
- msgstr ""
1410
- "Sie finden weitere Anzeigemöglichkeiten in der <a href=\"%s\" "
1411
- "target=\"_blank\">Anleitung</a>."
1412
-
1413
- #: ../admin/views/ad-info.php:11
1414
- msgid "click to change"
1415
- msgstr "zum Ändern klicken"
1416
-
1417
- #: ../admin/views/ad-info.php:15
1418
- msgid "Add a description"
1419
- msgstr "Beschreibung angeben"
1420
-
1421
- #: ../admin/views/ad-info.php:18
1422
- msgid "Internal description or your own notes about this ad."
1423
- msgstr "Eigene Beschreibung und Notizen zu dieser Anzeige."
1424
-
1425
- #: ../admin/views/ad-list-filters.php:2
1426
- msgid "all ad types"
1427
- msgstr "Alle Anzeigentypen"
1428
-
1429
- #: ../admin/views/ad-list-filters.php:5
1430
- msgid "all ad sizes"
1431
- msgstr "Alle Anzeigengrößen"
1432
-
1433
- #: ../admin/views/ad-list-filters.php:8
1434
- msgid "all ad dates"
1435
- msgstr "Jedes Datum"
1436
-
1437
- #: ../admin/views/ad-list-filters.php:9
1438
- msgid "expired"
1439
- msgstr "abgelaufen"
1440
-
1441
- #: ../admin/views/ad-list-filters.php:10
1442
- msgid "any expiry date"
1443
- msgstr "Jedes Ablaufdatum"
1444
-
1445
- #: ../admin/views/ad-list-filters.php:11
1446
- msgid "planned"
1447
- msgstr "geplant"
1448
-
1449
- #: ../admin/views/ad-list-filters.php:14
1450
- msgid "all ad groups"
1451
- msgstr "alle Anzeigengruppen"
1452
-
1453
- #: ../admin/views/ad-main-metabox.php:3
1454
- msgid "No ad types defined"
1455
- msgstr "Keine Anzeigentypen definiert"
1456
-
1457
- #: ../admin/views/ad-output-metabox.php:1
1458
- msgid "Everything connected to the ads layout and output."
1459
- msgstr "Alles was mit dem Layout und der Ausgabe im Frontend zusammenhängt."
1460
-
1461
- #: ../admin/views/ad-output-metabox.php:4
1462
- msgid "Position"
1463
- msgstr "Position"
1464
-
1465
- #: ../admin/views/ad-output-metabox.php:6
1466
- msgid "- default -"
1467
- msgstr "- default -"
1468
-
1469
- #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:52
1470
- msgid "default"
1471
- msgstr "Standard"
1472
-
1473
- #: ../admin/views/ad-output-metabox.php:8
1474
- msgid "left"
1475
- msgstr "links"
1476
-
1477
- #: ../admin/views/ad-output-metabox.php:11
1478
- msgid "center"
1479
- msgstr "mittig"
1480
-
1481
- #: ../admin/views/ad-output-metabox.php:14
1482
- msgid "right"
1483
- msgstr "rechts"
1484
-
1485
- #: ../admin/views/ad-output-metabox.php:18
1486
- msgid ""
1487
- "Check this if you don't want the following elements to float around the ad. "
1488
- "(adds a clearfix)"
1489
- msgstr ""
1490
- "Aktivieren Sie diese Funktion, wenn sich nachfolgende Elemente nicht um die "
1491
- "Anzeige legen sollen. (Fügt ein Clearfix hinzu)"
1492
-
1493
- #: ../admin/views/ad-output-metabox.php:22
1494
- msgid "Margin"
1495
- msgstr "Abstand"
1496
-
1497
- #: ../admin/views/ad-output-metabox.php:24
1498
- msgid "top:"
1499
- msgstr "oben:"
1500
-
1501
- #: ../admin/views/ad-output-metabox.php:26
1502
- msgid "right:"
1503
- msgstr "rechts:"
1504
-
1505
- #: ../admin/views/ad-output-metabox.php:28
1506
- msgid "bottom:"
1507
- msgstr "unten:"
1508
-
1509
- #: ../admin/views/ad-output-metabox.php:30
1510
- msgid "left:"
1511
- msgstr "links:"
1512
-
1513
- #: ../admin/views/ad-output-metabox.php:32
1514
- msgid "tip: use this to add a margin around the ad"
1515
- msgstr ""
1516
- "Tipp: Verwenden Sie dies, um einen Abstand zwischen Anzeige und Inhalt "
1517
- "einzufügen."
1518
-
1519
- #: ../admin/views/ad-output-metabox.php:35
1520
- msgid "container ID"
1521
- msgstr "Container-ID"
1522
-
1523
- #: ../admin/views/ad-output-metabox.php:38
1524
- msgid "Specify the id of the ad container. Leave blank for random or no id."
1525
- msgstr ""
1526
- "ID des Anzeigencontainers angeben. Leer lassen für eine zufällig oder keine "
1527
- "ID."
1528
-
1529
- #: ../admin/views/ad-output-metabox.php:41
1530
- msgid "container classes"
1531
- msgstr "Container-Class"
1532
-
1533
- #: ../admin/views/ad-output-metabox.php:44
1534
- msgid ""
1535
- "Specify one or more classes for the container. Separate multiple classes "
1536
- "with a space"
1537
- msgstr "Eine oder mehrere CSS-Klassen für den Container. Mehrere mit Komma trennen."
1538
-
1539
- #: ../admin/views/ad-output-metabox.php:47
1540
- msgid "Enable debug mode"
1541
- msgstr "Debug-Modus aktivieren"
1542
-
1543
- #: ../admin/views/ad-parameters-size.php:1
1544
- msgid "size"
1545
- msgstr "Abmaße"
1546
-
1547
- #: ../admin/views/ad-parameters-size.php:3
1548
- msgid "width"
1549
- msgstr "Breite"
1550
-
1551
- #: ../admin/views/ad-parameters-size.php:4
1552
- msgid "height"
1553
- msgstr "Höhe"
1554
-
1555
- #: ../admin/views/ad-parameters-size.php:6
1556
- msgid "reserve this space"
1557
- msgstr "Platz reservieren"
1558
-
1559
- #: ../admin/views/ad-submitbox-meta.php:6
1560
- msgid "Set expiry date"
1561
- msgstr "Verfallsdatum setzen"
1562
-
1563
- #: ../admin/views/ad-submitbox-meta.php:12
1564
- msgid "Month"
1565
- msgstr "Monat"
1566
-
1567
- #: ../admin/views/ad-submitbox-meta.php:16
1568
- #, php-format
1569
- msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1570
- msgid "%1$s-%2$s"
1571
- msgstr "%1$s-%2$s"
1572
-
1573
- #: ../admin/views/ad-submitbox-meta.php:21
1574
- msgid "Day"
1575
- msgstr "Tag"
1576
-
1577
- #: ../admin/views/ad-submitbox-meta.php:22
1578
- msgid "Year"
1579
- msgstr "Jahr"
1580
-
1581
- #: ../admin/views/ad-submitbox-meta.php:23
1582
- msgid "Hour"
1583
- msgstr "Stunde"
1584
-
1585
- #: ../admin/views/ad-submitbox-meta.php:24
1586
- msgid "Minute"
1587
- msgstr "Minute"
1588
-
1589
- #: ../admin/views/ad-submitbox-meta.php:29
1590
- #, php-format
1591
- msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1592
- msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1593
- msgstr "%2$s %1$s, %3$s @ %4$s %5$s"
1594
-
1595
- #: ../admin/views/ad-visitor-metabox.php:4
1596
- msgid ""
1597
- "Display conditions that are based on the user. Use with caution on cached "
1598
- "websites."
1599
- msgstr ""
1600
- "Anzeigebedingungen, die sich auf den Benutzer beziehen. Auf gecachten "
1601
- "Webseiten bitte mit Vorsicht anwenden."
1602
-
1603
- #: ../admin/views/ad-visitor-metabox.php:28
1604
- msgid ""
1605
- "Visitor conditions limit the number of users who can see your ad. There is "
1606
- "no need to set visitor conditions if you want all users to see the ad."
1607
- msgstr ""
1608
- "Besucherbedingungen begrenzen die Anzahl an Besuchern, die eine Anzeige "
1609
- "sehen. Vermeiden Sie solche Bedingungen, wenn alle Nutzer die Anzeige sehen "
1610
- "sollen."
1611
-
1612
- #: ../admin/views/ad-visitor-metabox.php:30
1613
- #, php-format
1614
- msgid ""
1615
- "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
1616
- "if dynamic features get cached."
1617
- msgstr ""
1618
- "Benutzen Sie das Cache-Busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
1619
- "Pro</a> falls dynamische Einstellungen nicht funktionieren."
1620
-
1621
- #: ../admin/views/ad-visitor-metabox.php:47
1622
- #, php-format
1623
- msgid ""
1624
- "Define the exact browser width for which an ad should be visible using the "
1625
- "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1626
- msgstr ""
1627
- "Nutzen Sie die <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> und "
1628
- "geben Sie die genaue Browserbreite an, für die diese Anzeige sichtbar sein "
1629
- "sollen."
1630
-
1631
- #: ../admin/views/ad-visitor-metabox.php:92
1632
- msgid ""
1633
- "The visitor conditions below are deprecated. Please use the new version of "
1634
- "visitor conditions to replace it."
1635
- msgstr ""
1636
- "Die unten aufgeführten Besucherbedingungen sind veraltet. Bitte nutzen Sie "
1637
- "die neueren Versionen oben."
1638
-
1639
- #: ../admin/views/ad-visitor-metabox.php:98
1640
- msgid "Display on all devices"
1641
- msgstr "Auf allen Geräten anzeigen"
1642
-
1643
- #: ../admin/views/ad-visitor-metabox.php:102
1644
- msgid "only on mobile devices"
1645
- msgstr "Nur auf mobilen Geräten"
1646
-
1647
- #: ../admin/views/ad-visitor-metabox.php:106
1648
- msgid "not on mobile devices"
1649
- msgstr "Nicht auf mobilen Endgeräten"
1650
-
1651
- #: ../admin/views/debug.php:6 ../admin/views/settings.php:49
1652
- msgid "Debug Page"
1653
- msgstr "Debug-Seite"
1654
-
1655
- #: ../admin/views/debug.php:7
1656
- msgid "Work in progress"
1657
- msgstr "In Arbeit"
1658
-
1659
- #: ../admin/views/feedback_disable.php:8
1660
- #, php-format
1661
- msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1662
- msgstr "Ich vermisse eine Funktion oder eine <a href=\"%s\">Erweiterung</a>"
1663
-
1664
- #: ../admin/views/intro.php:18
1665
- msgid "5-Star Usability"
1666
- msgstr "5-Sterne für Bedienbarkeit"
1667
-
1668
- #: ../admin/views/intro.php:19
1669
- msgid ""
1670
- "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1671
- "standards. If you know how to publish a post then you know how to create an "
1672
- "ad."
1673
- msgstr ""
1674
- "Advanced Ads ist gleichzeitig sehr mächtig und einfach bedienbar, da es auf "
1675
- "WordPress-Standards basiert. Wenn Sie wissen wie Sie einen Beitrag schreiben,"
1676
- " dann können Sie auch eine Anzeige erstellen."
1677
-
1678
- #: ../admin/views/intro.php:23
1679
- msgid "5-Star Support"
1680
- msgstr "5-Sterne für Support"
1681
-
1682
- #: ../admin/views/intro.php:24
1683
- msgid ""
1684
- "I promise you the best supported ad management plugin for WordPress. Whether "
1685
- "a pro user or not, you can reach me easily through the support page, in the "
1686
- "chat on the homepage or replying to a newsletter."
1687
- msgstr ""
1688
- "Ich verspreche Ihnen das am besten betreute Anzeigenplugin für WordPress. Ob "
1689
- "Pro-Nutzer oder nicht, Sie erreichen mich unkompliziert über die Support-"
1690
- "Seite, den Chat auf der Homepage oder als Antwort auf den Newsletter."
1691
-
1692
- #: ../admin/views/intro.php:28
1693
- msgid "5-Star Experience"
1694
- msgstr "5-Sterne für Erfahrung"
1695
-
1696
- #: ../admin/views/intro.php:29
1697
- msgid ""
1698
- "Advanced Ads was built out of my own experience. I am personally using it to "
1699
- "serve millions of ad impressions per month and constantly test new ways to "
1700
- "optimize ad settings."
1701
- msgstr ""
1702
- "Advanced Ads wird von mir selbst eingesetzt um mehrere Millionen Anzeigen "
1703
- "pro Monat auszuliefern. Daher basieren alle Funktionen auf praktischen "
1704
- "Erfahrungen und ich teste kontinuierlich weitere Optimierungsmöglichkeiten."
1705
-
1706
- #: ../admin/views/intro.php:34
1707
- msgid "Welcome to <strong>Advanced Ads</strong>"
1708
- msgstr "Willkommen bei <strong>Advanced Ads</strong>"
1709
-
1710
- #: ../admin/views/intro.php:36
1711
- msgid "Let me give you an introduction into your future ad management solution."
1712
- msgstr "Eine kleine Einführung und erste Schritte in Ihre zukünftige Anzeigen-Lösung."
1713
-
1714
- #: ../admin/views/intro.php:61
1715
- msgid "Next Steps"
1716
- msgstr "Nächste Schritte"
1717
-
1718
- #: ../admin/views/intro.php:64
1719
- msgid "Subscribe to the Mailing List"
1720
- msgstr "Newsletter-Anmeldung"
1721
-
1722
- #: ../admin/views/intro.php:65
1723
- msgid "Subscribe to the newsletter and instantly"
1724
- msgstr "Ihre Vorteile, wenn Sie den Newsletter abonnieren sind:"
1725
-
1726
- #: ../admin/views/intro.php:67
1727
- msgid "get 2 free add-ons."
1728
- msgstr "sofort 2 kostenfreie Erweiterungen."
1729
-
1730
- #: ../admin/views/intro.php:68
1731
- msgid "reply to the welcome message with a question."
1732
- msgstr "antworten Sie mir auch die Bestätigungsemail mit Ihrer Frage."
1733
-
1734
- #: ../admin/views/intro.php:69
1735
- msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1736
- msgstr "Einführung und AdSense Tipps (engl.) erhalten."
1737
-
1738
- #: ../admin/views/intro.php:79
1739
- #, php-format
1740
- msgid ""
1741
- "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
1742
- "watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
1743
- msgstr ""
1744
- "Einfach mit einer <a href=\"%1$s\" target=\"blank\">neuen Anzeige</a> anfangen "
1745
- "oder das <a href=\"%2$s\" target=\"blank\">Video-Tutorial (3:29min, eng.)</a> "
1746
- "anschauen."
1747
-
1748
- #: ../admin/views/intro.php:82
1749
- msgid "Display your ad"
1750
- msgstr "Anzeige einblenden"
1751
-
1752
- #: ../admin/views/intro.php:83
1753
- msgid ""
1754
- "You can display your ad using a shortcode, widget or one of the powerful "
1755
- "placements. Placements help you to inject ads into the content or place them "
1756
- "on your site without coding."
1757
- msgstr ""
1758
- "Sie können Ihre Anzeige mit Hilfe eines Shortcodes, Widgets oder "
1759
- "verschiedener Platzierungen auf Ihrer Seite einbinden. Platzierungen sind "
1760
- "Positionen und Kanäle, über die Ihre Anzeige ohne Programmierkenntnisse auf "
1761
- "Ihrer Seite angezeigt werden können."
1762
-
1763
- #: ../admin/views/intro.php:85
1764
- msgid "List of all available placements"
1765
- msgstr "Liste aller verfügbaren Platzierungen"
1766
-
1767
- #: ../admin/views/intro.php:86
1768
- msgid "Create a placement"
1769
- msgstr "Platzierung erstellen"
1770
-
1771
- #: ../admin/views/placements.php:8
1772
- msgid ""
1773
- "Couldn’t create the new placement. Please check your form field and whether "
1774
- "the name is already in use."
1775
- msgstr ""
1776
- "Die Platzierung konnte nicht angelegt werden. Bitte überprüfen Sie die "
1777
- "Formular-Felder und ob der Name bereits verwendet wird."
1778
-
1779
- #: ../admin/views/placements.php:10
1780
- msgid "Placements updated"
1781
- msgstr "Platzierungen aktualisiert"
1782
-
1783
- #: ../admin/views/placements.php:15
1784
- msgid ""
1785
- "Placements are physically places in your theme and posts. You can use them "
1786
- "if you plan to change ads and ad groups on the same place without the need "
1787
- "to change your templates."
1788
- msgstr ""
1789
- "Platzierungen sind Stellen in Ihrem Theme und in den Beiträgen. Sie können "
1790
- "sie verwenden, wenn Sie Anzeigen und Anzeigengruppen später an einer "
1791
- "Position austauschen möchten, ohne eine Änderung der Templates oder Seiten-"
1792
- "Inhalte vorzunehmen."
1793
-
1794
- #: ../admin/views/placements.php:16
1795
- #, php-format
1796
- msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1797
- msgstr ""
1798
- "Weitere Informationen finden Sie in der <a href=\"%s\">Anleitung zu "
1799
- "Platzierungen</a>."
1800
-
1801
- #: ../admin/views/placements.php:25 ../modules/import-export/views/page.php:26
1802
- msgid "Options"
1803
- msgstr "Optionen"
1804
-
1805
- #: ../admin/views/placements.php:42
1806
- #, php-format
1807
- msgid ""
1808
- "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1809
- "if the responsible add-on is activated."
1810
- msgstr ""
1811
- "Der Platzierungs-Typ \"%s\" fehlt und wurde auf \"default\" zurückgesetzt."
1812
- "<br/>Bitte prüfen Sie, ob die notwendige Erweiterung aktiviert ist."
1813
-
1814
- #: ../admin/views/placements.php:58
1815
- msgid "show usage"
1816
- msgstr "Nutzungshinweise"
1817
-
1818
- #: ../admin/views/placements.php:70
1819
- msgid "Item"
1820
- msgstr "Anzeige"
1821
-
1822
- #: ../admin/views/placements.php:72 ../admin/views/placements.php:176
1823
- msgid "--not selected--"
1824
- msgstr "--nicht gewählt--"
1825
-
1826
- #: ../admin/views/placements.php:92
1827
- msgid "Inject"
1828
- msgstr "Einfügen"
1829
-
1830
- #: ../admin/views/placements.php:93
1831
- msgid "after"
1832
- msgstr "nach"
1833
-
1834
- #: ../admin/views/placements.php:93
1835
- msgid "before"
1836
- msgstr "vor"
1837
-
1838
- #: ../admin/views/placements.php:113
1839
- msgid "start counting from bottom"
1840
- msgstr "von unten zählen"
1841
-
1842
- #: ../admin/views/placements.php:116
1843
- msgid "Important Notice"
1844
- msgstr "Hinweis"
1845
-
1846
- #: ../admin/views/placements.php:116
1847
- msgid ""
1848
- "Your server is missing an extension. This might break the content injection."
1849
- "<br/>Ignore this warning if everything works fine or else ask your hosting "
1850
- "provider to enable <em>mbstring</em>."
1851
- msgstr ""
1852
- "Auf Ihrem Server fehlt eine Erweiterung die für das Einfügen von Anzeigen in "
1853
- "den Beitragstext notwendig ist.<br/>\n"
1854
- "\n"
1855
- "Ignorieren Sie diese Warnung, wenn das Placement problemlos funktioniert "
1856
- "oder bitten Sie Ihren Hosting-Anbieter <em>mbstring</em> zu aktivieren."
1857
-
1858
- #: ../admin/views/placements.php:126
1859
- msgid "advanced options"
1860
- msgstr "erweiterte Funktionen"
1861
-
1862
- #: ../admin/views/placements.php:134
1863
- msgctxt "checkbox to remove placement"
1864
- msgid "delete"
1865
- msgstr "löschen"
1866
-
1867
- #: ../admin/views/placements.php:140
1868
- msgid "Save Placements"
1869
- msgstr "Platzierungen sichern"
1870
-
1871
- #: ../admin/views/placements.php:142
1872
- msgid "Create a new placement"
1873
- msgstr "Neue Platzierung erstellen"
1874
-
1875
- #: ../admin/views/placements.php:143
1876
- msgid "New Placement"
1877
- msgstr "Neue Platzierung"
1878
-
1879
- #: ../admin/views/placements.php:149
1880
- msgid "Choose a placement type"
1881
- msgstr "Typ der Platzierung wählen"
1882
-
1883
- #: ../admin/views/placements.php:150
1884
- #, php-format
1885
- msgid ""
1886
- "Placement types define where the ad is going to be displayed. Learn more "
1887
- "about the different types from the <a href=\"%s\">manual</a>"
1888
- msgstr ""
1889
- "Der Platzierungstyp entscheidet darüber wo eine Anzeige im Frontend "
1890
- "platziert wird. Mehr dazu finden Sie in der <a href=\"%s\">Anleitung</a>."
1891
-
1892
- #: ../admin/views/placements.php:167
1893
- msgid "Please select a placement type."
1894
- msgstr "Bitte wählen Sie einen Platzierungs-Typ"
1895
-
1896
- #: ../admin/views/placements.php:169
1897
- msgid "Choose a Name"
1898
- msgstr "Bezeichnung wählen"
1899
-
1900
- #: ../admin/views/placements.php:170
1901
- msgid ""
1902
- "The name of the placement is only visible to you. Tip: choose a descriptive "
1903
- "one, e.g. <em>Below Post Headline</em>."
1904
- msgstr ""
1905
- "Die Bezeichnung der Platzierung ist nur für Sie sichtbar. Ich empfehle eine "
1906
- "beschreibende Bezeichnung, z.B. <em>Unter der Artikelüberschrift</em>."
1907
-
1908
- #: ../admin/views/placements.php:171
1909
- msgid "Placement Name"
1910
- msgstr "Bezeichnung"
1911
-
1912
- #: ../admin/views/placements.php:172
1913
- msgid "Please enter a name for your placement."
1914
- msgstr "Bitte tragen Sie den Namen der Platzierung ein."
1915
-
1916
- #: ../admin/views/placements.php:173
1917
- msgid "Choose the Ad or Group"
1918
- msgstr "Anzeige oder Gruppe wählen"
1919
-
1920
- #: ../admin/views/placements.php:174
1921
- msgid "The ad or group that should be displayed."
1922
- msgstr "Die Anzeige oder Anzeigengruppe die angezeigt werden soll."
1923
-
1924
- #: ../admin/views/placements.php:193
1925
- msgid "Save New Placement"
1926
- msgstr "Neue Platzierung sichern"
1927
-
1928
- #: ../admin/views/post-ad-settings-metabox.php:3
1929
- msgid "Disable ads on this page"
1930
- msgstr "Anzeigen auf dieser Seite deaktivieren."
1931
-
1932
- #: ../admin/views/setting-license.php:5
1933
- msgid "Your license expired."
1934
- msgstr "Die Lizenz ist abgelaufen."
1935
-
1936
- #: ../admin/views/setting-license.php:6
1937
- #, php-format
1938
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
1939
- msgstr "Mit einem Rabatt verlängern."
1940
-
1941
- #: ../admin/views/setting-license.php:14
1942
- #, php-format
1943
- msgid "(%d days left)"
1944
- msgstr "(noch %d Tage)"
1945
-
1946
- #: ../admin/views/setting-license.php:18
1947
- msgid "License key"
1948
- msgstr "Lizenzschlüssel"
1949
-
1950
- #: ../admin/views/setting-license.php:28
1951
- msgid "Deactivate License"
1952
- msgstr "Lizenz deaktivieren"
1953
-
1954
- #: ../admin/views/setting-license.php:35
1955
- msgid "Activate License"
1956
- msgstr "Lizenz aktivieren"
1957
-
1958
- #: ../admin/views/setting-license.php:39
1959
- msgid "License key invalid"
1960
- msgstr "Lizenzschlüssel ungültig."
1961
-
1962
- #: ../admin/views/setting-license.php:42
1963
- msgid "active"
1964
- msgstr "aktiv"
1965
-
1966
- #: ../admin/views/settings-disable-ads.php:3
1967
- msgid "Disable all ads in frontend"
1968
- msgstr "Alle Anzeigen im Frontend deaktivieren"
1969
-
1970
- #: ../admin/views/settings-disable-ads.php:4
1971
- msgid ""
1972
- "Use this option to disable all ads in the frontend, but still be able to use "
1973
- "the plugin."
1974
- msgstr ""
1975
- "Benutzen Sie diese Einstellung um alle Anzeigen im Frontend zu deaktivieren "
1976
- "und das Plugin dennoch weiterhin zu nutzen."
1977
-
1978
- #: ../admin/views/settings-disable-ads.php:8
1979
- msgid "Disable ads on 404 error pages"
1980
- msgstr "Alle Anzeigen auf 404-Fehlerseiten deaktivieren"
1981
-
1982
- #: ../admin/views/settings-disable-ads.php:12
1983
- msgid "Disable ads on non-singular pages"
1984
- msgstr "Alle Anzeigen auf Nicht-Einzelseiten deaktivieren"
1985
-
1986
- #: ../admin/views/settings-disable-ads.php:13
1987
- msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
1988
- msgstr ""
1989
- "z.B. Archive wie Kategorien, Schlagwörter, Autoren, Übersicht auf der "
1990
- "Startseite"
1991
-
1992
- #: ../admin/views/settings-disable-ads.php:16
1993
- msgid "Disable ads on secondary queries"
1994
- msgstr "Anzeigen in sekundären Abfragen deaktivieren."
1995
-
1996
- #: ../admin/views/settings-disable-ads.php:17
1997
- msgid ""
1998
- "Secondary queries are custom queries of posts outside the main query of a "
1999
- "page. Try this option if you see ads injected on places where they shouldn’t "
2000
- "appear."
2001
- msgstr ""
2002
- "Sekundäre Anfragen (secundary queries) sind eigene Abfragen von Beiträgen "
2003
- "außerhalb der üblichen Seitenlogik. Aktivieren Sie dieses Feld, wenn "
2004
- "Anzeigen außerhalb der Hauptinhalte erscheinen und dies nicht tun sollen."
2005
-
2006
- #: ../admin/views/settings-disable-ads.php:21
2007
- msgid "Disable ads in Feed"
2008
- msgstr "Anzeigen im Feed deaktivieren"
2009
-
2010
- #: ../admin/views/settings.php:36
2011
- msgid "Save settings on this page"
2012
- msgstr "Einstellungen auf dieser Seite speichern"
2013
-
2014
- #: ../admin/views/settings.php:48 ../modules/import-export/main.php:15 ..
2015
- #: modules/import-export/main.php:15
2016
- msgid "Import &amp; Export"
2017
- msgstr "Import & Export"
2018
-
2019
- #: ../admin/views/settings.php:50
2020
- msgid "Welcome Page"
2021
- msgstr "Willkommen"
2022
-
2023
- #: ../admin/views/settings.php:51
2024
- msgid "Advanced Ads on WordPress.org"
2025
- msgstr "Advanced Ads auf WordPress.org"
2026
-
2027
- #: ../admin/views/settings.php:51
2028
- msgid "Advanced Ads on wp.org"
2029
- msgstr "Advanced Ads auf wp.org"
2030
-
2031
- #: ../admin/views/settings.php:52
2032
- msgid "the company behind Advanced Ads"
2033
- msgstr "das Unternehmen hinter Advanced Ads"
2034
-
2035
- #: ../admin/views/support.php:8
2036
- msgid "Possible Issues"
2037
- msgstr "Mögliche Probleme"
2038
-
2039
- #: ../admin/views/support.php:9
2040
- msgid ""
2041
- "Please fix the red highlighted issues on this page or try to understand "
2042
- "their consequences before contacting support."
2043
- msgstr ""
2044
- "Bitte beheben Sie die rot hervorgehobenen Fehler auf dieser Seite oder "
2045
- "verstehen Sie deren Konsequenzen, bevor Sie uns kontaktieren."
2046
-
2047
- #: ../admin/views/support.php:13
2048
- #, php-format
2049
- msgid ""
2050
- "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2051
- "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2052
- "Please ask your hosting provider for more information."
2053
- msgstr ""
2054
- "Ihre PHP-Version (%s) ist zu niedrig. Advanced Ads ist für 5.3 und höher "
2055
- "ausgelegt. Für niedrigere Versionen kann keine Garantie übernommen werden. "
2056
- "Bitte kontaktieren Sie Ihren Hosting-Anbieter für weitere Informationen."
2057
-
2058
- #: ../admin/views/support.php:16
2059
- #, php-format
2060
- msgid ""
2061
- "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2062
- "rotation or visitor conditions might not work properly. Use the cache-"
2063
- "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
2064
- "ads dynamically."
2065
- msgstr ""
2066
- "Ihre <strong>Webseite benutzt Cache</strong>. Einige dynamische Funktionen "
2067
- "wie Anzeigenrotation oder Besucherbedingungen könnten davon betroffen sein. "
2068
- "Nutzen Sie das Cache-Busting von <a href=\"%s\" target=\"_blank\">Advanced Ads "
2069
- "Pro</a> um Anzeigen trotz Cache dynamisch zu laden."
2070
-
2071
- #: ../admin/views/support.php:19
2072
- msgid "There is a <strong>new WordPress version available</strong>. Please update."
2073
- msgstr ""
2074
- "Es ist eine <strong>neue WordPress-Version</strong> verfügbar. Bitte "
2075
- "aktualisieren Sie."
2076
-
2077
- #: ../admin/views/support.php:22
2078
- msgid "There are <strong>plugin updates available</strong>. Please update."
2079
- msgstr "Bitte aktualisieren Sie die installierten Plugins."
2080
-
2081
- #: ../admin/views/support.php:25
2082
- #, php-format
2083
- msgid ""
2084
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
2085
- "missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
2086
- msgstr ""
2087
- "Ein oder mehrere Lizenzschlüssel für <strong>Advanced Ads Erweiterungen sind "
2088
- "ungültig oder fehlen</strong>. Bitte tragen Sie <a href=\"%s\">hier</a> "
2089
- "gültige Lizenzschlüssel ein."
2090
-
2091
- #: ../admin/views/support.php:31
2092
- #, php-format
2093
- msgid ""
2094
- "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2095
- "site performance, it is known to alter code, including scripts from ad "
2096
- "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
2097
- "support for Autoptimize."
2098
- msgstr ""
2099
- "Es wurde das <strong>Autoptimize-Plugin gefunden</strong>. Das Plugin ist "
2100
- "zwar gut für die Performance einer Seite, ändert aber häufig den Code von "
2101
- "Anzeigen. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> löst dieses "
2102
- "Problem."
2103
-
2104
- #: ../admin/views/support.php:34
2105
- #, php-format
2106
- msgid ""
2107
- "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2108
- "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2109
- msgstr ""
2110
- "Plugins, die (teilweise) Fehler verursachen können: <strong>%1$s</strong>. "
2111
- "<a href=\"%2$s\" target=\"_blank\">weitere Informationen</a>."
2112
-
2113
- #: ../admin/views/support.php:38
2114
- #, php-format
2115
- msgid ""
2116
- "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2117
- "href=\"%s\">settings</a>."
2118
- msgstr ""
2119
- "Anzeigen sind für einige oder alle Seiten deaktiviert. Vgl. \"Anzeigen "
2120
- "deaktivieren\" in den <a href=\"%s\">Einstellungen</a>."
2121
-
2122
- #: ../admin/views/support.php:49
2123
- msgid "Search"
2124
- msgstr "Suche"
2125
-
2126
- #: ../admin/views/support.php:50
2127
- msgid ""
2128
- "Use the following form to search for solutions in the manual on "
2129
- "wpadvancedads.com"
2130
- msgstr ""
2131
- "Benutzen Sie die folgende Suche um in der Anleitung (englisch) auf "
2132
- "wpadvancedads.com zu suchen."
2133
-
2134
- #: ../admin/views/support.php:53
2135
- msgid "search"
2136
- msgstr "suchen"
2137
-
2138
- #: ../admin/views/support.php:55
2139
- msgid "Contact"
2140
- msgstr "Kontakt aufnehmen"
2141
-
2142
- #: ../admin/views/support.php:56
2143
- #, php-format
2144
- msgid ""
2145
- "Please search the manual for a solution and take a look at <a href=\"%s\" "
2146
- "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2147
- msgstr ""
2148
- "Bitte suchen Sie zunächst in der Anleitung nach einer Lösung und schauen "
2149
- "sich die Vorschläge unter <a href=\"%s\" target=\"_blank\">Ads not showing up?"
2150
- "</a> an."
2151
-
2152
- #: ../admin/views/support.php:58
2153
- msgid "Email was successfully sent."
2154
- msgstr "E-Mail erfolgreich gesendet."
2155
-
2156
- #: ../admin/views/support.php:67
2157
- msgid "your email"
2158
- msgstr "E-Mail"
2159
-
2160
- #: ../admin/views/support.php:71
2161
- msgid "your name"
2162
- msgstr "Name"
2163
-
2164
- #: ../admin/views/support.php:75
2165
- msgid "your message"
2166
- msgstr "Nachricht"
2167
-
2168
- #: ../admin/views/support.php:80
2169
- msgid "send"
2170
- msgstr "senden"
2171
-
2172
- #: ../admin/views/notices/adblock.php:3
2173
- msgid ""
2174
- "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2175
- "ad setup."
2176
- msgstr ""
2177
- "Bitte deaktivieren Sie Ihren <strong>AdBlocker</strong> um Probleme beim "
2178
- "Aufsetzen der Anzeigen zu verhindern."
2179
-
2180
- #: ../classes/ad_placements.php:31
2181
- msgid "Manual Placement"
2182
- msgstr "Manuelle Platzierung"
2183
-
2184
- #: ../classes/ad_placements.php:32
2185
- msgid "Manual placement to use as function or shortcode."
2186
- msgstr "Manuelle Platzierung zur Nutzung als Funktion oder Shortcode."
2187
-
2188
- #: ../classes/ad_placements.php:36
2189
- msgid "Header Code"
2190
- msgstr "Header-Code"
2191
-
2192
- #: ../classes/ad_placements.php:37
2193
- msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
2194
- msgstr ""
2195
- "Automatisch im Header der Seite eingebunden (vor dem schließenden &lt;"
2196
- "/head&gt; Tag, nicht für sichtbare Anzeigen gedacht)."
2197
-
2198
- #: ../classes/ad_placements.php:41
2199
- msgid "Footer Code"
2200
- msgstr "Footer-Code"
2201
-
2202
- #: ../classes/ad_placements.php:42
2203
- msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
2204
- msgstr ""
2205
- "Automatisch im Footer der Seite eingebunden (vor dem schließenden &lt;"
2206
- "/body&gt; Tag)."
2207
-
2208
- #: ../classes/ad_placements.php:47
2209
- msgid "Injected before the post content."
2210
- msgstr "Injiziert vor den Beitrags-Inhalt."
2211
-
2212
- #: ../classes/ad_placements.php:52
2213
- msgid "Injected after the post content."
2214
- msgstr "Injiziert hinter den Beitrags-Inhalt."
2215
-
2216
- #: ../classes/ad_placements.php:56
2217
- msgid "Post Content"
2218
- msgstr "Beitrags-Inhalt"
2219
-
2220
- #: ../classes/ad_placements.php:57
2221
- msgid ""
2222
- "Injected into the post content. You can choose the paragraph after which the "
2223
- "ad content is displayed."
2224
- msgstr ""
2225
- "Injiziert in den Beitrags-Inhalt. Sie können den Absatz oder die Überschrift "
2226
- "wählen, nach dem die Anzeige eingebunden wird."
2227
-
2228
- #: ../classes/ad_placements.php:61
2229
- msgid "Sidebar Widget"
2230
- msgstr "Sidebar Widget"
2231
-
2232
- #: ../classes/ad_placements.php:62
2233
- msgid ""
2234
- "Create a sidebar widget with an ad. Can be placed and used like any other "
2235
- "widget."
2236
- msgstr ""
2237
- "Sidebar-Widget mit einer Anzeige erstellen. Kann wie jedes andere Widget "
2238
- "benutzt werden."
2239
-
2240
- #: ../classes/ad_placements.php:210
2241
- #, php-format
2242
- msgid "paragraph (%s)"
2243
- msgstr "Absatz (%s)"
2244
-
2245
- #: ../classes/ad_placements.php:211
2246
- #, php-format
2247
- msgid "paragraph without image (%s)"
2248
- msgstr "Absatz ohne Bild (%s)"
2249
-
2250
- #: ../classes/ad_placements.php:212
2251
- #, php-format
2252
- msgid "headline 2 (%s)"
2253
- msgstr "Überschrift 2 (%s)"
2254
-
2255
- #: ../classes/ad_placements.php:213
2256
- #, php-format
2257
- msgid "headline 3 (%s)"
2258
- msgstr "Überschrift 3 (%s)"
2259
-
2260
- #: ../classes/ad_placements.php:214
2261
- #, php-format
2262
- msgid "headline 4 (%s)"
2263
- msgstr "Überschrift 4 (%s)"
2264
-
2265
- #: ../classes/ad_type_content.php:35
2266
- msgid "Rich Content"
2267
- msgstr "Rich Content"
2268
-
2269
- #: ../classes/ad_type_content.php:36
2270
- msgid ""
2271
- "The full content editor from WordPress with all features like shortcodes, "
2272
- "image upload or styling, but also simple text/html mode for scripts and code."
2273
- msgstr ""
2274
- "Der vollständige Content-Editor von Wordpress mit allen Funktionen wie "
2275
- "Textbearbeitung, Shortcodes, Bild-Upload oder -Styling."
2276
-
2277
- #: ../classes/ad_type_group.php:31
2278
- msgid ""
2279
- "Choose an existing ad group. Use this type when you want to assign the same "
2280
- "display and visitor conditions to all ads in that group."
2281
- msgstr ""
2282
- "Auswahl einer bestehenden Anzeigengruppe. Nutzen Sie diesen Anzeigentypen um "
2283
- "identische Besucher- und Anzeigebedingungen für eine Gruppe von Anzeigen zu "
2284
- "verwenden."
2285
-
2286
- #: ../classes/ad_type_group.php:84
2287
- msgid "ad group"
2288
- msgstr "Anzeigengruppe"
2289
-
2290
- #: ../classes/ad_type_image.php:34
2291
- msgid "Image Ad"
2292
- msgstr "Bildanzeige"
2293
-
2294
- #: ../classes/ad_type_image.php:35
2295
- msgid "Ads in various image formats."
2296
- msgstr "Anzeige in einem Bildformat"
2297
-
2298
- #: ../classes/ad_type_image.php:55
2299
- msgid "Insert File"
2300
- msgstr "Datei einfügen"
2301
-
2302
- #: ../classes/ad_type_image.php:55
2303
- msgid "Insert"
2304
- msgstr "Einfügen"
2305
-
2306
- #: ../classes/ad_type_image.php:55
2307
- msgid "select image"
2308
- msgstr "Bild wählen"
2309
-
2310
- #: ../classes/ad_type_image.php:56
2311
- msgid "edit"
2312
- msgstr "bearbeiten"
2313
-
2314
- #: ../classes/ad_type_image.php:65
2315
- msgid "url"
2316
- msgstr "URL"
2317
-
2318
- #: ../classes/ad_type_image.php:67
2319
- #, php-format
2320
- msgid ""
2321
- "Pro: Open this url in a new window and track impressions and clicks with the "
2322
- "<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
2323
- msgstr ""
2324
- "Pro: Mit dem <a href=\"%s\" target=\"_blank\">Tracking</a> lässt sich diese URL "
2325
- "in einem neuen Fenster öffnen und können Impressionen sowie Klicks gezählt "
2326
- "werden."
2327
-
2328
- #: ../classes/ad_type_plain.php:31
2329
- msgid "Plain Text and Code"
2330
- msgstr "Nur Text und Code"
2331
-
2332
- #: ../classes/ad_type_plain.php:32
2333
- msgid ""
2334
- "Simple text editor without any filters. You might use it to display "
2335
- "unfiltered content, php code or javascript. Shortcodes and other WordPress "
2336
- "content field magic does not work here."
2337
- msgstr ""
2338
- "Einfacher Text-Editor ohne Filter. Sie können ihn zur Anzeige von "
2339
- "ungefiltertem Inhalt, PHP-Code oder JavaScript benutzen. Shortcodes und "
2340
- "ähnliche WordPress-Funktionen funktionieren hier nicht."
2341
-
2342
- #: ../classes/ad_type_plain.php:52
2343
- msgid "Insert plain text or code into this field."
2344
- msgstr "Fügen Sie Text oder Code in dieses Feld ein."
2345
-
2346
- #: ../classes/ad_type_plain.php:86
2347
- msgid "Allow PHP"
2348
- msgstr "PHP zulassen"
2349
-
2350
- #: ../classes/ad_type_plain.php:88
2351
- msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2352
- msgstr "PHP code ausführen (umgeben von <code>&lt;?php ?&gt;</code>)"
2353
-
2354
- #: ../classes/checks.php:223
2355
- #, php-format
2356
- msgid ""
2357
- "Possible conflict between jQueryUI library, used by Advanced Ads and other "
2358
- "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
2359
- "misfortunate formats in forms, but should not damage features."
2360
- msgstr ""
2361
- "Möglicher Konflikt zwischen der jQueryUI Bibliothek die von Advanced Ads "
2362
- "verwendet wird und anderen Bibliotheken (vermutlich <a href=\"%s\">Twitter "
2363
- "Bootstrap</a>). Dies kann zu ungünstigen Darstellungen in Formularen führen, "
2364
- "ist jedoch kein kritischer Fehler."
2365
-
2366
- #: ../classes/display-conditions.php:69
2367
- msgid "post type"
2368
- msgstr "Post Type"
2369
-
2370
- #: ../classes/display-conditions.php:70 ../includes/array_ad_conditions.php:40
2371
- msgid "Choose the public post types on which to display the ad."
2372
- msgstr ""
2373
- "Wählen Sie aus den öffentlichen Beitragstypen jene aus, bei denen die "
2374
- "Anzeige erscheinen soll."
2375
-
2376
- #: ../classes/display-conditions.php:76
2377
- msgid "specific pages"
2378
- msgstr "bestimmte Seiten"
2379
-
2380
- #: ../classes/display-conditions.php:77 ../includes/array_ad_conditions.php:58
2381
- msgid ""
2382
- "Choose on which individual posts, pages and public post type pages you want "
2383
- "to display or hide ads."
2384
- msgstr ""
2385
- "Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf "
2386
- "denen Anzeigen angezeigt oder ausgeblendet werden sollen."
2387
-
2388
- #: ../classes/display-conditions.php:82
2389
- msgid "general conditions"
2390
- msgstr "allgemeine Bedingungen"
2391
-
2392
- #: ../classes/display-conditions.php:88
2393
- msgid "author"
2394
- msgstr "Autor"
2395
-
2396
- #: ../classes/display-conditions.php:111
2397
- #, php-format
2398
- msgid "archive: %s"
2399
- msgstr "Archiv: %s"
2400
-
2401
- #: ../classes/display-conditions.php:212 ../classes/display-conditions.php:256 ..
2402
- #: classes/display-conditions.php:344
2403
- msgctxt "Error message shown when no display condition term is selected"
2404
- msgid "Please select some items."
2405
- msgstr "Bitte eine Auswahl treffen."
2406
-
2407
- #: ../classes/display-conditions.php:241 ../classes/display-conditions.php:294 ..
2408
- #: classes/display-conditions.php:369
2409
- msgid "show"
2410
- msgstr "zeigen"
2411
-
2412
- #: ../classes/display-conditions.php:242 ../classes/display-conditions.php:295 ..
2413
- #: classes/display-conditions.php:370
2414
- msgid "hide"
2415
- msgstr "verbergen"
2416
-
2417
- #: ../classes/display-conditions.php:334
2418
- msgctxt "display the terms search field on ad edit page"
2419
- msgid "add more terms"
2420
- msgstr "weitere hinzufügen"
2421
-
2422
- #: ../classes/display-conditions.php:335
2423
- msgid "add more terms"
2424
- msgstr "weitere hinzufügen"
2425
-
2426
- #: ../classes/display-conditions.php:337
2427
- msgid "term name or id"
2428
- msgstr "Name oder ID"
2429
-
2430
- #: ../classes/display-conditions.php:398
2431
- msgid "title or id"
2432
- msgstr "Titel oder ID"
2433
-
2434
- #: ../classes/display-conditions.php:443 ../includes/array_ad_conditions.php:63
2435
- msgid "Home Page"
2436
- msgstr "Homepage"
2437
-
2438
- #: ../classes/display-conditions.php:444 ../includes/array_ad_conditions.php:64
2439
- msgid "show on Home page"
2440
- msgstr "Auf der Startseite anzeigen"
2441
-
2442
- #: ../classes/display-conditions.php:448 ../includes/array_ad_conditions.php:68
2443
- msgid "Singular Pages"
2444
- msgstr "Einzelseiten"
2445
-
2446
- #: ../classes/display-conditions.php:449 ../includes/array_ad_conditions.php:69
2447
- msgid "show on singular pages/posts"
2448
- msgstr "Auf Einzelseiten anzeigen"
2449
-
2450
- #: ../classes/display-conditions.php:453 ../includes/array_ad_conditions.php:73
2451
- msgid "Archive Pages"
2452
- msgstr "Archiv-Seiten"
2453
-
2454
- #: ../classes/display-conditions.php:454 ../includes/array_ad_conditions.php:74
2455
- msgid "show on any type of archive page (category, tag, author and date)"
2456
- msgstr ""
2457
- "Auf jeglichen Archiv-Seiten anzeigen (z.B. Kategorien, Schlagworte, "
2458
- "Autorenarchiv, Datumsarchiv)"
2459
-
2460
- #: ../classes/display-conditions.php:458 ../includes/array_ad_conditions.php:78
2461
- msgid "Search Results"
2462
- msgstr "Ergebnisse suchen"
2463
-
2464
- #: ../classes/display-conditions.php:459 ../includes/array_ad_conditions.php:79
2465
- msgid "show on search result pages"
2466
- msgstr "Auf Suchergebnisseiten anzeigen"
2467
-
2468
- #: ../classes/display-conditions.php:463 ../includes/array_ad_conditions.php:83
2469
- msgid "404 Page"
2470
- msgstr "404-Seite"
2471
-
2472
- #: ../classes/display-conditions.php:464 ../includes/array_ad_conditions.php:84
2473
- msgid "show on 404 error page"
2474
- msgstr "Auf 404-Fehlerseiten anzeigen"
2475
-
2476
- #: ../classes/display-conditions.php:468 ../includes/array_ad_conditions.php:88
2477
- msgid "Attachment Pages"
2478
- msgstr "Anhang-Seiten"
2479
-
2480
- #: ../classes/display-conditions.php:469 ../includes/array_ad_conditions.php:89
2481
- msgid "show on attachment pages"
2482
- msgstr "Auf Anhang-Seiten anzeigen"
2483
-
2484
- #: ../classes/display-conditions.php:473 ../includes/array_ad_conditions.php:93
2485
- msgid "Secondary Queries"
2486
- msgstr "Sekundäre Abfragen"
2487
-
2488
- #: ../classes/display-conditions.php:474 ../includes/array_ad_conditions.php:94
2489
- msgid "allow ads in secondary queries"
2490
- msgstr "In sekundären Abfragen (secundary queries) anzeigen"
2491
-
2492
- #: ../classes/display-conditions.php:478
2493
- msgid "Feed"
2494
- msgstr "Feed"
2495
-
2496
- #: ../classes/display-conditions.php:479
2497
- msgid "allow ads in Feed"
2498
- msgstr "Anzeigen im Feed erlauben"
2499
-
2500
- #: ../classes/EDD_SL_Plugin_Updater.php:177
2501
- #, php-format
2502
- msgid ""
2503
- "There is a new version of %1$s available. <a target=\"_blank\" "
2504
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
2505
- msgstr ""
2506
- "Es ist eine neue Version von %1$s verfügbar. <a target=\"_blank\" "
2507
- "class=\"thickbox\" href=\"%2$s\">Details für %3$s anzeigen</a>."
2508
-
2509
- #: ../classes/EDD_SL_Plugin_Updater.php:184
2510
- #, php-format
2511
- msgid ""
2512
- "There is a new version of %1$s available. <a target=\"_blank\" "
2513
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
2514
- "href=\"%4$s\">update now</a>."
2515
- msgstr ""
2516
- "Es ist eine neue Version von %1$s verfügbar. <a target=\"_blank\" "
2517
- "class=\"thickbox\" href=\"%2$s\">Details für %3$s anzeigen</a> oder <a "
2518
- "href=\"%4$s\">jetzt aktualisieren</a>."
2519
-
2520
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2521
- msgid "You do not have permission to install plugin updates"
2522
- msgstr "Sie haben nicht die notwendigen Rechte um Plugins zu aktualisieren"
2523
-
2524
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2525
- msgid "Error"
2526
- msgstr "Fehler"
2527
-
2528
- #: ../classes/visitor-conditions.php:32
2529
- msgid "mobile device"
2530
- msgstr "mobiles Gerät"
2531
-
2532
- #: ../classes/visitor-conditions.php:33
2533
- msgid "Display ads only on mobile devices or hide them."
2534
- msgstr "Anzeigen nur auf mobilen Geräten anzeigen oder verstecken"
2535
-
2536
- #: ../classes/visitor-conditions.php:39
2537
- msgid "logged in visitor"
2538
- msgstr "angemeldete Nutzer"
2539
-
2540
- #: ../classes/visitor-conditions.php:40
2541
- msgid "Whether the visitor has to be logged in or not in order to see the ads."
2542
- msgstr "Anzeigen nur für angemeldete Nutzer anzeigen oder verstecken"
2543
-
2544
- #: ../classes/visitor-conditions.php:73
2545
- #, php-format
2546
- msgid ""
2547
- "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2548
- "target=\"_blank\">Responsive add-on</a>"
2549
- msgstr ""
2550
- "Pro: Mit <a href=\"%s\" target=\"_blank\">Responsive</a> können Anzeigen anhand "
2551
- "des vorhandenem Platzes auf einem Gerät angezeigt werden."
2552
-
2553
- #: ../classes/visitor-conditions.php:101
2554
- msgid "is"
2555
- msgstr "ist"
2556
-
2557
- #: ../classes/visitor-conditions.php:102
2558
- msgid "is not"
2559
- msgstr "ist nicht"
2560
-
2561
- #: ../classes/visitor-conditions.php:107
2562
- msgid "Manual and Troubleshooting"
2563
- msgstr "Anleitung und Hilfe"
2564
-
2565
- #: ../classes/visitor-conditions.php:136
2566
- msgid "equal"
2567
- msgstr "ist gleich"
2568
-
2569
- #: ../classes/visitor-conditions.php:137
2570
- msgid "equal or higher"
2571
- msgstr "gleich oder höher"
2572
-
2573
- #: ../classes/visitor-conditions.php:138
2574
- msgid "equal or lower"
2575
- msgstr "gleich oder niedriger"
2576
-
2577
- #: ../classes/visitor-conditions.php:168
2578
- msgid "contains"
2579
- msgstr "enthält"
2580
-
2581
- #: ../classes/visitor-conditions.php:169
2582
- msgid "starts with"
2583
- msgstr "beginnt mit"
2584
-
2585
- #: ../classes/visitor-conditions.php:170
2586
- msgid "ends with"
2587
- msgstr "endet mit"
2588
-
2589
- #: ../classes/visitor-conditions.php:171
2590
- msgid "matches"
2591
- msgstr "entspricht"
2592
-
2593
- #: ../classes/visitor-conditions.php:172
2594
- msgid "matches regex"
2595
- msgstr "regulärer Ausdruck"
2596
-
2597
- #: ../classes/visitor-conditions.php:173
2598
- msgid "does not contain"
2599
- msgstr "enthält nicht"
2600
-
2601
- #: ../classes/visitor-conditions.php:174
2602
- msgid "does not start with"
2603
- msgstr "beginnt nicht mit"
2604
-
2605
- #: ../classes/visitor-conditions.php:175
2606
- msgid "does not end with"
2607
- msgstr "endet nicht mit"
2608
-
2609
- #: ../classes/visitor-conditions.php:176
2610
- msgid "does not match"
2611
- msgstr "entspricht nicht"
2612
-
2613
- #: ../classes/visitor-conditions.php:177
2614
- msgid "does not match regex"
2615
- msgstr "entspricht nicht reg. Ausdruck"
2616
-
2617
- #: ../classes/widget.php:25
2618
- msgid "Display Ads and Ad Groups."
2619
- msgstr "Anzeigen und Anzeigen-Gruppen zeigen."
2620
-
2621
- #: ../classes/widget.php:67
2622
- msgid "Title:"
2623
- msgstr "Titel:"
2624
-
2625
- #: ../includes/array_ad_conditions.php:39
2626
- msgid "Post Types"
2627
- msgstr "Beitrags-Typen"
2628
-
2629
- #: ../includes/array_ad_conditions.php:45
2630
- msgid "Categories, Tags and Taxonomies"
2631
- msgstr "Kategorien, Schlagworte und Taxonomien"
2632
-
2633
- #: ../includes/array_ad_conditions.php:46
2634
- msgid ""
2635
- "Choose terms from public category, tag and other taxonomies a post must "
2636
- "belong to in order to have ads."
2637
- msgstr ""
2638
- "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
2639
- " zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
2640
-
2641
- #: ../includes/array_ad_conditions.php:51
2642
- msgid "Category Archives"
2643
- msgstr "Kategorie-Archive"
2644
-
2645
- #: ../includes/array_ad_conditions.php:52
2646
- msgid "comma seperated IDs of category archives"
2647
- msgstr "Komma-getrennte IDs der Kategorie Archive"
2648
-
2649
- #: ../includes/array_ad_conditions.php:57
2650
- msgid "Individual Posts, Pages and Public Post Types"
2651
- msgstr "Einzelne Beiträge, Seiten und öffentliche Beitrag-Typen"
2652
-
2653
- #: ../modules/ad-blocker/admin/admin.php:133
2654
- msgid "The asset folder was rebuilt successfully"
2655
- msgstr "Der Datei-Ordner wurde erfolgreich erstellt."
2656
-
2657
- #: ../modules/ad-blocker/admin/admin.php:218
2658
- msgid "Ad blocker fix"
2659
- msgstr "Ad-Blocker Fix"
2660
-
2661
- #: ../modules/ad-blocker/admin/admin.php:257
2662
- msgid "There is no writable upload folder"
2663
- msgstr "Kein beschreibbarer Upload-Ordner gefunden"
2664
-
2665
- #: ../modules/ad-blocker/admin/admin.php:278
2666
- #, php-format
2667
- msgid "Unable to rename \"%s\" directory"
2668
- msgstr "\"%s\"-Verzeichnis konnte nicht umbenannt werden"
2669
-
2670
- #: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
2671
- #: php:307 ../modules/ad-blocker/admin/admin.php:324
2672
- #, php-format
2673
- msgid "Unable to copy assets to the \"%s\" directory"
2674
- msgstr "Dateien konnten nicht in den \"%s\" Ordner verschoben werden."
2675
-
2676
- #: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
2677
- #: php:378
2678
- #, php-format
2679
- msgid "We do not have direct write access to the \"%s\" directory"
2680
- msgstr "Kein Zugriff auf das \"%s\" Verzeichnis"
2681
-
2682
- #: ../modules/ad-blocker/admin/admin.php:445
2683
- #, php-format
2684
- msgid ""
2685
- "Unable to create \"%s\" directory. Is its parent directory writable by the "
2686
- "server?"
2687
- msgstr ""
2688
- "\"%s\"-Verzeichnis konnte nicht erstellt werden. Ist das Elternverzeichnis auf "
2689
- "dem Server schreibbar?"
2690
-
2691
- #: ../modules/ad-blocker/admin/admin.php:456
2692
- #, php-format
2693
- msgid "Unable to copy files to %s"
2694
- msgstr "Dateien konnte nicht nach %s kopiert werden."
2695
-
2696
- #: ../modules/ad-blocker/admin/admin.php:592
2697
- msgid ""
2698
- "Prevents ad block software from breaking your website when blocking asset "
2699
- "files (.js, .css)."
2700
- msgstr ""
2701
- "Verhindert, dass Anzeigenblocker die Scripte von Advanced Ads blockieren und "
2702
- "damit Fehler auf der Seite auslösen."
2703
-
2704
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:1
2705
- msgid "Ad blocker file folder"
2706
- msgstr "Ad-Blocker Dateiordner"
2707
-
2708
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:10
2709
- msgid "Upload folder is not writable"
2710
- msgstr "Der Upload-Ordner ist nicht schreibbar."
2711
-
2712
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:23
2713
- msgid "Asset path"
2714
- msgstr "Dateipfad"
2715
-
2716
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:27
2717
- msgid "Asset URL"
2718
- msgstr "Datei-URL"
2719
-
2720
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:31
2721
- msgid "Rename assets"
2722
- msgstr "Ordner umbenennen"
2723
-
2724
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:34
2725
- msgid "Check if you want to change the names of the assets"
2726
- msgstr "Bitte markieren, wenn der Ordnername umbenannt werden soll."
2727
-
2728
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:43
2729
- #, php-format
2730
- msgid ""
2731
- "Please, rebuild the asset folder. All assets will be located in "
2732
- "<strong>%s</strong>"
2733
- msgstr "Bitte Ordner umbenennen. Alle Dateien werden unter %s gespeichert."
2734
-
2735
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:46
2736
- msgid "Rebuild asset folder"
2737
- msgstr "Dateiordner erneuern"
2738
-
2739
- #: ../modules/gadsense/main.php:19
2740
- msgid " at "
2741
- msgstr " um "
2742
-
2743
- #: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
2744
- #: ad-parameters.php:51
2745
- msgid "Responsive"
2746
- msgstr "Responsive"
2747
-
2748
- #: ../modules/gadsense/admin/admin.php:44
2749
- msgid "The ad details couldn't be retrieved from the ad code"
2750
- msgstr "Die Anzeigendetails konnten nicht vom Ad Code ermittelt werden."
2751
-
2752
- #: ../modules/gadsense/admin/admin.php:45
2753
- msgid ""
2754
- "Warning : The AdSense account from this code does not match the one set with "
2755
- "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2756
- "end."
2757
- msgstr ""
2758
- "Achtung: Das AdSense Konto von diesem Code entspricht nicht dem Konto das in "
2759
- "den Einstellungen hinterlegt wurde. Es kann zu Problemen bei der Anzeige "
2760
- "kommen."
2761
-
2762
- #: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
2763
- msgid "AdSense"
2764
- msgstr "AdSense"
2765
-
2766
- #: ../modules/gadsense/admin/admin.php:131
2767
- msgid "AdSense ID"
2768
- msgstr "AdSense-ID"
2769
-
2770
- #: ../modules/gadsense/admin/admin.php:140
2771
- msgid "Limit to 3 ads"
2772
- msgstr "Auf 3 Anzeigen beschränken"
2773
-
2774
- #: ../modules/gadsense/admin/admin.php:149
2775
- msgid "Activate Page-Level ads"
2776
- msgstr "Anzeigen auf Seitenebene aktivieren"
2777
-
2778
- #: ../modules/gadsense/admin/admin.php:169
2779
- #, php-format
2780
- msgid ""
2781
- "Please enter your Publisher ID in order to use AdSense on your page. See the "
2782
- "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2783
- msgstr ""
2784
- "Bitte hinterlegen Sie Ihre Publisher-ID um AdSense auf Ihrer Seite zu nutzen."
2785
- " Vgl. <a href=\"%s\" target=\"_blank\">Anleitung</a> (engl.)."
2786
-
2787
- #: ../modules/gadsense/admin/admin.php:183
2788
- msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2789
- msgstr "Ihre AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2790
-
2791
- #: ../modules/gadsense/admin/admin.php:195
2792
- #, php-format
2793
- msgid "Limit to %d AdSense ads"
2794
- msgstr "Auf maximal %d AdSense Anzeigen begrenzen"
2795
-
2796
- #: ../modules/gadsense/admin/admin.php:199
2797
- #, php-format
2798
- msgid ""
2799
- "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2800
- "Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
2801
- "this limitation at your own risks."
2802
- msgstr ""
2803
- "Die <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2804
- "Service\">Nutzungsbedingungen von Google AdSense</a> erlauben maximal %d "
2805
- "Anzeigen pro Seite. Deaktivieren Sie diese Einstellung daher auf eigenes "
2806
- "Risiko."
2807
-
2808
- #: ../modules/gadsense/admin/admin.php:202
2809
- msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
2810
- msgstr "Hinweis: Advanced Ads zählt nur die AdSense-Anzeigentypen für dieses Limit."
2811
-
2812
- #: ../modules/gadsense/admin/admin.php:205
2813
- msgid ""
2814
- "Due to technical restrictions, the limit does not work on placements with "
2815
- "cache-busting enabled."
2816
- msgstr ""
2817
- "Aus technischen Gründen funktioniert das Limit auf bei Platzierungen mit "
2818
- "Cache-Busting nicht."
2819
-
2820
- #: ../modules/gadsense/admin/admin.php:219
2821
- msgid "Insert Page-Level ads code on all pages."
2822
- msgstr "Code für Anzeigen auf Seitenebene auf allen Seiten einbinden."
2823
-
2824
- #: ../modules/gadsense/admin/admin.php:221
2825
- msgid ""
2826
- "You still need to enable Page-Level ads in your AdSense account. See <a "
2827
- "href=\"https://support.google.com/adsense/answer/6245304\" "
2828
- "target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
2829
- "information"
2830
- msgstr ""
2831
- "Anzeigen auf Seitenebene müssen ebenfalls in Ihrem AdSense-Konto aktiviert "
2832
- "werden. Vgl. <a href=\"https://support.google.com/adsense/answer/6245304\" "
2833
- "target=\"_blank\">AdSense-Hilfe</a> (erfordert Login)."
2834
-
2835
- #: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
2836
- #: type-adsense.php:73
2837
- msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2838
- msgstr "Die Publisher-ID hat ein falsches Format. Sie muss mit \"pub-\" beginnen."
2839
-
2840
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:22
2841
- msgid "Copy&Paste existing ad code"
2842
- msgstr "Vorhandenen Anzeigencode einfügen"
2843
-
2844
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:27
2845
- msgid "Ad Slot ID"
2846
- msgstr "Anzeigen-ID"
2847
-
2848
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:32
2849
- #, php-format
2850
- msgid "Publisher ID: %s"
2851
- msgstr "Publisher ID: %s"
2852
-
2853
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
2854
- #, php-format
2855
- msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2856
- msgstr "Bitte <a href=\"%s\" target=\"_blank\">hier ändern</a>."
2857
-
2858
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
2859
- msgid "Normal"
2860
- msgstr "Normal"
2861
-
2862
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:56
2863
- #, php-format
2864
- msgid ""
2865
- "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2866
- "define the exact size for each browser width or choose between horizontal, "
2867
- "vertical, or rectangle formats."
2868
- msgstr ""
2869
- "Mit der <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> können Sie "
2870
- "die Browserbreite angeben, für die eine Anzeige sichtbar sein soll oder "
2871
- "zwischen horizontalem, vertikalem oder rechteckigem Format wählen."
2872
-
2873
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:59
2874
- msgid "Resizing"
2875
- msgstr "Größe"
2876
-
2877
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
2878
- msgid "Copy the ad code from your AdSense account and paste it in the area below"
2879
- msgstr "Kopieren Sie den Anzeigencode von AdSense einfach unten in das Feld"
2880
-
2881
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
2882
- msgid "Get details"
2883
- msgstr "Details laden"
2884
-
2885
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
2886
- msgid "Close"
2887
- msgstr "Schließen"
2888
-
2889
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:35
2890
- msgid "AdSense ad"
2891
- msgstr "AdSense Anzeige"
2892
-
2893
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:36
2894
- msgid "Use ads from your Google AdSense account"
2895
- msgstr "Anzeigen aus Ihrem Google AdSense Konto"
2896
-
2897
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:105
2898
- msgid "Your AdSense Publisher ID is missing."
2899
- msgstr "Ihre AdSense Publisher ID fehlt."
2900
-
2901
- #: ../modules/gadsense/includes/class-gadsense-data.php:46
2902
- msgid "Auto"
2903
- msgstr "Auto"
2904
-
2905
- #: ../modules/import-export/classes/import.php:60
2906
- msgid "Please enter XML content"
2907
- msgstr "Bitte XML einfügen"
2908
-
2909
- #: ../modules/import-export/classes/import.php:138 ../modules/import-
2910
- #: export/classes/import.php:468
2911
- #, php-format
2912
- msgid "New attachment created <em>%s</em> %s"
2913
- msgstr "Neue Datei eingefügt <em>%s</em> %s"
2914
-
2915
- #: ../modules/import-export/classes/import.php:170
2916
- #, php-format
2917
- msgid "Failed to import <em>%s</em>"
2918
- msgstr "Import fehlgeschlagen <em>%s</em>"
2919
-
2920
- #: ../modules/import-export/classes/import.php:178
2921
- #, php-format
2922
- msgid "New ad created: <em>%s</em> %s"
2923
- msgstr "Neue Anzeige erstellt: <em>%s</em> %s"
2924
-
2925
- #: ../modules/import-export/classes/import.php:224
2926
- #, php-format
2927
- msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2928
- msgstr "Hinzugefügte Terms: <em>%s</em>, zu Beitrag: <em>%s</em>"
2929
-
2930
- #: ../modules/import-export/classes/import.php:287
2931
- #, php-format
2932
- msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2933
- msgstr "Neue Gruppe erstellt, Id: <em>%s</em>, Name: <em>%s</em>"
2934
-
2935
- #: ../modules/import-export/classes/import.php:289
2936
- #, php-format
2937
- msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2938
- msgstr "Taxonomy konnte nicht erstellt werden: <em>%s</em>, Term: <em>%s</em>"
2939
-
2940
- #: ../modules/import-export/classes/import.php:353
2941
- #, php-format
2942
- msgid "Placement <em>%s</em> created"
2943
- msgstr "Platzierung <em>%s</em> erstellt"
2944
-
2945
- #: ../modules/import-export/classes/import.php:379
2946
- #, php-format
2947
- msgid "Option was updated: <em>%s</em>"
2948
- msgstr "Option aktualisiert: <em>%s</em>"
2949
-
2950
- #: ../modules/import-export/classes/import.php:382
2951
- #, php-format
2952
- msgid "Option already exists: <em>%s</em>"
2953
- msgstr "Option existiert bereits: <em>%s</em>"
2954
-
2955
- #: ../modules/import-export/classes/import.php:404
2956
- #, php-format
2957
- msgid "Failed to create import directory <em>%s</em>"
2958
- msgstr "Import-Verzeichnis konnte nicht erstellt werden <em>%s</em>"
2959
-
2960
- #: ../modules/import-export/classes/import.php:409
2961
- #, php-format
2962
- msgid "Import directory is not writable: <em>%s</em>"
2963
- msgstr "Import-Verzeichnis ist nicht schreibbar: <em>%s</em>"
2964
-
2965
- #: ../modules/import-export/classes/import.php:417
2966
- msgid ""
2967
- "File is empty, uploads are disabled or post_max_size is smaller than "
2968
- "upload_max_filesize in php.ini"
2969
- msgstr ""
2970
- "Datei ist leer, Upload deaktiviert oder post_max_size ist kleiner als "
2971
- "upload_max_filesize in der php.ini"
2972
-
2973
- #: ../modules/import-export/classes/import.php:427
2974
- #, php-format
2975
- msgid "Failed to upload file, error: <em>%s</em>"
2976
- msgstr "Upload fehlgeschlagen, Fehler: <em>%s</em>"
2977
-
2978
- #: ../modules/import-export/classes/import.php:432
2979
- msgid "File is empty."
2980
- msgstr "Datei ist leer."
2981
-
2982
- #: ../modules/import-export/classes/import.php:437
2983
- #, php-format
2984
- msgid ""
2985
- "The file could not be created: <em>%s</em>. This is probably a permissions "
2986
- "problem"
2987
- msgstr ""
2988
- "Die Datei konnte nicht erstellt werden: <em>%s</em>. Wahrscheinlich aufgrund "
2989
- "eines Rechte-Problems."
2990
-
2991
- #: ../modules/import-export/classes/import.php:510
2992
- #, php-format
2993
- msgid "Invalid filetype <em>%s</em>"
2994
- msgstr "Ungültiger Dateityp <em>%s</em>"
2995
-
2996
- #: ../modules/import-export/classes/import.php:515 ../modules/import-
2997
- #: export/classes/import.php:522 ../modules/import-export/classes/import.php:530 .
2998
- #: ./modules/import-export/classes/import.php:545
2999
- #, php-format
3000
- msgid "Error getting remote image <em>%s</em>"
3001
- msgstr "Fehler beim Download des externes Bildes <em>%s</em>"
3002
-
3003
- #: ../modules/import-export/classes/import.php:539
3004
- #, php-format
3005
- msgid "Zero size file downloaded <em>%s</em>"
3006
- msgstr "Leere Datei geladen <em>%s</em>"
3007
-
3008
- #: ../modules/import-export/classes/XmlEncoder.php:61 ../modules/import-
3009
- #: export/classes/XmlEncoder.php:190
3010
- #, php-format
3011
- msgid "The % extension(s) is not loaded"
3012
- msgstr "Die %s Erweiterung ist nicht aktiv"
3013
-
3014
- #: ../modules/import-export/classes/XmlEncoder.php:72
3015
- msgctxt "import_export"
3016
- msgid "The data must be an array"
3017
- msgstr "Die Daten müssen ein Array sein"
3018
-
3019
- #: ../modules/import-export/classes/XmlEncoder.php:100
3020
- #, php-format
3021
- msgctxt "import_export"
3022
- msgid "The key %s is not valid"
3023
- msgstr "Der Schlüssel %s ist ungültig"
3024
-
3025
- #: ../modules/import-export/classes/XmlEncoder.php:146
3026
- #, php-format
3027
- msgctxt "import_export"
3028
- msgid "An unexpected value could not be serialized: %s"
3029
- msgstr "Der Wert konnte nicht serialisiert werden: %s"
3030
-
3031
- #: ../modules/import-export/classes/XmlEncoder.php:194
3032
- msgctxt "import_export"
3033
- msgid "Invalid XML data, it can not be empty"
3034
- msgstr "XML darf nicht leer sein"
3035
-
3036
- #: ../modules/import-export/classes/XmlEncoder.php:216
3037
- #, php-format
3038
- msgctxt "import_export"
3039
- msgid "XML error: %s"
3040
- msgstr "XML Fehler: %s"
3041
-
3042
- #: ../modules/import-export/views/page.php:16
3043
- msgid "Export"
3044
- msgstr "Export"
3045
-
3046
- #: ../modules/import-export/views/page.php:17
3047
- msgid ""
3048
- "When you click the button below Advanced Ads will create an XML file for you "
3049
- "to save to your computer."
3050
- msgstr ""
3051
- "Wenn Sie unten bestätigen, erstellt Advanced Ads eine XML-Datei die Sie auf "
3052
- "Ihrem Computer speichern können."
3053
-
3054
- #: ../modules/import-export/views/page.php:28
3055
- msgid "Download Export File"
3056
- msgstr "Export-Datei herunterladen"
3057
-
3058
- #: ../modules/import-export/views/page.php:33
3059
- msgid "Import"
3060
- msgstr "Import"
3061
-
3062
- #: ../modules/import-export/views/page.php:44
3063
- msgid "Choose an XML file"
3064
- msgstr "XML-Datei wählen"
3065
-
3066
- #: ../modules/import-export/views/page.php:45
3067
- msgid "Copy an XML content"
3068
- msgstr "XML-Inhalt einfügen"
3069
-
3070
- #: ../modules/import-export/views/page.php:52
3071
- msgid ""
3072
- "Before you can upload your import file, you will need to fix the following "
3073
- "error:"
3074
- msgstr "Vor dem Upload der Import-Datei müssen folgende Fehler behoben werden:"
3075
-
3076
- #: ../modules/import-export/views/page.php:57
3077
- #, php-format
3078
- msgid "Maximum size: %s"
3079
- msgstr "Maximale Größe: %s"
3080
-
3081
- #: ../modules/import-export/views/page.php:66
3082
- msgid "Start import"
3083
- msgstr "Import starten"
3084
-
3085
- #: ../public/class-advanced-ads.php:309
3086
- msgid "Advanced Ads Error following:"
3087
- msgstr "Fehler von Advanced Ads:"
3088
-
3089
- #: ../public/class-advanced-ads.php:312
3090
- #, php-format
3091
- msgid "Advanced Ads Error: %s"
3092
- msgstr "Advanced-Ads-Fehler: %s"
3093
-
3094
- #: ../public/class-advanced-ads.php:553
3095
- msgctxt "ad group general name"
3096
- msgid "Ad Groups"
3097
- msgstr "Anzeigen-Gruppen"
3098
-
3099
- #: ../public/class-advanced-ads.php:554
3100
- msgctxt "ad group singular name"
3101
- msgid "Ad Group"
3102
- msgstr "Anzeigen-Gruppe"
3103
-
3104
- #: ../public/class-advanced-ads.php:555
3105
- msgid "Search Ad Groups"
3106
- msgstr "Anzeigen-Gruppen suchen"
3107
-
3108
- #: ../public/class-advanced-ads.php:556
3109
- msgid "All Ad Groups"
3110
- msgstr "Alle Anzeigen-Gruppen"
3111
-
3112
- #: ../public/class-advanced-ads.php:557
3113
- msgid "Parent Ad Groups"
3114
- msgstr "Parent-Anzeigen-Gruppen"
3115
-
3116
- #: ../public/class-advanced-ads.php:558
3117
- msgid "Parent Ad Groups:"
3118
- msgstr "Parent-Anzeigen-Gruppen"
3119
-
3120
- #: ../public/class-advanced-ads.php:559
3121
- msgid "Edit Ad Group"
3122
- msgstr "Bearbeite Anzeigen-Gruppe"
3123
-
3124
- #: ../public/class-advanced-ads.php:560
3125
- msgid "Update Ad Group"
3126
- msgstr "Aktualisiere Anzeigen-Gruppe"
3127
-
3128
- #: ../public/class-advanced-ads.php:561
3129
- msgid "Add New Ad Group"
3130
- msgstr "Neue Anzeigengruppe hinzufügen"
3131
-
3132
- #: ../public/class-advanced-ads.php:562
3133
- msgid "New Ad Groups Name"
3134
- msgstr "Neuer Anzeigen-Gruppen-Name"
3135
-
3136
- #: ../public/class-advanced-ads.php:564
3137
- msgid "No Ad Group found"
3138
- msgstr "Keine Anzeigen-Gruppe gefunden"
3139
-
3140
- #: ../public/class-advanced-ads.php:595
3141
- msgid "Edit Ad"
3142
- msgstr "Anzeige bearbeiten"
3143
-
3144
- #: ../public/class-advanced-ads.php:597
3145
- msgid "View"
3146
- msgstr "Ansicht"
3147
-
3148
- #: ../public/class-advanced-ads.php:598
3149
- msgid "View the Ad"
3150
- msgstr "Anzeige ansehen"
3151
-
3152
- #: ../public/class-advanced-ads.php:599
3153
- msgid "Search Ads"
3154
- msgstr "Anzeigen suchen"
3155
-
3156
- #: ../public/class-advanced-ads.php:600
3157
- msgid "No Ads found"
3158
- msgstr "Keine Anzeigen gefunden"
3159
-
3160
- #: ../public/class-advanced-ads.php:601
3161
- msgid "No Ads found in Trash"
3162
- msgstr "Keine Anzeigen im Papierkorb gefunden"
3163
-
3164
- #: ../public/class-advanced-ads.php:602
3165
- msgid "Parent Ad"
3166
- msgstr "Übergeordnete Anzeige"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/advanced-ads.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Advanved Ads\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
8
- "POT-Revision-Date: Mon Jun 13 2016 14:37:50 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
11
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
@@ -44,306 +44,306 @@ msgstr ""
44
  msgid "http://webgilde.com"
45
  msgstr ""
46
 
47
- #: ../admin/class-advanced-ads-admin.php:223 ../admin/views/ad-display-metabox.
48
  #: php:103 ../classes/display-conditions.php:169 ../classes/visitor-conditions.
49
  #: php:214
50
  msgid "or"
51
  msgstr ""
52
 
53
- #: ../admin/class-advanced-ads-admin.php:224 ../admin/views/ad-visitor-metabox.
54
  #: php:68 ../classes/display-conditions.php:169 ../classes/visitor-conditions.php:
55
  #: 214
56
  msgid "and"
57
  msgstr ""
58
 
59
- #: ../admin/class-advanced-ads-admin.php:225
60
  msgid "After which paragraph?"
61
  msgstr ""
62
 
63
- #: ../admin/class-advanced-ads-admin.php:292
64
  msgid "Overview"
65
  msgstr ""
66
 
67
- #: ../admin/class-advanced-ads-admin.php:296 ../admin/class-advanced-ads-admin.
68
- #: php:296 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
69
  #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
70
- #: /admin/views/placements.php:81 ../admin/views/placements.php:185 ..
71
  #: /classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
72
  #: /public/class-advanced-ads.php:590
73
  msgid "Ads"
74
  msgstr ""
75
 
76
- #: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:593
77
  msgid "Add New Ad"
78
  msgstr ""
79
 
80
- #: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:592
81
  #: ../public/class-advanced-ads.php:596
82
  msgid "New Ad"
83
  msgstr ""
84
 
85
- #: ../admin/class-advanced-ads-admin.php:307 ../admin/includes/class-shortcode-
86
- #: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
87
- #: 178 ../classes/widget.php:82
88
  msgid "Ad Groups"
89
  msgstr ""
90
 
91
- #: ../admin/class-advanced-ads-admin.php:307 ../modules/import-export/views/page.
92
  #: php:24 ../public/class-advanced-ads.php:563
93
  msgid "Groups"
94
  msgstr ""
95
 
96
- #: ../admin/class-advanced-ads-admin.php:312
97
  msgid "Ad Placements"
98
  msgstr ""
99
 
100
- #: ../admin/class-advanced-ads-admin.php:312 ../admin/includes/class-shortcode-
101
- #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75 ..
102
  #: /modules/import-export/views/page.php:25
103
  msgid "Placements"
104
  msgstr ""
105
 
106
- #: ../admin/class-advanced-ads-admin.php:316
107
  msgid "Advanced Ads Settings"
108
  msgstr ""
109
 
110
- #: ../admin/class-advanced-ads-admin.php:316 ../admin/class-advanced-ads-admin.
111
- #: php:564 ../admin/views/debug.php:10
112
  msgid "Settings"
113
  msgstr ""
114
 
115
- #: ../admin/class-advanced-ads-admin.php:319
116
  msgid "Advanced Ads Debugging"
117
  msgstr ""
118
 
119
- #: ../admin/class-advanced-ads-admin.php:319
120
  msgid "Debug"
121
  msgstr ""
122
 
123
- #: ../admin/class-advanced-ads-admin.php:323 ../admin/class-advanced-ads-admin.
124
- #: php:323
125
  msgid "Advanced Ads Intro"
126
  msgstr ""
127
 
128
- #: ../admin/class-advanced-ads-admin.php:327 ../admin/class-advanced-ads-admin.
129
- #: php:327 ../admin/class-advanced-ads-admin.php:2159
130
  msgid "Support"
131
  msgstr ""
132
 
133
- #: ../admin/class-advanced-ads-admin.php:439
134
  msgid "Please enter a message"
135
  msgstr ""
136
 
137
- #: ../admin/class-advanced-ads-admin.php:449
138
  #, php-format
139
  msgid "Email could NOT be sent. Please contact us directly at %s."
140
  msgstr ""
141
 
142
- #: ../admin/class-advanced-ads-admin.php:452
143
  msgid "Please enter a valid email address"
144
  msgstr ""
145
 
146
- #: ../admin/class-advanced-ads-admin.php:478 ../admin/class-advanced-ads-admin.
147
- #: php:505
148
  msgid "Sorry, you are not allowed to access this feature."
149
  msgstr ""
150
 
151
- #: ../admin/class-advanced-ads-admin.php:491
152
  msgid ""
153
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
154
  "deleted?"
155
  msgstr ""
156
 
157
- #: ../admin/class-advanced-ads-admin.php:659
158
  msgid "Ad Type"
159
  msgstr ""
160
 
161
- #: ../admin/class-advanced-ads-admin.php:665
162
  msgid "Ad Parameters"
163
  msgstr ""
164
 
165
- #: ../admin/class-advanced-ads-admin.php:668
166
  msgid "Layout / Output"
167
  msgstr ""
168
 
169
- #: ../admin/class-advanced-ads-admin.php:671
170
  msgid "Display Conditions"
171
  msgstr ""
172
 
173
- #: ../admin/class-advanced-ads-admin.php:674
174
  msgid "Visitor Conditions"
175
  msgstr ""
176
 
177
- #: ../admin/class-advanced-ads-admin.php:776 ../admin/class-advanced-ads-admin.
178
- #: php:787 ../admin/class-advanced-ads-admin.php:792 ../admin/class-advanced-ads-
179
- #: admin.php:1386 ../admin/views/ad-output-metabox.php:50
180
  msgid "Manual"
181
  msgstr ""
182
 
183
- #: ../admin/class-advanced-ads-admin.php:786
184
  msgid "Video"
185
  msgstr ""
186
 
187
- #: ../admin/class-advanced-ads-admin.php:964 ../admin/class-advanced-ads-admin.
188
- #: php:965
189
  msgid "Ad updated."
190
  msgstr ""
191
 
192
  #. translators: %s: date and time of the revision
193
- #: ../admin/class-advanced-ads-admin.php:967
194
  #, php-format
195
  msgid "Ad restored to revision from %s"
196
  msgstr ""
197
 
198
- #: ../admin/class-advanced-ads-admin.php:968
199
  msgid "Ad published."
200
  msgstr ""
201
 
202
- #: ../admin/class-advanced-ads-admin.php:969
203
  msgid "Ad saved."
204
  msgstr ""
205
 
206
- #: ../admin/class-advanced-ads-admin.php:970
207
  msgid "Ad submitted."
208
  msgstr ""
209
 
210
- #: ../admin/class-advanced-ads-admin.php:972
211
  #, php-format
212
  msgid "Ad scheduled for: <strong>%1$s</strong>."
213
  msgstr ""
214
 
215
  #. translators: Publish box date format, see http://php.net/date
216
- #: ../admin/class-advanced-ads-admin.php:974
217
  msgid "M j, Y @ G:i"
218
  msgstr ""
219
 
220
- #: ../admin/class-advanced-ads-admin.php:976
221
  msgid "Ad draft updated."
222
  msgstr ""
223
 
224
- #: ../admin/class-advanced-ads-admin.php:995
225
  #, php-format
226
  msgid "%s ad updated."
227
  msgid_plural "%s ads updated."
228
  msgstr[0] ""
229
  msgstr[1] ""
230
 
231
- #: ../admin/class-advanced-ads-admin.php:996
232
  #, php-format
233
  msgid "%s ad not updated, somebody is editing it."
234
  msgid_plural "%s ads not updated, somebody is editing them."
235
  msgstr[0] ""
236
  msgstr[1] ""
237
 
238
- #: ../admin/class-advanced-ads-admin.php:997
239
  #, php-format
240
  msgid "%s ad permanently deleted."
241
  msgid_plural "%s ads permanently deleted."
242
  msgstr[0] ""
243
  msgstr[1] ""
244
 
245
- #: ../admin/class-advanced-ads-admin.php:998
246
  #, php-format
247
  msgid "%s ad moved to the Trash."
248
  msgid_plural "%s ads moved to the Trash."
249
  msgstr[0] ""
250
  msgstr[1] ""
251
 
252
- #: ../admin/class-advanced-ads-admin.php:999
253
  #, php-format
254
  msgid "%s ad restored from the Trash."
255
  msgid_plural "%s ads restored from the Trash."
256
  msgstr[0] ""
257
  msgstr[1] ""
258
 
259
- #: ../admin/class-advanced-ads-admin.php:1034 ../admin/views/settings.php:12
260
  msgid "General"
261
  msgstr ""
262
 
263
- #: ../admin/class-advanced-ads-admin.php:1046 ../admin/class-advanced-ads-admin.
264
- #: php:1158
265
  msgid "Licenses"
266
  msgstr ""
267
 
268
- #: ../admin/class-advanced-ads-admin.php:1057
269
  msgid "Disable ads"
270
  msgstr ""
271
 
272
- #: ../admin/class-advanced-ads-admin.php:1065
273
  msgid "Hide ads for logged in users"
274
  msgstr ""
275
 
276
- #: ../admin/class-advanced-ads-admin.php:1073
277
  msgid "Use advanced JavaScript"
278
  msgstr ""
279
 
280
- #: ../admin/class-advanced-ads-admin.php:1081
281
  msgid "Unlimited ad injection"
282
  msgstr ""
283
 
284
- #: ../admin/class-advanced-ads-admin.php:1089
285
  msgid "Priority of content injection filter"
286
  msgstr ""
287
 
288
- #: ../admin/class-advanced-ads-admin.php:1097
289
  msgid "Hide ads from bots"
290
  msgstr ""
291
 
292
- #: ../admin/class-advanced-ads-admin.php:1105
293
  msgid "Disable notices"
294
  msgstr ""
295
 
296
- #: ../admin/class-advanced-ads-admin.php:1113
297
  msgid "ID prefix"
298
  msgstr ""
299
 
300
- #: ../admin/class-advanced-ads-admin.php:1121
301
  msgid "Remove Widget ID"
302
  msgstr ""
303
 
304
- #: ../admin/class-advanced-ads-admin.php:1129
305
  msgid "Allow editors to manage ads"
306
  msgstr ""
307
 
308
- #: ../admin/class-advanced-ads-admin.php:1137
309
  msgid "Ad label"
310
  msgstr ""
311
 
312
- #: ../admin/class-advanced-ads-admin.php:1214
313
  msgid "(display to all)"
314
  msgstr ""
315
 
316
- #: ../admin/class-advanced-ads-admin.php:1215
317
  msgid "Subscriber"
318
  msgstr ""
319
 
320
- #: ../admin/class-advanced-ads-admin.php:1216
321
  msgid "Contributor"
322
  msgstr ""
323
 
324
- #: ../admin/class-advanced-ads-admin.php:1217
325
  msgid "Author"
326
  msgstr ""
327
 
328
- #: ../admin/class-advanced-ads-admin.php:1218
329
  msgid "Editor"
330
  msgstr ""
331
 
332
- #: ../admin/class-advanced-ads-admin.php:1219
333
  msgid "Admin"
334
  msgstr ""
335
 
336
- #: ../admin/class-advanced-ads-admin.php:1227
337
  msgid "Choose the lowest role a user must have in order to not see any ads."
338
  msgstr ""
339
 
340
- #: ../admin/class-advanced-ads-admin.php:1241
341
  msgid ""
342
  "<strong>notice: </strong>the file is currently enabled by an add-on that "
343
  "needs it."
344
  msgstr ""
345
 
346
- #: ../admin/class-advanced-ads-admin.php:1244
347
  #, php-format
348
  msgid ""
349
  "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
@@ -351,7 +351,7 @@ msgid ""
351
  "from this file."
352
  msgstr ""
353
 
354
- #: ../admin/class-advanced-ads-admin.php:1257
355
  msgid ""
356
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
357
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
@@ -360,19 +360,19 @@ msgid ""
360
  "on archive pages AT YOUR OWN RISK."
361
  msgstr ""
362
 
363
- #: ../admin/class-advanced-ads-admin.php:1273
364
  msgid ""
365
  "Please check your post content. A priority of 10 and below might cause "
366
  "issues (wpautop function might run twice)."
367
  msgstr ""
368
 
369
- #: ../admin/class-advanced-ads-admin.php:1275
370
  msgid ""
371
  "Play with this value in order to change the priority of the injected ads "
372
  "compared to other auto injected elements in the post content."
373
  msgstr ""
374
 
375
- #: ../admin/class-advanced-ads-admin.php:1289
376
  #, php-format
377
  msgid ""
378
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
@@ -380,146 +380,146 @@ msgid ""
380
  "Add-On</a>."
381
  msgstr ""
382
 
383
- #: ../admin/class-advanced-ads-admin.php:1290
384
  msgid ""
385
  "Disabling this option only makes sense if your ads contain content you want "
386
  "to display to bots (like search engines) or your site is cached and bots "
387
  "could create a cached version without the ads."
388
  msgstr ""
389
 
390
- #: ../admin/class-advanced-ads-admin.php:1303
391
  msgid ""
392
  "Disable internal notices like tips, tutorials, email newsletters and update "
393
  "notices. Disabling notices is recommended if you run multiple blogs with "
394
  "Advanced Ads already."
395
  msgstr ""
396
 
397
- #: ../admin/class-advanced-ads-admin.php:1320
398
  msgid ""
399
  "Prefix of class or id attributes in the frontend. Change it if you don’t "
400
  "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
401
  "need to <strong>rewrite css rules afterwards</strong>."
402
  msgstr ""
403
 
404
- #: ../admin/class-advanced-ads-admin.php:1341
405
  msgid ""
406
  "Remove the ID attribute from widgets in order to not make them an easy "
407
  "target of ad blockers."
408
  msgstr ""
409
 
410
- #: ../admin/class-advanced-ads-admin.php:1344
411
  msgid ""
412
  "If checked, the Advanced Ads Widget will not work with the fixed option of "
413
  "the <strong>Q2W3 Fixed Widget</strong> plugin."
414
  msgstr ""
415
 
416
- #: ../admin/class-advanced-ads-admin.php:1366
417
  msgid "Allow editors to also manage and publish ads."
418
  msgstr ""
419
 
420
- #: ../admin/class-advanced-ads-admin.php:1367
421
  #, php-format
422
  msgid ""
423
  "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
424
  "target=\"_blank\">Advanced Ads Pro</a>."
425
  msgstr ""
426
 
427
- #: ../admin/class-advanced-ads-admin.php:1379 ../public/class-advanced-ads.php:714
428
  msgctxt "label before ads"
429
  msgid "Advertisements"
430
  msgstr ""
431
 
432
- #: ../admin/class-advanced-ads-admin.php:1386
433
  msgid "Displayed above ads."
434
  msgstr ""
435
 
436
- #: ../admin/class-advanced-ads-admin.php:1445 ../admin/class-advanced-ads-admin.
437
- #: php:1450
438
  msgid "Ad Details"
439
  msgstr ""
440
 
441
- #: ../admin/class-advanced-ads-admin.php:1446 ../admin/class-advanced-ads-admin.
442
- #: php:1451
443
  msgid "Ad Planning"
444
  msgstr ""
445
 
446
- #: ../admin/class-advanced-ads-admin.php:1585
447
  msgid "Ad Settings"
448
  msgstr ""
449
 
450
- #: ../admin/class-advanced-ads-admin.php:1664 ../admin/views/overview.php:23
451
  msgid "Ads Dashboard"
452
  msgstr ""
453
 
454
- #: ../admin/class-advanced-ads-admin.php:1676
455
  msgid "From the ad optimization universe"
456
  msgstr ""
457
 
458
- #: ../admin/class-advanced-ads-admin.php:1685
459
  msgid "Advanced Ads Tutorials"
460
  msgstr ""
461
 
462
- #: ../admin/class-advanced-ads-admin.php:1696
463
  #, php-format
464
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
465
  msgstr ""
466
 
467
- #: ../admin/class-advanced-ads-admin.php:1707
468
  msgid "plugin manual and homepage"
469
  msgstr ""
470
 
471
- #: ../admin/class-advanced-ads-admin.php:1714
472
  msgid "Get the tutorial via email"
473
  msgstr ""
474
 
475
- #: ../admin/class-advanced-ads-admin.php:1721
476
  msgid "Get AdSense tips via email"
477
  msgstr ""
478
 
479
- #: ../admin/class-advanced-ads-admin.php:1810
480
  #, php-format
481
  msgid "time of %s"
482
  msgstr ""
483
 
484
- #: ../admin/class-advanced-ads-admin.php:1846
485
  msgid "Error while trying to register the license. Please contact support."
486
  msgstr ""
487
 
488
- #: ../admin/class-advanced-ads-admin.php:1851 ../admin/views/setting-license.php:37
489
  msgid "Please enter a valid license key"
490
  msgstr ""
491
 
492
- #: ../admin/class-advanced-ads-admin.php:1877
493
  msgid "License couldn’t be activated. Please try again later."
494
  msgstr ""
495
 
496
- #: ../admin/class-advanced-ads-admin.php:1889
497
  msgid "This is the bundle license key."
498
  msgstr ""
499
 
500
- #: ../admin/class-advanced-ads-admin.php:1890
501
  msgid "This is not the correct key for this add-on."
502
  msgstr ""
503
 
504
- #: ../admin/class-advanced-ads-admin.php:1891
505
  msgid "There are no activations left."
506
  msgstr ""
507
 
508
- #: ../admin/class-advanced-ads-admin.php:1900
509
  #, php-format
510
  msgid "License is invalid. Reason: %s"
511
  msgstr ""
512
 
513
- #: ../admin/class-advanced-ads-admin.php:1958
514
  msgid "Error while trying to disable the license. Please contact support."
515
  msgstr ""
516
 
517
- #: ../admin/class-advanced-ads-admin.php:1981 ../admin/class-advanced-ads-admin.
518
- #: php:1999
519
  msgid "License couldn’t be deactivated. Please try again later."
520
  msgstr ""
521
 
522
- #: ../admin/class-advanced-ads-admin.php:2163
523
  msgid "Add-Ons"
524
  msgstr ""
525
 
@@ -576,8 +576,8 @@ msgid "Display ads with the highest ad weight first"
576
  msgstr ""
577
 
578
  #: ../admin/includes/class-ad-groups-list.php:275 ../modules/import-
579
- #: export/classes/import.php:137 ../modules/import-export/classes/import.php:177 .
580
- #: ./modules/import-export/classes/import.php:467 ../public/class-advanced-ads.
581
  #: php:594
582
  msgid "Edit"
583
  msgstr ""
@@ -1032,7 +1032,7 @@ msgstr ""
1032
  msgid "Update"
1033
  msgstr ""
1034
 
1035
- #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
1036
  msgid "Name"
1037
  msgstr ""
1038
 
@@ -1040,7 +1040,7 @@ msgstr ""
1040
  msgid "Description"
1041
  msgstr ""
1042
 
1043
- #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
1044
  #: /modules/gadsense/admin/views/adsense-ad-parameters.php:47
1045
  msgid "Type"
1046
  msgstr ""
@@ -1076,12 +1076,12 @@ msgid "Details"
1076
  msgstr ""
1077
 
1078
  #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1079
- #: /admin/views/ad-info.php:3 ../admin/views/placements.php:59
1080
  msgid "shortcode"
1081
  msgstr ""
1082
 
1083
  #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1084
- #: /admin/views/placements.php:62
1085
  msgid "template"
1086
  msgstr ""
1087
 
@@ -1287,6 +1287,22 @@ msgstr ""
1287
  msgid "all ad groups"
1288
  msgstr ""
1289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1290
  #: ../admin/views/ad-main-metabox.php:3
1291
  msgid "No ad types defined"
1292
  msgstr ""
@@ -1303,7 +1319,7 @@ msgstr ""
1303
  msgid "- default -"
1304
  msgstr ""
1305
 
1306
- #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:52
1307
  msgid "default"
1308
  msgstr ""
1309
 
@@ -1371,13 +1387,13 @@ msgstr ""
1371
  msgid "Enable debug mode"
1372
  msgstr ""
1373
 
1374
- #: ../admin/views/ad-parameters-metabox.php:29
1375
  msgid ""
1376
  "The code of this ad might not work properly with the <em>Content</em> "
1377
  "placement."
1378
  msgstr ""
1379
 
1380
- #: ../admin/views/ad-parameters-metabox.php:30
1381
  #, php-format
1382
  msgid "Reach out to <a href=\"%s\">support</a> to get help."
1383
  msgstr ""
@@ -1460,21 +1476,21 @@ msgid ""
1460
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1461
  msgstr ""
1462
 
1463
- #: ../admin/views/ad-visitor-metabox.php:92
1464
  msgid ""
1465
  "The visitor conditions below are deprecated. Please use the new version of "
1466
  "visitor conditions to replace it."
1467
  msgstr ""
1468
 
1469
- #: ../admin/views/ad-visitor-metabox.php:98
1470
  msgid "Display on all devices"
1471
  msgstr ""
1472
 
1473
- #: ../admin/views/ad-visitor-metabox.php:102
1474
  msgid "only on mobile devices"
1475
  msgstr ""
1476
 
1477
- #: ../admin/views/ad-visitor-metabox.php:106
1478
  msgid "not on mobile devices"
1479
  msgstr ""
1480
 
@@ -1638,119 +1654,119 @@ msgstr ""
1638
  msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1639
  msgstr ""
1640
 
1641
- #: ../admin/views/placements.php:25 ../modules/import-export/views/page.php:26
1642
  msgid "Options"
1643
  msgstr ""
1644
 
1645
- #: ../admin/views/placements.php:42
1646
  #, php-format
1647
  msgid ""
1648
  "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1649
  "if the responsible add-on is activated."
1650
  msgstr ""
1651
 
1652
- #: ../admin/views/placements.php:58
1653
  msgid "show usage"
1654
  msgstr ""
1655
 
1656
- #: ../admin/views/placements.php:70
1657
  msgid "Item"
1658
  msgstr ""
1659
 
1660
- #: ../admin/views/placements.php:72 ../admin/views/placements.php:176
1661
  msgid "--not selected--"
1662
  msgstr ""
1663
 
1664
- #: ../admin/views/placements.php:92
1665
  msgid "Inject"
1666
  msgstr ""
1667
 
1668
- #: ../admin/views/placements.php:93
1669
  msgid "after"
1670
  msgstr ""
1671
 
1672
- #: ../admin/views/placements.php:93
1673
  msgid "before"
1674
  msgstr ""
1675
 
1676
- #: ../admin/views/placements.php:113
1677
  msgid "start counting from bottom"
1678
  msgstr ""
1679
 
1680
- #: ../admin/views/placements.php:116
1681
  msgid "Important Notice"
1682
  msgstr ""
1683
 
1684
- #: ../admin/views/placements.php:116
1685
  msgid ""
1686
  "Your server is missing an extension. This might break the content injection."
1687
  "<br/>Ignore this warning if everything works fine or else ask your hosting "
1688
  "provider to enable <em>mbstring</em>."
1689
  msgstr ""
1690
 
1691
- #: ../admin/views/placements.php:126
1692
  msgid "advanced options"
1693
  msgstr ""
1694
 
1695
- #: ../admin/views/placements.php:134
1696
  msgctxt "checkbox to remove placement"
1697
  msgid "delete"
1698
  msgstr ""
1699
 
1700
- #: ../admin/views/placements.php:140
1701
  msgid "Save Placements"
1702
  msgstr ""
1703
 
1704
- #: ../admin/views/placements.php:142
1705
  msgid "Create a new placement"
1706
  msgstr ""
1707
 
1708
- #: ../admin/views/placements.php:143
1709
  msgid "New Placement"
1710
  msgstr ""
1711
 
1712
- #: ../admin/views/placements.php:149
1713
  msgid "Choose a placement type"
1714
  msgstr ""
1715
 
1716
- #: ../admin/views/placements.php:150
1717
  #, php-format
1718
  msgid ""
1719
  "Placement types define where the ad is going to be displayed. Learn more "
1720
  "about the different types from the <a href=\"%s\">manual</a>"
1721
  msgstr ""
1722
 
1723
- #: ../admin/views/placements.php:167
1724
  msgid "Please select a placement type."
1725
  msgstr ""
1726
 
1727
- #: ../admin/views/placements.php:169
1728
  msgid "Choose a Name"
1729
  msgstr ""
1730
 
1731
- #: ../admin/views/placements.php:170
1732
  msgid ""
1733
  "The name of the placement is only visible to you. Tip: choose a descriptive "
1734
  "one, e.g. <em>Below Post Headline</em>."
1735
  msgstr ""
1736
 
1737
- #: ../admin/views/placements.php:171
1738
  msgid "Placement Name"
1739
  msgstr ""
1740
 
1741
- #: ../admin/views/placements.php:172
1742
  msgid "Please enter a name for your placement."
1743
  msgstr ""
1744
 
1745
- #: ../admin/views/placements.php:173
1746
  msgid "Choose the Ad or Group"
1747
  msgstr ""
1748
 
1749
- #: ../admin/views/placements.php:174
1750
  msgid "The ad or group that should be displayed."
1751
  msgstr ""
1752
 
1753
- #: ../admin/views/placements.php:193
1754
  msgid "Save New Placement"
1755
  msgstr ""
1756
 
@@ -2022,27 +2038,27 @@ msgid ""
2022
  "widget."
2023
  msgstr ""
2024
 
2025
- #: ../classes/ad_placements.php:210
2026
  #, php-format
2027
  msgid "paragraph (%s)"
2028
  msgstr ""
2029
 
2030
- #: ../classes/ad_placements.php:211
2031
  #, php-format
2032
  msgid "paragraph without image (%s)"
2033
  msgstr ""
2034
 
2035
- #: ../classes/ad_placements.php:212
2036
  #, php-format
2037
  msgid "headline 2 (%s)"
2038
  msgstr ""
2039
 
2040
- #: ../classes/ad_placements.php:213
2041
  #, php-format
2042
  msgid "headline 3 (%s)"
2043
  msgstr ""
2044
 
2045
- #: ../classes/ad_placements.php:214
2046
  #, php-format
2047
  msgid "headline 4 (%s)"
2048
  msgstr ""
@@ -2261,26 +2277,23 @@ msgstr ""
2261
  msgid "allow ads in Feed"
2262
  msgstr ""
2263
 
2264
- #: ../classes/EDD_SL_Plugin_Updater.php:177
2265
  #, php-format
2266
- msgid ""
2267
- "There is a new version of %1$s available. <a target=\"_blank\" "
2268
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
2269
  msgstr ""
2270
 
2271
- #: ../classes/EDD_SL_Plugin_Updater.php:184
2272
  #, php-format
2273
  msgid ""
2274
- "There is a new version of %1$s available. <a target=\"_blank\" "
2275
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
2276
- "href=\"%4$s\">update now</a>."
2277
  msgstr ""
2278
 
2279
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2280
  msgid "You do not have permission to install plugin updates"
2281
  msgstr ""
2282
 
2283
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2284
  msgid "Error"
2285
  msgstr ""
2286
 
@@ -2640,97 +2653,97 @@ msgstr ""
2640
  msgid "Please enter XML content"
2641
  msgstr ""
2642
 
2643
- #: ../modules/import-export/classes/import.php:138 ../modules/import-
2644
- #: export/classes/import.php:468
2645
  #, php-format
2646
  msgid "New attachment created <em>%s</em> %s"
2647
  msgstr ""
2648
 
2649
- #: ../modules/import-export/classes/import.php:170
2650
  #, php-format
2651
  msgid "Failed to import <em>%s</em>"
2652
  msgstr ""
2653
 
2654
- #: ../modules/import-export/classes/import.php:178
2655
  #, php-format
2656
  msgid "New ad created: <em>%s</em> %s"
2657
  msgstr ""
2658
 
2659
- #: ../modules/import-export/classes/import.php:224
2660
  #, php-format
2661
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2662
  msgstr ""
2663
 
2664
- #: ../modules/import-export/classes/import.php:287
2665
  #, php-format
2666
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2667
  msgstr ""
2668
 
2669
- #: ../modules/import-export/classes/import.php:289
2670
  #, php-format
2671
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2672
  msgstr ""
2673
 
2674
- #: ../modules/import-export/classes/import.php:353
2675
  #, php-format
2676
  msgid "Placement <em>%s</em> created"
2677
  msgstr ""
2678
 
2679
- #: ../modules/import-export/classes/import.php:379
2680
  #, php-format
2681
  msgid "Option was updated: <em>%s</em>"
2682
  msgstr ""
2683
 
2684
- #: ../modules/import-export/classes/import.php:382
2685
  #, php-format
2686
  msgid "Option already exists: <em>%s</em>"
2687
  msgstr ""
2688
 
2689
- #: ../modules/import-export/classes/import.php:404
2690
  #, php-format
2691
  msgid "Failed to create import directory <em>%s</em>"
2692
  msgstr ""
2693
 
2694
- #: ../modules/import-export/classes/import.php:409
2695
  #, php-format
2696
  msgid "Import directory is not writable: <em>%s</em>"
2697
  msgstr ""
2698
 
2699
- #: ../modules/import-export/classes/import.php:417
2700
  msgid ""
2701
  "File is empty, uploads are disabled or post_max_size is smaller than "
2702
  "upload_max_filesize in php.ini"
2703
  msgstr ""
2704
 
2705
- #: ../modules/import-export/classes/import.php:427
2706
  #, php-format
2707
  msgid "Failed to upload file, error: <em>%s</em>"
2708
  msgstr ""
2709
 
2710
- #: ../modules/import-export/classes/import.php:432
2711
  msgid "File is empty."
2712
  msgstr ""
2713
 
2714
- #: ../modules/import-export/classes/import.php:437
2715
  #, php-format
2716
  msgid ""
2717
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2718
  "problem"
2719
  msgstr ""
2720
 
2721
- #: ../modules/import-export/classes/import.php:510
2722
  #, php-format
2723
  msgid "Invalid filetype <em>%s</em>"
2724
  msgstr ""
2725
 
2726
- #: ../modules/import-export/classes/import.php:515 ../modules/import-
2727
- #: export/classes/import.php:522 ../modules/import-export/classes/import.php:530 .
2728
- #: ./modules/import-export/classes/import.php:545
2729
  #, php-format
2730
  msgid "Error getting remote image <em>%s</em>"
2731
  msgstr ""
2732
 
2733
- #: ../modules/import-export/classes/import.php:539
2734
  #, php-format
2735
  msgid "Zero size file downloaded <em>%s</em>"
2736
  msgstr ""
@@ -2738,7 +2751,7 @@ msgstr ""
2738
  #: ../modules/import-export/classes/XmlEncoder.php:61 ../modules/import-
2739
  #: export/classes/XmlEncoder.php:190
2740
  #, php-format
2741
- msgid "The % extension(s) is not loaded"
2742
  msgstr ""
2743
 
2744
  #: ../modules/import-export/classes/XmlEncoder.php:72
@@ -2892,3 +2905,8 @@ msgstr ""
2892
  #: ../public/class-advanced-ads.php:602
2893
  msgid "Parent Ad"
2894
  msgstr ""
 
 
 
 
 
5
  "Project-Id-Version: Advanved Ads\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
8
+ "POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
11
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
44
  msgid "http://webgilde.com"
45
  msgstr ""
46
 
47
+ #: ../admin/class-advanced-ads-admin.php:224 ../admin/views/ad-display-metabox.
48
  #: php:103 ../classes/display-conditions.php:169 ../classes/visitor-conditions.
49
  #: php:214
50
  msgid "or"
51
  msgstr ""
52
 
53
+ #: ../admin/class-advanced-ads-admin.php:225 ../admin/views/ad-visitor-metabox.
54
  #: php:68 ../classes/display-conditions.php:169 ../classes/visitor-conditions.php:
55
  #: 214
56
  msgid "and"
57
  msgstr ""
58
 
59
+ #: ../admin/class-advanced-ads-admin.php:226
60
  msgid "After which paragraph?"
61
  msgstr ""
62
 
63
+ #: ../admin/class-advanced-ads-admin.php:293
64
  msgid "Overview"
65
  msgstr ""
66
 
67
+ #: ../admin/class-advanced-ads-admin.php:297 ../admin/class-advanced-ads-admin.
68
+ #: php:297 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
69
  #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
70
+ #: /admin/views/placements.php:83 ../admin/views/placements.php:189 ..
71
  #: /classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
72
  #: /public/class-advanced-ads.php:590
73
  msgid "Ads"
74
  msgstr ""
75
 
76
+ #: ../admin/class-advanced-ads-admin.php:303 ../public/class-advanced-ads.php:593
77
  msgid "Add New Ad"
78
  msgstr ""
79
 
80
+ #: ../admin/class-advanced-ads-admin.php:303 ../public/class-advanced-ads.php:592
81
  #: ../public/class-advanced-ads.php:596
82
  msgid "New Ad"
83
  msgstr ""
84
 
85
+ #: ../admin/class-advanced-ads-admin.php:308 ../admin/includes/class-shortcode-
86
+ #: creator.php:84 ../admin/views/placements.php:76 ../admin/views/placements.php:
87
+ #: 182 ../classes/widget.php:82
88
  msgid "Ad Groups"
89
  msgstr ""
90
 
91
+ #: ../admin/class-advanced-ads-admin.php:308 ../modules/import-export/views/page.
92
  #: php:24 ../public/class-advanced-ads.php:563
93
  msgid "Groups"
94
  msgstr ""
95
 
96
+ #: ../admin/class-advanced-ads-admin.php:313
97
  msgid "Ad Placements"
98
  msgstr ""
99
 
100
+ #: ../admin/class-advanced-ads-admin.php:313 ../admin/includes/class-shortcode-
101
+ #: creator.php:91 ../admin/views/placements.php:19 ../classes/widget.php:75 ..
102
  #: /modules/import-export/views/page.php:25
103
  msgid "Placements"
104
  msgstr ""
105
 
106
+ #: ../admin/class-advanced-ads-admin.php:317
107
  msgid "Advanced Ads Settings"
108
  msgstr ""
109
 
110
+ #: ../admin/class-advanced-ads-admin.php:317 ../admin/class-advanced-ads-admin.
111
+ #: php:565 ../admin/views/debug.php:10
112
  msgid "Settings"
113
  msgstr ""
114
 
115
+ #: ../admin/class-advanced-ads-admin.php:320
116
  msgid "Advanced Ads Debugging"
117
  msgstr ""
118
 
119
+ #: ../admin/class-advanced-ads-admin.php:320
120
  msgid "Debug"
121
  msgstr ""
122
 
123
+ #: ../admin/class-advanced-ads-admin.php:324 ../admin/class-advanced-ads-admin.
124
+ #: php:324
125
  msgid "Advanced Ads Intro"
126
  msgstr ""
127
 
128
+ #: ../admin/class-advanced-ads-admin.php:328 ../admin/class-advanced-ads-admin.
129
+ #: php:328 ../admin/class-advanced-ads-admin.php:2196
130
  msgid "Support"
131
  msgstr ""
132
 
133
+ #: ../admin/class-advanced-ads-admin.php:440
134
  msgid "Please enter a message"
135
  msgstr ""
136
 
137
+ #: ../admin/class-advanced-ads-admin.php:450
138
  #, php-format
139
  msgid "Email could NOT be sent. Please contact us directly at %s."
140
  msgstr ""
141
 
142
+ #: ../admin/class-advanced-ads-admin.php:453
143
  msgid "Please enter a valid email address"
144
  msgstr ""
145
 
146
+ #: ../admin/class-advanced-ads-admin.php:479 ../admin/class-advanced-ads-admin.
147
+ #: php:506
148
  msgid "Sorry, you are not allowed to access this feature."
149
  msgstr ""
150
 
151
+ #: ../admin/class-advanced-ads-admin.php:492
152
  msgid ""
153
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
154
  "deleted?"
155
  msgstr ""
156
 
157
+ #: ../admin/class-advanced-ads-admin.php:660
158
  msgid "Ad Type"
159
  msgstr ""
160
 
161
+ #: ../admin/class-advanced-ads-admin.php:666
162
  msgid "Ad Parameters"
163
  msgstr ""
164
 
165
+ #: ../admin/class-advanced-ads-admin.php:669
166
  msgid "Layout / Output"
167
  msgstr ""
168
 
169
+ #: ../admin/class-advanced-ads-admin.php:672
170
  msgid "Display Conditions"
171
  msgstr ""
172
 
173
+ #: ../admin/class-advanced-ads-admin.php:675
174
  msgid "Visitor Conditions"
175
  msgstr ""
176
 
177
+ #: ../admin/class-advanced-ads-admin.php:777 ../admin/class-advanced-ads-admin.
178
+ #: php:788 ../admin/class-advanced-ads-admin.php:793 ../admin/class-advanced-ads-
179
+ #: admin.php:1387 ../admin/views/ad-output-metabox.php:51
180
  msgid "Manual"
181
  msgstr ""
182
 
183
+ #: ../admin/class-advanced-ads-admin.php:787
184
  msgid "Video"
185
  msgstr ""
186
 
187
+ #: ../admin/class-advanced-ads-admin.php:965 ../admin/class-advanced-ads-admin.
188
+ #: php:966
189
  msgid "Ad updated."
190
  msgstr ""
191
 
192
  #. translators: %s: date and time of the revision
193
+ #: ../admin/class-advanced-ads-admin.php:968
194
  #, php-format
195
  msgid "Ad restored to revision from %s"
196
  msgstr ""
197
 
198
+ #: ../admin/class-advanced-ads-admin.php:969
199
  msgid "Ad published."
200
  msgstr ""
201
 
202
+ #: ../admin/class-advanced-ads-admin.php:970
203
  msgid "Ad saved."
204
  msgstr ""
205
 
206
+ #: ../admin/class-advanced-ads-admin.php:971
207
  msgid "Ad submitted."
208
  msgstr ""
209
 
210
+ #: ../admin/class-advanced-ads-admin.php:973
211
  #, php-format
212
  msgid "Ad scheduled for: <strong>%1$s</strong>."
213
  msgstr ""
214
 
215
  #. translators: Publish box date format, see http://php.net/date
216
+ #: ../admin/class-advanced-ads-admin.php:975
217
  msgid "M j, Y @ G:i"
218
  msgstr ""
219
 
220
+ #: ../admin/class-advanced-ads-admin.php:977
221
  msgid "Ad draft updated."
222
  msgstr ""
223
 
224
+ #: ../admin/class-advanced-ads-admin.php:996
225
  #, php-format
226
  msgid "%s ad updated."
227
  msgid_plural "%s ads updated."
228
  msgstr[0] ""
229
  msgstr[1] ""
230
 
231
+ #: ../admin/class-advanced-ads-admin.php:997
232
  #, php-format
233
  msgid "%s ad not updated, somebody is editing it."
234
  msgid_plural "%s ads not updated, somebody is editing them."
235
  msgstr[0] ""
236
  msgstr[1] ""
237
 
238
+ #: ../admin/class-advanced-ads-admin.php:998
239
  #, php-format
240
  msgid "%s ad permanently deleted."
241
  msgid_plural "%s ads permanently deleted."
242
  msgstr[0] ""
243
  msgstr[1] ""
244
 
245
+ #: ../admin/class-advanced-ads-admin.php:999
246
  #, php-format
247
  msgid "%s ad moved to the Trash."
248
  msgid_plural "%s ads moved to the Trash."
249
  msgstr[0] ""
250
  msgstr[1] ""
251
 
252
+ #: ../admin/class-advanced-ads-admin.php:1000
253
  #, php-format
254
  msgid "%s ad restored from the Trash."
255
  msgid_plural "%s ads restored from the Trash."
256
  msgstr[0] ""
257
  msgstr[1] ""
258
 
259
+ #: ../admin/class-advanced-ads-admin.php:1035 ../admin/views/settings.php:12
260
  msgid "General"
261
  msgstr ""
262
 
263
+ #: ../admin/class-advanced-ads-admin.php:1047 ../admin/class-advanced-ads-admin.
264
+ #: php:1159
265
  msgid "Licenses"
266
  msgstr ""
267
 
268
+ #: ../admin/class-advanced-ads-admin.php:1058
269
  msgid "Disable ads"
270
  msgstr ""
271
 
272
+ #: ../admin/class-advanced-ads-admin.php:1066
273
  msgid "Hide ads for logged in users"
274
  msgstr ""
275
 
276
+ #: ../admin/class-advanced-ads-admin.php:1074
277
  msgid "Use advanced JavaScript"
278
  msgstr ""
279
 
280
+ #: ../admin/class-advanced-ads-admin.php:1082
281
  msgid "Unlimited ad injection"
282
  msgstr ""
283
 
284
+ #: ../admin/class-advanced-ads-admin.php:1090
285
  msgid "Priority of content injection filter"
286
  msgstr ""
287
 
288
+ #: ../admin/class-advanced-ads-admin.php:1098
289
  msgid "Hide ads from bots"
290
  msgstr ""
291
 
292
+ #: ../admin/class-advanced-ads-admin.php:1106
293
  msgid "Disable notices"
294
  msgstr ""
295
 
296
+ #: ../admin/class-advanced-ads-admin.php:1114
297
  msgid "ID prefix"
298
  msgstr ""
299
 
300
+ #: ../admin/class-advanced-ads-admin.php:1122
301
  msgid "Remove Widget ID"
302
  msgstr ""
303
 
304
+ #: ../admin/class-advanced-ads-admin.php:1130
305
  msgid "Allow editors to manage ads"
306
  msgstr ""
307
 
308
+ #: ../admin/class-advanced-ads-admin.php:1138
309
  msgid "Ad label"
310
  msgstr ""
311
 
312
+ #: ../admin/class-advanced-ads-admin.php:1215
313
  msgid "(display to all)"
314
  msgstr ""
315
 
316
+ #: ../admin/class-advanced-ads-admin.php:1216
317
  msgid "Subscriber"
318
  msgstr ""
319
 
320
+ #: ../admin/class-advanced-ads-admin.php:1217
321
  msgid "Contributor"
322
  msgstr ""
323
 
324
+ #: ../admin/class-advanced-ads-admin.php:1218
325
  msgid "Author"
326
  msgstr ""
327
 
328
+ #: ../admin/class-advanced-ads-admin.php:1219
329
  msgid "Editor"
330
  msgstr ""
331
 
332
+ #: ../admin/class-advanced-ads-admin.php:1220
333
  msgid "Admin"
334
  msgstr ""
335
 
336
+ #: ../admin/class-advanced-ads-admin.php:1228
337
  msgid "Choose the lowest role a user must have in order to not see any ads."
338
  msgstr ""
339
 
340
+ #: ../admin/class-advanced-ads-admin.php:1242
341
  msgid ""
342
  "<strong>notice: </strong>the file is currently enabled by an add-on that "
343
  "needs it."
344
  msgstr ""
345
 
346
+ #: ../admin/class-advanced-ads-admin.php:1245
347
  #, php-format
348
  msgid ""
349
  "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
351
  "from this file."
352
  msgstr ""
353
 
354
+ #: ../admin/class-advanced-ads-admin.php:1258
355
  msgid ""
356
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
357
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
360
  "on archive pages AT YOUR OWN RISK."
361
  msgstr ""
362
 
363
+ #: ../admin/class-advanced-ads-admin.php:1274
364
  msgid ""
365
  "Please check your post content. A priority of 10 and below might cause "
366
  "issues (wpautop function might run twice)."
367
  msgstr ""
368
 
369
+ #: ../admin/class-advanced-ads-admin.php:1276
370
  msgid ""
371
  "Play with this value in order to change the priority of the injected ads "
372
  "compared to other auto injected elements in the post content."
373
  msgstr ""
374
 
375
+ #: ../admin/class-advanced-ads-admin.php:1290
376
  #, php-format
377
  msgid ""
378
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
380
  "Add-On</a>."
381
  msgstr ""
382
 
383
+ #: ../admin/class-advanced-ads-admin.php:1291
384
  msgid ""
385
  "Disabling this option only makes sense if your ads contain content you want "
386
  "to display to bots (like search engines) or your site is cached and bots "
387
  "could create a cached version without the ads."
388
  msgstr ""
389
 
390
+ #: ../admin/class-advanced-ads-admin.php:1304
391
  msgid ""
392
  "Disable internal notices like tips, tutorials, email newsletters and update "
393
  "notices. Disabling notices is recommended if you run multiple blogs with "
394
  "Advanced Ads already."
395
  msgstr ""
396
 
397
+ #: ../admin/class-advanced-ads-admin.php:1321
398
  msgid ""
399
  "Prefix of class or id attributes in the frontend. Change it if you don’t "
400
  "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
401
  "need to <strong>rewrite css rules afterwards</strong>."
402
  msgstr ""
403
 
404
+ #: ../admin/class-advanced-ads-admin.php:1342
405
  msgid ""
406
  "Remove the ID attribute from widgets in order to not make them an easy "
407
  "target of ad blockers."
408
  msgstr ""
409
 
410
+ #: ../admin/class-advanced-ads-admin.php:1345
411
  msgid ""
412
  "If checked, the Advanced Ads Widget will not work with the fixed option of "
413
  "the <strong>Q2W3 Fixed Widget</strong> plugin."
414
  msgstr ""
415
 
416
+ #: ../admin/class-advanced-ads-admin.php:1367
417
  msgid "Allow editors to also manage and publish ads."
418
  msgstr ""
419
 
420
+ #: ../admin/class-advanced-ads-admin.php:1368
421
  #, php-format
422
  msgid ""
423
  "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
424
  "target=\"_blank\">Advanced Ads Pro</a>."
425
  msgstr ""
426
 
427
+ #: ../admin/class-advanced-ads-admin.php:1380
428
  msgctxt "label before ads"
429
  msgid "Advertisements"
430
  msgstr ""
431
 
432
+ #: ../admin/class-advanced-ads-admin.php:1387
433
  msgid "Displayed above ads."
434
  msgstr ""
435
 
436
+ #: ../admin/class-advanced-ads-admin.php:1446 ../admin/class-advanced-ads-admin.
437
+ #: php:1451
438
  msgid "Ad Details"
439
  msgstr ""
440
 
441
+ #: ../admin/class-advanced-ads-admin.php:1447 ../admin/class-advanced-ads-admin.
442
+ #: php:1452
443
  msgid "Ad Planning"
444
  msgstr ""
445
 
446
+ #: ../admin/class-advanced-ads-admin.php:1607
447
  msgid "Ad Settings"
448
  msgstr ""
449
 
450
+ #: ../admin/class-advanced-ads-admin.php:1686 ../admin/views/overview.php:23
451
  msgid "Ads Dashboard"
452
  msgstr ""
453
 
454
+ #: ../admin/class-advanced-ads-admin.php:1698
455
  msgid "From the ad optimization universe"
456
  msgstr ""
457
 
458
+ #: ../admin/class-advanced-ads-admin.php:1707
459
  msgid "Advanced Ads Tutorials"
460
  msgstr ""
461
 
462
+ #: ../admin/class-advanced-ads-admin.php:1718
463
  #, php-format
464
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
465
  msgstr ""
466
 
467
+ #: ../admin/class-advanced-ads-admin.php:1729
468
  msgid "plugin manual and homepage"
469
  msgstr ""
470
 
471
+ #: ../admin/class-advanced-ads-admin.php:1736
472
  msgid "Get the tutorial via email"
473
  msgstr ""
474
 
475
+ #: ../admin/class-advanced-ads-admin.php:1743
476
  msgid "Get AdSense tips via email"
477
  msgstr ""
478
 
479
+ #: ../admin/class-advanced-ads-admin.php:1836
480
  #, php-format
481
  msgid "time of %s"
482
  msgstr ""
483
 
484
+ #: ../admin/class-advanced-ads-admin.php:1872
485
  msgid "Error while trying to register the license. Please contact support."
486
  msgstr ""
487
 
488
+ #: ../admin/class-advanced-ads-admin.php:1877 ../admin/views/setting-license.php:37
489
  msgid "Please enter a valid license key"
490
  msgstr ""
491
 
492
+ #: ../admin/class-advanced-ads-admin.php:1905
493
  msgid "License couldn’t be activated. Please try again later."
494
  msgstr ""
495
 
496
+ #: ../admin/class-advanced-ads-admin.php:1917
497
  msgid "This is the bundle license key."
498
  msgstr ""
499
 
500
+ #: ../admin/class-advanced-ads-admin.php:1918
501
  msgid "This is not the correct key for this add-on."
502
  msgstr ""
503
 
504
+ #: ../admin/class-advanced-ads-admin.php:1919
505
  msgid "There are no activations left."
506
  msgstr ""
507
 
508
+ #: ../admin/class-advanced-ads-admin.php:1928
509
  #, php-format
510
  msgid "License is invalid. Reason: %s"
511
  msgstr ""
512
 
513
+ #: ../admin/class-advanced-ads-admin.php:1986
514
  msgid "Error while trying to disable the license. Please contact support."
515
  msgstr ""
516
 
517
+ #: ../admin/class-advanced-ads-admin.php:2009 ../admin/class-advanced-ads-admin.
518
+ #: php:2027
519
  msgid "License couldn’t be deactivated. Please try again later."
520
  msgstr ""
521
 
522
+ #: ../admin/class-advanced-ads-admin.php:2200
523
  msgid "Add-Ons"
524
  msgstr ""
525
 
576
  msgstr ""
577
 
578
  #: ../admin/includes/class-ad-groups-list.php:275 ../modules/import-
579
+ #: export/classes/import.php:139 ../modules/import-export/classes/import.php:179 .
580
+ #: ./modules/import-export/classes/import.php:469 ../public/class-advanced-ads.
581
  #: php:594
582
  msgid "Edit"
583
  msgstr ""
1032
  msgid "Update"
1033
  msgstr ""
1034
 
1035
+ #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:25
1036
  msgid "Name"
1037
  msgstr ""
1038
 
1040
  msgid "Description"
1041
  msgstr ""
1042
 
1043
+ #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:24 ..
1044
  #: /modules/gadsense/admin/views/adsense-ad-parameters.php:47
1045
  msgid "Type"
1046
  msgstr ""
1076
  msgstr ""
1077
 
1078
  #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1079
+ #: /admin/views/ad-info.php:3 ../admin/views/placements.php:61
1080
  msgid "shortcode"
1081
  msgstr ""
1082
 
1083
  #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1084
+ #: /admin/views/placements.php:64
1085
  msgid "template"
1086
  msgstr ""
1087
 
1287
  msgid "all ad groups"
1288
  msgstr ""
1289
 
1290
+ #: ../admin/views/ad-list-no-ads.php:2
1291
+ msgid "Not many ads here yet. Get help from the following resources:"
1292
+ msgstr ""
1293
+
1294
+ #: ../admin/views/ad-list-no-ads.php:3
1295
+ msgid "Watch the “First Ad” Tutorial (Video)"
1296
+ msgstr ""
1297
+
1298
+ #: ../admin/views/ad-list-no-ads.php:4
1299
+ msgid "Import Ads (Link)"
1300
+ msgstr ""
1301
+
1302
+ #: ../admin/views/ad-list-no-ads.php:5
1303
+ msgid "Get dummy ad content (Link)"
1304
+ msgstr ""
1305
+
1306
  #: ../admin/views/ad-main-metabox.php:3
1307
  msgid "No ad types defined"
1308
  msgstr ""
1319
  msgid "- default -"
1320
  msgstr ""
1321
 
1322
+ #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:54
1323
  msgid "default"
1324
  msgstr ""
1325
 
1387
  msgid "Enable debug mode"
1388
  msgstr ""
1389
 
1390
+ #: ../admin/views/ad-parameters-metabox.php:30
1391
  msgid ""
1392
  "The code of this ad might not work properly with the <em>Content</em> "
1393
  "placement."
1394
  msgstr ""
1395
 
1396
+ #: ../admin/views/ad-parameters-metabox.php:31
1397
  #, php-format
1398
  msgid "Reach out to <a href=\"%s\">support</a> to get help."
1399
  msgstr ""
1476
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1477
  msgstr ""
1478
 
1479
+ #: ../admin/views/ad-visitor-metabox.php:94
1480
  msgid ""
1481
  "The visitor conditions below are deprecated. Please use the new version of "
1482
  "visitor conditions to replace it."
1483
  msgstr ""
1484
 
1485
+ #: ../admin/views/ad-visitor-metabox.php:100
1486
  msgid "Display on all devices"
1487
  msgstr ""
1488
 
1489
+ #: ../admin/views/ad-visitor-metabox.php:104
1490
  msgid "only on mobile devices"
1491
  msgstr ""
1492
 
1493
+ #: ../admin/views/ad-visitor-metabox.php:108
1494
  msgid "not on mobile devices"
1495
  msgstr ""
1496
 
1654
  msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1655
  msgstr ""
1656
 
1657
+ #: ../admin/views/placements.php:26 ../modules/import-export/views/page.php:26
1658
  msgid "Options"
1659
  msgstr ""
1660
 
1661
+ #: ../admin/views/placements.php:44
1662
  #, php-format
1663
  msgid ""
1664
  "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1665
  "if the responsible add-on is activated."
1666
  msgstr ""
1667
 
1668
+ #: ../admin/views/placements.php:60
1669
  msgid "show usage"
1670
  msgstr ""
1671
 
1672
+ #: ../admin/views/placements.php:72
1673
  msgid "Item"
1674
  msgstr ""
1675
 
1676
+ #: ../admin/views/placements.php:74 ../admin/views/placements.php:180
1677
  msgid "--not selected--"
1678
  msgstr ""
1679
 
1680
+ #: ../admin/views/placements.php:94
1681
  msgid "Inject"
1682
  msgstr ""
1683
 
1684
+ #: ../admin/views/placements.php:95
1685
  msgid "after"
1686
  msgstr ""
1687
 
1688
+ #: ../admin/views/placements.php:95
1689
  msgid "before"
1690
  msgstr ""
1691
 
1692
+ #: ../admin/views/placements.php:115
1693
  msgid "start counting from bottom"
1694
  msgstr ""
1695
 
1696
+ #: ../admin/views/placements.php:118
1697
  msgid "Important Notice"
1698
  msgstr ""
1699
 
1700
+ #: ../admin/views/placements.php:118
1701
  msgid ""
1702
  "Your server is missing an extension. This might break the content injection."
1703
  "<br/>Ignore this warning if everything works fine or else ask your hosting "
1704
  "provider to enable <em>mbstring</em>."
1705
  msgstr ""
1706
 
1707
+ #: ../admin/views/placements.php:128
1708
  msgid "advanced options"
1709
  msgstr ""
1710
 
1711
+ #: ../admin/views/placements.php:137
1712
  msgctxt "checkbox to remove placement"
1713
  msgid "delete"
1714
  msgstr ""
1715
 
1716
+ #: ../admin/views/placements.php:143
1717
  msgid "Save Placements"
1718
  msgstr ""
1719
 
1720
+ #: ../admin/views/placements.php:145
1721
  msgid "Create a new placement"
1722
  msgstr ""
1723
 
1724
+ #: ../admin/views/placements.php:146
1725
  msgid "New Placement"
1726
  msgstr ""
1727
 
1728
+ #: ../admin/views/placements.php:153
1729
  msgid "Choose a placement type"
1730
  msgstr ""
1731
 
1732
+ #: ../admin/views/placements.php:154
1733
  #, php-format
1734
  msgid ""
1735
  "Placement types define where the ad is going to be displayed. Learn more "
1736
  "about the different types from the <a href=\"%s\">manual</a>"
1737
  msgstr ""
1738
 
1739
+ #: ../admin/views/placements.php:171
1740
  msgid "Please select a placement type."
1741
  msgstr ""
1742
 
1743
+ #: ../admin/views/placements.php:173
1744
  msgid "Choose a Name"
1745
  msgstr ""
1746
 
1747
+ #: ../admin/views/placements.php:174
1748
  msgid ""
1749
  "The name of the placement is only visible to you. Tip: choose a descriptive "
1750
  "one, e.g. <em>Below Post Headline</em>."
1751
  msgstr ""
1752
 
1753
+ #: ../admin/views/placements.php:175
1754
  msgid "Placement Name"
1755
  msgstr ""
1756
 
1757
+ #: ../admin/views/placements.php:176
1758
  msgid "Please enter a name for your placement."
1759
  msgstr ""
1760
 
1761
+ #: ../admin/views/placements.php:177
1762
  msgid "Choose the Ad or Group"
1763
  msgstr ""
1764
 
1765
+ #: ../admin/views/placements.php:178
1766
  msgid "The ad or group that should be displayed."
1767
  msgstr ""
1768
 
1769
+ #: ../admin/views/placements.php:197
1770
  msgid "Save New Placement"
1771
  msgstr ""
1772
 
2038
  "widget."
2039
  msgstr ""
2040
 
2041
+ #: ../classes/ad_placements.php:214
2042
  #, php-format
2043
  msgid "paragraph (%s)"
2044
  msgstr ""
2045
 
2046
+ #: ../classes/ad_placements.php:215
2047
  #, php-format
2048
  msgid "paragraph without image (%s)"
2049
  msgstr ""
2050
 
2051
+ #: ../classes/ad_placements.php:216
2052
  #, php-format
2053
  msgid "headline 2 (%s)"
2054
  msgstr ""
2055
 
2056
+ #: ../classes/ad_placements.php:217
2057
  #, php-format
2058
  msgid "headline 3 (%s)"
2059
  msgstr ""
2060
 
2061
+ #: ../classes/ad_placements.php:218
2062
  #, php-format
2063
  msgid "headline 4 (%s)"
2064
  msgstr ""
2277
  msgid "allow ads in Feed"
2278
  msgstr ""
2279
 
2280
+ #: ../classes/EDD_SL_Plugin_Updater.php:186
2281
  #, php-format
2282
+ msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
 
 
2283
  msgstr ""
2284
 
2285
+ #: ../classes/EDD_SL_Plugin_Updater.php:194
2286
  #, php-format
2287
  msgid ""
2288
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
2289
+ "or %5$supdate now%6$s."
 
2290
  msgstr ""
2291
 
2292
+ #: ../classes/EDD_SL_Plugin_Updater.php:337
2293
  msgid "You do not have permission to install plugin updates"
2294
  msgstr ""
2295
 
2296
+ #: ../classes/EDD_SL_Plugin_Updater.php:337
2297
  msgid "Error"
2298
  msgstr ""
2299
 
2653
  msgid "Please enter XML content"
2654
  msgstr ""
2655
 
2656
+ #: ../modules/import-export/classes/import.php:140 ../modules/import-
2657
+ #: export/classes/import.php:470
2658
  #, php-format
2659
  msgid "New attachment created <em>%s</em> %s"
2660
  msgstr ""
2661
 
2662
+ #: ../modules/import-export/classes/import.php:172
2663
  #, php-format
2664
  msgid "Failed to import <em>%s</em>"
2665
  msgstr ""
2666
 
2667
+ #: ../modules/import-export/classes/import.php:180
2668
  #, php-format
2669
  msgid "New ad created: <em>%s</em> %s"
2670
  msgstr ""
2671
 
2672
+ #: ../modules/import-export/classes/import.php:226
2673
  #, php-format
2674
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2675
  msgstr ""
2676
 
2677
+ #: ../modules/import-export/classes/import.php:289
2678
  #, php-format
2679
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2680
  msgstr ""
2681
 
2682
+ #: ../modules/import-export/classes/import.php:291
2683
  #, php-format
2684
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2685
  msgstr ""
2686
 
2687
+ #: ../modules/import-export/classes/import.php:356
2688
  #, php-format
2689
  msgid "Placement <em>%s</em> created"
2690
  msgstr ""
2691
 
2692
+ #: ../modules/import-export/classes/import.php:381
2693
  #, php-format
2694
  msgid "Option was updated: <em>%s</em>"
2695
  msgstr ""
2696
 
2697
+ #: ../modules/import-export/classes/import.php:384
2698
  #, php-format
2699
  msgid "Option already exists: <em>%s</em>"
2700
  msgstr ""
2701
 
2702
+ #: ../modules/import-export/classes/import.php:406
2703
  #, php-format
2704
  msgid "Failed to create import directory <em>%s</em>"
2705
  msgstr ""
2706
 
2707
+ #: ../modules/import-export/classes/import.php:411
2708
  #, php-format
2709
  msgid "Import directory is not writable: <em>%s</em>"
2710
  msgstr ""
2711
 
2712
+ #: ../modules/import-export/classes/import.php:419
2713
  msgid ""
2714
  "File is empty, uploads are disabled or post_max_size is smaller than "
2715
  "upload_max_filesize in php.ini"
2716
  msgstr ""
2717
 
2718
+ #: ../modules/import-export/classes/import.php:429
2719
  #, php-format
2720
  msgid "Failed to upload file, error: <em>%s</em>"
2721
  msgstr ""
2722
 
2723
+ #: ../modules/import-export/classes/import.php:434
2724
  msgid "File is empty."
2725
  msgstr ""
2726
 
2727
+ #: ../modules/import-export/classes/import.php:439
2728
  #, php-format
2729
  msgid ""
2730
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2731
  "problem"
2732
  msgstr ""
2733
 
2734
+ #: ../modules/import-export/classes/import.php:512
2735
  #, php-format
2736
  msgid "Invalid filetype <em>%s</em>"
2737
  msgstr ""
2738
 
2739
+ #: ../modules/import-export/classes/import.php:517 ../modules/import-
2740
+ #: export/classes/import.php:524 ../modules/import-export/classes/import.php:532 .
2741
+ #: ./modules/import-export/classes/import.php:547
2742
  #, php-format
2743
  msgid "Error getting remote image <em>%s</em>"
2744
  msgstr ""
2745
 
2746
+ #: ../modules/import-export/classes/import.php:541
2747
  #, php-format
2748
  msgid "Zero size file downloaded <em>%s</em>"
2749
  msgstr ""
2751
  #: ../modules/import-export/classes/XmlEncoder.php:61 ../modules/import-
2752
  #: export/classes/XmlEncoder.php:190
2753
  #, php-format
2754
+ msgid "The %s extension(s) is not loaded"
2755
  msgstr ""
2756
 
2757
  #: ../modules/import-export/classes/XmlEncoder.php:72
2905
  #: ../public/class-advanced-ads.php:602
2906
  msgid "Parent Ad"
2907
  msgstr ""
2908
+
2909
+ #: ../public/class-advanced-ads.php:714
2910
+ msgctxt "label above ads"
2911
+ msgid "Advertisements"
2912
+ msgstr ""
modules/import-export/classes/XmlEncoder.php CHANGED
@@ -58,7 +58,7 @@ class Advanced_Ads_XmlEncoder
58
 
59
  public function encode( $data, $options = array()) {
60
  if ( ! extension_loaded( 'simplexml' ) ) {
61
- throw new Exception( sprintf( __( 'The % extension(s) is not loaded', 'advanced-ads' ), 'simplexml' ) );
62
  }
63
 
64
  $this->dom = new DOMDocument();
@@ -187,7 +187,7 @@ class Advanced_Ads_XmlEncoder
187
 
188
  public function decode($data) {
189
  if ( ! extension_loaded( 'simplexml' ) ) {
190
- throw new Exception( sprintf( __( 'The % extension(s) is not loaded', 'advanced-ads' ), 'simplexml' ) );
191
  }
192
 
193
  if ('' === trim($data)) {
58
 
59
  public function encode( $data, $options = array()) {
60
  if ( ! extension_loaded( 'simplexml' ) ) {
61
+ throw new Exception( sprintf( __( 'The %s extension(s) is not loaded', 'advanced-ads' ), 'simplexml' ) );
62
  }
63
 
64
  $this->dom = new DOMDocument();
187
 
188
  public function decode($data) {
189
  if ( ! extension_loaded( 'simplexml' ) ) {
190
+ throw new Exception( sprintf( __( 'The %s extension(s) is not loaded', 'advanced-ads' ), 'simplexml' ) );
191
  }
192
 
193
  if ('' === trim($data)) {
modules/import-export/classes/export.php CHANGED
@@ -153,7 +153,14 @@ class Advanced_Ads_Export {
153
  }
154
 
155
  if ( in_array( 'placements', $content ) ) {
156
- $export['placements'] = Advanced_Ads::get_instance()->get_model()->get_ad_placements_array();
 
 
 
 
 
 
 
157
  }
158
 
159
  if ( in_array( 'options', $content ) ) {
@@ -163,6 +170,8 @@ class Advanced_Ads_Export {
163
  ) );
164
  }
165
 
 
 
166
  if ( $export ) {
167
  if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) {
168
  error_log( print_r( 'Array to decode', true ) );
153
  }
154
 
155
  if ( in_array( 'placements', $content ) ) {
156
+ $placements = Advanced_Ads::get_instance()->get_model()->get_ad_placements_array();
157
+
158
+ // prevent nodes starting with number
159
+ foreach ( $placements as $key => &$placement ) {
160
+ $placement['key'] = $key;
161
+ }
162
+
163
+ $export['placements'] = array_values( $placements );
164
  }
165
 
166
  if ( in_array( 'options', $content ) ) {
170
  ) );
171
  }
172
 
173
+ do_action_ref_array( 'advanced-ads-export', array( $content, &$export ) );
174
+
175
  if ( $export ) {
176
  if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) {
177
  error_log( print_r( 'Array to decode', true ) );
modules/import-export/classes/import.php CHANGED
@@ -104,6 +104,8 @@ class Advanced_Ads_Import {
104
  $this->import_placements( $decoded );
105
  $this->import_options( $decoded );
106
 
 
 
107
  wp_cache_flush();
108
  }
109
 
@@ -312,12 +314,13 @@ class Advanced_Ads_Import {
312
  $existing_placements = $updated_placements = Advanced_Ads::get_instance()->get_model()->get_ad_placements_array();
313
  $placement_types = Advanced_Ads_Placements::get_placement_types();
314
 
315
- foreach ( $decoded['placements'] as $placement_key => &$placement ) {
316
- $placement_key_uniq = sanitize_title( $placement_key );
317
- if ( empty( $placement['name'] ) || empty( $placement_key_uniq ) || empty( $placement['type'] ) ) {
318
  continue;
319
  }
320
 
 
 
321
  $placement['type'] = ( isset( $placement_types[ $placement['type'] ] ) ) ? $placement['type'] : 'default';
322
  $placement['name'] = esc_attr( $placement['name'] );
323
 
@@ -352,13 +355,12 @@ class Advanced_Ads_Import {
352
 
353
  $this->messages[] = array( 'update', sprintf( __( 'Placement <em>%s</em> created', 'advanced-ads' ), esc_html( $placement['name'] ) ) );
354
  $updated_placements[ $placement_key_uniq ] = $placement;
355
-
356
  }
357
 
358
- if ( $existing_placements !== $updated_placements ) {
359
- update_option( 'advads-ads-placements', $updated_placements );
360
  }
361
-
362
  }
363
  }
364
 
104
  $this->import_placements( $decoded );
105
  $this->import_options( $decoded );
106
 
107
+ do_action_ref_array( 'advanced-ads-import', array( &$decoded, &$this->imported_data, &$this->messages ) );
108
+
109
  wp_cache_flush();
110
  }
111
 
314
  $existing_placements = $updated_placements = Advanced_Ads::get_instance()->get_model()->get_ad_placements_array();
315
  $placement_types = Advanced_Ads_Placements::get_placement_types();
316
 
317
+ foreach ( $decoded['placements'] as &$placement ) {
318
+ if ( empty( $placement['key'] ) || empty( $placement['name'] ) || empty( $placement['type'] ) ) {
 
319
  continue;
320
  }
321
 
322
+ $placement_key_uniq = sanitize_title( $placement['key'] );
323
+
324
  $placement['type'] = ( isset( $placement_types[ $placement['type'] ] ) ) ? $placement['type'] : 'default';
325
  $placement['name'] = esc_attr( $placement['name'] );
326
 
355
 
356
  $this->messages[] = array( 'update', sprintf( __( 'Placement <em>%s</em> created', 'advanced-ads' ), esc_html( $placement['name'] ) ) );
357
  $updated_placements[ $placement_key_uniq ] = $placement;
358
+ $this->imported_data['placements'][ $placement['key'] ] = $placement_key_uniq;
359
  }
360
 
361
+ if ( $existing_placements !== $updated_placements ) {
362
+ Advanced_Ads::get_instance()->get_model()->update_ad_placements_array( $updated_placements );
363
  }
 
364
  }
365
  }
366
 
public/class-advanced-ads.php CHANGED
@@ -711,7 +711,7 @@ class Advanced_Ads {
711
  $advads_options = Advanced_Ads::get_instance()->options();
712
 
713
  if ( isset( $advads_options['custom-label']['enabled'] ) ) {
714
- $label = ! empty( $advads_options['custom-label']['text'] ) ? esc_html( $advads_options['custom-label']['text'] ) : _x( 'Advertisements', 'label before ads' );
715
 
716
  $template = sprintf( '<div class="%s">%s</div>', Advanced_Ads_Plugin::get_instance()->get_frontend_prefix() . 'adlabel', $label );
717
  return apply_filters( 'advanced-ads-custom-label', $template, $label );
711
  $advads_options = Advanced_Ads::get_instance()->options();
712
 
713
  if ( isset( $advads_options['custom-label']['enabled'] ) ) {
714
+ $label = ! empty( $advads_options['custom-label']['text'] ) ? esc_html( $advads_options['custom-label']['text'] ) : _x( 'Advertisements', 'label above ads', 'advanced-ads' );
715
 
716
  $template = sprintf( '<div class="%s">%s</div>', Advanced_Ads_Plugin::get_instance()->get_frontend_prefix() . 'adlabel', $label );
717
  return apply_filters( 'advanced-ads-custom-label', $template, $label );
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, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.5.3
7
- Stable tag: 1.7.4.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -95,11 +95,12 @@ Placements to insert ads in pre-defined positions in your theme and content. [Li
95
  * ads at the bottom of the post content
96
  * ads before closing `</head>` tag
97
  * ads page footer
 
98
  * many more ad inserters with [add-ons](https://wpadvancedads.com/add-ons/)
99
 
100
  = ad networks =
101
 
102
- Advanced Ads is compatible with all ad networks and banners from affiliate programs like Google AdSense, Chitika, Clickbank, Amazon, and also Google DoubleClick (DFP).
103
  You can also use it to insert additional ad network tags into header or footer of your site without additional coding.
104
 
105
  = best support for mobile devices =
@@ -203,6 +204,10 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
203
 
204
  == Changelog ==
205
 
 
 
 
 
206
  = 1.7.4.5 =
207
 
208
  * extended feed cache to 48 hours
4
  Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.5.3
7
+ Stable tag: 1.7.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
95
  * ads at the bottom of the post content
96
  * ads before closing `</head>` tag
97
  * ads page footer
98
+ * test placements against each other with [Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/)
99
  * many more ad inserters with [add-ons](https://wpadvancedads.com/add-ons/)
100
 
101
  = ad networks =
102
 
103
+ The Advanced Ads ad manager is compatible with all ad networks and banners from affiliate programs like Google AdSense, Chitika, Clickbank, Amazon, and also Google DoubleClick (DFP).
104
  You can also use it to insert additional ad network tags into header or footer of your site without additional coding.
105
 
106
  = best support for mobile devices =
204
 
205
  == Changelog ==
206
 
207
+ = 1.7.5 =
208
+
209
+ * prepared for [Advanced Ads Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/) 1.4 with ad reloads, single request mode and placement tests
210
+
211
  = 1.7.4.5 =
212
 
213
  * extended feed cache to 48 hours