Advanced Ads - Version 1.4.7

Version Description

  • COOL: beautiful selection of terms in display conditions
  • search for terms if there are more than 50 in the current taxonomy
  • updated more messages in the dashboard
  • fixed expiry date discrepancy
  • minor general code fixes
  • minor fix for AdSense ads
Download this release

Release Info

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

Code changes from version 1.4.6 to 1.4.7

admin/assets/css/admin.css CHANGED
@@ -51,16 +51,28 @@
51
  .post-type-advanced_ads #ad-display-box label { margin-right: 1em; }
52
  .post-type-advanced_ads #ad-display-box td, .post-type-advanced_ads #ad-display-box th { padding-right: 10px; }
53
  .post-type-advanced_ads #ad-display-box .advanced-ads-display-condition-set label { float: left; margin-right: -1px; }
54
- .post-type-advanced_ads #ad-display-box .advanced-ads-display-condition-set .ui-state-active { border-color: #0074a2; background: #2ea2cc; color: #fff; }
55
  .post-type-advanced_ads .advads-conditions-all { display: block; }
56
  .post-type-advanced_ads .advads-conditions-single { margin-bottom: 10px; padding: 10px; }
57
  .post-type-advanced_ads .advads-conditions-single.disabled { display: none; opacity: .5; }
58
  .post-type-advanced_ads .advads-conditions-single th { vertical-align: top; }
59
  .advads-conditions-postids-list li { background: #F1F1F1; padding: 3px; }
60
  .advads-conditions-postids-list .remove { margin-right: 1em; font-size: .9em; }
61
- .post-type-advanced_ads #advads-ad-content-plain {
62
- width: 100%;
63
- }
 
 
 
 
 
 
 
 
 
 
 
 
64
  .post-type-advanced_ads #ad-parameters-box .advads-ad-parameters-spinner { display: block; float: none; }
65
  .post-type-advanced_ads #advanced-ads-ad-parameters-size { margin-top: 1em; }
66
  .post-type-advanced_ads #advanced-ads-ad-parameters-size p { float: left; margin: 0 1em 0 0; font-weight: bold; }
51
  .post-type-advanced_ads #ad-display-box label { margin-right: 1em; }
52
  .post-type-advanced_ads #ad-display-box td, .post-type-advanced_ads #ad-display-box th { padding-right: 10px; }
53
  .post-type-advanced_ads #ad-display-box .advanced-ads-display-condition-set label { float: left; margin-right: -1px; }
54
+ .post-type-advanced_ads #ad-display-box .ui-widget { font-size: inherit; }
55
  .post-type-advanced_ads .advads-conditions-all { display: block; }
56
  .post-type-advanced_ads .advads-conditions-single { margin-bottom: 10px; padding: 10px; }
57
  .post-type-advanced_ads .advads-conditions-single.disabled { display: none; opacity: .5; }
58
  .post-type-advanced_ads .advads-conditions-single th { vertical-align: top; }
59
  .advads-conditions-postids-list li { background: #F1F1F1; padding: 3px; }
60
  .advads-conditions-postids-list .remove { margin-right: 1em; font-size: .9em; }
61
+
62
+ .post-type-advanced_ads #advads-ad-content-plain { width: 100%; }
63
+ .post-type-advanced_ads #ad-display-box .advads-conditions-terms-buttons { display: inline-block; }
64
+ .post-type-advanced_ads #ad-display-box .advads-conditions-terms-buttons label,
65
+ .post-type-advanced_ads #ad-display-box .advads-conditions-terms-buttons .button { margin: 0 -1px .3em 0; padding: 0 .5em; background: #f7f7f7; height: 22px; line-height: 22px; color: #555; border: 1px solid #ccc; border-radius: 0; font-family: inherit; }
66
+ .post-type-advanced_ads #ad-display-box .advads-conditions-terms-buttons label span { margin: 0; padding: 0; line-height: 22px; }
67
+
68
+ .post-type-advanced_ads #ad-display-box .advads-conditions-terms-buttons .ui-state-active,
69
+ .post-type-advanced_ads #ad-display-box .advads-conditions-terms-buttons .button,
70
+ .post-type-advanced_ads #ad-display-box .advanced-ads-display-condition-set .ui-button.ui-state-active { border-color: #0074a2; background: #2ea2cc; color: #fff; box-shadow: none; }
71
+
72
+ #ad-display-box .advads-conditions-terms-show-search { height: 22px; line-height: 22px; font-weight: bold; font-size: 1.5em; }
73
+ .advads-conditions-terms-show-search + .description { display: none; }
74
+ .advads-conditions-terms-show-search:hover + .description { display: inline-block; margin-left: .5em; color: #666; }
75
+ .advads-conditions-terms-search { display: none; }
76
  .post-type-advanced_ads #ad-parameters-box .advads-ad-parameters-spinner { display: block; float: none; }
77
  .post-type-advanced_ads #advanced-ads-ad-parameters-size { margin-top: 1em; }
78
  .post-type-advanced_ads #advanced-ads-ad-parameters-size p { float: left; margin: 0 1em 0 0; font-weight: bold; }
admin/assets/js/admin.js CHANGED
@@ -46,13 +46,54 @@ jQuery( document ).ready(function ($) {
46
  });
47
 
48
  // toggle single display condition checkboxes that have a counterpart
49
- $( '.advads-conditions-single input[type="checkbox"]' ).click(function () {
50
- advads_toggle_single_display_condition_checkbox( this );
 
 
51
  });
52
  // toggle single display condition checkboxes that have a counterpart on load
53
  $( '.advads-conditions-single input[type="checkbox"]' ).each(function () {
54
  advads_toggle_single_display_condition_checkbox( this );
55
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  // display input field to search for post, page, etc.
57
  $( '.advads-conditions-postids-list .show-search a' ).click(function (e) {
58
  e.preventDefault();
@@ -94,6 +135,41 @@ jQuery( document ).ready(function ($) {
94
 
95
  });
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  /**
98
  * callback for post search autocomplete
99
  *
@@ -127,10 +203,6 @@ function advads_post_search(query, callback) {
127
  }
128
  callback( results );
129
  }, 'json');
130
-
131
- // results = [{huch:'post', hach:'poster', hoch:'position'}];
132
- //return results;
133
-
134
  }
135
 
136
  /**
@@ -205,7 +277,12 @@ function advads_toggle_single_display_condition_checkbox(checkbox) {
205
  if (jQuery( checkbox ).is( ':checked' )) {
206
  counterpart.attr( 'checked', false );
207
  counterpart.attr( 'disabled', 'disabled' );
 
 
 
208
  } else {
209
  counterpart.removeAttr( 'disabled' );
 
 
210
  }
211
  }
46
  });
47
 
48
  // toggle single display condition checkboxes that have a counterpart
49
+ $(document).on('click', '.advads-conditions-single input[type="checkbox"]', function () {
50
+ advads_toggle_single_display_condition_checkbox( this );
51
+ // update buttons
52
+ $('.advads-conditions-terms-buttons label').button('refresh');
53
  });
54
  // toggle single display condition checkboxes that have a counterpart on load
55
  $( '.advads-conditions-single input[type="checkbox"]' ).each(function () {
56
  advads_toggle_single_display_condition_checkbox( this );
57
  });
58
+ // activate buttons
59
+ $('.advads-conditions-terms-buttons').buttonset();
60
+
61
+ $(document).on('click', '.advads-conditions-terms-buttons .button', function (e) {
62
+ $(this).remove();
63
+ });
64
+ // display input field to search for terms
65
+ $( '.advads-conditions-terms-show-search' ).click(function (e) {
66
+ e.preventDefault();
67
+ // display input field
68
+ $(this).siblings('.advads-conditions-terms-search').show().focus();
69
+ $(this).next('br').show();
70
+ $(this).hide();
71
+ });
72
+ // register autocomplete to display condition posts
73
+ var response = [];
74
+ if($( ".advads-conditions-terms-search" ).length){
75
+ $( ".advads-conditions-terms-search" ).each(function(){
76
+ var self = this;
77
+ $(this).autocomplete({
78
+ source: function(request, callback){
79
+ // var searchField = request.term;
80
+ advads_term_search(self, callback);
81
+ },
82
+ minLength: 2,
83
+ select: function( event, ui ) {
84
+ // append new line with input fields
85
+ $( '<label class="button">' + ui.item.label + '<input type="hidden" name="advanced_ad[conditions]['+ self.dataset.group +']['+ self.dataset.includeType +'][]" value="' + ui.item.value + '"></label>' ).appendTo( $(self).siblings('.advads-conditions-terms-buttons'));
86
+
87
+ // show / hide other elements
88
+ // $( '#advads-display-conditions-individual-post' ).hide();
89
+ // $( '.advads-conditions-postids-list .show-search a' ).show();
90
+ },
91
+ close: function( event, ui ) {
92
+ $(self).val( '' );
93
+ }
94
+ });
95
+ });
96
+ };
97
  // display input field to search for post, page, etc.
98
  $( '.advads-conditions-postids-list .show-search a' ).click(function (e) {
99
  e.preventDefault();
135
 
136
  });
137
 
138
+ /**
139
+ * callback for term search autocomplete
140
+ *
141
+ * @param {type} search term
142
+ * @param {type} callback
143
+ * @returns {obj} json object with labels and values
144
+ */
145
+ function advads_term_search(field, callback) {
146
+
147
+ // return ['post', 'poster'];
148
+ var query = {
149
+ action: 'advads-terms-search',
150
+ };
151
+
152
+ query.search = field.value;
153
+ query.tax = field.dataset.tagName;
154
+
155
+ var querying = true;
156
+
157
+ var results = {};
158
+ jQuery.post(ajaxurl, query, function (r) {
159
+ querying = false;
160
+ var results = [];
161
+ if(r){
162
+ r.map(function(element, index){
163
+ results[index] = {
164
+ value: element.term_id,
165
+ label: element.name
166
+ };
167
+ });
168
+ }
169
+ callback( results );
170
+ }, 'json');
171
+ }
172
+
173
  /**
174
  * callback for post search autocomplete
175
  *
203
  }
204
  callback( results );
205
  }, 'json');
 
 
 
 
206
  }
207
 
208
  /**
277
  if (jQuery( checkbox ).is( ':checked' )) {
278
  counterpart.attr( 'checked', false );
279
  counterpart.attr( 'disabled', 'disabled' );
280
+ // mark label
281
+ console.log(jQuery('label[for="'+counterpart.attr('id')+'"]'));
282
+ jQuery('label[for="'+counterpart.attr('id')+'"]').addClass('ui-button-disabled').addClass('ui-state-disabled');
283
  } else {
284
  counterpart.removeAttr( 'disabled' );
285
+ jQuery('label[for="'+counterpart.attr('id')+'"]').removeClass('ui-button-disabled');
286
+ jQuery('label[for="'+counterpart.attr('id')+'"]').removeClass('ui-state-disabled');
287
  }
288
  }
admin/class-advanced-ads-admin.php CHANGED
@@ -91,6 +91,10 @@ class Advanced_Ads_Admin {
91
  // save ads post type
92
  add_action( 'save_post', array($this, 'save_ad') );
93
 
 
 
 
 
94
  // handling (ad) lists
95
  add_filter( 'request', array($this, 'ad_list_request') ); // order ads by title, not ID
96
  add_filter( 'manage_advanced_ads_posts_columns', array($this, 'ad_list_columns_head') ); // extra column
@@ -568,6 +572,61 @@ class Advanced_Ads_Admin {
568
  $ad->save();
569
  }
570
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571
  /**
572
  * get action from the params
573
  *
91
  // save ads post type
92
  add_action( 'save_post', array($this, 'save_ad') );
93
 
94
+ // ad updated messages
95
+ add_filter( 'post_updated_messages', array($this, 'ad_update_messages'));
96
+ add_filter( 'bulk_post_updated_messages', array($this, 'ad_bulk_update_messages'), 10, 2);
97
+
98
  // handling (ad) lists
99
  add_filter( 'request', array($this, 'ad_list_request') ); // order ads by title, not ID
100
  add_filter( 'manage_advanced_ads_posts_columns', array($this, 'ad_list_columns_head') ); // extra column
572
  $ad->save();
573
  }
574
 
575
+ /**
576
+ * edit ad update messages
577
+ *
578
+ * @since 1.4.7
579
+ * @param arr $messages existing post update messages
580
+ * @return arr $messages
581
+ *
582
+ * @see wp-admin/edit-form-advanced.php
583
+ */
584
+ public function ad_update_messages(array $messages){
585
+ $post = get_post();
586
+
587
+ $messages[Advanced_Ads::POST_TYPE_SLUG] = array(
588
+ 0 => '', // Unused. Messages start at index 1.
589
+ 1 => __( 'Ad updated.', ADVADS_SLUG ),
590
+ 4 => __( 'Ad updated.', ADVADS_SLUG ),
591
+ /* translators: %s: date and time of the revision */
592
+ 5 => isset( $_GET['revision'] ) ? sprintf( __( 'Ad restored to revision from %s', ADVADS_SLUG ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
593
+ 6 => __( 'Ad published.', ADVADS_SLUG ),
594
+ 7 => __( 'Ad saved.', ADVADS_SLUG ),
595
+ 8 => __( 'Ad submitted.', ADVADS_SLUG ),
596
+ 9 => sprintf(
597
+ __( 'Ad scheduled for: <strong>%1$s</strong>.', ADVADS_SLUG ),
598
+ // translators: Publish box date format, see http://php.net/date
599
+ date_i18n( __( 'M j, Y @ G:i', ADVADS_SLUG ), strtotime( $post->post_date ) )
600
+ ),
601
+ 10 => __( 'Ad draft updated.', ADVADS_SLUG )
602
+ );
603
+ return $messages;
604
+ }
605
+
606
+ /**
607
+ * edit ad bulk update messages
608
+ *
609
+ * @since 1.4.7
610
+ * @param arr $messages existing bulk update messages
611
+ * @param arr $counts numbers of updated ads
612
+ * @return arr $messages
613
+ *
614
+ * @see wp-admin/edit.php
615
+ */
616
+ public function ad_bulk_update_messages(array $messages, array $counts){
617
+ $post = get_post();
618
+
619
+ $messages[Advanced_Ads::POST_TYPE_SLUG] = array(
620
+ 'updated' => _n( '%s ad updated.', '%s ads updated.', $counts['updated'] ),
621
+ 'locked' => _n( '%s ad not updated, somebody is editing it.', '%s ads not updated, somebody is editing them.', $counts['locked'] ),
622
+ 'deleted' => _n( '%s ad permanently deleted.', '%s ads permanently deleted.', $counts['deleted'] ),
623
+ 'trashed' => _n( '%s ad moved to the Trash.', '%s ads moved to the Trash.', $counts['trashed'] ),
624
+ 'untrashed' => _n( '%s ad restored from the Trash.', '%s ads restored from the Trash.', $counts['untrashed'] ),
625
+ );
626
+
627
+ return $messages;
628
+ }
629
+
630
  /**
631
  * get action from the params
632
  *
admin/includes/class-display-condition-callbacks.php CHANGED
@@ -84,26 +84,9 @@ class AdvAds_Display_Condition_Callbacks {
84
 
85
  ?><h4><label class="advads-conditions-all"><input type="checkbox" name="advanced_ad[conditions][categoryids][all]" value="1" <?php checked( $_all, 1 ); ?>><?php
86
  _e( 'Display for all <strong>categories, tags and taxonomies</strong>.', ADVADS_SLUG ); ?></label></h4><?php
87
- $taxonomies = get_taxonomies( array('public' => true, 'publicly_queryable' => true), 'objects', 'or' );
88
  ?><div class="advads-conditions-single"><h5 class="header"><?php _e( 'Display here', ADVADS_SLUG ); ?></h5><p class="description"><?php _e( 'Choose terms from public categories, tags and other taxonomies a post must belong to in order to have ads.', ADVADS_SLUG ); ?></p>
89
- <table><?php
90
- foreach ( $taxonomies as $_tax ):
91
- if ( $_tax->name === 'advanced_ads_groups' ) { continue; // exclude adv ads groups
92
- }
93
- // limit the number of terms so many terms don’t break the admin page
94
- $max_terms = absint( apply_filters( 'advanced-ads-admin-max-terms', 200 ) );
95
- $terms = get_terms( $_tax->name, array('number' => $max_terms) );
96
-
97
- if ( ! empty( $terms ) && ! is_wp_error( $terms ) ):
98
- ?><tr><th><?php echo $_tax->label; ?></th><?php
99
- ?><td><?php
100
- foreach ( $terms as $_term ) :
101
- ?><label><input type="checkbox" name="advanced_ad[conditions][categoryids][include][]" value="<?php echo $_term->term_id; ?>" <?php
102
- checked( in_array( $_term->term_id, $_includes ), true ); ?>><?php echo $_term->name; ?></label><?php
103
- endforeach;
104
- ?></td></tr><?php
105
- endif;
106
- endforeach;
107
  ?></table><?php
108
 
109
  if ( ! empty($ad->conditions['categoryids']['exclude']) ){
@@ -120,26 +103,68 @@ if ( ! empty($ad->conditions['categoryids']['exclude']) ){
120
 
121
  ?><h5 class="header"><?php _e( 'Hide from here', ADVADS_SLUG ); ?></h5><p class="description"><?php _e( 'Choose the terms from public categories, tags and other taxonomies a post must belong to hide the ad from it.', ADVADS_SLUG ); ?></p>
122
  <table><?php
123
- foreach ( $taxonomies as $_tax ):
124
- if ( $_tax->name === 'advanced_ads_groups' ) { continue; // exclude adv ads groups
125
- }
126
- // limit the number of terms so many terms don’t break the admin page
127
- $max_terms = absint( apply_filters( 'advanced-ads-admin-max-terms', 200 ) );
128
- $terms = get_terms( $_tax->name, array('number' => $max_terms) );
129
-
130
- if ( ! empty( $terms ) && ! is_wp_error( $terms ) ):
131
- ?><tr><th><?php echo $_tax->label; ?></th><?php
132
- ?><td><?php
133
- foreach ( $terms as $_term ) :
134
- ?><label><input type="checkbox" name="advanced_ad[conditions][categoryids][exclude][]" value="<?php echo $_term->term_id; ?>" <?php
135
- checked( in_array( $_term->term_id, $_excludes ), true ); ?>><?php echo $_term->name; ?></label><?php
136
- endforeach;
137
- ?></td></tr><?php
138
- endif;
139
- endforeach;
140
  ?></table></div><?php
141
  }
142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  /**
144
  * render display condition for taxonomy/term archive pages
145
  *
@@ -174,23 +199,7 @@ checked( in_array( $_term->term_id, $_excludes ), true ); ?>><?php echo $_term->
174
  ?><div class="advads-conditions-single"><table>
175
  <p class="description"><?php _e( 'Choose the terms from public categories, tags and other taxonomies on which\'s archive page ads can appear', ADVADS_SLUG ); ?></p>
176
  <table><?php
177
- foreach ( $taxonomies as $_tax ):
178
- if ( $_tax->name === 'advanced_ads_groups' ) { continue; // exclude adv ads groups
179
- }
180
- // limit the number of terms so many terms don’t break the admin page
181
- $max_terms = absint( apply_filters( 'advanced-ads-admin-max-terms', 200 ) );
182
- $terms = get_terms( $_tax->name, array('number' => $max_terms) );
183
-
184
- if ( ! empty( $terms ) && ! is_wp_error( $terms ) ):
185
- ?><tr><th><?php echo $_tax->label; ?></th><?php
186
- ?><td><?php
187
- foreach ( $terms as $_term ) :
188
- ?><label><input type="checkbox" name="advanced_ad[conditions][categoryarchiveids][include][]" value="<?php echo $_term->term_id; ?>" <?php
189
- checked( in_array( $_term->term_id, $_includes ), true ); ?>><?php echo $_term->name; ?></label><?php
190
- endforeach;
191
- ?></td></tr><?php
192
- endif;
193
- endforeach;
194
  ?></table><?php
195
 
196
  if ( ! empty($ad->conditions['categoryarchiveids']['exclude']) ){
@@ -207,24 +216,8 @@ if ( ! empty($ad->conditions['categoryarchiveids']['exclude']) ){
207
 
208
  ?><h5 class="header"><?php _e( 'Hide from here', ADVADS_SLUG ); ?></h5><p class="description"><?php _e( 'Choose the terms from public categories, tags and other taxonomies on which\'s archive pages ads are hidden.', ADVADS_SLUG ); ?></p>
209
  <table><?php
210
- foreach ( $taxonomies as $_tax ):
211
- if ( $_tax->name === 'advanced_ads_groups' ) { continue; // exclude adv ads groups
212
- }
213
- // limit the number of terms so many terms don’t break the admin page
214
- $max_terms = absint( apply_filters( 'advanced-ads-admin-max-terms', 200 ) );
215
- $terms = get_terms( $_tax->name, array('number' => $max_terms) );
216
-
217
- if ( ! empty( $terms ) && ! is_wp_error( $terms ) ):
218
- ?><tr><th><?php echo $_tax->label; ?></th><?php
219
- ?><td><?php
220
- foreach ( $terms as $_term ) :
221
- ?><label><input type="checkbox" name="advanced_ad[conditions][categoryarchiveids][exclude][]" value="<?php echo $_term->term_id; ?>" <?php
222
- checked( in_array( $_term->term_id, $_excludes ), true ); ?>><?php echo $_term->name; ?></label><?php
223
- endforeach;
224
- ?></td></tr><?php
225
- endif;
226
- endforeach;
227
- ?></table></div><?php
228
  }
229
 
230
  /**
84
 
85
  ?><h4><label class="advads-conditions-all"><input type="checkbox" name="advanced_ad[conditions][categoryids][all]" value="1" <?php checked( $_all, 1 ); ?>><?php
86
  _e( 'Display for all <strong>categories, tags and taxonomies</strong>.', ADVADS_SLUG ); ?></label></h4><?php
 
87
  ?><div class="advads-conditions-single"><h5 class="header"><?php _e( 'Display here', ADVADS_SLUG ); ?></h5><p class="description"><?php _e( 'Choose terms from public categories, tags and other taxonomies a post must belong to in order to have ads.', ADVADS_SLUG ); ?></p>
88
+ <table><?php
89
+ self::_display_taxonomy_term_list($_includes, 'include', 'advanced_ad[conditions][categoryids][include][]', 'categoryids');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  ?></table><?php
91
 
92
  if ( ! empty($ad->conditions['categoryids']['exclude']) ){
103
 
104
  ?><h5 class="header"><?php _e( 'Hide from here', ADVADS_SLUG ); ?></h5><p class="description"><?php _e( 'Choose the terms from public categories, tags and other taxonomies a post must belong to hide the ad from it.', ADVADS_SLUG ); ?></p>
105
  <table><?php
106
+ self::_display_taxonomy_term_list($_excludes, 'exclude', 'advanced_ad[conditions][categoryids][exclude][]', 'categoryids');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  ?></table></div><?php
108
  }
109
 
110
+ /**
111
+ * render taxonomy term list with options
112
+ *
113
+ * @since 1.4.7
114
+ * @param arr $checked array with ids of checked terms
115
+ * @param str $includetype is this an include or exclude type of setting
116
+ * @param str $inputname value of the name attribute of the input tag
117
+ * @param str $group group of the values
118
+ */
119
+ private static function _display_taxonomy_term_list($checked = array(), $includetype = 'include', $inputname = '', $group = ''){
120
+ $taxonomies = get_taxonomies( array('public' => true, 'publicly_queryable' => true), 'objects', 'or' );
121
+ foreach ( $taxonomies as $_tax ):
122
+ if ( $_tax->name === 'advanced_ads_groups' ) { continue; // exclude adv ads groups
123
+ }
124
+ // limit the number of terms so many terms don’t break the admin page
125
+ $max_terms = absint( apply_filters( 'advanced-ads-admin-max-terms', 50 ) );
126
+ $terms = get_terms( $_tax->name, array('hide_empty' => false, 'number' => $max_terms) );
127
+
128
+ if ( ! empty( $terms ) && ! is_wp_error( $terms ) ):
129
+ ?><tr><th><?php echo $_tax->label; ?></th><?php
130
+ ?><td><?php
131
+ // display search field if the term limit is reached
132
+ if(count($terms) == $max_terms) :
133
+ ?><div class="advads-conditions-terms-buttons" title="click to remove"><?php
134
+
135
+ // query active terms
136
+ if(is_array($checked) && count($checked)){
137
+ $args = array('hide_empty' => false);
138
+ $args['include'] = $checked;
139
+ $checked_terms = get_terms($_tax->name, $args);
140
+
141
+ foreach ( $checked_terms as $_checked_term ) :
142
+ ?><label class="button"><?php echo $_checked_term->name;
143
+ ?><input type="hidden" name="<?php echo $inputname; ?>" value="<?php
144
+ echo $_checked_term->term_id; ?>"></label><?php
145
+ endforeach;
146
+ }
147
+
148
+ ?></div><span class="advads-conditions-terms-show-search button" title="<?php
149
+ _ex('add more terms', 'display the terms search field on ad edit page', ADVADS_SLUG);
150
+ ?>">+</span><span class="description"><?php _e('add more terms', ADVADS_SLUG);
151
+ ?></span><br/><input type="text" class="advads-conditions-terms-search" data-tag-name="<?php echo $_tax->name;
152
+ ?>" data-include-type="<?php echo $includetype; ?>" data-group="<?php echo $group; ?>" placeholder="<?php
153
+ _e('term name or id', ADVADS_SLUG); ?>"/><?php
154
+ else :
155
+ ?><div class="advads-conditions-terms-buttons"><?php
156
+ foreach ( $terms as $_term ) :
157
+ $field_id = "advads-conditions-terms-$includetype-$group-$_term->term_id";
158
+ ?><input type="checkbox" id="<?php echo $field_id; ?>" name="<?php echo $inputname; ?>" value="<?php echo $_term->term_id; ?>" <?php
159
+ checked( in_array( $_term->term_id, $checked ), true ); ?>><label for="<?php echo $field_id; ?>"><?php echo $_term->name; ?></label><?php
160
+ endforeach;
161
+ ?></div><?php
162
+ endif;
163
+ ?></td></tr><?php
164
+ endif;
165
+ endforeach;
166
+ }
167
+
168
  /**
169
  * render display condition for taxonomy/term archive pages
170
  *
199
  ?><div class="advads-conditions-single"><table>
200
  <p class="description"><?php _e( 'Choose the terms from public categories, tags and other taxonomies on which\'s archive page ads can appear', ADVADS_SLUG ); ?></p>
201
  <table><?php
202
+ self::_display_taxonomy_term_list($_includes, 'include', 'advanced_ad[conditions][categoryarchiveids][include][]', 'categoryarchiveids');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  ?></table><?php
204
 
205
  if ( ! empty($ad->conditions['categoryarchiveids']['exclude']) ){
216
 
217
  ?><h5 class="header"><?php _e( 'Hide from here', ADVADS_SLUG ); ?></h5><p class="description"><?php _e( 'Choose the terms from public categories, tags and other taxonomies on which\'s archive pages ads are hidden.', ADVADS_SLUG ); ?></p>
218
  <table><?php
219
+ self::_display_taxonomy_term_list($_excludes, 'exclude', 'advanced_ad[conditions][categoryarchiveids][exclude][]', 'categoryarchiveids');
220
+ ?></table></div><?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  }
222
 
223
  /**
admin/includes/class-overview-widgets.php CHANGED
@@ -15,7 +15,7 @@ class AdvAds_Overview_Widgets_Callbacks {
15
  * @param arr $columns columns array
16
  * @return int $columns
17
  */
18
- function one_column_overview_page( $columns ) {
19
  // $columns['toplevel_page_advanced-ads'] = 1;
20
  return $columns;
21
  }
15
  * @param arr $columns columns array
16
  * @return int $columns
17
  */
18
+ public static function one_column_overview_page( $columns ) {
19
  // $columns['toplevel_page_advanced-ads'] = 1;
20
  return $columns;
21
  }
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: http://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.4.6
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: http://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.4.7
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
classes/ad.php CHANGED
@@ -526,17 +526,17 @@ class Advads_Ad {
526
  */
527
  public function can_display_by_expiry_date(){
528
 
529
- if ( empty($this->options['expiry_date']) ) { return true; }
530
 
531
- $expiry_date = absint( $this->options( 'expiry_date' ) );
532
 
533
- if ( $expiry_date == 0 ) { return true; }
534
 
535
  // create blog specific timestamp
536
- $blog_expiry_date = $expiry_date + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
537
 
538
  // check blog time against current time
539
- if ( $blog_expiry_date <= time() ) { return false; }
540
 
541
  return true;
542
  }
526
  */
527
  public function can_display_by_expiry_date(){
528
 
529
+ if ( !isset($this->options['expiry_date']) ) { return true; }
530
 
531
+ $ad_expiry_date = absint($this->options( 'expiry_date' ));
532
 
533
+ if ( $ad_expiry_date == 0 ) { return true; }
534
 
535
  // create blog specific timestamp
536
+ $blog_expiry_date = time() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
537
 
538
  // check blog time against current time
539
+ if ( $blog_expiry_date >= $ad_expiry_date ) { return false; }
540
 
541
  return true;
542
  }
classes/ad_ajax_callbacks.php CHANGED
@@ -24,6 +24,7 @@ class Advads_Ad_Ajax_Callbacks {
24
  add_action( 'wp_ajax_load_ad_parameters_metabox', array( $this, 'load_ad_parameters_metabox' ) );
25
  add_action( 'wp_ajax_advads-ad-group-ads-form', array( $this, 'load_ad_groups_ad_form' ) );
26
  add_action( 'wp_ajax_advads-ad-group-ads-form-save', array( $this, 'save_ad_groups_ad_form' ) );
 
27
 
28
  }
29
 
@@ -101,4 +102,27 @@ class Advads_Ad_Ajax_Callbacks {
101
  die();
102
  }
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  }
24
  add_action( 'wp_ajax_load_ad_parameters_metabox', array( $this, 'load_ad_parameters_metabox' ) );
25
  add_action( 'wp_ajax_advads-ad-group-ads-form', array( $this, 'load_ad_groups_ad_form' ) );
26
  add_action( 'wp_ajax_advads-ad-group-ads-form-save', array( $this, 'save_ad_groups_ad_form' ) );
27
+ add_action( 'wp_ajax_advads-terms-search', array( $this, 'search_terms' ) );
28
 
29
  }
30
 
102
  die();
103
  }
104
 
105
+ /**
106
+ * search terms belonging to a specific taxonomy
107
+ *
108
+ * @sinc 1.4.7
109
+ */
110
+ public function search_terms(){
111
+ $args = array();
112
+
113
+ $taxonomy = $_POST['tax'];
114
+
115
+ $args = array('hide_empty' => false, 'number' => 20);
116
+
117
+ if ( isset( $_POST['search'] ) && $_POST['search'] != '' )
118
+ $args['search'] = $_POST['search'];
119
+
120
+ $results = get_terms( $taxonomy, $args );
121
+ // $results = _WP_Editors::wp_link_query( $args );
122
+
123
+ echo wp_json_encode( $results );
124
+ echo "\n";
125
+
126
+ wp_die();
127
+ }
128
  }
includes/autoloader.php CHANGED
@@ -12,20 +12,20 @@
12
  */
13
  class Advads_Autoloader {
14
 
15
- public static function load($classname) {
16
- // to lower case
17
- $classname = strtolower($classname);
18
 
19
- // strip "advads_" prefix
20
- $classname = str_replace('advads_', '', $classname);
21
 
22
- $filepath = ADVADS_BASE_PATH . 'classes' . DIRECTORY_SEPARATOR . $classname . '.php';
23
 
24
- if (file_exists($filepath)) {
25
- require_once $filepath;
26
- } else {
27
- return false;
28
- }
29
- }
30
 
31
  }
12
  */
13
  class Advads_Autoloader {
14
 
15
+ public static function load($classname) {
16
+ // to lower case
17
+ $classname = strtolower( $classname );
18
 
19
+ // strip "advads_" prefix
20
+ $classname = str_replace( 'advads_', '', $classname );
21
 
22
+ $filepath = ADVADS_BASE_PATH . 'classes' . DIRECTORY_SEPARATOR . $classname . '.php';
23
 
24
+ if ( file_exists( $filepath ) ) {
25
+ require_once $filepath;
26
+ } else {
27
+ return false;
28
+ }
29
+ }
30
 
31
  }
languages/advanced-ads-de_DE.mo CHANGED
Binary file
languages/advanced-ads-de_DE.po CHANGED
@@ -1,1800 +1,1409 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Advanced Ads v1.4.2\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
5
- "POT-Creation-Date: 2015-01-28 20:07+0100\n"
6
- "PO-Revision-Date: 2015-03-21 20:32:11+0000\n"
7
- "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: Poedit 1.6.5\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: admin/class-advanced-ads-admin.php:196
24
- #@ advanced-ads
25
- msgid "Overview"
26
- msgstr "Übersicht"
27
-
28
- #. translators: plugin header field 'Name'
29
- #: admin/class-advanced-ads-admin.php:196
30
- #: advanced-ads.php:0
31
- #: classes/widget.php:21
32
- #@ advanced-ads
33
- msgid "Advanced Ads"
34
- msgstr "Advanced Ads"
35
-
36
- #: admin/class-advanced-ads-admin.php:200
37
- #: admin/includes/class-ad-groups-list-table.php:191
38
- #: admin/views/placements.php:91
39
- #: classes/widget.php:66
40
- #: public/class-advanced-ads.php:550
41
- #@ advanced-ads
42
- msgid "Ads"
43
- msgstr "Anzeigen"
44
-
45
- #: admin/class-advanced-ads-admin.php:204
46
- #: admin/views/placements.php:84
47
- #: classes/widget.php:59
48
- #@ advanced-ads
49
- msgid "Ad Groups"
50
- msgstr "Anzeigen-Gruppen"
51
-
52
- #: admin/class-advanced-ads-admin.php:204
53
- #: public/class-advanced-ads.php:524
54
- #@ advanced-ads
55
- msgid "Groups"
56
- msgstr "Gruppen"
57
-
58
- #: admin/class-advanced-ads-admin.php:209
59
- #: admin/views/debug.php:19
60
- #@ advanced-ads
61
- msgid "Ad Placements"
62
- msgstr "Anzeigen-Platzierungen"
63
-
64
- #: admin/class-advanced-ads-admin.php:209
65
- #: admin/views/placements.php:47
66
- #@ advanced-ads
67
- msgid "Placements"
68
- msgstr "Platzierungen"
69
-
70
- #: admin/class-advanced-ads-admin.php:213
71
- #@ advanced-ads
72
- msgid "Advanced Ads Settings"
73
- msgstr "Advanced-Ads-Einstellungen"
74
-
75
- #: admin/class-advanced-ads-admin.php:213
76
- #: admin/class-advanced-ads-admin.php:402
77
- #: admin/views/debug.php:13
78
- #@ advanced-ads
79
- msgid "Settings"
80
- msgstr "Einstellungen"
81
-
82
- #: admin/class-advanced-ads-admin.php:216
83
- #@ advanced-ads
84
- msgid "Advanced Ads Debugging"
85
- msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
86
-
87
- #: admin/class-advanced-ads-admin.php:216
88
- #@ advanced-ads
89
- msgid "Debug"
90
- msgstr "Debug"
91
-
92
- #: admin/class-advanced-ads-admin.php:271
93
- #@ advanced-ads
94
- msgid "Placements updated"
95
- msgstr "Platzierungen aktualisiert"
96
-
97
- #: admin/class-advanced-ads-admin.php:315
98
- #: admin/class-advanced-ads-admin.php:342
99
- #@ advanced-ads
100
- msgid "Sorry, you are not allowed to access this feature."
101
- msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
102
-
103
- #: admin/class-advanced-ads-admin.php:328
104
- #@ advanced-ads
105
- msgid "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was deleted?"
106
- msgstr "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. Vielleicht wurde es gelöscht?"
107
-
108
- #: admin/class-advanced-ads-admin.php:429
109
- #@ advanced-ads
110
- msgid "Ad Type"
111
- msgstr "Anzeigen-Typ"
112
-
113
- #: admin/class-advanced-ads-admin.php:432
114
- #@ advanced-ads
115
- msgid "Ad Parameters"
116
- msgstr "Anzeigen-Parameter"
117
-
118
- #: admin/class-advanced-ads-admin.php:435
119
- #@ advanced-ads
120
- msgid "Layout / Output"
121
- msgstr "Layout / Ausgabe"
122
-
123
- #: admin/class-advanced-ads-admin.php:438
124
- #@ advanced-ads
125
- msgid "Display Conditions"
126
- msgstr "Anzeige-Bedingungen"
127
-
128
- #: admin/class-advanced-ads-admin.php:441
129
- #@ advanced-ads
130
- msgid "Visitor Conditions"
131
- msgstr "Besucher-Bedingungen"
132
-
133
- #: admin/class-advanced-ads-admin.php:603
134
- #@ advanced-ads
135
- msgid "General"
136
- msgstr "Allgemein"
137
-
138
- #: admin/class-advanced-ads-admin.php:611
139
- #@ advanced-ads
140
- msgid "Disable ads"
141
- msgstr "Anzeigen auf dieser Seite deaktivieren."
142
-
143
- #: admin/class-advanced-ads-admin.php:619
144
- #@ advanced-ads
145
- msgid "Hide ads for logged in users"
146
- msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
147
-
148
- #: admin/class-advanced-ads-admin.php:627
149
- #@ advanced-ads
150
- msgid "Use advanced JavaScript"
151
- msgstr "Advanced-JavaScript benutzen"
152
-
153
- #: admin/class-advanced-ads-admin.php:685
154
- #@ advanced-ads
155
- msgid "(display to all)"
156
- msgstr "(für alle sichtbar)"
157
-
158
- #: admin/class-advanced-ads-admin.php:686
159
- #@ advanced-ads
160
- msgid "Subscriber"
161
- msgstr "Abonnent"
162
-
163
- #: admin/class-advanced-ads-admin.php:687
164
- #@ advanced-ads
165
- msgid "Contributor"
166
- msgstr "Mitarbeiter"
167
-
168
- #: admin/class-advanced-ads-admin.php:688
169
- #@ advanced-ads
170
- msgid "Author"
171
- msgstr "Autor"
172
-
173
- #: admin/class-advanced-ads-admin.php:689
174
- #@ advanced-ads
175
- msgid "Editor"
176
- msgstr "Redakteur"
177
-
178
- #: admin/class-advanced-ads-admin.php:690
179
- #@ advanced-ads
180
- msgid "Admin"
181
- msgstr "Admin"
182
-
183
- #: admin/class-advanced-ads-admin.php:698
184
- #@ advanced-ads
185
- msgid "Choose the lowest role a user must have in order to not see any ads."
186
- msgstr "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine Anzeigen zu sehen."
187
-
188
- #: admin/class-advanced-ads-admin.php:711
189
- #, php-format
190
- #@ advanced-ads
191
- msgid "Only enable this if you can and want to use the advanced JavaScript functions described <a href=\"%s\">here</a>."
192
- msgstr "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</a> beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
193
-
194
- #: admin/class-advanced-ads-admin.php:741
195
- #@ advanced-ads
196
- msgid "Ad Details"
197
- msgstr "Anzeigeneinstellungen"
198
-
199
- #: admin/class-advanced-ads-admin.php:815
200
- #@ advanced-ads
201
- msgid "Ad Settings"
202
- msgstr "Anzeigen-Einstellungen"
203
-
204
- #: admin/class-advanced-ads-admin.php:889
205
- #: admin/views/overview.php:23
206
- #@ advanced-ads
207
- msgid "Ads Dashboard"
208
- msgstr "Anzeigen-Dashboard"
209
-
210
- #: admin/class-advanced-ads-admin.php:932
211
- #@ advanced-ads
212
- msgid "plugin manual and homepage"
213
- msgstr "Plugin-Anleitung und Homepage"
214
-
215
- #: admin/class-advanced-ads-admin.php:901
216
- #@ advanced-ads
217
- msgid "From the ad optimization universe"
218
- msgstr "Neues aus dem Anzeigen-Universum"
219
-
220
- #: admin/includes/class-ad-groups-list-table.php:57
221
- #, php-format
222
- #@ advanced-ads
223
- msgid "Select %s"
224
- msgstr "%s auswählen"
225
-
226
- #: admin/includes/class-ad-groups-list-table.php:94
227
- #, php-format
228
- #@ advanced-ads
229
- msgid "Edit &#8220;%s&#8221;"
230
- msgstr "#8220;%s&#8221; bearbeiten"
231
-
232
- #: admin/includes/class-ad-groups-list-table.php:99
233
- #: admin/includes/class-ad-groups-list-table.php:167
234
- #: public/class-advanced-ads.php:554
235
- #@ advanced-ads
236
- msgid "Edit"
237
- msgstr "Bearbeiten"
238
-
239
- #: admin/includes/class-ad-groups-list-table.php:108
240
- #@ default
241
- msgid "Delete"
242
- msgstr "Entfernen"
243
-
244
- #: admin/includes/class-ad-groups-list-table.php:162
245
- #@ advanced-ads
246
- msgid "Ad weight"
247
- msgstr "Anzeigengewichtung"
248
-
249
- #: admin/includes/class-ad-groups-list-table.php:188
250
- #: admin/views/placements.php:40
251
- #: admin/views/placements.php:64
252
- #@ advanced-ads
253
- msgid "ID"
254
- msgstr "ID"
255
-
256
- #: admin/includes/class-ad-groups-list-table.php:189
257
- #@ advanced-ads
258
- msgid "Ad Group"
259
- msgstr "Anzeigengruppe"
260
-
261
- #: admin/includes/class-ad-groups-list-table.php:190
262
- #@ advanced-ads
263
- msgid "Slug"
264
- msgstr "Slug"
265
-
266
- #: admin/includes/class-display-condition-callbacks.php:28
267
- #@ advanced-ads
268
- msgid "Display on all public <strong>post types</strong>."
269
- msgstr "In allen öffentlichen <strong>Beitragstypen</strong> anzeigen."
270
-
271
- #: admin/includes/class-display-condition-callbacks.php:31
272
- #: includes/array_ad_conditions.php:34
273
- #@ advanced-ads
274
- msgid "Choose the public post types on which to display the ad."
275
- msgstr "Wählen Sie aus den öffentlichen Beitragstypen jene aus, bei denen die Anzeige erscheinen soll."
276
-
277
- #: admin/includes/class-display-condition-callbacks.php:86
278
- #@ advanced-ads
279
- msgid "Display for all <strong>categories, tags and taxonomies</strong>."
280
- msgstr "In allen <strong>Kategorien, Tags und Taxonomien</strong> anzeigen."
281
-
282
- #: admin/includes/class-display-condition-callbacks.php:88
283
- #@ advanced-ads
284
- msgid "Display here"
285
- msgstr "Hier anzeigen"
286
-
287
- #: admin/includes/class-display-condition-callbacks.php:88
288
- #@ advanced-ads
289
- msgid "Choose terms from public categories, tags and other taxonomies a post must belong to in order to have ads."
290
- msgstr "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus, zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
291
-
292
- #: admin/includes/class-display-condition-callbacks.php:121
293
- #: admin/includes/class-display-condition-callbacks.php:208
294
- #@ advanced-ads
295
- msgid "Hide from here"
296
- msgstr "Hier ausblenden"
297
-
298
- #: admin/includes/class-display-condition-callbacks.php:121
299
- #@ advanced-ads
300
- msgid "Choose the terms from public categories, tags and other taxonomies a post must belong to hide the ad from it."
301
- msgstr "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus, zu denen ein Beitrag gehören muss, damit auf ihm KEINE Anzeigen erscheinen."
302
-
303
- #: admin/includes/class-display-condition-callbacks.php:172
304
- #@ advanced-ads
305
- msgid "Display on all <strong>category archive pages</strong>."
306
- msgstr "In allen <strong>Kategorie-Archiven</strong> anzeigen."
307
-
308
- #: admin/includes/class-display-condition-callbacks.php:175
309
- #@ advanced-ads
310
- msgid "Choose the terms from public categories, tags and other taxonomies on which's archive page ads can appear"
311
- msgstr "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus, auf deren Übersichtsseiten Anzeigen erscheinen können."
312
-
313
- #: admin/includes/class-display-condition-callbacks.php:208
314
- #@ advanced-ads
315
- msgid "Choose the terms from public categories, tags and other taxonomies on which's archive pages ads are hidden."
316
- msgstr "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus, auf deren Übersichtsseiten KEINE Anzeigen erscheinen sollen."
317
-
318
- #: admin/includes/class-display-condition-callbacks.php:246
319
- #@ advanced-ads
320
- msgid "Display an all <strong>individual posts, pages</strong> and public post type pages"
321
- msgstr "In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> anzeigen"
322
-
323
- #: admin/includes/class-display-condition-callbacks.php:249
324
- #: includes/array_ad_conditions.php:52
325
- #@ advanced-ads
326
- msgid "Choose on which individual posts, pages and public post type pages you want to display or hide ads."
327
- msgstr "Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf denen Anzeigen angezeigt oder ausgeblendet werden sollen."
328
-
329
- #: admin/includes/class-display-condition-callbacks.php:266
330
- #@ advanced-ads
331
- msgid "What should happen with ads on the list of individual posts below?"
332
- msgstr "Was soll mit Anzeigen auf den genannten Seiten passieren?"
333
-
334
- #: admin/includes/class-display-condition-callbacks.php:267
335
- #@ advanced-ads
336
- msgid "ignore the list"
337
- msgstr "Liste ignorieren"
338
-
339
- #: admin/includes/class-display-condition-callbacks.php:268
340
- #@ advanced-ads
341
- msgid "display the ad only there"
342
- msgstr "Die Anzeige nur hier einblenden"
343
-
344
- #: admin/includes/class-display-condition-callbacks.php:269
345
- #@ advanced-ads
346
- msgid "hide the ad here"
347
- msgstr "Die Anzeige hier ausblenden"
348
-
349
- #: admin/includes/class-display-condition-callbacks.php:277
350
- #@ advanced-ads
351
- msgid "Update warning"
352
- msgstr "Update-Warnung"
353
-
354
- #: admin/includes/class-display-condition-callbacks.php:278
355
- #@ advanced-ads
356
- msgid "Due to some conflicts before version 1.2.6, it is from now on only possible to choose either individual pages to include or exclude an ad, but not both with mixed settings. It seems you are still using mixed settings on this page. Please consider changing your setup for this ad."
357
- msgstr "Aufgrund einiger Konflikte vor Version 1.2.6 ist es von nun an nur möglich, entweder einzelne Seiten zu wählen zum Ein- oder Ausschließen von Anzeigen, aber nicht beides mit gemischten Einstellungen. Es scheint, dass Sie noch mit gemischten Einstellungen auf dieser Seite arbeiten. Bitte ändern Sie die Einstellung für diese Anzeige."
358
-
359
- #: admin/includes/class-display-condition-callbacks.php:279
360
- #@ advanced-ads
361
- msgid "Your old values are:"
362
- msgstr "Ihre alten Werte sind:"
363
-
364
- #: admin/includes/class-display-condition-callbacks.php:280
365
- #@ advanced-ads
366
- msgid "Post IDs the ad is displayed on:"
367
- msgstr "Beitrag-IDs auf denen die Anzeige angezeigt wird:"
368
-
369
- #: admin/includes/class-display-condition-callbacks.php:281
370
- #@ advanced-ads
371
- msgid "Post IDs the ad is hidden from:"
372
- msgstr "Beitrag-IDs auf denen die Anzeige nicht angezeigt wird:"
373
-
374
- #: admin/includes/class-display-condition-callbacks.php:282
375
- #@ advanced-ads
376
- msgid "Below you find the pages the ad is displayed on. If this is ok, just save the ad. If not, please update your settings."
377
- msgstr "Unten finden Sie die Seiten der sichtbaren Anzeige. Wenn das in Ordnung ist, dann sichern Sie die Anzeige. Wenn nicht, dann aktualisieren Sie bitte Ihre Einstellungen."
378
-
379
- #: admin/includes/class-display-condition-callbacks.php:322
380
- #@ advanced-ads
381
- msgid "new"
382
- msgstr "neu"
383
-
384
- #: admin/includes/class-display-condition-callbacks.php:324
385
- #@ advanced-ads
386
- msgid "type the title"
387
- msgstr "Geben Sie den Titel ein"
388
-
389
- #: admin/includes/class-list-table.php:186
390
- #@ default
391
- msgid "No items found."
392
- msgstr "Keine Elemente gefunden."
393
-
394
- #: admin/includes/class-list-table.php:310
395
- #@ default
396
- msgid "Bulk Actions"
397
- msgstr "Stapelverarbeitung"
398
-
399
- #: admin/includes/class-list-table.php:320
400
- #@ default
401
- msgid "Apply"
402
- msgstr "Anwenden"
403
-
404
- #: admin/includes/class-list-table.php:404
405
- #@ default
406
- msgid "Show all dates"
407
- msgstr "Alle Termine anzeigen"
408
-
409
- #. translators: 1: month name, 2: 4-digit year
410
- #: admin/includes/class-list-table.php:417
411
- #, php-format
412
- #@ default
413
- msgid "%1$s %2$d"
414
- msgstr "%1$s %2$d"
415
-
416
- #: admin/includes/class-list-table.php:433
417
- #@ default
418
- msgid "List View"
419
- msgstr "Listenansicht"
420
-
421
- #: admin/includes/class-list-table.php:434
422
- #@ default
423
- msgid "Excerpt View"
424
- msgstr "Teilansicht"
425
-
426
- #: admin/includes/class-list-table.php:460
427
- #, php-format
428
- #@ default
429
- msgid "%s pending"
430
- msgstr "%s anstehend"
431
-
432
- #: admin/includes/class-list-table.php:528
433
- #: admin/includes/class-list-table.php:943
434
- #, php-format
435
- #@ default
436
- msgid "1 item"
437
- msgid_plural "%s items"
438
- msgstr[0] "1 Artikel"
439
- msgstr[1] "%s Artikel"
440
-
441
- #: admin/includes/class-list-table.php:546
442
- #@ default
443
- msgid "Go to the first page"
444
- msgstr "Zur ersten Seite gehen"
445
-
446
- #: admin/includes/class-list-table.php:553
447
- #@ default
448
- msgid "Go to the previous page"
449
- msgstr "Zur vorherigen Seite"
450
-
451
- #: admin/includes/class-list-table.php:562
452
- #@ default
453
- msgid "Current page"
454
- msgstr "Aktuelle Seite"
455
-
456
- #: admin/includes/class-list-table.php:568
457
- #, php-format
458
- #@ default
459
- msgctxt "paging"
460
- msgid "%1$s of %2$s"
461
- msgstr "%1$s von %2$s"
462
-
463
- #: admin/includes/class-list-table.php:572
464
- #@ default
465
- msgid "Go to the next page"
466
- msgstr "Zur nächsten Seite gehen"
467
-
468
- #: admin/includes/class-list-table.php:579
469
- #@ default
470
- msgid "Go to the last page"
471
- msgstr "Zur letzten Seite gehen"
472
-
473
- #: admin/includes/class-list-table.php:715
474
- #@ default
475
- msgid "Select All"
476
- msgstr "Alle wählen"
477
-
478
- #: admin/views/ad-display-metabox.php:6
479
- #@ advanced-ads
480
- msgid "Choose where to display the ad and where to hide it."
481
- msgstr "Wählen Sie, wo die Anzeige sichtbar und wo sie versteckt ist."
482
-
483
- #: admin/views/ad-display-metabox.php:9
484
- #@ advanced-ads
485
- msgid "Display ad everywhere"
486
- msgstr "Anzeige überall zeigen"
487
-
488
- #: admin/views/ad-display-metabox.php:10
489
- #@ advanced-ads
490
- msgid "Set display conditions"
491
- msgstr "Anzeige-Bedingungen festlegen"
492
-
493
- #: admin/views/ad-display-metabox.php:14
494
- #@ advanced-ads
495
- msgid "If you want to display the ad everywhere, don't do anything here. "
496
- msgstr "Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu tun."
497
-
498
- #: admin/views/ad-display-metabox.php:15
499
- #@ advanced-ads
500
- msgid "The fewer conditions you enter, the better the performance will be."
501
- msgstr "Je weniger Bedingungen Sie eingeben, um so besser ist die Performance."
502
-
503
- #: admin/views/ad-display-metabox.php:16
504
- #, php-format
505
- #@ advanced-ads
506
- msgid "Learn more about display conditions from the <a href=\"%s\" target=\"_blank\">manual</a>."
507
- msgstr "Lernen Sie mehr über Anzeige-Bedingungen in der <a href=\"%s\" target=\"_blank\">Anleitung</a> (engl.)."
508
-
509
- #: admin/views/ad-display-metabox.php:32
510
- #@ advanced-ads
511
- msgid "Other conditions"
512
- msgstr "Andere Bedingungen"
513
-
514
- #: admin/views/ad-display-metabox.php:33
515
- #@ advanced-ads
516
- msgid "When using one of the two choices on checkbox conditions, the rule is binding. E.g. \"Front Page: show\" will result on the ad being only visible on the front page."
517
- msgstr "Bei Verwendung einer der beiden Checkbox-Bedingungen wird die Regel bindend. Wenn Sie z.B. die Funktion \"Home Page: Zeigen\" aktivieren, wird die Anzeige nur auf der ersten Seite zu sehen sein."
518
-
519
- #: admin/views/ad-display-metabox.php:38
520
- #@ advanced-ads
521
- msgid "show"
522
- msgstr "Zeigen"
523
-
524
- #: admin/views/ad-display-metabox.php:39
525
- #@ advanced-ads
526
- msgid "hide"
527
- msgstr "Verstecken"
528
-
529
- #: admin/views/ad-display-metabox.php:59
530
- #@ advanced-ads
531
- msgid "clear"
532
- msgstr "leeren"
533
-
534
- #: admin/views/ad-display-metabox.php:66
535
- #@ advanced-ads
536
- msgid "show debug output"
537
- msgstr "Zeige Ergebnis der Fehlerbehebung"
538
-
539
- #: admin/views/ad-display-metabox.php:67
540
- #@ advanced-ads
541
- msgid "Values saved for this ad in the database (post metas)"
542
- msgstr "Die Werte für diese Anzeige wurden in der Datenbank gespeichert (post metas)"
543
-
544
- #: admin/views/ad-group-ads-inline-form.php:10
545
- #@ advanced-ads
546
- msgctxt "ad group ads form"
547
- msgid "weight"
548
- msgstr "Gewicht"
549
-
550
- #: admin/views/ad-group-ads-inline-form.php:24
551
- #@ advanced-ads
552
- msgid "Cancel"
553
- msgstr "Abbruch"
554
-
555
- #: admin/views/ad-group-ads-inline-form.php:25
556
- #: admin/views/ad-group-edit.php:70
557
- #: classes/ad_type_content.php:68
558
- #: classes/ad_type_content.php:69
559
- #@ advanced-ads
560
- #@ default
561
- msgid "Update"
562
- msgstr "Update"
563
-
564
- #: admin/views/ad-group-ads-inline-form.php:33
565
- #@ advanced-ads
566
- msgid "There are no ads in this group"
567
- msgstr "Keine Anzeigen in dieser Gruppe"
568
-
569
- #: admin/views/ad-group-edit.php:14
570
- #@ default
571
- msgid "You did not select an item for editing."
572
- msgstr "Sie haben nichts zur Bearbeitung gewählt."
573
-
574
- #: admin/views/ad-group-edit.php:33
575
- #@ default
576
- msgctxt "Taxonomy Name"
577
- msgid "Name"
578
- msgstr "Name"
579
-
580
- #: admin/views/ad-group-edit.php:38
581
- #@ default
582
- msgctxt "Taxonomy Slug"
583
- msgid "Slug"
584
- msgstr "Slug"
585
-
586
- #: admin/views/ad-group-edit.php:40
587
- #@ advanced-ads
588
- msgid "An id-like string with only letters in lower case, numbers, and hyphens."
589
- msgstr "Ein ID-ähnlicher String mit nur Kleinbuchstaben, Zahlen und Bindestrichen."
590
-
591
- #: admin/views/ad-group-edit.php:45
592
- #@ default
593
- msgctxt "Taxonomy Parent"
594
- msgid "Parent"
595
- msgstr "Elternelement"
596
-
597
- #: admin/views/ad-group-edit.php:48
598
- #: admin/views/ad-group-edit.php:50
599
- #@ default
600
- msgid "None"
601
- msgstr "Kein"
602
-
603
- #: admin/views/ad-group-edit.php:56
604
- #@ default
605
- msgctxt "Taxonomy Description"
606
- msgid "Description"
607
- msgstr "Beschreibung"
608
-
609
- #: admin/views/ad-group-edit.php:68
610
- #@ advanced-ads
611
- msgid "Create new Ad Group"
612
- msgstr "Neue Anzeigengruppe erstellen"
613
-
614
- #: admin/views/ad-group.php:33
615
- #@ advanced-ads
616
- msgid "Ad Group added."
617
- msgstr "Anzeigengruppe hinzugefügt."
618
-
619
- #: admin/views/ad-group.php:34
620
- #: admin/views/ad-group.php:38
621
- #@ advanced-ads
622
- msgid "Ad Group deleted."
623
- msgstr "Anzeigengruppe gelöscht."
624
-
625
- #: admin/views/ad-group.php:35
626
- #@ advanced-ads
627
- msgid "Ad Group updated."
628
- msgstr "Anzeigengruppe aktualisiert."
629
-
630
- #: admin/views/ad-group.php:36
631
- #@ advanced-ads
632
- msgid "Ad Group not added."
633
- msgstr "Anzeigengruppe nicht hinzugefügt."
634
-
635
- #: admin/views/ad-group.php:37
636
- #@ advanced-ads
637
- msgid "Ad Group not updated."
638
- msgstr "Anzeigengruppe nicht aktualisiert."
639
-
640
- #: admin/views/ad-group.php:55
641
- #, php-format
642
- #@ advanced-ads
643
- msgid "Search results for &#8220;%s&#8221;"
644
- msgstr "Suchergebnisse für &#8220;%s&#8221;"
645
-
646
- #: admin/views/ad-group.php:61
647
- #@ advanced-ads
648
- msgid "Ad Groups are a very flexible method to bundle ads. You can use them to display random ads in the frontend or run split tests, but also just for informational purposes. Not only can an Ad Groups have multiple ads, but an ad can belong to multiple ad groups."
649
- msgstr "Anzeigen-Gruppen sind eine sehr flexible Methode, um Anzeigen zu bündeln. Sie können sie verwenden um Zufallsanzeigen im Frontend anzuzeigen oder um A/B-Tests durchzuführen, aber auch einfach nur zu Informationszwecken. Eine Anzeigen-Gruppe kann mehrere Anzeigen enthalten, aber eine Anzeige kann auch zu mehreren Anzeigen-Gruppen gehören."
650
-
651
- #: admin/views/ad-group.php:69
652
- #@ advanced-ads
653
- msgid "How to display an Ad Group?"
654
- msgstr "Wie kann eine Anzeigengruppe angezeigt werden?"
655
-
656
- #: admin/views/ad-group.php:71
657
- #, php-format
658
- #@ advanced-ads
659
- msgid "Examples on how to display an ad group? Find more help and examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
660
- msgstr "Suchen Sie Beispiele, wie eine Anzeigen-Gruppe veröffentlicht wird? Sie finden Hilfe in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
661
-
662
- #: admin/views/ad-group.php:72
663
- #: admin/views/ad_info.php:6
664
- #: admin/views/placements.php:51
665
- #@ advanced-ads
666
- msgid "shortcode"
667
- msgstr "Shortcode"
668
-
669
- #: admin/views/ad-group.php:73
670
- #@ advanced-ads
671
- msgid "To display an ad group with the ID 6 in content fields"
672
- msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 im Beitrag."
673
-
674
- #: admin/views/ad-group.php:75
675
- #: admin/views/ad_info.php:9
676
- #: admin/views/placements.php:54
677
- #@ advanced-ads
678
- msgid "template"
679
- msgstr "Template"
680
-
681
- #: admin/views/ad-group.php:76
682
- #@ advanced-ads
683
- msgid "To display an ad group with the ID 6 in template files"
684
- msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 in Template-Dateien"
685
-
686
- #: admin/views/ad-main-metabox.php:3
687
- #@ advanced-ads
688
- msgid "No ad types defined"
689
- msgstr "Keine Anzeigentypen definiert"
690
-
691
- #: admin/views/ad-output-metabox.php:1
692
- #@ advanced-ads
693
- msgid "Everything connected to the ads layout and output."
694
- msgstr "Alles was mit dem Layout und der Ausgabe im Frontend zusammenhängt."
695
-
696
- #: admin/views/ad-output-metabox.php:5
697
- #@ advanced-ads
698
- msgid "Position"
699
- msgstr "Position"
700
-
701
- #: admin/views/ad-output-metabox.php:6
702
- #@ advanced-ads
703
- msgid "- default -"
704
- msgstr "- default -"
705
-
706
- #: admin/views/ad-output-metabox.php:7
707
- #: admin/views/placements.php:75
708
- #: classes/ad_placements.php:31
709
- #@ advanced-ads
710
- msgid "default"
711
- msgstr "Standard"
712
-
713
- #: admin/views/ad-output-metabox.php:8
714
- #@ advanced-ads
715
- msgid "left"
716
- msgstr "links"
717
-
718
- #: admin/views/ad-output-metabox.php:11
719
- #@ advanced-ads
720
- msgid "center"
721
- msgstr "mittig"
722
-
723
- #: admin/views/ad-output-metabox.php:14
724
- #@ advanced-ads
725
- msgid "right"
726
- msgstr "rechts"
727
-
728
- #: admin/views/ad-output-metabox.php:19
729
- #@ advanced-ads
730
- msgid "Check this if you don't want the following elements to float around the ad. (adds a clearfix)"
731
- msgstr "Aktivieren Sie diese Funktion, wenn sich nachfolgende Elemente nicht um die Anzeige legen sollen. (Fügt ein Clearfix hinzu)"
732
-
733
- #: admin/views/ad-output-metabox.php:22
734
- #@ advanced-ads
735
- msgid "Margin"
736
- msgstr "Abstand"
737
-
738
- #: admin/views/ad-output-metabox.php:23
739
- #@ advanced-ads
740
- msgid "top:"
741
- msgstr "oben:"
742
-
743
- #: admin/views/ad-output-metabox.php:25
744
- #@ advanced-ads
745
- msgid "right:"
746
- msgstr "rechts:"
747
-
748
- #: admin/views/ad-output-metabox.php:27
749
- #@ advanced-ads
750
- msgid "bottom:"
751
- msgstr "unten:"
752
-
753
- #: admin/views/ad-output-metabox.php:29
754
- #@ advanced-ads
755
- msgid "left:"
756
- msgstr "links:"
757
-
758
- #: admin/views/ad-output-metabox.php:31
759
- #@ advanced-ads
760
- msgid "tip: use this to add a margin around the ad"
761
- msgstr "Tipp: Verwenden Sie dies, um einen Abstand zwischen Anzeige und Inhalt einzufügen."
762
-
763
- #: admin/views/ad-parameters-metabox.php:15
764
- #: classes/ad_ajax_callbacks.php:48
765
- #@ advanced-ads
766
- msgid "size:"
767
- msgstr "Größe:"
768
-
769
- #: admin/views/ad-parameters-metabox.php:16
770
- #: classes/ad_ajax_callbacks.php:49
771
- #@ advanced-ads
772
- msgid "width"
773
- msgstr "Breite"
774
-
775
- #: admin/views/ad-parameters-metabox.php:17
776
- #: classes/ad_ajax_callbacks.php:50
777
- #@ advanced-ads
778
- msgid "height"
779
- msgstr "Höhe"
780
-
781
- #: admin/views/ad-submitbox-meta.php:4
782
- #@ advanced-ads
783
- msgid "Set expiry date"
784
- msgstr "Verfallsdatum setzen"
785
-
786
- #: admin/views/ad-submitbox-meta.php:11
787
- #, php-format
788
- #@ advanced-ads
789
- msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
790
- msgid "%1$s-%2$s"
791
- msgstr "%1$s-%2$s"
792
-
793
- #: admin/views/ad-submitbox-meta.php:20
794
- #, php-format
795
- #@ advanced-ads
796
- msgctxt "order of expiry date fields 1: month, 2: day, 3: year"
797
- msgid "%1$s %2$s, %3$s"
798
- msgstr "%2$s %1$s %3$s"
799
-
800
- #: admin/views/ad-visitor-metabox.php:1
801
- #@ advanced-ads
802
- msgid "Display conditions that are based on the user. Use with caution on cached websites."
803
- msgstr "Anzeigebedingungen, die sich auf den Benutzer beziehen. Auf gecachten Webseiten bitte mit Vorsicht anwenden."
804
-
805
- #: admin/views/ad-visitor-metabox.php:8
806
- #@ advanced-ads
807
- msgid "Display on all devices"
808
- msgstr "Auf allen Geräten anzeigen"
809
-
810
- #: admin/views/ad-visitor-metabox.php:12
811
- #@ advanced-ads
812
- msgid "only on mobile devices"
813
- msgstr "Nur auf mobilen Geräten"
814
-
815
- #: admin/views/ad-visitor-metabox.php:16
816
- #@ advanced-ads
817
- msgid "not on mobile devices"
818
- msgstr "Nicht auf mobilen Endgeräten"
819
-
820
- #: admin/views/ad_info.php:1
821
- #, php-format
822
- #@ advanced-ads
823
- msgid "Ad Id: %s"
824
- msgstr "Anzeigen-ID: %s"
825
-
826
- #: admin/views/ad_info.php:2
827
- #@ advanced-ads
828
- msgid "How to use this Ad?"
829
- msgstr "Wie kann ich diese Anzeige verwenden?"
830
-
831
- #: admin/views/ad_info.php:5
832
- #, php-format
833
- #@ advanced-ads
834
- msgid "How to display the ad directly? Find more help and examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
835
- msgstr "Anzeige veröffentlichen? Hilfe und Beispiele finden Sie in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
836
-
837
- #: admin/views/ad_info.php:7
838
- #@ advanced-ads
839
- msgid "To display an ad in content fields"
840
- msgstr "Anzeige im Text-Editor einbinden"
841
-
842
- #: admin/views/ad_info.php:10
843
- #@ advanced-ads
844
- msgid "To display an ad in template files"
845
- msgstr "Anzeige in Template-Dateien nutzen"
846
-
847
- #: admin/views/debug.php:8
848
- #@ advanced-ads
849
- msgid "Work in progress"
850
- msgstr "In Arbeit"
851
-
852
- #: admin/views/debug.php:9
853
- #@ advanced-ads
854
- msgid "This screen is work in progress. You can use the information if you understand them, but there is nothing to do here yet."
855
- msgstr "Dieser Bildschirm ist in Arbeit. Sie können die Informationen verwenden, wenn Sie sie verstehen, aber es gibt hier für Sie nichts zu tun."
856
-
857
- #: admin/views/debug.php:16
858
- #@ advanced-ads
859
- msgid "Ad Condition Overview"
860
- msgstr "Übersicht der Anzeigen-Bedingungen"
861
-
862
- #: admin/includes/class-overview-widgets.php:71
863
- #@ advanced-ads
864
- msgid "Ads are the smallest unit, containing the content or a single ad to be displayed."
865
- msgstr "Anzeigen sind die kleinste Einheit und enthalten Inhalte und Layout."
866
-
867
- #: admin/includes/class-overview-widgets.php:72
868
- #, php-format
869
- #@ advanced-ads
870
- msgid "You have published %d ads."
871
- msgstr "Sie haben %d Anzeigen veröffentlicht."
872
-
873
- #: admin/includes/class-overview-widgets.php:73
874
- #, php-format
875
- #@ advanced-ads
876
- msgid "<a href=\"%s\">Manage</a> them or <a href=\"%s\">create</a> a new one"
877
- msgstr "Anzeigen <a href=\"%s\">verwalten</a> oder neue <a href=\"%s\">erstellen</a>"
878
-
879
- #: admin/includes/class-overview-widgets.php:94
880
- #@ advanced-ads
881
- msgid "Create your first ad"
882
- msgstr "Erstellen Sie Ihre erste Anzeige"
883
-
884
- #: admin/includes/class-overview-widgets.php:97
885
- #@ advanced-ads
886
- msgid "Ad Groups contain ads and are currently used to rotate multiple ads on a single spot."
887
- msgstr "Anzeigengruppen enthalten Anzeigen und werden verwendet, um mehrere Anzeigen an einer Stelle zu rotieren."
888
-
889
- #: admin/includes/class-overview-widgets.php:99
890
- #@ advanced-ads
891
- msgid "Create your first group"
892
- msgstr "Erstellen Sie Ihre erste Gruppe"
893
-
894
- #: admin/includes/class-overview-widgets.php:102
895
- #@ advanced-ads
896
- msgid "Ad Placements are the best way to manage where to display ads and groups."
897
- msgstr "Anzeigen-Platzierungen sind am besten geeignet um zu bestimmen, wo Anzeigen und Gruppen veröffentlicht werden."
898
-
899
- #: admin/includes/class-overview-widgets.php:104
900
- #@ advanced-ads
901
- msgid "Create your first placement"
902
- msgstr "Erstellen Sie Ihre erste Platzierung"
903
-
904
- #: admin/includes/class-overview-widgets.php:49
905
- #@ advanced-ads
906
- msgid "Manual and Support"
907
- msgstr "Anleitung und Support"
908
-
909
- #: admin/views/placements.php:14
910
- #@ advanced-ads
911
- msgid "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."
912
- msgstr "Platzierungen sind Stellen in Ihrem Theme und in den Beiträgen. Sie können sie verwenden, wenn Sie Anzeigen und Anzeigengruppen später an einer Position austauschen möchten, ohne eine Änderung der Templates oder Seiten-Inhalte vorzunehmen."
913
-
914
- #: admin/views/placements.php:15
915
- #, php-format
916
- #@ advanced-ads
917
- msgid "See also the manual for more information on <a href=\"%s\">placements</a> and <a href=\"%s\">auto injection</a>."
918
- msgstr "Weitere Informationen finden Sie in der Anleitung (engl.) unter <a href=\"%s\">Placements</a> und <a href=\"%s\">Auto Injection</a>."
919
-
920
- #: admin/views/placements.php:16
921
- #@ advanced-ads
922
- msgid "Create a new placement"
923
- msgstr "Neue Platzierung erstellen"
924
-
925
- #: admin/views/placements.php:18
926
- #: admin/views/placements.php:63
927
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:31
928
- #@ advanced-ads
929
- msgid "Type"
930
- msgstr "Typ"
931
-
932
- #: admin/views/placements.php:27
933
- #@ advanced-ads
934
- msgid "What is this?"
935
- msgstr "Was ist das?"
936
-
937
- #: admin/views/placements.php:29
938
- #@ advanced-ads
939
- msgid "Placement types define how the placements works and where it is going to be displayed."
940
- msgstr "Platzierungstypen definieren, wie die Platzierungen arbeiten und wo sie angezeigt werden."
941
-
942
- #: admin/views/placements.php:38
943
- #: admin/views/placements.php:62
944
- #@ advanced-ads
945
- msgid "Name"
946
- msgstr "Name"
947
-
948
- #: admin/views/placements.php:42
949
- #@ advanced-ads
950
- msgid "Individual identifier. Allowed are alphanumeric signs (lower case) and hyphen."
951
- msgstr "Individuelle Kennung. Erlaubt sind alphanumerische Zeichen (Kleinbuchstaben) und Bindestriche."
952
-
953
- #: admin/views/placements.php:43
954
- #@ advanced-ads
955
- msgid "You can assign Ads and Groups after you created the placement."
956
- msgstr "Sie können Anzeigen und Gruppen zuweisen, nachdem Sie die Platzierung erstellt haben."
957
-
958
- #: admin/views/placements.php:44
959
- #@ advanced-ads
960
- msgid "Save New Placement"
961
- msgstr "Neue Platzierung sichern"
962
-
963
- #: admin/views/placements.php:48
964
- #@ advanced-ads
965
- msgid "How to use the <i>default</i> Ad Placement?"
966
- msgstr "Wie wird die <i>Standard</i>-Anzeigenplatzierung angewendet?"
967
-
968
- #: admin/views/placements.php:50
969
- #, php-format
970
- #@ advanced-ads
971
- msgid "Examples on how to use the <i>default</i> ad placement? Find more help and examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
972
- msgstr "Suchen Sie Beispiele, wie die <i>Standard</i>-Anzeigenplatzierung zu nutzen ist? Sie finden Hilfe in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
973
-
974
- #: admin/views/placements.php:52
975
- #@ advanced-ads
976
- msgid "To use an ad placement with the ID skyscraper_left in content fields"
977
- msgstr "Zum Benutzen einer Anzeigen-Platzierung mit der ID skyscraper_left in Content-Feldern"
978
-
979
- #: admin/views/placements.php:55
980
- #@ advanced-ads
981
- msgid "To use an ad placement with the ID skyscraper_left in template files"
982
- msgstr "Zum Benutzen einer Anzeigen-Platzierung mit der ID Skyscraper_left in Template-Dateien"
983
-
984
- #: admin/views/placements.php:65
985
- #@ advanced-ads
986
- msgid "Options"
987
- msgstr "Optionen"
988
-
989
- #: admin/views/placements.php:80
990
- #@ advanced-ads
991
- msgid "Item"
992
- msgstr "Anzeige"
993
-
994
- #: admin/views/placements.php:82
995
- #: classes/widget.php:57
996
- #@ advanced-ads
997
- msgid "--empty--"
998
- msgstr "--leer--"
999
-
1000
- #: admin/views/placements.php:102
1001
- #@ advanced-ads
1002
- msgid "Inject"
1003
- msgstr "Einfügen"
1004
-
1005
- #: admin/views/placements.php:103
1006
- #@ advanced-ads
1007
- msgid "after"
1008
- msgstr "nach"
1009
-
1010
- #: admin/views/placements.php:103
1011
- #@ advanced-ads
1012
- msgid "before"
1013
- msgstr "vor"
1014
-
1015
- #: admin/views/placements.php:128
1016
- #@ advanced-ads
1017
- msgid "remove placement"
1018
- msgstr "Platzierung entfernen"
1019
-
1020
- #: admin/views/placements.php:134
1021
- #@ advanced-ads
1022
- msgid "Save Placements"
1023
- msgstr "Platzierungen sichern"
1024
-
1025
- #: admin/views/post_ad_settings_metabox.php:3
1026
- #@ advanced-ads
1027
- msgid "Disable ads on this page"
1028
- msgstr "Anzeigen auf dieser Seite deaktivieren."
1029
-
1030
- #: admin/views/settings.php:26
1031
- #@ advanced-ads
1032
- msgid "Debug Page"
1033
- msgstr "Debug-Seite"
1034
-
1035
- #: admin/views/settings.php:27
1036
- #@ advanced-ads
1037
- msgid "Advanced Ads on WordPress.org"
1038
- msgstr "Advanced Ads auf WordPress.org"
1039
-
1040
- #: admin/views/settings.php:27
1041
- #@ advanced-ads
1042
- msgid "Advanced Ads on wp.org"
1043
- msgstr "Advanced Ads auf wp.org"
1044
-
1045
- #: admin/views/settings.php:28
1046
- #@ advanced-ads
1047
- msgid "the company behind Advanced Ads"
1048
- msgstr "das Unternehmen hinter Advanced Ads"
1049
-
1050
- #: admin/views/settings.php:28
1051
- #@ advanced-ads
1052
- msgid "webgilde GmbH"
1053
- msgstr "webgilde GmbH"
1054
-
1055
- #: admin/views/settings_disable_ads.php:3
1056
- #@ advanced-ads
1057
- msgid "Disable all ads in frontend"
1058
- msgstr "Alle Anzeigen im Frontend deaktivieren"
1059
-
1060
- #: admin/views/settings_disable_ads.php:4
1061
- #@ advanced-ads
1062
- msgid "Use this option to disable all ads in the frontend, but still be able to use the plugin."
1063
- msgstr "Benutzen Sie diese Einstellung um alle Anzeigen im Frontend zu deaktivieren und das Plugin dennoch weiterhin zu nutzen."
1064
-
1065
- #: admin/views/settings_disable_ads.php:8
1066
- #@ advanced-ads
1067
- msgid "Disable ads on 404 error pages"
1068
- msgstr "Alle Anzeigen auf 404-Fehlerseiten deaktivieren"
1069
-
1070
- #: admin/views/settings_disable_ads.php:12
1071
- #@ advanced-ads
1072
- msgid "Disable ads on non-singular pages"
1073
- msgstr "Alle Anzeigen auf Nicht-Einzelseiten deaktivieren"
1074
-
1075
- #: admin/views/settings_disable_ads.php:13
1076
- #@ advanced-ads
1077
- msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
1078
- msgstr "z.B. Archive wie Kategorien, Schlagwörter, Autoren, Übersicht auf der Startseite"
1079
-
1080
- #: classes/ad.php:763
1081
- #, php-format
1082
- #@ advanced-ads
1083
- msgid "A \"%s\" display condition does not exist"
1084
- msgstr "Eine \"%s\"- Anzeigebedingung existiert nicht"
1085
-
1086
- #: classes/ad_placements.php:32
1087
- #@ advanced-ads
1088
- msgid "Manual placement."
1089
- msgstr "Manuelle Platzierung."
1090
-
1091
- #: classes/ad_placements.php:35
1092
- #@ advanced-ads
1093
- msgid "header"
1094
- msgstr "Header"
1095
-
1096
- #: classes/ad_placements.php:36
1097
- #@ advanced-ads
1098
- msgid "Injected in Header (before closing </head> Tag, often not visible)."
1099
- msgstr "Injiziert in den Header, und zwar vor das schließende </head>-Tag (oft nicht sichtbar)."
1100
-
1101
- #: classes/ad_placements.php:39
1102
- #@ advanced-ads
1103
- msgid "footer"
1104
- msgstr "Footer"
1105
-
1106
- #: classes/ad_placements.php:40
1107
- #@ advanced-ads
1108
- msgid "Injected in Footer (before closing </body> Tag)."
1109
- msgstr "Injiziert in den Footer, und zwar vor das schließende </body>-Tag)."
1110
-
1111
- #: classes/ad_placements.php:43
1112
- #@ advanced-ads
1113
- msgid "before post"
1114
- msgstr "Vor dem Beitrag"
1115
-
1116
- #: classes/ad_placements.php:44
1117
- #@ advanced-ads
1118
- msgid "Injected before the post content."
1119
- msgstr "Injiziert vor den Beitrags-Inhalt."
1120
-
1121
- #: classes/ad_placements.php:47
1122
- #@ advanced-ads
1123
- msgid "after post"
1124
- msgstr "Nach dem Beitrag"
1125
-
1126
- #: classes/ad_placements.php:48
1127
- #@ advanced-ads
1128
- msgid "Injected after the post content."
1129
- msgstr "Injiziert hinter den Beitrags-Inhalt."
1130
-
1131
- #: classes/ad_placements.php:51
1132
- #@ advanced-ads
1133
- msgid "post content"
1134
- msgstr "Im Beitrag"
1135
-
1136
- #: classes/ad_placements.php:52
1137
- #@ advanced-ads
1138
- msgid "Injected into the post content. You can choose the paragraph after which the ad content is displayed."
1139
- msgstr "Injiziert in den Beitrags-Inhalt. Sie können den Absatz wählen, nach dem der Inhalt angezeigt wird."
1140
-
1141
- #: classes/ad_placements.php:74
1142
- #@ advanced-ads
1143
- msgid "Slug can't be empty."
1144
- msgstr "Der Slug darf nicht leer sein."
1145
-
1146
- #: classes/ad_placements.php:76
1147
- #@ advanced-ads
1148
- msgid "Slug already exists."
1149
- msgstr "Slug bereits vorhanden."
1150
-
1151
- #: classes/ad_placements.php:163
1152
- #, php-format
1153
- #@ advanced-ads
1154
- msgid "paragraph (%s)"
1155
- msgstr "Absatz (%s)"
1156
-
1157
- #: classes/ad_placements.php:164
1158
- #, php-format
1159
- #@ advanced-ads
1160
- msgid "headline 2 (%s)"
1161
- msgstr "Überschrift 2 (%s)"
1162
-
1163
- #: classes/ad_placements.php:165
1164
- #, php-format
1165
- #@ advanced-ads
1166
- msgid "headline 3 (%s)"
1167
- msgstr "Überschrift 3 (%s)"
1168
-
1169
- #: classes/ad_placements.php:166
1170
- #, php-format
1171
- #@ advanced-ads
1172
- msgid "headline 4 (%s)"
1173
- msgstr "Überschrift 4 (%s)"
1174
-
1175
- #: classes/ad_type_content.php:35
1176
- #@ advanced-ads
1177
- msgid "Rich Content"
1178
- msgstr "Rich Content"
1179
-
1180
- #: classes/ad_type_content.php:36
1181
- #@ advanced-ads
1182
- msgid "The full content editor from WordPress with all features like shortcodes, image upload or styling, but also simple text/html mode for scripts and code."
1183
- msgstr "Der vollständige Content-Editor von Wordpress mit allen Funktionen wie Textbearbeitung, Shortcodes, Bild-Upload oder -Styling."
1184
-
1185
- #: classes/ad_type_content.php:63
1186
- #@ advanced-ads
1187
- msgid "Please <strong>save the ad</strong> before changing it to the content type."
1188
- msgstr "Bitte <strong>speichern Sie die Anzeige</strong>, bevor Sie den Anzeigentyp wechseln."
1189
-
1190
- #: classes/ad_type_content.php:66
1191
- #@ default
1192
- msgid "Save Draft"
1193
- msgstr "Entwurf speichern"
1194
-
1195
- #: classes/ad_type_plain.php:31
1196
- #@ advanced-ads
1197
- msgid "Plain Text and Code"
1198
- msgstr "Nur Text und Code"
1199
-
1200
- #: classes/ad_type_plain.php:32
1201
- #@ advanced-ads
1202
- msgid "Simple text editor without any filters. You might use it to display unfiltered content, php code or javascript. Shortcodes and other WordPress content field magic does not work here."
1203
- msgstr "Einfacher Text-Editor ohne Filter. Sie können ihn zur Anzeige von ungefiltertem Inhalt, PHP-Code oder JavaScript benutzen. Shortcodes und ähnliche WordPress-Funktionen funktionieren hier nicht."
1204
-
1205
- #: classes/ad_type_plain.php:67
1206
- #@ advanced-ads
1207
- msgid "Insert plain text or code into this field."
1208
- msgstr "Fügen Sie Text oder Code in dieses Feld ein."
1209
-
1210
- #: classes/widget.php:19
1211
- #@ advanced-ads
1212
- msgid "Display Ads and Ad Groups."
1213
- msgstr "Anzeigen und Anzeigen-Gruppen zeigen."
1214
-
1215
- #: classes/widget.php:51
1216
- #@ default
1217
- msgid "Title:"
1218
- msgstr "Titel:"
1219
-
1220
- #: includes/array_ad_conditions.php:33
1221
- #@ advanced-ads
1222
- msgid "Post Types"
1223
- msgstr "Beitrags-Typen"
1224
-
1225
- #: includes/array_ad_conditions.php:39
1226
- #@ advanced-ads
1227
- msgid "Categories, Tags and Taxonomies"
1228
- msgstr "Kategorien, Schlagworte und Taxonomien"
1229
-
1230
- #: includes/array_ad_conditions.php:40
1231
- #@ advanced-ads
1232
- msgid "Choose terms from public category, tag and other taxonomies a post must belong to in order to have ads."
1233
- msgstr "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus, zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
1234
-
1235
- #: includes/array_ad_conditions.php:45
1236
- #@ advanced-ads
1237
- msgid "Category Archives"
1238
- msgstr "Kategorie-Archive"
1239
-
1240
- #: includes/array_ad_conditions.php:46
1241
- #@ advanced-ads
1242
- msgid "comma seperated IDs of category archives"
1243
- msgstr "Komma-getrennte IDs der Kategorie Archive"
1244
-
1245
- #: includes/array_ad_conditions.php:51
1246
- #@ advanced-ads
1247
- msgid "Individual Posts, Pages and Public Post Types"
1248
- msgstr "Einzelne Beiträge, Seiten und öffentliche Beitrag-Typen"
1249
-
1250
- #: includes/array_ad_conditions.php:57
1251
- #@ advanced-ads
1252
- msgid "Home Page"
1253
- msgstr "Homepage"
1254
-
1255
- #: includes/array_ad_conditions.php:58
1256
- #@ advanced-ads
1257
- msgid "(don't) show on Home page"
1258
- msgstr "(nicht) auf Homepage zeigen"
1259
-
1260
- #: includes/array_ad_conditions.php:62
1261
- #@ advanced-ads
1262
- msgid "Singular Pages"
1263
- msgstr "Einzelseiten"
1264
-
1265
- #: includes/array_ad_conditions.php:63
1266
- #@ advanced-ads
1267
- msgid "(don't) show on singular pages/posts"
1268
- msgstr "(Wird nicht) angezeigt auf singulären Seiten und Beiträgen"
1269
-
1270
- #: includes/array_ad_conditions.php:67
1271
- #@ advanced-ads
1272
- msgid "Archive Pages"
1273
- msgstr "Archiv-Seiten"
1274
-
1275
- #: includes/array_ad_conditions.php:68
1276
- #@ advanced-ads
1277
- msgid "(don't) show on any type of archive page (category, tag, author and date)"
1278
- msgstr "(Wird nicht) angezeigt auf jeder Art von Archiv-Seite (Kategorie, Tag, Autor und Datum)"
1279
-
1280
- #: includes/array_ad_conditions.php:72
1281
- #@ advanced-ads
1282
- msgid "Search Results"
1283
- msgstr "Ergebnisse suchen"
1284
-
1285
- #: includes/array_ad_conditions.php:73
1286
- #@ advanced-ads
1287
- msgid "(don't) show on search result pages"
1288
- msgstr "(Wird nicht) angezeigt auf Suchergebnis-Seiten"
1289
-
1290
- #: includes/array_ad_conditions.php:77
1291
- #@ advanced-ads
1292
- msgid "404 Page"
1293
- msgstr "404-Seite"
1294
-
1295
- #: includes/array_ad_conditions.php:78
1296
- #@ advanced-ads
1297
- msgid "(don't) show on 404 error page"
1298
- msgstr "(nicht) auf 404-Fehlerseite zeigen"
1299
-
1300
- #: includes/array_ad_conditions.php:82
1301
- #@ advanced-ads
1302
- msgid "Attachment Pages"
1303
- msgstr "Anhang-Seiten"
1304
-
1305
- #: includes/array_ad_conditions.php:83
1306
- #@ advanced-ads
1307
- msgid "(don't) show on attachment pages"
1308
- msgstr "(Wird nicht) auf Anhang-Seiten angezeigt"
1309
-
1310
- #: public/class-advanced-ads.php:514
1311
- #@ advanced-ads
1312
- msgctxt "ad group general name"
1313
- msgid "Ad Groups"
1314
- msgstr "Anzeigen-Gruppen"
1315
-
1316
- #: public/class-advanced-ads.php:515
1317
- #@ advanced-ads
1318
- msgctxt "ad group singular name"
1319
- msgid "Ad Group"
1320
- msgstr "Anzeigen-Gruppe"
1321
-
1322
- #: public/class-advanced-ads.php:516
1323
- #@ advanced-ads
1324
- msgid "Search Ad Groups"
1325
- msgstr "Anzeigen-Gruppen suchen"
1326
-
1327
- #: public/class-advanced-ads.php:517
1328
- #@ advanced-ads
1329
- msgid "All Ad Groups"
1330
- msgstr "Alle Anzeigen-Gruppen"
1331
-
1332
- #: public/class-advanced-ads.php:518
1333
- #@ advanced-ads
1334
- msgid "Parent Ad Groups"
1335
- msgstr "Parent-Anzeigen-Gruppen"
1336
-
1337
- #: public/class-advanced-ads.php:519
1338
- #@ advanced-ads
1339
- msgid "Parent Ad Groups:"
1340
- msgstr "Parent-Anzeigen-Gruppen"
1341
-
1342
- #: public/class-advanced-ads.php:520
1343
- #@ advanced-ads
1344
- msgid "Edit Ad Group"
1345
- msgstr "Bearbeite Anzeigen-Gruppe"
1346
-
1347
- #: public/class-advanced-ads.php:521
1348
- #@ advanced-ads
1349
- msgid "Update Ad Group"
1350
- msgstr "Aktualisiere Anzeigen-Gruppe"
1351
-
1352
- #: public/class-advanced-ads.php:522
1353
- #@ advanced-ads
1354
- msgid "Add New Ad Group"
1355
- msgstr "Neue Anzeigengruppe hinzufügen"
1356
-
1357
- #: public/class-advanced-ads.php:523
1358
- #@ advanced-ads
1359
- msgid "New Ad Groups Name"
1360
- msgstr "Neuer Anzeigen-Gruppen-Name"
1361
-
1362
- #: public/class-advanced-ads.php:525
1363
- #@ advanced-ads
1364
- msgid "No Ad Group found"
1365
- msgstr "Keine Anzeigen-Gruppe gefunden"
1366
-
1367
- #: public/class-advanced-ads.php:551
1368
- #: public/class-advanced-ads.php:567
1369
- #@ advanced-ads
1370
- msgid "Ad"
1371
- msgstr "Anzeige"
1372
-
1373
- #: public/class-advanced-ads.php:552
1374
- #: public/class-advanced-ads.php:556
1375
- #@ advanced-ads
1376
- msgid "New Ad"
1377
- msgstr "Neue Anzeige"
1378
-
1379
- #: public/class-advanced-ads.php:553
1380
- #@ advanced-ads
1381
- msgid "Add New Ad"
1382
- msgstr "Neue Anzeige hinzufügen"
1383
-
1384
- #: public/class-advanced-ads.php:555
1385
- #@ advanced-ads
1386
- msgid "Edit Ad"
1387
- msgstr "Anzeige bearbeiten"
1388
-
1389
- #: public/class-advanced-ads.php:557
1390
- #@ advanced-ads
1391
- msgid "View"
1392
- msgstr "Ansicht"
1393
-
1394
- #: public/class-advanced-ads.php:558
1395
- #@ advanced-ads
1396
- msgid "View the Ad"
1397
- msgstr "Anzeige ansehen"
1398
-
1399
- #: public/class-advanced-ads.php:559
1400
- #@ advanced-ads
1401
- msgid "Search Ads"
1402
- msgstr "Anzeigen suchen"
1403
-
1404
- #: public/class-advanced-ads.php:560
1405
- #@ advanced-ads
1406
- msgid "No Ads found"
1407
- msgstr "Keine Anzeigen gefunden"
1408
-
1409
- #: public/class-advanced-ads.php:561
1410
- #@ advanced-ads
1411
- msgid "No Ads found in Trash"
1412
- msgstr "Keine Anzeigen im Papierkorb gefunden"
1413
-
1414
- #: public/class-advanced-ads.php:562
1415
- #@ advanced-ads
1416
- msgid "Parent Ad"
1417
- msgstr "Übergeordnete Anzeige"
1418
-
1419
- #: public/class-advanced-ads.php:618
1420
- #, php-format
1421
- #@ advanced-ads
1422
- msgid "Advanced Ads Error: %s"
1423
- msgstr "Advanced-Ads-Fehler: %s"
1424
-
1425
- #: admin/views/ad_info.php:15
1426
- #@ advanced-ads
1427
- msgid "click to change"
1428
- msgstr "bearbeiten"
1429
-
1430
- #: admin/views/ad_info.php:19
1431
- #@ advanced-ads
1432
- msgid "Add a description"
1433
- msgstr "Beschreibung hinzufügen"
1434
-
1435
- #: admin/views/ad_info.php:22
1436
- #@ advanced-ads
1437
- msgid "Internal description or your own notes about this ad."
1438
- msgstr "Eigene Beschreibung oder Notizen zu dieser Anzeige."
1439
-
1440
- #. translators: plugin header field 'PluginURI'
1441
- #: advanced-ads.php:0
1442
- #@ advanced-ads
1443
- msgid "http://wpadvancedads.com"
1444
- msgstr ""
1445
-
1446
- #. translators: plugin header field 'Description'
1447
- #: advanced-ads.php:0
1448
- #@ advanced-ads
1449
- msgid "Manage and optimize your ads in WordPress"
1450
- msgstr "Anzeigen in WordPress verwalten und optimieren"
1451
-
1452
- #. translators: plugin header field 'Author'
1453
- #: advanced-ads.php:0
1454
- #@ advanced-ads
1455
- msgid "Thomas Maier"
1456
- msgstr ""
1457
-
1458
- #. translators: plugin header field 'AuthorURI'
1459
- #: advanced-ads.php:0
1460
- #@ advanced-ads
1461
- msgid "http://webgilde.com"
1462
- msgstr ""
1463
-
1464
- #: classes/ad_type_plain.php:70
1465
- #@ advanced-ads
1466
- msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
1467
- msgstr "PHP Code ausführen (in <code>&lt;?php ?&gt;</code> tags)"
1468
-
1469
- #: admin/class-advanced-ads-admin.php:921
1470
- #, php-format
1471
- #@ advanced-ads
1472
- msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
1473
- msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
1474
-
1475
- #: modules/gadsense/admin/class-gadsense-admin.php:27
1476
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:34
1477
- #@ advanced-ads
1478
- msgid "Responsive"
1479
- msgstr "Responsive"
1480
-
1481
- #: modules/gadsense/admin/class-gadsense-admin.php:45
1482
- #@ advanced-ads
1483
- msgid "The ad details couldn't be retrieved from the ad code"
1484
- msgstr "Die Anzeigeneinstellungen konnten nicht aus dem Code gewonnen werden."
1485
-
1486
- #: modules/gadsense/admin/class-gadsense-admin.php:46
1487
- #@ advanced-ads
1488
- msgid "Warning : The AdSense account from this code does not match the one set with the Advanced Ads Plugin. This ad might cause troubles when used in the front end."
1489
- msgstr "Achtung : Der AdSense-Account aus dem Code entspricht nicht dem in den Einstellungen. Es kann zu Problemen bei der Anzeige kommen."
1490
-
1491
- #: modules/gadsense/admin/class-gadsense-admin.php:87
1492
- #@ advanced-ads
1493
- msgid "Data updated"
1494
- msgstr "Daten aktualisiert"
1495
-
1496
- #: modules/gadsense/admin/class-gadsense-admin.php:93
1497
- #@ advanced-ads
1498
- msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
1499
- msgstr "Die Publisher-ID hat ein falsches Format. Sie muss mit \\\"pub-\\\" beginnen."
1500
-
1501
- #: modules/gadsense/admin/views/admin-page.php:21
1502
- #@ advanced-ads
1503
- msgid "Account ID"
1504
- msgstr "Account-ID"
1505
-
1506
- #: modules/gadsense/admin/views/admin-page.php:23
1507
- #@ advanced-ads
1508
- msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
1509
- msgstr "AdSense Publisher-ID <em>(pub-xxxxxxxxxxxxxx)</em>"
1510
-
1511
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:18
1512
- #@ advanced-ads
1513
- msgid "This feature is still in beta. Please report issues to <a href=\"mailto:support@webgilde.com\">support@webgilde.com</a>"
1514
- msgstr "Diese Funktion befindet sich im beta-Stadium. Bitte melde Fehler an <a href=\\\"mailto:support@webgilde.com\\\">support@webgilde.com</a>"
1515
-
1516
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:22
1517
- #, php-format
1518
- #@ advanced-ads
1519
- msgid "<a class=\"button\" href=\"#\" id=\"%s\">Copy&Paste existing ad code</a>"
1520
- msgstr "<a class=\"button\" href=\"#\" id=\"%s\">Anzeigencode einfügen</a>"
1521
-
1522
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:23
1523
- #@ advanced-ads
1524
- msgid "-or-"
1525
- msgstr "-oder-"
1526
-
1527
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:24
1528
- #@ advanced-ads
1529
- msgid "enter ad details manually"
1530
- msgstr "Anzeigendetails manuell eingeben"
1531
-
1532
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:27
1533
- #@ advanced-ads
1534
- msgid "Ad Slot ID"
1535
- msgstr "Anzeigen-Slot-ID"
1536
-
1537
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:33
1538
- #@ advanced-ads
1539
- msgid "Normal"
1540
- msgstr "Normal"
1541
-
1542
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:43
1543
- #@ advanced-ads
1544
- msgid "Resizing"
1545
- msgstr "Größenanpassung"
1546
-
1547
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:55
1548
- #@ advanced-ads
1549
- msgid "Copy the ad code from your AdSense account and paste it in the area below"
1550
- msgstr "Einfach Anzeigencode von AdSense in das Feld kopieren."
1551
-
1552
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:58
1553
- #@ advanced-ads
1554
- msgid "Get details"
1555
- msgstr "Details einlesen"
1556
-
1557
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:59
1558
- #@ advanced-ads
1559
- msgid "Close"
1560
- msgstr "Schließen"
1561
-
1562
- #: modules/gadsense/includes/class-ad-type-adsense.php:35
1563
- #@ advanced-ads
1564
- msgid "AdSense ad"
1565
- msgstr "AdSense"
1566
-
1567
- #: modules/gadsense/includes/class-ad-type-adsense.php:36
1568
- #@ advanced-ads
1569
- msgid "Use ads from your Google AdSense account"
1570
- msgstr "Anzeigen aus dem Google AdSense Konto verwenden"
1571
-
1572
- #: modules/gadsense/includes/class-gadsense-data.php:39
1573
- #@ advanced-ads
1574
- msgid "Auto"
1575
- msgstr "automatisch"
1576
-
1577
- #: modules/gadsense/main.php:15
1578
- #@ advanced-ads
1579
- msgid " at "
1580
- msgstr " am "
1581
-
1582
- #: modules/gadsense/admin/class-gadsense-admin.php:47
1583
- #@ advanced-ads
1584
- msgid "Warning : You have not yet entered an AdSense account ID. The plugin won’t work without that"
1585
- msgstr "Achtung: Bitte trage noch eine AdSense-Account-ID in den Einstellungen ein."
1586
-
1587
- #: admin/class-advanced-ads-admin.php:635
1588
- #@ advanced-ads
1589
- msgid "Priority of content injection filter"
1590
- msgstr "Priorität des Filters für Anzeigen in Beiträgen"
1591
-
1592
- #: admin/class-advanced-ads-admin.php:724
1593
- #@ advanced-ads
1594
- msgid "Play with this value in order to change the priority of the injected ads compared to other auto injected elements in the post content."
1595
- msgstr "Ändere diesen Wert, wenn du die Reihenfolge der automatisch im Beitrag eingefügten Anzeige im Vergleich zu anderen Elementen ändern willst."
1596
-
1597
- #: modules/gadsense/admin/views/admin-page.php:27
1598
- #, php-format
1599
- #@ advanced-ads
1600
- msgid "Limit to %d AdSense ads"
1601
- msgstr "Begrenzung auf %d AdSense Anzeigen"
1602
-
1603
- #: modules/gadsense/admin/views/admin-page.php:32
1604
- #, php-format
1605
- #@ advanced-ads
1606
- msgid "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of Service\">TOS</a> imposes a limit of %d display ads per page. You can disable this limitation at your own risks."
1607
- msgstr "Die Google AdSense <a target='_blank' href='%s' title='Terms Of Service'>Bedingungen</a> erlauben maximal %d Banner pro Seite. Deaktiviere diese Limitierung nur, wenn du weißt, was du tust."
1608
-
1609
- #: modules/gadsense/admin/views/admin-page.php:35
1610
- #@ advanced-ads
1611
- msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
1612
- msgstr "Beachte: Für die Prüfung des Limits werden nur die Anzeigen herangezogen, die den AdSense-Anzeigentyp haben."
1613
-
1614
- #: modules/gadsense/admin/views/admin-page.php:38
1615
- #@ advanced-ads
1616
- msgid "Save AdSense Settings"
1617
- msgstr "AdSense Einstellungen speichern"
1618
-
1619
- #: admin/class-advanced-ads-admin.php:910
1620
- #@ advanced-ads
1621
- msgid "Advanced Ads Tutorials"
1622
- msgstr ""
1623
-
1624
- #: admin/includes/class-overview-widgets.php:45
1625
- #@ advanced-ads
1626
- msgid "News and Tutorials"
1627
- msgstr ""
1628
-
1629
- #: admin/includes/class-overview-widgets.php:47
1630
- #@ advanced-ads
1631
- msgid "My Ads"
1632
- msgstr "Meine Anzeigen"
1633
-
1634
- #: admin/includes/class-overview-widgets.php:53
1635
- #@ advanced-ads
1636
- msgid "Tracking and Stats"
1637
- msgstr "Tracking und Statistik"
1638
-
1639
- #: admin/includes/class-overview-widgets.php:55
1640
- #@ advanced-ads
1641
- msgid "Responsive and Mobile ads"
1642
- msgstr "Responsive und Mobile Anzeigen"
1643
-
1644
- #: admin/includes/class-overview-widgets.php:57
1645
- #@ advanced-ads
1646
- msgid "Sticky ads"
1647
- msgstr ""
1648
-
1649
- #: admin/includes/class-overview-widgets.php:59
1650
- #@ advanced-ads
1651
- msgid "PopUps and Layers"
1652
- msgstr "PopUps und Layers"
1653
-
1654
- #: admin/includes/class-overview-widgets.php:109
1655
- #@ advanced-ads
1656
- msgid "Next steps"
1657
- msgstr "Nächste Schritte"
1658
-
1659
- #: admin/includes/class-overview-widgets.php:121
1660
- #, php-format
1661
- #@ advanced-ads
1662
- msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
1663
- msgstr "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
1664
-
1665
- #: admin/includes/class-overview-widgets.php:122
1666
- #, php-format
1667
- #@ advanced-ads
1668
- msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
1669
- msgstr "<a href=\"%s\" target=\"_blank\">Anleitung</a>"
1670
-
1671
- #: admin/includes/class-overview-widgets.php:123
1672
- #, php-format
1673
- #@ advanced-ads
1674
- msgid "Ask other users in the <a href=\"%s\" target=\"_blank\">wordpress.org forum</a>"
1675
- msgstr "<a href=\"%s\" target=\"_blank\">Nutzerforum</a>"
1676
-
1677
- #: admin/includes/class-overview-widgets.php:124
1678
- #, php-format
1679
- #@ advanced-ads
1680
- msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
1681
- msgstr "Über <a href=\"%s\" target=\"_blank\">neue Funktionen</a> abstimmen"
1682
-
1683
- #: admin/includes/class-overview-widgets.php:125
1684
- #, php-format
1685
- #@ advanced-ads
1686
- msgid "<a href=\"%s\" target=\"_blank\">Hire the developer</a>"
1687
- msgstr "<a href=\"%s\" target=\"_blank\">Beauftrage den Entwickler</a>"
1688
-
1689
- #: admin/includes/class-overview-widgets.php:126
1690
- #, php-format
1691
- #@ advanced-ads
1692
- msgid "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
1693
- msgstr "Danke dem Entwickler mit einem &#9733;&#9733;&#9733;&#9733;&#9733; Review auf <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
1694
-
1695
- #: admin/includes/class-overview-widgets.php:135
1696
- #@ advanced-ads
1697
- msgid "Track the impressions of your ads."
1698
- msgstr "Zähle die Einblendungen von Anzeigen."
1699
-
1700
- #: admin/includes/class-overview-widgets.php:136
1701
- #@ advanced-ads
1702
- msgid "2 methods to count impressions"
1703
- msgstr "2 Zählmethoden zur Auswahl"
1704
-
1705
- #: admin/includes/class-overview-widgets.php:137
1706
- #@ advanced-ads
1707
- msgid "beautiful stats for all or single ads"
1708
- msgstr "Wunderschöne Statistiken"
1709
-
1710
- #: admin/includes/class-overview-widgets.php:138
1711
- #@ advanced-ads
1712
- msgid "get stats for predefined and custom persiods"
1713
- msgstr "Werte einen beliebigen Zeitraum aus."
1714
-
1715
- #: admin/includes/class-overview-widgets.php:139
1716
- #@ advanced-ads
1717
- msgid "group stats by day, week or month"
1718
- msgstr "Auswertung nach Tag, Woche und Monat"
1719
-
1720
- #: admin/includes/class-overview-widgets.php:141
1721
- #@ advanced-ads
1722
- msgid "Get the Tracking add-on"
1723
- msgstr "zum Tracking Add-On"
1724
-
1725
- #: admin/includes/class-overview-widgets.php:149
1726
- #@ advanced-ads
1727
- msgid "Display ads based on the size of your visitor’s browser or device."
1728
- msgstr "Zeige Anzeigen anhand der Breite des Browsers deines Besuchers."
1729
-
1730
- #: admin/includes/class-overview-widgets.php:150
1731
- #@ advanced-ads
1732
- msgid "set a range (from … to …) pixels for the browser size"
1733
- msgstr "Lege Spannen (von … bis …) für das Einblenden fest"
1734
-
1735
- #: admin/includes/class-overview-widgets.php:151
1736
- #@ advanced-ads
1737
- msgid "set custom sizes for AdSense responsive ads"
1738
- msgstr "Assistent für Größen von AdSense Anzeigen"
1739
-
1740
- #: admin/includes/class-overview-widgets.php:152
1741
- #@ advanced-ads
1742
- msgid "list all ads by their responsive settings"
1743
- msgstr "Übersicht der responsive Anzeigen"
1744
-
1745
- #: admin/includes/class-overview-widgets.php:154
1746
- #@ advanced-ads
1747
- msgid "Get the Responsive add-on"
1748
- msgstr "zum Responsive Add-On"
1749
-
1750
- #: admin/includes/class-overview-widgets.php:162
1751
- #@ advanced-ads
1752
- msgid "Fix ads to the browser while users are scrolling and create best performing anchor ads."
1753
- msgstr "Fixiere mit-scrollende Anzeigen am Browserfenster"
1754
-
1755
- #: admin/includes/class-overview-widgets.php:163
1756
- #@ advanced-ads
1757
- msgid "position ads that don’t scroll with the screen"
1758
- msgstr "Anzeigen die mit scrollen"
1759
-
1760
- #: admin/includes/class-overview-widgets.php:164
1761
- #@ advanced-ads
1762
- msgid "build anchor ads not only on mobile devices"
1763
- msgstr "Anchor-Anzeigen nicht nur für mobile Geräte"
1764
-
1765
- #: admin/includes/class-overview-widgets.php:166
1766
- #@ advanced-ads
1767
- msgid "Get the Sticky add-on"
1768
- msgstr "zum Sticky Add-On"
1769
-
1770
- #: admin/includes/class-overview-widgets.php:174
1771
- #@ advanced-ads
1772
- msgid "Display content and ads in layers and popups on custom events."
1773
- msgstr "Für sehr performante Anzeigen und Inhalte in Layern und PopUps."
1774
-
1775
- #: admin/includes/class-overview-widgets.php:175
1776
- #@ advanced-ads
1777
- msgid "display a popup after a user interaction like scrolling"
1778
- msgstr "Zeige ein PopUp basierend auf der Nutzeraktion"
1779
-
1780
- #: admin/includes/class-overview-widgets.php:176
1781
- #@ advanced-ads
1782
- msgid "optional backgroup overlay"
1783
- msgstr "Wahlweise mit Hintergrundeinfärbung"
1784
-
1785
- #: admin/includes/class-overview-widgets.php:177
1786
- #@ advanced-ads
1787
- msgid "allow users to close the popup"
1788
- msgstr "Erlaube Nutzern, das Fenster zu schließen"
1789
-
1790
- #: admin/includes/class-overview-widgets.php:179
1791
- #@ advanced-ads
1792
- msgid "Get the PopUp and Layer add-on"
1793
- msgstr "zum PopUp und Layouer Add-On"
1794
-
1795
- #. translators: plugin header field 'Version'
1796
- #: advanced-ads.php:0
1797
- #@ advanced-ads
1798
- msgid "1.4.2"
1799
- msgstr ""
1800
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Advanved Ads\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
5
+ "POT-Creation-Date: 2015-01-27 16:47+0100\n"
6
+ "PO-Revision-Date: Thu Apr 02 2015 15:42:16 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-Language: \n"
17
+ "X-Poedit-Country: \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-Poedit-Basepath: .\n"
24
+ "X-Poedit-Bookmarks: \n"
25
+ "X-Poedit-SearchPath-0: .\n"
26
+ "X-Textdomain-Support: yes\n"
27
+ "X-Loco-Target-Locale: de_DE"
28
+
29
+ #: admin/class-advanced-ads-admin.php:194
30
+ #, php-format
31
+ msgid ""
32
+ "Advanced Ads Update: Auto injections are now managed through placements. "
33
+ "Please convert these ads with auto injections: %s"
34
+ msgstr ""
35
+
36
+ #: admin/class-advanced-ads-admin.php:208
37
+ msgid "Overview"
38
+ msgstr "Übersicht"
39
+
40
+ #. translators: plugin header field 'Name'
41
+ #: admin/class-advanced-ads-admin.php:208 classes/widget.php:21
42
+ msgid "Advanced Ads"
43
+ msgstr "Advanced Ads"
44
+
45
+ #: admin/class-advanced-ads-admin.php:212
46
+ #: admin/includes/class-ad-groups-list-table.php:191
47
+ #: admin/views/overview.php:12 admin/views/placements.php:91
48
+ #: classes/widget.php:66 public/class-advanced-ads.php:566
49
+ msgid "Ads"
50
+ msgstr "Anzeigen"
51
+
52
+ #: classes/widget.php:59
53
+ msgid "Ad Groups"
54
+ msgstr "Anzeigen-Gruppen"
55
+
56
+ #: public/class-advanced-ads.php:540
57
+ msgid "Groups"
58
+ msgstr "Gruppen"
59
+
60
+ #: admin/class-advanced-ads-admin.php:216 admin/views/placements.php:84
61
+ #: admin/views/placements.php:47
62
+ msgid "Placements"
63
+ msgstr "Platzierungen"
64
+
65
+ #: admin/class-advanced-ads-admin.php:216 admin/views/overview.php:40
66
+ msgid ""
67
+ "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
68
+ "deleted?"
69
+ msgstr ""
70
+ "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
71
+ "Vielleicht wurde es gelöscht?"
72
+
73
+ #: admin/class-advanced-ads-admin.php:221 admin/views/debug.php:19
74
+ msgid "Ad Placements"
75
+ msgstr "Anzeigen-Platzierungen"
76
+
77
+ #, php-format
78
+ msgid ""
79
+ "Only enable this if you can and want to use the advanced JavaScript "
80
+ "functions described <a href=\"%s\">here</a>."
81
+ msgstr ""
82
+ "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</a> "
83
+ "beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
84
+
85
+ #: admin/class-advanced-ads-admin.php:225
86
+ msgid "Advanced Ads Settings"
87
+ msgstr "Advanced-Ads-Einstellungen"
88
+
89
+ #: admin/class-advanced-ads-admin.php:225
90
+ #: admin/class-advanced-ads-admin.php:403 admin/views/debug.php:13
91
+ msgid "Settings"
92
+ msgstr "Einstellungen"
93
+
94
+ #: admin/class-advanced-ads-admin.php:228
95
+ msgid "Advanced Ads Debugging"
96
+ msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
97
+
98
+ #: admin/class-advanced-ads-admin.php:228
99
+ msgid "Debug"
100
+ msgstr "Debug"
101
+
102
+ #: admin/class-advanced-ads-admin.php:272
103
+ msgid "Placements updated"
104
+ msgstr "Platzierungen aktualisiert"
105
+
106
+ #: admin/class-advanced-ads-admin.php:316
107
+ #: admin/class-advanced-ads-admin.php:343
108
+ msgid "Sorry, you are not allowed to access this feature."
109
+ msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
110
+
111
+ #: admin/class-advanced-ads-admin.php:329
112
+ msgid "From the ad optimization universe"
113
+ msgstr "Neues aus dem Anzeigen-Universum"
114
+
115
+ #: admin/includes/class-ad-groups-list-table.php:94
116
+ #, php-format
117
+ msgid "Edit &#8220;%s&#8221;"
118
+ msgstr "#8220;%s&#8221; bearbeiten"
119
+
120
+ #: admin/includes/class-ad-groups-list-table.php:108
121
+ msgid "Delete"
122
+ msgstr "Entfernen"
123
+
124
+ #: admin/includes/class-ad-groups-list-table.php:162
125
+ msgid "Ad weight"
126
+ msgstr "Anzeigengewichtung"
127
+
128
+ #: admin/includes/class-ad-groups-list-table.php:189
129
+ msgid "Ad Group"
130
+ msgstr "Anzeigengruppe"
131
+
132
+ #: admin/includes/class-ad-groups-list-table.php:190
133
+ msgid "Slug"
134
+ msgstr "Slug"
135
+
136
+ #: admin/includes/class-display-condition-callbacks.php:28
137
+ msgid "Display on all public <strong>post types</strong>."
138
+ msgstr "In allen öffentlichen <strong>Beitragstypen</strong> anzeigen."
139
+
140
+ #: admin/includes/class-display-condition-callbacks.php:31
141
+ #: includes/array_ad_conditions.php:34
142
+ msgid "Choose the public post types on which to display the ad."
143
+ msgstr ""
144
+ "Wählen Sie aus den öffentlichen Beitragstypen jene aus, bei denen die "
145
+ "Anzeige erscheinen soll."
146
+
147
+ #: admin/includes/class-display-condition-callbacks.php:86
148
+ msgid "Display for all <strong>categories, tags and taxonomies</strong>."
149
+ msgstr "In allen <strong>Kategorien, Tags und Taxonomien</strong> anzeigen."
150
+
151
+ #: admin/includes/class-display-condition-callbacks.php:88
152
+ msgid ""
153
+ "Choose terms from public categories, tags and other taxonomies a post must "
154
+ "belong to in order to have ads."
155
+ msgstr ""
156
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
157
+ " zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
158
+
159
+ #: admin/includes/class-display-condition-callbacks.php:121
160
+ msgid ""
161
+ "Choose the terms from public categories, tags and other taxonomies a post "
162
+ "must belong to hide the ad from it."
163
+ msgstr ""
164
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
165
+ " zu denen ein Beitrag gehören muss, damit auf ihm KEINE Anzeigen erscheinen."
166
+
167
+ #: admin/includes/class-display-condition-callbacks.php:172
168
+ msgid "Display on all <strong>category archive pages</strong>."
169
+ msgstr "In allen <strong>Kategorie-Archiven</strong> anzeigen."
170
+
171
+ #: admin/includes/class-display-condition-callbacks.php:175
172
+ msgid ""
173
+ "Choose the terms from public categories, tags and other taxonomies on "
174
+ "which's archive page ads can appear"
175
+ msgstr ""
176
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
177
+ " auf deren Übersichtsseiten Anzeigen erscheinen können."
178
+
179
+ #: admin/includes/class-display-condition-callbacks.php:208
180
+ msgid ""
181
+ "Choose the terms from public categories, tags and other taxonomies on "
182
+ "which's archive pages ads are hidden."
183
+ msgstr ""
184
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
185
+ " auf deren Übersichtsseiten KEINE Anzeigen erscheinen sollen."
186
+
187
+ #: admin/includes/class-display-condition-callbacks.php:246
188
+ msgid ""
189
+ "Display an all <strong>individual posts, pages</strong> and public post type "
190
+ "pages"
191
+ msgstr ""
192
+ "In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
193
+ "anzeigen"
194
+
195
+ #: admin/includes/class-display-condition-callbacks.php:249
196
+ #: includes/array_ad_conditions.php:52
197
+ msgid ""
198
+ "Choose on which individual posts, pages and public post type pages you want "
199
+ "to display or hide ads."
200
+ msgstr ""
201
+ "Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf "
202
+ "denen Anzeigen angezeigt oder ausgeblendet werden sollen."
203
+
204
+ #: admin/includes/class-display-condition-callbacks.php:266
205
+ msgid "What should happen with ads on the list of individual posts below?"
206
+ msgstr "Was soll mit Anzeigen auf den genannten Seiten passieren?"
207
+
208
+ #: admin/includes/class-display-condition-callbacks.php:278
209
+ msgid ""
210
+ "Due to some conflicts before version 1.2.6, it is from now on only possible "
211
+ "to choose either individual pages to include or exclude an ad, but not both "
212
+ "with mixed settings. It seems you are still using mixed settings on this "
213
+ "page. Please consider changing your setup for this ad."
214
+ msgstr ""
215
+ "Aufgrund einiger Konflikte vor Version 1.2.6 ist es von nun an nur möglich, "
216
+ "entweder einzelne Seiten zu wählen zum Ein- oder Ausschließen von Anzeigen, "
217
+ "aber nicht beides mit gemischten Einstellungen. Es scheint, dass Sie noch "
218
+ "mit gemischten Einstellungen auf dieser Seite arbeiten. Bitte ändern Sie die "
219
+ "Einstellung für diese Anzeige."
220
+
221
+ #: admin/includes/class-display-condition-callbacks.php:280
222
+ msgid "Post IDs the ad is displayed on:"
223
+ msgstr "Beitrag-IDs auf denen die Anzeige angezeigt wird:"
224
+
225
+ #: admin/includes/class-display-condition-callbacks.php:281
226
+ msgid "Post IDs the ad is hidden from:"
227
+ msgstr "Beitrag-IDs auf denen die Anzeige nicht angezeigt wird:"
228
+
229
+ #: admin/includes/class-display-condition-callbacks.php:282
230
+ msgid ""
231
+ "Below you find the pages the ad is displayed on. If this is ok, just save "
232
+ "the ad. If not, please update your settings."
233
+ msgstr ""
234
+ "Unten finden Sie die Seiten der sichtbaren Anzeige. Wenn das in Ordnung ist, "
235
+ "dann sichern Sie die Anzeige. Wenn nicht, dann aktualisieren Sie bitte Ihre "
236
+ "Einstellungen."
237
+
238
+ #: admin/includes/class-display-condition-callbacks.php:324
239
+ msgid "type the title"
240
+ msgstr "Geben Sie den Titel ein"
241
+
242
+ #: admin/includes/class-list-table.php:310
243
+ msgid "Bulk Actions"
244
+ msgstr "Stapelverarbeitung"
245
+
246
+ #: admin/includes/class-list-table.php:320
247
+ msgid "Apply"
248
+ msgstr "Anwenden"
249
+
250
+ #. translators: 1: month name, 2: 4-digit year
251
+ #: admin/includes/class-list-table.php:417
252
+ #, php-format
253
+ msgid "%1$s %2$d"
254
+ msgstr "%1$s %2$d"
255
+
256
+ #: admin/includes/class-list-table.php:528
257
+ #: admin/includes/class-list-table.php:943
258
+ #, php-format
259
+ msgid "1 item"
260
+ msgid_plural "%s items"
261
+ msgstr[0] "1 Artikel"
262
+ msgstr[1] "%s Artikel"
263
+
264
+ #: admin/includes/class-list-table.php:546
265
+ msgid "Go to the first page"
266
+ msgstr "Zur ersten Seite gehen"
267
+
268
+ #: admin/includes/class-list-table.php:553
269
+ msgid "Go to the previous page"
270
+ msgstr "Zur vorherigen Seite"
271
+
272
+ #: admin/includes/class-list-table.php:562
273
+ msgid "Current page"
274
+ msgstr "Aktuelle Seite"
275
+
276
+ #: admin/includes/class-list-table.php:572
277
+ msgid "Go to the next page"
278
+ msgstr "Zur nächsten Seite gehen"
279
+
280
+ #: admin/views/ad-display-metabox.php:6
281
+ msgid "Choose where to display the ad and where to hide it."
282
+ msgstr "Wählen Sie, wo die Anzeige sichtbar und wo sie versteckt ist."
283
+
284
+ #: admin/views/ad-display-metabox.php:14
285
+ msgid "If you want to display the ad everywhere, don't do anything here. "
286
+ msgstr ""
287
+ "Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu "
288
+ "tun."
289
+
290
+ #: admin/views/ad-display-metabox.php:15
291
+ msgid "The fewer conditions you enter, the better the performance will be."
292
+ msgstr "Je weniger Bedingungen Sie eingeben, um so besser ist die Performance."
293
+
294
+ #: admin/views/ad-display-metabox.php:16
295
+ #, php-format
296
+ msgid ""
297
+ "Learn more about display conditions from the <a href=\"%s\" "
298
+ "target=\"_blank\">manual</a>."
299
+ msgstr ""
300
+ "Lernen Sie mehr über Anzeige-Bedingungen in der <a href=\"%s\" "
301
+ "target=\"_blank\">Anleitung</a> (engl.)."
302
+
303
+ #: admin/views/ad-display-metabox.php:33
304
+ msgid ""
305
+ "When using one of the two choices on checkbox conditions, the rule is "
306
+ "binding. E.g. \"Front Page: show\" will result on the ad being only visible on "
307
+ "the front page."
308
+ msgstr ""
309
+ "Bei Verwendung einer der beiden Checkbox-Bedingungen wird die Regel bindend. "
310
+ "Wenn Sie z.B. die Funktion \"Home Page: Zeigen\" aktivieren, wird die Anzeige "
311
+ "nur auf der ersten Seite zu sehen sein."
312
+
313
+ #: admin/views/ad-display-metabox.php:67
314
+ msgid "Values saved for this ad in the database (post metas)"
315
+ msgstr "Die Werte für diese Anzeige wurden in der Datenbank gespeichert (post metas)"
316
+
317
+ #: admin/views/ad-group-ads-inline-form.php:10
318
+ msgctxt "ad group ads form"
319
+ msgid "weight"
320
+ msgstr "Gewicht"
321
+
322
+ #: admin/views/ad-group-ads-inline-form.php:24
323
+ msgid "Cancel"
324
+ msgstr "Abbruch"
325
+
326
+ #: admin/views/ad-group-ads-inline-form.php:33
327
+ msgid "There are no ads in this group"
328
+ msgstr "Keine Anzeigen in dieser Gruppe"
329
+
330
+ #: admin/views/ad-group-edit.php:14
331
+ msgid "You did not select an item for editing."
332
+ msgstr "Sie haben nichts zur Bearbeitung gewählt."
333
+
334
+ #: admin/views/ad-group-edit.php:38
335
+ msgctxt "Taxonomy Slug"
336
+ msgid "Slug"
337
+ msgstr "Slug"
338
+
339
+ #: admin/views/ad-group-edit.php:40
340
+ msgid "An id-like string with only letters in lower case, numbers, and hyphens."
341
+ msgstr "Ein ID-ähnlicher String mit nur Kleinbuchstaben, Zahlen und Bindestrichen."
342
+
343
+ #: admin/views/ad-group-edit.php:48 admin/views/ad-group-edit.php:50
344
+ msgid "None"
345
+ msgstr "Kein"
346
+
347
+ #: admin/views/ad-group-edit.php:56
348
+ msgctxt "Taxonomy Description"
349
+ msgid "Description"
350
+ msgstr "Beschreibung"
351
+
352
+ #: admin/views/ad-group-edit.php:68
353
+ msgid "Create new Ad Group"
354
+ msgstr "Neue Anzeigengruppe erstellen"
355
+
356
+ #: admin/views/ad-group.php:33
357
+ msgid "Ad Group added."
358
+ msgstr "Anzeigengruppe hinzugefügt."
359
+
360
+ #: admin/views/ad-group.php:34 admin/views/ad-group.php:38
361
+ msgid "Ad Group deleted."
362
+ msgstr "Anzeigengruppe gelöscht."
363
+
364
+ #: admin/views/ad-group.php:35
365
+ msgid "Ad Group updated."
366
+ msgstr "Anzeigengruppe aktualisiert."
367
+
368
+ #: admin/views/ad-group.php:36
369
+ msgid "Ad Group not added."
370
+ msgstr "Anzeigengruppe nicht hinzugefügt."
371
+
372
+ #: admin/views/ad-group.php:37
373
+ msgid "Ad Group not updated."
374
+ msgstr "Anzeigengruppe nicht aktualisiert."
375
+
376
+ #: admin/views/ad-group.php:55
377
+ #, php-format
378
+ msgid "Search results for &#8220;%s&#8221;"
379
+ msgstr "Suchergebnisse für &#8220;%s&#8221;"
380
+
381
+ #: admin/views/ad-group.php:61
382
+ msgid ""
383
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
384
+ "display random ads in the frontend or run split tests, but also just for "
385
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
386
+ "ad can belong to multiple ad groups."
387
+ msgstr ""
388
+ "Anzeigen-Gruppen sind eine sehr flexible Methode, um Anzeigen zu bündeln. "
389
+ "Sie können sie verwenden um Zufallsanzeigen im Frontend anzuzeigen oder um "
390
+ "A/B-Tests durchzuführen, aber auch einfach nur zu Informationszwecken. Eine "
391
+ "Anzeigen-Gruppe kann mehrere Anzeigen enthalten, aber eine Anzeige kann auch "
392
+ "zu mehreren Anzeigen-Gruppen gehören."
393
+
394
+ #: admin/views/ad-group.php:69
395
+ msgid "How to display an Ad Group?"
396
+ msgstr "Wie kann eine Anzeigengruppe angezeigt werden?"
397
+
398
+ #: admin/views/ad-group.php:71
399
+ #, php-format
400
+ msgid ""
401
+ "Examples on how to display an ad group? Find more help and examples in the "
402
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
403
+ msgstr ""
404
+ "Suchen Sie Beispiele, wie eine Anzeigen-Gruppe veröffentlicht wird? Sie "
405
+ "finden Hilfe in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
406
+
407
+ #: admin/views/ad-group.php:72 admin/views/ad_info.php:6
408
+ #: admin/views/placements.php:51
409
+ msgid "shortcode"
410
+ msgstr "Shortcode"
411
+
412
+ #: admin/views/ad-group.php:73
413
+ msgid "To display an ad group with the ID 6 in content fields"
414
+ msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 im Beitrag."
415
+
416
+ #: admin/views/ad-group.php:75 admin/views/ad_info.php:9
417
+ #: admin/views/placements.php:54
418
+ msgid "template"
419
+ msgstr "Template"
420
+
421
+ #: admin/views/ad-group.php:76
422
+ msgid "To display an ad group with the ID 6 in template files"
423
+ msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 in Template-Dateien"
424
+
425
+ #: admin/views/ad-inject-metabox.php:1
426
+ msgid "Include ads on specific places automatically without shortcodes or functions."
427
+ msgstr "Anzeigen automatisch in Seiten einfügen."
428
+
429
+ #: admin/views/ad-inject-metabox.php:4 admin/views/ad-inject-metabox.php:32
430
+ msgid ""
431
+ "This feature is now provided through placements. Please convert the settings "
432
+ "made here to placements."
433
+ msgstr ""
434
+
435
+ #: admin/views/ad-inject-metabox.php:10
436
+ msgid "Include in Header (before closing </head> Tag, probably not visible)"
437
+ msgstr ""
438
+
439
+ #: admin/views/ad-inject-metabox.php:16
440
+ msgid "Include in Footer (before closing </body> Tag)"
441
+ msgstr ""
442
+
443
+ #: admin/views/ad-inject-metabox.php:22
444
+ msgid "Include before the post content"
445
+ msgstr ""
446
+
447
+ #: admin/views/ad-inject-metabox.php:28
448
+ msgid "Include after the post content"
449
+ msgstr ""
450
+
451
+ #: admin/views/ad-main-metabox.php:3
452
+ msgid "No ad types defined"
453
+ msgstr "Keine Anzeigentypen definiert"
454
+
455
+ #: admin/views/ad-output-metabox.php:1
456
+ msgid "Everything connected to the ads layout and output."
457
+ msgstr "Alles was mit dem Layout und der Ausgabe im Frontend zusammenhängt."
458
+
459
+ #: admin/views/ad-output-metabox.php:5
460
+ msgid "Position"
461
+ msgstr "Position"
462
+
463
+ #: admin/views/ad-output-metabox.php:6
464
+ msgid "- default -"
465
+ msgstr "- default -"
466
+
467
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:75
468
+ #: classes/ad_placements.php:31
469
+ msgid "default"
470
+ msgstr "Standard"
471
+
472
+ #: admin/views/ad-output-metabox.php:8
473
+ msgid "left"
474
+ msgstr "links"
475
+
476
+ #: admin/views/ad-output-metabox.php:11
477
+ msgid "center"
478
+ msgstr "mittig"
479
+
480
+ #: admin/views/ad-output-metabox.php:14
481
+ msgid "right"
482
+ msgstr "rechts"
483
+
484
+ #: admin/views/ad-output-metabox.php:19
485
+ msgid ""
486
+ "Check this if you don't want the following elements to float around the ad. "
487
+ "(adds a clearfix)"
488
+ msgstr ""
489
+ "Aktivieren Sie diese Funktion, wenn sich nachfolgende Elemente nicht um die "
490
+ "Anzeige legen sollen. (Fügt ein Clearfix hinzu)"
491
+
492
+ #: admin/views/ad-output-metabox.php:22
493
+ msgid "Margin"
494
+ msgstr "Abstand"
495
+
496
+ #: admin/views/ad-output-metabox.php:23
497
+ msgid "top:"
498
+ msgstr "oben:"
499
+
500
+ #: admin/views/ad-output-metabox.php:25
501
+ msgid "right:"
502
+ msgstr "rechts:"
503
+
504
+ #: admin/views/ad-output-metabox.php:27
505
+ msgid "bottom:"
506
+ msgstr "unten:"
507
+
508
+ #: admin/views/ad-output-metabox.php:29
509
+ msgid "left:"
510
+ msgstr "links:"
511
+
512
+ #: admin/views/ad-output-metabox.php:31
513
+ msgid "tip: use this to add a margin around the ad"
514
+ msgstr ""
515
+ "Tipp: Verwenden Sie dies, um einen Abstand zwischen Anzeige und Inhalt "
516
+ "einzufügen."
517
+
518
+ #: admin/views/ad-parameters-metabox.php:15 classes/ad_ajax_callbacks.php:48
519
+ msgid "size:"
520
+ msgstr "Größe:"
521
+
522
+ #: admin/views/ad-parameters-metabox.php:16 classes/ad_ajax_callbacks.php:49
523
+ msgid "width"
524
+ msgstr "Breite"
525
+
526
+ #: admin/views/ad-parameters-metabox.php:17 classes/ad_ajax_callbacks.php:50
527
+ msgid "height"
528
+ msgstr "Höhe"
529
+
530
+ #: admin/views/ad-submitbox-meta.php:4
531
+ msgid "Set expiry date"
532
+ msgstr "Verfallsdatum setzen"
533
+
534
+ #: admin/views/ad-visitor-metabox.php:1
535
+ msgid ""
536
+ "Display conditions that are based on the user. Use with caution on cached "
537
+ "websites."
538
+ msgstr ""
539
+ "Anzeigebedingungen, die sich auf den Benutzer beziehen. Auf gecachten "
540
+ "Webseiten bitte mit Vorsicht anwenden."
541
+
542
+ #: admin/views/ad-visitor-metabox.php:12
543
+ msgid "only on mobile devices"
544
+ msgstr "Nur auf mobilen Geräten"
545
+
546
+ #: admin/views/ad-visitor-metabox.php:16
547
+ msgid "not on mobile devices"
548
+ msgstr "Nicht auf mobilen Endgeräten"
549
+
550
+ #: admin/views/ad_info.php:2
551
+ msgid "How to use this Ad?"
552
+ msgstr "Wie kann ich diese Anzeige verwenden?"
553
+
554
+ #: admin/views/ad_info.php:5
555
+ #, php-format
556
+ msgid ""
557
+ "How to display the ad directly? Find more help and examples in the <a "
558
+ "href=\"%s\" target=\"_blank\">manual</a>"
559
+ msgstr ""
560
+ "Anzeige veröffentlichen? Hilfe und Beispiele finden Sie in der <a href=\"%s\" "
561
+ "target=\"_blank\">Anleitung</a>"
562
+
563
+ #: admin/views/ad_info.php:7
564
+ msgid "To display an ad in content fields"
565
+ msgstr "Anzeige im Text-Editor einbinden"
566
+
567
+ #: admin/views/ad_info.php:10
568
+ msgid "To display an ad in template files"
569
+ msgstr "Anzeige in Template-Dateien nutzen"
570
+
571
+ #: admin/views/debug.php:8
572
+ msgid "Work in progress"
573
+ msgstr "In Arbeit"
574
+
575
+ #: admin/views/debug.php:9
576
+ msgid ""
577
+ "This screen is work in progress. You can use the information if you "
578
+ "understand them, but there is nothing to do here yet."
579
+ msgstr ""
580
+ "Dieser Bildschirm ist in Arbeit. Sie können die Informationen verwenden, "
581
+ "wenn Sie sie verstehen, aber es gibt hier für Sie nichts zu tun."
582
+
583
+ #: admin/views/debug.php:16
584
+ msgid "Ad Condition Overview"
585
+ msgstr "Übersicht der Anzeigen-Bedingungen"
586
+
587
+ #: admin/views/overview.php:13
588
+ msgid ""
589
+ "Ads are the smallest unit, containing the content or a single ad to be "
590
+ "displayed."
591
+ msgstr "Anzeigen sind die kleinste Einheit und enthalten Inhalte und Layout."
592
+
593
+ #: admin/views/overview.php:14
594
+ #, php-format
595
+ msgid "You have published %d ads."
596
+ msgstr "Sie haben %d Anzeigen veröffentlicht."
597
+
598
+ #: admin/views/overview.php:15
599
+ #, php-format
600
+ msgid "<a href=\"%s\">Manage</a> them or <a href=\"%s\">create</a> a new one"
601
+ msgstr "Anzeigen <a href=\"%s\">verwalten</a> oder neue <a href=\"%s\">erstellen</a>"
602
+
603
+ #: admin/views/overview.php:23
604
+ msgid "recent ads"
605
+ msgstr "neueste Anzeigen"
606
+
607
+ #: admin/views/overview.php:33
608
+ msgid "Create your first ad"
609
+ msgstr "Erstellen Sie Ihre erste Anzeige"
610
+
611
+ #: admin/views/overview.php:41
612
+ msgid ""
613
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
614
+ "single spot."
615
+ msgstr ""
616
+ "Anzeigengruppen enthalten Anzeigen und werden verwendet, um mehrere Anzeigen "
617
+ "an einer Stelle zu rotieren."
618
+
619
+ #: admin/views/overview.php:42
620
+ #, php-format
621
+ msgid "You have %d groups."
622
+ msgstr "Sie haben %d Gruppen."
623
+
624
+ #: admin/views/overview.php:43 admin/views/overview.php:69
625
+ #, php-format
626
+ msgid "<a href=\"%s\">Manage</a> them."
627
+ msgstr "<a href=\"%s\">Verwalten</a>."
628
+
629
+ #: admin/views/overview.php:49
630
+ msgid "recent groups"
631
+ msgstr "neue Gruppen\n"
632
+
633
+ #: admin/views/overview.php:59
634
+ msgid "Create your first group"
635
+ msgstr "Erstellen Sie Ihre erste Gruppe"
636
+
637
+ #: admin/views/overview.php:67
638
+ msgid "Ad Placements are the best way to manage where to display ads and groups."
639
+ msgstr ""
640
+ "Anzeigen-Platzierungen sind am besten geeignet um zu bestimmen, wo Anzeigen "
641
+ "und Gruppen veröffentlicht werden."
642
+
643
+ #: admin/views/overview.php:68
644
+ #, php-format
645
+ msgid "You have %d placements."
646
+ msgstr "Sie haben %d Platzierungen."
647
+
648
+ #: admin/views/overview.php:75
649
+ msgid "recent placements"
650
+ msgstr "Neue Platzierungen"
651
+
652
+ #: admin/views/overview.php:85
653
+ msgid "Create your first placement"
654
+ msgstr "Erstellen Sie Ihre erste Platzierung"
655
+
656
+ #: admin/views/overview.php:93
657
+ msgid "Manual and Support"
658
+ msgstr "Anleitung und Support"
659
+
660
+ #: admin/views/overview.php:94
661
+ msgid "Need some help? These are your options"
662
+ msgstr "Hier finden Sie Hilfe."
663
+
664
+ #: admin/views/overview.php:96
665
+ #, php-format
666
+ msgid "Visit the <a href=\"%s\">plugin homepage</a>"
667
+ msgstr "Besuchen Sie die <a href=\"%s\">Plugin-Homepage</a>"
668
+
669
+ #: admin/views/overview.php:97
670
+ #, php-format
671
+ msgid "Have a look into the <a href=\"%s\">manual</a>"
672
+ msgstr "Schlagen Sie im <a href=\"%s\">Handbuch</a> nach."
673
+
674
+ #: admin/views/overview.php:98
675
+ #, php-format
676
+ msgid "Ask a question to other users in the <a href=\"%s\">wordpress.org forum</a>"
677
+ msgstr "Fragen Sie andere Nutzer auf <a href=\"%s\">wordpress.org</a>"
678
+
679
+ #: admin/views/overview.php:99
680
+ #, php-format
681
+ msgid "<a href=\"%s\">Hire the developer</a>"
682
+ msgstr "<a href=\"%s\">Engagieren Sie den Entwickler</a>"
683
+
684
+ #: admin/views/overview.php:104
685
+ msgid "Want to boost your ad income? Try these add-ons"
686
+ msgstr "Holen Sie mit diesen Erweiterungen mehr aus Ihren Anzeigeneinnahmen."
687
+
688
+ #: admin/views/placements.php:14
689
+ msgid ""
690
+ "Placements are physically places in your theme and posts. You can use them "
691
+ "if you plan to change ads and ad groups on the same place without the need "
692
+ "to change your templates."
693
+ msgstr ""
694
+ "Platzierungen sind Stellen in Ihrem Theme und in den Beiträgen. Sie können "
695
+ "sie verwenden, wenn Sie Anzeigen und Anzeigengruppen später an einer "
696
+ "Position austauschen möchten, ohne eine Änderung der Templates oder Seiten-"
697
+ "Inhalte vorzunehmen."
698
+
699
+ #: admin/views/placements.php:15
700
+ #, php-format
701
+ msgid ""
702
+ "See also the manual for more information on <a href=\"%s\">placements</a> and "
703
+ "<a href=\"%s\">auto injection</a>."
704
+ msgstr ""
705
+ "Weitere Informationen finden Sie in der Anleitung (engl.) unter <a "
706
+ "href=\"%s\">Placements</a> und <a href=\"%s\">Auto Injection</a>."
707
+
708
+ #: admin/views/placements.php:18 admin/views/placements.php:63
709
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:16
710
+ msgid "Type"
711
+ msgstr "Typ"
712
+
713
+ #: admin/views/placements.php:27
714
+ msgid "What is this?"
715
+ msgstr "Was ist das?"
716
+
717
+ #: admin/views/placements.php:29
718
+ msgid ""
719
+ "Placement types define how the placements works and where it is going to be "
720
+ "displayed."
721
+ msgstr ""
722
+ "Platzierungstypen definieren, wie die Platzierungen arbeiten und wo sie "
723
+ "angezeigt werden."
724
+
725
+ #: admin/views/placements.php:42
726
+ msgid ""
727
+ "Individual identifier. Allowed are alphanumeric signs (lower case) and "
728
+ "hyphen."
729
+ msgstr ""
730
+ "Individuelle Kennung. Erlaubt sind alphanumerische Zeichen (Kleinbuchstaben) "
731
+ "und Bindestriche."
732
+
733
+ #: admin/views/placements.php:43
734
+ msgid "You can assign Ads and Groups after you created the placement."
735
+ msgstr ""
736
+ "Sie können Anzeigen und Gruppen zuweisen, nachdem Sie die Platzierung "
737
+ "erstellt haben."
738
+
739
+ #: admin/views/placements.php:48
740
+ msgid "How to use the <i>default</i> Ad Placement?"
741
+ msgstr "Wie wird die <i>Standard</i>-Anzeigenplatzierung angewendet?"
742
+
743
+ #: admin/views/placements.php:50
744
+ #, php-format
745
+ msgid ""
746
+ "Examples on how to use the <i>default</i> ad placement? Find more help and "
747
+ "examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
748
+ msgstr ""
749
+ "Suchen Sie Beispiele, wie die <i>Standard</i>-Anzeigenplatzierung zu nutzen "
750
+ "ist? Sie finden Hilfe in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
751
+
752
+ #: admin/views/placements.php:52
753
+ msgid "To use an ad placement with the ID skyscraper_left in content fields"
754
+ msgstr ""
755
+ "Zum Benutzen einer Anzeigen-Platzierung mit der ID skyscraper_left in "
756
+ "Content-Feldern"
757
+
758
+ #: admin/views/placements.php:55
759
+ msgid "To use an ad placement with the ID skyscraper_left in template files"
760
+ msgstr ""
761
+ "Zum Benutzen einer Anzeigen-Platzierung mit der ID Skyscraper_left in "
762
+ "Template-Dateien"
763
+
764
+ #: admin/views/placements.php:80
765
+ msgid "Item"
766
+ msgstr "Anzeige"
767
+
768
+ #: admin/views/placements.php:102
769
+ msgid "Inject"
770
+ msgstr "Einfügen"
771
+
772
+ #: admin/views/placements.php:103
773
+ msgid "after"
774
+ msgstr "nach"
775
+
776
+ #: admin/views/placements.php:103
777
+ msgid "before"
778
+ msgstr "vor"
779
+
780
+ #: admin/views/placements.php:134
781
+ msgid "Save Placements"
782
+ msgstr "Platzierungen sichern"
783
+
784
+ #: admin/views/post_ad_settings_metabox.php:3
785
+ msgid "Disable ads on this page"
786
+ msgstr "Anzeigen auf dieser Seite deaktivieren."
787
+
788
+ #: admin/views/settings.php:26
789
+ msgid "Debug Page"
790
+ msgstr "Debug-Seite"
791
+
792
+ #: admin/views/settings.php:27
793
+ msgid "Advanced Ads on WordPress.org"
794
+ msgstr "Advanced Ads auf WordPress.org"
795
+
796
+ #: admin/views/settings.php:27
797
+ msgid "Advanced Ads on wp.org"
798
+ msgstr "Advanced Ads auf wp.org"
799
+
800
+ #: admin/views/settings.php:28
801
+ msgid "the company behind Advanced Ads"
802
+ msgstr "das Unternehmen hinter Advanced Ads"
803
+
804
+ #: admin/views/settings.php:28
805
+ msgid "webgilde GmbH"
806
+ msgstr "webgilde GmbH"
807
+
808
+ #: admin/views/settings_disable_ads.php:3
809
+ msgid "Disable all ads in frontend"
810
+ msgstr "Alle Anzeigen im Frontend deaktivieren"
811
+
812
+ #: admin/views/settings_disable_ads.php:4
813
+ msgid ""
814
+ "Use this option to disable all ads in the frontend, but still be able to use "
815
+ "the plugin."
816
+ msgstr ""
817
+ "Benutzen Sie diese Einstellung um alle Anzeigen im Frontend zu deaktivieren "
818
+ "und das Plugin dennoch weiterhin zu nutzen."
819
+
820
+ #: admin/views/settings_disable_ads.php:8
821
+ msgid "Disable ads on 404 error pages"
822
+ msgstr "Alle Anzeigen auf 404-Fehlerseiten deaktivieren"
823
+
824
+ #: admin/views/settings_disable_ads.php:12
825
+ msgid "Disable ads on non-singular pages"
826
+ msgstr "Alle Anzeigen auf Nicht-Einzelseiten deaktivieren"
827
+
828
+ #: admin/views/settings_disable_ads.php:13
829
+ msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
830
+ msgstr ""
831
+ "z.B. Archive wie Kategorien, Schlagwörter, Autoren, Übersicht auf der "
832
+ "Startseite"
833
+
834
+ #: admin/class-advanced-ads-admin.php:428
835
+ msgid "Ad Type"
836
+ msgstr "Anzeigen-Typ"
837
+
838
+ #: admin/class-advanced-ads-admin.php:431
839
+ msgid "Ad Parameters"
840
+ msgstr "Anzeigen-Parameter"
841
+
842
+ #: admin/class-advanced-ads-admin.php:434
843
+ msgid "Layout / Output"
844
+ msgstr "Layout / Ausgabe"
845
+
846
+ #: admin/class-advanced-ads-admin.php:440
847
+ #, php-format
848
+ msgid "A \"%s\" display condition does not exist"
849
+ msgstr "Eine \"%s\"- Anzeigebedingung existiert nicht"
850
+
851
+ #: classes/ad_placements.php:32
852
+ msgid "Manual placement."
853
+ msgstr "Manuelle Platzierung."
854
+
855
+ #: classes/ad_placements.php:35
856
+ msgid "header"
857
+ msgstr "Header"
858
+
859
+ #: classes/ad_placements.php:36
860
+ msgid "Injected in Header (before closing </head> Tag, often not visible)."
861
+ msgstr ""
862
+ "Injiziert in den Header, und zwar vor das schließende </head>-Tag (oft nicht "
863
+ "sichtbar)."
864
+
865
+ #: classes/ad_placements.php:39
866
+ msgid "footer"
867
+ msgstr "Footer"
868
+
869
+ #: classes/ad_placements.php:40
870
+ msgid "Injected in Footer (before closing </body> Tag)."
871
+ msgstr "Injiziert in den Footer, und zwar vor das schließende </body>-Tag)."
872
+
873
+ #: classes/ad_placements.php:43
874
+ msgid "before post"
875
+ msgstr "Vor dem Beitrag"
876
+
877
+ #: classes/ad_placements.php:44
878
+ msgid "Injected before the post content."
879
+ msgstr "Injiziert vor den Beitrags-Inhalt."
880
+
881
+ #: classes/ad_placements.php:47
882
+ msgid "after post"
883
+ msgstr "Nach dem Beitrag"
884
+
885
+ #: classes/ad_placements.php:48
886
+ msgid "Injected after the post content."
887
+ msgstr "Injiziert hinter den Beitrags-Inhalt."
888
+
889
+ #: classes/ad_placements.php:51
890
+ msgid "post content"
891
+ msgstr "Im Beitrag"
892
+
893
+ #: classes/ad_placements.php:52
894
+ msgid ""
895
+ "Injected into the post content. You can choose the paragraph after which the "
896
+ "ad content is displayed."
897
+ msgstr ""
898
+ "Injiziert in den Beitrags-Inhalt. Sie können den Absatz wählen, nach dem der "
899
+ "Inhalt angezeigt wird."
900
+
901
+ #: classes/ad_placements.php:76
902
+ msgid "Slug already exists."
903
+ msgstr "Slug bereits vorhanden."
904
+
905
+ #: classes/ad_placements.php:163
906
+ #, php-format
907
+ msgid "paragraph (%s)"
908
+ msgstr "Absatz (%s)"
909
+
910
+ #: classes/ad_placements.php:164
911
+ #, php-format
912
+ msgid "headline 2 (%s)"
913
+ msgstr "Überschrift 2 (%s)"
914
+
915
+ #: classes/ad_placements.php:165
916
+ #, php-format
917
+ msgid "headline 3 (%s)"
918
+ msgstr "Überschrift 3 (%s)"
919
+
920
+ #: classes/ad_placements.php:166
921
+ #, php-format
922
+ msgid "headline 4 (%s)"
923
+ msgstr "Überschrift 4 (%s)"
924
+
925
+ #: classes/ad_type_content.php:35
926
+ msgid "Rich Content"
927
+ msgstr "Rich Content"
928
+
929
+ #: classes/ad_type_content.php:36
930
+ msgid ""
931
+ "The full content editor from WordPress with all features like shortcodes, "
932
+ "image upload or styling, but also simple text/html mode for scripts and code."
933
+ msgstr ""
934
+ "Der vollständige Content-Editor von Wordpress mit allen Funktionen wie "
935
+ "Textbearbeitung, Shortcodes, Bild-Upload oder -Styling."
936
+
937
+ #: classes/ad_type_content.php:63
938
+ msgid "Please <strong>save the ad</strong> before changing it to the content type."
939
+ msgstr ""
940
+ "Bitte <strong>speichern Sie die Anzeige</strong>, bevor Sie den Anzeigentyp "
941
+ "wechseln."
942
+
943
+ #: classes/ad_type_content.php:66
944
+ msgid "Save Draft"
945
+ msgstr "Entwurf speichern"
946
+
947
+ #: classes/ad_type_plain.php:32
948
+ msgid ""
949
+ "Simple text editor without any filters. You might use it to display "
950
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
951
+ "content field magic does not work here."
952
+ msgstr ""
953
+ "Einfacher Text-Editor ohne Filter. Sie können ihn zur Anzeige von "
954
+ "ungefiltertem Inhalt, PHP-Code oder JavaScript benutzen. Shortcodes und "
955
+ "ähnliche WordPress-Funktionen funktionieren hier nicht."
956
+
957
+ #: classes/ad_type_plain.php:55
958
+ msgid "Insert plain text or code into this field."
959
+ msgstr "Fügen Sie Text oder Code in dieses Feld ein."
960
+
961
+ #: classes/widget.php:19
962
+ msgid "Display Ads and Ad Groups."
963
+ msgstr "Anzeigen und Anzeigen-Gruppen zeigen."
964
+
965
+ #: classes/widget.php:51
966
+ msgid "Title:"
967
+ msgstr "Titel:"
968
+
969
+ #: includes/array_ad_conditions.php:33
970
+ msgid "Post Types"
971
+ msgstr "Beitrags-Typen"
972
+
973
+ #: includes/array_ad_conditions.php:40
974
+ msgid ""
975
+ "Choose terms from public category, tag and other taxonomies a post must "
976
+ "belong to in order to have ads."
977
+ msgstr ""
978
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
979
+ " zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
980
+
981
+ #: includes/array_ad_conditions.php:45
982
+ msgid "Category Archives"
983
+ msgstr "Kategorie-Archive"
984
+
985
+ #: includes/array_ad_conditions.php:46
986
+ msgid "comma seperated IDs of category archives"
987
+ msgstr "Komma-getrennte IDs der Kategorie Archive"
988
+
989
+ #: includes/array_ad_conditions.php:51
990
+ msgid "Individual Posts, Pages and Public Post Types"
991
+ msgstr "Einzelne Beiträge, Seiten und öffentliche Beitrag-Typen"
992
+
993
+ #: includes/array_ad_conditions.php:57
994
+ msgid "Home Page"
995
+ msgstr "Homepage"
996
+
997
+ #: includes/array_ad_conditions.php:58
998
+ msgid "(don't) show on Home page"
999
+ msgstr "(nicht) auf Homepage zeigen"
1000
+
1001
+ #: includes/array_ad_conditions.php:62
1002
+ msgid "Singular Pages"
1003
+ msgstr "Einzelseiten"
1004
+
1005
+ #: includes/array_ad_conditions.php:63
1006
+ msgid "(don't) show on singular pages/posts"
1007
+ msgstr "(Wird nicht) angezeigt auf singulären Seiten und Beiträgen"
1008
+
1009
+ #: includes/array_ad_conditions.php:67
1010
+ msgid "Archive Pages"
1011
+ msgstr "Archiv-Seiten"
1012
+
1013
+ #: includes/array_ad_conditions.php:68
1014
+ msgid "(don't) show on any type of archive page (category, tag, author and date)"
1015
+ msgstr ""
1016
+ "(Wird nicht) angezeigt auf jeder Art von Archiv-Seite (Kategorie, Tag, Autor "
1017
+ "und Datum)"
1018
+
1019
+ #: includes/array_ad_conditions.php:73
1020
+ msgid "(don't) show on search result pages"
1021
+ msgstr "(Wird nicht) angezeigt auf Suchergebnis-Seiten"
1022
+
1023
+ #: includes/array_ad_conditions.php:77
1024
+ msgid "404 Page"
1025
+ msgstr "404-Seite"
1026
+
1027
+ #: includes/array_ad_conditions.php:78
1028
+ msgid "(don't) show on 404 error page"
1029
+ msgstr "(nicht) auf 404-Fehlerseite zeigen"
1030
+
1031
+ #: includes/array_ad_conditions.php:82
1032
+ msgid "Attachment Pages"
1033
+ msgstr "Anhang-Seiten"
1034
+
1035
+ #: includes/array_ad_conditions.php:83
1036
+ msgid "(don't) show on attachment pages"
1037
+ msgstr "(Wird nicht) auf Anhang-Seiten angezeigt"
1038
+
1039
+ #: admin/class-advanced-ads-admin.php:443
1040
+ msgid "Auto injection"
1041
+ msgstr "Auto-Platzierung"
1042
+
1043
+ #: admin/class-advanced-ads-admin.php:609
1044
+ msgid "General"
1045
+ msgstr "Allgemein"
1046
+
1047
+ #: admin/class-advanced-ads-admin.php:617
1048
+ msgid "Disable ads"
1049
+ msgstr "Anzeigen auf dieser Seite deaktivieren."
1050
+
1051
+ #: admin/class-advanced-ads-admin.php:625
1052
+ msgid "Hide ads for logged in users"
1053
+ msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
1054
+
1055
+ #: admin/class-advanced-ads-admin.php:633
1056
+ msgid "Use advanced JavaScript"
1057
+ msgstr "Advanced-JavaScript benutzen"
1058
+
1059
+ #: admin/class-advanced-ads-admin.php:681
1060
+ msgid "Subscriber"
1061
+ msgstr "Abonnent"
1062
+
1063
+ #: admin/class-advanced-ads-admin.php:682
1064
+ msgid "Contributor"
1065
+ msgstr "Mitarbeiter"
1066
+
1067
+ #: admin/class-advanced-ads-admin.php:683
1068
+ msgid "Author"
1069
+ msgstr "Autor"
1070
+
1071
+ #: admin/class-advanced-ads-admin.php:684
1072
+ msgid "Editor"
1073
+ msgstr "Redakteur"
1074
+
1075
+ #: admin/class-advanced-ads-admin.php:685
1076
+ msgid "Admin"
1077
+ msgstr "Admin"
1078
+
1079
+ #: admin/class-advanced-ads-admin.php:693
1080
+ msgid "Choose the lowest role a user must have in order to not see any ads."
1081
+ msgstr ""
1082
+ "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
1083
+ "Anzeigen zu sehen."
1084
+
1085
+ #: admin/class-advanced-ads-admin.php:706
1086
+ #: public/class-advanced-ads.php:530
1087
+ msgctxt "ad group general name"
1088
+ msgid "Ad Groups"
1089
+ msgstr "Anzeigen-Gruppen"
1090
+
1091
+ #: public/class-advanced-ads.php:531
1092
+ msgctxt "ad group singular name"
1093
+ msgid "Ad Group"
1094
+ msgstr "Anzeigen-Gruppe"
1095
+
1096
+ #: public/class-advanced-ads.php:567 public/class-advanced-ads.php:583
1097
+ msgid "Ad"
1098
+ msgstr "Anzeige"
1099
+
1100
+ #: public/class-advanced-ads.php:634
1101
+ #, php-format
1102
+ msgid "Advanced Ads Error: %s"
1103
+ msgstr "Advanced-Ads-Fehler: %s"
1104
+
1105
+ #: admin/class-advanced-ads-admin.php:753
1106
+ msgid "Ad Details"
1107
+ msgstr "Anzeigeneinstellungen"
1108
+
1109
+ #: admin/class-advanced-ads-admin.php:806
1110
+ msgid "Ad Settings"
1111
+ msgstr "Anzeigen-Einstellungen"
1112
+
1113
+ #: admin/class-advanced-ads-admin.php:881
1114
+ msgid "Ads Dashboard"
1115
+ msgstr "Anzeigen-Dashboard"
1116
+
1117
+ #: admin/class-advanced-ads-admin.php:892
1118
+ msgid "Tutorials and News"
1119
+ msgstr "Anleitungen und Neuigkeiten\n"
1120
+
1121
+ #: admin/class-advanced-ads-admin.php:902
1122
+ #, php-format
1123
+ msgid "%d ads – <a href=\"%s\">manage</a> – <a href=\"%s\">new</a>"
1124
+ msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> – <a href=\"%s\">neu</a>"
1125
+
1126
+ #: admin/class-advanced-ads-admin.php:913
1127
+ msgid "plugin manual and homepage"
1128
+ msgstr "Plugin-Anleitung und Homepage"
1129
+
1130
+ #: admin/class-advanced-ads-admin.php:221 admin/views/overview.php:66
1131
+ msgid "Visitor Conditions"
1132
+ msgstr "Besucher-Bedingungen"
1133
+
1134
+ #: admin/includes/class-ad-groups-list-table.php:99
1135
+ #: admin/includes/class-ad-groups-list-table.php:167
1136
+ #: public/class-advanced-ads.php:570
1137
+ msgid "Edit"
1138
+ msgstr "Bearbeiten"
1139
+
1140
+ #: admin/includes/class-display-condition-callbacks.php:121
1141
+ #: admin/includes/class-display-condition-callbacks.php:208
1142
+ msgid "Hide from here"
1143
+ msgstr "Hier ausblenden"
1144
+
1145
+ #: admin/includes/class-display-condition-callbacks.php:267
1146
+ msgid "ignore the list"
1147
+ msgstr "Liste ignorieren"
1148
+
1149
+ #: admin/includes/class-display-condition-callbacks.php:268
1150
+ msgid "display the ad only there"
1151
+ msgstr "Die Anzeige nur hier einblenden"
1152
+
1153
+ #: admin/includes/class-display-condition-callbacks.php:269
1154
+ msgid "hide the ad here"
1155
+ msgstr "Die Anzeige hier ausblenden"
1156
+
1157
+ #: admin/includes/class-display-condition-callbacks.php:277
1158
+ msgid "Update warning"
1159
+ msgstr "Update-Warnung"
1160
+
1161
+ #: admin/includes/class-display-condition-callbacks.php:279
1162
+ msgid "Your old values are:"
1163
+ msgstr "Ihre alten Werte sind:"
1164
+
1165
+ #: admin/includes/class-display-condition-callbacks.php:322
1166
+ msgid "new"
1167
+ msgstr "neu"
1168
+
1169
+ #: admin/includes/class-list-table.php:186
1170
+ msgid "No items found."
1171
+ msgstr "Keine Elemente gefunden."
1172
+
1173
+ #: admin/includes/class-list-table.php:404
1174
+ msgid "Show all dates"
1175
+ msgstr "Alle Termine anzeigen"
1176
+
1177
+ #: admin/includes/class-list-table.php:433
1178
+ msgid "List View"
1179
+ msgstr "Listenansicht"
1180
+
1181
+ #: admin/includes/class-list-table.php:434
1182
+ msgid "Excerpt View"
1183
+ msgstr "Teilansicht"
1184
+
1185
+ #: admin/includes/class-list-table.php:579
1186
+ msgid "Go to the last page"
1187
+ msgstr "Zur letzten Seite gehen"
1188
+
1189
+ #: admin/includes/class-list-table.php:715
1190
+ msgid "Select All"
1191
+ msgstr "Alle wählen"
1192
+
1193
+ #: admin/views/ad-display-metabox.php:9
1194
+ msgid "Display ad everywhere"
1195
+ msgstr "Anzeige überall zeigen"
1196
+
1197
+ #: admin/views/ad-display-metabox.php:10
1198
+ msgid "Set display conditions"
1199
+ msgstr "Anzeige-Bedingungen festlegen"
1200
+
1201
+ #: admin/views/ad-display-metabox.php:32
1202
+ msgid "Other conditions"
1203
+ msgstr "Andere Bedingungen"
1204
+
1205
+ #: admin/views/ad-display-metabox.php:38
1206
+ msgid "show"
1207
+ msgstr "Zeigen"
1208
+
1209
+ #: admin/views/ad-display-metabox.php:39
1210
+ msgid "hide"
1211
+ msgstr "Verstecken"
1212
+
1213
+ #: admin/views/ad-display-metabox.php:59
1214
+ msgid "clear"
1215
+ msgstr "leeren"
1216
+
1217
+ #: admin/views/ad-display-metabox.php:66
1218
+ msgid "show debug output"
1219
+ msgstr "Zeige Ergebnis der Fehlerbehebung"
1220
+
1221
+ #: admin/views/ad-group-ads-inline-form.php:25
1222
+ #: admin/views/ad-group-edit.php:70 classes/ad_type_content.php:68
1223
+ #: classes/ad_type_content.php:69
1224
+ msgid "Update"
1225
+ msgstr "Update"
1226
+
1227
+ #: admin/views/ad-group-edit.php:33
1228
+ msgctxt "Taxonomy Name"
1229
+ msgid "Name"
1230
+ msgstr "Name"
1231
+
1232
+ #: admin/views/ad-group-edit.php:45
1233
+ msgctxt "Taxonomy Parent"
1234
+ msgid "Parent"
1235
+ msgstr "Elternelement"
1236
+
1237
+ #: admin/views/ad-visitor-metabox.php:8
1238
+ msgid "Display on all devices"
1239
+ msgstr "Auf allen Geräten anzeigen"
1240
+
1241
+ #: admin/views/overview.php:103
1242
+ msgid "Add-ons"
1243
+ msgstr "Erweiterungen"
1244
+
1245
+ #: admin/views/overview.php:111
1246
+ msgid "See Add-Ons"
1247
+ msgstr "Erweiterungen anzeigen"
1248
+
1249
+ #: admin/views/placements.php:16
1250
+ msgid "Create a new placement"
1251
+ msgstr "Neue Platzierung erstellen"
1252
+
1253
+ #: admin/views/placements.php:38 admin/views/placements.php:62
1254
+ msgid "Name"
1255
+ msgstr "Name"
1256
+
1257
+ #: admin/views/placements.php:44
1258
+ msgid "Save New Placement"
1259
+ msgstr "Neue Platzierung sichern"
1260
+
1261
+ #: admin/views/placements.php:65
1262
+ msgid "Options"
1263
+ msgstr "Optionen"
1264
+
1265
+ #: admin/views/placements.php:82 classes/widget.php:57
1266
+ msgid "--empty--"
1267
+ msgstr "--leer--"
1268
+
1269
+ #: admin/views/placements.php:128
1270
+ msgid "remove placement"
1271
+ msgstr "Platzierung entfernen"
1272
+
1273
+ #: classes/ad_placements.php:74
1274
+ msgid "Slug can't be empty."
1275
+ msgstr "Der Slug darf nicht leer sein."
1276
+
1277
+ #: classes/ad_type_plain.php:31
1278
+ msgid "Plain Text and Code"
1279
+ msgstr "Nur Text und Code"
1280
+
1281
+ #: includes/array_ad_conditions.php:39
1282
+ msgid "Categories, Tags and Taxonomies"
1283
+ msgstr "Kategorien, Schlagworte und Taxonomien"
1284
+
1285
+ #: includes/array_ad_conditions.php:72
1286
+ msgid "Search Results"
1287
+ msgstr "Ergebnisse suchen"
1288
+
1289
+ #: public/class-advanced-ads.php:532
1290
+ msgid "Search Ad Groups"
1291
+ msgstr "Anzeigen-Gruppen suchen"
1292
+
1293
+ #: public/class-advanced-ads.php:533
1294
+ msgid "All Ad Groups"
1295
+ msgstr "Alle Anzeigen-Gruppen"
1296
+
1297
+ #: public/class-advanced-ads.php:534
1298
+ msgid "Parent Ad Groups"
1299
+ msgstr "Parent-Anzeigen-Gruppen"
1300
+
1301
+ #: public/class-advanced-ads.php:535
1302
+ msgid "Parent Ad Groups:"
1303
+ msgstr "Parent-Anzeigen-Gruppen"
1304
+
1305
+ #: public/class-advanced-ads.php:536
1306
+ msgid "Edit Ad Group"
1307
+ msgstr "Bearbeite Anzeigen-Gruppe"
1308
+
1309
+ #: public/class-advanced-ads.php:537
1310
+ msgid "Update Ad Group"
1311
+ msgstr "Aktualisiere Anzeigen-Gruppe"
1312
+
1313
+ #: public/class-advanced-ads.php:538
1314
+ msgid "Add New Ad Group"
1315
+ msgstr "Neue Anzeigengruppe hinzufügen"
1316
+
1317
+ #: public/class-advanced-ads.php:539
1318
+ msgid "New Ad Groups Name"
1319
+ msgstr "Neuer Anzeigen-Gruppen-Name"
1320
+
1321
+ #: public/class-advanced-ads.php:541
1322
+ msgid "No Ad Group found"
1323
+ msgstr "Keine Anzeigen-Gruppe gefunden"
1324
+
1325
+ #: public/class-advanced-ads.php:568 public/class-advanced-ads.php:572
1326
+ msgid "New Ad"
1327
+ msgstr "Neue Anzeige"
1328
+
1329
+ #: public/class-advanced-ads.php:569
1330
+ msgid "Add New Ad"
1331
+ msgstr "Neue Anzeige hinzufügen"
1332
+
1333
+ #: public/class-advanced-ads.php:571
1334
+ msgid "Edit Ad"
1335
+ msgstr "Anzeige bearbeiten"
1336
+
1337
+ #: public/class-advanced-ads.php:573
1338
+ msgid "View"
1339
+ msgstr "Ansicht"
1340
+
1341
+ #: public/class-advanced-ads.php:574
1342
+ msgid "View the Ad"
1343
+ msgstr "Anzeige ansehen"
1344
+
1345
+ #: public/class-advanced-ads.php:575
1346
+ msgid "Search Ads"
1347
+ msgstr "Anzeigen suchen"
1348
+
1349
+ #: public/class-advanced-ads.php:576
1350
+ msgid "No Ads found"
1351
+ msgstr "Keine Anzeigen gefunden"
1352
+
1353
+ #: public/class-advanced-ads.php:577
1354
+ msgid "No Ads found in Trash"
1355
+ msgstr "Keine Anzeigen im Papierkorb gefunden"
1356
+
1357
+ #: public/class-advanced-ads.php:578
1358
+ msgid "Parent Ad"
1359
+ msgstr "Übergeordnete Anzeige"
1360
+
1361
+ #: admin/includes/class-ad-groups-list-table.php:57
1362
+ #, php-format
1363
+ msgid "Select %s"
1364
+ msgstr "%s auswählen"
1365
+
1366
+ #: admin/includes/class-ad-groups-list-table.php:188
1367
+ #: admin/views/placements.php:40 admin/views/placements.php:64
1368
+ msgid "ID"
1369
+ msgstr "ID"
1370
+
1371
+ #: admin/includes/class-display-condition-callbacks.php:88
1372
+ msgid "Display here"
1373
+ msgstr "Hier anzeigen"
1374
+
1375
+ #: admin/includes/class-list-table.php:460
1376
+ #, php-format
1377
+ msgid "%s pending"
1378
+ msgstr "%s anstehend"
1379
+
1380
+ #: admin/includes/class-list-table.php:568
1381
+ #, php-format
1382
+ msgctxt "paging"
1383
+ msgid "%1$s of %2$s"
1384
+ msgstr "%1$s von %2$s"
1385
+
1386
+ #: admin/views/ad-submitbox-meta.php:11
1387
+ #, php-format
1388
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1389
+ msgid "%1$s-%2$s"
1390
+ msgstr "%1$s-%2$s"
1391
+
1392
+ #: admin/views/ad-submitbox-meta.php:20
1393
+ #, php-format
1394
+ msgctxt "order of expiry date fields 1: month, 2: day, 3: year"
1395
+ msgid "%1$s %2$s, %3$s"
1396
+ msgstr "%2$s %1$s %3$s"
1397
+
1398
+ #: admin/views/ad_info.php:1
1399
+ #, php-format
1400
+ msgid "Ad Id: %s"
1401
+ msgstr "Anzeigen-ID: %s"
1402
+
1403
+ #: admin/class-advanced-ads-admin.php:437
1404
+ msgid "Display Conditions"
1405
+ msgstr "Anzeige-Bedingungen"
1406
+
1407
+ #: admin/class-advanced-ads-admin.php:680
1408
+ msgid "(display to all)"
1409
+ msgstr "(für alle sichtbar)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/gadsense/includes/class-ad-type-adsense.php CHANGED
@@ -184,7 +184,7 @@ class Advads_Ad_Type_Adsense extends Advads_Ad_Type_Abstract {
184
 
185
  protected function append_defaut_responsive_content(&$output, $pub_id, $slot_id) {
186
  $output .= '<ins class="adsbygoogle" ';
187
- $output .= 'style="display:block;"';
188
  $output .= 'data-ad-client="ca-' . $pub_id . '" ' . "\n";
189
  $output .= 'data-ad-slot="' . $slot_id . '" ' . "\n";
190
  $output .= 'data-ad-format="auto"></ins>' . "\n";
184
 
185
  protected function append_defaut_responsive_content(&$output, $pub_id, $slot_id) {
186
  $output .= '<ins class="adsbygoogle" ';
187
+ $output .= 'style="display:block;" ';
188
  $output .= 'data-ad-client="ca-' . $pub_id . '" ' . "\n";
189
  $output .= 'data-ad-slot="' . $slot_id . '" ' . "\n";
190
  $output .= 'data-ad-format="auto"></ins>' . "\n";
public/class-advanced-ads.php CHANGED
@@ -19,13 +19,13 @@
19
  */
20
  class Advanced_Ads {
21
  /**
22
- * Plugin version, used for cache-busting of style and script file references.
23
  *
24
  * @since 1.0.0
25
  * @var string
26
  */
27
 
28
- const VERSION = '1.4.6';
29
 
30
  /**
31
  * post type slug
19
  */
20
  class Advanced_Ads {
21
  /**
22
+ * Plugin version, used for cache-busting of style and script file references and update notices
23
  *
24
  * @since 1.0.0
25
  * @var string
26
  */
27
 
28
+ const VERSION = '1.4.7';
29
 
30
  /**
31
  * post type slug
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webzunft
3
  Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
4
  Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
5
  Requires at least: WP 3.5, PHP 5.3
6
- Tested up to: 4.1.1
7
- Stable tag: 1.4.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -169,8 +169,19 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
169
 
170
  == Changelog ==
171
 
 
 
 
 
 
 
 
 
 
172
  = 1.4.6 =
173
 
 
 
174
  = 1.4.5 =
175
 
176
  * optimized code for some WordPress coding standards
3
  Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
4
  Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
5
  Requires at least: WP 3.5, PHP 5.3
6
+ Tested up to: 4.2 beta
7
+ Stable tag: 1.4.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
169
 
170
  == Changelog ==
171
 
172
+ = 1.4.7 =
173
+
174
+ * COOL: beautiful selection of terms in display conditions
175
+ * search for terms if there are more than 50 in the current taxonomy
176
+ * updated more messages in the dashboard
177
+ * fixed expiry date discrepancy
178
+ * minor general code fixes
179
+ * minor fix for AdSense ads
180
+
181
  = 1.4.6 =
182
 
183
+ * hotfix
184
+
185
  = 1.4.5 =
186
 
187
  * optimized code for some WordPress coding standards