Advanced Ads - Version 1.17.9-beta.1

Version Description

Download this release

Release Info

Developer advancedads
Plugin Icon 128x128 Advanced Ads
Version 1.17.9-beta.1
Comparing to
See all releases

Code changes from version 1.17.8 to 1.17.9-beta.1

.editorconfig ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file is for unifying the coding style for different editors and IDEs
2
+ # editorconfig.org
3
+
4
+ # WordPress Coding Standards
5
+ # https://make.wordpress.org/core/handbook/coding-standards/
6
+
7
+ root = true
8
+
9
+ [*]
10
+ charset = utf-8
11
+ end_of_line = lf
12
+ insert_final_newline = true
13
+ trim_trailing_whitespace = true
14
+ indent_style = tab
15
+
16
+ [{*.yml,*.json}]
17
+ indent_style = space
18
+ indent_size = 2
19
+
20
+ [*.md]
21
+ trim_trailing_whitespace = false
22
+
23
+ [{*.txt,wp-config-sample.php}]
24
+ end_of_line = crlf
admin/class-advanced-ads-admin.php CHANGED
@@ -488,7 +488,7 @@ class Advanced_Ads_Admin {
488
  $is_german = ( preg_match( '/\.de$/', $from ) || 'de_' === substr( get_locale(), 0, 3 ) || 'de_' === substr( get_user_locale(), 0, 3 ) );
489
  if ( isset( $form['advanced_ads_disable_text'][0] )
490
  && trim( $form['advanced_ads_disable_text'][0] ) !== '' ) { // is a text given then ask for help.
491
- // send German text
492
  if ( $is_german ) {
493
  $text .= "\n\n Hilfe ist auf dem Weg.";
494
  } else {
488
  $is_german = ( preg_match( '/\.de$/', $from ) || 'de_' === substr( get_locale(), 0, 3 ) || 'de_' === substr( get_user_locale(), 0, 3 ) );
489
  if ( isset( $form['advanced_ads_disable_text'][0] )
490
  && trim( $form['advanced_ads_disable_text'][0] ) !== '' ) { // is a text given then ask for help.
491
+ // send German text.
492
  if ( $is_german ) {
493
  $text .= "\n\n Hilfe ist auf dem Weg.";
494
  } else {
admin/views/feedback-disable.php CHANGED
@@ -7,13 +7,15 @@
7
  <li class="advanced_ads_disable_help"><label><input type="radio" name="advanced_ads_disable_reason" value="get help" checked="checked"/><?php esc_attr_e( 'I have a problem, a question or need help.', 'advanced-ads' ); ?></label></li>
8
  <li><textarea class="advanced_ads_disable_help_text" name="advanced_ads_disable_text[]" placeholder="<?php esc_attr_e( 'Please let us know how we can help', 'advanced-ads' ); ?>"></textarea></li>
9
  <?php if ( $email ) : ?>
10
- <?php $mailinput = '<input type="email" name="advanced_ads_disable_reply_email" value="' . $email . '"/>'; ?>
11
  <li class="advanced_ads_disable_reply"><label>
12
  <?php
13
  printf(
14
  /* translators: %s is the email address of the current user */
15
  esc_html__( 'Send me free help to %s', 'advanced-ads' ),
16
- esc_html( $mailinput )
 
 
17
  );
18
  ?>
19
  </label></li>
7
  <li class="advanced_ads_disable_help"><label><input type="radio" name="advanced_ads_disable_reason" value="get help" checked="checked"/><?php esc_attr_e( 'I have a problem, a question or need help.', 'advanced-ads' ); ?></label></li>
8
  <li><textarea class="advanced_ads_disable_help_text" name="advanced_ads_disable_text[]" placeholder="<?php esc_attr_e( 'Please let us know how we can help', 'advanced-ads' ); ?>"></textarea></li>
9
  <?php if ( $email ) : ?>
10
+ <?php $mailinput = '<input type="email" name="advanced_ads_disable_reply_email" value="' . esc_attr( $email ) . '"/>'; ?>
11
  <li class="advanced_ads_disable_reply"><label>
12
  <?php
13
  printf(
14
  /* translators: %s is the email address of the current user */
15
  esc_html__( 'Send me free help to %s', 'advanced-ads' ),
16
+ // see content, HTML and escaping of $mailinput above.
17
+ // phpcs:ignore
18
+ $mailinput
19
  );
20
  ?>
21
  </label></li>
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.17.8
16
  * Author: Thomas Maier, Advanced Ads GmbH
17
  * Author URI: https://wpadvancedads.com
18
  * Text Domain: advanced-ads
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
39
  // general and global slug, e.g. to store options in WP.
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
- define( 'ADVADS_VERSION', '1.17.8' );
43
 
44
  // Autoloading, modules and functions.
45
 
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.17.9-beta.1
16
  * Author: Thomas Maier, Advanced Ads GmbH
17
  * Author URI: https://wpadvancedads.com
18
  * Text Domain: advanced-ads
39
  // general and global slug, e.g. to store options in WP.
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
+ define( 'ADVADS_VERSION', '1.17.9-beta.1' );
43
 
44
  // Autoloading, modules and functions.
45
 
classes/frontend_checks.php CHANGED
@@ -133,14 +133,14 @@ class Advanced_Ads_Frontend_Checks {
133
  ) );
134
 
135
  if ( $wp_the_query->is_singular() ) {
136
- if ( ! $this->did_the_content && $this->has_the_content_placements() ) {
137
- $nodes[] = array( 'type' => 1, 'data' => array(
138
  'parent' => 'advanced_ads_ad_health',
139
  'id' => 'advanced_ads_ad_health_the_content_not_invoked',
140
  'title' => sprintf( __( '<em>%s</em> filter does not exist', 'advanced-ads' ), 'the_content' ),
141
  'href' => ADVADS_URL . 'manual/ads-not-showing-up/?utm_source=advanced-ads&utm_medium=link&utm_campaign=adhealth-content-filter-missing#the_content-filter-missing',
142
  'meta' => array(
143
- 'class' => 'advanced_ads_ad_health_warning',
144
  'target' => '_blank'
145
  )
146
  ) );
@@ -733,6 +733,11 @@ class Advanced_Ads_Frontend_Checks {
733
  jQuery_item.className = jQuery_item.className.replace( /hidden/, '' );
734
  }*/
735
 
 
 
 
 
 
736
  advanced_ads_frontend_checks.showCount();
737
  });
738
 
@@ -784,7 +789,10 @@ class Advanced_Ads_Frontend_Checks {
784
  switch ( notice ) {
785
  case 'auto-ads-with-ads' :
786
  var autoads_ads = jQuery(document).find('.google-auto-placed');
787
- <?php $current_user = get_current_user(); $current_user_nicename = isset( $current_user->user_nicename ) ? $current_user->user_nicename : 'admin'; ?>
 
 
 
788
  content = '' +
789
  '<p style="text-align: center;"><strong><?php printf( __( 'Hi %s', 'advanced-ads'), $current_user_nicename ); ?></strong><br><?php printf( __( 'Advanced Ads detected AdSense Auto ads (%sx) on this page.', 'advanced-ads' ), 'AUTO_ADS_NUM' ); ?><br><?php esc_attr_e( 'Is that correct?', 'advanced-ads' ); ?></p>' +
790
  '<div class="advads-frontend-notice-choice">' +
@@ -796,7 +804,10 @@ class Advanced_Ads_Frontend_Checks {
796
  content = content.replace( 'AUTO_ADS_NUM', autoads_ads.length );
797
  break;
798
  case 'auto-ads-without-ads' :
799
- <?php $current_user = get_current_user(); $current_user_nicename = isset( $current_user->user_nicename ) ? $current_user->user_nicename : 'admin'; ?>
 
 
 
800
  content = '' +
801
  '<p style="text-align: center;"><strong><?php printf( __( 'Hi %s', 'advanced-ads'), $current_user_nicename ); ?></strong><br><?php printf( __( 'Advanced Ads detected the AdSense Auto ads code and <strong>no ads on this page</strong>.', 'advanced-ads' ) ); ?><br/><?php esc_attr_e( 'Is that correct?', 'advanced-ads' ); ?></p>' +
802
  '<div class="advads-frontend-notice-choice">' +
133
  ) );
134
 
135
  if ( $wp_the_query->is_singular() ) {
136
+ if ( $this->has_the_content_placements() ) {
137
+ $nodes[] = array( 'type' => 2, 'data' => array(
138
  'parent' => 'advanced_ads_ad_health',
139
  'id' => 'advanced_ads_ad_health_the_content_not_invoked',
140
  'title' => sprintf( __( '<em>%s</em> filter does not exist', 'advanced-ads' ), 'the_content' ),
141
  'href' => ADVADS_URL . 'manual/ads-not-showing-up/?utm_source=advanced-ads&utm_medium=link&utm_campaign=adhealth-content-filter-missing#the_content-filter-missing',
142
  'meta' => array(
143
+ 'class' => 'hidden advanced_ads_ad_health_warning',
144
  'target' => '_blank'
145
  )
146
  ) );
733
  jQuery_item.className = jQuery_item.className.replace( /hidden/, '' );
734
  }*/
735
 
736
+ <?php if ( ! $this->did_the_content ) : ?>
737
+ var the_content_item = d.getElementById( 'wp-admin-bar-advanced_ads_ad_health_the_content_not_invoked' );
738
+ the_content_item.className = the_content_item.className.replace( /hidden/, '' );
739
+ <?php endif; ?>
740
+
741
  advanced_ads_frontend_checks.showCount();
742
  });
743
 
789
  switch ( notice ) {
790
  case 'auto-ads-with-ads' :
791
  var autoads_ads = jQuery(document).find('.google-auto-placed');
792
+ <?php
793
+ $current_user = wp_get_current_user();
794
+ $current_user_nicename = isset( $current_user->user_nicename ) ? $current_user->user_nicename : 'admin';
795
+ ?>
796
  content = '' +
797
  '<p style="text-align: center;"><strong><?php printf( __( 'Hi %s', 'advanced-ads'), $current_user_nicename ); ?></strong><br><?php printf( __( 'Advanced Ads detected AdSense Auto ads (%sx) on this page.', 'advanced-ads' ), 'AUTO_ADS_NUM' ); ?><br><?php esc_attr_e( 'Is that correct?', 'advanced-ads' ); ?></p>' +
798
  '<div class="advads-frontend-notice-choice">' +
804
  content = content.replace( 'AUTO_ADS_NUM', autoads_ads.length );
805
  break;
806
  case 'auto-ads-without-ads' :
807
+ <?php
808
+ $current_user = wp_get_current_user();
809
+ $current_user_nicename = isset( $current_user->user_nicename ) ? $current_user->user_nicename : 'admin';
810
+ ?>
811
  content = '' +
812
  '<p style="text-align: center;"><strong><?php printf( __( 'Hi %s', 'advanced-ads'), $current_user_nicename ); ?></strong><br><?php printf( __( 'Advanced Ads detected the AdSense Auto ads code and <strong>no ads on this page</strong>.', 'advanced-ads' ) ); ?><br/><?php esc_attr_e( 'Is that correct?', 'advanced-ads' ); ?></p>' +
813
  '<div class="advads-frontend-notice-choice">' +
classes/widget.php CHANGED
@@ -11,181 +11,221 @@
11
 
12
  /**
13
  * Ad widget
14
- *
15
  */
16
  class Advanced_Ads_Widget extends WP_Widget {
17
 
18
- function __construct() {
19
- $prefix = Advanced_Ads_Plugin::get_instance()->get_frontend_prefix();
 
 
 
20
  $classname = $prefix . 'widget';
21
 
22
- $widget_ops = array('classname' => $classname, 'description' => __( 'Display Ads and Ad Groups.', 'advanced-ads' ));
 
 
 
23
  $control_ops = array();
24
- $base_id = Advanced_Ads_Widget::get_base_id();
25
 
26
- parent::__construct( $base_id,'Advanced Ads', $widget_ops, $control_ops );
27
 
28
  add_filter( 'q2w3-fixed-widgets', array( $this, 'q2w3_replace_frontend_id' ) );
29
  }
30
 
31
- function widget($args, $instance) {
 
 
 
 
 
 
32
  /** This filter is documented in wp-includes/default-widgets.php */
33
  $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
34
 
35
- extract( $args );
36
- $item_id = empty($instance['item_id']) ? '' : $instance['item_id'];
37
 
38
  $output = self::output( $item_id );
39
- if( $output == '' ){
40
- return;
41
  }
42
 
 
 
 
43
  $before_widget = $this->maybe_replace_frontend_id( $before_widget, $instance );
44
 
 
45
  echo $before_widget;
46
  if ( ! empty( $title ) ) {
47
- echo $before_title . $title . $after_title;
48
  }
49
  echo $output;
50
  echo $after_widget;
 
51
  }
52
 
53
- function update($new_instance, $old_instance) {
54
- $instance = $old_instance;
55
- $instance['title'] = $new_instance['title'];
 
 
 
 
 
 
 
 
 
 
 
56
  $instance['item_id'] = $new_instance['item_id'];
57
 
58
  // Allow to remove/replace id for new widgets and if it was allowed earlier.
59
- if ( $old_instance === array() || ! empty( $old_instance['remove-widget-id'] ) ) {
60
  $instance['remove-widget-id'] = true;
61
  }
62
  return $instance;
63
  }
64
 
65
- function form($instance) {
66
- $instance = wp_parse_args( (array) $instance, array('title' => '', 'item_id' => '') );
67
- $title = strip_tags( $instance['title'] );
 
 
 
 
 
 
 
 
 
 
 
68
  $elementid = $instance['item_id'];
69
 
70
- ?><p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'advanced-ads' ); ?></label>
71
- <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p><?php
72
-
73
- $items = array_merge( self::items_for_select(), self::widget_placements_for_select() );
74
- ?>
75
- <select id="<?php echo $this->get_field_id( 'item_id' ); ?>" name="<?php echo $this->get_field_name( 'item_id' ); ?>">
76
- <option value=""><?php _e( '--empty--', 'advanced-ads' ); ?></option>
77
- <?php if ( isset($items['placements']) ) : ?>
78
- <optgroup label="<?php _e( 'Placements', 'advanced-ads' ); ?>">
79
- <?php foreach ( $items['placements'] as $_item_id => $_item_title ) : ?>
80
- <option value="<?php echo $_item_id; ?>" <?php selected( $_item_id, $elementid ); ?>><?php echo $_item_title; ?></option>
81
- <?php endforeach; ?>
82
- </optgroup>
83
- <?php endif; ?>
84
- <?php if ( isset($items['groups']) ) : ?>
85
- <optgroup label="<?php _e( 'Ad Groups', 'advanced-ads' ); ?>">
86
- <?php foreach ( $items['groups'] as $_item_id => $_item_title ) : ?>
87
- <option value="<?php echo $_item_id; ?>" <?php selected( $_item_id, $elementid ); ?>><?php echo $_item_title; ?></option>
88
- <?php endforeach; ?>
89
- </optgroup>
90
- <?php endif; ?>
91
- <?php if ( isset($items['ads']) ) : ?>
92
- <optgroup label="<?php _e( 'Ads', 'advanced-ads' ); ?>">
93
- <?php foreach ( $items['ads'] as $_item_id => $_item_title ) : ?>
94
- <option value="<?php echo $_item_id; ?>" <?php selected( $_item_id, $elementid ); ?>><?php echo $_item_title; ?></option>
95
- <?php endforeach; ?>
96
- </optgroup>
97
- <?php endif; ?>
98
- </select><?php
 
99
  }
100
 
101
  /**
102
- * get items for widget select field
103
- *
104
- * @since 1.2
105
- * @return arr $select items for select field
106
- */
107
- static function items_for_select(){
108
  $select = array();
109
- $model = Advanced_Ads::get_instance()->get_model();
110
 
111
- // load all ads
112
- $ads = $model->get_ads( array('orderby' => 'title', 'order' => 'ASC') );
113
- foreach ( $ads as $_ad ){
114
- $select['ads']['ad_' . $_ad->ID] = $_ad->post_title;
 
 
 
 
 
115
  }
116
 
117
- // load all ad groups
118
  $groups = $model->get_ad_groups();
119
- foreach ( $groups as $_group ){
120
- $select['groups']['group_' . $_group->term_id] = $_group->name;
121
  }
122
 
123
  return $select;
124
  }
125
-
126
  /**
127
- * get widget placements for select field
128
- *
129
- * @since 1.6.11
130
- * @return arr $items for select field
131
  */
132
- public static function widget_placements_for_select(){
133
- $select = array();
134
  $placements = Advanced_Ads::get_ad_placements_array();
135
-
136
  if ( is_array( $placements ) ) {
137
  ksort( $placements );
138
  }
139
-
140
- foreach( $placements as $_placement_slug => $_placement ){
141
- if( isset( $_placement['type'] ) && 'sidebar_widget' === $_placement['type'] ){
142
- $select['placements']['placement_' . $_placement_slug ] = $_placement['name'];
143
  }
144
  }
145
-
146
  return $select;
147
  }
148
-
149
  /**
150
- * return content of an in a widget
151
  *
152
- * @since 1.2
153
- * @param string $id slug of the display
154
  */
155
- static function output($id = ''){
156
- // get placement data for the slug
157
- if ( empty($id) ) { return; }
 
158
 
159
  $item = explode( '_', $id, 2 );
160
-
161
- if ( isset($item[1]) ) {
162
  $item_id = $item[1];
163
- } elseif (empty($item_id)) {
164
  return;
165
  }
166
 
167
- // return either ad or group content
168
- if ( $item[0] == 'ad' ){
169
  return get_ad( absint( $item_id ) );
170
- } elseif ( $item[0] == 'group' ){
171
  return get_ad_group( absint( $item_id ) );
172
- } elseif ( $item[0] == 'placement' ){
173
  return get_ad_placement( $item_id );
174
  }
175
-
176
- return;
177
  }
178
 
179
  /**
180
- * get the base id of the widget
181
  *
182
  * @return string
183
  */
184
  public static function get_base_id() {
185
  $options = Advanced_Ads_Plugin::get_instance()->options();
186
 
187
- // deprecated to keep previously changed prefixed working
188
- $prefix2 = ( isset( $options['id-prefix'] ) && $options['id-prefix'] !== '' ) ? $options['id-prefix'] : 'advads_ad_';
189
  return $prefix2 . 'widget';
190
  }
191
 
@@ -193,7 +233,7 @@ class Advanced_Ads_Widget extends WP_Widget {
193
  * Get frontend widget id.
194
  *
195
  * @param int $number Unique ID number of the current widget instance.
196
- * @return str
197
  */
198
  private function get_frontend_id( $number ) {
199
  $prefix = Advanced_Ads_Plugin::get_instance()->get_frontend_prefix();
@@ -204,12 +244,12 @@ class Advanced_Ads_Widget extends WP_Widget {
204
  * Make it harder for ad blockers to block the widget.
205
  * removes the pre-defined widget ID (e.g., advads_ad_widget-20) and replaces it with one that uses the individual frontend prefix
206
  *
207
- * @param str $before_widget
208
- * @param array $instance Settings for the current widget instance.
209
- * @return str $before_widget
210
  */
211
  private function maybe_replace_frontend_id( $before_widget, $instance ) {
212
- if ( ! empty( $instance['remove-widget-id'] )
213
  || defined( 'JNEWS_THEME_ID' ) // the JNews theme overrides the widget ID and resets it, so we target this specifically.
214
  ) {
215
  $pattern = '#\sid=("|\')[^"\']+["\']#';
@@ -217,7 +257,7 @@ class Advanced_Ads_Widget extends WP_Widget {
217
  || ! empty( $instance['q2w3_fixed_widget'] )
218
  ) {
219
  // Replace id.
220
- $number = ! empty( $this->number ) ? $this->number : '';
221
  $before_widget = preg_replace( $pattern, ' id=$01' . $this->get_frontend_id( $number ) . '$01', $before_widget );
222
  } else {
223
  // Remove id.
@@ -230,23 +270,22 @@ class Advanced_Ads_Widget extends WP_Widget {
230
  /**
231
  * Provide the 'Q2W3 Fixed Widget' plugin with the new frontend widget id.
232
  *
233
- * @param array $sidebars_widgets
234
  * @return array $sidebars_widgets
235
  */
236
  public function q2w3_replace_frontend_id( $sidebars_widgets ) {
237
  foreach ( $sidebars_widgets as $sidebar => $widgets ) {
238
  foreach ( $widgets as $k => $widget ) {
239
- $pos = strrpos( $widget, '-' );
240
  $option_name = substr( $widget, 0, $pos );
241
- $number = substr( $widget, $pos + 1 );
242
 
243
- if ( $option_name === self::get_base_id() ) {
244
- $widget_options = get_option('widget_' . $option_name);
245
  if ( ! empty( $widget_options[ $number ]['remove-widget-id'] ) ) {
246
  $sidebars_widgets[ $sidebar ][ $k ] = $this->get_frontend_id( $number );
247
  }
248
  }
249
-
250
  }
251
  }
252
  return $sidebars_widgets;
11
 
12
  /**
13
  * Ad widget
 
14
  */
15
  class Advanced_Ads_Widget extends WP_Widget {
16
 
17
+ /**
18
+ * Advanced_Ads_Widget constructor.
19
+ */
20
+ public function __construct() {
21
+ $prefix = Advanced_Ads_Plugin::get_instance()->get_frontend_prefix();
22
  $classname = $prefix . 'widget';
23
 
24
+ $widget_ops = array(
25
+ 'classname' => $classname,
26
+ 'description' => __( 'Display Ads and Ad Groups.', 'advanced-ads' ),
27
+ );
28
  $control_ops = array();
29
+ $base_id = self::get_base_id();
30
 
31
+ parent::__construct( $base_id, 'Advanced Ads', $widget_ops, $control_ops );
32
 
33
  add_filter( 'q2w3-fixed-widgets', array( $this, 'q2w3_replace_frontend_id' ) );
34
  }
35
 
36
+ /**
37
+ * Echoes the widget content.
38
+ *
39
+ * @param array $args Display arguments including 'before_title', 'after_title', 'before_widget', and 'after_widget'.
40
+ * @param array $instance The settings for the particular instance of the widget.
41
+ */
42
+ public function widget( $args, $instance ) {
43
  /** This filter is documented in wp-includes/default-widgets.php */
44
  $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
45
 
46
+ $item_id = empty( $instance['item_id'] ) ? '' : $instance['item_id'];
 
47
 
48
  $output = self::output( $item_id );
49
+ if ( ! $output ) {
50
+ return;
51
  }
52
 
53
+ $before_widget = isset( $args['before_widget'] ) ? $args['before_widget'] : '';
54
+ $after_widget = isset( $args['after_widget'] ) ? $args['after_widget'] : '';
55
+
56
  $before_widget = $this->maybe_replace_frontend_id( $before_widget, $instance );
57
 
58
+ //phpcs:disable
59
  echo $before_widget;
60
  if ( ! empty( $title ) ) {
61
+ echo $args['before_title'] . $title . $args['after_title'];
62
  }
63
  echo $output;
64
  echo $after_widget;
65
+ //phpcs:enable
66
  }
67
 
68
+ /**
69
+ * Updates a particular instance of a widget.
70
+ *
71
+ * This function should check that `$new_instance` is set correctly. The newly-calculated
72
+ * value of `$instance` should be returned. If false is returned, the instance won't be
73
+ * saved/updated.
74
+ *
75
+ * @param array $new_instance New settings for this instance as input by the user via WP_Widget::form().
76
+ * @param array $old_instance Old settings for this instance.
77
+ * @return array Settings to save or bool false to cancel saving.
78
+ */
79
+ public function update( $new_instance, $old_instance ) {
80
+ $instance = $old_instance;
81
+ $instance['title'] = $new_instance['title'];
82
  $instance['item_id'] = $new_instance['item_id'];
83
 
84
  // Allow to remove/replace id for new widgets and if it was allowed earlier.
85
+ if ( array() === $old_instance || ! empty( $old_instance['remove-widget-id'] ) ) {
86
  $instance['remove-widget-id'] = true;
87
  }
88
  return $instance;
89
  }
90
 
91
+ /**
92
+ * Outputs the settings update form.
93
+ *
94
+ * @param array $instance Current settings.
95
+ */
96
+ public function form( $instance ) {
97
+ $instance = wp_parse_args(
98
+ (array) $instance,
99
+ array(
100
+ 'title' => '',
101
+ 'item_id' => '',
102
+ )
103
+ );
104
+ $title = strip_tags( $instance['title'] );
105
  $elementid = $instance['item_id'];
106
 
107
+ ?><p><label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'advanced-ads' ); ?></label>
108
+ <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p>
109
+ <?php
110
+ $items = array_merge( self::items_for_select(), self::widget_placements_for_select() );
111
+ ?>
112
+ <select id="<?php echo esc_attr( $this->get_field_id( 'item_id' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'item_id' ) ); ?>">
113
+ <option value=""><?php esc_html_e( '--empty--', 'advanced-ads' ); ?></option>
114
+ <?php if ( isset( $items['placements'] ) ) : ?>
115
+ <optgroup label="<?php esc_html_e( 'Placements', 'advanced-ads' ); ?>">
116
+ <?php foreach ( $items['placements'] as $_item_id => $_item_title ) : ?>
117
+ <option value="<?php echo esc_attr( $_item_id ); ?>" <?php selected( $_item_id, $elementid ); ?>><?php echo esc_attr( $_item_title ); ?></option>
118
+ <?php endforeach; ?>
119
+ </optgroup>
120
+ <?php endif; ?>
121
+ <?php if ( isset( $items['groups'] ) ) : ?>
122
+ <optgroup label="<?php esc_html_e( 'Ad Groups', 'advanced-ads' ); ?>">
123
+ <?php foreach ( $items['groups'] as $_item_id => $_item_title ) : ?>
124
+ <option value="<?php echo esc_attr( $_item_id ); ?>" <?php selected( $_item_id, $elementid ); ?>><?php echo esc_html( $_item_title ); ?></option>
125
+ <?php endforeach; ?>
126
+ </optgroup>
127
+ <?php endif; ?>
128
+ <?php if ( isset( $items['ads'] ) ) : ?>
129
+ <optgroup label="<?php esc_html_e( 'Ads', 'advanced-ads' ); ?>">
130
+ <?php foreach ( $items['ads'] as $_item_id => $_item_title ) : ?>
131
+ <option value="<?php echo esc_attr( $_item_id ); ?>" <?php selected( $_item_id, $elementid ); ?>><?php echo esc_html( $_item_title ); ?></option>
132
+ <?php endforeach; ?>
133
+ </optgroup>
134
+ <?php endif; ?>
135
+ </select>
136
+ <?php
137
  }
138
 
139
  /**
140
+ * Get items for widget select field
141
+ *
142
+ * @return array $select items for select field.
143
+ */
144
+ public static function items_for_select() {
 
145
  $select = array();
146
+ $model = Advanced_Ads::get_instance()->get_model();
147
 
148
+ // load all ads.
149
+ $ads = $model->get_ads(
150
+ array(
151
+ 'orderby' => 'title',
152
+ 'order' => 'ASC',
153
+ )
154
+ );
155
+ foreach ( $ads as $_ad ) {
156
+ $select['ads'][ 'ad_' . $_ad->ID ] = $_ad->post_title;
157
  }
158
 
159
+ // load all ad groups.
160
  $groups = $model->get_ad_groups();
161
+ foreach ( $groups as $_group ) {
162
+ $select['groups'][ 'group_' . $_group->term_id ] = $_group->name;
163
  }
164
 
165
  return $select;
166
  }
167
+
168
  /**
169
+ * Get widget placements for select field
170
+ *
171
+ * @return array $items for select field.
 
172
  */
173
+ public static function widget_placements_for_select() {
174
+ $select = array();
175
  $placements = Advanced_Ads::get_ad_placements_array();
176
+
177
  if ( is_array( $placements ) ) {
178
  ksort( $placements );
179
  }
180
+
181
+ foreach ( $placements as $_placement_slug => $_placement ) {
182
+ if ( isset( $_placement['type'] ) && 'sidebar_widget' === $_placement['type'] ) {
183
+ $select['placements'][ 'placement_' . $_placement_slug ] = $_placement['name'];
184
  }
185
  }
186
+
187
  return $select;
188
  }
189
+
190
  /**
191
+ * Return content of an in a widget
192
  *
193
+ * @param string $id slug of the display.
194
+ * @return bool|string
195
  */
196
+ public static function output( $id = '' ) {
197
+ // get placement data for the slug.
198
+ if ( empty( $id ) ) {
199
+ return; }
200
 
201
  $item = explode( '_', $id, 2 );
202
+
203
+ if ( isset( $item[1] ) ) {
204
  $item_id = $item[1];
205
+ } elseif ( empty( $item_id ) ) {
206
  return;
207
  }
208
 
209
+ // return either ad or group content.
210
+ if ( 'ad' === $item[0] ) {
211
  return get_ad( absint( $item_id ) );
212
+ } elseif ( 'group' === $item[0] ) {
213
  return get_ad_group( absint( $item_id ) );
214
+ } elseif ( 'placement' === $item[0] ) {
215
  return get_ad_placement( $item_id );
216
  }
 
 
217
  }
218
 
219
  /**
220
+ * Get the base id of the widget
221
  *
222
  * @return string
223
  */
224
  public static function get_base_id() {
225
  $options = Advanced_Ads_Plugin::get_instance()->options();
226
 
227
+ // deprecated to keep previously changed prefixed working.
228
+ $prefix2 = ( isset( $options['id-prefix'] ) && '' !== $options['id-prefix'] ) ? $options['id-prefix'] : 'advads_ad_';
229
  return $prefix2 . 'widget';
230
  }
231
 
233
  * Get frontend widget id.
234
  *
235
  * @param int $number Unique ID number of the current widget instance.
236
+ * @return string
237
  */
238
  private function get_frontend_id( $number ) {
239
  $prefix = Advanced_Ads_Plugin::get_instance()->get_frontend_prefix();
244
  * Make it harder for ad blockers to block the widget.
245
  * removes the pre-defined widget ID (e.g., advads_ad_widget-20) and replaces it with one that uses the individual frontend prefix
246
  *
247
+ * @param string $before_widget content before the widget.
248
+ * @param array $instance Settings for the current widget instance.
249
+ * @return string $before_widget
250
  */
251
  private function maybe_replace_frontend_id( $before_widget, $instance ) {
252
+ if ( ! empty( $instance['remove-widget-id'] )
253
  || defined( 'JNEWS_THEME_ID' ) // the JNews theme overrides the widget ID and resets it, so we target this specifically.
254
  ) {
255
  $pattern = '#\sid=("|\')[^"\']+["\']#';
257
  || ! empty( $instance['q2w3_fixed_widget'] )
258
  ) {
259
  // Replace id.
260
+ $number = ! empty( $this->number ) ? $this->number : '';
261
  $before_widget = preg_replace( $pattern, ' id=$01' . $this->get_frontend_id( $number ) . '$01', $before_widget );
262
  } else {
263
  // Remove id.
270
  /**
271
  * Provide the 'Q2W3 Fixed Widget' plugin with the new frontend widget id.
272
  *
273
+ * @param array $sidebars_widgets existing sidebar widgets.
274
  * @return array $sidebars_widgets
275
  */
276
  public function q2w3_replace_frontend_id( $sidebars_widgets ) {
277
  foreach ( $sidebars_widgets as $sidebar => $widgets ) {
278
  foreach ( $widgets as $k => $widget ) {
279
+ $pos = strrpos( $widget, '-' );
280
  $option_name = substr( $widget, 0, $pos );
281
+ $number = substr( $widget, $pos + 1 );
282
 
283
+ if ( self::get_base_id() === $option_name ) {
284
+ $widget_options = get_option( 'widget_' . $option_name );
285
  if ( ! empty( $widget_options[ $number ]['remove-widget-id'] ) ) {
286
  $sidebars_widgets[ $sidebar ][ $k ] = $this->get_frontend_id( $number );
287
  }
288
  }
 
289
  }
290
  }
291
  return $sidebars_widgets;
languages/advanced-ads.pot CHANGED
@@ -1,4125 +1,3824 @@
1
- #, fuzzy
 
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Advanved Ads\n"
5
- "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
6
- "POT-Creation-Date: 2020-03-25 12:18+0000\n"
7
- "POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
8
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
10
  "Language-Team: webgilde <support@wpadvancedads.com>\n"
11
- "Language: \n"
12
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Loco https://localise.biz/\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "X-Poedit-Basepath: ../\n"
24
- "X-Poedit-SearchPath-0: ."
25
-
26
- #. %1$s is an anchor (link) opening tag, %2$s is the closing tag.
27
- #: classes/ad-health-notices.php:865
28
- #: modules/gadsense/includes/class-mapi.php:1513
29
- #, php-format
30
- msgid "Learn more about AdSense account issues %1$shere%2$s."
31
- msgstr ""
32
 
33
- #: classes/ad_type_plain.php:32
34
- msgid "Plain Text and Code"
 
35
  msgstr ""
36
 
37
- #: classes/ad_type_plain.php:33
38
- msgid ""
39
- "Any ad network, Amazon, customized AdSense codes, shortcodes, and code like "
40
- "JavaScript, HTML or PHP."
41
  msgstr ""
42
 
43
- #: classes/ad_type_plain.php:54
44
- msgid "Insert plain text or code into this field."
45
  msgstr ""
46
 
47
- #: classes/ad_type_plain.php:95
48
- msgid "Allow PHP"
49
  msgstr ""
50
 
51
- #: classes/ad_type_plain.php:99
52
- msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
 
 
 
 
 
53
  msgstr ""
54
 
55
- #: classes/ad_type_plain.php:102
56
- msgid "No PHP tag detected in your code."
 
 
57
  msgstr ""
58
 
59
- #: classes/ad_type_plain.php:102 classes/ad_type_plain.php:125
60
- msgid "Uncheck this checkbox for improved performance."
61
  msgstr ""
62
 
63
- #: classes/ad_type_plain.php:117
64
- msgid "Allow shortcodes"
65
  msgstr ""
66
 
67
- #: classes/ad_type_plain.php:122
68
- msgid "Execute shortcodes"
69
  msgstr ""
70
 
71
- #: classes/ad_type_plain.php:125
72
- msgid "No shortcode detected in your code."
73
  msgstr ""
74
 
75
- #: classes/EDD_SL_Plugin_Updater.php:228
76
- #, php-format
77
- msgid ""
78
- "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
79
  msgstr ""
80
 
81
- #: classes/EDD_SL_Plugin_Updater.php:236
82
- #, php-format
83
- msgid ""
84
- "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
85
- "or %5$supdate now%6$s."
86
  msgstr ""
87
 
88
- #: classes/EDD_SL_Plugin_Updater.php:479
89
- msgid "You do not have permission to install plugin updates"
90
  msgstr ""
91
 
92
- #: classes/EDD_SL_Plugin_Updater.php:479
93
- msgid "Error"
 
94
  msgstr ""
95
 
96
- #: classes/filesystem.php:61
97
- msgid "Could not access filesystem."
98
  msgstr ""
99
 
100
- #: classes/filesystem.php:65
101
- msgid "Filesystem error."
 
102
  msgstr ""
103
 
104
- #: classes/filesystem.php:72
105
- msgid "Unable to locate WordPress root directory."
 
 
 
106
  msgstr ""
107
 
108
- #: classes/filesystem.php:76
109
- msgid "Unable to locate WordPress content directory (wp-content)."
 
110
  msgstr ""
111
 
112
- #: classes/filesystem.php:80
113
- #, php-format
114
- msgid "Unable to locate needed folder (%s)."
 
 
115
  msgstr ""
116
 
117
- #: classes/ad_type_image.php:34
118
- msgid "Image Ad"
 
119
  msgstr ""
120
 
121
- #: classes/ad_type_image.php:35
122
- msgid "Ads in various image formats."
 
123
  msgstr ""
124
 
125
- #: classes/ad_type_image.php:55
126
- msgid "Insert File"
 
 
 
127
  msgstr ""
128
 
129
- #: classes/ad_type_image.php:55
130
- msgid "Insert"
 
131
  msgstr ""
132
 
133
- #: classes/ad_type_image.php:55
134
- msgid "select image"
 
135
  msgstr ""
136
 
137
- #: classes/ad_type_image.php:56
138
- msgid "edit"
 
139
  msgstr ""
140
 
141
- #: classes/ad_type_image.php:64 classes/ad_type_dummy.php:45
142
- msgid "URL"
 
143
  msgstr ""
144
 
145
- #: classes/ad_type_image.php:68
146
- msgid "Link to target site including http(s)"
 
147
  msgstr ""
148
 
149
- #. $s is a size string like "728 x 90".
150
- #. This string shows up on the ad edit page of
151
- #. image ads if the size entered for the ad is
152
- #. different from the size of the uploaded image.
153
- #: classes/ad_type_image.php:214
154
- #, php-format
155
- msgid "Original size: %s"
156
  msgstr ""
157
 
158
- #: classes/ad_ajax_callbacks.php:246
159
- #, php-format
160
- msgid ""
161
- "An error occurred. Please use <a href=\"%s\" target=\"_blank\">this form</a> "
162
- "to sign up."
163
  msgstr ""
164
 
165
- #: classes/ad_placements.php:46
166
- msgid "Manual Placement"
 
 
167
  msgstr ""
168
 
169
- #: classes/ad_placements.php:47
170
- msgid "Manual placement to use as function or shortcode."
 
171
  msgstr ""
172
 
173
- #: classes/ad_placements.php:56
174
- msgid "Header Code"
 
175
  msgstr ""
176
 
177
- #: classes/ad_placements.php:57
178
- msgid ""
179
- "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
 
180
  msgstr ""
181
 
182
- #: classes/ad_placements.php:61
183
- msgid "Footer Code"
 
 
184
  msgstr ""
185
 
186
- #: classes/ad_placements.php:62
187
- msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
 
188
  msgstr ""
189
 
190
- #: classes/ad_placements.php:67 admin/views/placement-injection-top.php:81
191
- msgid "Before Content"
 
 
192
  msgstr ""
193
 
194
- #: classes/ad_placements.php:68
195
- msgid "Injected before the post content."
 
 
 
196
  msgstr ""
197
 
198
- #: classes/ad_placements.php:78 admin/views/placement-injection-top.php:83
199
- msgid "After Content"
 
200
  msgstr ""
201
 
202
- #: classes/ad_placements.php:79
203
- msgid "Injected after the post content."
204
  msgstr ""
205
 
206
- #: classes/ad_placements.php:89 admin/views/placement-injection-top.php:82
207
- msgid "Content"
 
 
 
 
208
  msgstr ""
209
 
210
- #: classes/ad_placements.php:90
211
- msgid ""
212
- "Injected into the content. You can choose the paragraph after which the ad "
213
- "content is displayed."
214
  msgstr ""
215
 
216
- #: classes/ad_placements.php:100
217
- msgid "Sidebar Widget"
 
218
  msgstr ""
219
 
220
- #: classes/ad_placements.php:101
221
- msgid ""
222
- "Create a sidebar widget with an ad. Can be placed and used like any other "
223
- "widget."
224
  msgstr ""
225
 
226
- #: classes/ad_placements.php:289
227
- #, php-format
228
- msgid "paragraph (%s)"
229
  msgstr ""
230
 
231
- #: classes/ad_placements.php:291
232
- #, php-format
233
- msgid "paragraph without image (%s)"
234
  msgstr ""
235
 
236
- #: classes/ad_placements.php:293
237
- #, php-format
238
- msgid "headline 2 (%s)"
239
  msgstr ""
240
 
241
- #: classes/ad_placements.php:295
242
- #, php-format
243
- msgid "headline 3 (%s)"
244
  msgstr ""
245
 
246
- #: classes/ad_placements.php:297
247
- #, php-format
248
- msgid "headline 4 (%s)"
 
249
  msgstr ""
250
 
251
- #: classes/ad_placements.php:860
252
- #, php-format
253
- msgid "Set <em>%s</em> to show more ads"
 
 
254
  msgstr ""
255
 
256
- #: classes/ad_placements.php:861 admin/includes/class-settings.php:163
257
- msgid "Disable level limitation"
 
 
 
258
  msgstr ""
259
 
260
- #: classes/frontend_checks.php:100
261
- msgid "Random AdSense ads"
 
262
  msgstr ""
263
 
264
- #: classes/frontend_checks.php:114
265
- #: admin/views/settings/general/block-bots.php:5
266
- msgid "You look like a bot"
267
  msgstr ""
268
 
269
- #: classes/frontend_checks.php:128
270
- msgid "Ad blocker enabled"
 
271
  msgstr ""
272
 
273
- #: classes/frontend_checks.php:140
274
- #, php-format
275
- msgid "<em>%s</em> filter does not exist"
276
  msgstr ""
277
 
278
- #: classes/frontend_checks.php:156
279
- msgid "Ads are disabled on this page"
280
  msgstr ""
281
 
282
- #: classes/frontend_checks.php:169
283
- msgid "Ads are disabled in the content of this page"
284
  msgstr ""
285
 
286
- #: classes/frontend_checks.php:181
287
- msgid "the current post ID is 0 "
288
  msgstr ""
289
 
290
- #: classes/frontend_checks.php:195
291
- msgid "Ads are disabled on all pages"
292
  msgstr ""
293
 
294
- #: classes/frontend_checks.php:208
295
- msgid "Ads are disabled on 404 pages"
296
  msgstr ""
297
 
298
- #: classes/frontend_checks.php:221
299
- msgid "Ads are disabled on non singular pages"
 
 
 
 
300
  msgstr ""
301
 
302
- #: classes/frontend_checks.php:234 classes/ad-debug.php:272
303
- #: admin/includes/ad-health-notices.php:145
304
- msgid ""
305
- "Your website is using HTTPS, but the ad code contains HTTP and might not "
306
- "work."
307
  msgstr ""
308
 
309
- #: classes/frontend_checks.php:235
310
- #, php-format
311
- msgid "Ad IDs: %s"
312
  msgstr ""
313
 
314
- #: classes/frontend_checks.php:247 admin/includes/ad-health-notices.php:121
315
- #, php-format
316
- msgid "Visible ads should not use the Header placement: %s"
317
  msgstr ""
318
 
319
- #: classes/frontend_checks.php:261 admin/includes/ad-health-notices.php:135
320
- msgid "AdSense violation"
 
321
  msgstr ""
322
 
323
- #: classes/frontend_checks.php:262 admin/includes/ad-health-notices.php:136
324
- msgid "Ad is hidden"
325
  msgstr ""
326
 
327
- #: classes/frontend_checks.php:263
328
- #, php-format
329
- msgid "IDs: %s"
330
  msgstr ""
331
 
332
- #: classes/frontend_checks.php:276
333
- #, php-format
334
- msgid "The following responsive AdSense ads are not showing up: %s"
335
  msgstr ""
336
 
337
- #: classes/frontend_checks.php:290
338
- msgid "Consent not given"
 
339
  msgstr ""
340
 
341
- #: classes/frontend_checks.php:302
342
- msgid "Debug Google Ad Manager"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgstr ""
344
 
345
- #: classes/frontend_checks.php:313
346
- msgid "Auto ads code found"
 
347
  msgstr ""
348
 
349
- #: classes/frontend_checks.php:325
350
- msgid "highlight ads"
 
351
  msgstr ""
352
 
353
- #: classes/frontend_checks.php:392
354
- msgid "Ad Health"
355
  msgstr ""
356
 
357
- #: classes/frontend_checks.php:406
358
- #, php-format
359
- msgid "Show %d more notifications"
360
  msgstr ""
361
 
362
- #: classes/frontend_checks.php:423
363
- msgid "Everything is fine"
 
364
  msgstr ""
365
 
366
- #: classes/frontend_checks.php:434 admin/includes/class-ad-type.php:863
367
- msgid "Get help"
368
  msgstr ""
369
 
370
- #: classes/frontend_checks.php:491
371
- msgid ""
372
- "the following code is used for automatic error detection and only visible to "
373
- "admins"
374
  msgstr ""
375
 
376
- #: classes/frontend_checks.php:789 classes/frontend_checks.php:801
377
- #, php-format
378
- msgid "Hi %s"
379
  msgstr ""
380
 
381
- #: classes/frontend_checks.php:789
382
- #, php-format
383
- msgid "Advanced Ads detected AdSense Auto ads (%sx) on this page."
384
  msgstr ""
385
 
386
- #: classes/frontend_checks.php:789 classes/frontend_checks.php:801
387
- msgid "Is that correct?"
388
  msgstr ""
389
 
390
- #: classes/frontend_checks.php:791
391
- msgid "All is fine"
 
392
  msgstr ""
393
 
394
- #: classes/frontend_checks.php:792
395
- msgid "Something is off"
396
  msgstr ""
397
 
398
- #: classes/frontend_checks.php:794
399
- msgid ""
400
- "PS: This is a one-time check from your friendly Advanced Ads plugin. It is "
401
- "only visible to you."
402
  msgstr ""
403
 
404
- #: classes/frontend_checks.php:801
405
- msgid ""
406
- "Advanced Ads detected the AdSense Auto ads code and <strong>no ads on this "
407
- "page</strong>."
408
  msgstr ""
409
 
410
- #: classes/frontend_checks.php:803
411
- msgid "This is fine"
412
  msgstr ""
413
 
414
- #: classes/frontend_checks.php:804
415
- msgid "I expected something else"
 
416
  msgstr ""
417
 
418
- #: classes/frontend_checks.php:806
419
- msgid ""
420
- "PS: this is a one-time check from your friendly Advanced Ads plugin. It is "
421
- "only visible to you."
422
  msgstr ""
423
 
424
- #: classes/frontend_checks.php:809 classes/frontend_checks.php:817
425
- msgid "Just click on your problem to learn more from our knowledge base."
 
426
  msgstr ""
427
 
428
- #: classes/frontend_checks.php:810
429
- msgid "I want to disable AdSense Auto ads"
430
  msgstr ""
431
 
432
- #: classes/frontend_checks.php:811 classes/frontend_checks.php:818
433
- msgid "I don’t see any Auto ads"
 
434
  msgstr ""
435
 
436
- #: classes/frontend_checks.php:812
437
- msgid "I only see blank space"
438
  msgstr ""
439
 
440
- #: classes/frontend_checks.php:813
441
- msgid "I want to change the position of the ads"
442
  msgstr ""
443
 
444
- #: classes/frontend_checks.php:814
445
- #: modules/gadsense/includes/class-network-adsense.php:202
446
- msgid "Display Auto ads only on specific pages"
 
447
  msgstr ""
448
 
449
- #: classes/frontend_checks.php:819
450
- msgid "How to look for the Auto ads code"
451
  msgstr ""
452
 
453
- #: classes/frontend_checks.php:820
454
- msgid "I have another question or problem"
455
  msgstr ""
456
 
457
- #: classes/frontend_checks.php:823
458
- msgid "Closing the message"
 
 
 
459
  msgstr ""
460
 
461
- #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:14
462
- msgid "Ad Group"
 
 
 
 
 
 
 
 
 
 
463
  msgstr ""
464
 
465
- #: classes/ad_type_group.php:31
466
- msgid ""
467
- "Choose an existing ad group. Use this type when you want to assign the same "
468
- "display and visitor conditions to all ads in that group."
469
  msgstr ""
470
 
471
- #: classes/ad_type_group.php:85
472
- msgid "ad group"
 
 
 
473
  msgstr ""
474
 
475
- #: classes/visitor-conditions.php:40
476
- msgid "device"
477
  msgstr ""
478
 
479
- #: classes/visitor-conditions.php:41
480
- msgid "Display ads only on mobile devices or hide them."
481
  msgstr ""
482
 
483
- #: classes/visitor-conditions.php:47
484
- msgid "logged-in visitor"
485
  msgstr ""
486
 
487
- #: classes/visitor-conditions.php:48
488
- msgid "Whether the visitor has to be logged in or not in order to see the ads."
 
 
 
 
 
489
  msgstr ""
490
 
491
- #: classes/visitor-conditions.php:119
492
- #, php-format
493
- msgid ""
494
- "Display ads by the available space on the device or target tablets with the "
495
- "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
496
  msgstr ""
497
 
498
- #: classes/visitor-conditions.php:270
499
- msgid "browser language"
500
  msgstr ""
501
 
502
- #: classes/visitor-conditions.php:271
503
- msgid "cookie"
 
 
504
  msgstr ""
505
 
506
- #: classes/visitor-conditions.php:272
507
- msgid "max. ad clicks"
 
508
  msgstr ""
509
 
510
- #: classes/visitor-conditions.php:273
511
- msgid "max. ad impressions"
512
  msgstr ""
513
 
514
- #: classes/visitor-conditions.php:274
515
- msgid "new visitor"
516
  msgstr ""
517
 
518
- #: classes/visitor-conditions.php:275
519
- msgid "page impressions"
 
520
  msgstr ""
521
 
522
- #: classes/visitor-conditions.php:276
523
- msgid "referrer url"
524
  msgstr ""
525
 
526
- #: classes/visitor-conditions.php:277
527
- msgid "user agent"
 
528
  msgstr ""
529
 
530
- #: classes/visitor-conditions.php:278
531
- msgid "user can (capabilities)"
 
532
  msgstr ""
533
 
534
- #: classes/visitor-conditions.php:279
535
- msgid "user role"
 
536
  msgstr ""
537
 
538
- #: classes/visitor-conditions.php:282
539
- msgid "geo location"
540
  msgstr ""
541
 
542
- #: classes/visitor-conditions.php:285
543
- msgid "browser width"
544
  msgstr ""
545
 
546
- #: classes/visitor-conditions.php:311 classes/display-conditions.php:290
547
- #: admin/class-advanced-ads-admin.php:215
548
- #: modules/gadsense/admin/views/external-ads-links.php:17
549
- #: modules/gadsense/admin/views/external-ads-links.php:22
550
- #: modules/gadsense/admin/views/external-ads-links.php:29
551
- msgid "or"
 
 
 
552
  msgstr ""
553
 
554
- #: classes/visitor-conditions.php:311 classes/display-conditions.php:290
555
- #: admin/class-advanced-ads-admin.php:216
556
- msgid "and"
557
  msgstr ""
558
 
559
- #: classes/ad_type_content.php:35
560
- msgid "Rich Content"
 
561
  msgstr ""
562
 
563
- #: classes/ad_type_content.php:36
564
- msgid ""
565
- "The full content editor from WordPress with all features like shortcodes, "
566
- "image upload or styling, but also simple text/html mode for scripts and code."
567
  msgstr ""
568
 
569
- #: classes/display-conditions.php:89
570
- msgid "post type"
 
571
  msgstr ""
572
 
573
- #: classes/display-conditions.php:90 includes/array_ad_conditions.php:40
574
- msgid "Choose the public post types on which to display the ad."
 
575
  msgstr ""
576
 
577
- #: classes/display-conditions.php:96
578
- msgid "specific pages"
579
  msgstr ""
580
 
581
- #: classes/display-conditions.php:97 includes/array_ad_conditions.php:58
582
- msgid ""
583
- "Choose on which individual posts, pages and public post type pages you want "
584
- "to display or hide ads."
585
  msgstr ""
586
 
587
- #: classes/display-conditions.php:103
588
- msgid "general conditions"
589
  msgstr ""
590
 
591
- #: classes/display-conditions.php:109
592
- msgid "author"
 
593
  msgstr ""
594
 
595
- #: classes/display-conditions.php:115
596
- msgid "content age"
 
597
  msgstr ""
598
 
599
- #: classes/display-conditions.php:116
600
- msgid "Display ads based on age of the page."
601
  msgstr ""
602
 
603
- #: classes/display-conditions.php:122
604
- msgid "taxonomy"
 
605
  msgstr ""
606
 
607
- #: classes/display-conditions.php:123
608
- msgid "Display ads based on the taxonomy of an archive page."
609
  msgstr ""
610
 
611
- #: classes/display-conditions.php:171
612
- #, php-format
613
- msgid "archive: %s"
614
  msgstr ""
615
 
616
- #: classes/display-conditions.php:260
617
- msgid "parent page"
 
618
  msgstr ""
619
 
620
- #: classes/display-conditions.php:261
621
- msgid "post meta"
 
 
622
  msgstr ""
623
 
624
- #: classes/display-conditions.php:262
625
- msgid "page template"
626
  msgstr ""
627
 
628
- #: classes/display-conditions.php:263
629
- msgid "url parameters"
630
  msgstr ""
631
 
632
- #: classes/display-conditions.php:266
633
- msgid "accelerated mobile pages"
634
  msgstr ""
635
 
636
- #: classes/display-conditions.php:594
637
- msgctxt "display the terms search field on ad edit page"
638
- msgid "add more terms"
639
  msgstr ""
640
 
641
- #: classes/display-conditions.php:598
642
- msgid "term name or id"
643
  msgstr ""
644
 
645
- #: classes/display-conditions.php:674
646
- msgid "title or id"
647
  msgstr ""
648
 
649
- #: classes/display-conditions.php:728 includes/array_ad_conditions.php:63
650
- msgid "Home Page"
651
  msgstr ""
652
 
653
- #: classes/display-conditions.php:729 includes/array_ad_conditions.php:64
654
- msgid "show on Home page"
655
  msgstr ""
656
 
657
- #: classes/display-conditions.php:733 includes/array_ad_conditions.php:68
658
- msgid "Singular Pages"
659
  msgstr ""
660
 
661
- #: classes/display-conditions.php:734 includes/array_ad_conditions.php:69
662
- msgid "show on singular pages/posts"
663
  msgstr ""
664
 
665
- #: classes/display-conditions.php:738 includes/array_ad_conditions.php:73
666
- msgid "Archive Pages"
667
  msgstr ""
668
 
669
- #: classes/display-conditions.php:739 includes/array_ad_conditions.php:74
670
- msgid "show on any type of archive page (category, tag, author and date)"
 
 
 
671
  msgstr ""
672
 
673
- #: classes/display-conditions.php:743 includes/array_ad_conditions.php:78
674
- msgid "Search Results"
675
  msgstr ""
676
 
677
- #: classes/display-conditions.php:744 includes/array_ad_conditions.php:79
678
- msgid "show on search result pages"
679
  msgstr ""
680
 
681
- #: classes/display-conditions.php:748 includes/array_ad_conditions.php:83
682
- msgid "404 Page"
 
683
  msgstr ""
684
 
685
- #: classes/display-conditions.php:749 includes/array_ad_conditions.php:84
686
- msgid "show on 404 error page"
 
 
 
 
687
  msgstr ""
688
 
689
- #: classes/display-conditions.php:753 includes/array_ad_conditions.php:88
690
- msgid "Attachment Pages"
691
  msgstr ""
692
 
693
- #: classes/display-conditions.php:754 includes/array_ad_conditions.php:89
694
- msgid "show on attachment pages"
 
695
  msgstr ""
696
 
697
- #: classes/display-conditions.php:758 includes/array_ad_conditions.php:93
698
- msgid "Secondary Queries"
 
699
  msgstr ""
700
 
701
- #: classes/display-conditions.php:759 includes/array_ad_conditions.php:94
702
- msgid "allow ads in secondary queries"
 
703
  msgstr ""
704
 
705
- #: classes/display-conditions.php:763
706
- msgid "RSS Feed"
 
707
  msgstr ""
708
 
709
- #: classes/display-conditions.php:764
710
- msgid "allow ads in RSS Feed"
711
  msgstr ""
712
 
713
- #: classes/display-conditions.php:768
714
- msgid "REST API"
715
  msgstr ""
716
 
717
- #: classes/display-conditions.php:769
718
- msgid "allow ads in REST API"
719
  msgstr ""
720
 
721
- #: classes/display-conditions.php:804
722
- msgid "older than"
723
  msgstr ""
724
 
725
- #: classes/display-conditions.php:805
726
- msgid "younger than"
727
  msgstr ""
728
 
729
- #: classes/display-conditions.php:807
730
- msgid "days"
731
  msgstr ""
732
 
733
- #: classes/ad-debug.php:32
734
- msgid "The ad is displayed on the page"
735
  msgstr ""
736
 
737
- #: classes/ad-debug.php:34
738
- msgid "The ad is not displayed on the page"
739
  msgstr ""
740
 
741
- #: classes/ad-debug.php:39
742
- msgid "Current query is not identical to main query."
 
 
743
  msgstr ""
744
 
745
- #: classes/ad-debug.php:45
746
- msgid "current post"
 
 
 
 
 
 
 
747
  msgstr ""
748
 
749
- #: classes/ad-debug.php:49
750
- msgid "Current post is not identical to main post."
751
  msgstr ""
752
 
753
- #: classes/ad-debug.php:51
754
- msgid "main post"
755
  msgstr ""
756
 
757
- #: classes/ad-debug.php:98
758
- msgid "current query"
759
  msgstr ""
760
 
761
- #: classes/ad-debug.php:98
762
- msgid "main query"
763
  msgstr ""
764
 
765
- #: classes/ad-debug.php:118 classes/ad-debug.php:167 classes/ad-debug.php:169
766
- #: public/class-advanced-ads.php:721 admin/views/ad-group-list-ads.php:20
767
- msgid "Ad"
768
  msgstr ""
769
 
770
- #: classes/ad-debug.php:121 public/class-advanced-ads.php:685
771
- msgctxt "ad group singular name"
772
- msgid "Ad Group"
 
773
  msgstr ""
774
 
775
- #: classes/ad-debug.php:128
776
- msgid "Placement"
777
  msgstr ""
778
 
779
- #: classes/ad-debug.php:152 admin/includes/class-meta-box.php:104
780
- msgid "Display Conditions"
781
  msgstr ""
782
 
783
- #: classes/ad-debug.php:239 admin/includes/class-meta-box.php:112
784
- msgid "Visitor Conditions"
 
785
  msgstr ""
786
 
787
- #: classes/widget.php:22
788
- msgid "Display Ads and Ad Groups."
789
  msgstr ""
790
 
791
- #: classes/widget.php:70
792
- msgid "Title:"
793
  msgstr ""
794
 
795
- #: classes/widget.php:76 admin/includes/class-shortcode-creator.php:99
796
- #: modules/gutenberg/includes/class-gutenberg.php:77
797
- msgid "--empty--"
798
  msgstr ""
799
 
800
- #: classes/widget.php:78 admin/includes/class-menu.php:131
801
- #: admin/includes/class-shortcode-creator.php:115 admin/views/placements.php:53
802
- #: modules/gutenberg/includes/class-gutenberg.php:81
803
- #: modules/import-export/views/page.php:25
804
- msgid "Placements"
805
  msgstr ""
806
 
807
- #: classes/widget.php:85 admin/includes/class-shortcode-creator.php:108
808
- #: admin/views/placements-item.php:12 admin/views/placement-form.php:71
809
- #: modules/gutenberg/includes/class-gutenberg.php:80
810
- msgid "Ad Groups"
811
  msgstr ""
812
 
813
- #: classes/widget.php:92 public/class-advanced-ads.php:720
814
- #: admin/includes/class-menu.php:79 admin/includes/class-menu.php:80
815
- #: admin/includes/class-shortcode-creator.php:101
816
- #: admin/views/placements-item.php:24 admin/views/ad-group-list-form-row.php:91
817
- #: admin/views/placement-form.php:78 admin/views/ad-group-list-header.php:16
818
- #: modules/gutenberg/includes/class-gutenberg.php:79
819
- #: modules/import-export/views/page.php:23
820
- msgid "Ads"
821
  msgstr ""
822
 
823
- #: classes/ad_type_dummy.php:26
824
- msgid "Dummy"
825
  msgstr ""
826
 
827
- #: classes/ad_type_dummy.php:27
828
- msgid "Uses a simple placeholder ad for quick testing."
829
  msgstr ""
830
 
831
- #: includes/array_ad_conditions.php:39
832
- msgid "Post Types"
833
  msgstr ""
834
 
835
- #: includes/array_ad_conditions.php:45
836
- msgid "Categories, Tags and Taxonomies"
837
  msgstr ""
838
 
839
- #: includes/array_ad_conditions.php:46
840
- msgid ""
841
- "Choose terms from public category, tag and other taxonomies a post must "
842
- "belong to in order to have ads."
843
  msgstr ""
844
 
845
- #: includes/array_ad_conditions.php:51
846
- msgid "Category Archives"
847
  msgstr ""
848
 
849
- #: includes/array_ad_conditions.php:52
850
- msgid "comma seperated IDs of category archives"
851
  msgstr ""
852
 
853
- #: includes/array_ad_conditions.php:57
854
- msgid "Individual Posts, Pages and Public Post Types"
855
  msgstr ""
856
 
857
- #: admin/class-advanced-ads-admin.php:217
858
- msgid "After which paragraph?"
859
  msgstr ""
860
 
861
- #: admin/class-advanced-ads-admin.php:219
862
- msgid "Today"
863
  msgstr ""
864
 
865
- #: admin/class-advanced-ads-admin.php:220
866
- msgid "Yesterday"
 
867
  msgstr ""
868
 
869
- #: admin/class-advanced-ads-admin.php:221
870
- msgid "This Month"
871
  msgstr ""
872
 
873
- #. 1: The number of days.
874
- #: admin/class-advanced-ads-admin.php:223
875
- #, php-format
876
- msgid "Last %1$d days"
877
  msgstr ""
878
 
879
- #: admin/class-advanced-ads-admin.php:226
880
- msgid "All"
881
- msgstr ""
882
-
883
- #: admin/class-advanced-ads-admin.php:227
884
- msgid ""
885
- "There were no results returned for this ad. Please make sure it is active, "
886
- "generating impressions and double check your ad parameters."
887
- msgstr ""
888
-
889
- #: admin/class-advanced-ads-admin.php:228
890
- #: modules/gadsense/admin/views/external-ads-list.php:33
891
- msgid "Show inactive ads"
892
- msgstr ""
893
-
894
- #: admin/class-advanced-ads-admin.php:229
895
- msgid "Hide inactive ads"
896
- msgstr ""
897
-
898
- #: admin/class-advanced-ads-admin.php:343
899
- #, php-format
900
- msgid "time of %s"
901
- msgstr ""
902
-
903
- #: admin/class-advanced-ads-admin.php:414 admin/includes/class-menu.php:155
904
- #: admin/includes/class-menu.php:158 admin/views/settings.php:29
905
- msgid "Support"
906
- msgstr ""
907
-
908
- #: admin/class-advanced-ads-admin.php:418
909
- #: admin/includes/class-overview-widgets.php:71
910
- msgid "Add-Ons"
911
  msgstr ""
912
 
913
- #: admin/class-advanced-ads-admin.php:689
914
- #: admin/includes/class-overview-widgets.php:194
915
- #, php-format
916
- msgid ""
917
- "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
918
- "href=\"%s\" target=\"_blank\">wordpress.org</a>"
919
  msgstr ""
920
 
921
- #: public/class-advanced-ads.php:369
922
- msgid "Advanced Ads Error following:"
 
923
  msgstr ""
924
 
925
- #: public/class-advanced-ads.php:373
926
- #, php-format
927
- msgid "Advanced Ads Error: %s"
928
  msgstr ""
929
 
930
- #: public/class-advanced-ads.php:684
931
- msgctxt "ad group general name"
932
- msgid "Ad Groups & Rotations"
933
  msgstr ""
934
 
935
- #: public/class-advanced-ads.php:686
936
- msgid "Search Ad Groups"
937
  msgstr ""
938
 
939
- #: public/class-advanced-ads.php:687
940
- msgid "All Ad Groups"
941
  msgstr ""
942
 
943
- #: public/class-advanced-ads.php:688
944
- msgid "Parent Ad Groups"
945
  msgstr ""
946
 
947
- #: public/class-advanced-ads.php:689
948
- msgid "Parent Ad Groups:"
 
 
949
  msgstr ""
950
 
951
- #: public/class-advanced-ads.php:690
952
- msgid "Edit Ad Group"
953
  msgstr ""
954
 
955
- #: public/class-advanced-ads.php:691
956
- msgid "Update Ad Group"
957
  msgstr ""
958
 
959
- #: public/class-advanced-ads.php:692
960
- msgid "Add New Ad Group"
 
961
  msgstr ""
962
 
963
- #: public/class-advanced-ads.php:693
964
- msgid "New Ad Groups Name"
965
  msgstr ""
966
 
967
- #: public/class-advanced-ads.php:694 modules/import-export/views/page.php:24
968
- msgid "Groups"
969
  msgstr ""
970
 
971
- #: public/class-advanced-ads.php:695
972
- msgid "No Ad Group found"
 
973
  msgstr ""
974
 
975
- #: public/class-advanced-ads.php:722 public/class-advanced-ads.php:726
976
- #: admin/includes/class-menu.php:112 admin/views/ad-group-list-ads.php:36
977
- msgid "New Ad"
978
  msgstr ""
979
 
980
- #: public/class-advanced-ads.php:723 admin/includes/class-menu.php:111
981
- msgid "Add New Ad"
 
982
  msgstr ""
983
 
984
- #: public/class-advanced-ads.php:724
985
- #: admin/includes/class-ad-groups-list.php:339
986
- #: modules/import-export/classes/import.php:146
987
- #: modules/import-export/classes/import.php:186
988
- #: modules/import-export/classes/import.php:564
989
- msgid "Edit"
990
  msgstr ""
991
 
992
- #: public/class-advanced-ads.php:725
993
- msgid "Edit Ad"
 
994
  msgstr ""
995
 
996
- #: public/class-advanced-ads.php:727
997
- msgid "View"
998
  msgstr ""
999
 
1000
- #: public/class-advanced-ads.php:728
1001
- msgid "View the Ad"
1002
  msgstr ""
1003
 
1004
- #: public/class-advanced-ads.php:729
1005
- msgid "Search Ads"
1006
  msgstr ""
1007
 
1008
- #: public/class-advanced-ads.php:730
1009
- msgid "No Ads found"
1010
  msgstr ""
1011
 
1012
- #: public/class-advanced-ads.php:731
1013
- msgid "No Ads found in Trash"
1014
  msgstr ""
1015
 
1016
- #: public/class-advanced-ads.php:732
1017
- msgid "Parent Ad"
1018
  msgstr ""
1019
 
1020
- #: public/class-advanced-ads.php:871
1021
- msgctxt "label above ads"
1022
- msgid "Advertisements"
1023
  msgstr ""
1024
 
1025
- #: admin/includes/ad-health-notices.php:32
1026
- #, php-format
1027
- msgid ""
1028
- "Your <strong>PHP version (%1$s) is too low</strong>. Advanced Ads is built "
1029
- "for PHP %2$s and higher. It might work, but updating PHP is highly "
1030
- "recommended. Please ask your hosting provider for more information."
1031
  msgstr ""
1032
 
1033
- #: admin/includes/ad-health-notices.php:43
1034
- #, php-format
1035
- msgid ""
1036
- "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
1037
- "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
1038
  msgstr ""
1039
 
1040
- #: admin/includes/ad-health-notices.php:54 admin/views/placements.php:174
1041
- #, php-format
1042
- msgid ""
1043
- "Missing PHP extensions could cause issues. Please ask your hosting provider "
1044
- "to enable them: %s"
1045
  msgstr ""
1046
 
1047
- #: admin/includes/ad-health-notices.php:64
1048
- #, php-format
1049
- msgid ""
1050
- "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
1051
- "href=\"%s\">settings</a>."
1052
  msgstr ""
1053
 
1054
- #: admin/includes/ad-health-notices.php:72 admin/views/support.php:57
1055
- msgid "Advanced Ads related constants enabled"
 
1056
  msgstr ""
1057
 
1058
- #: admin/includes/ad-health-notices.php:80
1059
- #, php-format
1060
- msgid ""
1061
- "Possible conflict between jQueryUI library, used by Advanced Ads and other "
1062
- "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead "
1063
- "to misfortunate formats in forms, but should not damage features."
1064
  msgstr ""
1065
 
1066
- #: admin/includes/ad-health-notices.php:90
1067
- #, php-format
1068
- msgid ""
1069
- "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1070
- "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1071
- "disguise."
1072
  msgstr ""
1073
 
1074
- #: admin/includes/ad-health-notices.php:99 admin/includes/notices.php:38
1075
- msgid ""
1076
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1077
- "missing</strong>."
1078
  msgstr ""
1079
 
1080
- #: admin/includes/ad-health-notices.php:102 admin/includes/notices.php:40
1081
- #, php-format
1082
- msgid "Please add valid license keys <a href=\"%s\">here</a>."
1083
  msgstr ""
1084
 
1085
- #: admin/includes/ad-health-notices.php:111
1086
- msgid "Ad expired"
 
 
 
 
1087
  msgstr ""
1088
 
1089
- #: admin/includes/ad-health-notices.php:158
1090
- #: admin/includes/ad-health-notices.php:165
1091
- #: modules/gadsense/includes/class-mapi.php:89
1092
- msgid "Last AdSense account connection attempt failed."
1093
  msgstr ""
1094
 
1095
- #. %1$s is the opening a tag and %2$s the closing one.
1096
- #: admin/includes/ad-health-notices.php:167
1097
- #, php-format
1098
- msgid "Create a new AdSense account %1$shere%2$s."
1099
  msgstr ""
1100
 
1101
- #: admin/includes/ad-health-notices.php:177
1102
- #: admin/includes/ad-health-notices.php:187
1103
- #: admin/includes/ad-health-notices.php:197
1104
- msgid ""
1105
- "One of your sites is missing the AdSense publisher ID in the ads.txt file."
 
1106
  msgstr ""
1107
 
1108
- #: admin/includes/ad-health-notices.php:179
1109
- #: admin/includes/ad-health-notices.php:189
1110
- #: admin/includes/ad-health-notices.php:199
1111
- msgctxt "related to ads.txt file"
1112
- msgid "Create one now."
1113
  msgstr ""
1114
 
1115
- #. %s is a filter hook, here `the_content`
1116
- #: admin/includes/ad-health-notices.php:207
1117
- #, php-format
1118
- msgid "<strong>%s</strong> filter found multiple times."
1119
  msgstr ""
1120
 
1121
- #: admin/includes/ad-health-notices.php:209
1122
- msgid "Advanced Ads uses the outermost of them."
1123
  msgstr ""
1124
 
1125
- #. %1$s is a plugin name, %2$s is the opening a tag and %3$s the closing one.
1126
- #: admin/includes/ad-health-notices.php:218
1127
- #: admin/includes/ad-health-notices.php:229
1128
- #: admin/includes/ad-health-notices.php:240
1129
- #: admin/includes/ad-health-notices.php:253
1130
- #, php-format
1131
- msgid "Learn how to integrate %1$s with Advanced Ads %2$shere%3$s."
1132
  msgstr ""
1133
 
1134
- #. %s is a service or plugin name.
1135
- #: admin/includes/ad-health-notices.php:267
1136
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:196
1137
- #, php-format
1138
- msgid "%s detected."
1139
  msgstr ""
1140
 
1141
- #: admin/includes/ad-health-notices.php:268
1142
- msgid "Learn how this might impact your ad setup."
1143
  msgstr ""
1144
 
1145
- #: admin/includes/ad-health-notices.php:279
1146
- #, php-format
1147
- msgid ""
1148
- "Advanced Ads handles your ads.txt file automatically. You might be able to "
1149
- "<strong>remove %1$s</strong>."
1150
  msgstr ""
1151
 
1152
- #: admin/includes/ad-health-notices.php:290
1153
- msgid "Advanced Ads handles header and footer codes."
1154
  msgstr ""
1155
 
1156
- #: admin/includes/ad-health-notices.php:291
1157
- #, php-format
1158
- msgid "You might be able to <strong>remove %1$s</strong>."
1159
  msgstr ""
1160
 
1161
- #: admin/includes/ad-health-notices.php:294
1162
- msgid "Learn how."
 
1163
  msgstr ""
1164
 
1165
- #: admin/includes/class-ad-type.php:261 admin/includes/class-ad-type.php:267
1166
- msgid "Ad Details"
1167
  msgstr ""
1168
 
1169
- #: admin/includes/class-ad-type.php:262 admin/includes/class-ad-type.php:268
1170
- msgid "Ad Planning"
1171
  msgstr ""
1172
 
1173
- #: admin/includes/class-ad-type.php:263 admin/includes/class-ad-type.php:269
1174
- msgid "Ad Shortcode"
1175
  msgstr ""
1176
 
1177
- #: admin/includes/class-ad-type.php:431
1178
- #, php-format
1179
- msgid "%s ad updated."
1180
- msgid_plural "%s ads updated."
1181
- msgstr[0] ""
1182
- msgstr[1] ""
1183
-
1184
- #: admin/includes/class-ad-type.php:433
1185
- #, php-format
1186
- msgid "%s ad not updated, somebody is editing it."
1187
- msgid_plural "%s ads not updated, somebody is editing them."
1188
- msgstr[0] ""
1189
- msgstr[1] ""
1190
-
1191
- #: admin/includes/class-ad-type.php:435
1192
- #, php-format
1193
- msgid "%s ad permanently deleted."
1194
- msgid_plural "%s ads permanently deleted."
1195
- msgstr[0] ""
1196
- msgstr[1] ""
1197
-
1198
- #: admin/includes/class-ad-type.php:437
1199
- #, php-format
1200
- msgid "%s ad moved to the Trash."
1201
- msgid_plural "%s ads moved to the Trash."
1202
- msgstr[0] ""
1203
- msgstr[1] ""
1204
-
1205
- #: admin/includes/class-ad-type.php:439
1206
- #, php-format
1207
- msgid "%s ad restored from the Trash."
1208
- msgid_plural "%s ads restored from the Trash."
1209
- msgstr[0] ""
1210
- msgstr[1] ""
1211
-
1212
- #: admin/includes/class-ad-type.php:794 admin/includes/class-ad-type.php:795
1213
- msgid "Ad updated."
1214
  msgstr ""
1215
 
1216
- #. translators: %s: date and time of the revision
1217
- #: admin/includes/class-ad-type.php:796
1218
- #, php-format
1219
- msgid "Ad restored to revision from %s"
1220
  msgstr ""
1221
 
1222
- #: admin/includes/class-ad-type.php:797 admin/includes/class-ad-type.php:798
1223
- msgid "Ad saved."
1224
  msgstr ""
1225
 
1226
- #: admin/includes/class-ad-type.php:799
1227
- msgid "Ad submitted."
 
1228
  msgstr ""
1229
 
1230
- #: admin/includes/class-ad-type.php:802
1231
- #, php-format
1232
- msgid "Ad scheduled for: <strong>%1$s</strong>."
1233
  msgstr ""
1234
 
1235
- #. translators: Publish box date format, see http://php.net/date
1236
- #: admin/includes/class-ad-type.php:804
1237
- msgid "M j, Y @ G:i"
1238
  msgstr ""
1239
 
1240
- #: admin/includes/class-ad-type.php:806
1241
- msgid "Ad draft updated."
 
1242
  msgstr ""
1243
 
1244
- #: admin/includes/class-ad-type.php:862
1245
- msgid ""
1246
- "You don’t have access to ads. Please deactivate and re-enable Advanced Ads "
1247
- "again to fix this."
1248
  msgstr ""
1249
 
1250
- #: admin/includes/notices.php:17
1251
- msgid ""
1252
- "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1253
- "receive the first steps via email?"
1254
  msgstr ""
1255
 
1256
- #: admin/includes/notices.php:18
1257
- msgid "Yes, send it"
 
1258
  msgstr ""
1259
 
1260
- #: admin/includes/notices.php:24
1261
- msgid ""
1262
- "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1263
- "<strong>2 free add-ons</strong> for joining the newsletter."
1264
  msgstr ""
1265
 
1266
- #: admin/includes/notices.php:25
1267
- msgid "Add me now"
1268
  msgstr ""
1269
 
1270
- #: admin/includes/notices.php:31
1271
- msgid ""
1272
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1273
- "and Advanced Ads from my dedicated newsletter."
1274
  msgstr ""
1275
 
1276
- #: admin/includes/notices.php:32 admin/views/notices/subscribe.php:3
1277
- #: admin/views/notices/inline.php:3
1278
- msgid "Subscribe me now"
1279
  msgstr ""
1280
 
1281
- #: admin/includes/notices.php:48
1282
- msgid " ads created using <strong>Advanced Ads</strong>."
1283
  msgstr ""
1284
 
1285
- #: admin/includes/notices.php:49
1286
- msgid ""
1287
- "Do you find the plugin useful and would like to thank us for updates, fixing "
1288
- "bugs and improving your ad setup?"
1289
  msgstr ""
1290
 
1291
- #. this belongs to our message asking the user for a review. You can find a nice equivalent in your own language
1292
- #: admin/includes/notices.php:52
1293
- msgid "When you give 5-stars, an actual person does a little happy dance!"
1294
  msgstr ""
1295
 
1296
- #: admin/includes/notices.php:54
1297
- msgid "Sure, I appreciate your work"
1298
  msgstr ""
1299
 
1300
- #: admin/includes/notices.php:55
1301
- msgid "Yes, but help me first to solve a problem, please"
1302
  msgstr ""
1303
 
1304
- #. %s is a link. `30%%` is correct, please use exactly that value so that it shows "30%".
1305
- #: admin/includes/notices.php:64
1306
- #, php-format
1307
- msgid ""
1308
- "Our Black Friday / Cyber Monday Offer: <span style=\"font-weight: bold; font-"
1309
- "size: 1.4em; color: green;\">-30%%</span> on all add-ons and All Access.<a "
1310
- "class=\"button button-primary\" target=\"_blank\" href=\"%s\">Get All "
1311
- "Access</a>"
1312
  msgstr ""
1313
 
1314
- #: admin/includes/class-list-filters.php:142
1315
- #: modules/gadsense/admin/admin.php:25
1316
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:109
1317
- msgid "Responsive"
1318
  msgstr ""
1319
 
1320
- #: admin/includes/class-list-filters.php:151
1321
- msgid "expired"
1322
  msgstr ""
1323
 
1324
- #: admin/includes/class-list-filters.php:155
1325
- msgid "any expiry date"
1326
  msgstr ""
1327
 
1328
- #: admin/includes/class-meta-box.php:60
1329
- msgid "Ad Type"
1330
  msgstr ""
1331
 
1332
- #: admin/includes/class-meta-box.php:74
1333
- #: admin/includes/class-overview-widgets.php:64
1334
- msgid "AdSense Earnings"
1335
  msgstr ""
1336
 
1337
- #: admin/includes/class-meta-box.php:88
1338
- msgid "Ad Parameters"
1339
  msgstr ""
1340
 
1341
- #: admin/includes/class-meta-box.php:96 admin/includes/class-settings.php:69
1342
- msgid "Layout / Output"
 
1343
  msgstr ""
1344
 
1345
- #: admin/includes/class-meta-box.php:121
1346
- msgid "Increase your ad revenue"
1347
  msgstr ""
1348
 
1349
- #: admin/includes/class-meta-box.php:131
1350
- msgid "Ad Stats"
 
 
 
 
 
 
1351
  msgstr ""
1352
 
1353
- #: admin/includes/class-meta-box.php:199 admin/includes/class-meta-box.php:218
1354
- #: admin/includes/class-meta-box.php:223
1355
- #: admin/includes/class-overview-widgets.php:182
1356
- #: admin/views/ad-output-metabox.php:62
1357
- #: admin/views/settings/general/custom-label.php:9
1358
- #: modules/privacy/admin/views/setting-enable.php:2
1359
- #: modules/ads-txt/admin/views/setting-create.php:11
1360
- msgid "Manual"
1361
  msgstr ""
1362
 
1363
- #: admin/includes/class-meta-box.php:217
1364
- msgid "Video"
 
 
1365
  msgstr ""
1366
 
1367
- #: admin/includes/class-meta-box.php:254
1368
- #: admin/includes/class-overview-widgets.php:60
1369
- msgid "Disable"
 
1370
  msgstr ""
1371
 
1372
- #: admin/includes/class-meta-box.php:401
1373
- msgid "Ad Settings"
1374
  msgstr ""
1375
 
1376
- #: admin/includes/class-meta-box.php:500 admin/views/overview.php:8
1377
- msgid "Ads Dashboard"
1378
  msgstr ""
1379
 
1380
- #. %1$d is the number of ads, %2$s and %3$s are URLs.
1381
- #: admin/includes/class-meta-box.php:516
1382
- #, php-format
1383
- msgid "%1$d ads – <a href=\"%2$s\">manage</a> - <a href=\"%3$s\">new</a>"
1384
  msgstr ""
1385
 
1386
- #: admin/includes/class-meta-box.php:529
1387
- msgid "Get the tutorial via email"
1388
  msgstr ""
1389
 
1390
- #: admin/includes/class-meta-box.php:538
1391
- msgid "Get AdSense tips via email"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/class-meta-box.php:547
1395
- msgid "Visit our blog for more articles about ad optimization"
1396
  msgstr ""
1397
 
1398
- #. %s is our URL
1399
- #: admin/includes/class-meta-box.php:601
1400
- msgid "Latest posts on wpadvancedads.com"
1401
  msgstr ""
1402
 
1403
- #: admin/includes/class-licenses.php:90
1404
- #, php-format
1405
- msgid ""
1406
- "There might be a new version of %1$s. Please <strong>provide a valid license "
1407
- "key</strong> in order to receive updates and support <a href=\"%2$s\">on "
1408
- "this page</a>."
1409
  msgstr ""
1410
 
1411
- #: admin/includes/class-licenses.php:110
1412
- msgid "Error while trying to register the license. Please contact support."
1413
  msgstr ""
1414
 
1415
- #: admin/includes/class-licenses.php:115 admin/views/setting-license.php:85
1416
- msgid "Please enter a valid license key"
1417
  msgstr ""
1418
 
1419
- #: admin/includes/class-licenses.php:172
1420
- msgid "License couldn’t be activated. Please try again later."
1421
  msgstr ""
1422
 
1423
- #: admin/includes/class-licenses.php:189
1424
- msgid "This is the bundle license key."
1425
  msgstr ""
1426
 
1427
- #: admin/includes/class-licenses.php:190
1428
- msgid "This is not the correct key for this add-on."
1429
  msgstr ""
1430
 
1431
- #: admin/includes/class-licenses.php:191
1432
- msgid "There are no activations left."
1433
  msgstr ""
1434
 
1435
- #. %1$s is a starting link tag, %2$s is the closing one.
1436
- #: admin/includes/class-licenses.php:194
1437
- #, php-format
1438
- msgid "You can manage activations in %1$syour account%2$s."
1439
  msgstr ""
1440
 
1441
- #: admin/includes/class-licenses.php:208
1442
- #, php-format
1443
- msgid "License is invalid. Reason: %s"
1444
  msgstr ""
1445
 
1446
- #. %s is a list of server information like IP address. Just keep it as is.
1447
- #: admin/includes/class-licenses.php:248
1448
- #, php-format
1449
- msgid ""
1450
- "Your request was blocked by our firewall. Please send us the following "
1451
- "information to unblock you: %s."
1452
  msgstr ""
1453
 
1454
- #: admin/includes/class-licenses.php:312
1455
- msgid "Error while trying to disable the license. Please contact support."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/class-licenses.php:347 admin/includes/class-licenses.php:370
1459
- msgid "License couldn’t be deactivated. Please try again later."
 
 
1460
  msgstr ""
1461
 
1462
- #: admin/includes/class-licenses.php:596
1463
- #, php-format
1464
- msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
1465
  msgstr ""
1466
 
1467
- #: admin/includes/class-licenses.php:598
1468
- #, php-format
1469
- msgid ""
1470
- "Download failed. <a href=\"%s\" target=\"_blank\">Click here to learn why</a>"
1471
- "."
1472
  msgstr ""
1473
 
1474
- #: admin/includes/shortcode-creator-l10n.php:17
1475
- msgctxt "shortcode creator"
1476
- msgid "Add an ad"
1477
  msgstr ""
1478
 
1479
- #: admin/includes/shortcode-creator-l10n.php:18
1480
- msgctxt "shortcode creator"
1481
- msgid "Add shortcode"
1482
  msgstr ""
1483
 
1484
- #: admin/includes/shortcode-creator-l10n.php:19
1485
- msgctxt "shortcode creator"
1486
- msgid "Cancel"
 
1487
  msgstr ""
1488
 
1489
- #: admin/includes/class-notices.php:427
1490
- #, php-format
1491
- msgid ""
1492
- "You don’t seem to have an email address. Please use <a href=\"%s\" "
1493
- "target=\"_blank\">this form</a> to sign up."
1494
  msgstr ""
1495
 
1496
- #: admin/includes/class-notices.php:448
1497
- msgid ""
1498
- "How embarrassing. The email server seems to be down. Please try again later."
1499
  msgstr ""
1500
 
1501
- #. the first %s is an email address, the seconds %s is a URL.
1502
- #: admin/includes/class-notices.php:455
1503
- #, php-format
1504
- msgid ""
1505
- "Please check your email (%1$s) for the confirmation message. If you didn’t "
1506
- "receive one or want to use another email address then please use <a "
1507
- "href=\"%2$s\" target=\"_blank\">this form</a> to sign up."
1508
  msgstr ""
1509
 
1510
- #: admin/includes/class-menu.php:65 admin/includes/class-menu.php:88
1511
- #: admin/includes/class-menu.php:99 admin/includes/class-menu.php:100
1512
- msgid "Overview"
1513
  msgstr ""
1514
 
1515
- #: admin/includes/class-menu.php:120
1516
- msgid "Ad Groups & Rotations"
 
 
1517
  msgstr ""
1518
 
1519
- #: admin/includes/class-menu.php:121
1520
- msgid "Groups & Rotation"
1521
  msgstr ""
1522
 
1523
- #: admin/includes/class-menu.php:130
1524
- msgid "Ad Placements"
1525
  msgstr ""
1526
 
1527
- #: admin/includes/class-menu.php:139
1528
- msgid "Advanced Ads Settings"
1529
  msgstr ""
1530
 
1531
- #: admin/includes/class-menu.php:140
1532
- msgid "Settings"
1533
  msgstr ""
1534
 
1535
- #: admin/includes/class-menu.php:175 admin/includes/class-menu.php:179
1536
- #: admin/includes/class-settings.php:272
1537
- msgid "Licenses"
1538
  msgstr ""
1539
 
1540
- #: admin/includes/class-menu.php:281 admin/includes/class-menu.php:306
1541
- msgid "Sorry, you are not allowed to access this feature."
1542
  msgstr ""
1543
 
1544
- #: admin/includes/class-menu.php:293
1545
- msgid ""
1546
- "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1547
- "deleted?"
1548
  msgstr ""
1549
 
1550
- #: admin/includes/class-settings.php:53
1551
- msgid "Admin"
 
1552
  msgstr ""
1553
 
1554
- #: admin/includes/class-settings.php:61 admin/includes/class-settings.php:131
1555
- msgid "Disable ads"
1556
  msgstr ""
1557
 
1558
- #: admin/includes/class-settings.php:77
1559
- msgid "Content injection"
1560
  msgstr ""
1561
 
1562
- #: admin/includes/class-settings.php:139
1563
- msgid "Hide ads for user roles"
1564
  msgstr ""
1565
 
1566
- #: admin/includes/class-settings.php:147
1567
- msgid "Unlimited ad injection"
1568
  msgstr ""
1569
 
1570
- #: admin/includes/class-settings.php:155
1571
- msgid "Priority of content injection filter"
1572
  msgstr ""
1573
 
1574
- #: admin/includes/class-settings.php:171
1575
- msgid "Hide ads from bots"
1576
  msgstr ""
1577
 
1578
- #: admin/includes/class-settings.php:180
1579
- msgid "Disable ads for post types"
1580
  msgstr ""
1581
 
1582
- #: admin/includes/class-settings.php:189
1583
- msgid "Disable Ad Health and other notices"
1584
  msgstr ""
1585
 
1586
- #: admin/includes/class-settings.php:197
1587
- msgid "ID prefix"
1588
  msgstr ""
1589
 
1590
- #: admin/includes/class-settings.php:205
1591
- msgid "Allow editors to manage ads"
1592
  msgstr ""
1593
 
1594
- #: admin/includes/class-settings.php:213
1595
- msgid "Ad label"
 
1596
  msgstr ""
1597
 
1598
- #: admin/includes/class-settings.php:222
1599
- msgid "Open links in a new window"
 
 
1600
  msgstr ""
1601
 
1602
- #: admin/includes/class-settings.php:230
1603
- msgid "Use advanced JavaScript"
 
1604
  msgstr ""
1605
 
1606
- #: admin/includes/class-settings.php:240
1607
- msgid "Delete data on uninstall"
1608
  msgstr ""
1609
 
1610
- #: admin/includes/class-settings.php:250
1611
- msgid "Disable shortcode button"
 
1612
  msgstr ""
1613
 
1614
- #: admin/includes/class-settings.php:291
1615
- msgid "Pro"
 
1616
  msgstr ""
1617
 
1618
- #: admin/includes/class-settings.php:309 admin/views/pitches/tracking.php:2
1619
- msgid "Tracking"
1620
  msgstr ""
1621
 
1622
- #: admin/includes/class-settings.php:355
1623
- msgid "Are you missing something?"
1624
  msgstr ""
1625
 
1626
- #: admin/includes/class-settings.php:531
1627
- msgctxt "label before ads"
1628
- msgid "Advertisements"
1629
  msgstr ""
1630
 
1631
- #: admin/includes/class-ad-groups-list.php:172
1632
- msgid "Ad weight"
 
1633
  msgstr ""
1634
 
1635
- #: admin/includes/class-ad-groups-list.php:184
1636
- #: admin/views/ad-list-timing-column.php:21
1637
- #, php-format
1638
- msgid "starts %s"
1639
  msgstr ""
1640
 
1641
- #: admin/includes/class-ad-groups-list.php:205
1642
- #: admin/views/ad-list-timing-column.php:59
1643
- #, php-format
1644
- msgid "expires %s"
1645
  msgstr ""
1646
 
1647
- #: admin/includes/class-ad-groups-list.php:208
1648
- #: admin/views/ad-list-timing-column.php:69
1649
- #, php-format
1650
- msgid "<strong>expired</strong> %s"
1651
  msgstr ""
1652
 
1653
- #: admin/includes/class-ad-groups-list.php:225
1654
- #, php-format
1655
- msgid "show %d more ads"
1656
  msgstr ""
1657
 
1658
- #: admin/includes/class-ad-groups-list.php:229
1659
- msgid "all published ads are displayed"
1660
  msgstr ""
1661
 
1662
- #: admin/includes/class-ad-groups-list.php:232
1663
- #, php-format
1664
- msgid "up to %d ads displayed"
1665
  msgstr ""
1666
 
1667
- #: admin/includes/class-ad-groups-list.php:235
1668
- msgid "No ads assigned"
1669
  msgstr ""
1670
 
1671
- #: admin/includes/class-ad-groups-list.php:237
1672
- msgid "Add some"
1673
  msgstr ""
1674
 
1675
- #: admin/includes/class-ad-groups-list.php:315
1676
- msgid "Random ads"
1677
  msgstr ""
1678
 
1679
- #: admin/includes/class-ad-groups-list.php:316
1680
- msgid "Display random ads based on ad weight"
1681
  msgstr ""
1682
 
1683
- #: admin/includes/class-ad-groups-list.php:319
1684
- msgid "Ordered ads"
 
1685
  msgstr ""
1686
 
1687
- #: admin/includes/class-ad-groups-list.php:320
1688
- msgid "Display ads with the highest ad weight first"
1689
  msgstr ""
1690
 
1691
- #: admin/includes/class-ad-groups-list.php:340
1692
- msgid "Usage"
1693
  msgstr ""
1694
 
1695
- #: admin/includes/class-ad-groups-list.php:349
1696
- msgid "Delete"
1697
  msgstr ""
1698
 
1699
- #: admin/includes/class-ad-groups-list.php:371
1700
- #: admin/includes/class-ad-groups-list.php:441
1701
- msgid "Invalid Ad Group"
1702
  msgstr ""
1703
 
1704
- #: admin/includes/class-ad-groups-list.php:376
1705
- #: admin/includes/class-ad-groups-list.php:446
1706
- msgid "You don’t have permission to change the ad groups"
1707
  msgstr ""
1708
 
1709
- #: admin/includes/class-ad-groups-list.php:410
1710
- msgid "No ad group created"
1711
  msgstr ""
1712
 
1713
- #: admin/includes/class-shortcode-creator.php:192
1714
- #, php-format
1715
- msgid ""
1716
- "Please, either switch off your ad blocker or disable the shortcode button in "
1717
- "the <a href=\"%s\" target=\"_blank\">settings</a>."
1718
  msgstr ""
1719
 
1720
- #: admin/includes/class-overview-widgets.php:48
1721
- msgid "Next steps"
1722
  msgstr ""
1723
 
1724
- #: admin/includes/class-overview-widgets.php:54
1725
- msgid "Manual and Support"
1726
  msgstr ""
1727
 
1728
- #: admin/includes/class-overview-widgets.php:118
1729
- #: admin/views/notices/welcome-panel.php:15
1730
- msgid "Create your first ad"
1731
  msgstr ""
1732
 
1733
- #: admin/includes/class-overview-widgets.php:121
1734
- #: modules/gadsense/admin/views/adsense-account.php:71
1735
- #: modules/gadsense/admin/views/adsense-account.php:93
1736
- msgid "Connect to AdSense"
1737
  msgstr ""
1738
 
1739
- #: admin/includes/class-overview-widgets.php:132
1740
- msgid "Join the newsletter for more benefits"
1741
  msgstr ""
1742
 
1743
- #: admin/includes/class-overview-widgets.php:134
1744
- msgid "Get 2 free add-ons"
1745
  msgstr ""
1746
 
1747
- #: admin/includes/class-overview-widgets.php:135
1748
- msgid "Get the first steps and more tutorials to your inbox"
1749
  msgstr ""
1750
 
1751
- #: admin/includes/class-overview-widgets.php:136
1752
- msgid "How to earn more with AdSense"
1753
  msgstr ""
1754
 
1755
- #: admin/includes/class-overview-widgets.php:141
1756
- msgid "Join now"
1757
  msgstr ""
1758
 
1759
- #: admin/includes/class-overview-widgets.php:153
1760
- msgid ""
1761
- "Do you find Advanced Ads useful and would like to keep us motivated? Please "
1762
- "help us with a review."
 
 
1763
  msgstr ""
1764
 
1765
- #: admin/includes/class-overview-widgets.php:155
1766
- msgid "Sure, I’ll rate the plugin"
1767
  msgstr ""
1768
 
1769
- #: admin/includes/class-overview-widgets.php:157
1770
- msgid "I already did"
1771
  msgstr ""
1772
 
1773
- #: admin/includes/class-overview-widgets.php:164
1774
- msgid "Manage your ads"
1775
  msgstr ""
1776
 
1777
- #: admin/includes/class-overview-widgets.php:170
1778
- msgid "Get the All Access pass"
1779
  msgstr ""
1780
 
1781
- #: admin/includes/class-overview-widgets.php:186
1782
- msgid "FAQ and Support"
1783
  msgstr ""
1784
 
1785
- #. %s includes a number and markup like <span class="count">6</span>.
1786
- #: admin/includes/class-overview-widgets.php:218
1787
- #: admin/views/overview-notices.php:33
1788
- #, php-format
1789
- msgid "Show %s hidden notices"
1790
  msgstr ""
1791
 
1792
- #: admin/includes/class-overview-widgets.php:455
1793
- msgid "How to install and activate an add-on."
 
1794
  msgstr ""
1795
 
1796
- #: admin/includes/class-overview-widgets.php:462
1797
- msgid "The solution for professional websites."
1798
  msgstr ""
1799
 
1800
- #: admin/includes/class-overview-widgets.php:471
1801
- #: admin/views/pitches/pro-tab.php:7
1802
- msgid "support for cached sites"
1803
  msgstr ""
1804
 
1805
- #: admin/includes/class-overview-widgets.php:487
1806
- #: admin/includes/class-overview-widgets.php:499
1807
- #: admin/includes/class-overview-widgets.php:511
1808
- #: admin/includes/class-overview-widgets.php:523
1809
- #, php-format
1810
- msgid "integrates with <strong>%s</strong>"
1811
  msgstr ""
1812
 
1813
- #: admin/includes/class-overview-widgets.php:528
1814
- msgid "click fraud protection, lazy load, ad-block ads"
1815
  msgstr ""
1816
 
1817
- #: admin/includes/class-overview-widgets.php:529
1818
- #: admin/views/pitches/pro-tab.php:8
1819
- msgid "11 more display and visitor conditions"
1820
  msgstr ""
1821
 
1822
- #: admin/includes/class-overview-widgets.php:530
1823
- #: admin/views/pitches/pro-tab.php:9
1824
- msgid "6 more placements"
1825
  msgstr ""
1826
 
1827
- #: admin/includes/class-overview-widgets.php:531
1828
- #: admin/views/pitches/pro-tab.php:10
1829
- msgid "placement tests for ad optimization"
1830
  msgstr ""
1831
 
1832
- #: admin/includes/class-overview-widgets.php:532
1833
- #: admin/views/pitches/pro-tab.php:11
1834
- msgid "ad grids and many more advanced features"
1835
  msgstr ""
1836
 
1837
- #: admin/includes/class-overview-widgets.php:540
1838
- msgid ""
1839
- "Analyze clicks and impressions of your ads locally or in Google Analytics, "
1840
- "share reports, and limit ads to a specific number of impressions or clicks."
1841
  msgstr ""
1842
 
1843
- #: admin/includes/class-overview-widgets.php:546
1844
- msgid ""
1845
- "Display ads based on the device or the size of your visitor’s browser, and "
1846
- "control ads on AMP pages."
1847
  msgstr ""
1848
 
1849
- #: admin/includes/class-overview-widgets.php:559
1850
- msgid ""
1851
- "Earn more money and let advertisers pay for ad space directly on the "
1852
- "frontend of your site."
1853
  msgstr ""
1854
 
1855
- #: admin/includes/class-overview-widgets.php:565
1856
- msgid ""
1857
- "Target visitors with ads that match their geo location and make more money "
1858
- "with regional campaigns."
1859
  msgstr ""
1860
 
1861
- #: admin/includes/class-overview-widgets.php:571
1862
- msgid ""
1863
- "Increase click rates on your ads by placing them in sticky positions above, "
1864
- "next or below your site."
1865
  msgstr ""
1866
 
1867
- #: admin/includes/class-overview-widgets.php:577
1868
- msgid ""
1869
- "Users will never miss an ad or other information in a PopUp. Choose when it "
1870
- "shows up and for how long a user can close it."
1871
  msgstr ""
1872
 
1873
- #: admin/includes/class-overview-widgets.php:583
1874
- msgid ""
1875
- "Create a beautiful and simple slider from your ads to show more information "
1876
- "on less space."
1877
  msgstr ""
1878
 
1879
- #: admin/includes/class-overview-widgets.php:589
1880
- msgid ""
1881
- "Place AdSense In-feed ads between posts on homepage, category, and archive "
1882
- "pages."
1883
  msgstr ""
1884
 
1885
- #: admin/includes/class-overview-widgets.php:592
1886
- #: admin/includes/class-overview-widgets.php:764
1887
- #: admin/includes/class-overview-widgets.php:780
1888
- msgid "Install now"
1889
  msgstr ""
1890
 
1891
- #: admin/includes/class-overview-widgets.php:610
1892
- #: admin/includes/class-overview-widgets.php:628
1893
- #: admin/includes/class-overview-widgets.php:653
1894
- #: admin/includes/class-overview-widgets.php:671
1895
- #: admin/includes/class-overview-widgets.php:689
1896
- #: admin/includes/class-overview-widgets.php:707
1897
- #: admin/includes/class-overview-widgets.php:725
1898
- #: admin/includes/class-overview-widgets.php:743
1899
- msgid "Activate now"
1900
  msgstr ""
1901
 
1902
- #: admin/includes/class-overview-widgets.php:636
1903
- msgid "Visit your ad stats"
 
1904
  msgstr ""
1905
 
1906
- #: admin/includes/class-overview-widgets.php:760
1907
- msgid "Use Genesis specific ad positions."
1908
  msgstr ""
1909
 
1910
- #: admin/includes/class-overview-widgets.php:776
1911
- msgid ""
1912
- "Manage ad positions with WPBakery Page Builder (formerly Visual Composer)."
 
1913
  msgstr ""
1914
 
1915
- #: admin/includes/class-overview-widgets.php:792
1916
- msgid "Our best deal with all add-ons included."
 
1917
  msgstr ""
1918
 
1919
- #: admin/includes/class-overview-widgets.php:794
1920
- msgid "Get full access"
1921
  msgstr ""
1922
 
1923
- #: admin/includes/class-overview-widgets.php:810
1924
- #: admin/views/conditions/ad-display-metabox.php:37
1925
- #: admin/views/conditions/ad-visitor-metabox.php:37
1926
- msgid "Visit the manual"
1927
  msgstr ""
1928
 
1929
- #: admin/includes/class-overview-widgets.php:813
1930
- msgid "Get this add-on"
1931
  msgstr ""
1932
 
1933
- #: admin/views/gadsense-dashboard.php:34
1934
- msgid "There is an error in your AdSense setup."
 
1935
  msgstr ""
1936
 
1937
- #: admin/views/ad-list-filters.php:18
1938
- msgid "all ad types"
 
1939
  msgstr ""
1940
 
1941
- #: admin/views/ad-list-filters.php:26
1942
- msgid "all ad sizes"
 
1943
  msgstr ""
1944
 
1945
- #: admin/views/ad-list-filters.php:34
1946
- msgid "all ad dates"
1947
  msgstr ""
1948
 
1949
- #: admin/views/ad-list-filters.php:42
1950
- msgid "all ad groups"
1951
  msgstr ""
1952
 
1953
- #: admin/views/support.php:6
1954
- msgid ""
1955
- "Please fix the red highlighted issues on this page or try to understand "
1956
- "their consequences before contacting support."
1957
  msgstr ""
1958
 
1959
- #: admin/views/support.php:7
1960
- msgid "Possible Issues"
 
1961
  msgstr ""
1962
 
1963
- #: admin/views/support.php:9
1964
- msgid "Ads not showing up"
1965
  msgstr ""
1966
 
1967
- #: admin/views/support.php:10
1968
- msgid "Purchase & Licenses"
1969
  msgstr ""
1970
 
1971
- #: admin/views/support.php:11
1972
- msgid "General Issues"
1973
  msgstr ""
1974
 
1975
- #: admin/views/support.php:12
1976
- msgid "Issues with Add-Ons"
1977
  msgstr ""
1978
 
1979
- #: admin/views/support.php:14
1980
- msgid ""
1981
- "Use the following form to search for solutions in the manual on "
1982
- "wpadvancedads.com"
1983
  msgstr ""
1984
 
1985
- #: admin/views/support.php:17
1986
- msgid "search"
1987
  msgstr ""
1988
 
1989
- #: admin/views/support.php:25
1990
- #, php-format
1991
- msgid ""
1992
- "Take a look at more common issues or contact us directly through the <a "
1993
- "href=\"%s\" target=\"_blank\">support page</a>."
1994
  msgstr ""
1995
 
1996
- #: admin/views/support.php:43
1997
- #, php-format
1998
- msgid ""
1999
- "Upgrade to any premium add-on and get <strong>priority email support</strong>"
2000
- " or reach out through the <a href=\"%s\" target=\"_blank\">support forum</a> "
2001
- "for individual help."
2002
  msgstr ""
2003
 
2004
- #: admin/views/settings.php:14
2005
- msgid "General"
 
2006
  msgstr ""
2007
 
2008
- #: admin/views/settings.php:43
2009
- msgid "Save settings on this page"
2010
  msgstr ""
2011
 
2012
- #: admin/views/settings.php:50 modules/import-export/main.php:17
2013
- #: modules/import-export/main.php:17
2014
- msgid "Import &amp; Export"
 
 
2015
  msgstr ""
2016
 
2017
- #: admin/views/placements-item.php:10 admin/views/placement-form.php:69
2018
- msgid "--not selected--"
 
 
 
2019
  msgstr ""
2020
 
2021
- #: admin/views/ad-group-list-ads.php:22
2022
- msgid "weight"
2023
  msgstr ""
2024
 
2025
- #: admin/views/ad-group-list-ads.php:45
2026
- #: admin/views/conditions/conditions-form.php:37
2027
- msgid "add"
2028
  msgstr ""
2029
 
2030
- #: admin/views/ad-info-top.php:2
2031
- msgid "Start Wizard"
2032
  msgstr ""
2033
 
2034
- #: admin/views/ad-info-top.php:3
2035
- msgid "Stop Wizard"
2036
  msgstr ""
2037
 
2038
- #: admin/views/ad-info-top.php:27 admin/views/ad-info-bottom.php:21
2039
- msgid "Stop Wizard and show all options"
2040
  msgstr ""
2041
 
2042
- #: admin/views/ad-group-edit.php:20
2043
- msgid "You did not select an item for editing."
 
2044
  msgstr ""
2045
 
2046
- #: admin/views/ad-group-edit.php:41
2047
- msgctxt "Taxonomy Name"
2048
- msgid "Name"
2049
  msgstr ""
2050
 
2051
- #: admin/views/ad-group-edit.php:51
2052
- msgctxt "Taxonomy Slug"
2053
- msgid "Slug"
2054
  msgstr ""
2055
 
2056
- #: admin/views/ad-group-edit.php:58 admin/views/ad-output-metabox.php:49
2057
- msgid ""
2058
- "An id-like string with only letters in lower case, numbers, and hyphens."
2059
  msgstr ""
2060
 
2061
- #: admin/views/ad-group-edit.php:65
2062
- msgctxt "Taxonomy Description"
2063
- msgid "Description"
2064
  msgstr ""
2065
 
2066
- #: admin/views/ad-group-edit.php:77
2067
- msgid "Create new Ad Group"
 
2068
  msgstr ""
2069
 
2070
- #: admin/views/ad-group-edit.php:79
2071
- msgid "Update"
2072
  msgstr ""
2073
 
2074
- #: admin/views/placement-injection-top.php:15
2075
- msgid "Congratulations! Your ad is now visible in the frontend."
2076
  msgstr ""
2077
 
2078
- #: admin/views/placement-injection-top.php:16
2079
- msgid "Adjust the placement options"
2080
  msgstr ""
2081
 
2082
- #: admin/views/placement-injection-top.php:23
2083
- #, php-format
2084
- msgid ""
2085
- "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
2086
  msgstr ""
2087
 
2088
- #: admin/views/placement-injection-top.php:37
2089
- msgid "Where do you want to display the ad?"
2090
  msgstr ""
2091
 
2092
- #: admin/views/placement-injection-top.php:48
2093
- #: modules/gadsense/admin/admin.php:178
2094
- #, php-format
2095
- msgid ""
2096
- "The AdSense verification and Auto ads code is already activated in the <a "
2097
- "href=\"%s\">AdSense settings</a>."
2098
  msgstr ""
2099
 
2100
- #: admin/views/placement-injection-top.php:60
2101
- #: modules/gadsense/admin/admin.php:180
2102
- msgid ""
2103
- "No need to add the code manually here, unless you want to include it into "
2104
- "certain pages only."
2105
  msgstr ""
2106
 
2107
- #: admin/views/placement-injection-top.php:63
2108
- msgid ""
2109
- "Click on the button below to add the Auto ads code to the header of your "
2110
- "site."
2111
  msgstr ""
2112
 
2113
- #. this is a label in a button when a user uses an AdSense Auto ads code in a plain code field
2114
- #. the button has barely space for the original English text, so keep it short
2115
- #: admin/views/placement-injection-top.php:74
2116
- msgid "inject Auto ads"
2117
  msgstr ""
2118
 
2119
- #: admin/views/placement-injection-top.php:80
2120
- msgid "New placement"
2121
  msgstr ""
2122
 
2123
- #: admin/views/placement-injection-top.php:84
2124
- msgid "PHP or Shortcode"
2125
  msgstr ""
2126
 
2127
- #: admin/views/placement-injection-top.php:85
2128
- msgid "Manage Sidebar"
2129
  msgstr ""
2130
 
2131
- #: admin/views/placement-injection-top.php:86
2132
- msgid "Header (Manual)"
2133
  msgstr ""
2134
 
2135
- #: admin/views/placement-injection-top.php:90
2136
- #: admin/views/placement-injection-top.php:94
2137
- msgid "Custom Position"
2138
  msgstr ""
2139
 
2140
- #: admin/views/placement-injection-top.php:90
2141
- msgid "Show Pro Places"
2142
  msgstr ""
2143
 
2144
- #: admin/views/placement-injection-top.php:99
2145
- msgid "AdSense In-feed"
 
2146
  msgstr ""
2147
 
2148
- #: admin/views/placement-injection-top.php:105
2149
- msgid "Show Sticky Places"
2150
  msgstr ""
2151
 
2152
- #: admin/views/placement-injection-top.php:111
2153
- msgid "Show PopUp"
2154
  msgstr ""
2155
 
2156
- #: admin/views/placement-injection-top.php:115
2157
- msgid "PopUp & Layer"
2158
  msgstr ""
2159
 
2160
- #: admin/views/placement-injection-top.php:120
2161
- msgid "see all…"
2162
  msgstr ""
2163
 
2164
- #: admin/views/placement-injection-top.php:157
2165
- msgid "Existing placement"
2166
  msgstr ""
2167
 
2168
- #: admin/views/placement-injection-top.php:170
2169
- #, php-format
2170
- msgid "Or use the shortcode %s to insert the ad into the content manually."
2171
  msgstr ""
2172
 
2173
- #: admin/views/placement-injection-top.php:178
2174
- #, php-format
2175
- msgid ""
2176
- "Learn more about your choices to display an ad in the <a href=\"%s\" "
2177
- "target=\"_blank\">manual</a>."
2178
  msgstr ""
2179
 
2180
- #: admin/views/ad-group-list-form-row.php:31 admin/views/placements.php:59
2181
- #: modules/gadsense/admin/views/external-ads-list.php:45
2182
- #: modules/gadsense/admin/views/external-ads-list.php:55
2183
- #: modules/privacy/admin/views/setting-consent-method.php:9
2184
- msgid "Name"
2185
  msgstr ""
2186
 
2187
- #: admin/views/ad-group-list-form-row.php:56 admin/views/placements.php:58
2188
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:105
2189
- msgid "Type"
2190
  msgstr ""
2191
 
2192
- #: admin/views/ad-group-list-form-row.php:72
2193
- msgctxt "option to display all ads in an ad groups"
2194
- msgid "all"
2195
  msgstr ""
2196
 
2197
- #: admin/views/ad-group-list-form-row.php:79
2198
- msgid "Visible ads"
 
2199
  msgstr ""
2200
 
2201
- #: admin/views/ad-group-list-form-row.php:81
2202
- msgid "Number of ads that are visible at the same time"
 
2203
  msgstr ""
2204
 
2205
- #: admin/views/ad-info.php:4
2206
- #, php-format
2207
- msgid "Ad Id: %s"
2208
  msgstr ""
2209
 
2210
- #: admin/views/ad-info.php:7 admin/views/placements.php:132
2211
- #: admin/views/ad-group-list-row.php:22
2212
- msgid "shortcode"
2213
  msgstr ""
2214
 
2215
- #: admin/views/ad-info.php:9
2216
- msgid "theme function"
2217
  msgstr ""
2218
 
2219
- #: admin/views/ad-info.php:16
2220
- #, php-format
2221
- msgid ""
2222
- "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
2223
  msgstr ""
2224
 
2225
- #: admin/views/ad-info.php:31
2226
- msgid "click to change"
2227
  msgstr ""
2228
 
2229
- #: admin/views/ad-info.php:38
2230
- msgid "Add a description"
2231
  msgstr ""
2232
 
2233
- #: admin/views/ad-info.php:42
2234
- msgid "Internal description or your own notes about this ad."
2235
  msgstr ""
2236
 
2237
- #: admin/views/support-callout.php:3
2238
- msgid "Problems or questions?"
2239
  msgstr ""
2240
 
2241
- #: admin/views/support-callout.php:4
2242
- msgid "Save time and get personal support."
2243
  msgstr ""
2244
 
2245
- #: admin/views/support-callout.php:4
2246
- msgid "Ask your question!"
2247
  msgstr ""
2248
 
2249
- #: admin/views/placements.php:12
2250
- msgid ""
2251
- "Couldn’t create the new placement. Please check your form field and whether "
2252
- "the name is already in use."
2253
  msgstr ""
2254
 
2255
- #: admin/views/placements.php:16
2256
- msgid "Placements updated"
2257
  msgstr ""
2258
 
2259
- #: admin/views/placements.php:22 admin/views/placements.php:260
2260
- msgid "Create a new placement"
2261
  msgstr ""
2262
 
2263
- #: admin/views/placements.php:23 admin/views/placements.php:262
2264
- msgid "New Placement"
2265
  msgstr ""
2266
 
2267
- #: admin/views/placements.php:28
2268
- msgid ""
2269
- "Placements are physically places in your theme and posts. You can use them "
2270
- "if you plan to change ads and ad groups on the same place without the need "
2271
- "to change your templates."
2272
  msgstr ""
2273
 
2274
- #: admin/views/placements.php:34
2275
- #, php-format
2276
- msgid ""
2277
- "See also the manual for more information on <a href=\"%s\">placements</a>."
2278
  msgstr ""
2279
 
2280
- #: admin/views/placements.php:60 modules/import-export/views/page.php:26
2281
- msgid "Options"
 
2282
  msgstr ""
2283
 
2284
- #: admin/views/placements.php:87
2285
- #, php-format
2286
- msgid ""
2287
- "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
2288
- "check if the responsible add-on is activated."
2289
  msgstr ""
2290
 
2291
- #: admin/views/placements.php:114 admin/views/ad-output-metabox.php:18
2292
- #: admin/views/placements-ad-label-position.php:11
2293
- #: admin/views/placements-ad-label-position.php:13
2294
- #: admin/views/placements-ad-label.php:9 admin/views/placements-ad-label.php:11
2295
- #: modules/gadsense/includes/class-network-adsense.php:239
2296
- msgid "default"
2297
  msgstr ""
2298
 
2299
- #: admin/views/placements.php:123
2300
- msgid "show usage"
2301
  msgstr ""
2302
 
2303
- #: admin/views/placements.php:135
2304
- msgid "template (PHP)"
 
2305
  msgstr ""
2306
 
2307
- #: admin/views/placements.php:150
2308
- msgid "Item"
2309
  msgstr ""
2310
 
2311
- #: admin/views/placements.php:164
2312
- msgid "position"
2313
  msgstr ""
2314
 
2315
- #: admin/views/placements.php:170
2316
- msgid "Important Notice"
2317
  msgstr ""
2318
 
2319
- #: admin/views/placements.php:200
2320
- msgid "ad label"
2321
  msgstr ""
2322
 
2323
- #: admin/views/placements.php:210
2324
- msgid "show all options"
 
2325
  msgstr ""
2326
 
2327
- #: admin/views/placements.php:231
2328
- #, php-format
2329
- msgid ""
2330
- "Tutorial: <a href=\"%s\" target=\"_blank\">How to place visible ads in the "
2331
- "header of your website</a>."
2332
  msgstr ""
2333
 
2334
- #: admin/views/placements.php:251
2335
- msgctxt "checkbox to remove placement"
2336
- msgid "delete"
2337
  msgstr ""
2338
 
2339
- #: admin/views/placements.php:258
2340
- msgid "Save Placements"
2341
  msgstr ""
2342
 
2343
- #: admin/views/ad-main-metabox.php:3
2344
- msgid "No ad types defined"
2345
  msgstr ""
2346
 
2347
- #: admin/views/ad-conditions-string-operators.php:15
2348
- #: modules/privacy/admin/views/setting-consent-method.php:10
2349
- msgid "contains"
2350
  msgstr ""
2351
 
2352
- #: admin/views/ad-conditions-string-operators.php:16
2353
- msgid "starts with"
2354
  msgstr ""
2355
 
2356
- #: admin/views/ad-conditions-string-operators.php:17
2357
- msgid "ends with"
2358
  msgstr ""
2359
 
2360
- #: admin/views/ad-conditions-string-operators.php:18
2361
- msgid "matches"
2362
  msgstr ""
2363
 
2364
- #: admin/views/ad-conditions-string-operators.php:19
2365
- msgid "matches regex"
2366
  msgstr ""
2367
 
2368
- #: admin/views/ad-conditions-string-operators.php:20
2369
- msgid "does not contain"
2370
  msgstr ""
2371
 
2372
- #: admin/views/ad-conditions-string-operators.php:21
2373
- msgid "does not start with"
2374
  msgstr ""
2375
 
2376
- #: admin/views/ad-conditions-string-operators.php:22
2377
- msgid "does not end with"
2378
  msgstr ""
2379
 
2380
- #: admin/views/ad-conditions-string-operators.php:23
2381
- msgid "does not match"
 
2382
  msgstr ""
2383
 
2384
- #: admin/views/ad-conditions-string-operators.php:24
2385
- msgid "does not match regex"
 
2386
  msgstr ""
2387
 
2388
- #: admin/views/placements-content-index.php:9
2389
- msgid "after"
2390
  msgstr ""
2391
 
2392
- #: admin/views/placements-content-index.php:10
2393
- msgid "before"
2394
  msgstr ""
2395
 
2396
- #: admin/views/placements-content-index.php:48
2397
- msgid "start counting from bottom"
2398
  msgstr ""
2399
 
2400
- #: admin/views/ad-parameters-size.php:9
2401
- msgid "size"
2402
  msgstr ""
2403
 
2404
- #: admin/views/ad-parameters-size.php:11
2405
- msgid "width"
2406
  msgstr ""
2407
 
2408
- #: admin/views/ad-parameters-size.php:12
2409
- msgid "height"
2410
  msgstr ""
2411
 
2412
- #: admin/views/ad-parameters-size.php:22
2413
- msgid "reserve this space"
2414
  msgstr ""
2415
 
2416
- #: admin/views/ad-group.php:24
2417
- msgid "Ad Group successfully created"
2418
  msgstr ""
2419
 
2420
- #: admin/views/ad-group.php:37
2421
- msgid "Ad Groups successfully updated"
 
 
2422
  msgstr ""
2423
 
2424
- #: admin/views/ad-group.php:64
2425
- #, php-format
2426
- msgid "Search results for &#8220;%s&#8221;"
2427
  msgstr ""
2428
 
2429
- #: admin/views/ad-group.php:72
2430
- msgid "Group title"
 
 
2431
  msgstr ""
2432
 
2433
- #: admin/views/ad-group.php:73
2434
- msgid "save"
 
2435
  msgstr ""
2436
 
2437
- #: admin/views/ad-group.php:75
2438
- msgid ""
2439
- "Ad Groups are a very flexible method to bundle ads. You can use them to "
2440
- "display random ads in the frontend or run split tests, but also just for "
2441
- "informational purposes. Not only can an Ad Groups have multiple ads, but an "
2442
- "ad can belong to multiple ad groups."
2443
  msgstr ""
2444
 
2445
- #: admin/views/ad-group.php:81
2446
- #, php-format
2447
- msgid ""
2448
- "Find more information about ad groups in the <a href=\"%s\" "
2449
- "target=\"_blank\">manual</a>."
2450
  msgstr ""
2451
 
2452
- #: admin/views/ad-group.php:119
2453
- msgid "Update Groups"
2454
  msgstr ""
2455
 
2456
- #: admin/views/ad-submitbox-meta.php:10
2457
- msgid "Set expiry date"
2458
  msgstr ""
2459
 
2460
- #: admin/views/ad-submitbox-meta.php:15
2461
- msgid "Month"
2462
  msgstr ""
2463
 
2464
- #: admin/views/ad-submitbox-meta.php:21
2465
- #, php-format
2466
- msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2467
- msgid "%1$s-%2$s"
2468
  msgstr ""
2469
 
2470
- #: admin/views/ad-submitbox-meta.php:28
2471
- msgid "Day"
2472
  msgstr ""
2473
 
2474
- #: admin/views/ad-submitbox-meta.php:29
2475
- msgid "Year"
2476
  msgstr ""
2477
 
2478
- #: admin/views/ad-submitbox-meta.php:30
2479
- msgid "Hour"
2480
  msgstr ""
2481
 
2482
- #: admin/views/ad-submitbox-meta.php:31
2483
- msgid "Minute"
2484
  msgstr ""
2485
 
2486
- #: admin/views/ad-submitbox-meta.php:40
2487
- #, php-format
2488
- msgctxt ""
2489
- "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
2490
- msgid "%1$s %2$s, %3$s @ %4$s %5$s"
2491
  msgstr ""
2492
 
2493
- #: admin/views/post-ad-settings-metabox.php:1
2494
- msgid "How to disable ads on specific pages"
 
2495
  msgstr ""
2496
 
2497
- #: admin/views/post-ad-settings-metabox.php:7
2498
- msgid "Disable ads on this page"
 
2499
  msgstr ""
2500
 
2501
- #: admin/views/checks.php:16
2502
- #, php-format
2503
- msgid ""
2504
- "Advanced Ads detected potential problems with your ad setup. %1$sShow me "
2505
- "these errors%2$s"
2506
  msgstr ""
2507
 
2508
- #: admin/views/ad-info-after-textarea.php:17
2509
- msgid "The code of this ad might not work properly with the Content placement."
 
2510
  msgstr ""
2511
 
2512
- #: admin/views/ad-info-after-textarea.php:24
2513
- #, php-format
2514
- msgid "Reach out to <a href=\"%s\">support</a> to get help."
2515
  msgstr ""
2516
 
2517
- #: admin/views/placement-form.php:15
2518
- msgid "Choose a placement type"
 
2519
  msgstr ""
2520
 
2521
- #: admin/views/placement-form.php:21
2522
- #, php-format
2523
- msgid ""
2524
- "Placement types define where the ad is going to be displayed. Learn more "
2525
- "about the different types from the <a href=\"%s\">manual</a>"
2526
  msgstr ""
2527
 
2528
- #: admin/views/placement-form.php:59
2529
- msgid "Please select a placement type."
2530
  msgstr ""
2531
 
2532
- #: admin/views/placement-form.php:61
2533
- msgid "Choose a Name"
2534
  msgstr ""
2535
 
2536
- #: admin/views/placement-form.php:62
2537
- msgid ""
2538
- "The name of the placement is only visible to you. Tip: choose a descriptive "
2539
- "one, e.g. <em>Below Post Headline</em>."
2540
  msgstr ""
2541
 
2542
- #: admin/views/placement-form.php:64
2543
- msgid "Placement Name"
 
2544
  msgstr ""
2545
 
2546
- #: admin/views/placement-form.php:65
2547
- msgid "Please enter a name for your placement."
2548
  msgstr ""
2549
 
2550
- #: admin/views/placement-form.php:66
2551
- msgid "Choose the Ad or Group"
2552
  msgstr ""
2553
 
2554
- #: admin/views/placement-form.php:67
2555
- msgid "The ad or group that should be displayed."
2556
  msgstr ""
2557
 
2558
- #: admin/views/placement-form.php:86
2559
- msgid "Save New Placement"
2560
  msgstr ""
2561
 
2562
- #: admin/views/feedback-disable.php:5
2563
- msgid "Why did you decide to disable Advanced Ads?"
2564
  msgstr ""
2565
 
2566
- #: admin/views/feedback-disable.php:7
2567
- msgid "I have a problem, a question or need help."
2568
  msgstr ""
2569
 
2570
- #: admin/views/feedback-disable.php:8
2571
- msgid "Please let us know how we can help"
2572
  msgstr ""
2573
 
2574
- #: admin/views/feedback-disable.php:15
2575
- #, php-format
2576
- msgid "Send me free help to %s"
2577
  msgstr ""
2578
 
2579
- #: admin/views/feedback-disable.php:21
2580
- msgid "Ads are not showing up"
2581
  msgstr ""
2582
 
2583
- #: admin/views/feedback-disable.php:22
2584
- msgid "It is only temporary"
2585
  msgstr ""
2586
 
2587
- #: admin/views/feedback-disable.php:23
2588
- msgid "I miss a feature"
2589
  msgstr ""
2590
 
2591
- #: admin/views/feedback-disable.php:24
2592
- msgid "Which one?"
2593
  msgstr ""
2594
 
2595
- #: admin/views/feedback-disable.php:25
2596
- msgid "I stopped using ads on my site."
2597
  msgstr ""
2598
 
2599
- #: admin/views/feedback-disable.php:26
2600
- msgid "I switched to another plugin"
2601
  msgstr ""
2602
 
2603
- #: admin/views/feedback-disable.php:31
2604
- msgid "Send feedback & deactivate"
2605
  msgstr ""
2606
 
2607
- #: admin/views/feedback-disable.php:32
2608
- msgid "Send feedback"
2609
  msgstr ""
2610
 
2611
- #: admin/views/feedback-disable.php:34
2612
- msgid "Only Deactivate"
 
2613
  msgstr ""
2614
 
2615
- #: admin/views/feedback-disable.php:37
2616
- msgid ""
2617
- "Thanks for submitting your feedback. I will reply within 24 hours on working "
2618
- "days."
2619
  msgstr ""
2620
 
2621
- #. %s is the title of the website
2622
- #: admin/views/feedback-disable.php:41
2623
- #, php-format
2624
- msgid "All the best to you and %s."
2625
  msgstr ""
2626
 
2627
- #: admin/views/feedback-disable.php:44
2628
- msgid "Disabling the plugin now…"
2629
  msgstr ""
2630
 
2631
- #: admin/views/ad-info-bottom.php:13
2632
- msgctxt "wizard navigation"
2633
- msgid "previous"
2634
  msgstr ""
2635
 
2636
- #: admin/views/ad-info-bottom.php:17 admin/views/ad-info-bottom.php:20
2637
- msgctxt "wizard navigation"
2638
- msgid "next"
2639
  msgstr ""
2640
 
2641
- #: admin/views/ad-info-bottom.php:17
2642
- msgctxt "wizard navigation"
2643
- msgid "save"
2644
  msgstr ""
2645
 
2646
- #: admin/views/ad-output-metabox.php:12
2647
- msgid "Everything connected to the ads layout and output."
 
2648
  msgstr ""
2649
 
2650
- #: admin/views/ad-output-metabox.php:14
2651
- #: admin/views/placements-ad-label-position.php:10
2652
- msgid "Position"
2653
  msgstr ""
2654
 
2655
- #: admin/views/ad-output-metabox.php:16
2656
- msgid "- default -"
2657
  msgstr ""
2658
 
2659
- #: admin/views/ad-output-metabox.php:19
2660
- #: admin/views/placements-ad-label-position.php:15
2661
- #: admin/views/placements-ad-label-position.php:17
2662
- msgid "left"
2663
  msgstr ""
2664
 
2665
- #: admin/views/ad-output-metabox.php:22
2666
- #: admin/views/placements-ad-label-position.php:18
2667
- #: admin/views/placements-ad-label-position.php:20
2668
- msgid "center"
2669
  msgstr ""
2670
 
2671
- #: admin/views/ad-output-metabox.php:25
2672
- #: admin/views/placements-ad-label-position.php:21
2673
- #: admin/views/placements-ad-label-position.php:23
2674
- msgid "right"
2675
  msgstr ""
2676
 
2677
- #: admin/views/ad-output-metabox.php:31
2678
- msgid ""
2679
- "Check this if you don’t want the following elements to float around the ad. "
2680
- "(adds a clearfix)"
2681
  msgstr ""
2682
 
2683
- #: admin/views/ad-output-metabox.php:36
2684
- msgid "Margin"
 
2685
  msgstr ""
2686
 
2687
- #: admin/views/ad-output-metabox.php:38
2688
- msgid "top:"
2689
  msgstr ""
2690
 
2691
- #: admin/views/ad-output-metabox.php:39
2692
- msgid "right:"
2693
  msgstr ""
2694
 
2695
- #: admin/views/ad-output-metabox.php:40
2696
- msgid "bottom:"
2697
  msgstr ""
2698
 
2699
- #: admin/views/ad-output-metabox.php:41
2700
- msgid "left:"
2701
  msgstr ""
2702
 
2703
- #: admin/views/ad-output-metabox.php:42
2704
- msgid "tip: use this to add a margin around the ad"
2705
  msgstr ""
2706
 
2707
- #: admin/views/ad-output-metabox.php:45
2708
- msgid "container ID"
 
2709
  msgstr ""
2710
 
2711
- #: admin/views/ad-output-metabox.php:48
2712
- msgid "Specify the id of the ad container. Leave blank for random or no id."
2713
  msgstr ""
2714
 
2715
- #: admin/views/ad-output-metabox.php:52
2716
- msgid "container classes"
2717
  msgstr ""
2718
 
2719
- #: admin/views/ad-output-metabox.php:55
2720
- msgid ""
2721
- "Specify one or more classes for the container. Separate multiple classes "
2722
- "with a space"
2723
  msgstr ""
2724
 
2725
- #: admin/views/ad-output-metabox.php:58
2726
- msgid "Enable debug mode"
 
2727
  msgstr ""
2728
 
2729
- #: admin/views/ad-group-list-row.php:25
2730
- msgid "template"
 
2731
  msgstr ""
2732
 
2733
- #: admin/views/ad-group-list-row.php:37
2734
- #, php-format
2735
- msgid "Type: %s"
2736
  msgstr ""
2737
 
2738
- #: admin/views/ad-group-list-row.php:45
2739
- #, php-format
2740
- msgid "ID: %s"
2741
  msgstr ""
2742
 
2743
- #: admin/views/ad-group-list-header.php:15
2744
- msgid "Details"
 
2745
  msgstr ""
2746
 
2747
- #: admin/views/setting-license.php:15
2748
- msgid "Your license expired."
 
2749
  msgstr ""
2750
 
2751
- #: admin/views/setting-license.php:23
2752
- msgid "Update expiry date"
 
2753
  msgstr ""
2754
 
2755
- #: admin/views/setting-license.php:32
2756
- #, php-format
2757
- msgid ""
2758
- "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
2759
- "class=\"advads-renewal-link\" target=\"_blank\">renew your license</a>."
2760
  msgstr ""
2761
 
2762
- #: admin/views/setting-license.php:50
2763
- #, php-format
2764
- msgid "(%d days left)"
2765
  msgstr ""
2766
 
2767
- #: admin/views/setting-license.php:56
2768
- msgid "License key"
 
2769
  msgstr ""
2770
 
2771
- #: admin/views/setting-license.php:73
2772
- msgid "Deactivate License"
 
2773
  msgstr ""
2774
 
2775
- #: admin/views/setting-license.php:82
2776
- msgid "Update License"
 
2777
  msgstr ""
2778
 
2779
- #: admin/views/setting-license.php:82
2780
- msgid "Activate License"
 
2781
  msgstr ""
2782
 
2783
- #: admin/views/setting-license.php:87
2784
- msgid "License key invalid"
2785
  msgstr ""
2786
 
2787
- #: admin/views/setting-license.php:91
2788
- msgid "active"
2789
  msgstr ""
2790
 
2791
- #: admin/views/placements-ad-label-position.php:27
2792
- msgid ""
2793
- "Check this if you don’t want the following elements to float around the ad. "
2794
- "(adds a placement_clearfix)"
2795
  msgstr ""
2796
 
2797
- #: admin/views/ad-list-no-ads.php:4
2798
- msgid "Watch the “First Ad” Tutorial (Video)"
2799
  msgstr ""
2800
 
2801
- #: admin/views/placements-ad-label.php:13
2802
- #: admin/views/placements-ad-label.php:15
2803
- #: modules/ads-txt/admin/views/setting-create.php:2
2804
- #: modules/ads-txt/admin/views/setting-create.php:4
2805
- msgid "enabled"
2806
  msgstr ""
2807
 
2808
- #: admin/views/placements-ad-label.php:17
2809
- #: admin/views/placements-ad-label.php:19
2810
- #: modules/ads-txt/admin/views/setting-create.php:6
2811
- #: modules/ads-txt/admin/views/setting-create.php:8
2812
- msgid "disabled"
2813
  msgstr ""
2814
 
2815
- #: public/views/ad-debug.php:6
2816
- msgid "Ad debug output"
2817
  msgstr ""
2818
 
2819
- #: public/views/ad-debug.php:8
2820
- msgid "Find solutions in the manual"
2821
  msgstr ""
2822
 
2823
- #: admin/views/notices/adblock.php:4
2824
- msgid ""
2825
- "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2826
- "ad setup."
2827
  msgstr ""
2828
 
2829
- #: admin/views/notices/starter-setup-success.php:2
2830
- msgid "2 Test Ads successfully added!"
2831
  msgstr ""
2832
 
2833
- #: admin/views/notices/starter-setup-success.php:3
2834
- msgid "Look below for the list of created ads."
2835
  msgstr ""
2836
 
2837
- #: admin/views/notices/starter-setup-success.php:5
2838
- msgid "Visit list of placements"
2839
  msgstr ""
2840
 
2841
- #: admin/views/notices/starter-setup-success.php:9
2842
- msgid "See them in action"
2843
  msgstr ""
2844
 
2845
- #: admin/views/notices/jqueryui_error.php:2
2846
- #: admin/views/conditions/ad-display-metabox.php:47
2847
- #, php-format
2848
- msgid ""
2849
- "There might be a problem with layouts and scripts in your dashboard. Please "
2850
- "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
2851
  msgstr ""
2852
 
2853
- #: admin/views/notices/welcome-panel.php:10
2854
- msgid "Welcome to Advanced Ads!"
2855
  msgstr ""
2856
 
2857
- #: admin/views/notices/welcome-panel.php:13
2858
- msgid "Get Started"
2859
  msgstr ""
2860
 
2861
- #: admin/views/notices/welcome-panel.php:19
2862
- msgid "First ad tutorial"
2863
  msgstr ""
2864
 
2865
- #: admin/views/notices/welcome-panel.php:23
2866
- msgid "One-Click Setup"
2867
  msgstr ""
2868
 
2869
- #: admin/views/notices/welcome-panel.php:30
2870
- msgid "Create 2 test ads"
2871
  msgstr ""
2872
 
2873
- #: admin/views/notices/welcome-panel.php:31
2874
- msgid ""
2875
- "Click to place two ads in the content of your site which are visible to you "
2876
- "only."
2877
  msgstr ""
2878
 
2879
- #: admin/views/notices/welcome-panel.php:34
2880
- msgid "AdSense Options"
2881
  msgstr ""
2882
 
2883
- #: admin/views/notices/welcome-panel.php:36
2884
- msgid "Import ads from AdSense"
2885
  msgstr ""
2886
 
2887
- #: admin/views/notices/welcome-panel.php:40
2888
- msgid "Setting up Auto ads"
2889
  msgstr ""
2890
 
2891
- #: admin/views/notices/welcome-panel.php:43
2892
- msgid "Setting up AdSense ads manually"
2893
  msgstr ""
2894
 
2895
- #: admin/views/conditions/not-selected.php:2
2896
- msgctxt "Error message shown when no display condition term is selected"
2897
- msgid "Please select some items."
2898
  msgstr ""
2899
 
2900
- #: admin/views/conditions/condition-operator.php:10
2901
- msgid "is"
2902
  msgstr ""
2903
 
2904
- #: admin/views/conditions/condition-operator.php:12
2905
- msgid "is not"
2906
  msgstr ""
2907
 
2908
- #: admin/views/conditions/condition-number.php:13
2909
- msgid "equal"
2910
  msgstr ""
2911
 
2912
- #: admin/views/conditions/condition-number.php:15
2913
- msgid "equal or higher"
2914
  msgstr ""
2915
 
2916
- #: admin/views/conditions/condition-number.php:17
2917
- msgid "equal or lower"
2918
  msgstr ""
2919
 
2920
- #: admin/views/conditions/display-conditions-form-top.php:4
2921
- msgid "If you want to display the ad everywhere, don't do anything here. "
2922
  msgstr ""
2923
 
2924
- #: admin/views/conditions/condition-is-or-not.php:21
2925
- #: admin/views/conditions/condition-device.php:23
2926
- msgid "Manual and Troubleshooting"
2927
  msgstr ""
2928
 
2929
- #: admin/views/conditions/visitor-conditions-form-top.php:4
2930
- msgid ""
2931
- "Visitor conditions limit the number of users who can see your ad. There is "
2932
- "no need to set visitor conditions if you want all users to see the ad."
2933
  msgstr ""
2934
 
2935
- #: admin/views/conditions/visitor-conditions-form-top.php:9
2936
- #: modules/privacy/admin/views/setting-enable.php:4
2937
- msgid "It seems that a caching plugin is activated."
2938
  msgstr ""
2939
 
2940
- #: admin/views/conditions/visitor-conditions-form-top.php:14
2941
- #, php-format
2942
- msgid ""
2943
- "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
2944
- "Pro</a> if dynamic features get cached."
2945
  msgstr ""
2946
 
2947
- #. %1$d is the number of elements in the list and %2$s a URL.
2948
- #: admin/views/conditions/condition-author.php:41
2949
- #, php-format
2950
- msgid ""
2951
- "Only %1$d elements are displayed above. Use the <code>advanced-ads-admin-max-"
2952
- "terms</code> filter to change this limit according to <a href=\"%2$s\" "
2953
- "target=\"_blank\">this page</a>."
2954
  msgstr ""
2955
 
2956
- #: admin/views/conditions/display-conditions-list.php:45
2957
- msgid "Forced to OR."
 
2958
  msgstr ""
2959
 
2960
- #: admin/views/conditions/display-conditions-list.php:46
2961
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:116
2962
- msgid "manual"
2963
  msgstr ""
2964
 
2965
- #: admin/views/conditions/ad-display-metabox.php:16
2966
- msgid ""
2967
- "Click on the button below if the ad should NOT show up on all pages when "
2968
- "included automatically."
2969
  msgstr ""
2970
 
2971
- #: admin/views/conditions/ad-display-metabox.php:18
2972
- msgid "Hide the ad on some pages"
2973
  msgstr ""
2974
 
2975
- #: admin/views/conditions/ad-display-metabox.php:33
2976
- msgid "Watch video"
2977
  msgstr ""
2978
 
2979
- #: admin/views/conditions/ad-display-metabox.php:58
2980
- msgid "A page with this ad on it must match all of the following conditions."
2981
  msgstr ""
2982
 
2983
- #: admin/views/conditions/no-option.php:10
2984
- #, php-format
2985
- msgctxt ""
2986
- "Error message shown when no terms exists for display condition; placeholder "
2987
- "is taxonomy label."
2988
- msgid "No %s found on your site."
2989
  msgstr ""
2990
 
2991
- #: admin/views/conditions/condition-device.php:13
2992
- msgid "Mobile (including tablets)"
2993
  msgstr ""
2994
 
2995
- #: admin/views/conditions/condition-device.php:15
2996
- msgid "Desktop"
2997
  msgstr ""
2998
 
2999
- #: admin/views/conditions/conditions-form.php:10
3000
- msgid "New condition"
3001
  msgstr ""
3002
 
3003
- #: admin/views/conditions/conditions-form.php:15
3004
- msgid "-- choose a condition --"
 
3005
  msgstr ""
3006
 
3007
- #: admin/views/conditions/conditions-form.php:24
3008
- msgid "Add-On features"
3009
  msgstr ""
3010
-
3011
- #: admin/views/conditions/ad-visitor-metabox.php:16
3012
- msgid ""
3013
- "Click on the button below if the ad should NOT be visible to all visitors"
3014
  msgstr ""
3015
 
3016
- #: admin/views/conditions/ad-visitor-metabox.php:18
3017
- msgid "Hide the ad from some users"
3018
  msgstr ""
3019
 
3020
- #: admin/views/conditions/ad-visitor-metabox.php:28
3021
- msgid ""
3022
- "Display conditions that are based on the user. Use with caution on cached "
3023
- "websites."
3024
  msgstr ""
3025
 
3026
- #: admin/views/pitches/pro-tab.php:2
3027
- msgid "Advanced Ads Pro – test and optimize your ad performance"
 
3028
  msgstr ""
3029
 
3030
- #: admin/views/pitches/pro-tab.php:4
3031
- msgid "Ads for Ad Blockers"
3032
  msgstr ""
3033
 
3034
- #: admin/views/pitches/pro-tab.php:5
3035
- msgid "Click Fraud Protection"
3036
  msgstr ""
3037
 
3038
- #: admin/views/pitches/pro-tab.php:6
3039
- msgid "Lazy Loading"
3040
  msgstr ""
3041
 
3042
- #: admin/views/pitches/pro-tab.php:13 admin/views/pitches/tracking.php:10
3043
- msgid "See all features and pricing"
3044
  msgstr ""
3045
 
3046
- #: admin/views/pitches/all-access.php:1
3047
- msgid "All Access – with all available add-ons"
3048
  msgstr ""
3049
 
3050
- #: admin/views/pitches/all-access.php:12
3051
- msgid "Risk free with 30-day Money-Back guarantee"
3052
  msgstr ""
3053
 
3054
- #: admin/views/pitches/all-access.php:13
3055
- msgid "Get All Access"
3056
  msgstr ""
3057
 
3058
- #: admin/views/pitches/tracking.php:4
3059
- msgid "track impressions and click on your ads"
 
3060
  msgstr ""
3061
 
3062
- #: admin/views/pitches/tracking.php:5
3063
- msgid "compare ads and periods"
3064
  msgstr ""
3065
 
3066
- #: admin/views/pitches/tracking.php:6
3067
- msgid "share reports via link or email"
3068
  msgstr ""
3069
 
3070
- #: admin/views/pitches/tracking.php:7
3071
- msgid "limit ads views by overall number of impressions or clicks"
3072
  msgstr ""
3073
 
3074
- #: admin/views/pitches/tracking.php:8
3075
- msgid "spread impressions or clicks equally over a given period"
3076
  msgstr ""
3077
 
3078
- #: modules/gadsense/includes/class-mapi.php:338
3079
- #, php-format
3080
- msgid "Error while retrieving ad code for \"%s\"."
3081
  msgstr ""
3082
 
3083
- #: modules/gadsense/includes/class-mapi.php:365
3084
- #, php-format
3085
- msgid "Invalid response while retrieving ad code for \"%s\"."
3086
  msgstr ""
3087
 
3088
- #: modules/gadsense/includes/class-mapi.php:406
3089
- #, php-format
3090
- msgid "Error while retrieving adUnits list for \"%s\"."
3091
  msgstr ""
3092
 
3093
- #: modules/gadsense/includes/class-mapi.php:413
3094
- #, php-format
3095
- msgid "Invalid response while retrieving adUnits list for \"%s\"."
3096
  msgstr ""
3097
 
3098
- #: modules/gadsense/includes/class-mapi.php:421
3099
- msgid "Reason:"
3100
  msgstr ""
3101
 
3102
- #: modules/gadsense/includes/class-mapi.php:422
3103
- msgid "Message:"
3104
  msgstr ""
3105
 
3106
- #. %1$s is the AdSense publisher ID; %2$s a starting a tag to the AdSense ad unit list and %3$s the closing link.
3107
- #: modules/gadsense/includes/class-mapi.php:437
3108
- #, php-format
3109
- msgid ""
3110
- "The account \"%1$s\" does not seem to have any ad units. Please create some "
3111
- "%2$shere%3$s."
3112
  msgstr ""
3113
 
3114
- #: modules/gadsense/includes/class-mapi.php:499
3115
- msgid ""
3116
- "It seems that some changes have been made in the Advanced Ads settings. "
3117
- "Please refresh this page."
3118
  msgstr ""
3119
 
3120
- #: modules/gadsense/includes/class-mapi.php:506
3121
- #, php-format
3122
- msgid ""
3123
- "Advanced Ads does not have access to your account (<code>%s</code>) anymore."
3124
  msgstr ""
3125
 
3126
- #: modules/gadsense/includes/class-mapi.php:548
3127
- #, php-format
3128
- msgid "error while renewing access token for \"%s\""
3129
  msgstr ""
3130
 
3131
- #: modules/gadsense/includes/class-mapi.php:573
3132
- #, php-format
3133
- msgid "invalid response received while renewing access token for \"%s\""
3134
  msgstr ""
3135
 
3136
- #: modules/gadsense/includes/class-mapi.php:642
3137
- msgid "This ad code is from a different AdSense Account"
3138
  msgstr ""
3139
 
3140
- #: modules/gadsense/includes/class-mapi.php:867
3141
- msgid "Invalid response body while retrieving account alerts"
3142
  msgstr ""
3143
 
3144
- #: modules/gadsense/includes/class-mapi.php:876
3145
- msgid "error while retrieving account alerts"
3146
  msgstr ""
3147
 
3148
- #: modules/gadsense/includes/class-mapi.php:1031
3149
- msgid "No token provided. Token data needed to get account details."
3150
  msgstr ""
3151
 
3152
- #: modules/gadsense/includes/class-mapi.php:1095
3153
- msgid "An error occurred while requesting account details."
3154
  msgstr ""
3155
 
3156
- #: modules/gadsense/includes/class-mapi.php:1320
3157
- #: modules/gadsense/includes/class-network-adsense.php:384
3158
- msgctxt "AdSense ad type"
3159
- msgid "Matched Content"
3160
  msgstr ""
3161
 
3162
- #: modules/gadsense/includes/class-mapi.php:1323
3163
- #: modules/gadsense/includes/class-network-adsense.php:385
3164
- msgctxt "AdSense ad type"
3165
- msgid "In-article"
3166
  msgstr ""
3167
 
3168
- #: modules/gadsense/includes/class-mapi.php:1325
3169
- #: modules/gadsense/includes/class-network-adsense.php:386
3170
- msgctxt "AdSense ad type"
3171
- msgid "In-feed"
3172
  msgstr ""
3173
 
3174
- #: modules/gadsense/includes/class-mapi.php:1330
3175
- #: modules/gadsense/includes/class-network-adsense.php:387
3176
- msgctxt "AdSense ad type"
3177
- msgid "Display"
3178
  msgstr ""
3179
 
3180
- #: modules/gadsense/includes/class-mapi.php:1332
3181
- #: modules/gadsense/includes/class-network-adsense.php:388
3182
- msgctxt "AdSense ad type"
3183
- msgid "Link"
3184
  msgstr ""
3185
 
3186
- #: modules/gadsense/includes/class-mapi.php:1480
3187
- #, php-format
3188
- msgid ""
3189
- "There are one or more warnings about the currently linked AdSense account. "
3190
- "You can view them <a href=\"%s\">here</a>"
3191
  msgstr ""
3192
 
3193
- #. 1:A link to the settings page
3194
- #. 2:The name of an ad network
3195
- #: modules/gadsense/includes/class-mapi.php:1567
3196
- #, php-format
3197
- msgid ""
3198
- "Please try to <a href=\"%1$s\" target=\"_blank\">reconnect to your %2$s "
3199
- "account</a>."
3200
  msgstr ""
3201
 
3202
- #: modules/gadsense/includes/class-adsense-report.php:472
3203
- #: modules/gadsense/includes/class-adsense-report.php:498
3204
- msgid "Never"
3205
  msgstr ""
3206
 
3207
- #: modules/gadsense/includes/class-gadsense-data.php:40
3208
- msgid "Auto"
3209
  msgstr ""
3210
 
3211
- #: modules/gadsense/includes/class-network-adsense.php:34
3212
- msgid "AdSense account"
3213
  msgstr ""
3214
 
3215
- #: modules/gadsense/includes/class-network-adsense.php:43
3216
- msgid "Verification code & Auto ads"
3217
  msgstr ""
3218
 
3219
- #: modules/gadsense/includes/class-network-adsense.php:54
3220
- msgid "Auto ads"
3221
  msgstr ""
3222
 
3223
- #: modules/gadsense/includes/class-network-adsense.php:54
3224
- msgid "Disable top anchor ad"
3225
  msgstr ""
3226
 
3227
- #: modules/gadsense/includes/class-network-adsense.php:64
3228
- msgid "Disable stats"
3229
  msgstr ""
3230
 
3231
- #: modules/gadsense/includes/class-network-adsense.php:76
3232
- msgid "Limit to 3 ads"
3233
  msgstr ""
3234
 
3235
- #: modules/gadsense/includes/class-network-adsense.php:86
3236
- msgid "Disable violation warnings"
3237
  msgstr ""
3238
 
3239
- #: modules/gadsense/includes/class-network-adsense.php:94
3240
- msgid "Transparent background"
3241
  msgstr ""
3242
 
3243
- #: modules/gadsense/includes/class-network-adsense.php:102
3244
- msgid "Full width responsive ads on mobile"
3245
  msgstr ""
3246
 
3247
- #: modules/gadsense/includes/class-network-adsense.php:146
3248
- #, php-format
3249
- msgid "Limit to %d AdSense ads"
3250
  msgstr ""
3251
 
3252
- #: modules/gadsense/includes/class-network-adsense.php:150
3253
- msgid ""
3254
- "There is no explicit limit for AdSense ads anymore, but you can still use "
3255
- "this setting to prevent too many AdSense ads to show accidentally on your "
3256
- "site."
3257
  msgstr ""
3258
 
3259
- #: modules/gadsense/includes/class-network-adsense.php:154
3260
- msgid ""
3261
- "Due to technical restrictions, the limit does not work on placements with "
3262
- "cache-busting enabled."
3263
  msgstr ""
3264
 
3265
- #: modules/gadsense/includes/class-network-adsense.php:166
3266
- msgid ""
3267
- "Enable this box if you don’t want Google Auto ads to place anchor ads at the "
3268
- "top of your page."
3269
  msgstr ""
3270
 
3271
- #: modules/gadsense/includes/class-network-adsense.php:179
3272
- msgid ""
3273
- "Enable this option to stop loading stats from AdSense into your WordPress "
3274
- "backend."
3275
  msgstr ""
3276
 
3277
- #: modules/gadsense/includes/class-network-adsense.php:194
3278
- #: modules/gadsense/admin/views/connect-adsense.php:43
3279
- msgid ""
3280
- "Insert the AdSense header code used for verification and the Auto Ads "
3281
- "feature."
3282
  msgstr ""
3283
 
3284
- #. this is the text for a link to a sub-page in an AdSense account
3285
- #: modules/gadsense/includes/class-network-adsense.php:199
3286
- msgid "Adjust Auto ads options"
3287
  msgstr ""
3288
 
3289
- #: modules/gadsense/includes/class-network-adsense.php:201
3290
- #, php-format
3291
- msgid ""
3292
- "Please read <a href=\"%s\" target=\"_blank\">this article</a> if <strong>ads "
3293
- "appear in random places</strong>."
3294
  msgstr ""
3295
 
3296
- #: modules/gadsense/includes/class-network-adsense.php:203
3297
- msgid "Auto ads on AMP pages"
3298
  msgstr ""
3299
 
3300
- #: modules/gadsense/includes/class-network-adsense.php:216
3301
- msgid "Disable warnings about potential violations of the AdSense terms."
3302
  msgstr ""
3303
 
3304
- #: modules/gadsense/includes/class-network-adsense.php:217
3305
- #, php-format
3306
- msgid ""
3307
- "Our <a href=\"%s\" target=\"_blank\">Ad Health</a> feature monitors if "
3308
- "AdSense is implemented correctly on your site. It also considers ads not "
3309
- "managed with Advanced Ads. Enable this option to remove these checks"
3310
  msgstr ""
3311
 
3312
- #: modules/gadsense/includes/class-network-adsense.php:228
3313
- msgid ""
3314
- "Enable this option in case your theme adds an unfortunate background color "
3315
- "to AdSense ads."
3316
  msgstr ""
3317
 
3318
- #: modules/gadsense/includes/class-network-adsense.php:240
3319
- msgid "enable"
3320
  msgstr ""
3321
 
3322
- #: modules/gadsense/includes/class-network-adsense.php:241
3323
- msgid "disable"
3324
  msgstr ""
3325
 
3326
- #: modules/gadsense/includes/class-network-adsense.php:246
3327
- #, php-format
3328
- msgid ""
3329
- "Whether your responsive ad unit may expand to <a href='%s' target='blank'>"
3330
- "use the full width</a> of your visitor's mobile device screen"
3331
  msgstr ""
3332
 
3333
- #: modules/gadsense/includes/class-ad-type-adsense.php:34
3334
- msgid "AdSense ad"
3335
  msgstr ""
3336
 
3337
- #: modules/gadsense/includes/class-ad-type-adsense.php:35
3338
- msgid "Use ads from your Google AdSense account"
3339
  msgstr ""
3340
 
3341
- #: modules/gadsense/includes/class-ad-type-adsense.php:91
3342
- #: modules/gadsense/admin/views/adsense-account.php:83
3343
- msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
3344
  msgstr ""
3345
 
3346
- #: modules/gadsense/includes/class-ad-type-adsense.php:132
3347
- msgid "Your AdSense Publisher ID is missing."
3348
  msgstr ""
3349
 
3350
- #: modules/gadsense/admin/dummy.php:61
3351
- msgid "Dummy Account Id"
3352
  msgstr ""
3353
 
3354
  #: modules/gadsense/admin/admin.php:121
3355
- #, php-format
3356
- msgid ""
3357
- "Responsive AdSense ads don’t work reliably with <em>Position</em> set to "
3358
- "left or right. Either switch the <em>Type</em> to \"normal\" or follow <a "
3359
- "href=\"%s\" target=\"_blank\">this tutorial</a> if you want the ad to be "
3360
- "wrapped in text."
3361
  msgstr ""
3362
 
3363
  #: modules/gadsense/admin/admin.php:127
3364
- #, php-format
3365
- msgid ""
3366
- "<a href=\"%s\" target=\"_blank\">Install the free AdSense In-feed add-on</a> "
3367
- "in order to place ads between posts."
3368
  msgstr ""
3369
 
3370
  #: modules/gadsense/admin/admin.php:134
3371
- #, php-format
3372
- msgid ""
3373
- "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
3374
- "define the exact size for each browser width or choose between horizontal, "
3375
- "vertical, or rectangle formats."
3376
  msgstr ""
3377
 
3378
  #: modules/gadsense/admin/admin.php:182
3379
- #, php-format
3380
- msgid ""
3381
- "The AdSense verification and Auto ads code should be set up in the <a "
3382
- "href=\"%s\">AdSense settings</a>. Click on the following button to enable it "
3383
- "now."
3384
  msgstr ""
3385
 
3386
  #: modules/gadsense/admin/admin.php:183
3387
  msgid "Activate"
3388
  msgstr ""
3389
 
3390
- #: modules/privacy/classes/plugin.php:149
3391
- msgid "Show all ads even without consent."
3392
  msgstr ""
3393
 
3394
- #: modules/privacy/classes/plugin.php:150
3395
- msgid "Cookie"
3396
  msgstr ""
3397
 
3398
- #: modules/privacy/admin/admin.php:63
3399
- msgid "Privacy"
 
3400
  msgstr ""
3401
 
3402
- #: modules/privacy/admin/admin.php:84
3403
- msgid "Enable Privacy module"
3404
  msgstr ""
3405
 
3406
- #: modules/privacy/admin/admin.php:87
3407
- msgid "Consent method"
3408
  msgstr ""
3409
 
3410
- #: modules/ad-blocker/admin/admin.php:96
3411
- msgid "Ad blocker fix"
 
3412
  msgstr ""
3413
 
3414
- #: modules/ad-blocker/admin/admin.php:150
3415
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:372
3416
- msgid "Unable to connect to the filesystem. Please confirm your credentials."
3417
  msgstr ""
3418
 
3419
- #: modules/ad-blocker/admin/admin.php:165
3420
- msgid "The asset folder was rebuilt successfully"
3421
  msgstr ""
3422
 
3423
- #: modules/ad-blocker/admin/admin.php:226
3424
- msgid "There is no writable upload folder"
3425
  msgstr ""
3426
 
3427
- #: modules/ad-blocker/admin/admin.php:255
3428
- #, php-format
3429
- msgid "Unable to rename \"%s\" directory"
3430
  msgstr ""
3431
 
3432
- #: modules/ad-blocker/admin/admin.php:271
3433
- #: modules/ad-blocker/admin/admin.php:284
3434
- #: modules/ad-blocker/admin/admin.php:301
3435
- #, php-format
3436
- msgid "Unable to copy assets to the \"%s\" directory"
3437
  msgstr ""
3438
 
3439
- #: modules/ad-blocker/admin/admin.php:334
3440
- #: modules/ad-blocker/admin/admin.php:419
3441
- #, php-format
3442
- msgid "We do not have direct write access to the \"%s\" directory"
3443
  msgstr ""
3444
 
3445
- #: modules/ad-blocker/admin/admin.php:430
3446
- #, php-format
3447
- msgid "Unable to copy files to %s"
3448
  msgstr ""
3449
 
3450
- #. Name of the plugin
3451
- #: modules/gutenberg/includes/class-gutenberg.php:78
3452
- msgid "Advanced Ads"
3453
  msgstr ""
3454
 
3455
- #: modules/adblock-finder/admin/admin.php:16
3456
- msgid "Ad Blocker"
3457
  msgstr ""
3458
 
3459
- #: modules/adblock-finder/admin/admin.php:23
3460
- msgid "Ad blocker counter"
3461
  msgstr ""
3462
 
3463
- #: modules/import-export/classes/import.php:66
3464
- msgid "Please enter XML content"
3465
  msgstr ""
3466
 
3467
- #: modules/import-export/classes/import.php:147
3468
- #: modules/import-export/classes/import.php:565
3469
- #, php-format
3470
- msgid "New attachment created <em>%s</em> %s"
3471
  msgstr ""
3472
 
3473
- #: modules/import-export/classes/import.php:179
3474
- #, php-format
3475
- msgid "Failed to import <em>%s</em>"
3476
  msgstr ""
3477
 
3478
- #: modules/import-export/classes/import.php:187
3479
- #, php-format
3480
- msgid "New ad created: <em>%s</em> %s"
3481
  msgstr ""
3482
 
3483
- #: modules/import-export/classes/import.php:230
3484
- #, php-format
3485
- msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
3486
  msgstr ""
3487
 
3488
- #: modules/import-export/classes/import.php:292
3489
- #, php-format
3490
- msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
3491
  msgstr ""
3492
 
3493
- #: modules/import-export/classes/import.php:294
3494
- #, php-format
3495
- msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
3496
  msgstr ""
3497
 
3498
- #: modules/import-export/classes/import.php:359
3499
- #, php-format
3500
- msgid "Placement <em>%s</em> created"
3501
  msgstr ""
3502
 
3503
- #: modules/import-export/classes/import.php:476
3504
- #, php-format
3505
- msgid "Option was updated: <em>%s</em>"
3506
  msgstr ""
3507
 
3508
- #: modules/import-export/classes/import.php:479
3509
- #, php-format
3510
- msgid "Option already exists: <em>%s</em>"
3511
  msgstr ""
3512
 
3513
- #: modules/import-export/classes/import.php:501
3514
- #, php-format
3515
- msgid "Failed to create import directory <em>%s</em>"
3516
  msgstr ""
3517
 
3518
- #: modules/import-export/classes/import.php:506
3519
- #, php-format
3520
- msgid "Import directory is not writable: <em>%s</em>"
3521
  msgstr ""
3522
 
3523
- #: modules/import-export/classes/import.php:514
3524
- msgid ""
3525
- "File is empty, uploads are disabled or post_max_size is smaller than "
3526
- "upload_max_filesize in php.ini"
3527
  msgstr ""
3528
 
3529
- #: modules/import-export/classes/import.php:524
3530
- #, php-format
3531
- msgid "Failed to upload file, error: <em>%s</em>"
3532
  msgstr ""
3533
 
3534
- #: modules/import-export/classes/import.php:529
3535
- msgid "File is empty."
3536
  msgstr ""
3537
 
3538
- #: modules/import-export/classes/import.php:534
3539
- #, php-format
3540
- msgid ""
3541
- "The file could not be created: <em>%s</em>. This is probably a permissions "
3542
- "problem"
3543
  msgstr ""
3544
 
3545
- #: modules/import-export/classes/import.php:607
3546
- #, php-format
3547
- msgid "Invalid filetype <em>%s</em>"
3548
  msgstr ""
3549
 
3550
- #: modules/import-export/classes/import.php:612
3551
- #: modules/import-export/classes/import.php:619
3552
- #: modules/import-export/classes/import.php:627
3553
- #: modules/import-export/classes/import.php:642
3554
- #, php-format
3555
- msgid "Error getting remote image <em>%s</em>"
3556
  msgstr ""
3557
 
3558
- #: modules/import-export/classes/import.php:636
3559
- #, php-format
3560
- msgid "Zero size file downloaded <em>%s</em>"
3561
  msgstr ""
3562
 
3563
- #: modules/import-export/classes/XmlEncoder.php:61
3564
- #: modules/import-export/classes/XmlEncoder.php:64
3565
- #: modules/import-export/classes/XmlEncoder.php:193
3566
- #: modules/import-export/classes/XmlEncoder.php:196
3567
- #, php-format
3568
- msgid "The %s extension(s) is not loaded"
3569
  msgstr ""
3570
 
3571
- #: modules/import-export/classes/XmlEncoder.php:75
3572
- msgctxt "import_export"
3573
- msgid "The data must be an array"
3574
  msgstr ""
3575
 
3576
- #: modules/import-export/classes/XmlEncoder.php:103
3577
- #, php-format
3578
- msgctxt "import_export"
3579
- msgid "The key %s is not valid"
3580
  msgstr ""
3581
 
3582
- #: modules/import-export/classes/XmlEncoder.php:149
3583
- #, php-format
3584
- msgctxt "import_export"
3585
- msgid "An unexpected value could not be serialized: %s"
3586
  msgstr ""
3587
 
3588
- #: modules/import-export/classes/XmlEncoder.php:201
3589
- msgctxt "import_export"
3590
- msgid "Invalid XML data, it can not be empty"
3591
  msgstr ""
3592
 
3593
- #: modules/import-export/classes/XmlEncoder.php:223
3594
- #, php-format
3595
- msgctxt "import_export"
3596
- msgid "XML error: %s"
3597
  msgstr ""
3598
 
3599
- #: modules/import-export/views/page.php:16
3600
- msgid "Export"
3601
  msgstr ""
3602
 
3603
- #: modules/import-export/views/page.php:17
3604
- msgid ""
3605
- "When you click the button below Advanced Ads will create an XML file for you "
3606
- "to save to your computer."
3607
  msgstr ""
3608
 
3609
- #: modules/import-export/views/page.php:28
3610
- msgid "Download Export File"
 
3611
  msgstr ""
3612
 
3613
- #: modules/import-export/views/page.php:33
3614
- msgid "Import"
3615
  msgstr ""
3616
 
3617
- #: modules/import-export/views/page.php:44
3618
- msgid "Choose an XML file"
 
3619
  msgstr ""
3620
 
3621
- #: modules/import-export/views/page.php:45
3622
- msgid "Copy an XML content"
 
3623
  msgstr ""
3624
 
3625
- #: modules/import-export/views/page.php:52
3626
- msgid ""
3627
- "Before you can upload your import file, you will need to fix the following "
3628
- "error:"
3629
  msgstr ""
3630
 
3631
- #: modules/import-export/views/page.php:57
3632
- #, php-format
3633
- msgid "Maximum size: %s"
 
3634
  msgstr ""
3635
 
3636
- #: modules/import-export/views/page.php:65
3637
- msgid "Start import"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3638
  msgstr ""
3639
 
3640
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:176
3641
- #, php-format
3642
- msgid ""
3643
- "The ads.txt file cannot be placed because the URL contains a subdirectory. "
3644
- "You need to make the file available at %s"
3645
  msgstr ""
3646
 
3647
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:187
3648
- #, php-format
3649
- msgid "The file is available on %s."
3650
  msgstr ""
3651
 
3652
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:191
3653
- msgid "The file was not created."
3654
  msgstr ""
3655
 
3656
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:197
3657
- msgid "Find the solution here"
3658
  msgstr ""
3659
 
3660
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:208
3661
- msgid "Import & Replace"
3662
  msgstr ""
3663
 
3664
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:210
3665
- msgid ""
3666
- "Move the content of the existing ads.txt file into Advanced Ads and remove "
3667
- "it."
3668
  msgstr ""
3669
 
3670
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:217
3671
- #: modules/ads-txt/admin/views/setting-additional-content.php:4
3672
- #, php-format
3673
- msgid "An error occured: %s."
3674
  msgstr ""
3675
 
3676
- #. %s the line that may need to be added manually
3677
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:230
3678
- #, php-format
3679
- msgid ""
3680
- "If your site is located on a subdomain, you need to add the following line "
3681
- "to the ads.txt file of the root domain: %s"
3682
  msgstr ""
3683
 
3684
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:345
3685
- msgid "The ads.txt is now managed with Advanced Ads."
3686
  msgstr ""
3687
 
3688
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:390
3689
- msgid "Not the main blog"
3690
  msgstr ""
3691
 
3692
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:419
3693
- msgid "Could not delete the existing ads.txt file"
3694
  msgstr ""
3695
 
3696
- #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:422
3697
- msgid "Could not find the existing ads.txt file"
3698
  msgstr ""
3699
 
3700
- #: admin/views/settings/license/section.php:4
3701
- #, php-format
3702
- msgid ""
3703
- "Enter license keys for our powerful <a href=\"%s\" target=\"_blank\">add-"
3704
- "ons</a>."
3705
  msgstr ""
3706
 
3707
- #: admin/views/settings/license/section.php:18
3708
- #, php-format
3709
- msgid ""
3710
- "See also <a href=\"%s\" target=\"_blank\">Issues and questions about "
3711
- "licenses</a>."
3712
  msgstr ""
3713
 
3714
- #: admin/views/settings/general/content-injection-everywhere.php:2
3715
- msgid ""
3716
- "Some plugins and themes trigger ad injections where it shouldn’t happen. "
3717
- "Therefore, Advanced Ads ignores injected placements on non-singular pages "
3718
- "and outside the loop. However, this can cause problems with some themes. Set "
3719
- "this option to -1 in order to enable unlimited ad injection at your own risk,"
3720
- " set it to 0 to keep it disabled or choose a positive number to enable the "
3721
- "injection only in the first x posts on your archive pages."
3722
  msgstr ""
3723
 
3724
- #: admin/views/settings/general/editors-manage-ads.php:2
3725
- msgid "Allow editors to also manage and publish ads."
3726
  msgstr ""
3727
 
3728
- #: admin/views/settings/general/editors-manage-ads.php:7
3729
- #, php-format
3730
- msgid ""
3731
- "You can assign different ad-related roles on a user basis with <a "
3732
- "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
3733
  msgstr ""
3734
 
3735
- #: admin/views/settings/general/content-injection-level-limitation.php:2
3736
- msgid ""
3737
- "Advanced Ads ignores paragraphs and other elements in containers when "
3738
- "injecting ads into the post content. Check this option to ignore this "
3739
- "limitation and ads might show up again."
3740
  msgstr ""
3741
 
3742
- #: admin/views/settings/general/disable-shortcode-button.php:2
3743
- msgid "Disable shortcode button in visual editor."
3744
  msgstr ""
3745
 
3746
- #: admin/views/settings/general/link-target.php:6
3747
- msgid ""
3748
- "Open programatically created links in a new window (use <code>"
3749
- "target=\"_blank\"</code>)"
3750
  msgstr ""
3751
 
3752
- #: admin/views/settings/general/disable-ads.php:5
3753
- msgid "Disable all ads in frontend"
 
3754
  msgstr ""
3755
 
3756
- #: admin/views/settings/general/disable-ads.php:6
3757
- msgid ""
3758
- "Use this option to disable all ads in the frontend, but still be able to use "
3759
- "the plugin."
3760
  msgstr ""
3761
 
3762
- #: admin/views/settings/general/disable-ads.php:12
3763
- msgid "Disable ads on 404 error pages"
3764
  msgstr ""
3765
 
3766
- #: admin/views/settings/general/disable-ads.php:18
3767
- msgid "Disable ads on non-singular pages"
3768
  msgstr ""
3769
 
3770
- #: admin/views/settings/general/disable-ads.php:19
3771
- msgid ""
3772
- "e.g. archive pages like categories, tags, authors, front page (if a list)"
3773
  msgstr ""
3774
 
3775
- #: admin/views/settings/general/disable-ads.php:24
3776
- msgid "Disable ads on secondary queries"
3777
  msgstr ""
3778
 
3779
- #: admin/views/settings/general/disable-ads.php:25
3780
- msgid ""
3781
- "Secondary queries are custom queries of posts outside the main query of a "
3782
- "page. Try this option if you see ads injected on places where they shouldn’t "
3783
- "appear."
3784
  msgstr ""
3785
 
3786
- #: admin/views/settings/general/disable-ads.php:31
3787
- msgid "Disable ads in RSS Feed"
3788
  msgstr ""
3789
 
3790
- #: admin/views/settings/general/disable-ads.php:37
3791
- msgid "Disable ads in REST API"
3792
  msgstr ""
3793
 
3794
- #: admin/views/settings/general/block-bots.php:9
3795
- msgid "Read this first"
3796
  msgstr ""
3797
 
3798
- #: admin/views/settings/general/block-bots.php:10
3799
- msgid "Hide ads from crawlers, bots and empty user agents."
 
 
3800
  msgstr ""
3801
 
3802
- #. %1$s is a starting <a> tag and %2$s a closing one
3803
- #: admin/views/settings/general/disable-notices.php:6
3804
- #, php-format
3805
- msgid ""
3806
- "Disable %1$sAd Health%2$s in frontend and backend, warnings and internal "
3807
- "notices like tips, tutorials, email newsletters and update notices."
3808
  msgstr ""
3809
 
3810
- #: admin/views/settings/general/uninstall-delete-data.php:3
3811
- msgid "Clean up all data related to Advanced Ads when removing the plugin."
 
 
3812
  msgstr ""
3813
 
3814
- #: admin/views/settings/general/disable-post-types.php:1
3815
- msgid "Pro feature"
 
 
3816
  msgstr ""
3817
 
3818
- #: admin/views/settings/general/hide-for-user-role.php:14
3819
- msgid "Choose the roles a user must have in order to not see any ads."
 
 
3820
  msgstr ""
3821
 
3822
- #: admin/views/settings/general/custom-label.php:7
3823
- msgid "Displayed above ads."
3824
  msgstr ""
3825
 
3826
- #: admin/views/settings/general/advanced-js.php:4
3827
- msgid "The file is currently enabled by an add-on that needs it."
 
3828
  msgstr ""
3829
 
3830
- #: admin/views/settings/general/advanced-js.php:14
3831
- #, php-format
3832
- msgid ""
3833
- "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
3834
- "here</a>). Some features and add-ons might override this setting if they "
3835
- "need features from this file."
3836
  msgstr ""
3837
 
3838
- #: admin/views/settings/general/content-injection-priority.php:6
3839
- msgid ""
3840
- "Please check your post content. A priority of 10 and below might cause "
3841
- "issues (wpautop function might run twice)."
3842
  msgstr ""
3843
 
3844
- #: admin/views/settings/general/content-injection-priority.php:9
3845
- msgid ""
3846
- "Play with this value in order to change the priority of the injected ads "
3847
- "compared to other auto injected elements in the post content."
3848
  msgstr ""
3849
 
3850
- #: admin/views/settings/general/frontend-prefix.php:4
3851
- msgid "Prefix of class and id attributes for elements created in the frontend."
3852
  msgstr ""
3853
 
3854
- #: modules/gadsense/admin/views/adsense-account.php:29
3855
- msgid "AdSense warnings"
3856
  msgstr ""
3857
 
3858
- #: modules/gadsense/admin/views/adsense-account.php:30
3859
- #: modules/gadsense/admin/views/adsense-account.php:62
3860
- msgid "dismiss"
3861
  msgstr ""
3862
 
3863
- #: modules/gadsense/admin/views/adsense-account.php:74
3864
- msgid "Revoke API acccess"
3865
  msgstr ""
3866
 
3867
- #: modules/gadsense/admin/views/adsense-account.php:80
3868
- msgid "Account holder name"
3869
  msgstr ""
3870
 
3871
- #: modules/gadsense/admin/views/adsense-account.php:85
3872
- msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
3873
  msgstr ""
3874
 
3875
- #: modules/gadsense/admin/views/adsense-account.php:92
3876
- msgid "Yes, I have an AdSense account"
3877
  msgstr ""
3878
 
3879
- #: modules/gadsense/admin/views/adsense-account.php:94
3880
- msgid "Configure everything manually"
3881
  msgstr ""
3882
 
3883
- #: modules/gadsense/admin/views/adsense-account.php:97
3884
- msgid "No, I still don't have an AdSense account"
3885
  msgstr ""
3886
 
3887
- #: modules/gadsense/admin/views/adsense-account.php:98
3888
- msgid "Get a free AdSense account"
3889
  msgstr ""
3890
 
3891
- #: modules/gadsense/admin/views/adsense-account.php:151
3892
- msgid "How to choose specific positions for AdSense ad units"
3893
  msgstr ""
3894
 
3895
- #. %1$s is the opening link tag to our manual; %2$s is the appropriate closing link tag; %3$s is the opening link tag to our help forum; %4$s is the appropriate closing link tag
3896
- #: modules/gadsense/admin/views/adsense-account.php:155
3897
- #, php-format
3898
- msgid ""
3899
- "Problems with AdSense? Check out the %1$smanual%2$s or %3$sask here%4$s."
3900
  msgstr ""
3901
 
3902
- #: modules/gadsense/admin/views/adsense-account.php:163
3903
- #: modules/gadsense/admin/views/external-ads-links.php:38
3904
- msgid "Can not connect AdSense account. PHP version is too low."
3905
  msgstr ""
3906
 
3907
- #: modules/gadsense/admin/views/external-ads-list.php:34
3908
- #: modules/gadsense/admin/views/external-ads-list.php:78
3909
- msgid "Update the ad units list"
3910
  msgstr ""
3911
 
3912
- #: modules/gadsense/admin/views/external-ads-list.php:46
3913
- #: modules/gadsense/admin/views/external-ads-list.php:56
3914
- msgctxt "AdSense ad"
3915
- msgid "Slot ID"
3916
  msgstr ""
3917
 
3918
- #: modules/gadsense/admin/views/external-ads-list.php:47
3919
- #: modules/gadsense/admin/views/external-ads-list.php:57
3920
- msgctxt "AdSense ad"
3921
- msgid "Type"
3922
  msgstr ""
3923
 
3924
- #: modules/gadsense/admin/views/external-ads-list.php:48
3925
- #: modules/gadsense/admin/views/external-ads-list.php:58
3926
- msgid "Size"
3927
  msgstr ""
3928
 
3929
- #: modules/gadsense/admin/views/external-ads-list.php:65
3930
- msgid "No active ad units found"
3931
  msgstr ""
3932
 
3933
- #: modules/gadsense/admin/views/external-ads-list.php:67
3934
- msgid "Show all ad units"
3935
  msgstr ""
3936
 
3937
- #: modules/gadsense/admin/views/external-ads-list.php:76
3938
- msgid "No ad units found"
3939
  msgstr ""
3940
 
3941
- #: modules/gadsense/admin/views/external-ads-list.php:102
3942
- msgid "Get the code for this ad"
3943
  msgstr ""
3944
 
3945
- #: modules/gadsense/admin/views/external-ads-list.php:107
3946
- msgid "Ad can't be imported, click for details"
 
3947
  msgstr ""
3948
 
3949
- #: modules/gadsense/admin/views/external-ads-list.php:119
3950
- msgid "Unrecognized ad code"
3951
  msgstr ""
3952
 
3953
- #: modules/gadsense/admin/views/external-ads-list.php:125
3954
- msgid "This ad type can currently not be imported from AdSense."
3955
  msgstr ""
3956
 
3957
- #: modules/gadsense/admin/views/external-ads-list.php:128
3958
- msgid "You can proceed with one of the following solutions"
3959
  msgstr ""
3960
 
3961
- #. 1: opening tag for AdSense account link 2: opening tag for a link to insert ad code 3: closing a tag
3962
- #: modules/gadsense/admin/views/external-ads-list.php:134
3963
- #, php-format
3964
- msgid ""
3965
- "%1$sCopy the code from your AdSense account%3$s and %2$sinsert a new AdSense "
3966
- "code here%3$s."
3967
  msgstr ""
3968
 
3969
- #. 1: opening tag for a link to create an ad manually 2: closing a tag
3970
- #: modules/gadsense/admin/views/external-ads-list.php:140
3971
- #, php-format
3972
- msgid ""
3973
- "%1$sCreate an AdSense code manually%2$s: Select the <em>Normal</em> or <em>"
3974
- "Responsive</em> type and the size."
3975
  msgstr ""
3976
 
3977
- #: modules/gadsense/admin/views/external-ads-list.php:147
3978
- msgid "Choose a different ad from your AdSense account above."
3979
  msgstr ""
3980
 
3981
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:53
3982
- msgid "The ad details couldn't be retrieved from the ad code"
3983
  msgstr ""
3984
 
3985
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:54
3986
- msgid ""
3987
- "Warning: The AdSense account from this code does not match the one set in "
3988
- "the Advanced Ads options."
3989
  msgstr ""
3990
 
3991
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:62
3992
- msgid ""
3993
- "Copy the ad code from your AdSense account, paste it into the area below and "
3994
- "click on <em>Get details</em>."
3995
  msgstr ""
3996
 
3997
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
3998
- msgid "Get details"
3999
  msgstr ""
4000
 
4001
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:65
4002
- msgid "cancel"
4003
  msgstr ""
4004
 
4005
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:67
4006
- msgid "connect to your AdSense account"
4007
  msgstr ""
4008
 
4009
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
4010
- msgid "Ad Slot ID"
4011
  msgstr ""
4012
 
4013
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:87
4014
- #, php-format
4015
- msgid "Publisher ID: %s"
4016
  msgstr ""
4017
 
4018
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:91
4019
- msgid ""
4020
- "The ad slot ID is either a number or empty and not the same as the publisher "
4021
- "ID."
4022
  msgstr ""
4023
 
4024
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:102
4025
- #, php-format
4026
- msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
 
 
4027
  msgstr ""
4028
 
4029
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:108
4030
- msgid "Normal"
4031
  msgstr ""
4032
 
4033
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:110
4034
- msgid "Responsive (Matched Content)"
 
 
 
4035
  msgstr ""
4036
 
4037
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:111
4038
- msgid "Link ads"
 
4039
  msgstr ""
4040
 
4041
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:112
4042
- msgid "Link ads (Responsive)"
 
4043
  msgstr ""
4044
 
4045
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:113
4046
- msgid "In-article"
 
4047
  msgstr ""
4048
 
4049
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:114
4050
- msgid "In-feed"
 
4051
  msgstr ""
4052
 
4053
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:119
4054
- msgid "Resizing"
 
4055
  msgstr ""
4056
 
4057
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:128
4058
- msgid "Layout"
4059
  msgstr ""
4060
 
4061
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:133
4062
- msgid "Layout-Key"
4063
  msgstr ""
4064
 
4065
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:138
4066
- msgid "Clearfix"
 
4067
  msgstr ""
4068
 
4069
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:141
4070
- msgid "Enable this box if responsive ads cover something on your site"
4071
  msgstr ""
4072
 
4073
- #. 1: The name of an ad network.
4074
- #: modules/gadsense/admin/views/external-ads-links.php:12
4075
- #, php-format
4076
- msgid "Insert new %1$s code"
4077
  msgstr ""
4078
 
4079
- #: modules/gadsense/admin/views/external-ads-links.php:18
4080
- msgid "Get ad code from your linked account"
4081
  msgstr ""
4082
 
4083
- #. 1: The name of an ad network.
4084
- #: modules/gadsense/admin/views/external-ads-links.php:24
4085
- #, php-format
4086
- msgid "Set up %1$s code manually"
4087
  msgstr ""
4088
 
4089
- #. 1: The name of an ad network.
4090
- #: modules/gadsense/admin/views/external-ads-links.php:31
4091
- #, php-format
4092
- msgid "Connect to %1$s"
4093
  msgstr ""
4094
 
4095
- #: modules/gadsense/admin/views/connect-adsense.php:35
4096
- msgid "Please enter the confirmation code."
4097
  msgstr ""
4098
 
4099
- #. 1: opening a tag to open Google Adsense modal 2: closing a tag
4100
- #: modules/gadsense/admin/views/connect-adsense.php:39
4101
- #, php-format
4102
- msgid "This is not the correct confirmation code. %1$sPlease try again%2$s."
4103
  msgstr ""
4104
 
4105
- #: modules/gadsense/admin/views/connect-adsense.php:45
4106
- msgid "Submit code"
4107
  msgstr ""
4108
 
4109
- #: modules/gadsense/admin/views/connect-adsense.php:53
4110
- msgid "Cannot access your account information."
4111
  msgstr ""
4112
 
4113
- #: modules/gadsense/admin/views/connect-adsense.php:59
4114
- msgid "Please select an account"
4115
  msgstr ""
4116
 
4117
- #: modules/gadsense/admin/views/connect-adsense.php:64
4118
- msgid "Use this account"
4119
  msgstr ""
4120
 
4121
- #: modules/gadsense/admin/views/auto-ads-video.php:4
4122
- msgid "How to enable Auto ads in 30 seconds (video tutorial)"
4123
  msgstr ""
4124
 
4125
  #: modules/privacy/admin/views/setting-consent-method.php:12
@@ -4131,117 +3830,108 @@ msgid "Show non-personalized AdSense ads until consent is given."
4131
  msgstr ""
4132
 
4133
  #: modules/privacy/admin/views/setting-enable.php:5
4134
- msgid ""
4135
- "Your users’ consent might get cached and show ads to users who didn’t give "
4136
- "their consent yet. "
4137
  msgstr ""
4138
 
4139
  #: modules/privacy/admin/views/setting-enable.php:6
4140
- #, php-format
4141
- msgid ""
4142
- "Cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
4143
- "solves that."
4144
  msgstr ""
4145
 
4146
- #: modules/privacy/admin/views/setting-ad-ignore-consent.php:2
4147
- msgid "privacy"
4148
  msgstr ""
4149
 
4150
- #: modules/privacy/admin/views/setting-ad-ignore-consent.php:6
4151
- #, php-format
4152
- msgid ""
4153
- "Ignore <a href=\"%s\">general Privacy settings</a> and display the ad even "
4154
- "without consent."
4155
  msgstr ""
4156
 
4157
- #: modules/ad-blocker/admin/views/rebuild_form.php:1
4158
- msgid "Ad blocker file folder"
4159
  msgstr ""
4160
 
4161
- #: modules/ad-blocker/admin/views/rebuild_form.php:10
4162
- msgid "Upload folder is not writable"
 
4163
  msgstr ""
4164
 
4165
- #: modules/ad-blocker/admin/views/rebuild_form.php:23
4166
- msgid "Asset path"
 
4167
  msgstr ""
4168
 
4169
- #: modules/ad-blocker/admin/views/rebuild_form.php:27
4170
- msgid "Asset URL"
4171
  msgstr ""
4172
 
4173
- #: modules/ad-blocker/admin/views/rebuild_form.php:31
4174
- msgid "Rename assets"
4175
  msgstr ""
4176
 
4177
- #: modules/ad-blocker/admin/views/rebuild_form.php:34
4178
- msgid "Check if you want to change the names of the assets"
4179
  msgstr ""
4180
 
4181
- #: modules/ad-blocker/admin/views/rebuild_form.php:43
4182
- #, php-format
4183
- msgid ""
4184
- "Please, rebuild the asset folder. All assets will be located in <strong>"
4185
- "%s</strong>"
4186
  msgstr ""
4187
 
4188
- #: modules/ad-blocker/admin/views/rebuild_form.php:46
4189
- msgid "Rebuild asset folder"
4190
  msgstr ""
4191
 
4192
- #: modules/ad-blocker/admin/views/setting-use-adblocker.php:4
4193
- msgid ""
4194
- "The ad block disguise can only be set by the super admin on the main site in "
4195
- "the network."
4196
  msgstr ""
4197
 
4198
- #: modules/ad-blocker/admin/views/setting-use-adblocker.php:6
4199
- msgid ""
4200
- "Prevents ad block software from breaking your website when blocking asset "
4201
- "files (.js, .css)."
4202
  msgstr ""
4203
 
4204
- #: modules/ad-blocker/admin/views/setting-use-adblocker.php:8
4205
- #, php-format
4206
- msgid ""
4207
- "Learn how to display alternative content to ad block users <a href=\"%s\" "
4208
- "target=\"_blank\">in the manual</a>."
4209
  msgstr ""
4210
 
4211
- #: modules/adblock-finder/admin/views/setting-ga.php:2
4212
- msgid ""
4213
- "Want to know how many of your visitors are using an ad blocker? Enter your "
4214
- "Google Analytics property ID above to count them."
4215
  msgstr ""
4216
 
4217
- #: modules/ads-txt/admin/views/setting-additional-content.php:2
4218
- msgid ""
4219
- "Additional records to add to the file, one record per line. AdSense is added "
4220
- "automatically."
4221
  msgstr ""
4222
 
4223
- #: modules/ads-txt/admin/views/setting-additional-content.php:5
4224
- msgid "Check for problems"
4225
  msgstr ""
4226
 
4227
- #: modules/ads-txt/admin/views/setting-create.php:19
4228
- msgid "Generate a single ads.txt file for all sites in the multisite network."
4229
  msgstr ""
4230
 
4231
- #: modules/ads-txt/admin/views/setting-create.php:27
4232
- msgid ""
4233
- "Usually, this should be enabled on the main site of the network - often the "
4234
- "one without a subdomain or subdirectory."
4235
  msgstr ""
4236
 
4237
- #. Description of the plugin
4238
- msgid "Manage and optimize your ads in WordPress"
4239
  msgstr ""
4240
 
4241
- #. URI of the plugin
4242
- msgid "https://wpadvancedads.com"
4243
  msgstr ""
4244
 
4245
- #. Author of the plugin
4246
- msgid "Thomas Maier, Advanced Ads GmbH"
 
 
 
 
 
 
 
 
 
 
 
 
 
4247
  msgstr ""
1
+ # Copyright (C) 2020 Thomas Maier, Advanced Ads GmbH
2
+ # This file is distributed under the same license as the Advanced Ads plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Advanced Ads 1.17.9-beta.1\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advanced-ads-git\n"
 
 
 
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: webgilde <support@wpadvancedads.com>\n"
 
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2020-04-06T06:35:24+00:00\n"
13
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.4.0\n"
15
+ "X-Domain: advanced-ads\n"
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
+ #. Plugin Name of the plugin
18
+ #: modules/gutenberg/includes/class-gutenberg.php:78
19
+ msgid "Advanced Ads"
20
  msgstr ""
21
 
22
+ #. Plugin URI of the plugin
23
+ #. Author URI of the plugin
24
+ msgid "https://wpadvancedads.com"
 
25
  msgstr ""
26
 
27
+ #. Description of the plugin
28
+ msgid "Manage and optimize your ads in WordPress"
29
  msgstr ""
30
 
31
+ #. Author of the plugin
32
+ msgid "Thomas Maier, Advanced Ads GmbH"
33
  msgstr ""
34
 
35
+ #: admin/class-advanced-ads-admin.php:215
36
+ #: classes/display-conditions.php:290
37
+ #: classes/visitor-conditions.php:311
38
+ #: modules/gadsense/admin/views/external-ads-links.php:17
39
+ #: modules/gadsense/admin/views/external-ads-links.php:22
40
+ #: modules/gadsense/admin/views/external-ads-links.php:29
41
+ msgid "or"
42
  msgstr ""
43
 
44
+ #: admin/class-advanced-ads-admin.php:216
45
+ #: classes/display-conditions.php:290
46
+ #: classes/visitor-conditions.php:311
47
+ msgid "and"
48
  msgstr ""
49
 
50
+ #: admin/class-advanced-ads-admin.php:217
51
+ msgid "After which paragraph?"
52
  msgstr ""
53
 
54
+ #: admin/class-advanced-ads-admin.php:219
55
+ msgid "Today"
56
  msgstr ""
57
 
58
+ #: admin/class-advanced-ads-admin.php:220
59
+ msgid "Yesterday"
60
  msgstr ""
61
 
62
+ #: admin/class-advanced-ads-admin.php:221
63
+ msgid "This Month"
64
  msgstr ""
65
 
66
+ #. translators: 1: The number of days.
67
+ #: admin/class-advanced-ads-admin.php:223
68
+ msgid "Last %1$d days"
 
69
  msgstr ""
70
 
71
+ #: admin/class-advanced-ads-admin.php:226
72
+ msgid "All"
 
 
 
73
  msgstr ""
74
 
75
+ #: admin/class-advanced-ads-admin.php:227
76
+ msgid "There were no results returned for this ad. Please make sure it is active, generating impressions and double check your ad parameters."
77
  msgstr ""
78
 
79
+ #: admin/class-advanced-ads-admin.php:228
80
+ #: modules/gadsense/admin/views/external-ads-list.php:33
81
+ msgid "Show inactive ads"
82
  msgstr ""
83
 
84
+ #: admin/class-advanced-ads-admin.php:229
85
+ msgid "Hide inactive ads"
86
  msgstr ""
87
 
88
+ #. translators: time zone name.
89
+ #: admin/class-advanced-ads-admin.php:343
90
+ msgid "time of %s"
91
  msgstr ""
92
 
93
+ #: admin/class-advanced-ads-admin.php:414
94
+ #: admin/includes/class-menu.php:155
95
+ #: admin/includes/class-menu.php:158
96
+ #: admin/views/settings.php:29
97
+ msgid "Support"
98
  msgstr ""
99
 
100
+ #: admin/class-advanced-ads-admin.php:418
101
+ #: admin/includes/class-overview-widgets.php:71
102
+ msgid "Add-Ons"
103
  msgstr ""
104
 
105
+ #. translators: %s is the URL to add a new review, https://wordpress.org/support/plugin/advanced-ads/reviews/#new-post
106
+ #. translators: %s is a URL.
107
+ #: admin/class-advanced-ads-admin.php:689
108
+ #: admin/includes/class-overview-widgets.php:194
109
+ msgid "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
110
  msgstr ""
111
 
112
+ #. translators: %1$s is a version number.
113
+ #: admin/includes/ad-health-notices.php:32
114
+ msgid "Your <strong>PHP version (%1$s) is too low</strong>. Advanced Ads is built for PHP %2$s and higher. It might work, but updating PHP is highly recommended. Please ask your hosting provider for more information."
115
  msgstr ""
116
 
117
+ #. translators: %1$s is a list of plugin names; %2$s a target URL.
118
+ #: admin/includes/ad-health-notices.php:43
119
+ msgid "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Learn more</a>."
120
  msgstr ""
121
 
122
+ #. translators: %s is a list of PHP extensions.
123
+ #. translators: %s is a name of a module.
124
+ #: admin/includes/ad-health-notices.php:54
125
+ #: admin/views/placements.php:168
126
+ msgid "Missing PHP extensions could cause issues. Please ask your hosting provider to enable them: %s"
127
  msgstr ""
128
 
129
+ #. translators: %s is a target URL.
130
+ #: admin/includes/ad-health-notices.php:64
131
+ msgid "Ads are disabled for all or some pages. See \"disabled ads\" in <a href=\"%s\">settings</a>."
132
  msgstr ""
133
 
134
+ #: admin/includes/ad-health-notices.php:72
135
+ #: admin/views/support.php:57
136
+ msgid "Advanced Ads related constants enabled"
137
  msgstr ""
138
 
139
+ #. translators: %s is a target URL.
140
+ #: admin/includes/ad-health-notices.php:80
141
+ msgid "Possible conflict between jQueryUI library, used by Advanced Ads and other libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to misfortunate formats in forms, but should not damage features."
142
  msgstr ""
143
 
144
+ #. translators: %s is a target URL.
145
+ #: admin/includes/ad-health-notices.php:90
146
+ msgid "Some assets were changed. Please <strong>rebuild the asset folder</strong> in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker disguise."
147
  msgstr ""
148
 
149
+ #: admin/includes/ad-health-notices.php:99
150
+ #: admin/includes/notices.php:38
151
+ msgid "One or more license keys for <strong>Advanced Ads add-ons are invalid or missing</strong>."
152
  msgstr ""
153
 
154
+ #. translators: %s is a target URL.
155
+ #. translators: %s is a URL.
156
+ #: admin/includes/ad-health-notices.php:102
157
+ #: admin/includes/notices.php:40
158
+ msgid "Please add valid license keys <a href=\"%s\">here</a>."
 
 
159
  msgstr ""
160
 
161
+ #: admin/includes/ad-health-notices.php:111
162
+ msgid "Ad expired"
 
 
 
163
  msgstr ""
164
 
165
+ #. translators: %s is empty here, but the string will be followed by a name of an ad unit.
166
+ #: admin/includes/ad-health-notices.php:121
167
+ #: classes/frontend_checks.php:247
168
+ msgid "Visible ads should not use the Header placement: %s"
169
  msgstr ""
170
 
171
+ #: admin/includes/ad-health-notices.php:135
172
+ #: classes/frontend_checks.php:261
173
+ msgid "AdSense violation"
174
  msgstr ""
175
 
176
+ #: admin/includes/ad-health-notices.php:136
177
+ #: classes/frontend_checks.php:262
178
+ msgid "Ad is hidden"
179
  msgstr ""
180
 
181
+ #: admin/includes/ad-health-notices.php:145
182
+ #: classes/ad-debug.php:272
183
+ #: classes/frontend_checks.php:234
184
+ msgid "Your website is using HTTPS, but the ad code contains HTTP and might not work."
185
  msgstr ""
186
 
187
+ #: admin/includes/ad-health-notices.php:158
188
+ #: admin/includes/ad-health-notices.php:165
189
+ #: modules/gadsense/includes/class-mapi.php:89
190
+ msgid "Last AdSense account connection attempt failed."
191
  msgstr ""
192
 
193
+ #. translators: %1$s is the opening a tag and %2$s the closing one.
194
+ #: admin/includes/ad-health-notices.php:167
195
+ msgid "Create a new AdSense account %1$shere%2$s."
196
  msgstr ""
197
 
198
+ #: admin/includes/ad-health-notices.php:177
199
+ #: admin/includes/ad-health-notices.php:187
200
+ #: admin/includes/ad-health-notices.php:197
201
+ msgid "One of your sites is missing the AdSense publisher ID in the ads.txt file."
202
  msgstr ""
203
 
204
+ #: admin/includes/ad-health-notices.php:179
205
+ #: admin/includes/ad-health-notices.php:189
206
+ #: admin/includes/ad-health-notices.php:199
207
+ msgctxt "related to ads.txt file"
208
+ msgid "Create one now."
209
  msgstr ""
210
 
211
+ #. translators: %s is a filter hook, here `the_content`.
212
+ #: admin/includes/ad-health-notices.php:207
213
+ msgid "<strong>%s</strong> filter found multiple times."
214
  msgstr ""
215
 
216
+ #: admin/includes/ad-health-notices.php:209
217
+ msgid "Advanced Ads uses the outermost of them."
218
  msgstr ""
219
 
220
+ #. translators: %1$s is a plugin name, %2$s is the opening a tag and %3$s the closing one.
221
+ #: admin/includes/ad-health-notices.php:218
222
+ #: admin/includes/ad-health-notices.php:229
223
+ #: admin/includes/ad-health-notices.php:240
224
+ #: admin/includes/ad-health-notices.php:253
225
+ msgid "Learn how to integrate %1$s with Advanced Ads %2$shere%3$s."
226
  msgstr ""
227
 
228
+ #. translators: %s is a service or plugin name.
229
+ #: admin/includes/ad-health-notices.php:267
230
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:196
231
+ msgid "%s detected."
232
  msgstr ""
233
 
234
+ #. translators: %s is a service or plugin name.
235
+ #: admin/includes/ad-health-notices.php:268
236
+ msgid "Learn how this might impact your ad setup."
237
  msgstr ""
238
 
239
+ #: admin/includes/ad-health-notices.php:279
240
+ msgid "Advanced Ads handles your ads.txt file automatically. You might be able to <strong>remove %1$s</strong>."
 
 
241
  msgstr ""
242
 
243
+ #: admin/includes/ad-health-notices.php:290
244
+ msgid "Advanced Ads handles header and footer codes."
 
245
  msgstr ""
246
 
247
+ #: admin/includes/ad-health-notices.php:291
248
+ msgid "You might be able to <strong>remove %1$s</strong>."
 
249
  msgstr ""
250
 
251
+ #: admin/includes/ad-health-notices.php:294
252
+ msgid "Learn how."
 
253
  msgstr ""
254
 
255
+ #: admin/includes/class-ad-groups-list.php:172
256
+ msgid "Ad weight"
 
257
  msgstr ""
258
 
259
+ #. translators: %s is a date.
260
+ #: admin/includes/class-ad-groups-list.php:184
261
+ #: admin/views/ad-list-timing-column.php:21
262
+ msgid "starts %s"
263
  msgstr ""
264
 
265
+ #. translators: %s is a date.
266
+ #. translators: %s is a time and date string.
267
+ #: admin/includes/class-ad-groups-list.php:205
268
+ #: admin/views/ad-list-timing-column.php:59
269
+ msgid "expires %s"
270
  msgstr ""
271
 
272
+ #. translators: %s is a date.
273
+ #. translators: %s is a time and date string.
274
+ #: admin/includes/class-ad-groups-list.php:208
275
+ #: admin/views/ad-list-timing-column.php:69
276
+ msgid "<strong>expired</strong> %s"
277
  msgstr ""
278
 
279
+ #. translators: %d is a number.
280
+ #: admin/includes/class-ad-groups-list.php:225
281
+ msgid "show %d more ads"
282
  msgstr ""
283
 
284
+ #: admin/includes/class-ad-groups-list.php:229
285
+ msgid "all published ads are displayed"
 
286
  msgstr ""
287
 
288
+ #. translators: %d is a number.
289
+ #: admin/includes/class-ad-groups-list.php:232
290
+ msgid "up to %d ads displayed"
291
  msgstr ""
292
 
293
+ #: admin/includes/class-ad-groups-list.php:235
294
+ msgid "No ads assigned"
 
295
  msgstr ""
296
 
297
+ #: admin/includes/class-ad-groups-list.php:237
298
+ msgid "Add some"
299
  msgstr ""
300
 
301
+ #: admin/includes/class-ad-groups-list.php:315
302
+ msgid "Random ads"
303
  msgstr ""
304
 
305
+ #: admin/includes/class-ad-groups-list.php:316
306
+ msgid "Display random ads based on ad weight"
307
  msgstr ""
308
 
309
+ #: admin/includes/class-ad-groups-list.php:319
310
+ msgid "Ordered ads"
311
  msgstr ""
312
 
313
+ #: admin/includes/class-ad-groups-list.php:320
314
+ msgid "Display ads with the highest ad weight first"
315
  msgstr ""
316
 
317
+ #: admin/includes/class-ad-groups-list.php:339
318
+ #: modules/import-export/classes/import.php:146
319
+ #: modules/import-export/classes/import.php:186
320
+ #: modules/import-export/classes/import.php:564
321
+ #: public/class-advanced-ads.php:724
322
+ msgid "Edit"
323
  msgstr ""
324
 
325
+ #: admin/includes/class-ad-groups-list.php:340
326
+ msgid "Usage"
 
 
 
327
  msgstr ""
328
 
329
+ #: admin/includes/class-ad-groups-list.php:349
330
+ msgid "Delete"
 
331
  msgstr ""
332
 
333
+ #: admin/includes/class-ad-groups-list.php:371
334
+ #: admin/includes/class-ad-groups-list.php:441
335
+ msgid "Invalid Ad Group"
336
  msgstr ""
337
 
338
+ #: admin/includes/class-ad-groups-list.php:376
339
+ #: admin/includes/class-ad-groups-list.php:446
340
+ msgid "You don’t have permission to change the ad groups"
341
  msgstr ""
342
 
343
+ #: admin/includes/class-ad-groups-list.php:410
344
+ msgid "No ad group created"
345
  msgstr ""
346
 
347
+ #: admin/includes/class-ad-type.php:261
348
+ #: admin/includes/class-ad-type.php:267
349
+ msgid "Ad Details"
350
  msgstr ""
351
 
352
+ #: admin/includes/class-ad-type.php:262
353
+ #: admin/includes/class-ad-type.php:268
354
+ msgid "Ad Planning"
355
  msgstr ""
356
 
357
+ #: admin/includes/class-ad-type.php:263
358
+ #: admin/includes/class-ad-type.php:269
359
+ msgid "Ad Shortcode"
360
  msgstr ""
361
 
362
+ #. translators: %s is the number of ads.
363
+ #: admin/includes/class-ad-type.php:431
364
+ msgid "%s ad updated."
365
+ msgid_plural "%s ads updated."
366
+ msgstr[0] ""
367
+ msgstr[1] ""
368
+
369
+ #. translators: %s is the number of ads.
370
+ #: admin/includes/class-ad-type.php:433
371
+ msgid "%s ad not updated, somebody is editing it."
372
+ msgid_plural "%s ads not updated, somebody is editing them."
373
+ msgstr[0] ""
374
+ msgstr[1] ""
375
+
376
+ #. translators: %s is the number of ads.
377
+ #: admin/includes/class-ad-type.php:435
378
+ msgid "%s ad permanently deleted."
379
+ msgid_plural "%s ads permanently deleted."
380
+ msgstr[0] ""
381
+ msgstr[1] ""
382
+
383
+ #. translators: %s is the number of ads.
384
+ #: admin/includes/class-ad-type.php:437
385
+ msgid "%s ad moved to the Trash."
386
+ msgid_plural "%s ads moved to the Trash."
387
+ msgstr[0] ""
388
+ msgstr[1] ""
389
+
390
+ #. translators: %s is the number of ads.
391
+ #: admin/includes/class-ad-type.php:439
392
+ msgid "%s ad restored from the Trash."
393
+ msgid_plural "%s ads restored from the Trash."
394
+ msgstr[0] ""
395
+ msgstr[1] ""
396
+
397
+ #: admin/includes/class-ad-type.php:794
398
+ #: admin/includes/class-ad-type.php:795
399
+ msgid "Ad updated."
400
  msgstr ""
401
 
402
+ #. translators: %s: date and time of the revision
403
+ #: admin/includes/class-ad-type.php:796
404
+ msgid "Ad restored to revision from %s"
405
  msgstr ""
406
 
407
+ #: admin/includes/class-ad-type.php:797
408
+ #: admin/includes/class-ad-type.php:798
409
+ msgid "Ad saved."
410
  msgstr ""
411
 
412
+ #: admin/includes/class-ad-type.php:799
413
+ msgid "Ad submitted."
414
  msgstr ""
415
 
416
+ #. translators: %1$s is a date.
417
+ #: admin/includes/class-ad-type.php:802
418
+ msgid "Ad scheduled for: <strong>%1$s</strong>."
419
  msgstr ""
420
 
421
+ #. translators: Publish box date format, see http://php.net/date.
422
+ #: admin/includes/class-ad-type.php:804
423
+ msgid "M j, Y @ G:i"
424
  msgstr ""
425
 
426
+ #: admin/includes/class-ad-type.php:806
427
+ msgid "Ad draft updated."
428
  msgstr ""
429
 
430
+ #: admin/includes/class-ad-type.php:862
431
+ msgid "You don’t have access to ads. Please deactivate and re-enable Advanced Ads again to fix this."
 
 
432
  msgstr ""
433
 
434
+ #: admin/includes/class-ad-type.php:863
435
+ #: classes/frontend_checks.php:434
436
+ msgid "Get help"
437
  msgstr ""
438
 
439
+ #: admin/includes/class-licenses.php:90
440
+ msgid "There might be a new version of %1$s. Please <strong>provide a valid license key</strong> in order to receive updates and support <a href=\"%2$s\">on this page</a>."
 
441
  msgstr ""
442
 
443
+ #: admin/includes/class-licenses.php:110
444
+ msgid "Error while trying to register the license. Please contact support."
445
  msgstr ""
446
 
447
+ #: admin/includes/class-licenses.php:115
448
+ #: admin/views/setting-license.php:85
449
+ msgid "Please enter a valid license key"
450
  msgstr ""
451
 
452
+ #: admin/includes/class-licenses.php:172
453
+ msgid "License couldn’t be activated. Please try again later."
454
  msgstr ""
455
 
456
+ #: admin/includes/class-licenses.php:189
457
+ msgid "This is the bundle license key."
 
 
458
  msgstr ""
459
 
460
+ #: admin/includes/class-licenses.php:190
461
+ msgid "This is not the correct key for this add-on."
 
 
462
  msgstr ""
463
 
464
+ #: admin/includes/class-licenses.php:191
465
+ msgid "There are no activations left."
466
  msgstr ""
467
 
468
+ #. translators: %1$s is a starting link tag, %2$s is the closing one.
469
+ #: admin/includes/class-licenses.php:194
470
+ msgid "You can manage activations in %1$syour account%2$s."
471
  msgstr ""
472
 
473
+ #. translators: %s is a string containing information about the issue.
474
+ #: admin/includes/class-licenses.php:208
475
+ msgid "License is invalid. Reason: %s"
 
476
  msgstr ""
477
 
478
+ #. translators: %s is a list of server information like IP address. Just keep it as is.
479
+ #: admin/includes/class-licenses.php:248
480
+ msgid "Your request was blocked by our firewall. Please send us the following information to unblock you: %s."
481
  msgstr ""
482
 
483
+ #: admin/includes/class-licenses.php:312
484
+ msgid "Error while trying to disable the license. Please contact support."
485
  msgstr ""
486
 
487
+ #: admin/includes/class-licenses.php:347
488
+ #: admin/includes/class-licenses.php:370
489
+ msgid "License couldn’t be deactivated. Please try again later."
490
  msgstr ""
491
 
492
+ #: admin/includes/class-licenses.php:596
493
+ msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
494
  msgstr ""
495
 
496
+ #: admin/includes/class-licenses.php:598
497
+ msgid "Download failed. <a href=\"%s\" target=\"_blank\">Click here to learn why</a>."
498
  msgstr ""
499
 
500
+ #: admin/includes/class-list-filters.php:142
501
+ #: modules/gadsense/admin/admin.php:25
502
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:109
503
+ msgid "Responsive"
504
  msgstr ""
505
 
506
+ #: admin/includes/class-list-filters.php:151
507
+ msgid "expired"
508
  msgstr ""
509
 
510
+ #: admin/includes/class-list-filters.php:155
511
+ msgid "any expiry date"
512
  msgstr ""
513
 
514
+ #: admin/includes/class-menu.php:65
515
+ #: admin/includes/class-menu.php:88
516
+ #: admin/includes/class-menu.php:99
517
+ #: admin/includes/class-menu.php:100
518
+ msgid "Overview"
519
  msgstr ""
520
 
521
+ #: admin/includes/class-menu.php:79
522
+ #: admin/includes/class-menu.php:80
523
+ #: admin/includes/class-shortcode-creator.php:101
524
+ #: admin/views/ad-group-list-form-row.php:91
525
+ #: admin/views/ad-group-list-header.php:16
526
+ #: admin/views/placement-form.php:78
527
+ #: admin/views/placements-item.php:24
528
+ #: classes/widget.php:129
529
+ #: modules/gutenberg/includes/class-gutenberg.php:79
530
+ #: modules/import-export/views/page.php:23
531
+ #: public/class-advanced-ads.php:720
532
+ msgid "Ads"
533
  msgstr ""
534
 
535
+ #: admin/includes/class-menu.php:111
536
+ #: public/class-advanced-ads.php:723
537
+ msgid "Add New Ad"
 
538
  msgstr ""
539
 
540
+ #: admin/includes/class-menu.php:112
541
+ #: admin/views/ad-group-list-ads.php:36
542
+ #: public/class-advanced-ads.php:722
543
+ #: public/class-advanced-ads.php:726
544
+ msgid "New Ad"
545
  msgstr ""
546
 
547
+ #: admin/includes/class-menu.php:120
548
+ msgid "Ad Groups & Rotations"
549
  msgstr ""
550
 
551
+ #: admin/includes/class-menu.php:121
552
+ msgid "Groups & Rotation"
553
  msgstr ""
554
 
555
+ #: admin/includes/class-menu.php:130
556
+ msgid "Ad Placements"
557
  msgstr ""
558
 
559
+ #: admin/includes/class-menu.php:131
560
+ #: admin/includes/class-shortcode-creator.php:115
561
+ #: admin/views/placements.php:53
562
+ #: classes/widget.php:115
563
+ #: modules/gutenberg/includes/class-gutenberg.php:81
564
+ #: modules/import-export/views/page.php:25
565
+ msgid "Placements"
566
  msgstr ""
567
 
568
+ #: admin/includes/class-menu.php:139
569
+ msgid "Advanced Ads Settings"
 
 
 
570
  msgstr ""
571
 
572
+ #: admin/includes/class-menu.php:140
573
+ msgid "Settings"
574
  msgstr ""
575
 
576
+ #: admin/includes/class-menu.php:175
577
+ #: admin/includes/class-menu.php:179
578
+ #: admin/includes/class-settings.php:272
579
+ msgid "Licenses"
580
  msgstr ""
581
 
582
+ #: admin/includes/class-menu.php:281
583
+ #: admin/includes/class-menu.php:306
584
+ msgid "Sorry, you are not allowed to access this feature."
585
  msgstr ""
586
 
587
+ #: admin/includes/class-menu.php:293
588
+ msgid "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was deleted?"
589
  msgstr ""
590
 
591
+ #: admin/includes/class-meta-box.php:60
592
+ msgid "Ad Type"
593
  msgstr ""
594
 
595
+ #: admin/includes/class-meta-box.php:74
596
+ #: admin/includes/class-overview-widgets.php:64
597
+ msgid "AdSense Earnings"
598
  msgstr ""
599
 
600
+ #: admin/includes/class-meta-box.php:88
601
+ msgid "Ad Parameters"
602
  msgstr ""
603
 
604
+ #: admin/includes/class-meta-box.php:96
605
+ #: admin/includes/class-settings.php:69
606
+ msgid "Layout / Output"
607
  msgstr ""
608
 
609
+ #: admin/includes/class-meta-box.php:104
610
+ #: classes/ad-debug.php:152
611
+ msgid "Display Conditions"
612
  msgstr ""
613
 
614
+ #: admin/includes/class-meta-box.php:112
615
+ #: classes/ad-debug.php:239
616
+ msgid "Visitor Conditions"
617
  msgstr ""
618
 
619
+ #: admin/includes/class-meta-box.php:121
620
+ msgid "Increase your ad revenue"
621
  msgstr ""
622
 
623
+ #: admin/includes/class-meta-box.php:131
624
+ msgid "Ad Stats"
625
  msgstr ""
626
 
627
+ #: admin/includes/class-meta-box.php:199
628
+ #: admin/includes/class-meta-box.php:218
629
+ #: admin/includes/class-meta-box.php:223
630
+ #: admin/includes/class-overview-widgets.php:182
631
+ #: admin/views/ad-output-metabox.php:62
632
+ #: admin/views/settings/general/custom-label.php:9
633
+ #: modules/ads-txt/admin/views/setting-create.php:11
634
+ #: modules/privacy/admin/views/setting-enable.php:2
635
+ msgid "Manual"
636
  msgstr ""
637
 
638
+ #: admin/includes/class-meta-box.php:217
639
+ msgid "Video"
 
640
  msgstr ""
641
 
642
+ #: admin/includes/class-meta-box.php:254
643
+ #: admin/includes/class-overview-widgets.php:60
644
+ msgid "Disable"
645
  msgstr ""
646
 
647
+ #: admin/includes/class-meta-box.php:401
648
+ msgid "Ad Settings"
 
 
649
  msgstr ""
650
 
651
+ #: admin/includes/class-meta-box.php:500
652
+ #: admin/views/overview.php:8
653
+ msgid "Ads Dashboard"
654
  msgstr ""
655
 
656
+ #. translators: %1$d is the number of ads, %2$s and %3$s are URLs.
657
+ #: admin/includes/class-meta-box.php:516
658
+ msgid "%1$d ads – <a href=\"%2$s\">manage</a> - <a href=\"%3$s\">new</a>"
659
  msgstr ""
660
 
661
+ #: admin/includes/class-meta-box.php:529
662
+ msgid "Get the tutorial via email"
663
  msgstr ""
664
 
665
+ #: admin/includes/class-meta-box.php:538
666
+ msgid "Get AdSense tips via email"
 
 
667
  msgstr ""
668
 
669
+ #: admin/includes/class-meta-box.php:547
670
+ msgid "Visit our blog for more articles about ad optimization"
671
  msgstr ""
672
 
673
+ #. translators: %s is our URL.
674
+ #: admin/includes/class-meta-box.php:601
675
+ msgid "Latest posts on wpadvancedads.com"
676
  msgstr ""
677
 
678
+ #. translators: %s is a URL.
679
+ #: admin/includes/class-notices.php:427
680
+ msgid "You don’t seem to have an email address. Please use <a href=\"%s\" target=\"_blank\">this form</a> to sign up."
681
  msgstr ""
682
 
683
+ #: admin/includes/class-notices.php:448
684
+ msgid "How embarrassing. The email server seems to be down. Please try again later."
685
  msgstr ""
686
 
687
+ #. translators: the first %s is an email address, the seconds %s is a URL.
688
+ #: admin/includes/class-notices.php:455
689
+ msgid "Please check your email (%1$s) for the confirmation message. If you didn’t receive one or want to use another email address then please use <a href=\"%2$s\" target=\"_blank\">this form</a> to sign up."
690
  msgstr ""
691
 
692
+ #: admin/includes/class-overview-widgets.php:48
693
+ msgid "Next steps"
694
  msgstr ""
695
 
696
+ #: admin/includes/class-overview-widgets.php:54
697
+ msgid "Manual and Support"
 
698
  msgstr ""
699
 
700
+ #: admin/includes/class-overview-widgets.php:118
701
+ #: admin/views/notices/welcome-panel.php:15
702
+ msgid "Create your first ad"
703
  msgstr ""
704
 
705
+ #: admin/includes/class-overview-widgets.php:121
706
+ #: modules/gadsense/admin/views/adsense-account.php:71
707
+ #: modules/gadsense/admin/views/adsense-account.php:93
708
+ msgid "Connect to AdSense"
709
  msgstr ""
710
 
711
+ #: admin/includes/class-overview-widgets.php:132
712
+ msgid "Join the newsletter for more benefits"
713
  msgstr ""
714
 
715
+ #: admin/includes/class-overview-widgets.php:134
716
+ msgid "Get 2 free add-ons"
717
  msgstr ""
718
 
719
+ #: admin/includes/class-overview-widgets.php:135
720
+ msgid "Get the first steps and more tutorials to your inbox"
721
  msgstr ""
722
 
723
+ #: admin/includes/class-overview-widgets.php:136
724
+ msgid "How to earn more with AdSense"
 
725
  msgstr ""
726
 
727
+ #: admin/includes/class-overview-widgets.php:141
728
+ msgid "Join now"
729
  msgstr ""
730
 
731
+ #: admin/includes/class-overview-widgets.php:153
732
+ msgid "Do you find Advanced Ads useful and would like to keep us motivated? Please help us with a review."
733
  msgstr ""
734
 
735
+ #: admin/includes/class-overview-widgets.php:155
736
+ msgid "Sure, I’ll rate the plugin"
737
  msgstr ""
738
 
739
+ #: admin/includes/class-overview-widgets.php:157
740
+ msgid "I already did"
741
  msgstr ""
742
 
743
+ #: admin/includes/class-overview-widgets.php:164
744
+ msgid "Manage your ads"
745
  msgstr ""
746
 
747
+ #: admin/includes/class-overview-widgets.php:170
748
+ msgid "Get the All Access pass"
749
  msgstr ""
750
 
751
+ #: admin/includes/class-overview-widgets.php:186
752
+ msgid "FAQ and Support"
753
  msgstr ""
754
 
755
+ #. translators: %s is the number of hidden notices.
756
+ #. translators: %s includes a number and markup like <span class="count">6</span>.
757
+ #: admin/includes/class-overview-widgets.php:218
758
+ #: admin/views/overview-notices.php:33
759
+ msgid "Show %s hidden notices"
760
  msgstr ""
761
 
762
+ #: admin/includes/class-overview-widgets.php:455
763
+ msgid "How to install and activate an add-on."
764
  msgstr ""
765
 
766
+ #: admin/includes/class-overview-widgets.php:462
767
+ msgid "The solution for professional websites."
768
  msgstr ""
769
 
770
+ #: admin/includes/class-overview-widgets.php:471
771
+ #: admin/views/pitches/pro-tab.php:7
772
+ msgid "support for cached sites"
773
  msgstr ""
774
 
775
+ #. translators: %s is the name of another plugin.
776
+ #: admin/includes/class-overview-widgets.php:487
777
+ #: admin/includes/class-overview-widgets.php:499
778
+ #: admin/includes/class-overview-widgets.php:511
779
+ #: admin/includes/class-overview-widgets.php:523
780
+ msgid "integrates with <strong>%s</strong>"
781
  msgstr ""
782
 
783
+ #: admin/includes/class-overview-widgets.php:528
784
+ msgid "click fraud protection, lazy load, ad-block ads"
785
  msgstr ""
786
 
787
+ #: admin/includes/class-overview-widgets.php:529
788
+ #: admin/views/pitches/pro-tab.php:8
789
+ msgid "11 more display and visitor conditions"
790
  msgstr ""
791
 
792
+ #: admin/includes/class-overview-widgets.php:530
793
+ #: admin/views/pitches/pro-tab.php:9
794
+ msgid "6 more placements"
795
  msgstr ""
796
 
797
+ #: admin/includes/class-overview-widgets.php:531
798
+ #: admin/views/pitches/pro-tab.php:10
799
+ msgid "placement tests for ad optimization"
800
  msgstr ""
801
 
802
+ #: admin/includes/class-overview-widgets.php:532
803
+ #: admin/views/pitches/pro-tab.php:11
804
+ msgid "ad grids and many more advanced features"
805
  msgstr ""
806
 
807
+ #: admin/includes/class-overview-widgets.php:540
808
+ msgid "Analyze clicks and impressions of your ads locally or in Google Analytics, share reports, and limit ads to a specific number of impressions or clicks."
809
  msgstr ""
810
 
811
+ #: admin/includes/class-overview-widgets.php:546
812
+ msgid "Display ads based on the device or the size of your visitor’s browser, and control ads on AMP pages."
813
  msgstr ""
814
 
815
+ #: admin/includes/class-overview-widgets.php:559
816
+ msgid "Earn more money and let advertisers pay for ad space directly on the frontend of your site."
817
  msgstr ""
818
 
819
+ #: admin/includes/class-overview-widgets.php:565
820
+ msgid "Target visitors with ads that match their geo location and make more money with regional campaigns."
821
  msgstr ""
822
 
823
+ #: admin/includes/class-overview-widgets.php:571
824
+ msgid "Increase click rates on your ads by placing them in sticky positions above, next or below your site."
825
  msgstr ""
826
 
827
+ #: admin/includes/class-overview-widgets.php:577
828
+ msgid "Users will never miss an ad or other information in a PopUp. Choose when it shows up and for how long a user can close it."
829
  msgstr ""
830
 
831
+ #: admin/includes/class-overview-widgets.php:583
832
+ msgid "Create a beautiful and simple slider from your ads to show more information on less space."
833
  msgstr ""
834
 
835
+ #: admin/includes/class-overview-widgets.php:589
836
+ msgid "Place AdSense In-feed ads between posts on homepage, category, and archive pages."
837
  msgstr ""
838
 
839
+ #: admin/includes/class-overview-widgets.php:592
840
+ #: admin/includes/class-overview-widgets.php:764
841
+ #: admin/includes/class-overview-widgets.php:780
842
+ msgid "Install now"
843
  msgstr ""
844
 
845
+ #: admin/includes/class-overview-widgets.php:610
846
+ #: admin/includes/class-overview-widgets.php:628
847
+ #: admin/includes/class-overview-widgets.php:653
848
+ #: admin/includes/class-overview-widgets.php:671
849
+ #: admin/includes/class-overview-widgets.php:689
850
+ #: admin/includes/class-overview-widgets.php:707
851
+ #: admin/includes/class-overview-widgets.php:725
852
+ #: admin/includes/class-overview-widgets.php:743
853
+ msgid "Activate now"
854
  msgstr ""
855
 
856
+ #: admin/includes/class-overview-widgets.php:636
857
+ msgid "Visit your ad stats"
858
  msgstr ""
859
 
860
+ #: admin/includes/class-overview-widgets.php:760
861
+ msgid "Use Genesis specific ad positions."
862
  msgstr ""
863
 
864
+ #: admin/includes/class-overview-widgets.php:776
865
+ msgid "Manage ad positions with WPBakery Page Builder (formerly Visual Composer)."
866
  msgstr ""
867
 
868
+ #: admin/includes/class-overview-widgets.php:792
869
+ msgid "Our best deal with all add-ons included."
870
  msgstr ""
871
 
872
+ #: admin/includes/class-overview-widgets.php:794
873
+ msgid "Get full access"
 
874
  msgstr ""
875
 
876
+ #: admin/includes/class-overview-widgets.php:810
877
+ #: admin/views/conditions/ad-display-metabox.php:37
878
+ #: admin/views/conditions/ad-visitor-metabox.php:37
879
+ msgid "Visit the manual"
880
  msgstr ""
881
 
882
+ #: admin/includes/class-overview-widgets.php:813
883
+ msgid "Get this add-on"
884
  msgstr ""
885
 
886
+ #: admin/includes/class-settings.php:53
887
+ msgid "Admin"
888
  msgstr ""
889
 
890
+ #: admin/includes/class-settings.php:61
891
+ #: admin/includes/class-settings.php:131
892
+ msgid "Disable ads"
893
  msgstr ""
894
 
895
+ #: admin/includes/class-settings.php:77
896
+ msgid "Content injection"
897
  msgstr ""
898
 
899
+ #: admin/includes/class-settings.php:139
900
+ msgid "Hide ads for user roles"
901
  msgstr ""
902
 
903
+ #: admin/includes/class-settings.php:147
904
+ msgid "Unlimited ad injection"
 
905
  msgstr ""
906
 
907
+ #: admin/includes/class-settings.php:155
908
+ msgid "Priority of content injection filter"
 
 
 
909
  msgstr ""
910
 
911
+ #: admin/includes/class-settings.php:163
912
+ #: classes/ad_placements.php:869
913
+ msgid "Disable level limitation"
 
914
  msgstr ""
915
 
916
+ #: admin/includes/class-settings.php:171
917
+ msgid "Hide ads from bots"
 
 
 
 
 
 
918
  msgstr ""
919
 
920
+ #: admin/includes/class-settings.php:180
921
+ msgid "Disable ads for post types"
922
  msgstr ""
923
 
924
+ #: admin/includes/class-settings.php:189
925
+ msgid "Disable Ad Health and other notices"
926
  msgstr ""
927
 
928
+ #: admin/includes/class-settings.php:197
929
+ msgid "ID prefix"
930
  msgstr ""
931
 
932
+ #: admin/includes/class-settings.php:205
933
+ msgid "Allow editors to manage ads"
934
  msgstr ""
935
 
936
+ #: admin/includes/class-settings.php:213
937
+ msgid "Ad label"
 
 
938
  msgstr ""
939
 
940
+ #: admin/includes/class-settings.php:222
941
+ msgid "Open links in a new window"
942
  msgstr ""
943
 
944
+ #: admin/includes/class-settings.php:230
945
+ msgid "Use advanced JavaScript"
946
  msgstr ""
947
 
948
+ #: admin/includes/class-settings.php:240
949
+ msgid "Delete data on uninstall"
950
  msgstr ""
951
 
952
+ #: admin/includes/class-settings.php:250
953
+ msgid "Disable shortcode button"
954
  msgstr ""
955
 
956
+ #: admin/includes/class-settings.php:291
957
+ msgid "Pro"
958
  msgstr ""
959
 
960
+ #: admin/includes/class-settings.php:309
961
+ #: admin/views/pitches/tracking.php:2
962
+ msgid "Tracking"
963
  msgstr ""
964
 
965
+ #: admin/includes/class-settings.php:355
966
+ msgid "Are you missing something?"
967
  msgstr ""
968
 
969
+ #: admin/includes/class-settings.php:531
970
+ msgctxt "label before ads"
971
+ msgid "Advertisements"
 
972
  msgstr ""
973
 
974
+ #: admin/includes/class-shortcode-creator.php:99
975
+ #: classes/widget.php:113
976
+ #: modules/gutenberg/includes/class-gutenberg.php:77
977
+ msgid "--empty--"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
978
  msgstr ""
979
 
980
+ #: admin/includes/class-shortcode-creator.php:108
981
+ #: admin/views/placement-form.php:71
982
+ #: admin/views/placements-item.php:12
983
+ #: classes/widget.php:122
984
+ #: modules/gutenberg/includes/class-gutenberg.php:80
985
+ msgid "Ad Groups"
986
  msgstr ""
987
 
988
+ #. translators: %s is a URL.
989
+ #: admin/includes/class-shortcode-creator.php:192
990
+ msgid "Please, either switch off your ad blocker or disable the shortcode button in the <a href=\"%s\" target=\"_blank\">settings</a>."
991
  msgstr ""
992
 
993
+ #: admin/includes/notices.php:17
994
+ msgid "Thank you for activating <strong>Advanced Ads</strong>. Would you like to receive the first steps via email?"
 
995
  msgstr ""
996
 
997
+ #: admin/includes/notices.php:18
998
+ msgid "Yes, send it"
 
999
  msgstr ""
1000
 
1001
+ #: admin/includes/notices.php:24
1002
+ msgid "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive <strong>2 free add-ons</strong> for joining the newsletter."
1003
  msgstr ""
1004
 
1005
+ #: admin/includes/notices.php:25
1006
+ msgid "Add me now"
1007
  msgstr ""
1008
 
1009
+ #: admin/includes/notices.php:31
1010
+ msgid "Learn more about how and <strong>how much you can earn with AdSense</strong> and Advanced Ads from my dedicated newsletter."
1011
  msgstr ""
1012
 
1013
+ #: admin/includes/notices.php:32
1014
+ #: admin/views/notices/inline.php:3
1015
+ #: admin/views/notices/subscribe.php:3
1016
+ msgid "Subscribe me now"
1017
  msgstr ""
1018
 
1019
+ #: admin/includes/notices.php:48
1020
+ msgid " ads created using <strong>Advanced Ads</strong>."
1021
  msgstr ""
1022
 
1023
+ #: admin/includes/notices.php:49
1024
+ msgid "Do you find the plugin useful and would like to thank us for updates, fixing bugs and improving your ad setup?"
1025
  msgstr ""
1026
 
1027
+ #. translators: this belongs to our message asking the user for a review. You can find a nice equivalent in your own language.
1028
+ #: admin/includes/notices.php:52
1029
+ msgid "When you give 5-stars, an actual person does a little happy dance!"
1030
  msgstr ""
1031
 
1032
+ #: admin/includes/notices.php:54
1033
+ msgid "Sure, I appreciate your work"
1034
  msgstr ""
1035
 
1036
+ #: admin/includes/notices.php:55
1037
+ msgid "Yes, but help me first to solve a problem, please"
1038
  msgstr ""
1039
 
1040
+ #. translators: %s is a link. `30%%` is correct, please use exactly that value so that it shows "30%".
1041
+ #: admin/includes/notices.php:64
1042
+ msgid "Our Black Friday / Cyber Monday Offer: <span style=\"font-weight: bold; font-size: 1.4em; color: green;\">-30%%</span> on all add-ons and All Access.<a class=\"button button-primary\" target=\"_blank\" href=\"%s\">Get All Access</a>"
1043
  msgstr ""
1044
 
1045
+ #: admin/includes/shortcode-creator-l10n.php:17
1046
+ msgctxt "shortcode creator"
1047
+ msgid "Add an ad"
1048
  msgstr ""
1049
 
1050
+ #: admin/includes/shortcode-creator-l10n.php:18
1051
+ msgctxt "shortcode creator"
1052
+ msgid "Add shortcode"
1053
  msgstr ""
1054
 
1055
+ #: admin/includes/shortcode-creator-l10n.php:19
1056
+ msgctxt "shortcode creator"
1057
+ msgid "Cancel"
 
 
 
1058
  msgstr ""
1059
 
1060
+ #: admin/views/ad-conditions-string-operators.php:15
1061
+ #: modules/privacy/admin/views/setting-consent-method.php:10
1062
+ msgid "contains"
1063
  msgstr ""
1064
 
1065
+ #: admin/views/ad-conditions-string-operators.php:16
1066
+ msgid "starts with"
1067
  msgstr ""
1068
 
1069
+ #: admin/views/ad-conditions-string-operators.php:17
1070
+ msgid "ends with"
1071
  msgstr ""
1072
 
1073
+ #: admin/views/ad-conditions-string-operators.php:18
1074
+ msgid "matches"
1075
  msgstr ""
1076
 
1077
+ #: admin/views/ad-conditions-string-operators.php:19
1078
+ msgid "matches regex"
1079
  msgstr ""
1080
 
1081
+ #: admin/views/ad-conditions-string-operators.php:20
1082
+ msgid "does not contain"
1083
  msgstr ""
1084
 
1085
+ #: admin/views/ad-conditions-string-operators.php:21
1086
+ msgid "does not start with"
1087
  msgstr ""
1088
 
1089
+ #: admin/views/ad-conditions-string-operators.php:22
1090
+ msgid "does not end with"
 
1091
  msgstr ""
1092
 
1093
+ #: admin/views/ad-conditions-string-operators.php:23
1094
+ msgid "does not match"
 
 
 
 
1095
  msgstr ""
1096
 
1097
+ #: admin/views/ad-conditions-string-operators.php:24
1098
+ msgid "does not match regex"
 
 
 
1099
  msgstr ""
1100
 
1101
+ #: admin/views/ad-group-edit.php:20
1102
+ msgid "You did not select an item for editing."
 
 
 
1103
  msgstr ""
1104
 
1105
+ #: admin/views/ad-group-edit.php:41
1106
+ msgctxt "Taxonomy Name"
1107
+ msgid "Name"
 
 
1108
  msgstr ""
1109
 
1110
+ #: admin/views/ad-group-edit.php:51
1111
+ msgctxt "Taxonomy Slug"
1112
+ msgid "Slug"
1113
  msgstr ""
1114
 
1115
+ #: admin/views/ad-group-edit.php:58
1116
+ #: admin/views/ad-output-metabox.php:49
1117
+ msgid "An id-like string with only letters in lower case, numbers, and hyphens."
 
 
 
1118
  msgstr ""
1119
 
1120
+ #: admin/views/ad-group-edit.php:65
1121
+ msgctxt "Taxonomy Description"
1122
+ msgid "Description"
 
 
 
1123
  msgstr ""
1124
 
1125
+ #: admin/views/ad-group-edit.php:77
1126
+ msgid "Create new Ad Group"
 
 
1127
  msgstr ""
1128
 
1129
+ #: admin/views/ad-group-edit.php:79
1130
+ msgid "Update"
 
1131
  msgstr ""
1132
 
1133
+ #: admin/views/ad-group-list-ads.php:20
1134
+ #: classes/ad-debug.php:118
1135
+ #: classes/ad-debug.php:167
1136
+ #: classes/ad-debug.php:169
1137
+ #: public/class-advanced-ads.php:721
1138
+ msgid "Ad"
1139
  msgstr ""
1140
 
1141
+ #: admin/views/ad-group-list-ads.php:22
1142
+ msgid "weight"
 
 
1143
  msgstr ""
1144
 
1145
+ #: admin/views/ad-group-list-ads.php:45
1146
+ #: admin/views/conditions/conditions-form.php:37
1147
+ msgid "add"
 
1148
  msgstr ""
1149
 
1150
+ #: admin/views/ad-group-list-form-row.php:31
1151
+ #: admin/views/placements.php:59
1152
+ #: modules/gadsense/admin/views/external-ads-list.php:45
1153
+ #: modules/gadsense/admin/views/external-ads-list.php:55
1154
+ #: modules/privacy/admin/views/setting-consent-method.php:9
1155
+ msgid "Name"
1156
  msgstr ""
1157
 
1158
+ #: admin/views/ad-group-list-form-row.php:56
1159
+ #: admin/views/placements.php:58
1160
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:105
1161
+ msgid "Type"
 
1162
  msgstr ""
1163
 
1164
+ #: admin/views/ad-group-list-form-row.php:72
1165
+ msgctxt "option to display all ads in an ad groups"
1166
+ msgid "all"
 
1167
  msgstr ""
1168
 
1169
+ #: admin/views/ad-group-list-form-row.php:79
1170
+ msgid "Visible ads"
1171
  msgstr ""
1172
 
1173
+ #: admin/views/ad-group-list-form-row.php:81
1174
+ msgid "Number of ads that are visible at the same time"
 
 
 
 
 
1175
  msgstr ""
1176
 
1177
+ #: admin/views/ad-group-list-header.php:14
1178
+ #: classes/ad_type_group.php:30
1179
+ msgid "Ad Group"
 
 
1180
  msgstr ""
1181
 
1182
+ #: admin/views/ad-group-list-header.php:15
1183
+ msgid "Details"
1184
  msgstr ""
1185
 
1186
+ #: admin/views/ad-group-list-row.php:22
1187
+ #: admin/views/ad-info.php:7
1188
+ #: admin/views/placements.php:126
1189
+ msgid "shortcode"
 
1190
  msgstr ""
1191
 
1192
+ #: admin/views/ad-group-list-row.php:25
1193
+ msgid "template"
1194
  msgstr ""
1195
 
1196
+ #. translators: %s is the name of a group type
1197
+ #: admin/views/ad-group-list-row.php:37
1198
+ msgid "Type: %s"
1199
  msgstr ""
1200
 
1201
+ #. translators: %s is the ID of an ad group
1202
+ #: admin/views/ad-group-list-row.php:45
1203
+ msgid "ID: %s"
1204
  msgstr ""
1205
 
1206
+ #: admin/views/ad-group.php:24
1207
+ msgid "Ad Group successfully created"
1208
  msgstr ""
1209
 
1210
+ #: admin/views/ad-group.php:37
1211
+ msgid "Ad Groups successfully updated"
1212
  msgstr ""
1213
 
1214
+ #: admin/views/ad-group.php:64
1215
+ msgid "Search results for &#8220;%s&#8221;"
1216
  msgstr ""
1217
 
1218
+ #: admin/views/ad-group.php:72
1219
+ msgid "Group title"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1220
  msgstr ""
1221
 
1222
+ #: admin/views/ad-group.php:73
1223
+ msgid "save"
 
 
1224
  msgstr ""
1225
 
1226
+ #: admin/views/ad-group.php:75
1227
+ msgid "Ad Groups are a very flexible method to bundle ads. You can use them to display random ads in the frontend or run split tests, but also just for informational purposes. Not only can an Ad Groups have multiple ads, but an ad can belong to multiple ad groups."
1228
  msgstr ""
1229
 
1230
+ #. translators: %s is a URL.
1231
+ #: admin/views/ad-group.php:81
1232
+ msgid "Find more information about ad groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
1233
  msgstr ""
1234
 
1235
+ #: admin/views/ad-group.php:119
1236
+ msgid "Update Groups"
 
1237
  msgstr ""
1238
 
1239
+ #: admin/views/ad-info-after-textarea.php:17
1240
+ msgid "The code of this ad might not work properly with the Content placement."
 
1241
  msgstr ""
1242
 
1243
+ #. translators: %s is a URL.
1244
+ #: admin/views/ad-info-after-textarea.php:24
1245
+ msgid "Reach out to <a href=\"%s\">support</a> to get help."
1246
  msgstr ""
1247
 
1248
+ #: admin/views/ad-info-bottom.php:13
1249
+ msgctxt "wizard navigation"
1250
+ msgid "previous"
 
1251
  msgstr ""
1252
 
1253
+ #: admin/views/ad-info-bottom.php:17
1254
+ #: admin/views/ad-info-bottom.php:20
1255
+ msgctxt "wizard navigation"
1256
+ msgid "next"
1257
  msgstr ""
1258
 
1259
+ #: admin/views/ad-info-bottom.php:17
1260
+ msgctxt "wizard navigation"
1261
+ msgid "save"
1262
  msgstr ""
1263
 
1264
+ #: admin/views/ad-info-bottom.php:21
1265
+ #: admin/views/ad-info-top.php:27
1266
+ msgid "Stop Wizard and show all options"
 
1267
  msgstr ""
1268
 
1269
+ #: admin/views/ad-info-top.php:2
1270
+ msgid "Start Wizard"
1271
  msgstr ""
1272
 
1273
+ #: admin/views/ad-info-top.php:3
1274
+ msgid "Stop Wizard"
 
 
1275
  msgstr ""
1276
 
1277
+ #. translators: %s is an ad ID.
1278
+ #: admin/views/ad-info.php:4
1279
+ msgid "Ad Id: %s"
1280
  msgstr ""
1281
 
1282
+ #: admin/views/ad-info.php:9
1283
+ msgid "theme function"
1284
  msgstr ""
1285
 
1286
+ #. translators: %s is a URL.
1287
+ #: admin/views/ad-info.php:16
1288
+ msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
 
1289
  msgstr ""
1290
 
1291
+ #: admin/views/ad-info.php:31
1292
+ msgid "click to change"
 
1293
  msgstr ""
1294
 
1295
+ #: admin/views/ad-info.php:38
1296
+ msgid "Add a description"
1297
  msgstr ""
1298
 
1299
+ #: admin/views/ad-info.php:42
1300
+ msgid "Internal description or your own notes about this ad."
1301
  msgstr ""
1302
 
1303
+ #: admin/views/ad-list-filters.php:18
1304
+ msgid "all ad types"
 
 
 
 
 
 
1305
  msgstr ""
1306
 
1307
+ #: admin/views/ad-list-filters.php:26
1308
+ msgid "all ad sizes"
 
 
1309
  msgstr ""
1310
 
1311
+ #: admin/views/ad-list-filters.php:34
1312
+ msgid "all ad dates"
1313
  msgstr ""
1314
 
1315
+ #: admin/views/ad-list-filters.php:42
1316
+ msgid "all ad groups"
1317
  msgstr ""
1318
 
1319
+ #: admin/views/ad-list-no-ads.php:4
1320
+ msgid "Watch the “First Ad Tutorial (Video)"
1321
  msgstr ""
1322
 
1323
+ #: admin/views/ad-main-metabox.php:3
1324
+ msgid "No ad types defined"
 
1325
  msgstr ""
1326
 
1327
+ #: admin/views/ad-output-metabox.php:12
1328
+ msgid "Everything connected to the ads layout and output."
1329
  msgstr ""
1330
 
1331
+ #: admin/views/ad-output-metabox.php:14
1332
+ #: admin/views/placements-ad-label-position.php:10
1333
+ msgid "Position"
1334
  msgstr ""
1335
 
1336
+ #: admin/views/ad-output-metabox.php:16
1337
+ msgid "- default -"
1338
  msgstr ""
1339
 
1340
+ #: admin/views/ad-output-metabox.php:18
1341
+ #: admin/views/placements-ad-label-position.php:11
1342
+ #: admin/views/placements-ad-label-position.php:13
1343
+ #: admin/views/placements-ad-label.php:9
1344
+ #: admin/views/placements-ad-label.php:11
1345
+ #: admin/views/placements.php:108
1346
+ #: modules/gadsense/includes/class-network-adsense.php:239
1347
+ msgid "default"
1348
  msgstr ""
1349
 
1350
+ #: admin/views/ad-output-metabox.php:19
1351
+ #: admin/views/placements-ad-label-position.php:15
1352
+ #: admin/views/placements-ad-label-position.php:17
1353
+ msgid "left"
 
 
 
 
1354
  msgstr ""
1355
 
1356
+ #: admin/views/ad-output-metabox.php:22
1357
+ #: admin/views/placements-ad-label-position.php:18
1358
+ #: admin/views/placements-ad-label-position.php:20
1359
+ msgid "center"
1360
  msgstr ""
1361
 
1362
+ #: admin/views/ad-output-metabox.php:25
1363
+ #: admin/views/placements-ad-label-position.php:21
1364
+ #: admin/views/placements-ad-label-position.php:23
1365
+ msgid "right"
1366
  msgstr ""
1367
 
1368
+ #: admin/views/ad-output-metabox.php:31
1369
+ msgid "Check this if you don’t want the following elements to float around the ad. (adds a clearfix)"
1370
  msgstr ""
1371
 
1372
+ #: admin/views/ad-output-metabox.php:36
1373
+ msgid "Margin"
1374
  msgstr ""
1375
 
1376
+ #: admin/views/ad-output-metabox.php:38
1377
+ msgid "top:"
 
 
1378
  msgstr ""
1379
 
1380
+ #: admin/views/ad-output-metabox.php:39
1381
+ msgid "right:"
1382
  msgstr ""
1383
 
1384
+ #: admin/views/ad-output-metabox.php:40
1385
+ msgid "bottom:"
1386
  msgstr ""
1387
 
1388
+ #: admin/views/ad-output-metabox.php:41
1389
+ msgid "left:"
1390
  msgstr ""
1391
 
1392
+ #: admin/views/ad-output-metabox.php:42
1393
+ msgid "tip: use this to add a margin around the ad"
 
1394
  msgstr ""
1395
 
1396
+ #: admin/views/ad-output-metabox.php:45
1397
+ msgid "container ID"
 
 
 
 
1398
  msgstr ""
1399
 
1400
+ #: admin/views/ad-output-metabox.php:48
1401
+ msgid "Specify the id of the ad container. Leave blank for random or no id."
1402
  msgstr ""
1403
 
1404
+ #: admin/views/ad-output-metabox.php:52
1405
+ msgid "container classes"
1406
  msgstr ""
1407
 
1408
+ #: admin/views/ad-output-metabox.php:55
1409
+ msgid "Specify one or more classes for the container. Separate multiple classes with a space"
1410
  msgstr ""
1411
 
1412
+ #: admin/views/ad-output-metabox.php:58
1413
+ msgid "Enable debug mode"
1414
  msgstr ""
1415
 
1416
+ #: admin/views/ad-parameters-size.php:9
1417
+ msgid "size"
1418
  msgstr ""
1419
 
1420
+ #: admin/views/ad-parameters-size.php:11
1421
+ msgid "width"
1422
  msgstr ""
1423
 
1424
+ #: admin/views/ad-parameters-size.php:12
1425
+ msgid "height"
 
 
1426
  msgstr ""
1427
 
1428
+ #: admin/views/ad-parameters-size.php:22
1429
+ msgid "reserve this space"
 
1430
  msgstr ""
1431
 
1432
+ #: admin/views/ad-submitbox-meta.php:10
1433
+ msgid "Set expiry date"
 
 
 
 
1434
  msgstr ""
1435
 
1436
+ #: admin/views/ad-submitbox-meta.php:15
1437
+ msgid "Month"
1438
  msgstr ""
1439
 
1440
+ #. translators: %1$s is the month number, %2$s is the month shortname.
1441
+ #: admin/views/ad-submitbox-meta.php:21
1442
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1443
+ msgid "%1$s-%2$s"
1444
  msgstr ""
1445
 
1446
+ #: admin/views/ad-submitbox-meta.php:28
1447
+ msgid "Day"
 
1448
  msgstr ""
1449
 
1450
+ #: admin/views/ad-submitbox-meta.php:29
1451
+ msgid "Year"
 
 
 
1452
  msgstr ""
1453
 
1454
+ #: admin/views/ad-submitbox-meta.php:30
1455
+ msgid "Hour"
 
1456
  msgstr ""
1457
 
1458
+ #: admin/views/ad-submitbox-meta.php:31
1459
+ msgid "Minute"
 
1460
  msgstr ""
1461
 
1462
+ #. translators: %1$s month, %2$s day, %3$s year, %4$s hour, %5$s minute.
1463
+ #: admin/views/ad-submitbox-meta.php:40
1464
+ msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1465
+ msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1466
  msgstr ""
1467
 
1468
+ #. translators: %1$s is a starting link tag, %2$s is closing the link tag.
1469
+ #: admin/views/checks.php:16
1470
+ msgid "Advanced Ads detected potential problems with your ad setup. %1$sShow me these errors%2$s"
 
 
1471
  msgstr ""
1472
 
1473
+ #: admin/views/conditions/ad-display-metabox.php:16
1474
+ msgid "Click on the button below if the ad should NOT show up on all pages when included automatically."
 
1475
  msgstr ""
1476
 
1477
+ #: admin/views/conditions/ad-display-metabox.php:18
1478
+ msgid "Hide the ad on some pages"
 
 
 
 
 
1479
  msgstr ""
1480
 
1481
+ #: admin/views/conditions/ad-display-metabox.php:33
1482
+ msgid "Watch video"
 
1483
  msgstr ""
1484
 
1485
+ #. translators: %s is a link to a tutorial.
1486
+ #: admin/views/conditions/ad-display-metabox.php:47
1487
+ #: admin/views/notices/jqueryui_error.php:2
1488
+ msgid "There might be a problem with layouts and scripts in your dashboard. Please check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1489
  msgstr ""
1490
 
1491
+ #: admin/views/conditions/ad-display-metabox.php:58
1492
+ msgid "A page with this ad on it must match all of the following conditions."
1493
  msgstr ""
1494
 
1495
+ #: admin/views/conditions/ad-visitor-metabox.php:16
1496
+ msgid "Click on the button below if the ad should NOT be visible to all visitors"
1497
  msgstr ""
1498
 
1499
+ #: admin/views/conditions/ad-visitor-metabox.php:18
1500
+ msgid "Hide the ad from some users"
1501
  msgstr ""
1502
 
1503
+ #: admin/views/conditions/ad-visitor-metabox.php:28
1504
+ msgid "Display conditions that are based on the user. Use with caution on cached websites."
1505
  msgstr ""
1506
 
1507
+ #. translators: %1$d is the number of elements in the list and %2$s a URL.
1508
+ #: admin/views/conditions/condition-author.php:41
1509
+ msgid "Only %1$d elements are displayed above. Use the <code>advanced-ads-admin-max-terms</code> filter to change this limit according to <a href=\"%2$s\" target=\"_blank\">this page</a>."
1510
  msgstr ""
1511
 
1512
+ #: admin/views/conditions/condition-device.php:13
1513
+ msgid "Mobile (including tablets)"
1514
  msgstr ""
1515
 
1516
+ #: admin/views/conditions/condition-device.php:15
1517
+ msgid "Desktop"
 
 
1518
  msgstr ""
1519
 
1520
+ #: admin/views/conditions/condition-device.php:23
1521
+ #: admin/views/conditions/condition-is-or-not.php:21
1522
+ msgid "Manual and Troubleshooting"
1523
  msgstr ""
1524
 
1525
+ #: admin/views/conditions/condition-number.php:13
1526
+ msgid "equal"
1527
  msgstr ""
1528
 
1529
+ #: admin/views/conditions/condition-number.php:15
1530
+ msgid "equal or higher"
1531
  msgstr ""
1532
 
1533
+ #: admin/views/conditions/condition-number.php:17
1534
+ msgid "equal or lower"
1535
  msgstr ""
1536
 
1537
+ #: admin/views/conditions/condition-operator.php:10
1538
+ msgid "is"
1539
  msgstr ""
1540
 
1541
+ #: admin/views/conditions/condition-operator.php:12
1542
+ msgid "is not"
1543
  msgstr ""
1544
 
1545
+ #: admin/views/conditions/conditions-form.php:10
1546
+ msgid "New condition"
1547
  msgstr ""
1548
 
1549
+ #: admin/views/conditions/conditions-form.php:15
1550
+ msgid "-- choose a condition --"
1551
  msgstr ""
1552
 
1553
+ #: admin/views/conditions/conditions-form.php:24
1554
+ msgid "Add-On features"
1555
  msgstr ""
1556
 
1557
+ #: admin/views/conditions/display-conditions-form-top.php:4
1558
+ msgid "If you want to display the ad everywhere, don't do anything here. "
1559
  msgstr ""
1560
 
1561
+ #: admin/views/conditions/display-conditions-list.php:45
1562
+ msgid "Forced to OR."
1563
  msgstr ""
1564
 
1565
+ #: admin/views/conditions/display-conditions-list.php:46
1566
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:116
1567
+ msgid "manual"
1568
  msgstr ""
1569
 
1570
+ #. translators: %s is a name of a taxonomy.
1571
+ #: admin/views/conditions/no-option.php:10
1572
+ msgctxt "Error message shown when no terms exists for display condition; placeholder is taxonomy label."
1573
+ msgid "No %s found on your site."
1574
  msgstr ""
1575
 
1576
+ #: admin/views/conditions/not-selected.php:2
1577
+ msgctxt "Error message shown when no display condition term is selected"
1578
+ msgid "Please select some items."
1579
  msgstr ""
1580
 
1581
+ #: admin/views/conditions/visitor-conditions-form-top.php:4
1582
+ msgid "Visitor conditions limit the number of users who can see your ad. There is no need to set visitor conditions if you want all users to see the ad."
1583
  msgstr ""
1584
 
1585
+ #: admin/views/conditions/visitor-conditions-form-top.php:9
1586
+ #: modules/privacy/admin/views/setting-enable.php:4
1587
+ msgid "It seems that a caching plugin is activated."
1588
  msgstr ""
1589
 
1590
+ #. translators: %s is a URL.
1591
+ #: admin/views/conditions/visitor-conditions-form-top.php:14
1592
+ msgid "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> if dynamic features get cached."
1593
  msgstr ""
1594
 
1595
+ #: admin/views/feedback-disable.php:5
1596
+ msgid "Why did you decide to disable Advanced Ads?"
1597
  msgstr ""
1598
 
1599
+ #: admin/views/feedback-disable.php:7
1600
+ msgid "I have a problem, a question or need help."
1601
  msgstr ""
1602
 
1603
+ #: admin/views/feedback-disable.php:8
1604
+ msgid "Please let us know how we can help"
 
1605
  msgstr ""
1606
 
1607
+ #. translators: %s is the email address of the current user
1608
+ #: admin/views/feedback-disable.php:15
1609
+ msgid "Send me free help to %s"
1610
  msgstr ""
1611
 
1612
+ #: admin/views/feedback-disable.php:23
1613
+ msgid "Ads are not showing up"
 
 
1614
  msgstr ""
1615
 
1616
+ #: admin/views/feedback-disable.php:24
1617
+ msgid "It is only temporary"
 
 
1618
  msgstr ""
1619
 
1620
+ #: admin/views/feedback-disable.php:25
1621
+ msgid "I miss a feature"
 
 
1622
  msgstr ""
1623
 
1624
+ #: admin/views/feedback-disable.php:26
1625
+ msgid "Which one?"
 
1626
  msgstr ""
1627
 
1628
+ #: admin/views/feedback-disable.php:27
1629
+ msgid "I stopped using ads on my site."
1630
  msgstr ""
1631
 
1632
+ #: admin/views/feedback-disable.php:28
1633
+ msgid "I switched to another plugin"
 
1634
  msgstr ""
1635
 
1636
+ #: admin/views/feedback-disable.php:33
1637
+ msgid "Send feedback & deactivate"
1638
  msgstr ""
1639
 
1640
+ #: admin/views/feedback-disable.php:34
1641
+ msgid "Send feedback"
1642
  msgstr ""
1643
 
1644
+ #: admin/views/feedback-disable.php:36
1645
+ msgid "Only Deactivate"
1646
  msgstr ""
1647
 
1648
+ #: admin/views/feedback-disable.php:39
1649
+ msgid "Thanks for submitting your feedback. I will reply within 24 hours on working days."
1650
  msgstr ""
1651
 
1652
+ #. translators: %s is the title of the website.
1653
+ #: admin/views/feedback-disable.php:43
1654
+ msgid "All the best to you and %s."
1655
  msgstr ""
1656
 
1657
+ #: admin/views/feedback-disable.php:46
1658
+ msgid "Disabling the plugin now…"
1659
  msgstr ""
1660
 
1661
+ #: admin/views/gadsense-dashboard.php:34
1662
+ msgid "There is an error in your AdSense setup."
1663
  msgstr ""
1664
 
1665
+ #: admin/views/notices/adblock.php:4
1666
+ msgid "Please disable your <strong>AdBlocker</strong> to prevent problems with your ad setup."
1667
  msgstr ""
1668
 
1669
+ #: admin/views/notices/starter-setup-success.php:2
1670
+ msgid "2 Test Ads successfully added!"
 
1671
  msgstr ""
1672
 
1673
+ #: admin/views/notices/starter-setup-success.php:3
1674
+ msgid "Look below for the list of created ads."
 
1675
  msgstr ""
1676
 
1677
+ #: admin/views/notices/starter-setup-success.php:5
1678
+ msgid "Visit list of placements"
1679
  msgstr ""
1680
 
1681
+ #: admin/views/notices/starter-setup-success.php:9
1682
+ msgid "See them in action"
 
 
 
1683
  msgstr ""
1684
 
1685
+ #: admin/views/notices/welcome-panel.php:10
1686
+ msgid "Welcome to Advanced Ads!"
1687
  msgstr ""
1688
 
1689
+ #: admin/views/notices/welcome-panel.php:13
1690
+ msgid "Get Started"
1691
  msgstr ""
1692
 
1693
+ #: admin/views/notices/welcome-panel.php:19
1694
+ msgid "First ad tutorial"
 
1695
  msgstr ""
1696
 
1697
+ #: admin/views/notices/welcome-panel.php:23
1698
+ msgid "One-Click Setup"
 
 
1699
  msgstr ""
1700
 
1701
+ #: admin/views/notices/welcome-panel.php:30
1702
+ msgid "Create 2 test ads"
1703
  msgstr ""
1704
 
1705
+ #: admin/views/notices/welcome-panel.php:31
1706
+ msgid "Click to place two ads in the content of your site which are visible to you only."
1707
  msgstr ""
1708
 
1709
+ #: admin/views/notices/welcome-panel.php:34
1710
+ msgid "AdSense Options"
1711
  msgstr ""
1712
 
1713
+ #: admin/views/notices/welcome-panel.php:36
1714
+ msgid "Import ads from AdSense"
1715
  msgstr ""
1716
 
1717
+ #: admin/views/notices/welcome-panel.php:40
1718
+ msgid "Setting up Auto ads"
1719
  msgstr ""
1720
 
1721
+ #: admin/views/notices/welcome-panel.php:43
1722
+ msgid "Setting up AdSense ads manually"
1723
+ msgstr ""
1724
+
1725
+ #: admin/views/pitches/all-access.php:1
1726
+ msgid "All Access – with all available add-ons"
1727
  msgstr ""
1728
 
1729
+ #: admin/views/pitches/all-access.php:12
1730
+ msgid "Risk free with 30-day Money-Back guarantee"
1731
  msgstr ""
1732
 
1733
+ #: admin/views/pitches/all-access.php:13
1734
+ msgid "Get All Access"
1735
  msgstr ""
1736
 
1737
+ #: admin/views/pitches/pro-tab.php:2
1738
+ msgid "Advanced Ads Pro – test and optimize your ad performance"
1739
  msgstr ""
1740
 
1741
+ #: admin/views/pitches/pro-tab.php:4
1742
+ msgid "Ads for Ad Blockers"
1743
  msgstr ""
1744
 
1745
+ #: admin/views/pitches/pro-tab.php:5
1746
+ msgid "Click Fraud Protection"
1747
  msgstr ""
1748
 
1749
+ #: admin/views/pitches/pro-tab.php:6
1750
+ msgid "Lazy Loading"
 
 
 
1751
  msgstr ""
1752
 
1753
+ #: admin/views/pitches/pro-tab.php:13
1754
+ #: admin/views/pitches/tracking.php:10
1755
+ msgid "See all features and pricing"
1756
  msgstr ""
1757
 
1758
+ #: admin/views/pitches/tracking.php:4
1759
+ msgid "track impressions and click on your ads"
1760
  msgstr ""
1761
 
1762
+ #: admin/views/pitches/tracking.php:5
1763
+ msgid "compare ads and periods"
 
1764
  msgstr ""
1765
 
1766
+ #: admin/views/pitches/tracking.php:6
1767
+ msgid "share reports via link or email"
 
 
 
 
1768
  msgstr ""
1769
 
1770
+ #: admin/views/pitches/tracking.php:7
1771
+ msgid "limit ads views by overall number of impressions or clicks"
1772
  msgstr ""
1773
 
1774
+ #: admin/views/pitches/tracking.php:8
1775
+ msgid "spread impressions or clicks equally over a given period"
 
1776
  msgstr ""
1777
 
1778
+ #: admin/views/placement-form.php:15
1779
+ msgid "Choose a placement type"
 
1780
  msgstr ""
1781
 
1782
+ #. translators: %s is a URL.
1783
+ #: admin/views/placement-form.php:21
1784
+ msgid "Placement types define where the ad is going to be displayed. Learn more about the different types from the <a href=\"%s\">manual</a>"
1785
  msgstr ""
1786
 
1787
+ #: admin/views/placement-form.php:59
1788
+ msgid "Please select a placement type."
 
1789
  msgstr ""
1790
 
1791
+ #: admin/views/placement-form.php:61
1792
+ msgid "Choose a Name"
 
 
1793
  msgstr ""
1794
 
1795
+ #: admin/views/placement-form.php:62
1796
+ msgid "The name of the placement is only visible to you. Tip: choose a descriptive one, e.g. <em>Below Post Headline</em>."
 
 
1797
  msgstr ""
1798
 
1799
+ #: admin/views/placement-form.php:64
1800
+ msgid "Placement Name"
 
 
1801
  msgstr ""
1802
 
1803
+ #: admin/views/placement-form.php:65
1804
+ msgid "Please enter a name for your placement."
 
 
1805
  msgstr ""
1806
 
1807
+ #: admin/views/placement-form.php:66
1808
+ msgid "Choose the Ad or Group"
 
 
1809
  msgstr ""
1810
 
1811
+ #: admin/views/placement-form.php:67
1812
+ msgid "The ad or group that should be displayed."
 
 
1813
  msgstr ""
1814
 
1815
+ #: admin/views/placement-form.php:69
1816
+ #: admin/views/placements-item.php:10
1817
+ msgid "--not selected--"
 
1818
  msgstr ""
1819
 
1820
+ #: admin/views/placement-form.php:86
1821
+ msgid "Save New Placement"
 
 
1822
  msgstr ""
1823
 
1824
+ #: admin/views/placement-injection-top.php:15
1825
+ msgid "Congratulations! Your ad is now visible in the frontend."
 
 
1826
  msgstr ""
1827
 
1828
+ #: admin/views/placement-injection-top.php:16
1829
+ msgid "Adjust the placement options"
 
 
 
 
 
 
 
1830
  msgstr ""
1831
 
1832
+ #. translators: %s is a URL.
1833
+ #: admin/views/placement-injection-top.php:23
1834
+ msgid "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
1835
  msgstr ""
1836
 
1837
+ #: admin/views/placement-injection-top.php:37
1838
+ msgid "Where do you want to display the ad?"
1839
  msgstr ""
1840
 
1841
+ #. translators: %s is a URL.
1842
+ #: admin/views/placement-injection-top.php:48
1843
+ #: modules/gadsense/admin/admin.php:178
1844
+ msgid "The AdSense verification and Auto ads code is already activated in the <a href=\"%s\">AdSense settings</a>."
1845
  msgstr ""
1846
 
1847
+ #: admin/views/placement-injection-top.php:60
1848
+ #: modules/gadsense/admin/admin.php:180
1849
+ msgid "No need to add the code manually here, unless you want to include it into certain pages only."
1850
  msgstr ""
1851
 
1852
+ #: admin/views/placement-injection-top.php:63
1853
+ msgid "Click on the button below to add the Auto ads code to the header of your site."
1854
  msgstr ""
1855
 
1856
+ #: admin/views/placement-injection-top.php:74
1857
+ msgid "inject Auto ads"
 
 
1858
  msgstr ""
1859
 
1860
+ #: admin/views/placement-injection-top.php:80
1861
+ msgid "New placement"
1862
  msgstr ""
1863
 
1864
+ #: admin/views/placement-injection-top.php:81
1865
+ #: classes/ad_placements.php:67
1866
+ msgid "Before Content"
1867
  msgstr ""
1868
 
1869
+ #: admin/views/placement-injection-top.php:82
1870
+ #: classes/ad_placements.php:89
1871
+ msgid "Content"
1872
  msgstr ""
1873
 
1874
+ #: admin/views/placement-injection-top.php:83
1875
+ #: classes/ad_placements.php:78
1876
+ msgid "After Content"
1877
  msgstr ""
1878
 
1879
+ #: admin/views/placement-injection-top.php:84
1880
+ msgid "PHP or Shortcode"
1881
  msgstr ""
1882
 
1883
+ #: admin/views/placement-injection-top.php:85
1884
+ msgid "Manage Sidebar"
1885
  msgstr ""
1886
 
1887
+ #: admin/views/placement-injection-top.php:86
1888
+ msgid "Header (Manual)"
 
 
1889
  msgstr ""
1890
 
1891
+ #: admin/views/placement-injection-top.php:90
1892
+ #: admin/views/placement-injection-top.php:94
1893
+ msgid "Custom Position"
1894
  msgstr ""
1895
 
1896
+ #: admin/views/placement-injection-top.php:90
1897
+ msgid "Show Pro Places"
1898
  msgstr ""
1899
 
1900
+ #: admin/views/placement-injection-top.php:99
1901
+ msgid "AdSense In-feed"
1902
  msgstr ""
1903
 
1904
+ #: admin/views/placement-injection-top.php:105
1905
+ msgid "Show Sticky Places"
1906
  msgstr ""
1907
 
1908
+ #: admin/views/placement-injection-top.php:111
1909
+ msgid "Show PopUp"
1910
  msgstr ""
1911
 
1912
+ #: admin/views/placement-injection-top.php:115
1913
+ msgid "PopUp & Layer"
 
 
1914
  msgstr ""
1915
 
1916
+ #: admin/views/placement-injection-top.php:120
1917
+ msgid "see all…"
1918
  msgstr ""
1919
 
1920
+ #: admin/views/placement-injection-top.php:157
1921
+ msgid "Existing placement"
 
 
 
1922
  msgstr ""
1923
 
1924
+ #. translators: %s is some HTML.
1925
+ #: admin/views/placement-injection-top.php:170
1926
+ msgid "Or use the shortcode %s to insert the ad into the content manually."
 
 
 
1927
  msgstr ""
1928
 
1929
+ #. translators: %s is a URL.
1930
+ #: admin/views/placement-injection-top.php:178
1931
+ msgid "Learn more about your choices to display an ad in the <a href=\"%s\" target=\"_blank\">manual</a>."
1932
  msgstr ""
1933
 
1934
+ #: admin/views/placements-ad-label-position.php:27
1935
+ msgid "Check this if you don’t want the following elements to float around the ad. (adds a placement_clearfix)"
1936
  msgstr ""
1937
 
1938
+ #: admin/views/placements-ad-label.php:13
1939
+ #: admin/views/placements-ad-label.php:15
1940
+ #: modules/ads-txt/admin/views/setting-create.php:2
1941
+ #: modules/ads-txt/admin/views/setting-create.php:4
1942
+ msgid "enabled"
1943
  msgstr ""
1944
 
1945
+ #: admin/views/placements-ad-label.php:17
1946
+ #: admin/views/placements-ad-label.php:19
1947
+ #: modules/ads-txt/admin/views/setting-create.php:6
1948
+ #: modules/ads-txt/admin/views/setting-create.php:8
1949
+ msgid "disabled"
1950
  msgstr ""
1951
 
1952
+ #: admin/views/placements-content-index.php:9
1953
+ msgid "after"
1954
  msgstr ""
1955
 
1956
+ #: admin/views/placements-content-index.php:10
1957
+ msgid "before"
 
1958
  msgstr ""
1959
 
1960
+ #: admin/views/placements-content-index.php:44
1961
+ msgid "start counting from bottom"
1962
  msgstr ""
1963
 
1964
+ #: admin/views/placements.php:12
1965
+ msgid "Couldn’t create the new placement. Please check your form field and whether the name is already in use."
1966
  msgstr ""
1967
 
1968
+ #: admin/views/placements.php:16
1969
+ msgid "Placements updated"
1970
  msgstr ""
1971
 
1972
+ #: admin/views/placements.php:22
1973
+ #: admin/views/placements.php:254
1974
+ msgid "Create a new placement"
1975
  msgstr ""
1976
 
1977
+ #: admin/views/placements.php:23
1978
+ #: admin/views/placements.php:256
1979
+ msgid "New Placement"
1980
  msgstr ""
1981
 
1982
+ #: admin/views/placements.php:28
1983
+ msgid "Placements are physically places in your theme and posts. You can use them if you plan to change ads and ad groups on the same place without the need to change your templates."
 
1984
  msgstr ""
1985
 
1986
+ #. translators: %s is a URL.
1987
+ #: admin/views/placements.php:34
1988
+ msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1989
  msgstr ""
1990
 
1991
+ #: admin/views/placements.php:60
1992
+ #: modules/import-export/views/page.php:26
1993
+ msgid "Options"
1994
  msgstr ""
1995
 
1996
+ #. translators: %s is the name of a placement.
1997
+ #: admin/views/placements.php:87
1998
+ msgid "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check if the responsible add-on is activated."
1999
  msgstr ""
2000
 
2001
+ #: admin/views/placements.php:117
2002
+ msgid "show usage"
2003
  msgstr ""
2004
 
2005
+ #: admin/views/placements.php:129
2006
+ msgid "template (PHP)"
2007
  msgstr ""
2008
 
2009
+ #: admin/views/placements.php:144
2010
+ msgid "Item"
2011
  msgstr ""
2012
 
2013
+ #: admin/views/placements.php:158
2014
+ msgid "position"
 
 
2015
  msgstr ""
2016
 
2017
+ #: admin/views/placements.php:164
2018
+ msgid "Important Notice"
2019
  msgstr ""
2020
 
2021
+ #: admin/views/placements.php:194
2022
+ msgid "ad label"
 
 
 
 
2023
  msgstr ""
2024
 
2025
+ #: admin/views/placements.php:204
2026
+ msgid "show all options"
 
 
 
2027
  msgstr ""
2028
 
2029
+ #. translators: %s is a URL.
2030
+ #: admin/views/placements.php:225
2031
+ msgid "Tutorial: <a href=\"%s\" target=\"_blank\">How to place visible ads in the header of your website</a>."
 
2032
  msgstr ""
2033
 
2034
+ #: admin/views/placements.php:245
2035
+ msgctxt "checkbox to remove placement"
2036
+ msgid "delete"
 
2037
  msgstr ""
2038
 
2039
+ #: admin/views/placements.php:252
2040
+ msgid "Save Placements"
2041
  msgstr ""
2042
 
2043
+ #: admin/views/post-ad-settings-metabox.php:1
2044
+ msgid "How to disable ads on specific pages"
2045
  msgstr ""
2046
 
2047
+ #: admin/views/post-ad-settings-metabox.php:7
2048
+ msgid "Disable ads on this page"
2049
  msgstr ""
2050
 
2051
+ #: admin/views/setting-license.php:15
2052
+ msgid "Your license expired."
2053
  msgstr ""
2054
 
2055
+ #: admin/views/setting-license.php:23
2056
+ msgid "Update expiry date"
 
2057
  msgstr ""
2058
 
2059
+ #: admin/views/setting-license.php:32
2060
+ msgid "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" class=\"advads-renewal-link\" target=\"_blank\">renew your license</a>."
2061
  msgstr ""
2062
 
2063
+ #. translators: %d is a number of days.
2064
+ #: admin/views/setting-license.php:50
2065
+ msgid "(%d days left)"
2066
  msgstr ""
2067
 
2068
+ #: admin/views/setting-license.php:56
2069
+ msgid "License key"
2070
  msgstr ""
2071
 
2072
+ #: admin/views/setting-license.php:73
2073
+ msgid "Deactivate License"
2074
  msgstr ""
2075
 
2076
+ #: admin/views/setting-license.php:82
2077
+ msgid "Update License"
2078
  msgstr ""
2079
 
2080
+ #: admin/views/setting-license.php:82
2081
+ msgid "Activate License"
2082
  msgstr ""
2083
 
2084
+ #: admin/views/setting-license.php:87
2085
+ msgid "License key invalid"
2086
  msgstr ""
2087
 
2088
+ #: admin/views/setting-license.php:91
2089
+ msgid "active"
 
2090
  msgstr ""
2091
 
2092
+ #: admin/views/settings.php:14
2093
+ msgid "General"
 
 
 
2094
  msgstr ""
2095
 
2096
+ #: admin/views/settings.php:43
2097
+ msgid "Save settings on this page"
 
 
 
2098
  msgstr ""
2099
 
2100
+ #: admin/views/settings.php:50
2101
+ #: modules/import-export/main.php:17
2102
+ msgid "Import &amp; Export"
2103
  msgstr ""
2104
 
2105
+ #: admin/views/settings/general/advanced-js.php:4
2106
+ msgid "The file is currently enabled by an add-on that needs it."
 
2107
  msgstr ""
2108
 
2109
+ #. translators: %s is a URL.
2110
+ #: admin/views/settings/general/advanced-js.php:14
2111
+ msgid "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>). Some features and add-ons might override this setting if they need features from this file."
2112
  msgstr ""
2113
 
2114
+ #: admin/views/settings/general/block-bots.php:5
2115
+ #: classes/frontend_checks.php:114
2116
+ msgid "You look like a bot"
2117
  msgstr ""
2118
 
2119
+ #: admin/views/settings/general/block-bots.php:9
2120
+ msgid "Read this first"
 
2121
  msgstr ""
2122
 
2123
+ #: admin/views/settings/general/block-bots.php:10
2124
+ msgid "Hide ads from crawlers, bots and empty user agents."
 
2125
  msgstr ""
2126
 
2127
+ #: admin/views/settings/general/content-injection-everywhere.php:2
2128
+ msgid "Some plugins and themes trigger ad injections where it shouldn’t happen. Therefore, Advanced Ads ignores injected placements on non-singular pages and outside the loop. However, this can cause problems with some themes. Set this option to -1 in order to enable unlimited ad injection at your own risk, set it to 0 to keep it disabled or choose a positive number to enable the injection only in the first x posts on your archive pages."
2129
  msgstr ""
2130
 
2131
+ #: admin/views/settings/general/content-injection-level-limitation.php:2
2132
+ msgid "Advanced Ads ignores paragraphs and other elements in containers when injecting ads into the post content. Check this option to ignore this limitation and ads might show up again."
 
 
2133
  msgstr ""
2134
 
2135
+ #: admin/views/settings/general/content-injection-priority.php:6
2136
+ msgid "Please check your post content. A priority of 10 and below might cause issues (wpautop function might run twice)."
2137
  msgstr ""
2138
 
2139
+ #: admin/views/settings/general/content-injection-priority.php:9
2140
+ msgid "Play with this value in order to change the priority of the injected ads compared to other auto injected elements in the post content."
2141
  msgstr ""
2142
 
2143
+ #: admin/views/settings/general/custom-label.php:7
2144
+ msgid "Displayed above ads."
2145
  msgstr ""
2146
 
2147
+ #: admin/views/settings/general/disable-ads.php:5
2148
+ msgid "Disable all ads in frontend"
2149
  msgstr ""
2150
 
2151
+ #: admin/views/settings/general/disable-ads.php:6
2152
+ msgid "Use this option to disable all ads in the frontend, but still be able to use the plugin."
2153
  msgstr ""
2154
 
2155
+ #: admin/views/settings/general/disable-ads.php:12
2156
+ msgid "Disable ads on 404 error pages"
2157
  msgstr ""
2158
 
2159
+ #: admin/views/settings/general/disable-ads.php:18
2160
+ msgid "Disable ads on non-singular pages"
 
 
2161
  msgstr ""
2162
 
2163
+ #: admin/views/settings/general/disable-ads.php:19
2164
+ msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
2165
  msgstr ""
2166
 
2167
+ #: admin/views/settings/general/disable-ads.php:24
2168
+ msgid "Disable ads on secondary queries"
2169
  msgstr ""
2170
 
2171
+ #: admin/views/settings/general/disable-ads.php:25
2172
+ msgid "Secondary queries are custom queries of posts outside the main query of a page. Try this option if you see ads injected on places where they shouldn’t appear."
2173
  msgstr ""
2174
 
2175
+ #: admin/views/settings/general/disable-ads.php:31
2176
+ msgid "Disable ads in RSS Feed"
 
 
 
2177
  msgstr ""
2178
 
2179
+ #: admin/views/settings/general/disable-ads.php:37
2180
+ msgid "Disable ads in REST API"
 
 
2181
  msgstr ""
2182
 
2183
+ #. translators: %1$s is a starting <a> tag and %2$s a closing one.
2184
+ #: admin/views/settings/general/disable-notices.php:6
2185
+ msgid "Disable %1$sAd Health%2$s in frontend and backend, warnings and internal notices like tips, tutorials, email newsletters and update notices."
2186
  msgstr ""
2187
 
2188
+ #: admin/views/settings/general/disable-post-types.php:1
2189
+ msgid "Pro feature"
 
 
 
2190
  msgstr ""
2191
 
2192
+ #: admin/views/settings/general/disable-shortcode-button.php:2
2193
+ msgid "Disable shortcode button in visual editor."
 
 
 
 
2194
  msgstr ""
2195
 
2196
+ #: admin/views/settings/general/editors-manage-ads.php:2
2197
+ msgid "Allow editors to also manage and publish ads."
2198
  msgstr ""
2199
 
2200
+ #. translators: %s is a URL.
2201
+ #: admin/views/settings/general/editors-manage-ads.php:7
2202
+ msgid "You can assign different ad-related roles on a user basis with <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
2203
  msgstr ""
2204
 
2205
+ #: admin/views/settings/general/frontend-prefix.php:4
2206
+ msgid "Prefix of class and id attributes for elements created in the frontend."
2207
  msgstr ""
2208
 
2209
+ #: admin/views/settings/general/hide-for-user-role.php:14
2210
+ msgid "Choose the roles a user must have in order to not see any ads."
2211
  msgstr ""
2212
 
2213
+ #: admin/views/settings/general/link-target.php:6
2214
+ msgid "Open programatically created links in a new window (use <code>target=\"_blank\"</code>)"
2215
  msgstr ""
2216
 
2217
+ #: admin/views/settings/general/uninstall-delete-data.php:3
2218
+ msgid "Clean up all data related to Advanced Ads when removing the plugin."
2219
  msgstr ""
2220
 
2221
+ #. translators: %s is a URL.
2222
+ #: admin/views/settings/license/section.php:4
2223
+ msgid "Enter license keys for our powerful <a href=\"%s\" target=\"_blank\">add-ons</a>."
2224
  msgstr ""
2225
 
2226
+ #. translators: %s is a URL.
2227
+ #: admin/views/settings/license/section.php:18
2228
+ msgid "See also <a href=\"%s\" target=\"_blank\">Issues and questions about licenses</a>."
 
 
2229
  msgstr ""
2230
 
2231
+ #: admin/views/support-callout.php:3
2232
+ msgid "Problems or questions?"
 
2233
  msgstr ""
2234
 
2235
+ #: admin/views/support-callout.php:4
2236
+ msgid "Save time and get personal support."
2237
  msgstr ""
2238
 
2239
+ #: admin/views/support-callout.php:4
2240
+ msgid "Ask your question!"
2241
  msgstr ""
2242
 
2243
+ #: admin/views/support.php:6
2244
+ msgid "Please fix the red highlighted issues on this page or try to understand their consequences before contacting support."
 
2245
  msgstr ""
2246
 
2247
+ #: admin/views/support.php:7
2248
+ msgid "Possible Issues"
2249
  msgstr ""
2250
 
2251
+ #: admin/views/support.php:9
2252
+ msgid "Ads not showing up"
2253
  msgstr ""
2254
 
2255
+ #: admin/views/support.php:10
2256
+ msgid "Purchase & Licenses"
2257
  msgstr ""
2258
 
2259
+ #: admin/views/support.php:11
2260
+ msgid "General Issues"
2261
  msgstr ""
2262
 
2263
+ #: admin/views/support.php:12
2264
+ msgid "Issues with Add-Ons"
2265
  msgstr ""
2266
 
2267
+ #: admin/views/support.php:14
2268
+ msgid "Use the following form to search for solutions in the manual on wpadvancedads.com"
2269
  msgstr ""
2270
 
2271
+ #: admin/views/support.php:17
2272
+ msgid "search"
2273
  msgstr ""
2274
 
2275
+ #. translators: %s is a URL.
2276
+ #: admin/views/support.php:25
2277
+ msgid "Take a look at more common issues or contact us directly through the <a href=\"%s\" target=\"_blank\">support page</a>."
2278
  msgstr ""
2279
 
2280
+ #. translators: %s is a URL.
2281
+ #: admin/views/support.php:43
2282
+ msgid "Upgrade to any premium add-on and get <strong>priority email support</strong> or reach out through the <a href=\"%s\" target=\"_blank\">support forum</a> for individual help."
2283
  msgstr ""
2284
 
2285
+ #: classes/ad-debug.php:32
2286
+ msgid "The ad is displayed on the page"
2287
  msgstr ""
2288
 
2289
+ #: classes/ad-debug.php:34
2290
+ msgid "The ad is not displayed on the page"
2291
  msgstr ""
2292
 
2293
+ #: classes/ad-debug.php:39
2294
+ msgid "Current query is not identical to main query."
2295
  msgstr ""
2296
 
2297
+ #: classes/ad-debug.php:45
2298
+ msgid "current post"
2299
  msgstr ""
2300
 
2301
+ #: classes/ad-debug.php:49
2302
+ msgid "Current post is not identical to main post."
2303
  msgstr ""
2304
 
2305
+ #: classes/ad-debug.php:51
2306
+ msgid "main post"
2307
  msgstr ""
2308
 
2309
+ #: classes/ad-debug.php:98
2310
+ msgid "current query"
2311
  msgstr ""
2312
 
2313
+ #: classes/ad-debug.php:98
2314
+ msgid "main query"
2315
  msgstr ""
2316
 
2317
+ #: classes/ad-debug.php:121
2318
+ #: public/class-advanced-ads.php:685
2319
+ msgctxt "ad group singular name"
2320
+ msgid "Ad Group"
2321
  msgstr ""
2322
 
2323
+ #: classes/ad-debug.php:128
2324
+ msgid "Placement"
 
2325
  msgstr ""
2326
 
2327
+ #. translators: %1$s is an anchor (link) opening tag, %2$s is the closing tag.
2328
+ #: classes/ad-health-notices.php:865
2329
+ #: modules/gadsense/includes/class-mapi.php:1513
2330
+ msgid "Learn more about AdSense account issues %1$shere%2$s."
2331
  msgstr ""
2332
 
2333
+ #. translators: %s is a URL.
2334
+ #: classes/ad_ajax_callbacks.php:246
2335
+ msgid "An error occurred. Please use <a href=\"%s\" target=\"_blank\">this form</a> to sign up."
2336
  msgstr ""
2337
 
2338
+ #: classes/ad_placements.php:46
2339
+ msgid "Manual Placement"
 
 
 
 
2340
  msgstr ""
2341
 
2342
+ #: classes/ad_placements.php:47
2343
+ msgid "Manual placement to use as function or shortcode."
 
 
 
2344
  msgstr ""
2345
 
2346
+ #: classes/ad_placements.php:56
2347
+ msgid "Header Code"
2348
  msgstr ""
2349
 
2350
+ #: classes/ad_placements.php:57
2351
+ msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
2352
  msgstr ""
2353
 
2354
+ #: classes/ad_placements.php:61
2355
+ msgid "Footer Code"
2356
  msgstr ""
2357
 
2358
+ #: classes/ad_placements.php:62
2359
+ msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
 
 
2360
  msgstr ""
2361
 
2362
+ #: classes/ad_placements.php:68
2363
+ msgid "Injected before the post content."
2364
  msgstr ""
2365
 
2366
+ #: classes/ad_placements.php:79
2367
+ msgid "Injected after the post content."
2368
  msgstr ""
2369
 
2370
+ #: classes/ad_placements.php:90
2371
+ msgid "Injected into the content. You can choose the paragraph after which the ad content is displayed."
2372
  msgstr ""
2373
 
2374
+ #: classes/ad_placements.php:100
2375
+ msgid "Sidebar Widget"
2376
  msgstr ""
2377
 
2378
+ #: classes/ad_placements.php:101
2379
+ msgid "Create a sidebar widget with an ad. Can be placed and used like any other widget."
 
 
 
2380
  msgstr ""
2381
 
2382
+ #. translators: %s is an html tag.
2383
+ #: classes/ad_placements.php:289
2384
+ msgid "paragraph (%s)"
2385
  msgstr ""
2386
 
2387
+ #. translators: %s is an html tag.
2388
+ #: classes/ad_placements.php:291
2389
+ msgid "paragraph without image (%s)"
2390
  msgstr ""
2391
 
2392
+ #. translators: %s is an html tag.
2393
+ #: classes/ad_placements.php:293
2394
+ msgid "headline 2 (%s)"
 
 
2395
  msgstr ""
2396
 
2397
+ #. translators: %s is an html tag.
2398
+ #: classes/ad_placements.php:295
2399
+ msgid "headline 3 (%s)"
2400
  msgstr ""
2401
 
2402
+ #. translators: %s is an html tag.
2403
+ #: classes/ad_placements.php:297
2404
+ msgid "headline 4 (%s)"
2405
  msgstr ""
2406
 
2407
+ #. translators: %s stands for the name of the "Disable level limitation" option and automatically translated as well
2408
+ #: classes/ad_placements.php:868
2409
+ msgid "Set <em>%s</em> to show more ads"
2410
  msgstr ""
2411
 
2412
+ #: classes/ad_type_content.php:35
2413
+ msgid "Rich Content"
 
 
 
2414
  msgstr ""
2415
 
2416
+ #: classes/ad_type_content.php:36
2417
+ msgid "The full content editor from WordPress with all features like shortcodes, image upload or styling, but also simple text/html mode for scripts and code."
2418
  msgstr ""
2419
 
2420
+ #: classes/ad_type_dummy.php:26
2421
+ msgid "Dummy"
2422
  msgstr ""
2423
 
2424
+ #: classes/ad_type_dummy.php:27
2425
+ msgid "Uses a simple placeholder ad for quick testing."
 
 
2426
  msgstr ""
2427
 
2428
+ #: classes/ad_type_dummy.php:45
2429
+ #: classes/ad_type_image.php:64
2430
+ msgid "URL"
2431
  msgstr ""
2432
 
2433
+ #: classes/ad_type_group.php:31
2434
+ msgid "Choose an existing ad group. Use this type when you want to assign the same display and visitor conditions to all ads in that group."
2435
  msgstr ""
2436
 
2437
+ #: classes/ad_type_group.php:85
2438
+ msgid "ad group"
2439
  msgstr ""
2440
 
2441
+ #: classes/ad_type_image.php:34
2442
+ msgid "Image Ad"
2443
  msgstr ""
2444
 
2445
+ #: classes/ad_type_image.php:35
2446
+ msgid "Ads in various image formats."
2447
  msgstr ""
2448
 
2449
+ #: classes/ad_type_image.php:55
2450
+ msgid "Insert File"
2451
  msgstr ""
2452
 
2453
+ #: classes/ad_type_image.php:55
2454
+ msgid "Insert"
2455
  msgstr ""
2456
 
2457
+ #: classes/ad_type_image.php:55
2458
+ msgid "select image"
2459
  msgstr ""
2460
 
2461
+ #: classes/ad_type_image.php:56
2462
+ msgid "edit"
 
2463
  msgstr ""
2464
 
2465
+ #: classes/ad_type_image.php:68
2466
+ msgid "Link to target site including http(s)"
2467
  msgstr ""
2468
 
2469
+ #: classes/ad_type_image.php:214
2470
+ msgid "Original size: %s"
2471
  msgstr ""
2472
 
2473
+ #: classes/ad_type_plain.php:32
2474
+ msgid "Plain Text and Code"
2475
  msgstr ""
2476
 
2477
+ #: classes/ad_type_plain.php:33
2478
+ msgid "Any ad network, Amazon, customized AdSense codes, shortcodes, and code like JavaScript, HTML or PHP."
2479
  msgstr ""
2480
 
2481
+ #: classes/ad_type_plain.php:54
2482
+ msgid "Insert plain text or code into this field."
2483
  msgstr ""
2484
 
2485
+ #: classes/ad_type_plain.php:95
2486
+ msgid "Allow PHP"
2487
  msgstr ""
2488
 
2489
+ #: classes/ad_type_plain.php:99
2490
+ msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2491
  msgstr ""
2492
 
2493
+ #: classes/ad_type_plain.php:102
2494
+ msgid "No PHP tag detected in your code."
2495
  msgstr ""
2496
 
2497
+ #: classes/ad_type_plain.php:102
2498
+ #: classes/ad_type_plain.php:125
2499
+ msgid "Uncheck this checkbox for improved performance."
2500
  msgstr ""
2501
 
2502
+ #: classes/ad_type_plain.php:117
2503
+ msgid "Allow shortcodes"
 
 
2504
  msgstr ""
2505
 
2506
+ #: classes/ad_type_plain.php:122
2507
+ msgid "Execute shortcodes"
 
 
2508
  msgstr ""
2509
 
2510
+ #: classes/ad_type_plain.php:125
2511
+ msgid "No shortcode detected in your code."
2512
  msgstr ""
2513
 
2514
+ #: classes/display-conditions.php:89
2515
+ msgid "post type"
 
2516
  msgstr ""
2517
 
2518
+ #: classes/display-conditions.php:90
2519
+ #: includes/array_ad_conditions.php:40
2520
+ msgid "Choose the public post types on which to display the ad."
2521
  msgstr ""
2522
 
2523
+ #: classes/display-conditions.php:96
2524
+ msgid "specific pages"
 
2525
  msgstr ""
2526
 
2527
+ #: classes/display-conditions.php:97
2528
+ #: includes/array_ad_conditions.php:58
2529
+ msgid "Choose on which individual posts, pages and public post type pages you want to display or hide ads."
2530
  msgstr ""
2531
 
2532
+ #: classes/display-conditions.php:103
2533
+ msgid "general conditions"
 
2534
  msgstr ""
2535
 
2536
+ #: classes/display-conditions.php:109
2537
+ msgid "author"
2538
  msgstr ""
2539
 
2540
+ #: classes/display-conditions.php:115
2541
+ msgid "content age"
 
 
2542
  msgstr ""
2543
 
2544
+ #: classes/display-conditions.php:116
2545
+ msgid "Display ads based on age of the page."
 
 
2546
  msgstr ""
2547
 
2548
+ #: classes/display-conditions.php:122
2549
+ msgid "taxonomy"
 
 
2550
  msgstr ""
2551
 
2552
+ #: classes/display-conditions.php:123
2553
+ msgid "Display ads based on the taxonomy of an archive page."
 
 
2554
  msgstr ""
2555
 
2556
+ #. translators: %s is a label of an archive page.
2557
+ #: classes/display-conditions.php:171
2558
+ msgid "archive: %s"
2559
  msgstr ""
2560
 
2561
+ #: classes/display-conditions.php:260
2562
+ msgid "parent page"
2563
  msgstr ""
2564
 
2565
+ #: classes/display-conditions.php:261
2566
+ msgid "post meta"
2567
  msgstr ""
2568
 
2569
+ #: classes/display-conditions.php:262
2570
+ msgid "page template"
2571
  msgstr ""
2572
 
2573
+ #: classes/display-conditions.php:263
2574
+ msgid "url parameters"
2575
  msgstr ""
2576
 
2577
+ #: classes/display-conditions.php:266
2578
+ msgid "accelerated mobile pages"
2579
  msgstr ""
2580
 
2581
+ #: classes/display-conditions.php:594
2582
+ msgctxt "display the terms search field on ad edit page"
2583
+ msgid "add more terms"
2584
  msgstr ""
2585
 
2586
+ #: classes/display-conditions.php:598
2587
+ msgid "term name or id"
2588
  msgstr ""
2589
 
2590
+ #: classes/display-conditions.php:674
2591
+ msgid "title or id"
2592
  msgstr ""
2593
 
2594
+ #: classes/display-conditions.php:728
2595
+ #: includes/array_ad_conditions.php:63
2596
+ msgid "Home Page"
 
2597
  msgstr ""
2598
 
2599
+ #: classes/display-conditions.php:729
2600
+ #: includes/array_ad_conditions.php:64
2601
+ msgid "show on Home page"
2602
  msgstr ""
2603
 
2604
+ #: classes/display-conditions.php:733
2605
+ #: includes/array_ad_conditions.php:68
2606
+ msgid "Singular Pages"
2607
  msgstr ""
2608
 
2609
+ #: classes/display-conditions.php:734
2610
+ #: includes/array_ad_conditions.php:69
2611
+ msgid "show on singular pages/posts"
2612
  msgstr ""
2613
 
2614
+ #: classes/display-conditions.php:738
2615
+ #: includes/array_ad_conditions.php:73
2616
+ msgid "Archive Pages"
2617
  msgstr ""
2618
 
2619
+ #: classes/display-conditions.php:739
2620
+ #: includes/array_ad_conditions.php:74
2621
+ msgid "show on any type of archive page (category, tag, author and date)"
2622
  msgstr ""
2623
 
2624
+ #: classes/display-conditions.php:743
2625
+ #: includes/array_ad_conditions.php:78
2626
+ msgid "Search Results"
2627
  msgstr ""
2628
 
2629
+ #: classes/display-conditions.php:744
2630
+ #: includes/array_ad_conditions.php:79
2631
+ msgid "show on search result pages"
2632
  msgstr ""
2633
 
2634
+ #: classes/display-conditions.php:748
2635
+ #: includes/array_ad_conditions.php:83
2636
+ msgid "404 Page"
 
 
2637
  msgstr ""
2638
 
2639
+ #: classes/display-conditions.php:749
2640
+ #: includes/array_ad_conditions.php:84
2641
+ msgid "show on 404 error page"
2642
  msgstr ""
2643
 
2644
+ #: classes/display-conditions.php:753
2645
+ #: includes/array_ad_conditions.php:88
2646
+ msgid "Attachment Pages"
2647
  msgstr ""
2648
 
2649
+ #: classes/display-conditions.php:754
2650
+ #: includes/array_ad_conditions.php:89
2651
+ msgid "show on attachment pages"
2652
  msgstr ""
2653
 
2654
+ #: classes/display-conditions.php:758
2655
+ #: includes/array_ad_conditions.php:93
2656
+ msgid "Secondary Queries"
2657
  msgstr ""
2658
 
2659
+ #: classes/display-conditions.php:759
2660
+ #: includes/array_ad_conditions.php:94
2661
+ msgid "allow ads in secondary queries"
2662
  msgstr ""
2663
 
2664
+ #: classes/display-conditions.php:763
2665
+ msgid "RSS Feed"
2666
  msgstr ""
2667
 
2668
+ #: classes/display-conditions.php:764
2669
+ msgid "allow ads in RSS Feed"
2670
  msgstr ""
2671
 
2672
+ #: classes/display-conditions.php:768
2673
+ msgid "REST API"
 
 
2674
  msgstr ""
2675
 
2676
+ #: classes/display-conditions.php:769
2677
+ msgid "allow ads in REST API"
2678
  msgstr ""
2679
 
2680
+ #: classes/display-conditions.php:804
2681
+ msgid "older than"
 
 
 
2682
  msgstr ""
2683
 
2684
+ #: classes/display-conditions.php:805
2685
+ msgid "younger than"
 
 
 
2686
  msgstr ""
2687
 
2688
+ #: classes/display-conditions.php:807
2689
+ msgid "days"
2690
  msgstr ""
2691
 
2692
+ #: classes/EDD_SL_Plugin_Updater.php:228
2693
+ msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
2694
  msgstr ""
2695
 
2696
+ #: classes/EDD_SL_Plugin_Updater.php:236
2697
+ msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s."
 
 
2698
  msgstr ""
2699
 
2700
+ #: classes/EDD_SL_Plugin_Updater.php:479
2701
+ msgid "You do not have permission to install plugin updates"
2702
  msgstr ""
2703
 
2704
+ #: classes/EDD_SL_Plugin_Updater.php:479
2705
+ msgid "Error"
2706
  msgstr ""
2707
 
2708
+ #: classes/filesystem.php:61
2709
+ msgid "Could not access filesystem."
2710
  msgstr ""
2711
 
2712
+ #: classes/filesystem.php:65
2713
+ msgid "Filesystem error."
2714
  msgstr ""
2715
 
2716
+ #: classes/filesystem.php:72
2717
+ msgid "Unable to locate WordPress root directory."
 
 
 
 
2718
  msgstr ""
2719
 
2720
+ #: classes/filesystem.php:76
2721
+ msgid "Unable to locate WordPress content directory (wp-content)."
2722
  msgstr ""
2723
 
2724
+ #: classes/filesystem.php:80
2725
+ msgid "Unable to locate needed folder (%s)."
2726
  msgstr ""
2727
 
2728
+ #: classes/frontend_checks.php:100
2729
+ msgid "Random AdSense ads"
2730
  msgstr ""
2731
 
2732
+ #: classes/frontend_checks.php:128
2733
+ msgid "Ad blocker enabled"
2734
  msgstr ""
2735
 
2736
+ #: classes/frontend_checks.php:140
2737
+ msgid "<em>%s</em> filter does not exist"
2738
  msgstr ""
2739
 
2740
+ #: classes/frontend_checks.php:156
2741
+ msgid "Ads are disabled on this page"
 
 
2742
  msgstr ""
2743
 
2744
+ #: classes/frontend_checks.php:169
2745
+ msgid "Ads are disabled in the content of this page"
2746
  msgstr ""
2747
 
2748
+ #: classes/frontend_checks.php:181
2749
+ msgid "the current post ID is 0 "
2750
  msgstr ""
2751
 
2752
+ #: classes/frontend_checks.php:195
2753
+ msgid "Ads are disabled on all pages"
2754
  msgstr ""
2755
 
2756
+ #: classes/frontend_checks.php:208
2757
+ msgid "Ads are disabled on 404 pages"
2758
  msgstr ""
2759
 
2760
+ #: classes/frontend_checks.php:221
2761
+ msgid "Ads are disabled on non singular pages"
 
2762
  msgstr ""
2763
 
2764
+ #: classes/frontend_checks.php:235
2765
+ msgid "Ad IDs: %s"
2766
  msgstr ""
2767
 
2768
+ #: classes/frontend_checks.php:263
2769
+ msgid "IDs: %s"
2770
  msgstr ""
2771
 
2772
+ #: classes/frontend_checks.php:276
2773
+ msgid "The following responsive AdSense ads are not showing up: %s"
2774
  msgstr ""
2775
 
2776
+ #: classes/frontend_checks.php:290
2777
+ msgid "Consent not given"
2778
  msgstr ""
2779
 
2780
+ #: classes/frontend_checks.php:302
2781
+ msgid "Debug Google Ad Manager"
2782
  msgstr ""
2783
 
2784
+ #: classes/frontend_checks.php:313
2785
+ msgid "Auto ads code found"
2786
  msgstr ""
2787
 
2788
+ #: classes/frontend_checks.php:325
2789
+ msgid "highlight ads"
 
2790
  msgstr ""
2791
 
2792
+ #: classes/frontend_checks.php:392
2793
+ msgid "Ad Health"
 
 
2794
  msgstr ""
2795
 
2796
+ #: classes/frontend_checks.php:406
2797
+ msgid "Show %d more notifications"
 
2798
  msgstr ""
2799
 
2800
+ #: classes/frontend_checks.php:423
2801
+ msgid "Everything is fine"
 
 
 
2802
  msgstr ""
2803
 
2804
+ #: classes/frontend_checks.php:491
2805
+ msgid "the following code is used for automatic error detection and only visible to admins"
 
 
 
 
 
2806
  msgstr ""
2807
 
2808
+ #: classes/frontend_checks.php:797
2809
+ #: classes/frontend_checks.php:812
2810
+ msgid "Hi %s"
2811
  msgstr ""
2812
 
2813
+ #: classes/frontend_checks.php:797
2814
+ msgid "Advanced Ads detected AdSense Auto ads (%sx) on this page."
 
2815
  msgstr ""
2816
 
2817
+ #: classes/frontend_checks.php:797
2818
+ #: classes/frontend_checks.php:812
2819
+ msgid "Is that correct?"
 
2820
  msgstr ""
2821
 
2822
+ #: classes/frontend_checks.php:799
2823
+ msgid "All is fine"
2824
  msgstr ""
2825
 
2826
+ #: classes/frontend_checks.php:800
2827
+ msgid "Something is off"
2828
  msgstr ""
2829
 
2830
+ #: classes/frontend_checks.php:802
2831
+ msgid "PS: This is a one-time check from your friendly Advanced Ads plugin. It is only visible to you."
2832
  msgstr ""
2833
 
2834
+ #: classes/frontend_checks.php:812
2835
+ msgid "Advanced Ads detected the AdSense Auto ads code and <strong>no ads on this page</strong>."
 
 
 
 
2836
  msgstr ""
2837
 
2838
+ #: classes/frontend_checks.php:814
2839
+ msgid "This is fine"
2840
  msgstr ""
2841
 
2842
+ #: classes/frontend_checks.php:815
2843
+ msgid "I expected something else"
2844
  msgstr ""
2845
 
2846
+ #: classes/frontend_checks.php:817
2847
+ msgid "PS: this is a one-time check from your friendly Advanced Ads plugin. It is only visible to you."
2848
  msgstr ""
2849
 
2850
+ #: classes/frontend_checks.php:820
2851
+ #: classes/frontend_checks.php:828
2852
+ msgid "Just click on your problem to learn more from our knowledge base."
2853
  msgstr ""
2854
 
2855
+ #: classes/frontend_checks.php:821
2856
+ msgid "I want to disable AdSense Auto ads"
2857
  msgstr ""
2858
+
2859
+ #: classes/frontend_checks.php:822
2860
+ #: classes/frontend_checks.php:829
2861
+ msgid "I don’t see any Auto ads"
2862
  msgstr ""
2863
 
2864
+ #: classes/frontend_checks.php:823
2865
+ msgid "I only see blank space"
2866
  msgstr ""
2867
 
2868
+ #: classes/frontend_checks.php:824
2869
+ msgid "I want to change the position of the ads"
 
 
2870
  msgstr ""
2871
 
2872
+ #: classes/frontend_checks.php:825
2873
+ #: modules/gadsense/includes/class-network-adsense.php:202
2874
+ msgid "Display Auto ads only on specific pages"
2875
  msgstr ""
2876
 
2877
+ #: classes/frontend_checks.php:830
2878
+ msgid "How to look for the Auto ads code"
2879
  msgstr ""
2880
 
2881
+ #: classes/frontend_checks.php:831
2882
+ msgid "I have another question or problem"
2883
  msgstr ""
2884
 
2885
+ #: classes/frontend_checks.php:834
2886
+ msgid "Closing the message"
2887
  msgstr ""
2888
 
2889
+ #: classes/visitor-conditions.php:40
2890
+ msgid "device"
2891
  msgstr ""
2892
 
2893
+ #: classes/visitor-conditions.php:41
2894
+ msgid "Display ads only on mobile devices or hide them."
2895
  msgstr ""
2896
 
2897
+ #: classes/visitor-conditions.php:47
2898
+ msgid "logged-in visitor"
2899
  msgstr ""
2900
 
2901
+ #: classes/visitor-conditions.php:48
2902
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
2903
  msgstr ""
2904
 
2905
+ #. translators: %s is a URL. Please don’t change it.
2906
+ #: classes/visitor-conditions.php:119
2907
+ msgid "Display ads by the available space on the device or target tablets with the <a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
2908
  msgstr ""
2909
 
2910
+ #: classes/visitor-conditions.php:270
2911
+ msgid "browser language"
2912
  msgstr ""
2913
 
2914
+ #: classes/visitor-conditions.php:271
2915
+ msgid "cookie"
2916
  msgstr ""
2917
 
2918
+ #: classes/visitor-conditions.php:272
2919
+ msgid "max. ad clicks"
2920
  msgstr ""
2921
 
2922
+ #: classes/visitor-conditions.php:273
2923
+ msgid "max. ad impressions"
2924
  msgstr ""
2925
 
2926
+ #: classes/visitor-conditions.php:274
2927
+ msgid "new visitor"
 
2928
  msgstr ""
2929
 
2930
+ #: classes/visitor-conditions.php:275
2931
+ msgid "page impressions"
 
2932
  msgstr ""
2933
 
2934
+ #: classes/visitor-conditions.php:276
2935
+ msgid "referrer url"
 
2936
  msgstr ""
2937
 
2938
+ #: classes/visitor-conditions.php:277
2939
+ msgid "user agent"
 
2940
  msgstr ""
2941
 
2942
+ #: classes/visitor-conditions.php:278
2943
+ msgid "user can (capabilities)"
2944
  msgstr ""
2945
 
2946
+ #: classes/visitor-conditions.php:279
2947
+ msgid "user role"
2948
  msgstr ""
2949
 
2950
+ #: classes/visitor-conditions.php:282
2951
+ msgid "geo location"
 
 
 
 
2952
  msgstr ""
2953
 
2954
+ #: classes/visitor-conditions.php:285
2955
+ msgid "browser width"
 
 
2956
  msgstr ""
2957
 
2958
+ #: classes/widget.php:26
2959
+ msgid "Display Ads and Ad Groups."
 
 
2960
  msgstr ""
2961
 
2962
+ #: classes/widget.php:107
2963
+ msgid "Title:"
 
2964
  msgstr ""
2965
 
2966
+ #: includes/array_ad_conditions.php:39
2967
+ msgid "Post Types"
 
2968
  msgstr ""
2969
 
2970
+ #: includes/array_ad_conditions.php:45
2971
+ msgid "Categories, Tags and Taxonomies"
2972
  msgstr ""
2973
 
2974
+ #: includes/array_ad_conditions.php:46
2975
+ msgid "Choose terms from public category, tag and other taxonomies a post must belong to in order to have ads."
2976
  msgstr ""
2977
 
2978
+ #: includes/array_ad_conditions.php:51
2979
+ msgid "Category Archives"
2980
  msgstr ""
2981
 
2982
+ #: includes/array_ad_conditions.php:52
2983
+ msgid "comma seperated IDs of category archives"
2984
  msgstr ""
2985
 
2986
+ #: includes/array_ad_conditions.php:57
2987
+ msgid "Individual Posts, Pages and Public Post Types"
2988
  msgstr ""
2989
 
2990
+ #: modules/ad-blocker/admin/admin.php:96
2991
+ msgid "Ad blocker fix"
 
 
2992
  msgstr ""
2993
 
2994
+ #: modules/ad-blocker/admin/admin.php:150
2995
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:372
2996
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
 
2997
  msgstr ""
2998
 
2999
+ #: modules/ad-blocker/admin/admin.php:165
3000
+ msgid "The asset folder was rebuilt successfully"
 
 
3001
  msgstr ""
3002
 
3003
+ #: modules/ad-blocker/admin/admin.php:226
3004
+ msgid "There is no writable upload folder"
 
 
3005
  msgstr ""
3006
 
3007
+ #: modules/ad-blocker/admin/admin.php:255
3008
+ msgid "Unable to rename \"%s\" directory"
 
 
3009
  msgstr ""
3010
 
3011
+ #: modules/ad-blocker/admin/admin.php:271
3012
+ #: modules/ad-blocker/admin/admin.php:284
3013
+ #: modules/ad-blocker/admin/admin.php:301
3014
+ msgid "Unable to copy assets to the \"%s\" directory"
 
3015
  msgstr ""
3016
 
3017
+ #: modules/ad-blocker/admin/admin.php:334
3018
+ #: modules/ad-blocker/admin/admin.php:419
3019
+ msgid "We do not have direct write access to the \"%s\" directory"
 
 
 
 
3020
  msgstr ""
3021
 
3022
+ #: modules/ad-blocker/admin/admin.php:430
3023
+ msgid "Unable to copy files to %s"
 
3024
  msgstr ""
3025
 
3026
+ #: modules/ad-blocker/admin/views/rebuild_form.php:1
3027
+ msgid "Ad blocker file folder"
3028
  msgstr ""
3029
 
3030
+ #: modules/ad-blocker/admin/views/rebuild_form.php:10
3031
+ msgid "Upload folder is not writable"
3032
  msgstr ""
3033
 
3034
+ #: modules/ad-blocker/admin/views/rebuild_form.php:23
3035
+ msgid "Asset path"
3036
  msgstr ""
3037
 
3038
+ #: modules/ad-blocker/admin/views/rebuild_form.php:27
3039
+ msgid "Asset URL"
3040
  msgstr ""
3041
 
3042
+ #: modules/ad-blocker/admin/views/rebuild_form.php:31
3043
+ msgid "Rename assets"
3044
  msgstr ""
3045
 
3046
+ #: modules/ad-blocker/admin/views/rebuild_form.php:34
3047
+ msgid "Check if you want to change the names of the assets"
3048
  msgstr ""
3049
 
3050
+ #: modules/ad-blocker/admin/views/rebuild_form.php:43
3051
+ msgid "Please, rebuild the asset folder. All assets will be located in <strong>%s</strong>"
3052
  msgstr ""
3053
 
3054
+ #: modules/ad-blocker/admin/views/rebuild_form.php:46
3055
+ msgid "Rebuild asset folder"
3056
  msgstr ""
3057
 
3058
+ #: modules/ad-blocker/admin/views/setting-use-adblocker.php:4
3059
+ msgid "The ad block disguise can only be set by the super admin on the main site in the network."
3060
  msgstr ""
3061
 
3062
+ #: modules/ad-blocker/admin/views/setting-use-adblocker.php:6
3063
+ msgid "Prevents ad block software from breaking your website when blocking asset files (.js, .css)."
3064
  msgstr ""
3065
 
3066
+ #: modules/ad-blocker/admin/views/setting-use-adblocker.php:8
3067
+ msgid "Learn how to display alternative content to ad block users <a href=\"%s\" target=\"_blank\">in the manual</a>."
 
3068
  msgstr ""
3069
 
3070
+ #: modules/adblock-finder/admin/admin.php:16
3071
+ msgid "Ad Blocker"
 
 
 
3072
  msgstr ""
3073
 
3074
+ #: modules/adblock-finder/admin/admin.php:23
3075
+ msgid "Ad blocker counter"
 
 
3076
  msgstr ""
3077
 
3078
+ #: modules/adblock-finder/admin/views/setting-ga.php:2
3079
+ msgid "Want to know how many of your visitors are using an ad blocker? Enter your Google Analytics property ID above to count them."
 
 
3080
  msgstr ""
3081
 
3082
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:176
3083
+ msgid "The ads.txt file cannot be placed because the URL contains a subdirectory. You need to make the file available at %s"
 
 
3084
  msgstr ""
3085
 
3086
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:187
3087
+ msgid "The file is available on %s."
 
 
 
3088
  msgstr ""
3089
 
3090
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:191
3091
+ msgid "The file was not created."
 
3092
  msgstr ""
3093
 
3094
+ #. translators: %s is a service or plugin name.
3095
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:197
3096
+ msgid "Find the solution here"
 
 
3097
  msgstr ""
3098
 
3099
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:208
3100
+ msgid "Import & Replace"
3101
  msgstr ""
3102
 
3103
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:210
3104
+ msgid "Move the content of the existing ads.txt file into Advanced Ads and remove it."
3105
  msgstr ""
3106
 
3107
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:217
3108
+ #: modules/ads-txt/admin/views/setting-additional-content.php:4
3109
+ msgid "An error occured: %s."
 
 
 
3110
  msgstr ""
3111
 
3112
+ #. translators: %s the line that may need to be added manually
3113
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:230
3114
+ msgid "If your site is located on a subdomain, you need to add the following line to the ads.txt file of the root domain: %s"
 
3115
  msgstr ""
3116
 
3117
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:345
3118
+ msgid "The ads.txt is now managed with Advanced Ads."
3119
  msgstr ""
3120
 
3121
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:390
3122
+ msgid "Not the main blog"
3123
  msgstr ""
3124
 
3125
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:419
3126
+ msgid "Could not delete the existing ads.txt file"
 
 
 
3127
  msgstr ""
3128
 
3129
+ #: modules/ads-txt/admin/class-advanced-ads-ads-txt-admin.php:422
3130
+ msgid "Could not find the existing ads.txt file"
3131
  msgstr ""
3132
 
3133
+ #: modules/ads-txt/admin/views/setting-additional-content.php:2
3134
+ msgid "Additional records to add to the file, one record per line. AdSense is added automatically."
3135
  msgstr ""
3136
 
3137
+ #: modules/ads-txt/admin/views/setting-additional-content.php:5
3138
+ msgid "Check for problems"
 
3139
  msgstr ""
3140
 
3141
+ #: modules/ads-txt/admin/views/setting-create.php:19
3142
+ msgid "Generate a single ads.txt file for all sites in the multisite network."
3143
  msgstr ""
3144
 
3145
+ #: modules/ads-txt/admin/views/setting-create.php:27
3146
+ msgid "Usually, this should be enabled on the main site of the network - often the one without a subdomain or subdirectory."
3147
  msgstr ""
3148
 
3149
  #: modules/gadsense/admin/admin.php:121
3150
+ msgid "Responsive AdSense ads don’t work reliably with <em>Position</em> set to left or right. Either switch the <em>Type</em> to \"normal\" or follow <a href=\"%s\" target=\"_blank\">this tutorial</a> if you want the ad to be wrapped in text."
 
 
 
 
 
3151
  msgstr ""
3152
 
3153
  #: modules/gadsense/admin/admin.php:127
3154
+ msgid "<a href=\"%s\" target=\"_blank\">Install the free AdSense In-feed add-on</a> in order to place ads between posts."
 
 
 
3155
  msgstr ""
3156
 
3157
  #: modules/gadsense/admin/admin.php:134
3158
+ msgid "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to define the exact size for each browser width or choose between horizontal, vertical, or rectangle formats."
 
 
 
 
3159
  msgstr ""
3160
 
3161
  #: modules/gadsense/admin/admin.php:182
3162
+ msgid "The AdSense verification and Auto ads code should be set up in the <a href=\"%s\">AdSense settings</a>. Click on the following button to enable it now."
 
 
 
 
3163
  msgstr ""
3164
 
3165
  #: modules/gadsense/admin/admin.php:183
3166
  msgid "Activate"
3167
  msgstr ""
3168
 
3169
+ #: modules/gadsense/admin/dummy.php:61
3170
+ msgid "Dummy Account Id"
3171
  msgstr ""
3172
 
3173
+ #: modules/gadsense/admin/views/adsense-account.php:29
3174
+ msgid "AdSense warnings"
3175
  msgstr ""
3176
 
3177
+ #: modules/gadsense/admin/views/adsense-account.php:30
3178
+ #: modules/gadsense/admin/views/adsense-account.php:62
3179
+ msgid "dismiss"
3180
  msgstr ""
3181
 
3182
+ #: modules/gadsense/admin/views/adsense-account.php:74
3183
+ msgid "Revoke API acccess"
3184
  msgstr ""
3185
 
3186
+ #: modules/gadsense/admin/views/adsense-account.php:80
3187
+ msgid "Account holder name"
3188
  msgstr ""
3189
 
3190
+ #: modules/gadsense/admin/views/adsense-account.php:83
3191
+ #: modules/gadsense/includes/class-ad-type-adsense.php:91
3192
+ msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
3193
  msgstr ""
3194
 
3195
+ #: modules/gadsense/admin/views/adsense-account.php:85
3196
+ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
 
3197
  msgstr ""
3198
 
3199
+ #: modules/gadsense/admin/views/adsense-account.php:92
3200
+ msgid "Yes, I have an AdSense account"
3201
  msgstr ""
3202
 
3203
+ #: modules/gadsense/admin/views/adsense-account.php:94
3204
+ msgid "Configure everything manually"
3205
  msgstr ""
3206
 
3207
+ #: modules/gadsense/admin/views/adsense-account.php:97
3208
+ msgid "No, I still don't have an AdSense account"
 
3209
  msgstr ""
3210
 
3211
+ #: modules/gadsense/admin/views/adsense-account.php:98
3212
+ msgid "Get a free AdSense account"
 
 
 
3213
  msgstr ""
3214
 
3215
+ #: modules/gadsense/admin/views/adsense-account.php:151
3216
+ msgid "How to choose specific positions for AdSense ad units"
 
 
3217
  msgstr ""
3218
 
3219
+ #. translators: %1$s is the opening link tag to our manual; %2$s is the appropriate closing link tag; %3$s is the opening link tag to our help forum; %4$s is the appropriate closing link tag
3220
+ #: modules/gadsense/admin/views/adsense-account.php:155
3221
+ msgid "Problems with AdSense? Check out the %1$smanual%2$s or %3$sask here%4$s."
3222
  msgstr ""
3223
 
3224
+ #: modules/gadsense/admin/views/adsense-account.php:163
3225
+ #: modules/gadsense/admin/views/external-ads-links.php:38
3226
+ msgid "Can not connect AdSense account. PHP version is too low."
3227
  msgstr ""
3228
 
3229
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:53
3230
+ msgid "The ad details couldn't be retrieved from the ad code"
3231
  msgstr ""
3232
 
3233
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:54
3234
+ msgid "Warning: The AdSense account from this code does not match the one set in the Advanced Ads options."
3235
  msgstr ""
3236
 
3237
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:62
3238
+ msgid "Copy the ad code from your AdSense account, paste it into the area below and click on <em>Get details</em>."
3239
  msgstr ""
3240
 
3241
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
3242
+ msgid "Get details"
 
 
3243
  msgstr ""
3244
 
3245
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:65
3246
+ msgid "cancel"
 
3247
  msgstr ""
3248
 
3249
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:67
3250
+ msgid "connect to your AdSense account"
 
3251
  msgstr ""
3252
 
3253
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
3254
+ msgid "Ad Slot ID"
 
3255
  msgstr ""
3256
 
3257
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:87
3258
+ msgid "Publisher ID: %s"
 
3259
  msgstr ""
3260
 
3261
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:91
3262
+ msgid "The ad slot ID is either a number or empty and not the same as the publisher ID."
 
3263
  msgstr ""
3264
 
3265
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:102
3266
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
 
3267
  msgstr ""
3268
 
3269
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:108
3270
+ msgid "Normal"
 
3271
  msgstr ""
3272
 
3273
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:110
3274
+ msgid "Responsive (Matched Content)"
 
3275
  msgstr ""
3276
 
3277
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:111
3278
+ msgid "Link ads"
 
3279
  msgstr ""
3280
 
3281
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:112
3282
+ msgid "Link ads (Responsive)"
 
3283
  msgstr ""
3284
 
3285
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:113
3286
+ msgid "In-article"
 
 
3287
  msgstr ""
3288
 
3289
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:114
3290
+ msgid "In-feed"
 
3291
  msgstr ""
3292
 
3293
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:119
3294
+ msgid "Resizing"
3295
  msgstr ""
3296
 
3297
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:128
3298
+ msgid "Layout"
 
 
 
3299
  msgstr ""
3300
 
3301
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:133
3302
+ msgid "Layout-Key"
 
3303
  msgstr ""
3304
 
3305
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:138
3306
+ msgid "Clearfix"
 
 
 
 
3307
  msgstr ""
3308
 
3309
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:141
3310
+ msgid "Enable this box if responsive ads cover something on your site"
 
3311
  msgstr ""
3312
 
3313
+ #: modules/gadsense/admin/views/auto-ads-video.php:4
3314
+ msgid "How to enable Auto ads in 30 seconds (video tutorial)"
 
 
 
 
3315
  msgstr ""
3316
 
3317
+ #: modules/gadsense/admin/views/connect-adsense.php:35
3318
+ msgid "Please enter the confirmation code."
 
3319
  msgstr ""
3320
 
3321
+ #. Translators: 1: opening a tag to open Google Adsense modal 2: closing a tag
3322
+ #: modules/gadsense/admin/views/connect-adsense.php:39
3323
+ msgid "This is not the correct confirmation code. %1$sPlease try again%2$s."
 
3324
  msgstr ""
3325
 
3326
+ #: modules/gadsense/admin/views/connect-adsense.php:43
3327
+ #: modules/gadsense/includes/class-network-adsense.php:194
3328
+ msgid "Insert the AdSense header code used for verification and the Auto Ads feature."
 
3329
  msgstr ""
3330
 
3331
+ #: modules/gadsense/admin/views/connect-adsense.php:45
3332
+ msgid "Submit code"
 
3333
  msgstr ""
3334
 
3335
+ #: modules/gadsense/admin/views/connect-adsense.php:53
3336
+ msgid "Cannot access your account information."
 
 
3337
  msgstr ""
3338
 
3339
+ #: modules/gadsense/admin/views/connect-adsense.php:59
3340
+ msgid "Please select an account"
3341
  msgstr ""
3342
 
3343
+ #: modules/gadsense/admin/views/connect-adsense.php:64
3344
+ msgid "Use this account"
 
 
3345
  msgstr ""
3346
 
3347
+ #. translators: 1: The name of an ad network.
3348
+ #: modules/gadsense/admin/views/external-ads-links.php:12
3349
+ msgid "Insert new %1$s code"
3350
  msgstr ""
3351
 
3352
+ #: modules/gadsense/admin/views/external-ads-links.php:18
3353
+ msgid "Get ad code from your linked account"
3354
  msgstr ""
3355
 
3356
+ #. translators: 1: The name of an ad network.
3357
+ #: modules/gadsense/admin/views/external-ads-links.php:24
3358
+ msgid "Set up %1$s code manually"
3359
  msgstr ""
3360
 
3361
+ #. translators: 1: The name of an ad network.
3362
+ #: modules/gadsense/admin/views/external-ads-links.php:31
3363
+ msgid "Connect to %1$s"
3364
  msgstr ""
3365
 
3366
+ #: modules/gadsense/admin/views/external-ads-list.php:34
3367
+ #: modules/gadsense/admin/views/external-ads-list.php:78
3368
+ msgid "Update the ad units list"
 
3369
  msgstr ""
3370
 
3371
+ #: modules/gadsense/admin/views/external-ads-list.php:46
3372
+ #: modules/gadsense/admin/views/external-ads-list.php:56
3373
+ msgctxt "AdSense ad"
3374
+ msgid "Slot ID"
3375
  msgstr ""
3376
 
3377
+ #: modules/gadsense/admin/views/external-ads-list.php:47
3378
+ #: modules/gadsense/admin/views/external-ads-list.php:57
3379
+ msgctxt "AdSense ad"
3380
+ msgid "Type"
3381
+ msgstr ""
3382
+
3383
+ #: modules/gadsense/admin/views/external-ads-list.php:48
3384
+ #: modules/gadsense/admin/views/external-ads-list.php:58
3385
+ msgid "Size"
3386
+ msgstr ""
3387
+
3388
+ #: modules/gadsense/admin/views/external-ads-list.php:65
3389
+ msgid "No active ad units found"
3390
+ msgstr ""
3391
+
3392
+ #: modules/gadsense/admin/views/external-ads-list.php:67
3393
+ msgid "Show all ad units"
3394
  msgstr ""
3395
 
3396
+ #: modules/gadsense/admin/views/external-ads-list.php:76
3397
+ msgid "No ad units found"
 
 
 
3398
  msgstr ""
3399
 
3400
+ #: modules/gadsense/admin/views/external-ads-list.php:102
3401
+ msgid "Get the code for this ad"
 
3402
  msgstr ""
3403
 
3404
+ #: modules/gadsense/admin/views/external-ads-list.php:107
3405
+ msgid "Ad can't be imported, click for details"
3406
  msgstr ""
3407
 
3408
+ #: modules/gadsense/admin/views/external-ads-list.php:119
3409
+ msgid "Unrecognized ad code"
3410
  msgstr ""
3411
 
3412
+ #: modules/gadsense/admin/views/external-ads-list.php:125
3413
+ msgid "This ad type can currently not be imported from AdSense."
3414
  msgstr ""
3415
 
3416
+ #: modules/gadsense/admin/views/external-ads-list.php:128
3417
+ msgid "You can proceed with one of the following solutions"
 
 
3418
  msgstr ""
3419
 
3420
+ #. Translators: 1: opening tag for AdSense account link 2: opening tag for a link to insert ad code 3: closing a tag
3421
+ #: modules/gadsense/admin/views/external-ads-list.php:134
3422
+ msgid "%1$sCopy the code from your AdSense account%3$s and %2$sinsert a new AdSense code here%3$s."
 
3423
  msgstr ""
3424
 
3425
+ #. Translators: 1: opening tag for a link to create an ad manually 2: closing a tag
3426
+ #: modules/gadsense/admin/views/external-ads-list.php:140
3427
+ msgid "%1$sCreate an AdSense code manually%2$s: Select the <em>Normal</em> or <em>Responsive</em> type and the size."
 
 
 
3428
  msgstr ""
3429
 
3430
+ #: modules/gadsense/admin/views/external-ads-list.php:147
3431
+ msgid "Choose a different ad from your AdSense account above."
3432
  msgstr ""
3433
 
3434
+ #: modules/gadsense/includes/class-ad-type-adsense.php:34
3435
+ msgid "AdSense ad"
3436
  msgstr ""
3437
 
3438
+ #: modules/gadsense/includes/class-ad-type-adsense.php:35
3439
+ msgid "Use ads from your Google AdSense account"
3440
  msgstr ""
3441
 
3442
+ #: modules/gadsense/includes/class-ad-type-adsense.php:132
3443
+ msgid "Your AdSense Publisher ID is missing."
3444
  msgstr ""
3445
 
3446
+ #: modules/gadsense/includes/class-adsense-report.php:472
3447
+ #: modules/gadsense/includes/class-adsense-report.php:498
3448
+ msgid "Never"
 
 
3449
  msgstr ""
3450
 
3451
+ #: modules/gadsense/includes/class-gadsense-data.php:40
3452
+ msgid "Auto"
 
 
 
3453
  msgstr ""
3454
 
3455
+ #: modules/gadsense/includes/class-mapi.php:338
3456
+ msgid "Error while retrieving ad code for \"%s\"."
 
 
 
 
 
 
3457
  msgstr ""
3458
 
3459
+ #: modules/gadsense/includes/class-mapi.php:365
3460
+ msgid "Invalid response while retrieving ad code for \"%s\"."
3461
  msgstr ""
3462
 
3463
+ #: modules/gadsense/includes/class-mapi.php:406
3464
+ msgid "Error while retrieving adUnits list for \"%s\"."
 
 
 
3465
  msgstr ""
3466
 
3467
+ #: modules/gadsense/includes/class-mapi.php:413
3468
+ msgid "Invalid response while retrieving adUnits list for \"%s\"."
 
 
 
3469
  msgstr ""
3470
 
3471
+ #: modules/gadsense/includes/class-mapi.php:421
3472
+ msgid "Reason:"
3473
  msgstr ""
3474
 
3475
+ #: modules/gadsense/includes/class-mapi.php:422
3476
+ msgid "Message:"
 
 
3477
  msgstr ""
3478
 
3479
+ #. translators: %1$s is the AdSense publisher ID; %2$s a starting a tag to the AdSense ad unit list and %3$s the closing link.
3480
+ #: modules/gadsense/includes/class-mapi.php:437
3481
+ msgid "The account \"%1$s\" does not seem to have any ad units. Please create some %2$shere%3$s."
3482
  msgstr ""
3483
 
3484
+ #: modules/gadsense/includes/class-mapi.php:499
3485
+ msgid "It seems that some changes have been made in the Advanced Ads settings. Please refresh this page."
 
 
3486
  msgstr ""
3487
 
3488
+ #: modules/gadsense/includes/class-mapi.php:506
3489
+ msgid "Advanced Ads does not have access to your account (<code>%s</code>) anymore."
3490
  msgstr ""
3491
 
3492
+ #: modules/gadsense/includes/class-mapi.php:548
3493
+ msgid "error while renewing access token for \"%s\""
3494
  msgstr ""
3495
 
3496
+ #: modules/gadsense/includes/class-mapi.php:573
3497
+ msgid "invalid response received while renewing access token for \"%s\""
 
3498
  msgstr ""
3499
 
3500
+ #: modules/gadsense/includes/class-mapi.php:642
3501
+ msgid "This ad code is from a different AdSense Account"
3502
  msgstr ""
3503
 
3504
+ #: modules/gadsense/includes/class-mapi.php:867
3505
+ msgid "Invalid response body while retrieving account alerts"
 
 
 
3506
  msgstr ""
3507
 
3508
+ #: modules/gadsense/includes/class-mapi.php:876
3509
+ msgid "error while retrieving account alerts"
3510
  msgstr ""
3511
 
3512
+ #: modules/gadsense/includes/class-mapi.php:1031
3513
+ msgid "No token provided. Token data needed to get account details."
3514
  msgstr ""
3515
 
3516
+ #: modules/gadsense/includes/class-mapi.php:1095
3517
+ msgid "An error occurred while requesting account details."
3518
  msgstr ""
3519
 
3520
+ #: modules/gadsense/includes/class-mapi.php:1320
3521
+ #: modules/gadsense/includes/class-network-adsense.php:384
3522
+ msgctxt "AdSense ad type"
3523
+ msgid "Matched Content"
3524
  msgstr ""
3525
 
3526
+ #: modules/gadsense/includes/class-mapi.php:1323
3527
+ #: modules/gadsense/includes/class-network-adsense.php:385
3528
+ msgctxt "AdSense ad type"
3529
+ msgid "In-article"
 
 
3530
  msgstr ""
3531
 
3532
+ #: modules/gadsense/includes/class-mapi.php:1325
3533
+ #: modules/gadsense/includes/class-network-adsense.php:386
3534
+ msgctxt "AdSense ad type"
3535
+ msgid "In-feed"
3536
  msgstr ""
3537
 
3538
+ #: modules/gadsense/includes/class-mapi.php:1330
3539
+ #: modules/gadsense/includes/class-network-adsense.php:387
3540
+ msgctxt "AdSense ad type"
3541
+ msgid "Display"
3542
  msgstr ""
3543
 
3544
+ #: modules/gadsense/includes/class-mapi.php:1332
3545
+ #: modules/gadsense/includes/class-network-adsense.php:388
3546
+ msgctxt "AdSense ad type"
3547
+ msgid "Link"
3548
  msgstr ""
3549
 
3550
+ #: modules/gadsense/includes/class-mapi.php:1480
3551
+ msgid "There are one or more warnings about the currently linked AdSense account. You can view them <a href=\"%s\">here</a>"
3552
  msgstr ""
3553
 
3554
+ #. translators: 1:A link to the settings page translators: 2:The name of an ad network
3555
+ #: modules/gadsense/includes/class-mapi.php:1567
3556
+ msgid "Please try to <a href=\"%1$s\" target=\"_blank\">reconnect to your %2$s account</a>."
3557
  msgstr ""
3558
 
3559
+ #: modules/gadsense/includes/class-network-adsense.php:34
3560
+ msgid "AdSense account"
 
 
 
 
3561
  msgstr ""
3562
 
3563
+ #: modules/gadsense/includes/class-network-adsense.php:43
3564
+ msgid "Verification code & Auto ads"
 
 
3565
  msgstr ""
3566
 
3567
+ #: modules/gadsense/includes/class-network-adsense.php:54
3568
+ msgid "Auto ads"
 
 
3569
  msgstr ""
3570
 
3571
+ #: modules/gadsense/includes/class-network-adsense.php:54
3572
+ msgid "Disable top anchor ad"
3573
  msgstr ""
3574
 
3575
+ #: modules/gadsense/includes/class-network-adsense.php:64
3576
+ msgid "Disable stats"
3577
  msgstr ""
3578
 
3579
+ #: modules/gadsense/includes/class-network-adsense.php:76
3580
+ msgid "Limit to 3 ads"
 
3581
  msgstr ""
3582
 
3583
+ #: modules/gadsense/includes/class-network-adsense.php:86
3584
+ msgid "Disable violation warnings"
3585
  msgstr ""
3586
 
3587
+ #: modules/gadsense/includes/class-network-adsense.php:94
3588
+ msgid "Transparent background"
3589
  msgstr ""
3590
 
3591
+ #: modules/gadsense/includes/class-network-adsense.php:102
3592
+ msgid "Full width responsive ads on mobile"
3593
  msgstr ""
3594
 
3595
+ #: modules/gadsense/includes/class-network-adsense.php:146
3596
+ msgid "Limit to %d AdSense ads"
3597
  msgstr ""
3598
 
3599
+ #: modules/gadsense/includes/class-network-adsense.php:150
3600
+ msgid "There is no explicit limit for AdSense ads anymore, but you can still use this setting to prevent too many AdSense ads to show accidentally on your site."
3601
  msgstr ""
3602
 
3603
+ #: modules/gadsense/includes/class-network-adsense.php:154
3604
+ msgid "Due to technical restrictions, the limit does not work on placements with cache-busting enabled."
3605
  msgstr ""
3606
 
3607
+ #: modules/gadsense/includes/class-network-adsense.php:166
3608
+ msgid "Enable this box if you don’t want Google Auto ads to place anchor ads at the top of your page."
3609
  msgstr ""
3610
 
3611
+ #: modules/gadsense/includes/class-network-adsense.php:179
3612
+ msgid "Enable this option to stop loading stats from AdSense into your WordPress backend."
3613
  msgstr ""
3614
 
3615
+ #: modules/gadsense/includes/class-network-adsense.php:199
3616
+ msgid "Adjust Auto ads options"
 
 
 
3617
  msgstr ""
3618
 
3619
+ #: modules/gadsense/includes/class-network-adsense.php:201
3620
+ msgid "Please read <a href=\"%s\" target=\"_blank\">this article</a> if <strong>ads appear in random places</strong>."
 
3621
  msgstr ""
3622
 
3623
+ #: modules/gadsense/includes/class-network-adsense.php:203
3624
+ msgid "Auto ads on AMP pages"
 
3625
  msgstr ""
3626
 
3627
+ #: modules/gadsense/includes/class-network-adsense.php:216
3628
+ msgid "Disable warnings about potential violations of the AdSense terms."
 
 
3629
  msgstr ""
3630
 
3631
+ #: modules/gadsense/includes/class-network-adsense.php:217
3632
+ msgid "Our <a href=\"%s\" target=\"_blank\">Ad Health</a> feature monitors if AdSense is implemented correctly on your site. It also considers ads not managed with Advanced Ads. Enable this option to remove these checks"
 
 
3633
  msgstr ""
3634
 
3635
+ #: modules/gadsense/includes/class-network-adsense.php:228
3636
+ msgid "Enable this option in case your theme adds an unfortunate background color to AdSense ads."
 
3637
  msgstr ""
3638
 
3639
+ #: modules/gadsense/includes/class-network-adsense.php:240
3640
+ msgid "enable"
3641
  msgstr ""
3642
 
3643
+ #: modules/gadsense/includes/class-network-adsense.php:241
3644
+ msgid "disable"
3645
  msgstr ""
3646
 
3647
+ #: modules/gadsense/includes/class-network-adsense.php:246
3648
+ msgid "Whether your responsive ad unit may expand to <a href='%s' target='blank'>use the full width</a> of your visitor's mobile device screen"
3649
  msgstr ""
3650
 
3651
+ #: modules/import-export/classes/import.php:66
3652
+ msgid "Please enter XML content"
3653
  msgstr ""
3654
 
3655
+ #: modules/import-export/classes/import.php:147
3656
+ #: modules/import-export/classes/import.php:565
3657
+ msgid "New attachment created <em>%s</em> %s"
3658
  msgstr ""
3659
 
3660
+ #: modules/import-export/classes/import.php:179
3661
+ msgid "Failed to import <em>%s</em>"
3662
  msgstr ""
3663
 
3664
+ #: modules/import-export/classes/import.php:187
3665
+ msgid "New ad created: <em>%s</em> %s"
3666
  msgstr ""
3667
 
3668
+ #: modules/import-export/classes/import.php:230
3669
+ msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
3670
  msgstr ""
3671
 
3672
+ #: modules/import-export/classes/import.php:292
3673
+ msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
 
 
 
 
3674
  msgstr ""
3675
 
3676
+ #: modules/import-export/classes/import.php:294
3677
+ msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
 
 
 
 
3678
  msgstr ""
3679
 
3680
+ #: modules/import-export/classes/import.php:359
3681
+ msgid "Placement <em>%s</em> created"
3682
  msgstr ""
3683
 
3684
+ #: modules/import-export/classes/import.php:476
3685
+ msgid "Option was updated: <em>%s</em>"
3686
  msgstr ""
3687
 
3688
+ #: modules/import-export/classes/import.php:479
3689
+ msgid "Option already exists: <em>%s</em>"
 
 
3690
  msgstr ""
3691
 
3692
+ #: modules/import-export/classes/import.php:501
3693
+ msgid "Failed to create import directory <em>%s</em>"
 
 
3694
  msgstr ""
3695
 
3696
+ #: modules/import-export/classes/import.php:506
3697
+ msgid "Import directory is not writable: <em>%s</em>"
3698
  msgstr ""
3699
 
3700
+ #: modules/import-export/classes/import.php:514
3701
+ msgid "File is empty, uploads are disabled or post_max_size is smaller than upload_max_filesize in php.ini"
3702
  msgstr ""
3703
 
3704
+ #: modules/import-export/classes/import.php:524
3705
+ msgid "Failed to upload file, error: <em>%s</em>"
3706
  msgstr ""
3707
 
3708
+ #: modules/import-export/classes/import.php:529
3709
+ msgid "File is empty."
3710
  msgstr ""
3711
 
3712
+ #: modules/import-export/classes/import.php:534
3713
+ msgid "The file could not be created: <em>%s</em>. This is probably a permissions problem"
 
3714
  msgstr ""
3715
 
3716
+ #: modules/import-export/classes/import.php:607
3717
+ msgid "Invalid filetype <em>%s</em>"
 
 
3718
  msgstr ""
3719
 
3720
+ #: modules/import-export/classes/import.php:612
3721
+ #: modules/import-export/classes/import.php:619
3722
+ #: modules/import-export/classes/import.php:627
3723
+ #: modules/import-export/classes/import.php:642
3724
+ msgid "Error getting remote image <em>%s</em>"
3725
  msgstr ""
3726
 
3727
+ #: modules/import-export/classes/import.php:636
3728
+ msgid "Zero size file downloaded <em>%s</em>"
3729
  msgstr ""
3730
 
3731
+ #: modules/import-export/classes/XmlEncoder.php:61
3732
+ #: modules/import-export/classes/XmlEncoder.php:64
3733
+ #: modules/import-export/classes/XmlEncoder.php:193
3734
+ #: modules/import-export/classes/XmlEncoder.php:196
3735
+ msgid "The %s extension(s) is not loaded"
3736
  msgstr ""
3737
 
3738
+ #: modules/import-export/classes/XmlEncoder.php:75
3739
+ msgctxt "import_export"
3740
+ msgid "The data must be an array"
3741
  msgstr ""
3742
 
3743
+ #: modules/import-export/classes/XmlEncoder.php:103
3744
+ msgctxt "import_export"
3745
+ msgid "The key %s is not valid"
3746
  msgstr ""
3747
 
3748
+ #: modules/import-export/classes/XmlEncoder.php:149
3749
+ msgctxt "import_export"
3750
+ msgid "An unexpected value could not be serialized: %s"
3751
  msgstr ""
3752
 
3753
+ #: modules/import-export/classes/XmlEncoder.php:201
3754
+ msgctxt "import_export"
3755
+ msgid "Invalid XML data, it can not be empty"
3756
  msgstr ""
3757
 
3758
+ #: modules/import-export/classes/XmlEncoder.php:223
3759
+ msgctxt "import_export"
3760
+ msgid "XML error: %s"
3761
  msgstr ""
3762
 
3763
+ #: modules/import-export/views/page.php:16
3764
+ msgid "Export"
3765
  msgstr ""
3766
 
3767
+ #: modules/import-export/views/page.php:17
3768
+ msgid "When you click the button below Advanced Ads will create an XML file for you to save to your computer."
3769
  msgstr ""
3770
 
3771
+ #: modules/import-export/views/page.php:24
3772
+ #: public/class-advanced-ads.php:694
3773
+ msgid "Groups"
3774
  msgstr ""
3775
 
3776
+ #: modules/import-export/views/page.php:28
3777
+ msgid "Download Export File"
3778
  msgstr ""
3779
 
3780
+ #: modules/import-export/views/page.php:33
3781
+ msgid "Import"
 
 
3782
  msgstr ""
3783
 
3784
+ #: modules/import-export/views/page.php:44
3785
+ msgid "Choose an XML file"
3786
  msgstr ""
3787
 
3788
+ #: modules/import-export/views/page.php:45
3789
+ msgid "Copy an XML content"
 
 
3790
  msgstr ""
3791
 
3792
+ #: modules/import-export/views/page.php:52
3793
+ msgid "Before you can upload your import file, you will need to fix the following error:"
 
 
3794
  msgstr ""
3795
 
3796
+ #: modules/import-export/views/page.php:57
3797
+ msgid "Maximum size: %s"
3798
  msgstr ""
3799
 
3800
+ #: modules/import-export/views/page.php:65
3801
+ msgid "Start import"
 
 
3802
  msgstr ""
3803
 
3804
+ #: modules/privacy/admin/admin.php:63
3805
+ msgid "Privacy"
3806
  msgstr ""
3807
 
3808
+ #: modules/privacy/admin/admin.php:84
3809
+ msgid "Enable Privacy module"
3810
  msgstr ""
3811
 
3812
+ #: modules/privacy/admin/admin.php:87
3813
+ msgid "Consent method"
3814
  msgstr ""
3815
 
3816
+ #: modules/privacy/admin/views/setting-ad-ignore-consent.php:2
3817
+ msgid "privacy"
3818
  msgstr ""
3819
 
3820
+ #: modules/privacy/admin/views/setting-ad-ignore-consent.php:6
3821
+ msgid "Ignore <a href=\"%s\">general Privacy settings</a> and display the ad even without consent."
3822
  msgstr ""
3823
 
3824
  #: modules/privacy/admin/views/setting-consent-method.php:12
3830
  msgstr ""
3831
 
3832
  #: modules/privacy/admin/views/setting-enable.php:5
3833
+ msgid "Your users’ consent might get cached and show ads to users who didn’t give their consent yet. "
 
 
3834
  msgstr ""
3835
 
3836
  #: modules/privacy/admin/views/setting-enable.php:6
3837
+ msgid "Cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> solves that."
 
 
 
3838
  msgstr ""
3839
 
3840
+ #: modules/privacy/classes/plugin.php:149
3841
+ msgid "Show all ads even without consent."
3842
  msgstr ""
3843
 
3844
+ #: modules/privacy/classes/plugin.php:150
3845
+ msgid "Cookie"
 
 
 
3846
  msgstr ""
3847
 
3848
+ #: public/class-advanced-ads.php:369
3849
+ msgid "Advanced Ads Error following:"
3850
  msgstr ""
3851
 
3852
+ #. translators: %s is an error message generated by the plugin.
3853
+ #: public/class-advanced-ads.php:373
3854
+ msgid "Advanced Ads Error: %s"
3855
  msgstr ""
3856
 
3857
+ #: public/class-advanced-ads.php:684
3858
+ msgctxt "ad group general name"
3859
+ msgid "Ad Groups & Rotations"
3860
  msgstr ""
3861
 
3862
+ #: public/class-advanced-ads.php:686
3863
+ msgid "Search Ad Groups"
3864
  msgstr ""
3865
 
3866
+ #: public/class-advanced-ads.php:687
3867
+ msgid "All Ad Groups"
3868
  msgstr ""
3869
 
3870
+ #: public/class-advanced-ads.php:688
3871
+ msgid "Parent Ad Groups"
3872
  msgstr ""
3873
 
3874
+ #: public/class-advanced-ads.php:689
3875
+ msgid "Parent Ad Groups:"
 
 
 
3876
  msgstr ""
3877
 
3878
+ #: public/class-advanced-ads.php:690
3879
+ msgid "Edit Ad Group"
3880
  msgstr ""
3881
 
3882
+ #: public/class-advanced-ads.php:691
3883
+ msgid "Update Ad Group"
 
 
3884
  msgstr ""
3885
 
3886
+ #: public/class-advanced-ads.php:692
3887
+ msgid "Add New Ad Group"
 
 
3888
  msgstr ""
3889
 
3890
+ #: public/class-advanced-ads.php:693
3891
+ msgid "New Ad Groups Name"
 
 
 
3892
  msgstr ""
3893
 
3894
+ #: public/class-advanced-ads.php:695
3895
+ msgid "No Ad Group found"
 
 
3896
  msgstr ""
3897
 
3898
+ #: public/class-advanced-ads.php:725
3899
+ msgid "Edit Ad"
 
 
3900
  msgstr ""
3901
 
3902
+ #: public/class-advanced-ads.php:727
3903
+ msgid "View"
3904
  msgstr ""
3905
 
3906
+ #: public/class-advanced-ads.php:728
3907
+ msgid "View the Ad"
3908
  msgstr ""
3909
 
3910
+ #: public/class-advanced-ads.php:729
3911
+ msgid "Search Ads"
 
 
3912
  msgstr ""
3913
 
3914
+ #: public/class-advanced-ads.php:730
3915
+ msgid "No Ads found"
3916
  msgstr ""
3917
 
3918
+ #: public/class-advanced-ads.php:731
3919
+ msgid "No Ads found in Trash"
3920
  msgstr ""
3921
 
3922
+ #: public/class-advanced-ads.php:732
3923
+ msgid "Parent Ad"
3924
+ msgstr ""
3925
+
3926
+ #: public/class-advanced-ads.php:871
3927
+ msgctxt "label above ads"
3928
+ msgid "Advertisements"
3929
+ msgstr ""
3930
+
3931
+ #: public/views/ad-debug.php:6
3932
+ msgid "Ad debug output"
3933
+ msgstr ""
3934
+
3935
+ #: public/views/ad-debug.php:8
3936
+ msgid "Find solutions in the manual"
3937
  msgstr ""
readme.txt CHANGED
@@ -304,6 +304,12 @@ Yes. Advanced Ads is based on WordPress standards and therefore easily customiza
304
 
305
  == Changelog ==
306
 
 
 
 
 
 
 
307
  = 1.17.8 =
308
 
309
  * WPML: placements now deliver also ads translated with WPML when only one of the language versions was assigned to them
304
 
305
  == Changelog ==
306
 
307
+ = untagged =
308
+
309
+ * fixed warning about missing `the_content` filter in WordPress 5.4
310
+ * fixed public warning if the WordPres `widget` function is called with wrong parameters
311
+ * fixed wrong usage of get_current_user
312
+
313
  = 1.17.8 =
314
 
315
  * WPML: placements now deliver also ads translated with WPML when only one of the language versions was assigned to them