Advanced Ads - Version 1.3

Version Description

  • COOL: layout options for ads, e.g. to set floating and margins (see the manual)
  • list ad groups before ads when selecting them for a placement
  • fixed error when removing an ad that is still in a group
  • fixed possible translation issue
  • added partial German translation
  • added Italien translation (thanky to sangkavr)
Download this release

Release Info

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

Code changes from version 1.2.7 to 1.3

admin/assets/css/admin.css CHANGED
@@ -52,6 +52,13 @@
52
  .post-type-advanced_ads #advanced-ads-ad-parameters-size p { float: left; margin: 0 1em 0 0; font-weight: bold; }
53
  .post-type-advanced_ads #advanced-ads-ad-parameters-size label + label { margin-left: 1em; }
54
  .post-type-advanced_ads #advanced-ads-ad-parameters-size input { width: 4em; margin-left: .5em; }
 
 
 
 
 
 
 
55
 
56
  .advads-debug-output legend { text-decoration: underline; cursor: pointer; }
57
 
52
  .post-type-advanced_ads #advanced-ads-ad-parameters-size p { float: left; margin: 0 1em 0 0; font-weight: bold; }
53
  .post-type-advanced_ads #advanced-ads-ad-parameters-size label + label { margin-left: 1em; }
54
  .post-type-advanced_ads #advanced-ads-ad-parameters-size input { width: 4em; margin-left: .5em; }
55
+ .post-type-advanced_ads #advanced-ad-output .label { display: inline-block; width: 5em; font-weight: bold; }
56
+ .post-type-advanced_ads #advanced-ad-output-position { line-height: 60px; }
57
+ .post-type-advanced_ads #advanced-ad-output-position:after { content: ' '; clear: both; float: none; display: block;}
58
+ .post-type-advanced_ads #advanced-ad-output-position label + label { margin-left: 1em; }
59
+ .post-type-advanced_ads #advanced-ad-output-position img { border: 1px solid #ddd; padding: 2px; }
60
+ .post-type-advanced_ads #advanced-ad-output-margin input[type="number"] { width: 4em; }
61
+ .post-type-advanced_ads #advanced-ad-output-margin label + label { margin-left: 1em; }
62
 
63
  .advads-debug-output legend { text-decoration: underline; cursor: pointer; }
64
 
admin/assets/img/ad-output-center.png ADDED
Binary file
admin/assets/img/ad-output-left.png ADDED
Binary file
admin/assets/img/ad-output-right.png ADDED
Binary file
admin/class-advanced-ads-admin.php CHANGED
@@ -418,6 +418,9 @@ class Advanced_Ads_Admin {
418
  add_meta_box(
419
  'ad-parameters-box', __('Ad Parameters', ADVADS_SLUG), array($this, 'markup_meta_boxes'), Advanced_Ads::POST_TYPE_SLUG, 'normal', 'high'
420
  );
 
 
 
421
  add_meta_box(
422
  'ad-display-box', __('Display Conditions', ADVADS_SLUG), array($this, 'markup_meta_boxes'), Advanced_Ads::POST_TYPE_SLUG, 'normal', 'high'
423
  );
@@ -447,6 +450,9 @@ class Advanced_Ads_Admin {
447
  case 'ad-parameters-box':
448
  $view = 'ad-parameters-metabox.php';
449
  break;
 
 
 
450
  case 'ad-display-box':
451
  $view = 'ad-display-metabox.php';
452
  break;
@@ -490,6 +496,11 @@ class Advanced_Ads_Admin {
490
  return;
491
 
492
  $ad->type = $_POST['advanced_ad']['type'];
 
 
 
 
 
493
  if(isset($_POST['advanced_ad']['visitor'])) {
494
  $ad->set_option('visitor', $_POST['advanced_ad']['visitor']);
495
  } else {
418
  add_meta_box(
419
  'ad-parameters-box', __('Ad Parameters', ADVADS_SLUG), array($this, 'markup_meta_boxes'), Advanced_Ads::POST_TYPE_SLUG, 'normal', 'high'
420
  );
421
+ add_meta_box(
422
+ 'ad-output-box', __('Layout / Output', ADVADS_SLUG), array($this, 'markup_meta_boxes'), Advanced_Ads::POST_TYPE_SLUG, 'normal', 'high'
423
+ );
424
  add_meta_box(
425
  'ad-display-box', __('Display Conditions', ADVADS_SLUG), array($this, 'markup_meta_boxes'), Advanced_Ads::POST_TYPE_SLUG, 'normal', 'high'
426
  );
450
  case 'ad-parameters-box':
451
  $view = 'ad-parameters-metabox.php';
452
  break;
453
+ case 'ad-output-box':
454
+ $view = 'ad-output-metabox.php';
455
+ break;
456
  case 'ad-display-box':
457
  $view = 'ad-display-metabox.php';
458
  break;
496
  return;
497
 
498
  $ad->type = $_POST['advanced_ad']['type'];
499
+ if(isset($_POST['advanced_ad']['output'])) {
500
+ $ad->set_option('output', $_POST['advanced_ad']['output']);
501
+ } else {
502
+ $ad->set_option('output', array());
503
+ }
504
  if(isset($_POST['advanced_ad']['visitor'])) {
505
  $ad->set_option('visitor', $_POST['advanced_ad']['visitor']);
506
  } else {
admin/views/ad-group.php CHANGED
@@ -52,7 +52,7 @@ if (isset($_REQUEST['message']) && ( $msg = (int) $_REQUEST['message'] ) || isse
52
  <h2><?php
53
  echo esc_html($title);
54
  if (!empty($_REQUEST['s'])) {
55
- printf('<span class="subtitle">' . __('Search results for &#8220;%s&#8221;', $this->plugin_slug) . '</span>', esc_html(wp_unslash($_REQUEST['s'])));
56
  } else {
57
  echo ' <a href="' . Advanced_Ads_Admin::group_page_url(array('action' => 'edit')) . '" class="add-new-h2">' . $tax->labels->add_new_item . '</a>';
58
  }
52
  <h2><?php
53
  echo esc_html($title);
54
  if (!empty($_REQUEST['s'])) {
55
+ printf('<span class="subtitle">' . __('Search results for &#8220;%s&#8221;', ADVADS_SLUG) . '</span>', esc_html(wp_unslash($_REQUEST['s'])));
56
  } else {
57
  echo ' <a href="' . Advanced_Ads_Admin::group_page_url(array('action' => 'edit')) . '" class="add-new-h2">' . $tax->labels->add_new_item . '</a>';
58
  }
admin/views/ad-output-metabox.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p class="description"><?php _e('Everything connected to the ads layout and output.', ADVADS_SLUG); ?></p>
2
+ <?php $options = $ad->options('output'); ?>
3
+ <div id="advanced-ad-output">
4
+ <div id="advanced-ad-output-position">
5
+ <span class="label"><?php _e('Position', ADVADS_SLUG); ?></span>
6
+ <label><input type="radio" name="advanced_ad[output][position]" value="" title="<?php _e('- default -', ADVADS_SLUG);
7
+ ?>" <?php if(empty($options['position'])) checked(1, 1); ?>/><?php _e('default', ADVADS_SLUG); ?></label>
8
+ <label title="<?php _e('left', ADVADS_SLUG); ?>"><input type="radio" name="advanced_ad[output][position]" value="left"
9
+ <?php if(isset($options['position'])) checked($options['position'], 'left'); ?>/>
10
+ <img src="<?php echo ADVADS_BASE_URL; ?>admin/assets/img/ad-output-left.png" width="60" height="45"/></label>
11
+ <label title="<?php _e('center', ADVADS_SLUG); ?>"><input type="radio" name="advanced_ad[output][position]" value="center"
12
+ <?php if(isset($options['position'])) checked($options['position'], 'center'); ?>/>
13
+ <img src="<?php echo ADVADS_BASE_URL; ?>admin/assets/img/ad-output-center.png" width="60" height="45"/></label>
14
+ <label title="<?php _e('right', ADVADS_SLUG); ?>"><input type="radio" name="advanced_ad[output][position]" value="right"
15
+ <?php if(isset($options['position'])) checked($options['position'], 'right'); ?>/>
16
+ <img src="<?php echo ADVADS_BASE_URL; ?>admin/assets/img/ad-output-right.png" width="60" height="45"/></label>
17
+ </div>
18
+ <p><label><input type="checkbox" name="advanced_ad[output][clearfix]" value="1"<?php if(isset($options['clearfix'])) checked($options['clearfix'], 1); ?>/><?php
19
+ _e('Check this if you don\'t want the following elements to float around the ad. (adds a clearfix)', ADVADS_SLUG);
20
+ ?></label></p>
21
+ <div id="advanced-ad-output-margin">
22
+ <span class="label"><?php _e('Margin', ADVADS_SLUG); ?></span>
23
+ <label><?php _e('top:', ADVADS_SLUG); ?> <input type="number" value="<?php
24
+ if(isset($options['margin']['top'])) echo $options['margin']['top']; ?>" name="advanced_ad[output][margin][top]"/>px</label>
25
+ <label><?php _e('right:', ADVADS_SLUG); ?> <input type="number" value="<?php
26
+ if(isset($options['margin']['right'])) echo $options['margin']['right']; ?>" name="advanced_ad[output][margin][right]"/>px</label>
27
+ <label><?php _e('bottom:', ADVADS_SLUG); ?> <input type="number" value="<?php
28
+ if(isset($options['margin']['bottom'])) echo $options['margin']['bottom']; ?>" name="advanced_ad[output][margin][bottom]"/>px</label>
29
+ <label><?php _e('left:', ADVADS_SLUG); ?> <input type="number" value="<?php
30
+ if(isset($options['margin']['left'])) echo $options['margin']['left']; ?>" name="advanced_ad[output][margin][left]"/>px</label>
31
+ <p class="description"><?php _e('tip: use this to add a margin around the ad', ADVADS_SLUG); ?></p>
32
+ </div>
33
+ </div>
admin/views/placements.php CHANGED
@@ -80,6 +80,12 @@
80
  <label for="adsads-placements-item-<?php echo $_placement_slug; ?>"><?php _e('Item', ADVADS_SLUG); ?></label>
81
  <select id="adsads-placements-item-<?php echo $_placement_slug; ?>" name="advads[placements][<?php echo $_placement_slug; ?>][item]">
82
  <option value=""><?php _e('--empty--', ADVADS_SLUG); ?></option>
 
 
 
 
 
 
83
  <?php if (isset($items['ads'])) : ?>
84
  <optgroup label="<?php _e('Ads', ADVADS_SLUG); ?>">
85
  <?php foreach ($items['ads'] as $_item_id => $_item_title) : ?>
@@ -87,12 +93,6 @@
87
  <?php endforeach; ?>
88
  </optgroup>
89
  <?php endif; ?>
90
- <?php if (isset($items['groups'])) : ?>
91
- <optgroup label="<?php _e('Ad Groups', ADVADS_SLUG); ?>">
92
- <?php foreach ($items['groups'] as $_item_id => $_item_title) : ?>
93
- <option value="<?php echo $_item_id; ?>" <?php if (isset($_placement['item'])) selected($_item_id, $_placement['item']); ?>><?php echo $_item_title; ?></option>
94
- <?php endforeach; ?>
95
- </optgroup>
96
  <?php endif; ?>
97
  </select><br/>
98
  <?php
80
  <label for="adsads-placements-item-<?php echo $_placement_slug; ?>"><?php _e('Item', ADVADS_SLUG); ?></label>
81
  <select id="adsads-placements-item-<?php echo $_placement_slug; ?>" name="advads[placements][<?php echo $_placement_slug; ?>][item]">
82
  <option value=""><?php _e('--empty--', ADVADS_SLUG); ?></option>
83
+ <?php if (isset($items['groups'])) : ?>
84
+ <optgroup label="<?php _e('Ad Groups', ADVADS_SLUG); ?>">
85
+ <?php foreach ($items['groups'] as $_item_id => $_item_title) : ?>
86
+ <option value="<?php echo $_item_id; ?>" <?php if (isset($_placement['item'])) selected($_item_id, $_placement['item']); ?>><?php echo $_item_title; ?></option>
87
+ <?php endforeach; ?>
88
+ </optgroup>
89
  <?php if (isset($items['ads'])) : ?>
90
  <optgroup label="<?php _e('Ads', ADVADS_SLUG); ?>">
91
  <?php foreach ($items['ads'] as $_item_id => $_item_title) : ?>
93
  <?php endforeach; ?>
94
  </optgroup>
95
  <?php endif; ?>
 
 
 
 
 
 
96
  <?php endif; ?>
97
  </select><br/>
98
  <?php
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.2.7
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
@@ -33,8 +33,9 @@ if( defined('ADVADS_BASE_PATH') ) {
33
 
34
  // load basic path to the plugin
35
  define('ADVADS_BASE_PATH', plugin_dir_path(__FILE__));
 
36
  // general and global slug, e.g. to store options in WP, textdomain
37
- define('ADVADS_SLUG', 'advancedads');
38
 
39
  /*----------------------------------------------------------------------------*
40
  * Autoloading Objects
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: http://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.3
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
33
 
34
  // load basic path to the plugin
35
  define('ADVADS_BASE_PATH', plugin_dir_path(__FILE__));
36
+ define('ADVADS_BASE_URL', plugin_dir_url(__FILE__));
37
  // general and global slug, e.g. to store options in WP, textdomain
38
+ define('ADVADS_SLUG', 'advanced-ads');
39
 
40
  /*----------------------------------------------------------------------------*
41
  * Autoloading Objects
classes/ad.php CHANGED
@@ -141,7 +141,9 @@ class Advads_Ad {
141
  $this->width = $this->options('width');
142
  $this->height = $this->options('height');
143
  $this->conditions = $this->options('conditions');
 
144
  $this->status = $_data->post_status;
 
145
 
146
  // load content based on ad type
147
  $this->content = $this->type_obj->load_content($_data);
@@ -536,6 +538,11 @@ class Advads_Ad {
536
  // build wrapper around the ad
537
  $output = $this->add_wrapper($output);
538
 
 
 
 
 
 
539
  // apply a custom filter by ad type
540
  $output = apply_filters('advanced-ads-ad-output', $output, $this);
541
 
@@ -739,6 +746,52 @@ class Advads_Ad {
739
  return $conditions;
740
  }
741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
742
  /**
743
  * add a wrapper arount the ad content if wrapper information are given
744
  *
141
  $this->width = $this->options('width');
142
  $this->height = $this->options('height');
143
  $this->conditions = $this->options('conditions');
144
+ $this->output = $this->options('output');
145
  $this->status = $_data->post_status;
146
+ $this->wrapper = $this->load_wrapper_options();
147
 
148
  // load content based on ad type
149
  $this->content = $this->type_obj->load_content($_data);
538
  // build wrapper around the ad
539
  $output = $this->add_wrapper($output);
540
 
541
+ // add a clearfix, if set
542
+ if(isset($this->output['clearfix']) && $this->output['clearfix']){
543
+ $output .= '<br style="clear: both; display: block; float: none;"/>';
544
+ }
545
+
546
  // apply a custom filter by ad type
547
  $output = apply_filters('advanced-ads-ad-output', $output, $this);
548
 
746
  return $conditions;
747
  }
748
 
749
+ /**
750
+ * load wrapper options set with the ad
751
+ *
752
+ * @since 1.3
753
+ * @return arr $wrapper options array ready to be use in add_wrapper() function
754
+ */
755
+ protected function load_wrapper_options(){
756
+ $wrapper = array();
757
+
758
+ // print_r($this->output);
759
+
760
+ if(!empty($this->output['position'])) {
761
+ switch($this->output['position']) {
762
+ case 'left' :
763
+ $wrapper['style']['float'] = 'left';
764
+ break;
765
+ case 'right' :
766
+ $wrapper['style']['float'] = 'right';
767
+ break;
768
+ case 'center' :
769
+ $wrapper['style']['text-align'] = 'center';
770
+ break;
771
+ case 'clearfix' :
772
+ $wrapper['style']['clear'] = 'both';
773
+ break;
774
+ }
775
+ }
776
+
777
+ if(!empty($this->output['margin']['top'])) {
778
+ $wrapper['style']['margin-top'] = intval($this->output['margin']['top']) . 'px';
779
+ }
780
+ if(!empty($this->output['margin']['right'])) {
781
+ $wrapper['style']['margin-right'] = intval($this->output['margin']['right']) . 'px';
782
+ }
783
+ if(!empty($this->output['margin']['bottom'])) {
784
+ $wrapper['style']['margin-bottom'] = intval($this->output['margin']['bottom']) . 'px';
785
+ }
786
+ if(!empty($this->output['margin']['left'])) {
787
+ $wrapper['style']['margin-left'] = intval($this->output['margin']['left']) . 'px';
788
+ }
789
+
790
+ // print_r($wrapper);
791
+
792
+ return $wrapper;
793
+ }
794
+
795
  /**
796
  * add a wrapper arount the ad content if wrapper information are given
797
  *
classes/ad_group.php CHANGED
@@ -236,7 +236,8 @@ class Advads_Ad_Group {
236
  // remove chosen ad from weights array
237
  unset($weights[$random_ad_id]);
238
  // put random ad into shuffled array
239
- $shuffled_ads[] = $ads[$random_ad_id];
 
240
  }
241
 
242
  return $shuffled_ads;
236
  // remove chosen ad from weights array
237
  unset($weights[$random_ad_id]);
238
  // put random ad into shuffled array
239
+ if(!empty($ads[$random_ad_id]))
240
+ $shuffled_ads[] = $ads[$random_ad_id];
241
  }
242
 
243
  return $shuffled_ads;
classes/ad_placements.php CHANGED
@@ -137,18 +137,18 @@ class Advads_Ad_Placements {
137
  static function items_for_select() {
138
  $select = array();
139
 
140
- // load all ads
141
- $ads = Advanced_Ads::get_ads();
142
- foreach ($ads as $_ad) {
143
- $select['ads']['ad_' . $_ad->ID] = $_ad->post_title;
144
- }
145
-
146
  // load all ad groups
147
  $groups = Advanced_Ads::get_ad_groups();
148
  foreach ($groups as $_group) {
149
  $select['groups']['group_' . $_group->term_id] = $_group->name;
150
  }
151
 
 
 
 
 
 
 
152
  return $select;
153
  }
154
 
137
  static function items_for_select() {
138
  $select = array();
139
 
 
 
 
 
 
 
140
  // load all ad groups
141
  $groups = Advanced_Ads::get_ad_groups();
142
  foreach ($groups as $_group) {
143
  $select['groups']['group_' . $_group->term_id] = $_group->name;
144
  }
145
 
146
+ // load all ads
147
+ $ads = Advanced_Ads::get_ads();
148
+ foreach ($ads as $_ad) {
149
+ $select['ads']['ad_' . $_ad->ID] = $_ad->post_title;
150
+ }
151
+
152
  return $select;
153
  }
154
 
languages/advanced-ads-de_DE.mo ADDED
Binary file
languages/advanced-ads-de_DE.po ADDED
@@ -0,0 +1,1340 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Advanced Ads\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
5
+ "POT-Creation-Date: 2014-11-24 17:53+0100\n"
6
+ "PO-Revision-Date: 2014-11-24 17:54+0100\n"
7
+ "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
+ "Language-Team: \n"
9
+ "Language: de_DE\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.6.5\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+
17
+ #: admin/class-advanced-ads-admin.php:182
18
+ #, php-format
19
+ msgid ""
20
+ "Advanced Ads Update: Auto injections are now managed through placements. "
21
+ "Please convert these ads with auto injections: %s"
22
+ msgstr ""
23
+ "Advanced-Ads-Update: Auto-Injektionen werden jetzt durch Platzierungen "
24
+ "verwaltet. Bitte konvertieren Sie diese Anzeigen mit Auto-Injektionen:%s"
25
+
26
+ #: admin/class-advanced-ads-admin.php:196
27
+ msgid "Overview"
28
+ msgstr "Übersicht"
29
+
30
+ #: admin/class-advanced-ads-admin.php:196 classes/widget.php:21
31
+ msgid "Advanced Ads"
32
+ msgstr "Advanced Ads"
33
+
34
+ #: admin/class-advanced-ads-admin.php:200
35
+ #: admin/includes/class-ad-groups-list-table.php:191
36
+ #: admin/views/overview.php:12 admin/views/placements.php:90
37
+ #: classes/widget.php:66 public/class-advanced-ads.php:516
38
+ msgid "Ads"
39
+ msgstr "Anzeigen"
40
+
41
+ #: admin/class-advanced-ads-admin.php:204 admin/views/placements.php:84
42
+ #: classes/widget.php:59
43
+ msgid "Ad Groups"
44
+ msgstr "Anzeigen-Gruppen"
45
+
46
+ #: admin/class-advanced-ads-admin.php:204 admin/views/overview.php:40
47
+ #: public/class-advanced-ads.php:490
48
+ msgid "Groups"
49
+ msgstr "Gruppen"
50
+
51
+ #: admin/class-advanced-ads-admin.php:209 admin/views/debug.php:19
52
+ msgid "Ad Placements"
53
+ msgstr "Anzeigen-Platzierungen"
54
+
55
+ #: admin/class-advanced-ads-admin.php:209 admin/views/overview.php:66
56
+ #: admin/views/placements.php:47
57
+ msgid "Placements"
58
+ msgstr "Platzierungen"
59
+
60
+ #: admin/class-advanced-ads-admin.php:213
61
+ msgid "Advanced Ads Settings"
62
+ msgstr "Advanced-Ads-Einstellungen"
63
+
64
+ #: admin/class-advanced-ads-admin.php:213
65
+ #: admin/class-advanced-ads-admin.php:391 admin/views/debug.php:13
66
+ msgid "Settings"
67
+ msgstr "Einstellungen"
68
+
69
+ #: admin/class-advanced-ads-admin.php:216
70
+ msgid "Advanced Ads Debugging"
71
+ msgstr "Advanced-Ads-Debugging"
72
+
73
+ #: admin/class-advanced-ads-admin.php:216
74
+ msgid "Debug"
75
+ msgstr "Debug"
76
+
77
+ #: admin/class-advanced-ads-admin.php:260
78
+ msgid "Placements updated"
79
+ msgstr "Platzierungen aktualisiert"
80
+
81
+ #: admin/class-advanced-ads-admin.php:304
82
+ #: admin/class-advanced-ads-admin.php:331
83
+ msgid "Cheatin&#8217; uh?"
84
+ msgstr "Cheatin&#8217; uh?"
85
+
86
+ #: admin/class-advanced-ads-admin.php:317
87
+ msgid ""
88
+ "You attempted to edit an item that doesn&#8217;t exist. Perhaps it was "
89
+ "deleted?"
90
+ msgstr ""
91
+ "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
92
+ "Vielleicht wurde es gelöscht?"
93
+
94
+ #: admin/class-advanced-ads-admin.php:416
95
+ msgid "Ad Type"
96
+ msgstr "Anzeigen-Typ"
97
+
98
+ #: admin/class-advanced-ads-admin.php:419
99
+ msgid "Ad Parameters"
100
+ msgstr "Anzeigen-Parameter"
101
+
102
+ #: admin/class-advanced-ads-admin.php:422
103
+ msgid "Layout / Output"
104
+ msgstr ""
105
+
106
+ #: admin/class-advanced-ads-admin.php:425
107
+ msgid "Display Conditions"
108
+ msgstr "Anzeige-Bedingungen"
109
+
110
+ #: admin/class-advanced-ads-admin.php:428
111
+ msgid "Visitor Conditions"
112
+ msgstr "Besucher-Bedingungen"
113
+
114
+ #: admin/class-advanced-ads-admin.php:431
115
+ msgid "Auto injection"
116
+ msgstr "Auto-Injektion"
117
+
118
+ #: admin/class-advanced-ads-admin.php:563
119
+ msgid "General"
120
+ msgstr "Allgemein"
121
+
122
+ #: admin/class-advanced-ads-admin.php:571
123
+ msgid "Hide ads for logged in users"
124
+ msgstr "Verstecke Anzeigen wenn Benutzern eingeloggt ist"
125
+
126
+ #: admin/class-advanced-ads-admin.php:579
127
+ msgid "Use advanced JavaScript"
128
+ msgstr "Advanced-JavaScript benutzen"
129
+
130
+ #: admin/class-advanced-ads-admin.php:605
131
+ msgid "(display to all)"
132
+ msgstr "(für alle sichtbar)"
133
+
134
+ #: admin/class-advanced-ads-admin.php:606
135
+ msgid "Subscriber"
136
+ msgstr "Abonnent"
137
+
138
+ #: admin/class-advanced-ads-admin.php:607
139
+ msgid "Contributor"
140
+ msgstr "Mitarbeiter"
141
+
142
+ #: admin/class-advanced-ads-admin.php:608
143
+ msgid "Author"
144
+ msgstr "Autor"
145
+
146
+ #: admin/class-advanced-ads-admin.php:609
147
+ msgid "Editor"
148
+ msgstr "Redakteur"
149
+
150
+ #: admin/class-advanced-ads-admin.php:610
151
+ msgid "Admin"
152
+ msgstr "Admin"
153
+
154
+ #: admin/class-advanced-ads-admin.php:618
155
+ msgid "Choose the lowest role a user must have in order to not see any ads."
156
+ msgstr ""
157
+ "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
158
+ "Anzeigen zu sehen."
159
+
160
+ #: admin/class-advanced-ads-admin.php:631
161
+ #, php-format
162
+ msgid ""
163
+ "Only enable this if you can and want to use the advanced JavaScript "
164
+ "functions described <a href=\"%s\">here</a>."
165
+ msgstr ""
166
+ "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier </"
167
+ "a> beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
168
+
169
+ #: admin/includes/class-ad-groups-list-table.php:57
170
+ #, php-format
171
+ msgid "Select %s"
172
+ msgstr "%s auswählen"
173
+
174
+ #: admin/includes/class-ad-groups-list-table.php:94
175
+ #, php-format
176
+ msgid "Edit &#8220;%s&#8221;"
177
+ msgstr "#8220;%s&#8221; bearbeiten"
178
+
179
+ #: admin/includes/class-ad-groups-list-table.php:99
180
+ #: admin/includes/class-ad-groups-list-table.php:167
181
+ #: public/class-advanced-ads.php:520
182
+ msgid "Edit"
183
+ msgstr "Bearbeiten"
184
+
185
+ #: admin/includes/class-ad-groups-list-table.php:108
186
+ msgid "Delete"
187
+ msgstr "Entfernen"
188
+
189
+ #: admin/includes/class-ad-groups-list-table.php:162
190
+ msgid "Ad weight"
191
+ msgstr "Anzeigengewichtung"
192
+
193
+ #: admin/includes/class-ad-groups-list-table.php:188
194
+ #: admin/views/placements.php:40 admin/views/placements.php:64
195
+ msgid "ID"
196
+ msgstr "ID"
197
+
198
+ #: admin/includes/class-ad-groups-list-table.php:189
199
+ msgid "Ad Group"
200
+ msgstr "Anzeigengruppe"
201
+
202
+ #: admin/includes/class-ad-groups-list-table.php:190
203
+ msgid "Slug"
204
+ msgstr "slug"
205
+
206
+ #: admin/includes/class-display-condition-callbacks.php:28
207
+ msgid "Display on all public <strong>post types</strong>."
208
+ msgstr "Für alle öffentlichen <strong>Beitragstypen</strong> anzeigen."
209
+
210
+ #: admin/includes/class-display-condition-callbacks.php:31
211
+ #: includes/array_ad_conditions.php:28
212
+ msgid "Choose the public post types on which to display the ad."
213
+ msgstr ""
214
+ "Wählen Sie aus den öffentlichen Beitragstypen jene aus, bei denen die "
215
+ "Anzeige erscheinen soll."
216
+
217
+ #: admin/includes/class-display-condition-callbacks.php:86
218
+ msgid "Display for all <strong>categories, tags and taxonomies</strong>."
219
+ msgstr "Für alle <strong>Kategorien, Tags und Taxonomien</strong> anzeigen."
220
+
221
+ #: admin/includes/class-display-condition-callbacks.php:88
222
+ msgid "Display here"
223
+ msgstr "Hier anzeigen"
224
+
225
+ #: admin/includes/class-display-condition-callbacks.php:88
226
+ msgid ""
227
+ "Choose terms from public categories, tags and other taxonomies a post must "
228
+ "belong to in order to have ads."
229
+ msgstr ""
230
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
231
+ "aus, zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
232
+
233
+ #: admin/includes/class-display-condition-callbacks.php:117
234
+ #: admin/includes/class-display-condition-callbacks.php:196
235
+ msgid "Hide from here"
236
+ msgstr "Hier ausblenden"
237
+
238
+ #: admin/includes/class-display-condition-callbacks.php:117
239
+ msgid ""
240
+ "Choose the terms from public categories, tags and other taxonomies a post "
241
+ "must belong to hide the ad from it."
242
+ msgstr ""
243
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
244
+ "aus, zu denen ein Beitrag gehören muss, damit auf ihm KEINE Anzeigen "
245
+ "erscheinen."
246
+
247
+ #: admin/includes/class-display-condition-callbacks.php:164
248
+ msgid "Display on all <strong>category archive pages</strong>."
249
+ msgstr "Auf allen <strong>Kategorie-Archiven</strong> anzeigen."
250
+
251
+ #: admin/includes/class-display-condition-callbacks.php:167
252
+ msgid ""
253
+ "Choose the terms from public categories, tags and other taxonomies on "
254
+ "which's archive page ads can appear"
255
+ msgstr ""
256
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
257
+ "aus, auf deren Übersichtsseiten Anzeigen erscheinen können."
258
+
259
+ #: admin/includes/class-display-condition-callbacks.php:196
260
+ msgid ""
261
+ "Choose the terms from public categories, tags and other taxonomies on "
262
+ "which's archive pages ads are hidden."
263
+ msgstr ""
264
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
265
+ "aus, auf deren Übersichtsseiten KEINE Anzeigen erscheinen sollen."
266
+
267
+ #: admin/includes/class-display-condition-callbacks.php:230
268
+ msgid ""
269
+ "Display an all <strong>individual posts, pages</strong> and public post type "
270
+ "pages"
271
+ msgstr ""
272
+ "Auf allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
273
+ "anzeigen"
274
+
275
+ #: admin/includes/class-display-condition-callbacks.php:233
276
+ #: includes/array_ad_conditions.php:46
277
+ msgid ""
278
+ "Choose on which individual posts, pages and public post type pages you want "
279
+ "to display or hide ads."
280
+ msgstr ""
281
+ "Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf "
282
+ "denen Anzeigen angezeigt oder ausgeblendet werden sollen."
283
+
284
+ #: admin/includes/class-display-condition-callbacks.php:250
285
+ msgid "What should happen with ads on the list of individual posts below?"
286
+ msgstr "Was soll mit Anzeigen auf den genannten Seiten passieren?"
287
+
288
+ #: admin/includes/class-display-condition-callbacks.php:251
289
+ msgid "ignore the list"
290
+ msgstr "Liste ignorieren"
291
+
292
+ #: admin/includes/class-display-condition-callbacks.php:252
293
+ msgid "display the ad only there"
294
+ msgstr "Die Anzeige nur hier einblenden"
295
+
296
+ #: admin/includes/class-display-condition-callbacks.php:253
297
+ msgid "hide the ad here"
298
+ msgstr "Die Anzeige hier ausblenden"
299
+
300
+ #: admin/includes/class-display-condition-callbacks.php:261
301
+ msgid "Update warning"
302
+ msgstr ""
303
+
304
+ #: admin/includes/class-display-condition-callbacks.php:262
305
+ msgid ""
306
+ "Due to some conflicts before version 1.2.6, it is from now on only possible "
307
+ "to choose either individual pages to include or exclude an ad, but not both "
308
+ "with mixed settings. It seems you are still using mixed settings on this "
309
+ "page. Please consider changing your setup for this ad."
310
+ msgstr ""
311
+
312
+ #: admin/includes/class-display-condition-callbacks.php:263
313
+ #, fuzzy
314
+ msgid "Your old values are:"
315
+ msgstr "gib deine Buchstaben ein"
316
+
317
+ #: admin/includes/class-display-condition-callbacks.php:264
318
+ msgid "Post IDs the ad is displayed on:"
319
+ msgstr ""
320
+
321
+ #: admin/includes/class-display-condition-callbacks.php:265
322
+ msgid "Post IDs the ad is hidden from:"
323
+ msgstr ""
324
+
325
+ #: admin/includes/class-display-condition-callbacks.php:266
326
+ msgid ""
327
+ "Below you find the pages the ad is displayed on. If this is ok, just save "
328
+ "the ad. If not, please update your settings."
329
+ msgstr ""
330
+
331
+ #: admin/includes/class-display-condition-callbacks.php:306
332
+ msgid "new"
333
+ msgstr ""
334
+
335
+ #: admin/includes/class-display-condition-callbacks.php:308
336
+ #, fuzzy
337
+ msgid "type the title"
338
+ msgstr "Titel:"
339
+
340
+ #: admin/includes/class-list-table.php:186
341
+ msgid "No items found."
342
+ msgstr "Keine Elemente gefunden."
343
+
344
+ #: admin/includes/class-list-table.php:310
345
+ msgid "Bulk Actions"
346
+ msgstr ""
347
+
348
+ #: admin/includes/class-list-table.php:320
349
+ msgid "Apply"
350
+ msgstr ""
351
+
352
+ #: admin/includes/class-list-table.php:404
353
+ #, fuzzy
354
+ msgid "Show all dates"
355
+ msgstr "Alle Wörter einblenden"
356
+
357
+ #: admin/includes/class-list-table.php:417
358
+ #, fuzzy, php-format
359
+ msgid "%1$s %2$d"
360
+ msgstr "%1$s am %2$s"
361
+
362
+ #: admin/includes/class-list-table.php:433
363
+ #, fuzzy
364
+ msgid "List View"
365
+ msgstr "Ansicht"
366
+
367
+ #: admin/includes/class-list-table.php:434
368
+ #, fuzzy
369
+ msgid "Excerpt View"
370
+ msgstr "Ansicht"
371
+
372
+ #: admin/includes/class-list-table.php:460
373
+ #, fuzzy, php-format
374
+ msgid "%s pending"
375
+ msgstr "%s in %s"
376
+
377
+ #: admin/includes/class-list-table.php:528
378
+ #: admin/includes/class-list-table.php:943
379
+ #, php-format
380
+ msgid "1 item"
381
+ msgid_plural "%s items"
382
+ msgstr[0] ""
383
+ msgstr[1] ""
384
+
385
+ #: admin/includes/class-list-table.php:546
386
+ msgid "Go to the first page"
387
+ msgstr ""
388
+
389
+ #: admin/includes/class-list-table.php:553
390
+ #, fuzzy
391
+ msgid "Go to the previous page"
392
+ msgstr "&#171; Vorherige"
393
+
394
+ #: admin/includes/class-list-table.php:562
395
+ #, fuzzy
396
+ msgid "Current page"
397
+ msgstr "Beitrag / Seite"
398
+
399
+ #: admin/includes/class-list-table.php:568
400
+ #, fuzzy, php-format
401
+ msgctxt "paging"
402
+ msgid "%1$s of %2$s"
403
+ msgstr "Eingeloggt als <a href=\"%1$s\">%2$s</a>"
404
+
405
+ #: admin/includes/class-list-table.php:572
406
+ msgid "Go to the next page"
407
+ msgstr ""
408
+
409
+ #: admin/includes/class-list-table.php:579
410
+ msgid "Go to the last page"
411
+ msgstr ""
412
+
413
+ #: admin/includes/class-list-table.php:715
414
+ #, fuzzy
415
+ msgid "Select All"
416
+ msgstr "%s auswählen"
417
+
418
+ #: admin/views/ad-display-metabox.php:6
419
+ #, fuzzy
420
+ msgid "Choose where to display the ad and where to hide it."
421
+ msgstr "Wähle aus, wo Bildquellen auf Einzelseiten angezeigt werden"
422
+
423
+ #: admin/views/ad-display-metabox.php:9
424
+ #, fuzzy
425
+ msgid "Display ad everywhere"
426
+ msgstr "Die Anzeige nur hier einblenden"
427
+
428
+ #: admin/views/ad-display-metabox.php:10
429
+ #, fuzzy
430
+ msgid "Set display conditions"
431
+ msgstr "Konditionen anzeigen"
432
+
433
+ #: admin/views/ad-display-metabox.php:14
434
+ msgid "If you want to display the ad everywhere, don't do anything here. "
435
+ msgstr ""
436
+
437
+ #: admin/views/ad-display-metabox.php:15
438
+ msgid "The fewer conditions you enter, the better the performance will be."
439
+ msgstr ""
440
+
441
+ #: admin/views/ad-display-metabox.php:16
442
+ #, php-format
443
+ msgid ""
444
+ "Learn more about display conditions from the <a href=\"%s\" target=\"_blank"
445
+ "\">manual</a>."
446
+ msgstr ""
447
+
448
+ #: admin/views/ad-display-metabox.php:32
449
+ #, fuzzy
450
+ msgid "Other conditions"
451
+ msgstr "Konditionen anzeigen"
452
+
453
+ #: admin/views/ad-display-metabox.php:33
454
+ msgid ""
455
+ "When using one of the two choices on checkbox conditions, the rule is "
456
+ "binding. E.g. \"Front Page: show\" will result on the ad being only visible "
457
+ "on the front page."
458
+ msgstr ""
459
+
460
+ #: admin/views/ad-display-metabox.php:38
461
+ #, fuzzy
462
+ msgid "show"
463
+ msgstr "Bildquellen anzeigen"
464
+
465
+ #: admin/views/ad-display-metabox.php:39
466
+ #, fuzzy
467
+ msgid "hide"
468
+ msgstr "Bildquellen verstecken"
469
+
470
+ #: admin/views/ad-display-metabox.php:59
471
+ msgid "clear"
472
+ msgstr ""
473
+
474
+ #: admin/views/ad-display-metabox.php:66
475
+ #, fuzzy
476
+ msgid "show debug output"
477
+ msgstr "Fehlerbehebung"
478
+
479
+ #: admin/views/ad-display-metabox.php:67
480
+ msgid "Values saved for this ad in the database (post metas)"
481
+ msgstr ""
482
+
483
+ #: admin/views/ad-group-ads-inline-form.php:10
484
+ #, fuzzy
485
+ msgctxt "ad group ads form"
486
+ msgid "weight"
487
+ msgstr "Anzeigengewichtung"
488
+
489
+ #: admin/views/ad-group-ads-inline-form.php:24
490
+ msgid "Cancel"
491
+ msgstr ""
492
+
493
+ #: admin/views/ad-group-ads-inline-form.php:25
494
+ #: admin/views/ad-group-edit.php:70
495
+ #, fuzzy
496
+ msgid "Update"
497
+ msgstr ""
498
+ "Advanced-Ads-Update: Auto-Injektionen werden jetzt durch Platzierungen "
499
+ "verwaltet. Bitte konvertieren Sie diese Anzeigen mit Auto-Injektionen:%s"
500
+
501
+ #: admin/views/ad-group-ads-inline-form.php:33
502
+ #, fuzzy
503
+ msgid "There are no ads in this group"
504
+ msgstr "Anzeigengruppe"
505
+
506
+ #: admin/views/ad-group-edit.php:14
507
+ msgid "You did not select an item for editing."
508
+ msgstr ""
509
+
510
+ #: admin/views/ad-group-edit.php:33
511
+ #, fuzzy
512
+ msgctxt "Taxonomy Name"
513
+ msgid "Name"
514
+ msgstr "Name"
515
+
516
+ #: admin/views/ad-group-edit.php:38
517
+ #, fuzzy
518
+ msgctxt "Taxonomy Slug"
519
+ msgid "Slug"
520
+ msgstr "slug"
521
+
522
+ #: admin/views/ad-group-edit.php:40
523
+ msgid ""
524
+ "An id-like string with only letters in lower case, numbers, and hyphens."
525
+ msgstr ""
526
+
527
+ #: admin/views/ad-group-edit.php:45
528
+ #, fuzzy
529
+ msgctxt "Taxonomy Parent"
530
+ msgid "Parent"
531
+ msgstr "Gehe zur Bearbeitungsansicht des zugeordneten Artikels"
532
+
533
+ #: admin/views/ad-group-edit.php:48 admin/views/ad-group-edit.php:50
534
+ msgid "None"
535
+ msgstr ""
536
+
537
+ #: admin/views/ad-group-edit.php:56
538
+ msgctxt "Taxonomy Description"
539
+ msgid "Description"
540
+ msgstr ""
541
+
542
+ #: admin/views/ad-group-edit.php:68
543
+ #, fuzzy
544
+ msgid "Create new Ad Group"
545
+ msgstr "Anzeigengruppe"
546
+
547
+ #: admin/views/ad-group.php:33
548
+ #, fuzzy
549
+ msgid "Ad Group added."
550
+ msgstr "Anzeigengruppe"
551
+
552
+ #: admin/views/ad-group.php:34 admin/views/ad-group.php:38
553
+ #, fuzzy
554
+ msgid "Ad Group deleted."
555
+ msgstr "Anzeigengruppe"
556
+
557
+ #: admin/views/ad-group.php:35
558
+ #, fuzzy
559
+ msgid "Ad Group updated."
560
+ msgstr "Anzeigengruppe"
561
+
562
+ #: admin/views/ad-group.php:36
563
+ #, fuzzy
564
+ msgid "Ad Group not added."
565
+ msgstr "Anzeigengruppe"
566
+
567
+ #: admin/views/ad-group.php:37
568
+ #, fuzzy
569
+ msgid "Ad Group not updated."
570
+ msgstr "Anzeigengruppe"
571
+
572
+ #: admin/views/ad-group.php:55
573
+ #, fuzzy, php-format
574
+ msgid "Search results for &#8220;%s&#8221;"
575
+ msgstr "#8220;%s&#8221; bearbeiten"
576
+
577
+ #: admin/views/ad-group.php:61
578
+ msgid ""
579
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
580
+ "display random ads in the frontend or run split tests, but also just for "
581
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
582
+ "ad can belong to multiple ad groups."
583
+ msgstr ""
584
+
585
+ #: admin/views/ad-group.php:69
586
+ #, fuzzy
587
+ msgid "How to display an Ad Group?"
588
+ msgstr "Anzeigengruppe"
589
+
590
+ #: admin/views/ad-group.php:71
591
+ #, php-format
592
+ msgid ""
593
+ "Examples on how to display an ad group? Find more help and examples in the "
594
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
595
+ msgstr ""
596
+
597
+ #: admin/views/ad-group.php:72 admin/views/ad_info.php:6
598
+ #: admin/views/placements.php:51
599
+ #, fuzzy
600
+ msgid "shortcode"
601
+ msgstr ""
602
+ "Die Überschrift des Bilderverzeichnisses, das mit einem Shortcode oder einer "
603
+ "Funktion in das Theme integriert wurde."
604
+
605
+ #: admin/views/ad-group.php:73
606
+ msgid "To display an ad group with the ID 6 in content fields"
607
+ msgstr ""
608
+
609
+ #: admin/views/ad-group.php:75 admin/views/ad_info.php:9
610
+ #: admin/views/placements.php:54
611
+ msgid "template"
612
+ msgstr ""
613
+
614
+ #: admin/views/ad-group.php:76
615
+ msgid "To display an ad group with the ID 6 in template files"
616
+ msgstr ""
617
+
618
+ #: admin/views/ad-inject-metabox.php:1
619
+ msgid ""
620
+ "Include ads on specific places automatically without shortcodes or functions."
621
+ msgstr ""
622
+
623
+ #: admin/views/ad-inject-metabox.php:4 admin/views/ad-inject-metabox.php:32
624
+ msgid ""
625
+ "This feature is now provided through placements. Please convert the settings "
626
+ "made here to placements."
627
+ msgstr ""
628
+
629
+ #: admin/views/ad-inject-metabox.php:10
630
+ msgid "Include in Header (before closing </head> Tag, probably not visible)"
631
+ msgstr ""
632
+
633
+ #: admin/views/ad-inject-metabox.php:16
634
+ msgid "Include in Footer (before closing </body> Tag)"
635
+ msgstr ""
636
+
637
+ #: admin/views/ad-inject-metabox.php:22
638
+ msgid "Include before the post content"
639
+ msgstr ""
640
+
641
+ #: admin/views/ad-inject-metabox.php:28
642
+ msgid "Include after the post content"
643
+ msgstr ""
644
+
645
+ #: admin/views/ad-main-metabox.php:3
646
+ msgid "No ad types defined"
647
+ msgstr ""
648
+
649
+ #: admin/views/ad-output-metabox.php:1
650
+ msgid "Everything connected to the ads layout and output."
651
+ msgstr ""
652
+
653
+ #: admin/views/ad-output-metabox.php:5
654
+ #, fuzzy
655
+ msgid "Position"
656
+ msgstr "Position der Beschriftung im Bild"
657
+
658
+ #: admin/views/ad-output-metabox.php:6
659
+ #, fuzzy
660
+ msgid "- default -"
661
+ msgstr ""
662
+ "Du hast diese Seite wahrscheinlich direkt aufgerufen. Die Wortliste ist "
663
+ "damit auf die Standardeinstellung \"%s\" zurückgefallen. Besuche die <a "
664
+ "class=\"nomark\" href=\"/wortsuche\" title=\"Wortgenerator\">Hauptseite der "
665
+ "Wortsuche</a>, um eine deutsche Wortliste auszuwählen."
666
+
667
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:75
668
+ #: classes/ad_placements.php:31
669
+ #, fuzzy
670
+ msgid "default"
671
+ msgstr ""
672
+ "Du hast diese Seite wahrscheinlich direkt aufgerufen. Die Wortliste ist "
673
+ "damit auf die Standardeinstellung \"%s\" zurückgefallen. Besuche die <a "
674
+ "class=\"nomark\" href=\"/wortsuche\" title=\"Wortgenerator\">Hauptseite der "
675
+ "Wortsuche</a>, um eine deutsche Wortliste auszuwählen."
676
+
677
+ #: admin/views/ad-output-metabox.php:8
678
+ #, fuzzy
679
+ msgid "left"
680
+ msgstr "(keine Hinweise mehr verfügbar)"
681
+
682
+ #: admin/views/ad-output-metabox.php:11
683
+ msgid "center"
684
+ msgstr ""
685
+
686
+ #: admin/views/ad-output-metabox.php:14
687
+ msgid "right"
688
+ msgstr ""
689
+
690
+ #: admin/views/ad-output-metabox.php:19
691
+ msgid ""
692
+ "Check this if you don't want the following elements to float around the ad. "
693
+ "(adds a clearfix)"
694
+ msgstr ""
695
+
696
+ #: admin/views/ad-output-metabox.php:22
697
+ msgid "Margin"
698
+ msgstr ""
699
+
700
+ #: admin/views/ad-output-metabox.php:23
701
+ msgid "top:"
702
+ msgstr ""
703
+
704
+ #: admin/views/ad-output-metabox.php:25
705
+ msgid "right:"
706
+ msgstr ""
707
+
708
+ #: admin/views/ad-output-metabox.php:27
709
+ msgid "bottom:"
710
+ msgstr ""
711
+
712
+ #: admin/views/ad-output-metabox.php:29
713
+ #, fuzzy
714
+ msgid "left:"
715
+ msgstr "(keine Hinweise mehr verfügbar)"
716
+
717
+ #: admin/views/ad-output-metabox.php:31
718
+ msgid "tip: use this to add a margin around the ad"
719
+ msgstr ""
720
+
721
+ #: admin/views/ad-parameters-metabox.php:15
722
+ msgid "size:"
723
+ msgstr ""
724
+
725
+ #: admin/views/ad-parameters-metabox.php:16
726
+ #, fuzzy
727
+ msgid "width"
728
+ msgstr "maximale Breite der Miniaturbilder"
729
+
730
+ #: admin/views/ad-parameters-metabox.php:17
731
+ #, fuzzy
732
+ msgid "height"
733
+ msgstr "maximale Höhe der Miniaturbilder"
734
+
735
+ #: admin/views/ad-visitor-metabox.php:1
736
+ msgid ""
737
+ "Display conditions that are based on the user. Use with caution on cached "
738
+ "websites."
739
+ msgstr ""
740
+
741
+ #: admin/views/ad-visitor-metabox.php:8
742
+ #, fuzzy
743
+ msgid "Display on all devices"
744
+ msgstr "(sichtbar für alle)"
745
+
746
+ #: admin/views/ad-visitor-metabox.php:12
747
+ #, fuzzy
748
+ msgid "only on mobile devices"
749
+ msgstr "Die Anzeige nur hier einblenden"
750
+
751
+ #: admin/views/ad-visitor-metabox.php:16
752
+ msgid "not on mobile devices"
753
+ msgstr ""
754
+
755
+ #: admin/views/ad_info.php:1
756
+ #, fuzzy, php-format
757
+ msgid "Ad Id: %s"
758
+ msgstr "ID"
759
+
760
+ #: admin/views/ad_info.php:2
761
+ #, fuzzy
762
+ msgid "How to use this Ad?"
763
+ msgstr "Wie die Scrabble-Hilfe funktioniert"
764
+
765
+ #: admin/views/ad_info.php:5
766
+ #, php-format
767
+ msgid ""
768
+ "How to display the ad directly? Find more help and examples in the <a href="
769
+ "\"%s\" target=\"_blank\">manual</a>"
770
+ msgstr ""
771
+
772
+ #: admin/views/ad_info.php:7
773
+ #, fuzzy
774
+ msgid "To display an ad in content fields"
775
+ msgstr "Die Anzeige nur hier einblenden"
776
+
777
+ #: admin/views/ad_info.php:10
778
+ #, fuzzy
779
+ msgid "To display an ad in template files"
780
+ msgstr "Die Anzeige nur hier einblenden"
781
+
782
+ #: admin/views/debug.php:8
783
+ msgid "Work in progress"
784
+ msgstr ""
785
+
786
+ #: admin/views/debug.php:9
787
+ msgid ""
788
+ "This screen is work in progress. You can use the information if you "
789
+ "understand them, but there is nothing to do here yet."
790
+ msgstr ""
791
+
792
+ #: admin/views/debug.php:16
793
+ #, fuzzy
794
+ msgid "Ad Condition Overview"
795
+ msgstr "Übersicht"
796
+
797
+ #: admin/views/overview.php:13
798
+ msgid ""
799
+ "Ads are the smallest unit, containing the content or a single ad to be "
800
+ "displayed."
801
+ msgstr ""
802
+
803
+ #: admin/views/overview.php:14
804
+ #, php-format
805
+ msgid "You have published %d ads."
806
+ msgstr ""
807
+
808
+ #: admin/views/overview.php:15
809
+ #, php-format
810
+ msgid "<a href=\"%s\">Manage</a> them or <a href=\"%s\">create</a> a new one"
811
+ msgstr ""
812
+
813
+ #: admin/views/overview.php:23
814
+ #, fuzzy
815
+ msgid "recent ads"
816
+ msgstr "Neueste Artikel."
817
+
818
+ #: admin/views/overview.php:33
819
+ msgid "Create your first ad"
820
+ msgstr ""
821
+
822
+ #: admin/views/overview.php:41
823
+ msgid ""
824
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
825
+ "single spot."
826
+ msgstr ""
827
+
828
+ #: admin/views/overview.php:42
829
+ #, php-format
830
+ msgid "You have %d groups."
831
+ msgstr ""
832
+
833
+ #: admin/views/overview.php:43 admin/views/overview.php:69
834
+ #, php-format
835
+ msgid "<a href=\"%s\">Manage</a> them."
836
+ msgstr ""
837
+
838
+ #: admin/views/overview.php:49
839
+ #, fuzzy
840
+ msgid "recent groups"
841
+ msgstr "Neueste Artikel."
842
+
843
+ #: admin/views/overview.php:59
844
+ msgid "Create your first group"
845
+ msgstr ""
846
+
847
+ #: admin/views/overview.php:67
848
+ msgid ""
849
+ "Ad Placements are the best way to manage where to display ads and groups."
850
+ msgstr ""
851
+
852
+ #: admin/views/overview.php:68
853
+ #, php-format
854
+ msgid "You have %d placements."
855
+ msgstr ""
856
+
857
+ #: admin/views/overview.php:75
858
+ #, fuzzy
859
+ msgid "recent placements"
860
+ msgstr "Neueste Artikel."
861
+
862
+ #: admin/views/overview.php:85
863
+ msgid "Create your first placement"
864
+ msgstr ""
865
+
866
+ #: admin/views/overview.php:93
867
+ msgid "Manual and Support"
868
+ msgstr ""
869
+
870
+ #: admin/views/overview.php:94
871
+ msgid "Need some help? These are your options"
872
+ msgstr ""
873
+
874
+ #: admin/views/overview.php:96
875
+ #, php-format
876
+ msgid "Visit the <a href=\"%s\">plugin homepage</a>"
877
+ msgstr ""
878
+
879
+ #: admin/views/overview.php:97
880
+ #, php-format
881
+ msgid "Have a look into the <a href=\"%s\">manual</a>"
882
+ msgstr ""
883
+
884
+ #: admin/views/overview.php:98
885
+ #, php-format
886
+ msgid ""
887
+ "Ask a question to other users in the <a href=\"%s\">wordpress.org forum</a>"
888
+ msgstr ""
889
+
890
+ #: admin/views/overview.php:99
891
+ #, fuzzy, php-format
892
+ msgid "<a href=\"%s\">Hire the developer</a>"
893
+ msgstr "Eingeloggt als <a href=\"%1$s\">%2$s</a>"
894
+
895
+ #: admin/views/overview.php:103
896
+ #, fuzzy
897
+ msgid "Add-ons"
898
+ msgstr "gegebene Buchstaben und Länge eingeben"
899
+
900
+ #: admin/views/overview.php:104
901
+ msgid "Want to boost your ad income? Try these add-ons"
902
+ msgstr ""
903
+
904
+ #: admin/views/overview.php:111
905
+ #, fuzzy
906
+ msgid "See Add-Ons"
907
+ msgstr "gegebene Buchstaben und Länge eingeben"
908
+
909
+ #: admin/views/placements.php:14
910
+ msgid ""
911
+ "Placements are physically places in your theme and posts. You can use them "
912
+ "if you plan to change ads and ad groups on the same place without the need "
913
+ "to change your templates."
914
+ msgstr ""
915
+ "Platzierungen sind physikalische Stellen in Ihrem Theme und den Beiträgen. "
916
+ "Sie können sie verwenden, wenn Sie Anzeigen und Anzeigengruppen an einer "
917
+ "Position austauschen möchten, ohne eine Änderung der Templates oder Seiten-"
918
+ "Inhalte vorzunehmen."
919
+
920
+ #: admin/views/placements.php:15
921
+ #, php-format
922
+ msgid ""
923
+ "See also the manual for more information on <a href=\"%s\">placements</a> "
924
+ "and <a href=\"%s\">auto injection</a>."
925
+ msgstr ""
926
+ "Weitere Informationen finden Sie im Handbuch (engl.) unter <a href=\"%s"
927
+ "\">Platzierungen</a> und <a href=\"%s\">Auto-Injektion</a>."
928
+
929
+ #: admin/views/placements.php:16
930
+ msgid "Create a new placement"
931
+ msgstr ""
932
+
933
+ #: admin/views/placements.php:18 admin/views/placements.php:63
934
+ #, fuzzy
935
+ msgid "Type"
936
+ msgstr "Anzeigen-Typ"
937
+
938
+ #: admin/views/placements.php:27
939
+ #, fuzzy
940
+ msgid "What is this?"
941
+ msgstr "Und jetzt?"
942
+
943
+ #: admin/views/placements.php:29
944
+ msgid ""
945
+ "Placement types define how the placements works and where it is going to be "
946
+ "displayed."
947
+ msgstr ""
948
+
949
+ #: admin/views/placements.php:38 admin/views/placements.php:62
950
+ #, fuzzy
951
+ msgid "Name"
952
+ msgstr "Name"
953
+
954
+ #: admin/views/placements.php:42
955
+ msgid ""
956
+ "Individual identifier. Allowed are alphanumeric signs (lower case) and "
957
+ "hyphen."
958
+ msgstr ""
959
+
960
+ #: admin/views/placements.php:43
961
+ msgid "You can assign Ads and Groups after you created the placement."
962
+ msgstr ""
963
+
964
+ #: admin/views/placements.php:44
965
+ msgid "Save New Placement"
966
+ msgstr ""
967
+
968
+ #: admin/views/placements.php:48
969
+ msgid "How to use the <i>default</i> Ad Placement?"
970
+ msgstr ""
971
+
972
+ #: admin/views/placements.php:50
973
+ #, php-format
974
+ msgid ""
975
+ "Examples on how to use the <i>default</i> ad placement? Find more help and "
976
+ "examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
977
+ msgstr ""
978
+
979
+ #: admin/views/placements.php:52
980
+ msgid "To use an ad placement with the ID skyscraper_left in content fields"
981
+ msgstr ""
982
+
983
+ #: admin/views/placements.php:55
984
+ msgid "To use an ad placement with the ID skyscraper_left in template files"
985
+ msgstr ""
986
+
987
+ #: admin/views/placements.php:65
988
+ msgid "Options"
989
+ msgstr ""
990
+
991
+ #: admin/views/placements.php:80
992
+ #, fuzzy
993
+ msgid "Item"
994
+ msgstr ""
995
+ "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
996
+ "Vielleicht wurde es gelöscht?"
997
+
998
+ #: admin/views/placements.php:82 classes/widget.php:57
999
+ #, fuzzy
1000
+ msgid "--empty--"
1001
+ msgstr "Das Suchfeld ist leer"
1002
+
1003
+ #: admin/views/placements.php:101
1004
+ msgid "Index"
1005
+ msgstr ""
1006
+
1007
+ #: admin/views/placements.php:109
1008
+ msgid "After which paragraph to insert the placement content."
1009
+ msgstr ""
1010
+
1011
+ #: admin/views/placements.php:118
1012
+ #, fuzzy
1013
+ msgid "remove placement"
1014
+ msgstr "Filter entfernen"
1015
+
1016
+ #: admin/views/placements.php:124
1017
+ #, fuzzy
1018
+ msgid "Save Placements"
1019
+ msgstr "Platzierungen"
1020
+
1021
+ #: admin/views/settings.php:23
1022
+ #, fuzzy
1023
+ msgid "Debug Page"
1024
+ msgstr "Fehlerbehebung"
1025
+
1026
+ #: admin/views/settings.php:24
1027
+ #, fuzzy
1028
+ msgid "Advanced Ads on WordPress.org"
1029
+ msgstr "Advanced-Anzeigen"
1030
+
1031
+ #: admin/views/settings.php:24
1032
+ #, fuzzy
1033
+ msgid "Advanced Ads on wp.org"
1034
+ msgstr "Advanced-Anzeigen"
1035
+
1036
+ #: admin/views/settings.php:25
1037
+ #, fuzzy
1038
+ msgid "the company behind Advanced Ads"
1039
+ msgstr "Advanced-Anzeigen"
1040
+
1041
+ #: admin/views/settings.php:25
1042
+ #, fuzzy
1043
+ msgid "webgilde GmbH"
1044
+ msgstr "Link zur Webseite des Autors"
1045
+
1046
+ #: classes/ad.php:670
1047
+ #, php-format
1048
+ msgid "A \"%s\" display condition does not exist"
1049
+ msgstr ""
1050
+
1051
+ #: classes/ad_placements.php:32
1052
+ msgid "Manual placement."
1053
+ msgstr ""
1054
+
1055
+ #: classes/ad_placements.php:35
1056
+ msgid "header"
1057
+ msgstr ""
1058
+
1059
+ #: classes/ad_placements.php:36
1060
+ msgid "Injected in Header (before closing </head> Tag, often not visible)."
1061
+ msgstr ""
1062
+
1063
+ #: classes/ad_placements.php:39
1064
+ msgid "footer"
1065
+ msgstr ""
1066
+
1067
+ #: classes/ad_placements.php:40
1068
+ msgid "Injected in Footer (before closing </body> Tag)."
1069
+ msgstr ""
1070
+
1071
+ #: classes/ad_placements.php:43
1072
+ #, fuzzy
1073
+ msgid "before post"
1074
+ msgstr "Beitrag / Seite"
1075
+
1076
+ #: classes/ad_placements.php:44
1077
+ msgid "Injected before the post content."
1078
+ msgstr ""
1079
+
1080
+ #: classes/ad_placements.php:47
1081
+ #, fuzzy
1082
+ msgid "after post"
1083
+ msgstr "Beitrag / Seite"
1084
+
1085
+ #: classes/ad_placements.php:48
1086
+ msgid "Injected after the post content."
1087
+ msgstr ""
1088
+
1089
+ #: classes/ad_placements.php:51
1090
+ msgid "post content"
1091
+ msgstr ""
1092
+
1093
+ #: classes/ad_placements.php:52
1094
+ msgid ""
1095
+ "Injected into the post content. You can choose the paragraph after which the "
1096
+ "ad content is displayed."
1097
+ msgstr ""
1098
+
1099
+ #: classes/ad_placements.php:74
1100
+ #, fuzzy
1101
+ msgid "Slug can't be empty."
1102
+ msgstr "slug"
1103
+
1104
+ #: classes/ad_placements.php:76
1105
+ #, fuzzy
1106
+ msgid "Slug already exists."
1107
+ msgstr "slug"
1108
+
1109
+ #: classes/ad_type_content.php:35
1110
+ #, fuzzy
1111
+ msgid "Rich Content"
1112
+ msgstr "Bildquellen unter dem Inhalt"
1113
+
1114
+ #: classes/ad_type_content.php:36
1115
+ msgid ""
1116
+ "The full content editor from WordPress with all features like image upload "
1117
+ "or styling, but also simple text/html mode for scripts and code."
1118
+ msgstr ""
1119
+
1120
+ #: classes/ad_type_plain.php:31
1121
+ #, fuzzy
1122
+ msgid "Plain Text and Code"
1123
+ msgstr "Menütext"
1124
+
1125
+ #: classes/ad_type_plain.php:32
1126
+ msgid ""
1127
+ "Simple text editor without any filters. You might use it to display "
1128
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
1129
+ "content field magic does not work here."
1130
+ msgstr ""
1131
+
1132
+ #: classes/ad_type_plain.php:55
1133
+ msgid "Insert plain text or code into this field."
1134
+ msgstr ""
1135
+
1136
+ #: classes/widget.php:19
1137
+ #, fuzzy
1138
+ msgid "Display Ads and Ad Groups."
1139
+ msgstr "Anzeigen-Gruppen"
1140
+
1141
+ #: classes/widget.php:51
1142
+ #, fuzzy
1143
+ msgid "Title:"
1144
+ msgstr "Titel:"
1145
+
1146
+ #: includes/array_ad_conditions.php:27
1147
+ #, fuzzy
1148
+ msgid "Post Types"
1149
+ msgstr "Für alle öffentlichen <strong>Beitragstypen</strong> anzeigen."
1150
+
1151
+ #: includes/array_ad_conditions.php:33
1152
+ #, fuzzy
1153
+ msgid "Categories, Tags and Taxonomies"
1154
+ msgstr "Für alle <strong>Kategorien, Tags und Taxonomien</strong> anzeigen."
1155
+
1156
+ #: includes/array_ad_conditions.php:34
1157
+ #, fuzzy
1158
+ msgid ""
1159
+ "Choose terms from public category, tag and other taxonomies a post must "
1160
+ "belong to in order to have ads."
1161
+ msgstr ""
1162
+ "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
1163
+ "aus, zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
1164
+
1165
+ #: includes/array_ad_conditions.php:39
1166
+ msgid "Category Archives"
1167
+ msgstr ""
1168
+
1169
+ #: includes/array_ad_conditions.php:40
1170
+ msgid "comma seperated IDs of category archives"
1171
+ msgstr ""
1172
+
1173
+ #: includes/array_ad_conditions.php:45
1174
+ msgid "Individual Posts, Pages and Public Post Types"
1175
+ msgstr ""
1176
+
1177
+ #: includes/array_ad_conditions.php:51
1178
+ #, fuzzy
1179
+ msgid "Home Page"
1180
+ msgstr "Beitrag / Seite"
1181
+
1182
+ #: includes/array_ad_conditions.php:52
1183
+ #, fuzzy
1184
+ msgid "(don't) show on Home page"
1185
+ msgstr "Gehe zur Bearbeitungsansicht des zugeordneten Artikels"
1186
+
1187
+ #: includes/array_ad_conditions.php:56
1188
+ #, fuzzy
1189
+ msgid "Singular Pages"
1190
+ msgstr "Wähle aus, wo Bildquellen auf Einzelseiten angezeigt werden"
1191
+
1192
+ #: includes/array_ad_conditions.php:57
1193
+ msgid "(don't) show on singular pages/posts"
1194
+ msgstr ""
1195
+
1196
+ #: includes/array_ad_conditions.php:61
1197
+ #, fuzzy
1198
+ msgid "Archive Pages"
1199
+ msgstr "Auf allen <strong>Kategorie-Archiven</strong> anzeigen."
1200
+
1201
+ #: includes/array_ad_conditions.php:62
1202
+ msgid ""
1203
+ "(don't) show on any type of archive page (category, tag, author and date)"
1204
+ msgstr ""
1205
+
1206
+ #: includes/array_ad_conditions.php:66
1207
+ #, fuzzy
1208
+ msgid "Search Results"
1209
+ msgstr "Surchergebnisse für \"%s\""
1210
+
1211
+ #: includes/array_ad_conditions.php:67
1212
+ msgid "(don't) show on search result pages"
1213
+ msgstr ""
1214
+
1215
+ #: includes/array_ad_conditions.php:71
1216
+ msgid "404 Page"
1217
+ msgstr ""
1218
+
1219
+ #: includes/array_ad_conditions.php:72
1220
+ #, fuzzy
1221
+ msgid "(don't) show on 404 error page"
1222
+ msgstr "Leider konnten wir keine passende Seite finden... (Fehler 404)"
1223
+
1224
+ #: includes/array_ad_conditions.php:76
1225
+ #, fuzzy
1226
+ msgid "Attachment Pages"
1227
+ msgstr "ID des Anhangs"
1228
+
1229
+ #: includes/array_ad_conditions.php:77
1230
+ msgid "(don't) show on attachment pages"
1231
+ msgstr ""
1232
+
1233
+ #: public/class-advanced-ads.php:480
1234
+ #, fuzzy
1235
+ msgctxt "ad group general name"
1236
+ msgid "Ad Groups"
1237
+ msgstr "Anzeigen-Gruppen"
1238
+
1239
+ #: public/class-advanced-ads.php:481
1240
+ #, fuzzy
1241
+ msgctxt "ad group singular name"
1242
+ msgid "Ad Group"
1243
+ msgstr "Anzeigengruppe"
1244
+
1245
+ #: public/class-advanced-ads.php:482
1246
+ #, fuzzy
1247
+ msgid "Search Ad Groups"
1248
+ msgstr "Anzeigen-Gruppen"
1249
+
1250
+ #: public/class-advanced-ads.php:483
1251
+ #, fuzzy
1252
+ msgid "All Ad Groups"
1253
+ msgstr "Anzeigen-Gruppen"
1254
+
1255
+ #: public/class-advanced-ads.php:484
1256
+ #, fuzzy
1257
+ msgid "Parent Ad Groups"
1258
+ msgstr "Anzeigen-Gruppen"
1259
+
1260
+ #: public/class-advanced-ads.php:485
1261
+ #, fuzzy
1262
+ msgid "Parent Ad Groups:"
1263
+ msgstr "Anzeigen-Gruppen"
1264
+
1265
+ #: public/class-advanced-ads.php:486
1266
+ #, fuzzy
1267
+ msgid "Edit Ad Group"
1268
+ msgstr "Anzeigengruppe"
1269
+
1270
+ #: public/class-advanced-ads.php:487
1271
+ #, fuzzy
1272
+ msgid "Update Ad Group"
1273
+ msgstr "Anzeigengruppe"
1274
+
1275
+ #: public/class-advanced-ads.php:488
1276
+ #, fuzzy
1277
+ msgid "Add New Ad Group"
1278
+ msgstr "Anzeigengruppe"
1279
+
1280
+ #: public/class-advanced-ads.php:489
1281
+ #, fuzzy
1282
+ msgid "New Ad Groups Name"
1283
+ msgstr "Anzeigen-Gruppen"
1284
+
1285
+ #: public/class-advanced-ads.php:491
1286
+ #, fuzzy
1287
+ msgid "No Ad Group found"
1288
+ msgstr "Anzeigengruppe"
1289
+
1290
+ #: public/class-advanced-ads.php:517 public/class-advanced-ads.php:533
1291
+ #, fuzzy
1292
+ msgid "Ad"
1293
+ msgstr "Anzeigen bearbeiten"
1294
+
1295
+ #: public/class-advanced-ads.php:518 public/class-advanced-ads.php:522
1296
+ #, fuzzy
1297
+ msgid "New Ad"
1298
+ msgstr "Anzeigen bearbeiten"
1299
+
1300
+ #: public/class-advanced-ads.php:519
1301
+ #, fuzzy
1302
+ msgid "Add New Ad"
1303
+ msgstr "gegebene Buchstaben und Länge eingeben"
1304
+
1305
+ #: public/class-advanced-ads.php:521
1306
+ msgid "Edit Ad"
1307
+ msgstr "Anzeige bearbeiten"
1308
+
1309
+ #: public/class-advanced-ads.php:523
1310
+ msgid "View"
1311
+ msgstr "Ansicht"
1312
+
1313
+ #: public/class-advanced-ads.php:524
1314
+ msgid "View the Ad"
1315
+ msgstr "Anzeige ansehen"
1316
+
1317
+ #: public/class-advanced-ads.php:525
1318
+ msgid "Search Ads"
1319
+ msgstr "Anzeigen suchen"
1320
+
1321
+ #: public/class-advanced-ads.php:526
1322
+ msgid "No Ads found"
1323
+ msgstr "Keine Anzeigen gefunden"
1324
+
1325
+ #: public/class-advanced-ads.php:527
1326
+ #, fuzzy
1327
+ msgid "No Ads found in Trash"
1328
+ msgstr "Keine Anzeigen gefunden"
1329
+
1330
+ #: public/class-advanced-ads.php:528
1331
+ msgid "Parent Ad"
1332
+ msgstr ""
1333
+
1334
+ #: public/class-advanced-ads.php:584
1335
+ #, fuzzy, php-format
1336
+ msgid "Advanced Ads Error: %s"
1337
+ msgstr "Advanced-Anzeigen"
1338
+
1339
+ #~ msgid "Menu Text"
1340
+ #~ msgstr "Menütext"
languages/advanced-ads-it_IT.mo ADDED
Binary file
languages/advanced-ads-it_IT.po ADDED
@@ -0,0 +1,1280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Advanced Ads\n"
4
+ "POT-Creation-Date: 2014-11-24 17:57+0100\n"
5
+ "PO-Revision-Date: 2014-11-24 17:58+0100\n"
6
+ "Last-Translator: Thomas Maier <post@webzunft.de>\n"
7
+ "Language-Team: \n"
8
+ "Language: it_IT\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.5\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: admin/class-advanced-ads-admin.php:182
22
+ #, php-format
23
+ msgid ""
24
+ "Advanced Ads Update: Auto injections are now managed through placements. "
25
+ "Please convert these ads with auto injections: %s"
26
+ msgstr ""
27
+ "L'auto injection è disponibile attraverso il posizionamento. Quindi converti "
28
+ "gli ad con autoinjection: %s"
29
+
30
+ #: admin/class-advanced-ads-admin.php:196
31
+ msgid "Overview"
32
+ msgstr "Sommario"
33
+
34
+ #: admin/class-advanced-ads-admin.php:196 classes/widget.php:21
35
+ msgid "Advanced Ads"
36
+ msgstr "Gestione Ad"
37
+
38
+ #: admin/class-advanced-ads-admin.php:200
39
+ #: admin/includes/class-ad-groups-list-table.php:191
40
+ #: admin/views/overview.php:12 admin/views/placements.php:90
41
+ #: classes/widget.php:66 public/class-advanced-ads.php:516
42
+ msgid "Ads"
43
+ msgstr "Ad"
44
+
45
+ #: admin/class-advanced-ads-admin.php:204 admin/views/placements.php:84
46
+ #: classes/widget.php:59
47
+ msgid "Ad Groups"
48
+ msgstr "Gruppi Ad"
49
+
50
+ #: admin/class-advanced-ads-admin.php:204 admin/views/overview.php:40
51
+ #: public/class-advanced-ads.php:490
52
+ msgid "Groups"
53
+ msgstr "Gruppi"
54
+
55
+ #: admin/class-advanced-ads-admin.php:209 admin/views/debug.php:19
56
+ msgid "Ad Placements"
57
+ msgstr "Posizionamento"
58
+
59
+ #: admin/class-advanced-ads-admin.php:209 admin/views/overview.php:66
60
+ #: admin/views/placements.php:47
61
+ msgid "Placements"
62
+ msgstr "Posizionamento"
63
+
64
+ #: admin/class-advanced-ads-admin.php:213
65
+ msgid "Advanced Ads Settings"
66
+ msgstr "Opzioni"
67
+
68
+ #: admin/class-advanced-ads-admin.php:213
69
+ #: admin/class-advanced-ads-admin.php:391 admin/views/debug.php:13
70
+ msgid "Settings"
71
+ msgstr "Opzioni"
72
+
73
+ #: admin/class-advanced-ads-admin.php:216
74
+ msgid "Advanced Ads Debugging"
75
+ msgstr "Debugging"
76
+
77
+ #: admin/class-advanced-ads-admin.php:216
78
+ msgid "Debug"
79
+ msgstr "Debug"
80
+
81
+ #: admin/class-advanced-ads-admin.php:260
82
+ msgid "Placements updated"
83
+ msgstr "Posizionamento aggiornato"
84
+
85
+ #: admin/class-advanced-ads-admin.php:304
86
+ #: admin/class-advanced-ads-admin.php:331
87
+ msgid "Cheatin&#8217; uh?"
88
+ msgstr "Non barare."
89
+
90
+ #: admin/class-advanced-ads-admin.php:317
91
+ msgid ""
92
+ "You attempted to edit an item that doesn&#8217;t exist. Perhaps it was "
93
+ "deleted?"
94
+ msgstr ""
95
+ "Stai cercando di modificare un elemento che non esiste. Forse è stato "
96
+ "cancellato?"
97
+
98
+ #: admin/class-advanced-ads-admin.php:416
99
+ msgid "Ad Type"
100
+ msgstr "Tipo Ad"
101
+
102
+ #: admin/class-advanced-ads-admin.php:419
103
+ msgid "Ad Parameters"
104
+ msgstr "Parametri Ad"
105
+
106
+ #: admin/class-advanced-ads-admin.php:422
107
+ msgid "Layout / Output"
108
+ msgstr ""
109
+
110
+ #: admin/class-advanced-ads-admin.php:425
111
+ msgid "Display Conditions"
112
+ msgstr "Condizioni di Visualizzazione"
113
+
114
+ #: admin/class-advanced-ads-admin.php:428
115
+ msgid "Visitor Conditions"
116
+ msgstr "Condizioni per Visitatore"
117
+
118
+ #: admin/class-advanced-ads-admin.php:431
119
+ msgid "Auto injection"
120
+ msgstr "Auto injection"
121
+
122
+ #: admin/class-advanced-ads-admin.php:563
123
+ msgid "General"
124
+ msgstr "Generale"
125
+
126
+ #: admin/class-advanced-ads-admin.php:571
127
+ msgid "Hide ads for logged in users"
128
+ msgstr "Nascondi Ad for utenti loggati"
129
+
130
+ #: admin/class-advanced-ads-admin.php:579
131
+ msgid "Use advanced JavaScript"
132
+ msgstr "Usa Js avanzato"
133
+
134
+ #: admin/class-advanced-ads-admin.php:605
135
+ msgid "(display to all)"
136
+ msgstr "(mostra a tutti)"
137
+
138
+ #: admin/class-advanced-ads-admin.php:606
139
+ msgid "Subscriber"
140
+ msgstr "Sottoscrittore"
141
+
142
+ #: admin/class-advanced-ads-admin.php:607
143
+ msgid "Contributor"
144
+ msgstr "Collaboratore"
145
+
146
+ #: admin/class-advanced-ads-admin.php:608
147
+ msgid "Author"
148
+ msgstr "Autore"
149
+
150
+ #: admin/class-advanced-ads-admin.php:609
151
+ msgid "Editor"
152
+ msgstr "Editore"
153
+
154
+ #: admin/class-advanced-ads-admin.php:610
155
+ msgid "Admin"
156
+ msgstr "Amministratore"
157
+
158
+ #: admin/class-advanced-ads-admin.php:618
159
+ msgid "Choose the lowest role a user must have in order to not see any ads."
160
+ msgstr "Scegli il ruolo minimo per non visualizzare gli ad."
161
+
162
+ #: admin/class-advanced-ads-admin.php:631
163
+ #, php-format
164
+ msgid ""
165
+ "Only enable this if you can and want to use the advanced JavaScript "
166
+ "functions described <a href=\"%s\">here</a>."
167
+ msgstr ""
168
+ "Selezionando questa voce puoi usare le funzioni Js avanzati descritte <a "
169
+ "href=\"%s\">qui</a>."
170
+
171
+ #: admin/includes/class-ad-groups-list-table.php:57
172
+ #, php-format
173
+ msgid "Select %s"
174
+ msgstr "Seleziona %s"
175
+
176
+ #: admin/includes/class-ad-groups-list-table.php:94
177
+ #, php-format
178
+ msgid "Edit &#8220;%s&#8221;"
179
+ msgstr "Modifica &#8220;%s&#8221;"
180
+
181
+ #: admin/includes/class-ad-groups-list-table.php:99
182
+ #: admin/includes/class-ad-groups-list-table.php:167
183
+ #: public/class-advanced-ads.php:520
184
+ msgid "Edit"
185
+ msgstr "Modifica"
186
+
187
+ #: admin/includes/class-ad-groups-list-table.php:108
188
+ msgid "Delete"
189
+ msgstr "Cancella"
190
+
191
+ #: admin/includes/class-ad-groups-list-table.php:162
192
+ msgid "Ad weight"
193
+ msgstr "Rilevanza Ad"
194
+
195
+ #: admin/includes/class-ad-groups-list-table.php:188
196
+ #: admin/views/placements.php:40 admin/views/placements.php:64
197
+ msgid "ID"
198
+ msgstr "ID"
199
+
200
+ #: admin/includes/class-ad-groups-list-table.php:189
201
+ msgid "Ad Group"
202
+ msgstr "Gruppo Ad"
203
+
204
+ #: admin/includes/class-ad-groups-list-table.php:190
205
+ msgid "Slug"
206
+ msgstr "Abbreviazione"
207
+
208
+ #: admin/includes/class-display-condition-callbacks.php:28
209
+ msgid "Display on all public <strong>post types</strong>."
210
+ msgstr "Mostra su tutti i tipi di <strong>pagina</strong>."
211
+
212
+ #: admin/includes/class-display-condition-callbacks.php:31
213
+ #: includes/array_ad_conditions.php:28
214
+ msgid "Choose the public post types on which to display the ad."
215
+ msgstr "Scegli i tipi di pagina in cui mostrare gli ad."
216
+
217
+ #: admin/includes/class-display-condition-callbacks.php:86
218
+ msgid "Display for all <strong>categories, tags and taxonomies</strong>."
219
+ msgstr "Mostra per tutte le <strong>categorie, tag e tassonomie</strong>."
220
+
221
+ #: admin/includes/class-display-condition-callbacks.php:88
222
+ msgid "Display here"
223
+ msgstr "Mostra qui"
224
+
225
+ #: admin/includes/class-display-condition-callbacks.php:88
226
+ msgid ""
227
+ "Choose terms from public categories, tags and other taxonomies a post must "
228
+ "belong to in order to have ads."
229
+ msgstr ""
230
+ "Scegli i requisiti che una categoria, un tag o altra tassonomia deve "
231
+ "possedere per avere gli ad."
232
+
233
+ #: admin/includes/class-display-condition-callbacks.php:117
234
+ #: admin/includes/class-display-condition-callbacks.php:196
235
+ msgid "Hide from here"
236
+ msgstr "Nascondi da qui"
237
+
238
+ #: admin/includes/class-display-condition-callbacks.php:117
239
+ msgid ""
240
+ "Choose the terms from public categories, tags and other taxonomies a post "
241
+ "must belong to hide the ad from it."
242
+ msgstr ""
243
+ "Scegli i requisiti che una categoria, un tag o altra tassonomia deve "
244
+ "possedere per non avere gli ad."
245
+
246
+ #: admin/includes/class-display-condition-callbacks.php:164
247
+ msgid "Display on all <strong>category archive pages</strong>."
248
+ msgstr "Mostra su tutte le <strong>pagine archivio di categoria</strong>."
249
+
250
+ #: admin/includes/class-display-condition-callbacks.php:167
251
+ #, fuzzy
252
+ msgid ""
253
+ "Choose the terms from public categories, tags and other taxonomies on "
254
+ "which's archive page ads can appear"
255
+ msgstr ""
256
+ "Scegli i requisiti che un'archivio di categoria, tag o altra tassonomia deve "
257
+ "possedere per avere gli ad."
258
+
259
+ #: admin/includes/class-display-condition-callbacks.php:196
260
+ #, fuzzy
261
+ msgid ""
262
+ "Choose the terms from public categories, tags and other taxonomies on "
263
+ "which's archive pages ads are hidden."
264
+ msgstr ""
265
+ "Scegli i requisiti che un'archivio di categoria, tag o altra tassonomia deve "
266
+ "possedere per non avere gli ad."
267
+
268
+ #: admin/includes/class-display-condition-callbacks.php:230
269
+ msgid ""
270
+ "Display an all <strong>individual posts, pages</strong> and public post type "
271
+ "pages"
272
+ msgstr "Mostra in tutti gli <strong>articoli, pagine</strong> e tipi di pagina"
273
+
274
+ #: admin/includes/class-display-condition-callbacks.php:233
275
+ #: includes/array_ad_conditions.php:46
276
+ msgid ""
277
+ "Choose on which individual posts, pages and public post type pages you want "
278
+ "to display or hide ads."
279
+ msgstr ""
280
+ "Scegli in quali articoli, pagine e tipi di pagina vuoi mostrare o nascondere "
281
+ "gli ad."
282
+
283
+ #: admin/includes/class-display-condition-callbacks.php:250
284
+ msgid "What should happen with ads on the list of individual posts below?"
285
+ msgstr "Cosa dovrebbe accadere agli ad nella seguente lista di articoli?"
286
+
287
+ #: admin/includes/class-display-condition-callbacks.php:251
288
+ msgid "ignore the list"
289
+ msgstr "ignora la lista"
290
+
291
+ #: admin/includes/class-display-condition-callbacks.php:252
292
+ msgid "display the ad only there"
293
+ msgstr "mostra gli ad solo qui"
294
+
295
+ #: admin/includes/class-display-condition-callbacks.php:253
296
+ msgid "hide the ad here"
297
+ msgstr "nascondi gli ad "
298
+
299
+ #: admin/includes/class-display-condition-callbacks.php:261
300
+ msgid "Update warning"
301
+ msgstr "Attenzione"
302
+
303
+ #: admin/includes/class-display-condition-callbacks.php:262
304
+ msgid ""
305
+ "Due to some conflicts before version 1.2.6, it is from now on only possible "
306
+ "to choose either individual pages to include or exclude an ad, but not both "
307
+ "with mixed settings. It seems you are still using mixed settings on this "
308
+ "page. Please consider changing your setup for this ad."
309
+ msgstr ""
310
+ "Dati alcuni conflitti è possibile scegliere anche pagine individuali per "
311
+ "includere o escludere ad, ma non con tutti i settaggi disponibili. "
312
+
313
+ #: admin/includes/class-display-condition-callbacks.php:263
314
+ msgid "Your old values are:"
315
+ msgstr "I tuoi vecchi valori sono:"
316
+
317
+ #: admin/includes/class-display-condition-callbacks.php:264
318
+ msgid "Post IDs the ad is displayed on:"
319
+ msgstr "Id dei post dove questo ad è mostrato:"
320
+
321
+ #: admin/includes/class-display-condition-callbacks.php:265
322
+ msgid "Post IDs the ad is hidden from:"
323
+ msgstr "Id dei post dove questo ad è nascosto:"
324
+
325
+ #: admin/includes/class-display-condition-callbacks.php:266
326
+ msgid ""
327
+ "Below you find the pages the ad is displayed on. If this is ok, just save "
328
+ "the ad. If not, please update your settings."
329
+ msgstr ""
330
+ "Sotto trovi le pagine dove l'ad è mostrato. Se questo è ok, salva l'ad. Se "
331
+ "no, aggiorna i valori dell'ad."
332
+
333
+ #: admin/includes/class-display-condition-callbacks.php:306
334
+ msgid "new"
335
+ msgstr "nuovo"
336
+
337
+ #: admin/includes/class-display-condition-callbacks.php:308
338
+ msgid "type the title"
339
+ msgstr "Scrivi il titolo"
340
+
341
+ #: admin/includes/class-list-table.php:186
342
+ msgid "No items found."
343
+ msgstr "Nessun elemento trovato."
344
+
345
+ #: admin/includes/class-list-table.php:310
346
+ msgid "Bulk Actions"
347
+ msgstr "Azioni di gruppo"
348
+
349
+ #: admin/includes/class-list-table.php:320
350
+ msgid "Apply"
351
+ msgstr "Applica"
352
+
353
+ #: admin/includes/class-list-table.php:404
354
+ msgid "Show all dates"
355
+ msgstr "Mostra tutte le date"
356
+
357
+ #: admin/includes/class-list-table.php:417
358
+ #, php-format
359
+ msgid "%1$s %2$d"
360
+ msgstr "%1$s %2$d"
361
+
362
+ #: admin/includes/class-list-table.php:433
363
+ msgid "List View"
364
+ msgstr "Visualizzazione Lista"
365
+
366
+ #: admin/includes/class-list-table.php:434
367
+ msgid "Excerpt View"
368
+ msgstr "Visualizzazione Riassunto"
369
+
370
+ #: admin/includes/class-list-table.php:460
371
+ #, php-format
372
+ msgid "%s pending"
373
+ msgstr "%s in attesa"
374
+
375
+ #: admin/includes/class-list-table.php:528
376
+ #: admin/includes/class-list-table.php:943
377
+ #, php-format
378
+ msgid "1 item"
379
+ msgid_plural "%s items"
380
+ msgstr[0] "1 elemento"
381
+ msgstr[1] "%s elementi"
382
+
383
+ #: admin/includes/class-list-table.php:546
384
+ msgid "Go to the first page"
385
+ msgstr "Vai alla prima pagina"
386
+
387
+ #: admin/includes/class-list-table.php:553
388
+ msgid "Go to the previous page"
389
+ msgstr "Vai alla pagina precedente"
390
+
391
+ #: admin/includes/class-list-table.php:562
392
+ msgid "Current page"
393
+ msgstr "Pagina corrente"
394
+
395
+ #: admin/includes/class-list-table.php:568
396
+ #, php-format
397
+ msgctxt "paging"
398
+ msgid "%1$s of %2$s"
399
+ msgstr "%1$s di %2$s"
400
+
401
+ #: admin/includes/class-list-table.php:572
402
+ msgid "Go to the next page"
403
+ msgstr "Vai alla pagina successiva"
404
+
405
+ #: admin/includes/class-list-table.php:579
406
+ msgid "Go to the last page"
407
+ msgstr "Vai all'ultima pagina"
408
+
409
+ #: admin/includes/class-list-table.php:715
410
+ msgid "Select All"
411
+ msgstr "Seleziona tutto"
412
+
413
+ #: admin/views/ad-display-metabox.php:6
414
+ msgid "Choose where to display the ad and where to hide it."
415
+ msgstr "Scegli dove mostrare o dove nascondere gli ad."
416
+
417
+ #: admin/views/ad-display-metabox.php:9
418
+ msgid "Display ad everywhere"
419
+ msgstr "Mostra ovunque"
420
+
421
+ #: admin/views/ad-display-metabox.php:10
422
+ msgid "Set display conditions"
423
+ msgstr "Setta condizioni di visualizzazione"
424
+
425
+ #: admin/views/ad-display-metabox.php:14
426
+ #, fuzzy
427
+ msgid "If you want to display the ad everywhere, don't do anything here. "
428
+ msgstr "Se vuoi mostrare gli ad ovunque, non modificare nulla."
429
+
430
+ #: admin/views/ad-display-metabox.php:15
431
+ msgid "The fewer conditions you enter, the better the performance will be."
432
+ msgstr "Meno condizioni ci sono, più fluido sarà l'intero sistema."
433
+
434
+ #: admin/views/ad-display-metabox.php:16
435
+ #, php-format
436
+ msgid ""
437
+ "Learn more about display conditions from the <a href=\"%s\" target=\"_blank"
438
+ "\">manual</a>."
439
+ msgstr "Leggi <a href=\"%s\" target=\"_blank\">qui</a>."
440
+
441
+ #: admin/views/ad-display-metabox.php:32
442
+ msgid "Other conditions"
443
+ msgstr "Altre condizioni"
444
+
445
+ #: admin/views/ad-display-metabox.php:33
446
+ msgid ""
447
+ "When using one of the two choices on checkbox conditions, the rule is "
448
+ "binding. E.g. \"Front Page: show\" will result on the ad being only visible "
449
+ "on the front page."
450
+ msgstr ""
451
+ "Quando usi una delle due opzioni sulle condizioni in checkbox, la regola è "
452
+ "vincolante. Es. \"Front Page: mostra\" renderà l'ad visibile solo sulla "
453
+ "front page."
454
+
455
+ #: admin/views/ad-display-metabox.php:38
456
+ msgid "show"
457
+ msgstr "mostra"
458
+
459
+ #: admin/views/ad-display-metabox.php:39
460
+ msgid "hide"
461
+ msgstr "nascondi"
462
+
463
+ #: admin/views/ad-display-metabox.php:59
464
+ msgid "clear"
465
+ msgstr "Pulisci"
466
+
467
+ #: admin/views/ad-display-metabox.php:66
468
+ msgid "show debug output"
469
+ msgstr "Mostra output debug"
470
+
471
+ #: admin/views/ad-display-metabox.php:67
472
+ msgid "Values saved for this ad in the database (post metas)"
473
+ msgstr "I valori salvati per questo ad nel database (post metas)"
474
+
475
+ #: admin/views/ad-group-ads-inline-form.php:10
476
+ msgctxt "ad group ads form"
477
+ msgid "weight"
478
+ msgstr "Rilevanza"
479
+
480
+ #: admin/views/ad-group-ads-inline-form.php:24
481
+ msgid "Cancel"
482
+ msgstr "Cancella"
483
+
484
+ #: admin/views/ad-group-ads-inline-form.php:25
485
+ #: admin/views/ad-group-edit.php:70
486
+ msgid "Update"
487
+ msgstr "Aggiorna"
488
+
489
+ #: admin/views/ad-group-ads-inline-form.php:33
490
+ msgid "There are no ads in this group"
491
+ msgstr "Non ci sono ad in questo gruppo"
492
+
493
+ #: admin/views/ad-group-edit.php:14
494
+ msgid "You did not select an item for editing."
495
+ msgstr "Non hai selezionato nessun elemento da modificare"
496
+
497
+ #: admin/views/ad-group-edit.php:33
498
+ msgctxt "Taxonomy Name"
499
+ msgid "Name"
500
+ msgstr "Nome"
501
+
502
+ #: admin/views/ad-group-edit.php:38
503
+ msgctxt "Taxonomy Slug"
504
+ msgid "Slug"
505
+ msgstr "Abbreviazione"
506
+
507
+ #: admin/views/ad-group-edit.php:40
508
+ msgid ""
509
+ "An id-like string with only letters in lower case, numbers, and hyphens."
510
+ msgstr ""
511
+ "An id-like string with only letters in lower case, numbers, and hyphens."
512
+
513
+ #: admin/views/ad-group-edit.php:45
514
+ msgctxt "Taxonomy Parent"
515
+ msgid "Parent"
516
+ msgstr "Genitore"
517
+
518
+ #: admin/views/ad-group-edit.php:48 admin/views/ad-group-edit.php:50
519
+ msgid "None"
520
+ msgstr "Niente"
521
+
522
+ #: admin/views/ad-group-edit.php:56
523
+ msgctxt "Taxonomy Description"
524
+ msgid "Description"
525
+ msgstr "Descrizione"
526
+
527
+ #: admin/views/ad-group-edit.php:68
528
+ msgid "Create new Ad Group"
529
+ msgstr "Crea nuovo Gruppo Ad"
530
+
531
+ #: admin/views/ad-group.php:33
532
+ msgid "Ad Group added."
533
+ msgstr "Gruppo Ad aggiunto."
534
+
535
+ #: admin/views/ad-group.php:34 admin/views/ad-group.php:38
536
+ msgid "Ad Group deleted."
537
+ msgstr "Gruppo Ad cancellato."
538
+
539
+ #: admin/views/ad-group.php:35
540
+ msgid "Ad Group updated."
541
+ msgstr "Gruppo Ad aggiornato."
542
+
543
+ #: admin/views/ad-group.php:36
544
+ msgid "Ad Group not added."
545
+ msgstr "Gruppo Ad non aggiunto."
546
+
547
+ #: admin/views/ad-group.php:37
548
+ msgid "Ad Group not updated."
549
+ msgstr "Gruppo Ad non aggiornato."
550
+
551
+ #: admin/views/ad-group.php:55
552
+ #, php-format
553
+ msgid "Search results for &#8220;%s&#8221;"
554
+ msgstr "Risultati di ricerca per &#8220;%s&#8221;"
555
+
556
+ #: admin/views/ad-group.php:61
557
+ msgid ""
558
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
559
+ "display random ads in the frontend or run split tests, but also just for "
560
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
561
+ "ad can belong to multiple ad groups."
562
+ msgstr ""
563
+ "I gruppi Ad sono un metodo molto flessibile per raggruppare gli ad. Puoi "
564
+ "usarli per mostrare ad casuali nel frontend o per split test, ma anche per "
565
+ "finalità informative. Un Gruppo Ad può quindi avere ad multipli, ma anche un "
566
+ "ad può appartenere a Gruppi Ad multipli. "
567
+
568
+ #: admin/views/ad-group.php:69
569
+ msgid "How to display an Ad Group?"
570
+ msgstr "Come mostrare un Gruppo Ad?"
571
+
572
+ #: admin/views/ad-group.php:71
573
+ #, php-format
574
+ msgid ""
575
+ "Examples on how to display an ad group? Find more help and examples in the "
576
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
577
+ msgstr ""
578
+ "Esempi su come mostrare un Gruppo Ad? Leggi <a href=\"%s\" target=\"_blank"
579
+ "\">qui</a>."
580
+
581
+ #: admin/views/ad-group.php:72 admin/views/ad_info.php:6
582
+ #: admin/views/placements.php:51
583
+ msgid "shortcode"
584
+ msgstr "shortcode"
585
+
586
+ #: admin/views/ad-group.php:73
587
+ msgid "To display an ad group with the ID 6 in content fields"
588
+ msgstr "Per mostrare un gruppo ad con ID 6 nel contenuto"
589
+
590
+ #: admin/views/ad-group.php:75 admin/views/ad_info.php:9
591
+ #: admin/views/placements.php:54
592
+ msgid "template"
593
+ msgstr "template"
594
+
595
+ #: admin/views/ad-group.php:76
596
+ msgid "To display an ad group with the ID 6 in template files"
597
+ msgstr "Per mostrare un gruppo con ID 6 in un template"
598
+
599
+ #: admin/views/ad-inject-metabox.php:1
600
+ msgid ""
601
+ "Include ads on specific places automatically without shortcodes or functions."
602
+ msgstr "Includi ad su posizioni specifiche senza funzioni o shortcodes."
603
+
604
+ #: admin/views/ad-inject-metabox.php:4 admin/views/ad-inject-metabox.php:32
605
+ msgid ""
606
+ "This feature is now provided through placements. Please convert the settings "
607
+ "made here to placements."
608
+ msgstr "Questa funzione è disponibile attraverso il posizionamento."
609
+
610
+ #: admin/views/ad-inject-metabox.php:10
611
+ msgid "Include in Header (before closing </head> Tag, probably not visible)"
612
+ msgstr "Includi in Header (prima del tag di chiusura </head>)"
613
+
614
+ #: admin/views/ad-inject-metabox.php:16
615
+ msgid "Include in Footer (before closing </body> Tag)"
616
+ msgstr "Includi in Footer (prima del tag di chiusura </body>)"
617
+
618
+ #: admin/views/ad-inject-metabox.php:22
619
+ msgid "Include before the post content"
620
+ msgstr "Includi prima del contenuto di un post"
621
+
622
+ #: admin/views/ad-inject-metabox.php:28
623
+ msgid "Include after the post content"
624
+ msgstr "Includi dopo il contenuto di un post"
625
+
626
+ #: admin/views/ad-main-metabox.php:3
627
+ msgid "No ad types defined"
628
+ msgstr "Nessun tipo di ad definito"
629
+
630
+ #: admin/views/ad-output-metabox.php:1
631
+ msgid "Everything connected to the ads layout and output."
632
+ msgstr ""
633
+
634
+ #: admin/views/ad-output-metabox.php:5
635
+ #, fuzzy
636
+ msgid "Position"
637
+ msgstr "Descrizione"
638
+
639
+ #: admin/views/ad-output-metabox.php:6
640
+ #, fuzzy
641
+ msgid "- default -"
642
+ msgstr "default"
643
+
644
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:75
645
+ #: classes/ad_placements.php:31
646
+ msgid "default"
647
+ msgstr "default"
648
+
649
+ #: admin/views/ad-output-metabox.php:8
650
+ msgid "left"
651
+ msgstr ""
652
+
653
+ #: admin/views/ad-output-metabox.php:11
654
+ msgid "center"
655
+ msgstr ""
656
+
657
+ #: admin/views/ad-output-metabox.php:14
658
+ #, fuzzy
659
+ msgid "right"
660
+ msgstr "altezza"
661
+
662
+ #: admin/views/ad-output-metabox.php:19
663
+ msgid ""
664
+ "Check this if you don't want the following elements to float around the ad. "
665
+ "(adds a clearfix)"
666
+ msgstr ""
667
+
668
+ #: admin/views/ad-output-metabox.php:22
669
+ msgid "Margin"
670
+ msgstr ""
671
+
672
+ #: admin/views/ad-output-metabox.php:23
673
+ msgid "top:"
674
+ msgstr ""
675
+
676
+ #: admin/views/ad-output-metabox.php:25
677
+ #, fuzzy
678
+ msgid "right:"
679
+ msgstr "altezza"
680
+
681
+ #: admin/views/ad-output-metabox.php:27
682
+ msgid "bottom:"
683
+ msgstr ""
684
+
685
+ #: admin/views/ad-output-metabox.php:29
686
+ msgid "left:"
687
+ msgstr ""
688
+
689
+ #: admin/views/ad-output-metabox.php:31
690
+ msgid "tip: use this to add a margin around the ad"
691
+ msgstr ""
692
+
693
+ #: admin/views/ad-parameters-metabox.php:15
694
+ msgid "size:"
695
+ msgstr "dimensione:"
696
+
697
+ #: admin/views/ad-parameters-metabox.php:16
698
+ msgid "width"
699
+ msgstr "larghezza"
700
+
701
+ #: admin/views/ad-parameters-metabox.php:17
702
+ msgid "height"
703
+ msgstr "altezza"
704
+
705
+ #: admin/views/ad-visitor-metabox.php:1
706
+ msgid ""
707
+ "Display conditions that are based on the user. Use with caution on cached "
708
+ "websites."
709
+ msgstr ""
710
+ "Condizioni di visualizzazione basate sul tipo di supporto. Usa con cautela "
711
+ "su siti web che utilizzano la cache."
712
+
713
+ #: admin/views/ad-visitor-metabox.php:8
714
+ msgid "Display on all devices"
715
+ msgstr "Mostra su tutti gli apparecchi"
716
+
717
+ #: admin/views/ad-visitor-metabox.php:12
718
+ msgid "only on mobile devices"
719
+ msgstr "solo su mobile"
720
+
721
+ #: admin/views/ad-visitor-metabox.php:16
722
+ msgid "not on mobile devices"
723
+ msgstr "solo su apparecchi non mobile"
724
+
725
+ #: admin/views/ad_info.php:1
726
+ #, php-format
727
+ msgid "Ad Id: %s"
728
+ msgstr "Id Ad: %s"
729
+
730
+ #: admin/views/ad_info.php:2
731
+ msgid "How to use this Ad?"
732
+ msgstr ""
733
+
734
+ #: admin/views/ad_info.php:5
735
+ #, php-format
736
+ msgid ""
737
+ "How to display the ad directly? Find more help and examples in the <a href="
738
+ "\"%s\" target=\"_blank\">manual</a>"
739
+ msgstr ""
740
+ "Usa uno shortcode o inserisci il codice direttamente nel template. Leggi <a "
741
+ "href=\"%s\" target=\"_blank\">qui</a>."
742
+
743
+ #: admin/views/ad_info.php:7
744
+ msgid "To display an ad in content fields"
745
+ msgstr "Per mostrare un ad in un contenuto"
746
+
747
+ #: admin/views/ad_info.php:10
748
+ msgid "To display an ad in template files"
749
+ msgstr "Per mostrare un ad in un file del template"
750
+
751
+ #: admin/views/debug.php:8
752
+ msgid "Work in progress"
753
+ msgstr "Work in progress"
754
+
755
+ #: admin/views/debug.php:9
756
+ msgid ""
757
+ "This screen is work in progress. You can use the information if you "
758
+ "understand them, but there is nothing to do here yet."
759
+ msgstr ""
760
+
761
+ #: admin/views/debug.php:16
762
+ msgid "Ad Condition Overview"
763
+ msgstr "Sommario Condizioni Ad"
764
+
765
+ #: admin/views/overview.php:13
766
+ msgid ""
767
+ "Ads are the smallest unit, containing the content or a single ad to be "
768
+ "displayed."
769
+ msgstr ""
770
+ "Gli Ad sono l'unità più semplice, contenente il contenuto o un singolo ad da "
771
+ "mostrare."
772
+
773
+ #: admin/views/overview.php:14
774
+ #, php-format
775
+ msgid "You have published %d ads."
776
+ msgstr "Hai pubblicato %d ad."
777
+
778
+ #: admin/views/overview.php:15
779
+ #, php-format
780
+ msgid "<a href=\"%s\">Manage</a> them or <a href=\"%s\">create</a> a new one"
781
+ msgstr ""
782
+ "<a href=\"%s\">Gestisci</a> gli esistenti o <a href=\"%s\">crea</a> un nuovo "
783
+ "ad"
784
+
785
+ #: admin/views/overview.php:23
786
+ msgid "recent ads"
787
+ msgstr "Ad recenti"
788
+
789
+ #: admin/views/overview.php:33
790
+ msgid "Create your first ad"
791
+ msgstr "Crea il tuo primo ad"
792
+
793
+ #: admin/views/overview.php:41
794
+ msgid ""
795
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
796
+ "single spot."
797
+ msgstr ""
798
+ "Un Gruppo Ad contiene ad ed è usato per far ruotare ad multipli in un "
799
+ "singolo spazio."
800
+
801
+ #: admin/views/overview.php:42
802
+ #, php-format
803
+ msgid "You have %d groups."
804
+ msgstr "Hai %d gruppi."
805
+
806
+ #: admin/views/overview.php:43 admin/views/overview.php:69
807
+ #, php-format
808
+ msgid "<a href=\"%s\">Manage</a> them."
809
+ msgstr "<a href=\"%s\">Gestisci</a> gli esistenti."
810
+
811
+ #: admin/views/overview.php:49
812
+ msgid "recent groups"
813
+ msgstr "gruppi recenti"
814
+
815
+ #: admin/views/overview.php:59
816
+ msgid "Create your first group"
817
+ msgstr "Crea il tuo primo gruppo"
818
+
819
+ #: admin/views/overview.php:67
820
+ msgid ""
821
+ "Ad Placements are the best way to manage where to display ads and groups."
822
+ msgstr ""
823
+ "Il posizionamento degli ad è il miglior modo per gestire dove mostrare ad e "
824
+ "gruppi."
825
+
826
+ #: admin/views/overview.php:68
827
+ #, php-format
828
+ msgid "You have %d placements."
829
+ msgstr "Hai %d posizionamenti."
830
+
831
+ #: admin/views/overview.php:75
832
+ msgid "recent placements"
833
+ msgstr "posizionamenti recenti"
834
+
835
+ #: admin/views/overview.php:85
836
+ msgid "Create your first placement"
837
+ msgstr "Crea il tuo primo posizionamento"
838
+
839
+ #: admin/views/overview.php:93
840
+ msgid "Manual and Support"
841
+ msgstr "Documentazione e Supporto"
842
+
843
+ #: admin/views/overview.php:94
844
+ msgid "Need some help? These are your options"
845
+ msgstr "Hai bisogno di aiuto. Queste le opzioni"
846
+
847
+ #: admin/views/overview.php:96
848
+ #, php-format
849
+ msgid "Visit the <a href=\"%s\">plugin homepage</a>"
850
+ msgstr "Visita l'<a href=\"%s\">homepage</a> del plugin"
851
+
852
+ #: admin/views/overview.php:97
853
+ #, php-format
854
+ msgid "Have a look into the <a href=\"%s\">manual</a>"
855
+ msgstr "Dai un'occhiata al <a href=\"%s\">manuale</a>"
856
+
857
+ #: admin/views/overview.php:98
858
+ #, php-format
859
+ msgid ""
860
+ "Ask a question to other users in the <a href=\"%s\">wordpress.org forum</a>"
861
+ msgstr ""
862
+ "Poni la tua domanda agli altri utenti nel <a href=\"%s\">forum wordpress."
863
+ "org</a>"
864
+
865
+ #: admin/views/overview.php:99
866
+ #, php-format
867
+ msgid "<a href=\"%s\">Hire the developer</a>"
868
+ msgstr "<a href=\"%s\">Assumi lo sviluppatore</a>"
869
+
870
+ #: admin/views/overview.php:103
871
+ msgid "Add-ons"
872
+ msgstr ""
873
+
874
+ #: admin/views/overview.php:104
875
+ msgid "Want to boost your ad income? Try these add-ons"
876
+ msgstr "Vuoi velocizzare i tuoi ad? Prova questi add-ons"
877
+
878
+ #: admin/views/overview.php:111
879
+ msgid "See Add-Ons"
880
+ msgstr "Vedi gli Add-Ons"
881
+
882
+ #: admin/views/placements.php:14
883
+ msgid ""
884
+ "Placements are physically places in your theme and posts. You can use them "
885
+ "if you plan to change ads and ad groups on the same place without the need "
886
+ "to change your templates."
887
+ msgstr ""
888
+ "Il posizionamento è uno spazio fisico nel tuo tema o nei post. Puoi usarlo "
889
+ "se hai bisogno di far ruotare ad e gruppi nello stesso spazio senza aver "
890
+ "bisogno di cambiare i tuoi templates."
891
+
892
+ #: admin/views/placements.php:15
893
+ #, php-format
894
+ msgid ""
895
+ "See also the manual for more information on <a href=\"%s\">placements</a> "
896
+ "and <a href=\"%s\">auto injection</a>."
897
+ msgstr ""
898
+ "Leggi il manuale per avere più informazioni su <a href=\"%s"
899
+ "\">posizionamento</a> e <a href=\"%s\">auto injection</a>."
900
+
901
+ #: admin/views/placements.php:16
902
+ msgid "Create a new placement"
903
+ msgstr "Crea un nuovo posizionamento"
904
+
905
+ #: admin/views/placements.php:18 admin/views/placements.php:63
906
+ msgid "Type"
907
+ msgstr "Tipo"
908
+
909
+ #: admin/views/placements.php:27
910
+ msgid "What is this?"
911
+ msgstr "Cos'è questo?"
912
+
913
+ #: admin/views/placements.php:29
914
+ msgid ""
915
+ "Placement types define how the placements works and where it is going to be "
916
+ "displayed."
917
+ msgstr ""
918
+ "I tipi di posizionamento definiscono come il posizionamento lavora e dove "
919
+ "viene mostrato."
920
+
921
+ #: admin/views/placements.php:38 admin/views/placements.php:62
922
+ msgid "Name"
923
+ msgstr "Nome"
924
+
925
+ #: admin/views/placements.php:42
926
+ msgid ""
927
+ "Individual identifier. Allowed are alphanumeric signs (lower case) and "
928
+ "hyphen."
929
+ msgstr ""
930
+ "Identificatore individuale. Sono permessi segni alfanumerici (lower case) e "
931
+ "trattini."
932
+
933
+ #: admin/views/placements.php:43
934
+ msgid "You can assign Ads and Groups after you created the placement."
935
+ msgstr "Puoi assegnare Ad e Gruppi dopo aver creato il posizionamento."
936
+
937
+ #: admin/views/placements.php:44
938
+ msgid "Save New Placement"
939
+ msgstr "Salva Nuovo Posizionamento"
940
+
941
+ #: admin/views/placements.php:48
942
+ #, fuzzy
943
+ msgid "How to use the <i>default</i> Ad Placement?"
944
+ msgstr "Come usare il posizionamento 'default'?"
945
+
946
+ #: admin/views/placements.php:50
947
+ #, fuzzy, php-format
948
+ msgid ""
949
+ "Examples on how to use the <i>default</i> ad placement? Find more help and "
950
+ "examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
951
+ msgstr ""
952
+ "Esempi su come usare il posizionamento 'default'? Esempi e maggiori "
953
+ "informazioni <a href=\"%s\" target=\"_blank\">qui</a>"
954
+
955
+ #: admin/views/placements.php:52
956
+ msgid "To use an ad placement with the ID skyscraper_left in content fields"
957
+ msgstr "Per usare un posizionamento con l'id skyscraper_left in un contenuto"
958
+
959
+ #: admin/views/placements.php:55
960
+ msgid "To use an ad placement with the ID skyscraper_left in template files"
961
+ msgstr "Per usare un posizionamento con l'id skyscraper_left in un trmplate"
962
+
963
+ #: admin/views/placements.php:65
964
+ msgid "Options"
965
+ msgstr "Opzioni"
966
+
967
+ #: admin/views/placements.php:80
968
+ msgid "Item"
969
+ msgstr "Elemento"
970
+
971
+ #: admin/views/placements.php:82 classes/widget.php:57
972
+ msgid "--empty--"
973
+ msgstr "--vuoto--"
974
+
975
+ #: admin/views/placements.php:101
976
+ msgid "Index"
977
+ msgstr "Indice"
978
+
979
+ #: admin/views/placements.php:109
980
+ msgid "After which paragraph to insert the placement content."
981
+ msgstr "Numero di paragrafi dopo i quali verrà inserito l'ad."
982
+
983
+ #: admin/views/placements.php:118
984
+ msgid "remove placement"
985
+ msgstr "rimuovi posizionamento"
986
+
987
+ #: admin/views/placements.php:124
988
+ msgid "Save Placements"
989
+ msgstr "Salva Posizionamento"
990
+
991
+ #: admin/views/settings.php:23
992
+ msgid "Debug Page"
993
+ msgstr "Pagina Debug"
994
+
995
+ #: admin/views/settings.php:24
996
+ msgid "Advanced Ads on WordPress.org"
997
+ msgstr "Advanced Ads su WordPress.org"
998
+
999
+ #: admin/views/settings.php:24
1000
+ msgid "Advanced Ads on wp.org"
1001
+ msgstr "Advanced Ads su wp.org"
1002
+
1003
+ #: admin/views/settings.php:25
1004
+ msgid "the company behind Advanced Ads"
1005
+ msgstr "la società dietro Advanced Ads"
1006
+
1007
+ #: admin/views/settings.php:25
1008
+ msgid "webgilde GmbH"
1009
+ msgstr "webgilde GmbH"
1010
+
1011
+ #: classes/ad.php:670
1012
+ #, php-format
1013
+ msgid "A \"%s\" display condition does not exist"
1014
+ msgstr "Una condizione \"%s\" non esiste"
1015
+
1016
+ #: classes/ad_placements.php:32
1017
+ msgid "Manual placement."
1018
+ msgstr "Posizionamento manuale."
1019
+
1020
+ #: classes/ad_placements.php:35
1021
+ msgid "header"
1022
+ msgstr "header"
1023
+
1024
+ #: classes/ad_placements.php:36
1025
+ msgid "Injected in Header (before closing </head> Tag, often not visible)."
1026
+ msgstr "Injected in Header (prima del tag di chiusura </head>)."
1027
+
1028
+ #: classes/ad_placements.php:39
1029
+ msgid "footer"
1030
+ msgstr "footer"
1031
+
1032
+ #: classes/ad_placements.php:40
1033
+ msgid "Injected in Footer (before closing </body> Tag)."
1034
+ msgstr "Injected in Footer (prima del tag di chiusura </body>)."
1035
+
1036
+ #: classes/ad_placements.php:43
1037
+ msgid "before post"
1038
+ msgstr "prima del post"
1039
+
1040
+ #: classes/ad_placements.php:44
1041
+ msgid "Injected before the post content."
1042
+ msgstr "Injected prima del contenuto del post."
1043
+
1044
+ #: classes/ad_placements.php:47
1045
+ msgid "after post"
1046
+ msgstr "dopo il post"
1047
+
1048
+ #: classes/ad_placements.php:48
1049
+ msgid "Injected after the post content."
1050
+ msgstr "Injected dopo il contenuto del post."
1051
+
1052
+ #: classes/ad_placements.php:51
1053
+ msgid "post content"
1054
+ msgstr "contenuto del post"
1055
+
1056
+ #: classes/ad_placements.php:52
1057
+ msgid ""
1058
+ "Injected into the post content. You can choose the paragraph after which the "
1059
+ "ad content is displayed."
1060
+ msgstr ""
1061
+ "Injected nel contenuto di un articolo. Puoi scegliere il paragrafo dopo il "
1062
+ "quale mostrare l'ad."
1063
+
1064
+ #: classes/ad_placements.php:74
1065
+ #, fuzzy
1066
+ msgid "Slug can't be empty."
1067
+ msgstr "Il campo abbreviazione non può essere vuoto."
1068
+
1069
+ #: classes/ad_placements.php:76
1070
+ msgid "Slug already exists."
1071
+ msgstr "Abbreviazione già esistente."
1072
+
1073
+ #: classes/ad_type_content.php:35
1074
+ msgid "Rich Content"
1075
+ msgstr "Rich Content"
1076
+
1077
+ #: classes/ad_type_content.php:36
1078
+ msgid ""
1079
+ "The full content editor from WordPress with all features like image upload "
1080
+ "or styling, but also simple text/html mode for scripts and code."
1081
+ msgstr "Editor con tutte le funzionalità al completo."
1082
+
1083
+ #: classes/ad_type_plain.php:31
1084
+ msgid "Plain Text and Code"
1085
+ msgstr "Testo semplice e Codice"
1086
+
1087
+ #: classes/ad_type_plain.php:32
1088
+ msgid ""
1089
+ "Simple text editor without any filters. You might use it to display "
1090
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
1091
+ "content field magic does not work here."
1092
+ msgstr ""
1093
+ "Editor di testo semplice senza filtri. Puoi usarlo per mostrare contenuti "
1094
+ "non filtrati, codice php o javascript. Gli shortcodes non funzionano qui."
1095
+
1096
+ #: classes/ad_type_plain.php:55
1097
+ msgid "Insert plain text or code into this field."
1098
+ msgstr "Inserisci testo semplice o codice in questo campo."
1099
+
1100
+ #: classes/widget.php:19
1101
+ msgid "Display Ads and Ad Groups."
1102
+ msgstr "Mostra Ad e Gruppi Ad"
1103
+
1104
+ #: classes/widget.php:51
1105
+ msgid "Title:"
1106
+ msgstr "Titolo:"
1107
+
1108
+ #: includes/array_ad_conditions.php:27
1109
+ msgid "Post Types"
1110
+ msgstr "Tipi di Pagina"
1111
+
1112
+ #: includes/array_ad_conditions.php:33
1113
+ msgid "Categories, Tags and Taxonomies"
1114
+ msgstr "Categorie, Tag e Tassonomie"
1115
+
1116
+ #: includes/array_ad_conditions.php:34
1117
+ msgid ""
1118
+ "Choose terms from public category, tag and other taxonomies a post must "
1119
+ "belong to in order to have ads."
1120
+ msgstr ""
1121
+ "Scegli i requisiti che una categoria, un tag o altra tassonomia deve "
1122
+ "possedere per avere gli ad."
1123
+
1124
+ #: includes/array_ad_conditions.php:39
1125
+ msgid "Category Archives"
1126
+ msgstr "Archivi di Categoria"
1127
+
1128
+ #: includes/array_ad_conditions.php:40
1129
+ msgid "comma seperated IDs of category archives"
1130
+ msgstr "ID di archivi categorie separati da virgola"
1131
+
1132
+ #: includes/array_ad_conditions.php:45
1133
+ msgid "Individual Posts, Pages and Public Post Types"
1134
+ msgstr "Post singoli, Pagine e tipi Post pubblici"
1135
+
1136
+ #: includes/array_ad_conditions.php:51
1137
+ msgid "Home Page"
1138
+ msgstr "Home Page"
1139
+
1140
+ #: includes/array_ad_conditions.php:52
1141
+ #, fuzzy
1142
+ msgid "(don't) show on Home page"
1143
+ msgstr "(non) mostrare in Home page"
1144
+
1145
+ #: includes/array_ad_conditions.php:56
1146
+ msgid "Singular Pages"
1147
+ msgstr "Pagine singole"
1148
+
1149
+ #: includes/array_ad_conditions.php:57
1150
+ #, fuzzy
1151
+ msgid "(don't) show on singular pages/posts"
1152
+ msgstr "(non) mostrare su pagine/articoli"
1153
+
1154
+ #: includes/array_ad_conditions.php:61
1155
+ msgid "Archive Pages"
1156
+ msgstr "Pagine Archivio"
1157
+
1158
+ #: includes/array_ad_conditions.php:62
1159
+ #, fuzzy
1160
+ msgid ""
1161
+ "(don't) show on any type of archive page (category, tag, author and date)"
1162
+ msgstr "(non) mostrare su ogni tipo di pagina archivio"
1163
+
1164
+ #: includes/array_ad_conditions.php:66
1165
+ msgid "Search Results"
1166
+ msgstr "Risultati Ricerca"
1167
+
1168
+ #: includes/array_ad_conditions.php:67
1169
+ #, fuzzy
1170
+ msgid "(don't) show on search result pages"
1171
+ msgstr "(non) mostrare su pagine di ricerca"
1172
+
1173
+ #: includes/array_ad_conditions.php:71
1174
+ msgid "404 Page"
1175
+ msgstr "Pagina 404"
1176
+
1177
+ #: includes/array_ad_conditions.php:72
1178
+ #, fuzzy
1179
+ msgid "(don't) show on 404 error page"
1180
+ msgstr "(non) mostrare su pagine 404"
1181
+
1182
+ #: includes/array_ad_conditions.php:76
1183
+ msgid "Attachment Pages"
1184
+ msgstr "Pagine Allegato"
1185
+
1186
+ #: includes/array_ad_conditions.php:77
1187
+ #, fuzzy
1188
+ msgid "(don't) show on attachment pages"
1189
+ msgstr "(non) mostrare su pagine allegato"
1190
+
1191
+ #: public/class-advanced-ads.php:480
1192
+ msgctxt "ad group general name"
1193
+ msgid "Ad Groups"
1194
+ msgstr "Gruppi Ad"
1195
+
1196
+ #: public/class-advanced-ads.php:481
1197
+ msgctxt "ad group singular name"
1198
+ msgid "Ad Group"
1199
+ msgstr "Gruppo Ad"
1200
+
1201
+ #: public/class-advanced-ads.php:482
1202
+ msgid "Search Ad Groups"
1203
+ msgstr "Cerca Gruppo Ad"
1204
+
1205
+ #: public/class-advanced-ads.php:483
1206
+ msgid "All Ad Groups"
1207
+ msgstr "Tutti i Gruppi"
1208
+
1209
+ #: public/class-advanced-ads.php:484
1210
+ msgid "Parent Ad Groups"
1211
+ msgstr "Genitore Gruppo Ad:"
1212
+
1213
+ #: public/class-advanced-ads.php:485
1214
+ msgid "Parent Ad Groups:"
1215
+ msgstr "Genitore Gruppi Ad:"
1216
+
1217
+ #: public/class-advanced-ads.php:486
1218
+ msgid "Edit Ad Group"
1219
+ msgstr "Aggiorna Gruppo Ad"
1220
+
1221
+ #: public/class-advanced-ads.php:487
1222
+ msgid "Update Ad Group"
1223
+ msgstr "Aggiorna Gruppo Ad"
1224
+
1225
+ #: public/class-advanced-ads.php:488
1226
+ msgid "Add New Ad Group"
1227
+ msgstr "Aggiungi nuovo gruppo Ad"
1228
+
1229
+ #: public/class-advanced-ads.php:489
1230
+ msgid "New Ad Groups Name"
1231
+ msgstr "Nuovo nome gruppo"
1232
+
1233
+ #: public/class-advanced-ads.php:491
1234
+ msgid "No Ad Group found"
1235
+ msgstr "Nessun Gruppo Ad trovato"
1236
+
1237
+ #: public/class-advanced-ads.php:517 public/class-advanced-ads.php:533
1238
+ msgid "Ad"
1239
+ msgstr "Ad"
1240
+
1241
+ #: public/class-advanced-ads.php:518 public/class-advanced-ads.php:522
1242
+ msgid "New Ad"
1243
+ msgstr "Nuovo Ad"
1244
+
1245
+ #: public/class-advanced-ads.php:519
1246
+ msgid "Add New Ad"
1247
+ msgstr "Aggiungi nuovo Ad"
1248
+
1249
+ #: public/class-advanced-ads.php:521
1250
+ msgid "Edit Ad"
1251
+ msgstr "Modifica Ad"
1252
+
1253
+ #: public/class-advanced-ads.php:523
1254
+ msgid "View"
1255
+ msgstr "Vedi"
1256
+
1257
+ #: public/class-advanced-ads.php:524
1258
+ msgid "View the Ad"
1259
+ msgstr "Vedi l'Ad"
1260
+
1261
+ #: public/class-advanced-ads.php:525
1262
+ msgid "Search Ads"
1263
+ msgstr "Cerca Ad"
1264
+
1265
+ #: public/class-advanced-ads.php:526
1266
+ msgid "No Ads found"
1267
+ msgstr "Nessun Ad trovato"
1268
+
1269
+ #: public/class-advanced-ads.php:527
1270
+ msgid "No Ads found in Trash"
1271
+ msgstr "Nessun Ad trovato in cestino"
1272
+
1273
+ #: public/class-advanced-ads.php:528
1274
+ msgid "Parent Ad"
1275
+ msgstr "Genitore Ad"
1276
+
1277
+ #: public/class-advanced-ads.php:584
1278
+ #, php-format
1279
+ msgid "Advanced Ads Error: %s"
1280
+ msgstr "Errore: %s"
languages/advanced-ads.mo ADDED
Binary file
languages/advanced-ads.pot ADDED
@@ -0,0 +1,1261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013 Thomas Maier, webgilde.com
2
+ # This file is distributed under the same license as the Advanced_Ads package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Advanved Ads\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
+ "POT-Creation-Date: 2014-11-24 17:53+0100\n"
8
+ "PO-Revision-Date: 2014-11-24 17:53+0100\n"
9
+ "Last-Translator: Thomas Maier <post@webzunft.de>\n"
10
+ "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
11
+ "Language: en\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
+ "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: admin/class-advanced-ads-admin.php:182
23
+ #, php-format
24
+ msgid ""
25
+ "Advanced Ads Update: Auto injections are now managed through placements. "
26
+ "Please convert these ads with auto injections: %s"
27
+ msgstr ""
28
+
29
+ #: admin/class-advanced-ads-admin.php:196
30
+ msgid "Overview"
31
+ msgstr ""
32
+
33
+ #: admin/class-advanced-ads-admin.php:196 classes/widget.php:21
34
+ msgid "Advanced Ads"
35
+ msgstr ""
36
+
37
+ #: admin/class-advanced-ads-admin.php:200
38
+ #: admin/includes/class-ad-groups-list-table.php:191
39
+ #: admin/views/overview.php:12 admin/views/placements.php:90
40
+ #: classes/widget.php:66 public/class-advanced-ads.php:516
41
+ msgid "Ads"
42
+ msgstr ""
43
+
44
+ #: admin/class-advanced-ads-admin.php:204 admin/views/placements.php:84
45
+ #: classes/widget.php:59
46
+ msgid "Ad Groups"
47
+ msgstr ""
48
+
49
+ #: admin/class-advanced-ads-admin.php:204 admin/views/overview.php:40
50
+ #: public/class-advanced-ads.php:490
51
+ msgid "Groups"
52
+ msgstr ""
53
+
54
+ #: admin/class-advanced-ads-admin.php:209 admin/views/debug.php:19
55
+ msgid "Ad Placements"
56
+ msgstr ""
57
+
58
+ #: admin/class-advanced-ads-admin.php:209 admin/views/overview.php:66
59
+ #: admin/views/placements.php:47
60
+ msgid "Placements"
61
+ msgstr ""
62
+
63
+ #: admin/class-advanced-ads-admin.php:213
64
+ msgid "Advanced Ads Settings"
65
+ msgstr ""
66
+
67
+ #: admin/class-advanced-ads-admin.php:213
68
+ #: admin/class-advanced-ads-admin.php:391 admin/views/debug.php:13
69
+ msgid "Settings"
70
+ msgstr ""
71
+
72
+ #: admin/class-advanced-ads-admin.php:216
73
+ msgid "Advanced Ads Debugging"
74
+ msgstr ""
75
+
76
+ #: admin/class-advanced-ads-admin.php:216
77
+ msgid "Debug"
78
+ msgstr ""
79
+
80
+ #: admin/class-advanced-ads-admin.php:260
81
+ msgid "Placements updated"
82
+ msgstr ""
83
+
84
+ #: admin/class-advanced-ads-admin.php:304
85
+ #: admin/class-advanced-ads-admin.php:331
86
+ msgid "Cheatin&#8217; uh?"
87
+ msgstr ""
88
+
89
+ #: admin/class-advanced-ads-admin.php:317
90
+ msgid ""
91
+ "You attempted to edit an item that doesn&#8217;t exist. Perhaps it was "
92
+ "deleted?"
93
+ msgstr ""
94
+
95
+ #: admin/class-advanced-ads-admin.php:416
96
+ msgid "Ad Type"
97
+ msgstr ""
98
+
99
+ #: admin/class-advanced-ads-admin.php:419
100
+ msgid "Ad Parameters"
101
+ msgstr ""
102
+
103
+ #: admin/class-advanced-ads-admin.php:422
104
+ msgid "Layout / Output"
105
+ msgstr ""
106
+
107
+ #: admin/class-advanced-ads-admin.php:425
108
+ msgid "Display Conditions"
109
+ msgstr "Anzeigebedingungen"
110
+
111
+ #: admin/class-advanced-ads-admin.php:428
112
+ #, fuzzy
113
+ msgid "Visitor Conditions"
114
+ msgstr "Anzeigebedingungen"
115
+
116
+ #: admin/class-advanced-ads-admin.php:431
117
+ msgid "Auto injection"
118
+ msgstr ""
119
+
120
+ #: admin/class-advanced-ads-admin.php:563
121
+ msgid "General"
122
+ msgstr ""
123
+
124
+ #: admin/class-advanced-ads-admin.php:571
125
+ msgid "Hide ads for logged in users"
126
+ msgstr ""
127
+
128
+ #: admin/class-advanced-ads-admin.php:579
129
+ msgid "Use advanced JavaScript"
130
+ msgstr ""
131
+
132
+ #: admin/class-advanced-ads-admin.php:605
133
+ msgid "(display to all)"
134
+ msgstr "(für alle anzeigen)"
135
+
136
+ #: admin/class-advanced-ads-admin.php:606
137
+ msgid "Subscriber"
138
+ msgstr ""
139
+
140
+ #: admin/class-advanced-ads-admin.php:607
141
+ msgid "Contributor"
142
+ msgstr ""
143
+
144
+ #: admin/class-advanced-ads-admin.php:608
145
+ msgid "Author"
146
+ msgstr ""
147
+
148
+ #: admin/class-advanced-ads-admin.php:609
149
+ msgid "Editor"
150
+ msgstr ""
151
+
152
+ #: admin/class-advanced-ads-admin.php:610
153
+ msgid "Admin"
154
+ msgstr ""
155
+
156
+ #: admin/class-advanced-ads-admin.php:618
157
+ msgid "Choose the lowest role a user must have in order to not see any ads."
158
+ msgstr ""
159
+
160
+ #: admin/class-advanced-ads-admin.php:631
161
+ #, php-format
162
+ msgid ""
163
+ "Only enable this if you can and want to use the advanced JavaScript "
164
+ "functions described <a href=\"%s\">here</a>."
165
+ msgstr ""
166
+
167
+ #: admin/includes/class-ad-groups-list-table.php:57
168
+ #, fuzzy, php-format
169
+ msgid "Select %s"
170
+ msgstr "%s und %s | Kreuzworträtsel-Hilfe"
171
+
172
+ #: admin/includes/class-ad-groups-list-table.php:94
173
+ #, php-format
174
+ msgid "Edit &#8220;%s&#8221;"
175
+ msgstr ""
176
+
177
+ #: admin/includes/class-ad-groups-list-table.php:99
178
+ #: admin/includes/class-ad-groups-list-table.php:167
179
+ #: public/class-advanced-ads.php:520
180
+ #, fuzzy
181
+ msgid "Edit"
182
+ msgstr "Kreuzworträtsel bearbeiten"
183
+
184
+ #: admin/includes/class-ad-groups-list-table.php:108
185
+ msgid "Delete"
186
+ msgstr ""
187
+
188
+ #: admin/includes/class-ad-groups-list-table.php:162
189
+ msgid "Ad weight"
190
+ msgstr ""
191
+
192
+ #: admin/includes/class-ad-groups-list-table.php:188
193
+ #: admin/views/placements.php:40 admin/views/placements.php:64
194
+ msgid "ID"
195
+ msgstr "ID"
196
+
197
+ #: admin/includes/class-ad-groups-list-table.php:189
198
+ msgid "Ad Group"
199
+ msgstr ""
200
+
201
+ #: admin/includes/class-ad-groups-list-table.php:190
202
+ msgid "Slug"
203
+ msgstr ""
204
+
205
+ #: admin/includes/class-display-condition-callbacks.php:28
206
+ msgid "Display on all public <strong>post types</strong>."
207
+ msgstr ""
208
+
209
+ #: admin/includes/class-display-condition-callbacks.php:31
210
+ #: includes/array_ad_conditions.php:28
211
+ msgid "Choose the public post types on which to display the ad."
212
+ msgstr ""
213
+
214
+ #: admin/includes/class-display-condition-callbacks.php:86
215
+ msgid "Display for all <strong>categories, tags and taxonomies</strong>."
216
+ msgstr ""
217
+
218
+ #: admin/includes/class-display-condition-callbacks.php:88
219
+ msgid "Display here"
220
+ msgstr "Hier anzeigen"
221
+
222
+ #: admin/includes/class-display-condition-callbacks.php:88
223
+ msgid ""
224
+ "Choose terms from public categories, tags and other taxonomies a post must "
225
+ "belong to in order to have ads."
226
+ msgstr ""
227
+
228
+ #: admin/includes/class-display-condition-callbacks.php:117
229
+ #: admin/includes/class-display-condition-callbacks.php:196
230
+ #, fuzzy
231
+ msgid "Hide from here"
232
+ msgstr "Hier anzeigen"
233
+
234
+ #: admin/includes/class-display-condition-callbacks.php:117
235
+ msgid ""
236
+ "Choose the terms from public categories, tags and other taxonomies a post "
237
+ "must belong to hide the ad from it."
238
+ msgstr ""
239
+
240
+ #: admin/includes/class-display-condition-callbacks.php:164
241
+ msgid "Display on all <strong>category archive pages</strong>."
242
+ msgstr ""
243
+
244
+ #: admin/includes/class-display-condition-callbacks.php:167
245
+ msgid ""
246
+ "Choose the terms from public categories, tags and other taxonomies on "
247
+ "which's archive page ads can appear"
248
+ msgstr ""
249
+
250
+ #: admin/includes/class-display-condition-callbacks.php:196
251
+ msgid ""
252
+ "Choose the terms from public categories, tags and other taxonomies on "
253
+ "which's archive pages ads are hidden."
254
+ msgstr ""
255
+
256
+ #: admin/includes/class-display-condition-callbacks.php:230
257
+ msgid ""
258
+ "Display an all <strong>individual posts, pages</strong> and public post type "
259
+ "pages"
260
+ msgstr ""
261
+
262
+ #: admin/includes/class-display-condition-callbacks.php:233
263
+ #: includes/array_ad_conditions.php:46
264
+ msgid ""
265
+ "Choose on which individual posts, pages and public post type pages you want "
266
+ "to display or hide ads."
267
+ msgstr ""
268
+
269
+ #: admin/includes/class-display-condition-callbacks.php:250
270
+ msgid "What should happen with ads on the list of individual posts below?"
271
+ msgstr ""
272
+
273
+ #: admin/includes/class-display-condition-callbacks.php:251
274
+ #, fuzzy
275
+ msgid "ignore the list"
276
+ msgstr "Wortlistenansicht ändern"
277
+
278
+ #: admin/includes/class-display-condition-callbacks.php:252
279
+ #, fuzzy
280
+ msgid "display the ad only there"
281
+ msgstr "Anzeigebedingungen"
282
+
283
+ #: admin/includes/class-display-condition-callbacks.php:253
284
+ #, fuzzy
285
+ msgid "hide the ad here"
286
+ msgstr "Hier anzeigen"
287
+
288
+ #: admin/includes/class-display-condition-callbacks.php:261
289
+ #, fuzzy
290
+ msgid "Update warning"
291
+ msgstr "Thema aktualisieren"
292
+
293
+ #: admin/includes/class-display-condition-callbacks.php:262
294
+ msgid ""
295
+ "Due to some conflicts before version 1.2.6, it is from now on only possible "
296
+ "to choose either individual pages to include or exclude an ad, but not both "
297
+ "with mixed settings. It seems you are still using mixed settings on this "
298
+ "page. Please consider changing your setup for this ad."
299
+ msgstr ""
300
+
301
+ #: admin/includes/class-display-condition-callbacks.php:263
302
+ #, fuzzy
303
+ msgid "Your old values are:"
304
+ msgstr "Eingabe mit der Tastatur oder durch Klick auf die Zeilen."
305
+
306
+ #: admin/includes/class-display-condition-callbacks.php:264
307
+ msgid "Post IDs the ad is displayed on:"
308
+ msgstr ""
309
+
310
+ #: admin/includes/class-display-condition-callbacks.php:265
311
+ msgid "Post IDs the ad is hidden from:"
312
+ msgstr ""
313
+
314
+ #: admin/includes/class-display-condition-callbacks.php:266
315
+ msgid ""
316
+ "Below you find the pages the ad is displayed on. If this is ok, just save "
317
+ "the ad. If not, please update your settings."
318
+ msgstr ""
319
+
320
+ #: admin/includes/class-display-condition-callbacks.php:306
321
+ #, fuzzy
322
+ msgid "new"
323
+ msgstr "Neues Kreuzworträtsel"
324
+
325
+ #: admin/includes/class-display-condition-callbacks.php:308
326
+ msgid "type the title"
327
+ msgstr ""
328
+
329
+ #: admin/includes/class-list-table.php:186
330
+ #, fuzzy
331
+ msgid "No items found."
332
+ msgstr "Keine Kreuzworträtsel gefunden"
333
+
334
+ #: admin/includes/class-list-table.php:310
335
+ msgid "Bulk Actions"
336
+ msgstr ""
337
+
338
+ #: admin/includes/class-list-table.php:320
339
+ msgid "Apply"
340
+ msgstr ""
341
+
342
+ #: admin/includes/class-list-table.php:404
343
+ #, fuzzy
344
+ msgid "Show all dates"
345
+ msgstr "(für alle anzeigen)"
346
+
347
+ #: admin/includes/class-list-table.php:417
348
+ #, php-format
349
+ msgid "%1$s %2$d"
350
+ msgstr ""
351
+
352
+ #: admin/includes/class-list-table.php:433
353
+ #, fuzzy
354
+ msgid "List View"
355
+ msgstr "Wortlistenansicht ändern"
356
+
357
+ #: admin/includes/class-list-table.php:434
358
+ #, fuzzy
359
+ msgid "Excerpt View"
360
+ msgstr "Ansicht"
361
+
362
+ #: admin/includes/class-list-table.php:460
363
+ #, fuzzy, php-format
364
+ msgid "%s pending"
365
+ msgstr "%s und %s | Kreuzworträtsel-Hilfe"
366
+
367
+ #: admin/includes/class-list-table.php:528
368
+ #: admin/includes/class-list-table.php:943
369
+ #, php-format
370
+ msgid "1 item"
371
+ msgid_plural "%s items"
372
+ msgstr[0] ""
373
+ msgstr[1] ""
374
+
375
+ #: admin/includes/class-list-table.php:546
376
+ msgid "Go to the first page"
377
+ msgstr ""
378
+
379
+ #: admin/includes/class-list-table.php:553
380
+ msgid "Go to the previous page"
381
+ msgstr ""
382
+
383
+ #: admin/includes/class-list-table.php:562
384
+ msgid "Current page"
385
+ msgstr ""
386
+
387
+ #: admin/includes/class-list-table.php:568
388
+ #, fuzzy, php-format
389
+ msgctxt "paging"
390
+ msgid "%1$s of %2$s"
391
+ msgstr "%s und %s | Kreuzworträtsel-Hilfe"
392
+
393
+ #: admin/includes/class-list-table.php:572
394
+ msgid "Go to the next page"
395
+ msgstr ""
396
+
397
+ #: admin/includes/class-list-table.php:579
398
+ #, fuzzy
399
+ msgid "Go to the last page"
400
+ msgstr "Letzte Muster"
401
+
402
+ #: admin/includes/class-list-table.php:715
403
+ #, fuzzy
404
+ msgid "Select All"
405
+ msgstr "(für alle anzeigen)"
406
+
407
+ #: admin/views/ad-display-metabox.php:6
408
+ msgid "Choose where to display the ad and where to hide it."
409
+ msgstr ""
410
+
411
+ #: admin/views/ad-display-metabox.php:9
412
+ #, fuzzy
413
+ msgid "Display ad everywhere"
414
+ msgstr "Anzeigebedingungen"
415
+
416
+ #: admin/views/ad-display-metabox.php:10
417
+ #, fuzzy
418
+ msgid "Set display conditions"
419
+ msgstr "Anzeigebedingungen"
420
+
421
+ #: admin/views/ad-display-metabox.php:14
422
+ msgid "If you want to display the ad everywhere, don't do anything here. "
423
+ msgstr ""
424
+
425
+ #: admin/views/ad-display-metabox.php:15
426
+ msgid "The fewer conditions you enter, the better the performance will be."
427
+ msgstr ""
428
+
429
+ #: admin/views/ad-display-metabox.php:16
430
+ #, php-format
431
+ msgid ""
432
+ "Learn more about display conditions from the <a href=\"%s\" target=\"_blank"
433
+ "\">manual</a>."
434
+ msgstr ""
435
+
436
+ #: admin/views/ad-display-metabox.php:32
437
+ #, fuzzy
438
+ msgid "Other conditions"
439
+ msgstr "Anzeigebedingungen"
440
+
441
+ #: admin/views/ad-display-metabox.php:33
442
+ msgid ""
443
+ "When using one of the two choices on checkbox conditions, the rule is "
444
+ "binding. E.g. \"Front Page: show\" will result on the ad being only visible "
445
+ "on the front page."
446
+ msgstr ""
447
+
448
+ #: admin/views/ad-display-metabox.php:38
449
+ #, fuzzy
450
+ msgid "show"
451
+ msgstr "anzeigen"
452
+
453
+ #: admin/views/ad-display-metabox.php:39
454
+ #, fuzzy
455
+ msgid "hide"
456
+ msgstr "verbergen"
457
+
458
+ #: admin/views/ad-display-metabox.php:59
459
+ #, fuzzy
460
+ msgid "clear"
461
+ msgstr "Feld leeren"
462
+
463
+ #: admin/views/ad-display-metabox.php:66
464
+ #, fuzzy
465
+ msgid "show debug output"
466
+ msgstr "anzeigen"
467
+
468
+ #: admin/views/ad-display-metabox.php:67
469
+ msgid "Values saved for this ad in the database (post metas)"
470
+ msgstr ""
471
+
472
+ #: admin/views/ad-group-ads-inline-form.php:10
473
+ msgctxt "ad group ads form"
474
+ msgid "weight"
475
+ msgstr ""
476
+
477
+ #: admin/views/ad-group-ads-inline-form.php:24
478
+ msgid "Cancel"
479
+ msgstr ""
480
+
481
+ #: admin/views/ad-group-ads-inline-form.php:25
482
+ #: admin/views/ad-group-edit.php:70
483
+ #, fuzzy
484
+ msgid "Update"
485
+ msgstr "Thema aktualisieren"
486
+
487
+ #: admin/views/ad-group-ads-inline-form.php:33
488
+ msgid "There are no ads in this group"
489
+ msgstr ""
490
+
491
+ #: admin/views/ad-group-edit.php:14
492
+ msgid "You did not select an item for editing."
493
+ msgstr ""
494
+
495
+ #: admin/views/ad-group-edit.php:33
496
+ #, fuzzy
497
+ msgctxt "Taxonomy Name"
498
+ msgid "Name"
499
+ msgstr "Produktname"
500
+
501
+ #: admin/views/ad-group-edit.php:38
502
+ msgctxt "Taxonomy Slug"
503
+ msgid "Slug"
504
+ msgstr ""
505
+
506
+ #: admin/views/ad-group-edit.php:40
507
+ msgid ""
508
+ "An id-like string with only letters in lower case, numbers, and hyphens."
509
+ msgstr ""
510
+
511
+ #: admin/views/ad-group-edit.php:45
512
+ #, fuzzy
513
+ msgctxt "Taxonomy Parent"
514
+ msgid "Parent"
515
+ msgstr "Übergeordnetes Thema"
516
+
517
+ #: admin/views/ad-group-edit.php:48 admin/views/ad-group-edit.php:50
518
+ msgid "None"
519
+ msgstr ""
520
+
521
+ #: admin/views/ad-group-edit.php:56
522
+ msgctxt "Taxonomy Description"
523
+ msgid "Description"
524
+ msgstr ""
525
+
526
+ #: admin/views/ad-group-edit.php:68
527
+ msgid "Create new Ad Group"
528
+ msgstr ""
529
+
530
+ #: admin/views/ad-group.php:33
531
+ msgid "Ad Group added."
532
+ msgstr ""
533
+
534
+ #: admin/views/ad-group.php:34 admin/views/ad-group.php:38
535
+ msgid "Ad Group deleted."
536
+ msgstr ""
537
+
538
+ #: admin/views/ad-group.php:35
539
+ msgid "Ad Group updated."
540
+ msgstr ""
541
+
542
+ #: admin/views/ad-group.php:36
543
+ msgid "Ad Group not added."
544
+ msgstr ""
545
+
546
+ #: admin/views/ad-group.php:37
547
+ msgid "Ad Group not updated."
548
+ msgstr ""
549
+
550
+ #: admin/views/ad-group.php:55
551
+ #, php-format
552
+ msgid "Search results for &#8220;%s&#8221;"
553
+ msgstr ""
554
+
555
+ #: admin/views/ad-group.php:61
556
+ msgid ""
557
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
558
+ "display random ads in the frontend or run split tests, but also just for "
559
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
560
+ "ad can belong to multiple ad groups."
561
+ msgstr ""
562
+
563
+ #: admin/views/ad-group.php:69
564
+ msgid "How to display an Ad Group?"
565
+ msgstr ""
566
+
567
+ #: admin/views/ad-group.php:71
568
+ #, php-format
569
+ msgid ""
570
+ "Examples on how to display an ad group? Find more help and examples in the "
571
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
572
+ msgstr ""
573
+
574
+ #: admin/views/ad-group.php:72 admin/views/ad_info.php:6
575
+ #: admin/views/placements.php:51
576
+ msgid "shortcode"
577
+ msgstr ""
578
+
579
+ #: admin/views/ad-group.php:73
580
+ msgid "To display an ad group with the ID 6 in content fields"
581
+ msgstr ""
582
+
583
+ #: admin/views/ad-group.php:75 admin/views/ad_info.php:9
584
+ #: admin/views/placements.php:54
585
+ msgid "template"
586
+ msgstr ""
587
+
588
+ #: admin/views/ad-group.php:76
589
+ msgid "To display an ad group with the ID 6 in template files"
590
+ msgstr ""
591
+
592
+ #: admin/views/ad-inject-metabox.php:1
593
+ msgid ""
594
+ "Include ads on specific places automatically without shortcodes or functions."
595
+ msgstr ""
596
+
597
+ #: admin/views/ad-inject-metabox.php:4 admin/views/ad-inject-metabox.php:32
598
+ msgid ""
599
+ "This feature is now provided through placements. Please convert the settings "
600
+ "made here to placements."
601
+ msgstr ""
602
+
603
+ #: admin/views/ad-inject-metabox.php:10
604
+ msgid "Include in Header (before closing </head> Tag, probably not visible)"
605
+ msgstr ""
606
+
607
+ #: admin/views/ad-inject-metabox.php:16
608
+ msgid "Include in Footer (before closing </body> Tag)"
609
+ msgstr ""
610
+
611
+ #: admin/views/ad-inject-metabox.php:22
612
+ msgid "Include before the post content"
613
+ msgstr ""
614
+
615
+ #: admin/views/ad-inject-metabox.php:28
616
+ msgid "Include after the post content"
617
+ msgstr ""
618
+
619
+ #: admin/views/ad-main-metabox.php:3
620
+ msgid "No ad types defined"
621
+ msgstr ""
622
+
623
+ #: admin/views/ad-output-metabox.php:1
624
+ msgid "Everything connected to the ads layout and output."
625
+ msgstr ""
626
+
627
+ #: admin/views/ad-output-metabox.php:5
628
+ msgid "Position"
629
+ msgstr ""
630
+
631
+ #: admin/views/ad-output-metabox.php:6
632
+ msgid "- default -"
633
+ msgstr ""
634
+
635
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:75
636
+ #: classes/ad_placements.php:31
637
+ msgid "default"
638
+ msgstr ""
639
+
640
+ #: admin/views/ad-output-metabox.php:8
641
+ msgid "left"
642
+ msgstr ""
643
+
644
+ #: admin/views/ad-output-metabox.php:11
645
+ msgid "center"
646
+ msgstr ""
647
+
648
+ #: admin/views/ad-output-metabox.php:14
649
+ msgid "right"
650
+ msgstr ""
651
+
652
+ #: admin/views/ad-output-metabox.php:19
653
+ msgid ""
654
+ "Check this if you don't want the following elements to float around the ad. "
655
+ "(adds a clearfix)"
656
+ msgstr ""
657
+
658
+ #: admin/views/ad-output-metabox.php:22
659
+ msgid "Margin"
660
+ msgstr ""
661
+
662
+ #: admin/views/ad-output-metabox.php:23
663
+ msgid "top:"
664
+ msgstr ""
665
+
666
+ #: admin/views/ad-output-metabox.php:25
667
+ msgid "right:"
668
+ msgstr ""
669
+
670
+ #: admin/views/ad-output-metabox.php:27
671
+ msgid "bottom:"
672
+ msgstr ""
673
+
674
+ #: admin/views/ad-output-metabox.php:29
675
+ msgid "left:"
676
+ msgstr ""
677
+
678
+ #: admin/views/ad-output-metabox.php:31
679
+ msgid "tip: use this to add a margin around the ad"
680
+ msgstr ""
681
+
682
+ #: admin/views/ad-parameters-metabox.php:15
683
+ msgid "size:"
684
+ msgstr ""
685
+
686
+ #: admin/views/ad-parameters-metabox.php:16
687
+ msgid "width"
688
+ msgstr ""
689
+
690
+ #: admin/views/ad-parameters-metabox.php:17
691
+ msgid "height"
692
+ msgstr ""
693
+
694
+ #: admin/views/ad-visitor-metabox.php:1
695
+ msgid ""
696
+ "Display conditions that are based on the user. Use with caution on cached "
697
+ "websites."
698
+ msgstr ""
699
+
700
+ #: admin/views/ad-visitor-metabox.php:8
701
+ #, fuzzy
702
+ msgid "Display on all devices"
703
+ msgstr "(für alle anzeigen)"
704
+
705
+ #: admin/views/ad-visitor-metabox.php:12
706
+ msgid "only on mobile devices"
707
+ msgstr ""
708
+
709
+ #: admin/views/ad-visitor-metabox.php:16
710
+ msgid "not on mobile devices"
711
+ msgstr ""
712
+
713
+ #: admin/views/ad_info.php:1
714
+ #, fuzzy, php-format
715
+ msgid "Ad Id: %s"
716
+ msgstr "ID"
717
+
718
+ #: admin/views/ad_info.php:2
719
+ msgid "How to use this Ad?"
720
+ msgstr ""
721
+
722
+ #: admin/views/ad_info.php:5
723
+ #, php-format
724
+ msgid ""
725
+ "How to display the ad directly? Find more help and examples in the <a href="
726
+ "\"%s\" target=\"_blank\">manual</a>"
727
+ msgstr ""
728
+
729
+ #: admin/views/ad_info.php:7
730
+ msgid "To display an ad in content fields"
731
+ msgstr ""
732
+
733
+ #: admin/views/ad_info.php:10
734
+ msgid "To display an ad in template files"
735
+ msgstr ""
736
+
737
+ #: admin/views/debug.php:8
738
+ msgid "Work in progress"
739
+ msgstr ""
740
+
741
+ #: admin/views/debug.php:9
742
+ msgid ""
743
+ "This screen is work in progress. You can use the information if you "
744
+ "understand them, but there is nothing to do here yet."
745
+ msgstr ""
746
+
747
+ #: admin/views/debug.php:16
748
+ msgid "Ad Condition Overview"
749
+ msgstr ""
750
+
751
+ #: admin/views/overview.php:13
752
+ msgid ""
753
+ "Ads are the smallest unit, containing the content or a single ad to be "
754
+ "displayed."
755
+ msgstr ""
756
+
757
+ #: admin/views/overview.php:14
758
+ #, php-format
759
+ msgid "You have published %d ads."
760
+ msgstr ""
761
+
762
+ #: admin/views/overview.php:15
763
+ #, php-format
764
+ msgid "<a href=\"%s\">Manage</a> them or <a href=\"%s\">create</a> a new one"
765
+ msgstr ""
766
+
767
+ #: admin/views/overview.php:23
768
+ msgid "recent ads"
769
+ msgstr ""
770
+
771
+ #: admin/views/overview.php:33
772
+ msgid "Create your first ad"
773
+ msgstr ""
774
+
775
+ #: admin/views/overview.php:41
776
+ msgid ""
777
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
778
+ "single spot."
779
+ msgstr ""
780
+
781
+ #: admin/views/overview.php:42
782
+ #, php-format
783
+ msgid "You have %d groups."
784
+ msgstr ""
785
+
786
+ #: admin/views/overview.php:43 admin/views/overview.php:69
787
+ #, php-format
788
+ msgid "<a href=\"%s\">Manage</a> them."
789
+ msgstr ""
790
+
791
+ #: admin/views/overview.php:49
792
+ msgid "recent groups"
793
+ msgstr ""
794
+
795
+ #: admin/views/overview.php:59
796
+ msgid "Create your first group"
797
+ msgstr ""
798
+
799
+ #: admin/views/overview.php:67
800
+ msgid ""
801
+ "Ad Placements are the best way to manage where to display ads and groups."
802
+ msgstr ""
803
+
804
+ #: admin/views/overview.php:68
805
+ #, php-format
806
+ msgid "You have %d placements."
807
+ msgstr ""
808
+
809
+ #: admin/views/overview.php:75
810
+ msgid "recent placements"
811
+ msgstr ""
812
+
813
+ #: admin/views/overview.php:85
814
+ msgid "Create your first placement"
815
+ msgstr ""
816
+
817
+ #: admin/views/overview.php:93
818
+ msgid "Manual and Support"
819
+ msgstr ""
820
+
821
+ #: admin/views/overview.php:94
822
+ msgid "Need some help? These are your options"
823
+ msgstr ""
824
+
825
+ #: admin/views/overview.php:96
826
+ #, php-format
827
+ msgid "Visit the <a href=\"%s\">plugin homepage</a>"
828
+ msgstr ""
829
+
830
+ #: admin/views/overview.php:97
831
+ #, php-format
832
+ msgid "Have a look into the <a href=\"%s\">manual</a>"
833
+ msgstr ""
834
+
835
+ #: admin/views/overview.php:98
836
+ #, php-format
837
+ msgid ""
838
+ "Ask a question to other users in the <a href=\"%s\">wordpress.org forum</a>"
839
+ msgstr ""
840
+
841
+ #: admin/views/overview.php:99
842
+ #, php-format
843
+ msgid "<a href=\"%s\">Hire the developer</a>"
844
+ msgstr ""
845
+
846
+ #: admin/views/overview.php:103
847
+ #, fuzzy
848
+ msgid "Add-ons"
849
+ msgstr "Neues Kreuzworträtsel hinzufügen"
850
+
851
+ #: admin/views/overview.php:104
852
+ msgid "Want to boost your ad income? Try these add-ons"
853
+ msgstr ""
854
+
855
+ #: admin/views/overview.php:111
856
+ #, fuzzy
857
+ msgid "See Add-Ons"
858
+ msgstr "Neues Kreuzworträtsel hinzufügen"
859
+
860
+ #: admin/views/placements.php:14
861
+ msgid ""
862
+ "Placements are physically places in your theme and posts. You can use them "
863
+ "if you plan to change ads and ad groups on the same place without the need "
864
+ "to change your templates."
865
+ msgstr ""
866
+
867
+ #: admin/views/placements.php:15
868
+ #, php-format
869
+ msgid ""
870
+ "See also the manual for more information on <a href=\"%s\">placements</a> "
871
+ "and <a href=\"%s\">auto injection</a>."
872
+ msgstr ""
873
+
874
+ #: admin/views/placements.php:16
875
+ #, fuzzy
876
+ msgid "Create a new placement"
877
+ msgstr "Wörter generieren"
878
+
879
+ #: admin/views/placements.php:18 admin/views/placements.php:63
880
+ msgid "Type"
881
+ msgstr ""
882
+
883
+ #: admin/views/placements.php:27
884
+ msgid "What is this?"
885
+ msgstr ""
886
+
887
+ #: admin/views/placements.php:29
888
+ msgid ""
889
+ "Placement types define how the placements works and where it is going to be "
890
+ "displayed."
891
+ msgstr ""
892
+
893
+ #: admin/views/placements.php:38 admin/views/placements.php:62
894
+ #, fuzzy
895
+ msgid "Name"
896
+ msgstr "Produktname"
897
+
898
+ #: admin/views/placements.php:42
899
+ msgid ""
900
+ "Individual identifier. Allowed are alphanumeric signs (lower case) and "
901
+ "hyphen."
902
+ msgstr ""
903
+
904
+ #: admin/views/placements.php:43
905
+ msgid "You can assign Ads and Groups after you created the placement."
906
+ msgstr ""
907
+
908
+ #: admin/views/placements.php:44
909
+ #, fuzzy
910
+ msgid "Save New Placement"
911
+ msgstr "Neues Kreuzworträtsel"
912
+
913
+ #: admin/views/placements.php:48
914
+ msgid "How to use the <i>default</i> Ad Placement?"
915
+ msgstr ""
916
+
917
+ #: admin/views/placements.php:50
918
+ #, php-format
919
+ msgid ""
920
+ "Examples on how to use the <i>default</i> ad placement? Find more help and "
921
+ "examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
922
+ msgstr ""
923
+
924
+ #: admin/views/placements.php:52
925
+ msgid "To use an ad placement with the ID skyscraper_left in content fields"
926
+ msgstr ""
927
+
928
+ #: admin/views/placements.php:55
929
+ msgid "To use an ad placement with the ID skyscraper_left in template files"
930
+ msgstr ""
931
+
932
+ #: admin/views/placements.php:65
933
+ #, fuzzy
934
+ msgid "Options"
935
+ msgstr "Anzeigeoptionen einblenden"
936
+
937
+ #: admin/views/placements.php:80
938
+ msgid "Item"
939
+ msgstr ""
940
+
941
+ #: admin/views/placements.php:82 classes/widget.php:57
942
+ #, fuzzy
943
+ msgid "--empty--"
944
+ msgstr "leeres Feld"
945
+
946
+ #: admin/views/placements.php:101
947
+ msgid "Index"
948
+ msgstr ""
949
+
950
+ #: admin/views/placements.php:109
951
+ msgid "After which paragraph to insert the placement content."
952
+ msgstr ""
953
+
954
+ #: admin/views/placements.php:118
955
+ #, fuzzy
956
+ msgid "remove placement"
957
+ msgstr "Filter entfernen"
958
+
959
+ #: admin/views/placements.php:124
960
+ msgid "Save Placements"
961
+ msgstr ""
962
+
963
+ #: admin/views/settings.php:23
964
+ msgid "Debug Page"
965
+ msgstr ""
966
+
967
+ #: admin/views/settings.php:24
968
+ msgid "Advanced Ads on WordPress.org"
969
+ msgstr ""
970
+
971
+ #: admin/views/settings.php:24
972
+ msgid "Advanced Ads on wp.org"
973
+ msgstr ""
974
+
975
+ #: admin/views/settings.php:25
976
+ msgid "the company behind Advanced Ads"
977
+ msgstr ""
978
+
979
+ #: admin/views/settings.php:25
980
+ msgid "webgilde GmbH"
981
+ msgstr ""
982
+
983
+ #: classes/ad.php:670
984
+ #, php-format
985
+ msgid "A \"%s\" display condition does not exist"
986
+ msgstr ""
987
+
988
+ #: classes/ad_placements.php:32
989
+ msgid "Manual placement."
990
+ msgstr ""
991
+
992
+ #: classes/ad_placements.php:35
993
+ msgid "header"
994
+ msgstr ""
995
+
996
+ #: classes/ad_placements.php:36
997
+ msgid "Injected in Header (before closing </head> Tag, often not visible)."
998
+ msgstr ""
999
+
1000
+ #: classes/ad_placements.php:39
1001
+ msgid "footer"
1002
+ msgstr ""
1003
+
1004
+ #: classes/ad_placements.php:40
1005
+ msgid "Injected in Footer (before closing </body> Tag)."
1006
+ msgstr ""
1007
+
1008
+ #: classes/ad_placements.php:43
1009
+ msgid "before post"
1010
+ msgstr ""
1011
+
1012
+ #: classes/ad_placements.php:44
1013
+ msgid "Injected before the post content."
1014
+ msgstr ""
1015
+
1016
+ #: classes/ad_placements.php:47
1017
+ msgid "after post"
1018
+ msgstr ""
1019
+
1020
+ #: classes/ad_placements.php:48
1021
+ msgid "Injected after the post content."
1022
+ msgstr ""
1023
+
1024
+ #: classes/ad_placements.php:51
1025
+ msgid "post content"
1026
+ msgstr ""
1027
+
1028
+ #: classes/ad_placements.php:52
1029
+ msgid ""
1030
+ "Injected into the post content. You can choose the paragraph after which the "
1031
+ "ad content is displayed."
1032
+ msgstr ""
1033
+
1034
+ #: classes/ad_placements.php:74
1035
+ #, fuzzy
1036
+ msgid "Slug can't be empty."
1037
+ msgstr "leeres Feld"
1038
+
1039
+ #: classes/ad_placements.php:76
1040
+ msgid "Slug already exists."
1041
+ msgstr ""
1042
+
1043
+ #: classes/ad_type_content.php:35
1044
+ msgid "Rich Content"
1045
+ msgstr ""
1046
+
1047
+ #: classes/ad_type_content.php:36
1048
+ msgid ""
1049
+ "The full content editor from WordPress with all features like image upload "
1050
+ "or styling, but also simple text/html mode for scripts and code."
1051
+ msgstr ""
1052
+
1053
+ #: classes/ad_type_plain.php:31
1054
+ #, fuzzy
1055
+ msgid "Plain Text and Code"
1056
+ msgstr "Unbekannte Sprache \"%s\"."
1057
+
1058
+ #: classes/ad_type_plain.php:32
1059
+ msgid ""
1060
+ "Simple text editor without any filters. You might use it to display "
1061
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
1062
+ "content field magic does not work here."
1063
+ msgstr ""
1064
+
1065
+ #: classes/ad_type_plain.php:55
1066
+ msgid "Insert plain text or code into this field."
1067
+ msgstr ""
1068
+
1069
+ #: classes/widget.php:19
1070
+ msgid "Display Ads and Ad Groups."
1071
+ msgstr ""
1072
+
1073
+ #: classes/widget.php:51
1074
+ msgid "Title:"
1075
+ msgstr ""
1076
+
1077
+ #: includes/array_ad_conditions.php:27
1078
+ msgid "Post Types"
1079
+ msgstr ""
1080
+
1081
+ #: includes/array_ad_conditions.php:33
1082
+ #, fuzzy
1083
+ msgid "Categories, Tags and Taxonomies"
1084
+ msgstr "Kreuzworträtsel-Tags"
1085
+
1086
+ #: includes/array_ad_conditions.php:34
1087
+ msgid ""
1088
+ "Choose terms from public category, tag and other taxonomies a post must "
1089
+ "belong to in order to have ads."
1090
+ msgstr ""
1091
+
1092
+ #: includes/array_ad_conditions.php:39
1093
+ msgid "Category Archives"
1094
+ msgstr ""
1095
+
1096
+ #: includes/array_ad_conditions.php:40
1097
+ msgid "comma seperated IDs of category archives"
1098
+ msgstr ""
1099
+
1100
+ #: includes/array_ad_conditions.php:45
1101
+ msgid "Individual Posts, Pages and Public Post Types"
1102
+ msgstr ""
1103
+
1104
+ #: includes/array_ad_conditions.php:51
1105
+ msgid "Home Page"
1106
+ msgstr ""
1107
+
1108
+ #: includes/array_ad_conditions.php:52
1109
+ msgid "(don't) show on Home page"
1110
+ msgstr ""
1111
+
1112
+ #: includes/array_ad_conditions.php:56
1113
+ msgid "Singular Pages"
1114
+ msgstr ""
1115
+
1116
+ #: includes/array_ad_conditions.php:57
1117
+ msgid "(don't) show on singular pages/posts"
1118
+ msgstr ""
1119
+
1120
+ #: includes/array_ad_conditions.php:61
1121
+ msgid "Archive Pages"
1122
+ msgstr ""
1123
+
1124
+ #: includes/array_ad_conditions.php:62
1125
+ msgid ""
1126
+ "(don't) show on any type of archive page (category, tag, author and date)"
1127
+ msgstr ""
1128
+
1129
+ #: includes/array_ad_conditions.php:66
1130
+ #, fuzzy
1131
+ msgid "Search Results"
1132
+ msgstr "suchen"
1133
+
1134
+ #: includes/array_ad_conditions.php:67
1135
+ msgid "(don't) show on search result pages"
1136
+ msgstr ""
1137
+
1138
+ #: includes/array_ad_conditions.php:71
1139
+ msgid "404 Page"
1140
+ msgstr ""
1141
+
1142
+ #: includes/array_ad_conditions.php:72
1143
+ msgid "(don't) show on 404 error page"
1144
+ msgstr ""
1145
+
1146
+ #: includes/array_ad_conditions.php:76
1147
+ msgid "Attachment Pages"
1148
+ msgstr ""
1149
+
1150
+ #: includes/array_ad_conditions.php:77
1151
+ msgid "(don't) show on attachment pages"
1152
+ msgstr ""
1153
+
1154
+ #: public/class-advanced-ads.php:480
1155
+ msgctxt "ad group general name"
1156
+ msgid "Ad Groups"
1157
+ msgstr ""
1158
+
1159
+ #: public/class-advanced-ads.php:481
1160
+ msgctxt "ad group singular name"
1161
+ msgid "Ad Group"
1162
+ msgstr ""
1163
+
1164
+ #: public/class-advanced-ads.php:482
1165
+ #, fuzzy
1166
+ msgid "Search Ad Groups"
1167
+ msgstr "suchen"
1168
+
1169
+ #: public/class-advanced-ads.php:483
1170
+ #, fuzzy
1171
+ msgid "All Ad Groups"
1172
+ msgstr "(für alle anzeigen)"
1173
+
1174
+ #: public/class-advanced-ads.php:484
1175
+ #, fuzzy
1176
+ msgid "Parent Ad Groups"
1177
+ msgstr "Übergeordnetes Thema"
1178
+
1179
+ #: public/class-advanced-ads.php:485
1180
+ #, fuzzy
1181
+ msgid "Parent Ad Groups:"
1182
+ msgstr "Übergeordnetes Thema"
1183
+
1184
+ #: public/class-advanced-ads.php:486
1185
+ #, fuzzy
1186
+ msgid "Edit Ad Group"
1187
+ msgstr "Kreuzworträtsel bearbeiten"
1188
+
1189
+ #: public/class-advanced-ads.php:487
1190
+ #, fuzzy
1191
+ msgid "Update Ad Group"
1192
+ msgstr "Thema aktualisieren"
1193
+
1194
+ #: public/class-advanced-ads.php:488
1195
+ #, fuzzy
1196
+ msgid "Add New Ad Group"
1197
+ msgstr "Neues Kreuzworträtsel hinzufügen"
1198
+
1199
+ #: public/class-advanced-ads.php:489
1200
+ #, fuzzy
1201
+ msgid "New Ad Groups Name"
1202
+ msgstr "Neuer Kreuzworträtsel-Tag"
1203
+
1204
+ #: public/class-advanced-ads.php:491
1205
+ #, fuzzy
1206
+ msgid "No Ad Group found"
1207
+ msgstr "Keine Kreuzworträtsel gefunden"
1208
+
1209
+ #: public/class-advanced-ads.php:517 public/class-advanced-ads.php:533
1210
+ msgid "Ad"
1211
+ msgstr ""
1212
+
1213
+ #: public/class-advanced-ads.php:518 public/class-advanced-ads.php:522
1214
+ #, fuzzy
1215
+ msgid "New Ad"
1216
+ msgstr "Neues Kreuzworträtsel"
1217
+
1218
+ #: public/class-advanced-ads.php:519
1219
+ #, fuzzy
1220
+ msgid "Add New Ad"
1221
+ msgstr "Neues Kreuzworträtsel hinzufügen"
1222
+
1223
+ #: public/class-advanced-ads.php:521
1224
+ #, fuzzy
1225
+ msgid "Edit Ad"
1226
+ msgstr "Kreuzworträtsel bearbeiten"
1227
+
1228
+ #: public/class-advanced-ads.php:523
1229
+ #, fuzzy
1230
+ msgid "View"
1231
+ msgstr "Ansicht"
1232
+
1233
+ #: public/class-advanced-ads.php:524
1234
+ #, fuzzy
1235
+ msgid "View the Ad"
1236
+ msgstr "Ansicht"
1237
+
1238
+ #: public/class-advanced-ads.php:525
1239
+ #, fuzzy
1240
+ msgid "Search Ads"
1241
+ msgstr "suchen"
1242
+
1243
+ #: public/class-advanced-ads.php:526
1244
+ #, fuzzy
1245
+ msgid "No Ads found"
1246
+ msgstr "Keine Kreuzworträtsel gefunden"
1247
+
1248
+ #: public/class-advanced-ads.php:527
1249
+ #, fuzzy
1250
+ msgid "No Ads found in Trash"
1251
+ msgstr "Keine Kreuzworträtsel im Papierkorb"
1252
+
1253
+ #: public/class-advanced-ads.php:528
1254
+ #, fuzzy
1255
+ msgid "Parent Ad"
1256
+ msgstr "Übergeordnetes Thema"
1257
+
1258
+ #: public/class-advanced-ads.php:584
1259
+ #, php-format
1260
+ msgid "Advanced Ads Error: %s"
1261
+ msgstr ""
public/class-advanced-ads.php CHANGED
@@ -25,7 +25,7 @@ class Advanced_Ads {
25
  * @var string
26
  */
27
 
28
- const VERSION = '1.2.7';
29
 
30
  /**
31
  * post type slug
25
  * @var string
26
  */
27
 
28
+ const VERSION = '1.3';
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.0.0
7
- Stable tag: 1.2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -68,6 +68,8 @@ You can also use it to add additional ad network tags into header or footer of y
68
 
69
  Learn more on the [plugin homepage](http://wpadvancedads.com).
70
 
 
 
71
  = Add-Ons =
72
 
73
  * Responsive Ads – load and display ads only for specific browser sizes - [Demo](http://wpadvancedads.com/responsive-ads/)
@@ -130,10 +132,20 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
130
  == Screenshots ==
131
 
132
  1. Create an ad almost like you would create an article or page.
133
- 2. Choose from various conditions where and where not to display your ad.
 
134
 
135
  == Changelog ==
136
 
 
 
 
 
 
 
 
 
 
137
  = 1.2.7 =
138
 
139
  * fixed translation files (thanks to sangkavr)
@@ -214,54 +226,12 @@ other fixes:
214
  * ! ad injection works on posts and pages now
215
  * fixed excluded post types for ads
216
 
217
- = 1.1.3 =
218
-
219
- * minor changes for better extendability for the [sticky ads addon](http://wpadvancedads.com/sticky-ads/)
220
-
221
- = 1.1.2 =
222
-
223
- * composer bugfix
224
- * changes some unclear descriptions
225
- * use group names instead of slug on placement page
226
- * reenabled handles for metaboxes on ad edit screen
227
- * added success message for placement updates
228
-
229
- = 1.1.1 =
230
-
231
- * added filter to be able to add own checks whether to display an ad or not
232
- * added action to add content to the visitor metabox
233
- * option to hide/disable ad conditions
234
- * option to hide all ads from logged in users based on user roles
235
-
236
- = 1.1.0 =
237
-
238
- * allow displaying ads on mobile devices only or exclude from mobile devices
239
- * auto inject ad into header, footer and post content
240
- * display Ad id on Ad edit page
241
- * hide Ad for groups if the Ad is not made public
242
- * use Ad Placements to be more flexible when displaying ads or ad group in template files
243
- * bugfixes
244
-
245
- = 1.0.3 =
246
-
247
- * bugfix added missing file to repository
248
-
249
- = 1.0.2 =
250
-
251
- * bugfix for editing ad weights in ad groups
252
- * bugfix for autoloader
253
-
254
- = 1.0.1 =
255
-
256
- * several new hooks
257
- * seperated settings and debug page
258
- * few internal optimizations
259
- * few bugfixes for php < 5.3
260
 
261
- = 1.0 =
262
- * first release
263
 
264
- == Upgrade Notice ==
 
265
 
266
  = 1.2.4 =
267
 
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.0.1
7
+ Stable tag: 1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
68
 
69
  Learn more on the [plugin homepage](http://wpadvancedads.com).
70
 
71
+ Localizations: English, German, Italien
72
+
73
  = Add-Ons =
74
 
75
  * Responsive Ads – load and display ads only for specific browser sizes - [Demo](http://wpadvancedads.com/responsive-ads/)
132
  == Screenshots ==
133
 
134
  1. Create an ad almost like you would create an article or page.
135
+ 2. Align the ad and set a margin to other elements
136
+ 3. Choose from various conditions where and where not to display your ad.
137
 
138
  == Changelog ==
139
 
140
+ = 1.3 =
141
+
142
+ * COOL: layout options for ads, e.g. to set floating and margins (see the [manual](http://wpadvancedads.com/advancedads/manual/optimizing-the-ad-layout/))
143
+ * list ad groups before ads when selecting them for a placement
144
+ * fixed error when removing an ad that is still in a group
145
+ * fixed possible translation issue
146
+ * added partial German translation
147
+ * added Italien translation (thanky to sangkavr)
148
+
149
  = 1.2.7 =
150
 
151
  * fixed translation files (thanks to sangkavr)
226
  * ! ad injection works on posts and pages now
227
  * fixed excluded post types for ads
228
 
229
+ == Upgrade Notice ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
 
231
+ = 1.3 =
 
232
 
233
+ Don’t miss out on the new layout options to align ads and set margins
234
+ Also fixed issues with languages and added Italien and German translation (partial)
235
 
236
  = 1.2.4 =
237