Advanced Ads - Version 1.6.17.1

Version Description

  • fixed complex Visitor Condition chains
  • added link to Visitor Conditions manual
  • added Spanish translation
  • fixed expiry time gaps
Download this release

Release Info

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

Code changes from version 1.6.17 to 1.6.17.1

admin/class-advanced-ads-admin.php CHANGED
@@ -572,9 +572,22 @@ class Advanced_Ads_Admin {
572
  $ad = new Advanced_Ads_Ad( $post->ID );
573
 
574
  // get time set for ad or current timestamp (both GMT)
575
- $time_adj = $ad->expiry_date ? $ad->expiry_date : time();
576
- $time_adj = gmdate( 'Y-m-d H:i:s', $time_adj );
577
- list( $curr_year, $curr_month, $curr_day, $curr_hour, $curr_minute ) = explode('-', get_date_from_gmt( $time_adj, 'Y-m-d-H-i' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  $enabled = 1 - empty($ad->expiry_date);
579
 
580
  include ADVADS_BASE_PATH . 'admin/views/ad-submitbox-meta.php';
@@ -704,8 +717,9 @@ class Advanced_Ads_Admin {
704
  if ( !$valid_date ) {
705
  $ad->expiry_date = 0;
706
  } else {
707
- // as PHP 5.2 has not reliable 'u' option need to calculate timestamps this way
708
- $gmDate = get_gmt_from_date($expiration_date, 'Y-m-d-H-i');
 
709
  list( $year, $month, $day, $hour, $minute ) = explode( '-', $gmDate );
710
  $ad->expiry_date = gmmktime($hour, $minute, 0, $month, $day, $year);
711
  }
@@ -1570,6 +1584,49 @@ class Advanced_Ads_Admin {
1570
  echo '</div>';
1571
  }
1572
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1573
 
1574
  /**
1575
  * initiate the admin notices class
@@ -1630,7 +1687,13 @@ class Advanced_Ads_Admin {
1630
 
1631
  // display activation problem
1632
  if( !empty( $license_data->error )) {
1633
- return sprintf( __('License is invalid. Reason: %s'), $license_data->error);
 
 
 
 
 
 
1634
  } else {
1635
  // save license value time
1636
  update_option($options_slug . '-license-expires', $license_data->expires, false);
572
  $ad = new Advanced_Ads_Ad( $post->ID );
573
 
574
  // get time set for ad or current timestamp (both GMT)
575
+ $utc_ts = $ad->expiry_date ? $ad->expiry_date : time();
576
+ $utc_time = date_create( '@' . $utc_ts );
577
+ $tz_option = get_option( 'timezone_string' );
578
+ $exp_time = clone( $utc_time );
579
+
580
+ if ( $tz_option ) {
581
+ $exp_time->setTimezone( self::get_wp_timezone() );
582
+ } else {
583
+ $tz_name = self::timezone_get_name( self::get_wp_timezone() );
584
+ $tz_offset = substr( $tz_name, 3 );
585
+ $off_time = date_create( $utc_time->format( 'Y-m-d\TH:i:s' ) . $tz_offset );
586
+ $offset_in_sec = date_offset_get( $off_time );
587
+ $exp_time = date_create( '@' . ( $utc_ts + $offset_in_sec ) );
588
+ }
589
+
590
+ list( $curr_year, $curr_month, $curr_day, $curr_hour, $curr_minute ) = explode( '-', $exp_time->format( 'Y-m-d-H-i' ) );
591
  $enabled = 1 - empty($ad->expiry_date);
592
 
593
  include ADVADS_BASE_PATH . 'admin/views/ad-submitbox-meta.php';
717
  if ( !$valid_date ) {
718
  $ad->expiry_date = 0;
719
  } else {
720
+ $_gmDate = date_create( $expiration_date, self::get_wp_timezone() );
721
+ $_gmDate->setTimezone( new DateTimeZone( 'UTC' ) );
722
+ $gmDate = $_gmDate->format( 'Y-m-d-H-i' );
723
  list( $year, $month, $day, $hour, $minute ) = explode( '-', $gmDate );
724
  $ad->expiry_date = gmmktime($hour, $minute, 0, $month, $day, $year);
725
  }
1584
  echo '</div>';
1585
  }
1586
  }
1587
+
1588
+ /**
1589
+ * get DateTimeZone object for the WP installation
1590
+ */
1591
+ public static function get_wp_timezone() {
1592
+ $_time_zone = get_option( 'timezone_string' );
1593
+ $time_zone = 'UTC+0';
1594
+ if ( $_time_zone ) {
1595
+ $time_zone = new DateTimeZone( $_time_zone );
1596
+ } else {
1597
+ $gmt_offset = floatval( get_option( 'gmt_offset' ) );
1598
+ $sign = ( 0 > $gmt_offset )? '-' : '+';
1599
+ $int = floor( abs( $gmt_offset ) );
1600
+ $frac = abs( $gmt_offset ) - $int;
1601
+
1602
+ $gmt = '';
1603
+ if ( $gmt_offset ) {
1604
+ $gmt .= $sign . zeroise( $int, 2 ) . ':' . zeroise( 60 * $frac, 2 );
1605
+ $time_zone = date_create( '2017-10-01T12:00:00' . $gmt )->getTimezone();
1606
+ }
1607
+
1608
+ }
1609
+ return $time_zone;
1610
+ }
1611
+
1612
+ /**
1613
+ * get literal expression of timezone
1614
+ */
1615
+ public static function timezone_get_name( $DTZ ) {
1616
+ if ( $DTZ instanceof DateTimeZone ) {
1617
+ $TZ = timezone_name_get( $DTZ );
1618
+ if ( 'UTC' == $TZ ) {
1619
+ return 'UTC+0';
1620
+ }
1621
+ if ( false === strpos( $TZ, '/' ) ) {
1622
+ $TZ = 'UTC' . $TZ;
1623
+ } else {
1624
+ $TZ = sprintf( __( 'time of %s', 'advanced-ads' ), $TZ );
1625
+ }
1626
+ return $TZ;
1627
+ }
1628
+ return 'UTC+0';
1629
+ }
1630
 
1631
  /**
1632
  * initiate the admin notices class
1687
 
1688
  // display activation problem
1689
  if( !empty( $license_data->error )) {
1690
+ // user friendly texts for errors
1691
+ $errors = array(
1692
+ 'license_not_activable' => __( 'This is the bundle license key.', 'advanced-ads' ),
1693
+ 'item_name_mismatch' => __( 'This is not the correct key for this add-on.', 'advanced-ads' )
1694
+ );
1695
+ $error = isset( $errors[ $license_data->error ] ) ? $errors[ $license_data->error ] : $license_data->error;
1696
+ return sprintf( __('License is invalid. Reason: %s'), $error);
1697
  } else {
1698
  // save license value time
1699
  update_option($options_slug . '-license-expires', $license_data->expires, false);
admin/includes/class-ad-groups-list.php CHANGED
@@ -165,10 +165,24 @@ class Advanced_Ads_Groups_List {
165
  }
166
  if ( isset( $ad->expiry_date ) && $ad->expiry_date ) {
167
  $expiry = $ad->expiry_date;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  if ( $expiry > time() ) {
169
- $line_output .= '<br />' . sprintf( __( 'expires %s', 'advanced-ads' ), date( $expiry_date_format, $expiry ) );
170
  } elseif ( $expiry <= time() ) {
171
- $line_output .= '<br />' . sprintf( __( '<strong>expired</strong> %s', 'advanced-ads' ), date( $expiry_date_format, $expiry ) );
172
  }
173
  }
174
  $line_output .= '</li>';
165
  }
166
  if ( isset( $ad->expiry_date ) && $ad->expiry_date ) {
167
  $expiry = $ad->expiry_date;
168
+ $expiry_date = date_create( '@' . $expiry );
169
+ $tz_option = get_option( 'timezone_string' );
170
+
171
+ if ( $tz_option ) {
172
+ $expiry_date->setTimezone( Advanced_Ads_Admin::get_wp_timezone() );
173
+ } else {
174
+ $tz_name = Advanced_Ads_Admin::timezone_get_name( Advanced_Ads_Admin::get_wp_timezone() );
175
+ $tz_offset = substr( $tz_name, 3 );
176
+ $off_time = date_create( $expiry_date->format( 'Y-m-d\TH:i:s' ) . $tz_offset );
177
+ $offset_in_sec = date_offset_get( $off_time );
178
+ $expiry_date = date_create( '@' . ( $expiry + $offset_in_sec ) );
179
+ }
180
+
181
+ $TZ = ' ( ' . Advanced_Ads_Admin::timezone_get_name( Advanced_Ads_Admin::get_wp_timezone() ) . ' )';
182
  if ( $expiry > time() ) {
183
+ $line_output .= '<br />' . sprintf( __( 'expires %s', 'advanced-ads' ), $expiry_date->format( $expiry_date_format ) ) . $TZ;
184
  } elseif ( $expiry <= time() ) {
185
+ $line_output .= '<br />' . sprintf( __( '<strong>expired</strong> %s', 'advanced-ads' ), $expiry_date->format( $expiry_date_format ) ) . $TZ;
186
  }
187
  }
188
  $line_output .= '</li>';
admin/includes/class-display-condition-callbacks.php CHANGED
@@ -236,7 +236,7 @@ if ( ! empty($ad->conditions['categoryarchiveids']['exclude']) ){
236
  }
237
 
238
  ?><h4><label class="advads-conditions-all"><input type="checkbox" name="advanced_ad[conditions][postids][all]" value="1" <?php
239
- checked( $_all, 1 ); ?>><?php _e( 'Display an all <strong>individual posts, pages</strong> and public post type pages', 'advanced-ads' ); ?></label></h4><?php
240
 
241
  ?><div class="advads-conditions-single">
242
  <p class="description"><?php _e( 'Choose on which individual posts, pages and public post type pages you want to display or hide ads.', 'advanced-ads' ); ?></p><?php
236
  }
237
 
238
  ?><h4><label class="advads-conditions-all"><input type="checkbox" name="advanced_ad[conditions][postids][all]" value="1" <?php
239
+ checked( $_all, 1 ); ?>><?php _e( 'Display on all <strong>individual posts, pages</strong> and public post type pages', 'advanced-ads' ); ?></label></h4><?php
240
 
241
  ?><div class="advads-conditions-single">
242
  <p class="description"><?php _e( 'Choose on which individual posts, pages and public post type pages you want to display or hide ads.', 'advanced-ads' ); ?></p><?php
admin/includes/class-overview-widgets.php CHANGED
@@ -185,7 +185,7 @@ foreach ( $next_steps as $_step ){
185
  ?><p><?php _e( 'Track the impressions of and clicks on your ads.', 'advanced-ads' ); ?></p><ul class='list'>
186
  <li><?php _e( '2 methods to count impressions', 'advanced-ads' ); ?></li>
187
  <li><?php _e( 'beautiful stats for all or single ads', 'advanced-ads' ); ?></li>
188
- <li><?php _e( 'get stats for predefined and custom persiods', 'advanced-ads' ); ?></li>
189
  <li><?php _e( 'group stats by day, week or month', 'advanced-ads' ); ?></li>
190
  </ul><p><a class="button button-primary" href="<?php echo ADVADS_URL; ?>add-ons/tracking/#utm_source=advanced-ads&utm_medium=link&utm_campaign=overview-add-ons" target="_blank"><?php
191
  _e( 'Get the Tracking add-on', 'advanced-ads' ); ?></a></p><?php
@@ -233,7 +233,7 @@ foreach ( $next_steps as $_step ){
233
 
234
  ?><p><?php _e( 'Display content and ads in layers and popups on custom events.', 'advanced-ads' ); ?></p><ul class='list'>
235
  <li><?php _e( 'display a popup after a user interaction like scrolling', 'advanced-ads' ); ?></li>
236
- <li><?php _e( 'optional backgroup overlay', 'advanced-ads' ); ?></li>
237
  <li><?php _e( 'allow users to close the popup', 'advanced-ads' ); ?></li>
238
  </ul><p><a class="button button-primary" href="<?php echo ADVADS_URL; ?>add-ons/popup-and-layer-ads/#utm_source=advanced-ads&utm_medium=link&utm_campaign=overview-add-ons" target="_blank"><?php
239
  _e( 'Get the PopUp and Layer add-on', 'advanced-ads' ); ?></a></p><?php
185
  ?><p><?php _e( 'Track the impressions of and clicks on your ads.', 'advanced-ads' ); ?></p><ul class='list'>
186
  <li><?php _e( '2 methods to count impressions', 'advanced-ads' ); ?></li>
187
  <li><?php _e( 'beautiful stats for all or single ads', 'advanced-ads' ); ?></li>
188
+ <li><?php _e( 'get stats for predefined and custom periods', 'advanced-ads' ); ?></li>
189
  <li><?php _e( 'group stats by day, week or month', 'advanced-ads' ); ?></li>
190
  </ul><p><a class="button button-primary" href="<?php echo ADVADS_URL; ?>add-ons/tracking/#utm_source=advanced-ads&utm_medium=link&utm_campaign=overview-add-ons" target="_blank"><?php
191
  _e( 'Get the Tracking add-on', 'advanced-ads' ); ?></a></p><?php
233
 
234
  ?><p><?php _e( 'Display content and ads in layers and popups on custom events.', 'advanced-ads' ); ?></p><ul class='list'>
235
  <li><?php _e( 'display a popup after a user interaction like scrolling', 'advanced-ads' ); ?></li>
236
+ <li><?php _e( 'optional background overlay', 'advanced-ads' ); ?></li>
237
  <li><?php _e( 'allow users to close the popup', 'advanced-ads' ); ?></li>
238
  </ul><p><a class="button button-primary" href="<?php echo ADVADS_URL; ?>add-ons/popup-and-layer-ads/#utm_source=advanced-ads&utm_medium=link&utm_campaign=overview-add-ons" target="_blank"><?php
239
  _e( 'Get the PopUp and Layer add-on', 'advanced-ads' ); ?></a></p><?php
admin/views/ad-list-timing-column.php CHANGED
@@ -2,15 +2,27 @@
2
  <div class="inline-edit-col <?php echo $html_classes; ?>">
3
  <?php if ( $post_future ) : ?>
4
  <p><?php printf( __( 'starts %s', 'advanced-ads' ), date( $expiry_date_format, $post_future ) ); ?></p>
5
- <?php endif;
6
- if ( $expiry && $expiry > time() ) : ?>
7
- <p><?php printf( __( 'expires %s', 'advanced-ads' ), date( $expiry_date_format, $expiry ) ); ?></p>
8
- <?php elseif( $expiry && $expiry <= time() ) : ?>
9
- <p><?php printf( __( '<strong>expired</strong> %s', 'advanced-ads' ), date( $expiry_date_format, $expiry ) ); ?></p>
10
- <?php endif;
11
- /* if ( ! empty( $size) ) : ?>
12
- <p><?php echo $size; ?></p>
13
- <?php endif; */
14
- do_action( 'advanced-ads-ad-list-timing-column-after', $ad ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
15
  </div>
16
  </fieldset>
2
  <div class="inline-edit-col <?php echo $html_classes; ?>">
3
  <?php if ( $post_future ) : ?>
4
  <p><?php printf( __( 'starts %s', 'advanced-ads' ), date( $expiry_date_format, $post_future ) ); ?></p>
5
+ <?php endif; ?>
6
+ <?php if ( $expiry ) : ?>
7
+ <?php
8
+ $tz_option = get_option( 'timezone_string' );
9
+ $expiry_date = date_create( '@' . $expiry );
10
+ if ( $tz_option ) {
11
+ $expiry_date->setTimezone( Advanced_Ads_Admin::get_wp_timezone() );
12
+ } else {
13
+ $tz_name = self::timezone_get_name( self::get_wp_timezone() );
14
+ $tz_offset = substr( $tz_name, 3 );
15
+ $off_time = date_create( $expiry_date->format( 'Y-m-d\TH:i:s' ) . $tz_offset );
16
+ $offset_in_sec = date_offset_get( $off_time );
17
+ $expiry_date = date_create( '@' . ( $expiry + $offset_in_sec ) );
18
+ }
19
+ ?>
20
+ <?php if ( $expiry > time() ) :?>
21
+ <p><?php printf( __( 'expires %s', 'advanced-ads' ), $expiry_date->format( $expiry_date_format ) ); ?></p>
22
+ <?php else : ?>
23
+ <p><?php printf( __( '<strong>expired</strong> %s', 'advanced-ads' ), $expiry_date->format( $expiry_date_format ) ); ?></p>
24
+ <?php endif; ?>
25
+ <?php endif; ?>
26
+ <?php do_action( 'advanced-ads-ad-list-timing-column-after', $ad ); ?>
27
  </div>
28
  </fieldset>
admin/views/ad-submitbox-meta.php CHANGED
@@ -1,7 +1,9 @@
1
- <div id="advanced-ads-expiry-date" class="misc-pub-section curtime misc-pub-curtime">
 
 
2
  <label onclick="advads_toggle_box('#advanced-ads-expiry-date-enable', '#advanced-ads-expiry-date .inner')">
3
  <input type="checkbox" id="advanced-ads-expiry-date-enable" name="advanced_ad[expiry_date][enabled]"
4
- value="1" <?php checked( $enabled, 1 ); ?>/><?php _e( 'Set expiry date', 'advanced-ads' ); ?>
5
  </label>
6
  <br/>
7
 
1
+ <?php
2
+ $TZ = self::timezone_get_name( self::get_wp_timezone() );
3
+ ?><div id="advanced-ads-expiry-date" class="misc-pub-section curtime misc-pub-curtime">
4
  <label onclick="advads_toggle_box('#advanced-ads-expiry-date-enable', '#advanced-ads-expiry-date .inner')">
5
  <input type="checkbox" id="advanced-ads-expiry-date-enable" name="advanced_ad[expiry_date][enabled]"
6
+ value="1" <?php checked( $enabled, 1 ); ?>/><?php _e( 'Set expiry date', 'advanced-ads' ); ?>&nbsp;(<?php echo $TZ; ?>)
7
  </label>
8
  <br/>
9
 
admin/views/ad-visitor-metabox.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  $visitor_conditions = Advanced_Ads_Visitor_Conditions::get_instance()->conditions;
3
  $options = $ad->options( 'visitors' );
4
- ?><p class="description"><?php _e( 'Display conditions that are based on the user. Use with caution on cached websites.', 'advanced-ads' ); ?></p>
5
  <div id="advads-visitor-conditions">
6
  <table><tbody><?php
7
  if ( isset( $options ) ) :
1
  <?php
2
  $visitor_conditions = Advanced_Ads_Visitor_Conditions::get_instance()->conditions;
3
  $options = $ad->options( 'visitors' );
4
+ ?><p class="description"><?php _e( 'Display conditions that are based on the user. Use with caution on cached websites.', 'advanced-ads' ); ?> <a href="<?php echo ADVADS_URL . 'manual/visitor-conditions#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-visitor'; ?>" target="_blank"><?php _e( 'Manual', 'advanced-ads' ); ?></a></p>
5
  <div id="advads-visitor-conditions">
6
  <table><tbody><?php
7
  if ( isset( $options ) ) :
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.6.17
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
- define( 'ADVADS_VERSION', '1.6.17' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.6.17.1
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
+ define( 'ADVADS_VERSION', '1.6.17.1' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
classes/ad.php CHANGED
@@ -251,19 +251,24 @@ class Advanced_Ads_Ad {
251
  * return ad content for frontend output
252
  *
253
  * @since 1.0.0
 
254
  * @return string $output ad output
255
  */
256
- public function output(){
257
  if ( ! $this->is_ad ) { return ''; }
258
 
 
 
259
  $output = $this->prepare_frontend_output();
260
 
261
- // add the ad to the global output array
262
- $advads = Advanced_Ads::get_instance();
263
- $advads->current_ads[] = array('type' => 'ad', 'id' => $this->id, 'title' => $this->title, 'output' => $output);
 
 
264
 
265
  // action when output is created
266
- do_action( 'advanced-ads-output', $this, $output );
267
 
268
  return $output;
269
  }
@@ -272,21 +277,29 @@ class Advanced_Ads_Ad {
272
  * check if the ad can be displayed in frontend due to its own conditions
273
  *
274
  * @since 1.0.0
 
275
  * @return bool $can_display true if can be displayed in frontend
276
  */
277
- public function can_display(){
 
278
 
279
- // don’t display ads that are not published or private for users not logged in
280
- if ( $this->status !== 'publish' && ! ($this->status === 'private' && ! is_user_logged_in()) ){
281
- return false;
282
- }
 
283
 
284
- if ( ! $this->can_display_by_visitor() || ! $this->can_display_by_expiry_date() ) {
285
- return false;
 
 
 
 
 
286
  }
287
 
288
  // add own conditions to flag output as possible or not
289
- $can_display = apply_filters( 'advanced-ads-can-display', true, $this );
290
 
291
  return $can_display;
292
  }
@@ -309,9 +322,18 @@ class Advanced_Ads_Ad {
309
  if ( isset( $this->options['visitors'] ) && is_array( $this->options['visitors'] ) ) {
310
 
311
  $visitor_conditions = $this->options['visitors'];
312
-
313
- foreach( $visitor_conditions as $_condition ) {
314
- $result = Advanced_Ads_Visitor_Conditions::frontend_check( $_condition, $this );
 
 
 
 
 
 
 
 
 
315
  if( ! $result ) {
316
  // return false only, if the next condition doesn’t have an OR operator
317
  $next = next( $visitor_conditions );
@@ -319,6 +341,7 @@ class Advanced_Ads_Ad {
319
  return false;
320
  }
321
  }
 
322
  }
323
  }
324
 
251
  * return ad content for frontend output
252
  *
253
  * @since 1.0.0
254
+ * @param array $output_options output options
255
  * @return string $output ad output
256
  */
257
+ public function output( $output_options = array() ){
258
  if ( ! $this->is_ad ) { return ''; }
259
 
260
+ $output_options = wp_parse_args( $output_options, array( 'global_output' => true ) );
261
+
262
  $output = $this->prepare_frontend_output();
263
 
264
+ if ( $output_options['global_output'] ) {
265
+ // add the ad to the global output array
266
+ $advads = Advanced_Ads::get_instance();
267
+ $advads->current_ads[] = array('type' => 'ad', 'id' => $this->id, 'title' => $this->title, 'output' => $output);
268
+ }
269
 
270
  // action when output is created
271
+ do_action( 'advanced-ads-output', $this, $output, $output_options );
272
 
273
  return $output;
274
  }
277
  * check if the ad can be displayed in frontend due to its own conditions
278
  *
279
  * @since 1.0.0
280
+ * @param array $check_options check options
281
  * @return bool $can_display true if can be displayed in frontend
282
  */
283
+ public function can_display( $check_options = array() ) {
284
+ $check_options = wp_parse_args( $check_options, array( 'passive_cache_busting' => false ) );
285
 
286
+ if ( ! $check_options['passive_cache_busting'] ) {
287
+ // don’t display ads that are not published or private for users not logged in
288
+ if ( $this->status !== 'publish' && ! ($this->status === 'private' && ! is_user_logged_in() ) ) {
289
+ return false;
290
+ }
291
 
292
+ if ( ! $this->can_display_by_visitor() || ! $this->can_display_by_expiry_date() ) {
293
+ return false;
294
+ }
295
+ } else {
296
+ if ( $this->status !== 'publish' || ! $this->can_display_by_expiry_date() ) {
297
+ return false;
298
+ }
299
  }
300
 
301
  // add own conditions to flag output as possible or not
302
+ $can_display = apply_filters( 'advanced-ads-can-display', true, $this, $check_options );
303
 
304
  return $can_display;
305
  }
322
  if ( isset( $this->options['visitors'] ) && is_array( $this->options['visitors'] ) ) {
323
 
324
  $visitor_conditions = $this->options['visitors'];
325
+
326
+ $last_result = false;
327
+ $length = count( $visitor_conditions );
328
+
329
+ for($i = 0; $i < $length; ++$i) {
330
+ $_condition = current( $visitor_conditions );
331
+ // ignore OR if last result was true
332
+ if( $last_result && isset( $_condition['connector'] ) && 'or' === $_condition['connector'] ){
333
+ next( $visitor_conditions );
334
+ continue;
335
+ }
336
+ $last_result = $result = Advanced_Ads_Visitor_Conditions::frontend_check( $_condition, $this );
337
  if( ! $result ) {
338
  // return false only, if the next condition doesn’t have an OR operator
339
  $next = next( $visitor_conditions );
341
  return false;
342
  }
343
  }
344
+ next( $visitor_conditions );
345
  }
346
  }
347
 
languages/advanced-ads-de_DE.po CHANGED
@@ -625,7 +625,7 @@ msgstr ""
625
 
626
  #: ../admin/includes/class-display-condition-callbacks.php:239
627
  msgid ""
628
- "Display an all <strong>individual posts, pages</strong> and public post type "
629
  "pages"
630
  msgstr ""
631
  "In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
625
 
626
  #: ../admin/includes/class-display-condition-callbacks.php:239
627
  msgid ""
628
+ "Display on all <strong>individual posts, pages</strong> and public post type "
629
  "pages"
630
  msgstr ""
631
  "In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
languages/advanced-ads-es_ES.mo ADDED
Binary file
languages/advanced-ads-es_ES.po ADDED
@@ -0,0 +1,2892 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Advanved Ads\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
5
+ "POT-Creation-Date: 2015-01-27 16:47+0100\n"
6
+ "PO-Revision-Date: Thu Feb 11 2016 10:40:28 GMT-0500 (Hora est. Pacífico, "
7
+ "Sudamérica)\n"
8
+ "Last-Translator: Andrés Rueda <anrueda@gmail.com>\n"
9
+ "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
10
+ "Language: Spanish (Spain)\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Poedit-SearchPath-0: .\n"
24
+ "X-Loco-Target-Locale: es_ES"
25
+
26
+ #. Name of the plugin
27
+ msgid "Advanced Ads"
28
+ msgstr "Advanced Ads"
29
+
30
+ #. URI of the plugin
31
+ msgid "https://wpadvancedads.com"
32
+ msgstr "https://wpadvancedads.com"
33
+
34
+ #. Description of the plugin
35
+ msgid "Manage and optimize your ads in WordPress"
36
+ msgstr "Gestiona y optimiza tus anuncios en Wordpress"
37
+
38
+ #. Author of the plugin
39
+ msgid "Thomas Maier"
40
+ msgstr "Thomas Maier"
41
+
42
+ #. Author URI of the plugin
43
+ msgid "http://webgilde.com"
44
+ msgstr "http://webgilde.com"
45
+
46
+ #: ../admin/class-advanced-ads-admin.php:255
47
+ msgid "Overview"
48
+ msgstr "Visión General"
49
+
50
+ #: ../admin/class-advanced-ads-admin.php:259 ../admin/class-advanced-ads-admin.
51
+ #: php:259 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
52
+ #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
53
+ #: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
54
+ #: classes/widget.php:89 ../public/class-advanced-ads.php:563
55
+ msgid "Ads"
56
+ msgstr "Anuncios"
57
+
58
+ #: ../admin/class-advanced-ads-admin.php:263 ../admin/includes/class-shortcode-
59
+ #: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
60
+ #: 177 ../classes/widget.php:82
61
+ msgid "Ad Groups"
62
+ msgstr "Grupos de Anuncios"
63
+
64
+ #: ../admin/class-advanced-ads-admin.php:263 ../public/class-advanced-ads.php:536
65
+ msgid "Groups"
66
+ msgstr "Grupos"
67
+
68
+ #: ../admin/class-advanced-ads-admin.php:268 ../admin/views/debug.php:14
69
+ msgid "Ad Placements"
70
+ msgstr "Colocación de Anuncios"
71
+
72
+ #: ../admin/class-advanced-ads-admin.php:268 ../admin/includes/class-shortcode-
73
+ #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
74
+ msgid "Placements"
75
+ msgstr "Colocaciones"
76
+
77
+ #: ../admin/class-advanced-ads-admin.php:272
78
+ msgid "Advanced Ads Settings"
79
+ msgstr "Configuraciones de Advanced Ads"
80
+
81
+ #: ../admin/class-advanced-ads-admin.php:272 ../admin/class-advanced-ads-admin.
82
+ #: php:499 ../admin/views/debug.php:11
83
+ msgid "Settings"
84
+ msgstr "Configuraciones"
85
+
86
+ #: ../admin/class-advanced-ads-admin.php:275
87
+ msgid "Advanced Ads Debugging"
88
+ msgstr "Depuración de Advanced Ads"
89
+
90
+ #: ../admin/class-advanced-ads-admin.php:275
91
+ msgid "Debug"
92
+ msgstr "Depuración"
93
+
94
+ #: ../admin/class-advanced-ads-admin.php:279 ../admin/class-advanced-ads-admin.
95
+ #: php:279
96
+ msgid "Advanced Ads Intro"
97
+ msgstr "Introducción a Advanced Ads"
98
+
99
+ #: ../admin/class-advanced-ads-admin.php:283 ../admin/class-advanced-ads-admin.
100
+ #: php:283
101
+ msgid "Support"
102
+ msgstr "Soporte"
103
+
104
+ #: ../admin/class-advanced-ads-admin.php:413 ../admin/class-advanced-ads-admin.
105
+ #: php:440
106
+ msgid "Sorry, you are not allowed to access this feature."
107
+ msgstr "Lo sentimos, no tienes permiso para acceder a esta función."
108
+
109
+ #: ../admin/class-advanced-ads-admin.php:426
110
+ msgid ""
111
+ "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
112
+ "deleted?"
113
+ msgstr ""
114
+ "Intentaste editar un Grupo de Anuncios que no existe. Tal vez ha sido "
115
+ "borrado?"
116
+
117
+ #: ../admin/class-advanced-ads-admin.php:541
118
+ msgid "Ad Type"
119
+ msgstr "Tipo de Anuncio"
120
+
121
+ #: ../admin/class-advanced-ads-admin.php:544
122
+ msgid "Ad Parameters"
123
+ msgstr "Parámetros del Anuncio"
124
+
125
+ #: ../admin/class-advanced-ads-admin.php:547
126
+ msgid "Layout / Output"
127
+ msgstr "Diseño / Visualización"
128
+
129
+ #: ../admin/class-advanced-ads-admin.php:550
130
+ msgid "Display Conditions"
131
+ msgstr "Condiciones de Visualización"
132
+
133
+ #: ../admin/class-advanced-ads-admin.php:553
134
+ msgid "Visitor Conditions"
135
+ msgstr "Condiciones del Visitante"
136
+
137
+ #: ../admin/class-advanced-ads-admin.php:764 ../admin/class-advanced-ads-admin.
138
+ #: php:765
139
+ msgid "Ad updated."
140
+ msgstr "Anuncio actualizado."
141
+
142
+ #. translators: %s: date and time of the revision
143
+ #: ../admin/class-advanced-ads-admin.php:767
144
+ #, php-format
145
+ msgid "Ad restored to revision from %s"
146
+ msgstr "Anunció restaurado para revisión de %s"
147
+
148
+ #: ../admin/class-advanced-ads-admin.php:768
149
+ msgid "Ad published."
150
+ msgstr "Anuncio publicado."
151
+
152
+ #: ../admin/class-advanced-ads-admin.php:769
153
+ msgid "Ad saved."
154
+ msgstr "Anuncio guardado."
155
+
156
+ #: ../admin/class-advanced-ads-admin.php:770
157
+ msgid "Ad submitted."
158
+ msgstr "Anuncio enviado."
159
+
160
+ #: ../admin/class-advanced-ads-admin.php:772
161
+ #, php-format
162
+ msgid "Ad scheduled for: <strong>%1$s</strong>."
163
+ msgstr "Anuncio programado para: <strong>%1$s</strong>."
164
+
165
+ #. translators: Publish box date format, see http://php.net/date
166
+ #: ../admin/class-advanced-ads-admin.php:774
167
+ msgid "M j, Y @ G:i"
168
+ msgstr "M j, Y @ G:i"
169
+
170
+ #: ../admin/class-advanced-ads-admin.php:776
171
+ msgid "Ad draft updated."
172
+ msgstr "Borrador del anuncio actualizado."
173
+
174
+ #: ../admin/class-advanced-ads-admin.php:795
175
+ #, php-format
176
+ msgid "%s ad updated."
177
+ msgid_plural "%s ads updated."
178
+ msgstr[0] "%s anuncio actualizado."
179
+ msgstr[1] "%s anuncios actualizados."
180
+
181
+ #: ../admin/class-advanced-ads-admin.php:796
182
+ #, php-format
183
+ msgid "%s ad not updated, somebody is editing it."
184
+ msgid_plural "%s ads not updated, somebody is editing them."
185
+ msgstr[0] "%s anuncio no actualizado, alguien lo esta editando."
186
+ msgstr[1] "%s anuncios no actualizados, alguien los esta editando."
187
+
188
+ #: ../admin/class-advanced-ads-admin.php:797
189
+ #, php-format
190
+ msgid "%s ad permanently deleted."
191
+ msgid_plural "%s ads permanently deleted."
192
+ msgstr[0] "%s anuncio permanentemente borrado."
193
+ msgstr[1] "%s anuncios permanentemente borrados."
194
+
195
+ #: ../admin/class-advanced-ads-admin.php:798
196
+ #, php-format
197
+ msgid "%s ad moved to the Trash."
198
+ msgid_plural "%s ads moved to the Trash."
199
+ msgstr[0] "%s anuncio movido a la papelera."
200
+ msgstr[1] "%s anuncios movidos a la papelera."
201
+
202
+ #: ../admin/class-advanced-ads-admin.php:799
203
+ #, php-format
204
+ msgid "%s ad restored from the Trash."
205
+ msgid_plural "%s ads restored from the Trash."
206
+ msgstr[0] "%s anuncio restaurado de la papelera."
207
+ msgstr[1] "%s anuncios restaurados de la papelera."
208
+
209
+ #: ../admin/class-advanced-ads-admin.php:834 ../admin/views/settings.php:12
210
+ msgid "General"
211
+ msgstr "General"
212
+
213
+ #: ../admin/class-advanced-ads-admin.php:846 ../admin/class-advanced-ads-admin.
214
+ #: php:950
215
+ msgid "Licenses"
216
+ msgstr "Licencias"
217
+
218
+ #: ../admin/class-advanced-ads-admin.php:857
219
+ msgid "Disable ads"
220
+ msgstr "Deshabilitar anuncios"
221
+
222
+ #: ../admin/class-advanced-ads-admin.php:865
223
+ msgid "Hide ads for logged in users"
224
+ msgstr "Ocultar anuncios para usuarios que inicien sesión"
225
+
226
+ #: ../admin/class-advanced-ads-admin.php:873
227
+ msgid "Use advanced JavaScript"
228
+ msgstr "Utilizar JavaScript avanzado"
229
+
230
+ #: ../admin/class-advanced-ads-admin.php:881
231
+ msgid "Unlimited ad injection"
232
+ msgstr "Inyección ilimitada de anuncios"
233
+
234
+ #: ../admin/class-advanced-ads-admin.php:889
235
+ msgid "Priority of content injection filter"
236
+ msgstr "Prioridad de filtro de inyección de contenido"
237
+
238
+ #: ../admin/class-advanced-ads-admin.php:897
239
+ msgid "Hide ads from bots"
240
+ msgstr "Ocultar anuncios de bots"
241
+
242
+ #: ../admin/class-advanced-ads-admin.php:905
243
+ msgid "Disable notices"
244
+ msgstr "Deshabilitar notificaciones"
245
+
246
+ #: ../admin/class-advanced-ads-admin.php:913
247
+ msgid "ID prefix"
248
+ msgstr "Prefijo ID"
249
+
250
+ #: ../admin/class-advanced-ads-admin.php:921
251
+ msgid "Remove Widget ID"
252
+ msgstr "Remover Widget ID"
253
+
254
+ #: ../admin/class-advanced-ads-admin.php:929
255
+ msgid "Allow editors to manage ads"
256
+ msgstr "Permitir a editores gestionar anuncios"
257
+
258
+ #: ../admin/class-advanced-ads-admin.php:1004
259
+ msgid "(display to all)"
260
+ msgstr "(mostrar a todos)"
261
+
262
+ #: ../admin/class-advanced-ads-admin.php:1005
263
+ msgid "Subscriber"
264
+ msgstr "Suscriptor"
265
+
266
+ #: ../admin/class-advanced-ads-admin.php:1006
267
+ msgid "Contributor"
268
+ msgstr "Contribuyente"
269
+
270
+ #: ../admin/class-advanced-ads-admin.php:1007
271
+ msgid "Author"
272
+ msgstr "Autor"
273
+
274
+ #: ../admin/class-advanced-ads-admin.php:1008
275
+ msgid "Editor"
276
+ msgstr "Editor"
277
+
278
+ #: ../admin/class-advanced-ads-admin.php:1009
279
+ msgid "Admin"
280
+ msgstr "Administrador"
281
+
282
+ #: ../admin/class-advanced-ads-admin.php:1017
283
+ msgid "Choose the lowest role a user must have in order to not see any ads."
284
+ msgstr "Elige el rol mínimo que un usuario debe tener para no ver ningún anuncio."
285
+
286
+ #: ../admin/class-advanced-ads-admin.php:1031
287
+ msgid ""
288
+ "<strong>notice: </strong>the file is currently enabled by an add-on that "
289
+ "needs it."
290
+ msgstr ""
291
+ "<strong>Notificación: </strong>el archivo se encuentra activado por un add-"
292
+ "on que lo necesita."
293
+
294
+ #: ../admin/class-advanced-ads-admin.php:1034
295
+ #, php-format
296
+ msgid ""
297
+ "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
298
+ " Some features and add-ons might override this setting if they need features "
299
+ "from this file."
300
+ msgstr ""
301
+ "Habilitar funciones avanzadas de JavaScript (<a href=\"%s\" "
302
+ "target=\"_blank\">aquí</a>). Algunas características y add-ons pueden anular "
303
+ "esta configuración si necesitan funciones de este archivo."
304
+
305
+ #: ../admin/class-advanced-ads-admin.php:1047
306
+ msgid ""
307
+ "Some plugins and themes trigger ad injection where it shouldn’t happen. "
308
+ "Therefore, Advanced Ads ignores injected placements on non-singular pages "
309
+ "and outside the loop. However, this can cause problems with some themes. You "
310
+ "can enable this option if you don’t see ads or want to enable ad injections "
311
+ "on archive pages AT YOUR OWN RISK."
312
+ msgstr ""
313
+ "Algunos plugins y temas pueden desencadenar inyecciones de anuncios en "
314
+ "lugares en donde no debe ocurrir. Por lo tanto, Advanced Ads ignora las "
315
+ "colocaciones inyectadas en páginas no singulares y fuera del ciclo iterativo "
316
+ "(loop). No obstante, esto puede causar problemas con algunos temas. Puedes "
317
+ "habilitar esta opción si no ves anuncios o quieres habilitar las inyecciones "
318
+ "de anuncios en páginas de archivos BAJO TU PROPIO RIESGO."
319
+
320
+ #: ../admin/class-advanced-ads-admin.php:1063
321
+ msgid ""
322
+ "Please check your post content. A priority of 10 and below might cause "
323
+ "issues (wpautop function might run twice)."
324
+ msgstr ""
325
+ "Por favor, revisa el contenido de tu entrada. Una prioridad de 10 o menos "
326
+ "puede causar problemas (la función wpautop puede ejecutarse dos veces)."
327
+
328
+ #: ../admin/class-advanced-ads-admin.php:1065
329
+ msgid ""
330
+ "Play with this value in order to change the priority of the injected ads "
331
+ "compared to other auto injected elements in the post content."
332
+ msgstr ""
333
+ "Juega con este valor para cambiar la prioridad de los anuncios inyectados en "
334
+ "comparación con otros elementos auto inyectados en el contenido de la "
335
+ "entrada."
336
+
337
+ #: ../admin/class-advanced-ads-admin.php:1079
338
+ #, php-format
339
+ msgid ""
340
+ "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
341
+ "impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
342
+ "Add-On</a>."
343
+ msgstr ""
344
+ "Ocultar los anuncios de rastreadores (crawlers), bots y usuarios de agente "
345
+ "vacíos. También previene contar impresiones de bots cuando se usa <a "
346
+ "href=\"%s\" target=\"_blank\">El Add-On de Rastreo</a>."
347
+
348
+ #: ../admin/class-advanced-ads-admin.php:1080
349
+ msgid ""
350
+ "Disabling this option only makes sense if your ads contain content you want "
351
+ "to display to bots (like search engines) or your site is cached and bots "
352
+ "could create a cached version without the ads."
353
+ msgstr ""
354
+ "Deshabilitar esta opción sólo tiene sentido si tus anuncios contienen "
355
+ "contenido que deseas mostrar a los bots (como motores de búsqueda) o tu "
356
+ "sitio esta cacheado y los bots pueden crear una versión cacheada sin los "
357
+ "anuncios."
358
+
359
+ #: ../admin/class-advanced-ads-admin.php:1093
360
+ msgid ""
361
+ "Disable internal notices like tips, tutorials, email newsletters and update "
362
+ "notices. Disabling notices is recommended if you run multiple blogs with "
363
+ "Advanced Ads already."
364
+ msgstr ""
365
+ "Deshabilitar notificaciones internas como tips, tutoriales, boletines de "
366
+ "noticias y notificaciones de actualizaciones. Deshabilitar las "
367
+ "notificaciones es recomendado si ya administras múltiples sitios con "
368
+ "Advanced Ads."
369
+
370
+ #: ../admin/class-advanced-ads-admin.php:1115
371
+ msgid ""
372
+ "Prefix of class or id attributes in the frontend. Change it if you don’t "
373
+ "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
374
+ "need to <strong>rewrite css rules afterwards</strong>."
375
+ msgstr ""
376
+ "Prefijo de clase o atributos ID en el frente del sitio. Cámbialo si no "
377
+ "quieres que los <strong>bloqueadores de anuncios</strong> marquen estos "
378
+ "bloques como anuncios. <br/>Podrías necesitar <strong>reescribir las reglas "
379
+ "css después</strong>."
380
+
381
+ #: ../admin/class-advanced-ads-admin.php:1136
382
+ msgid ""
383
+ "Remove the ID attribute from widgets in order to not make them an easy "
384
+ "target of ad blockers."
385
+ msgstr ""
386
+ "Remover el atributo ID de los widgets para no hacerlos un blanco fácil de "
387
+ "los bloqueadores de anuncios."
388
+
389
+ #: ../admin/class-advanced-ads-admin.php:1155
390
+ msgid "Allow editors to also manage and publish ads."
391
+ msgstr "Permitir también que los editores gestionen y publiquen anuncios."
392
+
393
+ #: ../admin/class-advanced-ads-admin.php:1224
394
+ msgid "Ad Details"
395
+ msgstr "Detalles del Anuncio"
396
+
397
+ #: ../admin/class-advanced-ads-admin.php:1225
398
+ msgid "Ad Planning"
399
+ msgstr "Planificación del Anuncio"
400
+
401
+ #: ../admin/class-advanced-ads-admin.php:1360
402
+ msgid "Ad Settings"
403
+ msgstr "Configuración del Anuncio"
404
+
405
+ #: ../admin/class-advanced-ads-admin.php:1439 ../admin/views/overview.php:23
406
+ msgid "Ads Dashboard"
407
+ msgstr "Panel de Anuncios"
408
+
409
+ #: ../admin/class-advanced-ads-admin.php:1451
410
+ msgid "From the ad optimization universe"
411
+ msgstr "Desde el universo de optimización de anuncios"
412
+
413
+ #: ../admin/class-advanced-ads-admin.php:1460
414
+ msgid "Advanced Ads Tutorials"
415
+ msgstr "Tutoriales de Advanced Ads"
416
+
417
+ #: ../admin/class-advanced-ads-admin.php:1471
418
+ #, php-format
419
+ msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
420
+ msgstr "%d Anuncios – <a href=\"%s\">Gestionar</a> - <a href=\"%s\">Nuevo</a>"
421
+
422
+ #: ../admin/class-advanced-ads-admin.php:1482
423
+ msgid "plugin manual and homepage"
424
+ msgstr "Manual del plugin y página de inicio"
425
+
426
+ #: ../admin/class-advanced-ads-admin.php:1489
427
+ msgid "Get the tutorial via email"
428
+ msgstr "Obtener el tutorial vía correo electrónico"
429
+
430
+ #: ../admin/class-advanced-ads-admin.php:1496
431
+ msgid "Get AdSense tips via email"
432
+ msgstr "Obtener tips de AdSense vía correo electrónico"
433
+
434
+ #: ../admin/class-advanced-ads-admin.php:1577
435
+ msgid "Error while trying to register the license. Please contact support."
436
+ msgstr "Error al tratar de registrar la licencia. Por favor, contactar a soporte."
437
+
438
+ #: ../admin/class-advanced-ads-admin.php:1583
439
+ msgid "Please enter and save a valid license key first."
440
+ msgstr "Por favor, primero ingresa y guarda una llave de licencia válida."
441
+
442
+ #: ../admin/class-advanced-ads-admin.php:1609
443
+ #, php-format
444
+ msgid "License is invalid. Reason: %s"
445
+ msgstr "Licencia inválida. Razón: %s"
446
+
447
+ #: ../admin/class-advanced-ads-admin.php:1627
448
+ msgid "Error while trying to disable the license. Please contact support."
449
+ msgstr "Error al tratar de deshabilitar la licencia. Por favor, contacta a soporte."
450
+
451
+ #: ../admin/class-advanced-ads-admin.php:1658
452
+ msgid "License couldn’t be deactivated. Please try again later or contact support."
453
+ msgstr ""
454
+ "La licencia no pudo ser desactivada. Por favor, intenta más tarde o contacta "
455
+ "a soporte."
456
+
457
+ #: ../admin/includes/class-ad-groups-list.php:156
458
+ msgid "Ad weight"
459
+ msgstr "Peso del Anuncio"
460
+
461
+ #: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
462
+ #: column.php:4
463
+ #, php-format
464
+ msgid "starts %s"
465
+ msgstr "Comienza %s"
466
+
467
+ #: ../admin/includes/class-ad-groups-list.php:169 ../admin/views/ad-list-timing-
468
+ #: column.php:7
469
+ #, php-format
470
+ msgid "expires %s"
471
+ msgstr "Expira %s"
472
+
473
+ #: ../admin/includes/class-ad-groups-list.php:171 ../admin/views/ad-list-timing-
474
+ #: column.php:9
475
+ #, php-format
476
+ msgid "<strong>expired</strong> %s"
477
+ msgstr "<strong>Expirado</strong> %s"
478
+
479
+ #: ../admin/includes/class-ad-groups-list.php:184
480
+ msgid "all published ads are displayed"
481
+ msgstr "Todos los anuncios publicados están mostrados"
482
+
483
+ #: ../admin/includes/class-ad-groups-list.php:186
484
+ #, php-format
485
+ msgid "up to %d ads displayed"
486
+ msgstr "Hasta %d anuncios mostrados"
487
+
488
+ #: ../admin/includes/class-ad-groups-list.php:189 ../admin/views/ad-group-list-
489
+ #: form-row.php:37
490
+ msgid "No ads assigned"
491
+ msgstr "No hay anuncios asignados"
492
+
493
+ #: ../admin/includes/class-ad-groups-list.php:237
494
+ msgid "Random ads"
495
+ msgstr "Anuncios aleatorios"
496
+
497
+ #: ../admin/includes/class-ad-groups-list.php:238
498
+ msgid "Display random ads based on ad weight"
499
+ msgstr "Mostrar anuncios aleatorios basados en el peso del anuncio"
500
+
501
+ #: ../admin/includes/class-ad-groups-list.php:241
502
+ msgid "Ordered ads"
503
+ msgstr "Anuncios ordenados"
504
+
505
+ #: ../admin/includes/class-ad-groups-list.php:242
506
+ msgid "Display ads with the highest ad weight first"
507
+ msgstr "Mostrar de primero anuncios con el peso más alto"
508
+
509
+ #: ../admin/includes/class-ad-groups-list.php:261 ../public/class-advanced-ads.
510
+ #: php:567
511
+ msgid "Edit"
512
+ msgstr "Editar"
513
+
514
+ #: ../admin/includes/class-ad-groups-list.php:262
515
+ msgid "Usage"
516
+ msgstr "Uso"
517
+
518
+ #: ../admin/includes/class-ad-groups-list.php:271
519
+ msgid "Delete"
520
+ msgstr "Eliminar"
521
+
522
+ #: ../admin/includes/class-ad-groups-list.php:292
523
+ msgid "Invalid Ad Group"
524
+ msgstr "Grupo de Anuncios Inválido"
525
+
526
+ #: ../admin/includes/class-ad-groups-list.php:297
527
+ msgid "You don’t have permission to change the ad groups"
528
+ msgstr "No tienes permiso para cambiar los Grupos de Anuncios"
529
+
530
+ #: ../admin/includes/class-display-condition-callbacks.php:28
531
+ msgid "Display on all public <strong>post types</strong>."
532
+ msgstr "Mostrar en todos los <strong>post types</strong> públicos"
533
+
534
+ #: ../admin/includes/class-display-condition-callbacks.php:31 ..
535
+ #: includes/array_ad_conditions.php:39
536
+ msgid "Choose the public post types on which to display the ad."
537
+ msgstr "Selecciona los post types públicos en los cuales mostrar el anuncio."
538
+
539
+ #: ../admin/includes/class-display-condition-callbacks.php:86
540
+ msgid "Display for all <strong>categories, tags and taxonomies</strong>."
541
+ msgstr "Mostrar para todas las <strong>categorías, etiquetas y taxonomías</strong>."
542
+
543
+ #: ../admin/includes/class-display-condition-callbacks.php:87
544
+ msgid "Display here"
545
+ msgstr "Mostrar aquí"
546
+
547
+ #: ../admin/includes/class-display-condition-callbacks.php:87
548
+ msgid ""
549
+ "Choose terms from public categories, tags and other taxonomies a post must "
550
+ "belong to in order to have ads."
551
+ msgstr ""
552
+ "Seleccionar los términos de categorías públicas, etiquetas y otras "
553
+ "taxonomías a las que una entrada debe pertenecer para que tenga anuncios."
554
+
555
+ #: ../admin/includes/class-display-condition-callbacks.php:104 ..
556
+ #: admin/includes/class-display-condition-callbacks.php:217
557
+ msgid "Hide from here"
558
+ msgstr "Ocultar de aquí"
559
+
560
+ #: ../admin/includes/class-display-condition-callbacks.php:104
561
+ msgid ""
562
+ "Choose the terms from public categories, tags and other taxonomies a post "
563
+ "must belong to hide the ad from it."
564
+ msgstr ""
565
+ "Seleccionar los términos de categorías públicas, etiquetas y otras "
566
+ "taxonomías a las que una entrada debe pertenecer para ocultar los anuncios "
567
+ "de ella."
568
+
569
+ #: ../admin/includes/class-display-condition-callbacks.php:149
570
+ msgctxt "display the terms search field on ad edit page"
571
+ msgid "add more terms"
572
+ msgstr "Añadir más términos "
573
+
574
+ #: ../admin/includes/class-display-condition-callbacks.php:150
575
+ msgid "add more terms"
576
+ msgstr "Añadir más términos"
577
+
578
+ #: ../admin/includes/class-display-condition-callbacks.php:153
579
+ msgid "term name or id"
580
+ msgstr "Nombre del término o ID"
581
+
582
+ #: ../admin/includes/class-display-condition-callbacks.php:197
583
+ msgid "Display on all <strong>category archive pages</strong>."
584
+ msgstr "Mostrar en todas las <strong>categorías de páginas de archivo</strong>."
585
+
586
+ #: ../admin/includes/class-display-condition-callbacks.php:200
587
+ msgid ""
588
+ "Choose the terms from public categories, tags and other taxonomies on "
589
+ "which's archive page ads can appear"
590
+ msgstr ""
591
+ "Seleccionar los términos de categorías públicas, etiquetas y otras "
592
+ "taxonomías en los que los anuncios de las páginas de archivo pueden aparecer"
593
+
594
+ #: ../admin/includes/class-display-condition-callbacks.php:217
595
+ msgid ""
596
+ "Choose the terms from public categories, tags and other taxonomies on "
597
+ "which's archive pages ads are hidden."
598
+ msgstr ""
599
+ "Seleccionar los términos de categorías públicas, etiquetas y otras "
600
+ "taxonomías en los que los anuncios de las páginas de archivo están ocultos."
601
+
602
+ #: ../admin/includes/class-display-condition-callbacks.php:239
603
+ msgid ""
604
+ "Display an all <strong>individual posts, pages</strong> and public post type "
605
+ "pages"
606
+ msgstr ""
607
+ "Mostrar en todas <strong>las entradas individuales, páginas</strong> y "
608
+ "páginas públicas post type"
609
+
610
+ #: ../admin/includes/class-display-condition-callbacks.php:242 ..
611
+ #: includes/array_ad_conditions.php:57
612
+ msgid ""
613
+ "Choose on which individual posts, pages and public post type pages you want "
614
+ "to display or hide ads."
615
+ msgstr ""
616
+ "Seleccionar en que entradas individuales, páginas y páginas públicas post "
617
+ "type deseas mostrar o ocultar anuncios."
618
+
619
+ #: ../admin/includes/class-display-condition-callbacks.php:259
620
+ msgid "What should happen with ads on the list of individual posts below?"
621
+ msgstr ""
622
+ "Qué debe pasar con los anuncios en la lista de entradas individuales de "
623
+ "abajo?"
624
+
625
+ #: ../admin/includes/class-display-condition-callbacks.php:260
626
+ msgid "ignore the list"
627
+ msgstr "ignorar la lista"
628
+
629
+ #: ../admin/includes/class-display-condition-callbacks.php:261
630
+ msgid "display the ad only there"
631
+ msgstr "Mostrar el anuncio solamente aquí"
632
+
633
+ #: ../admin/includes/class-display-condition-callbacks.php:262
634
+ msgid "hide the ad here"
635
+ msgstr "Ocultar el anunció aquí"
636
+
637
+ #: ../admin/includes/class-display-condition-callbacks.php:270
638
+ msgid "Update warning"
639
+ msgstr "Actualizar advertencia"
640
+
641
+ #: ../admin/includes/class-display-condition-callbacks.php:271
642
+ msgid ""
643
+ "Due to some conflicts before version 1.2.6, it is from now on only possible "
644
+ "to choose either individual pages to include or exclude an ad, but not both "
645
+ "with mixed settings. It seems you are still using mixed settings on this "
646
+ "page. Please consider changing your setup for this ad."
647
+ msgstr ""
648
+ "Debido a ciertos conflictos antes de la versión 1.2.6, de ahora en adelante "
649
+ "sólo es posible elegir bien sea páginas individuales para incluir o excluir "
650
+ "un anuncio, pero no ambas con configuraciones combinadas. Parece ser que "
651
+ "estás usando configuraciones combinadas en esta página. Por favor, considera "
652
+ "cambiar los ajustes para este anuncio."
653
+
654
+ #: ../admin/includes/class-display-condition-callbacks.php:272
655
+ msgid "Your old values are:"
656
+ msgstr "Tus viejos valores son:"
657
+
658
+ #: ../admin/includes/class-display-condition-callbacks.php:273
659
+ msgid "Post IDs the ad is displayed on:"
660
+ msgstr "IDs de las entradas en las que el anuncio se muestra:"
661
+
662
+ #: ../admin/includes/class-display-condition-callbacks.php:274
663
+ msgid "Post IDs the ad is hidden from:"
664
+ msgstr "IDs de las entradas en las que el anuncio se oculta:"
665
+
666
+ #: ../admin/includes/class-display-condition-callbacks.php:275
667
+ msgid ""
668
+ "Below you find the pages the ad is displayed on. If this is ok, just save "
669
+ "the ad. If not, please update your settings."
670
+ msgstr ""
671
+ "Abajo encuentras las páginas en los que el anuncio se muestra. Si esto es "
672
+ "correcto, simplemente guarda el anuncio. Si no, por favor actualiza tus "
673
+ "configuraciones."
674
+
675
+ #: ../admin/includes/class-display-condition-callbacks.php:318
676
+ msgid "new"
677
+ msgstr "Nuevo"
678
+
679
+ #: ../admin/includes/class-display-condition-callbacks.php:320
680
+ msgid "type the title"
681
+ msgstr "Escribe el título"
682
+
683
+ #: ../admin/includes/class-notices.php:359
684
+ #, php-format
685
+ msgid ""
686
+ "You don’t seem to have an email address. Please use <a href=\"%s\" "
687
+ "target=\"_blank\">this form</a> to sign up."
688
+ msgstr ""
689
+ "Parece ser que no tienes una dirección de correo electrónico. Por favor, usa "
690
+ "<a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
691
+
692
+ #: ../admin/includes/class-notices.php:377
693
+ msgid "How embarrassing. The email server seems to be down. Please try again later."
694
+ msgstr ""
695
+ "Esto es penoso. El servidor de correos parece estar caído. Por favor, "
696
+ "inténtalo más tarde."
697
+
698
+ #: ../admin/includes/class-notices.php:382
699
+ #, php-format
700
+ msgid ""
701
+ "Please check your email (%s) for the confirmation message. If you didn’t "
702
+ "receive one or want to use another email address then please use <a "
703
+ "href=\"%s\" target=\"_blank\">this form</a> to sign up."
704
+ msgstr ""
705
+ "Por favor, revisa tu correo (%s) para el mensaje de confirmación. Si no "
706
+ "recibiste uno o deseas utilizar otra dirección de correo, entonces por favor "
707
+ "usa <a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
708
+
709
+ #: ../admin/includes/class-overview-widgets.php:45
710
+ msgid "Tips and Tutorials"
711
+ msgstr "Tips y Tutoriales"
712
+
713
+ #: ../admin/includes/class-overview-widgets.php:47
714
+ msgid "Setup and Optimization Help"
715
+ msgstr "Ayuda de Optimización y Configuración"
716
+
717
+ #: ../admin/includes/class-overview-widgets.php:49
718
+ msgid "Manual and Support"
719
+ msgstr "Manual y Soporte"
720
+
721
+ #: ../admin/includes/class-overview-widgets.php:53
722
+ msgid "Advanced Ads Pro"
723
+ msgstr "Advanced Ads Pro"
724
+
725
+ #: ../admin/includes/class-overview-widgets.php:55
726
+ msgid "Tracking and Stats"
727
+ msgstr "Estadísticas y Rastreo"
728
+
729
+ #: ../admin/includes/class-overview-widgets.php:57
730
+ msgid "Responsive and Mobile ads"
731
+ msgstr "Anuncios Responsables y Móviles"
732
+
733
+ #: ../admin/includes/class-overview-widgets.php:59
734
+ msgid "Sticky ads"
735
+ msgstr "Anuncios Pegajosos (sticky)"
736
+
737
+ #: ../admin/includes/class-overview-widgets.php:61
738
+ msgid "PopUps and Layers"
739
+ msgstr "PopUps y Ventanas Emergentes"
740
+
741
+ #: ../admin/includes/class-overview-widgets.php:63
742
+ msgid "Ad Slider"
743
+ msgstr "Slider de Anuncios"
744
+
745
+ #: ../admin/includes/class-overview-widgets.php:81
746
+ msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
747
+ msgstr ""
748
+ "Obtén <strong>2 add-ons gratis</strong> por suscribirte al boletín de "
749
+ "noticias."
750
+
751
+ #: ../admin/includes/class-overview-widgets.php:82
752
+ msgid "Join now"
753
+ msgstr "Suscríbete Ahora"
754
+
755
+ #: ../admin/includes/class-overview-widgets.php:89
756
+ msgid ""
757
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
758
+ "and Advanced Ads from the dedicated newsletter group."
759
+ msgstr ""
760
+ "Aprende más acerca de cómo y <strong>cuánto puedes ganar con "
761
+ "AdSense</strong> y Advanced Ads con nuestro grupo de noticias dedicado."
762
+
763
+ #: ../admin/includes/class-overview-widgets.php:90 ../admin/includes/notices.php:
764
+ #: 32 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
765
+ #: admin/views/notices/subscribe.php:3
766
+ msgid "Subscribe me now"
767
+ msgstr "Suscribirme Ahora"
768
+
769
+ #: ../admin/includes/class-overview-widgets.php:97
770
+ msgid "Get the first steps and more tutorials to your inbox."
771
+ msgstr "Obtén los primeros pasos y más tutoriales en tu correo."
772
+
773
+ #: ../admin/includes/class-overview-widgets.php:98
774
+ msgid "Send it now"
775
+ msgstr "Enviarlo Ahora"
776
+
777
+ #: ../admin/includes/class-overview-widgets.php:121 ../admin/views/intro.php:78
778
+ msgid "Create your first ad"
779
+ msgstr "Crea Tu Primer Anuncio"
780
+
781
+ #: ../admin/includes/class-overview-widgets.php:124
782
+ msgid ""
783
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
784
+ "single spot."
785
+ msgstr ""
786
+ "Los Grupos de Anuncios contienen anuncios y se usan actualmente para rotar "
787
+ "múltiples anuncios en un mismo lugar."
788
+
789
+ #: ../admin/includes/class-overview-widgets.php:126
790
+ msgid "Create your first group"
791
+ msgstr "Crea Tu Primer Grupo"
792
+
793
+ #: ../admin/includes/class-overview-widgets.php:129
794
+ msgid "Ad Placements are the best way to manage where to display ads and groups."
795
+ msgstr ""
796
+ "Las Colocaciones de Anuncios son la mejor manera para gestionar en donde "
797
+ "mostrar anuncios y grupos."
798
+
799
+ #: ../admin/includes/class-overview-widgets.php:131
800
+ msgid "Create your first placement"
801
+ msgstr "Crea Tu Primera Colocación"
802
+
803
+ #: ../admin/includes/class-overview-widgets.php:136
804
+ msgid "Next steps"
805
+ msgstr "Próximos Pasos"
806
+
807
+ #: ../admin/includes/class-overview-widgets.php:148
808
+ #, php-format
809
+ msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
810
+ msgstr "<a href=\"%s\" target=\"_blank\">Página de Inicio del Plugin</a>"
811
+
812
+ #: ../admin/includes/class-overview-widgets.php:149
813
+ #, php-format
814
+ msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
815
+ msgstr "<a href=\"%s\" target=\"_blank\">Manual</a>"
816
+
817
+ #: ../admin/includes/class-overview-widgets.php:150
818
+ #, php-format
819
+ msgid "Ask other users in the <a href=\"%s\" target=\"_blank\">wordpress.org forum</a>"
820
+ msgstr ""
821
+ "Pregunta a otros usuarios en los <a href=\"%s\" target=\"_blank\">foros de "
822
+ "wordpress.org</a>"
823
+
824
+ #: ../admin/includes/class-overview-widgets.php:151
825
+ #, php-format
826
+ msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
827
+ msgstr "Vota por una <a href=\"%s\" target=\"_blank\">funcionalidad</a>"
828
+
829
+ #: ../admin/includes/class-overview-widgets.php:152
830
+ #, php-format
831
+ msgid ""
832
+ "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
833
+ "href=\"%s\" target=\"_blank\">wordpress.org</a>"
834
+ msgstr ""
835
+ "Agradece al desarrollador con una &#9733;&#9733;&#9733;&#9733;&#9733; "
836
+ "evaluación del plugin en <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
837
+
838
+ #: ../admin/includes/class-overview-widgets.php:161
839
+ msgid ""
840
+ "Need help to set up and optimize your ads? Need custom coding on your site? "
841
+ "Ask me for a quote."
842
+ msgstr ""
843
+ "Necesitas ayuda configurando y optimizando tus anuncios? Necesitas "
844
+ "programación personalizada para tu sitio? Contáctame para una cotización."
845
+
846
+ #: ../admin/includes/class-overview-widgets.php:162
847
+ #, php-format
848
+ msgid "Help with ads on %s"
849
+ msgstr "Ayuda con anuncios en %s"
850
+
851
+ #: ../admin/includes/class-overview-widgets.php:163
852
+ msgid "Get an offer"
853
+ msgstr "Obtén una Cotización"
854
+
855
+ #: ../admin/includes/class-overview-widgets.php:171
856
+ msgid "Ad management for advanced websites."
857
+ msgstr "Gestión de anuncios para websites avanzados."
858
+
859
+ #: ../admin/includes/class-overview-widgets.php:172
860
+ msgid "Cache-busting"
861
+ msgstr "Almacenamiento-en-caché"
862
+
863
+ #: ../admin/includes/class-overview-widgets.php:173
864
+ msgid "Advanced visitor conditions"
865
+ msgstr "Condiciones Avanzadas del Visitante"
866
+
867
+ #: ../admin/includes/class-overview-widgets.php:174
868
+ msgid "Flash ads with fallback"
869
+ msgstr "Anuncios Flash con Retroceso (fallback)"
870
+
871
+ #: ../admin/includes/class-overview-widgets.php:176
872
+ msgid "Get Pro"
873
+ msgstr "Obtener Pro"
874
+
875
+ #: ../admin/includes/class-overview-widgets.php:184
876
+ msgid "Track the impressions of and clicks on your ads."
877
+ msgstr "Rastrear las impresiones y los clics en tus anuncios."
878
+
879
+ #: ../admin/includes/class-overview-widgets.php:185
880
+ msgid "2 methods to count impressions"
881
+ msgstr "Dos métodos para contar las impresiones"
882
+
883
+ #: ../admin/includes/class-overview-widgets.php:186
884
+ msgid "beautiful stats for all or single ads"
885
+ msgstr "Hermosas estadísticas para todos los anuncios o para anuncios individuales"
886
+
887
+ #: ../admin/includes/class-overview-widgets.php:187
888
+ msgid "get stats for predefined and custom persiods"
889
+ msgstr "Obtener estadísticas para períodos pre-definidos y personalizados"
890
+
891
+ #: ../admin/includes/class-overview-widgets.php:188
892
+ msgid "group stats by day, week or month"
893
+ msgstr "Agrupar estadísticas por día, semana o mes"
894
+
895
+ #: ../admin/includes/class-overview-widgets.php:190
896
+ msgid "Get the Tracking add-on"
897
+ msgstr "Obtener el add-on de Rastreo"
898
+
899
+ #: ../admin/includes/class-overview-widgets.php:198
900
+ msgid "Display ads based on the size of your visitor’s browser or device."
901
+ msgstr "Mostrar anuncios en base al tamaño del navegador del visitante."
902
+
903
+ #: ../admin/includes/class-overview-widgets.php:199
904
+ msgid "set a range (from … to …) pixels for the browser size"
905
+ msgstr "Definir un rango (de… a…) píxeles para el tamaño del navegador"
906
+
907
+ #: ../admin/includes/class-overview-widgets.php:200
908
+ msgid "set custom sizes for AdSense responsive ads"
909
+ msgstr "Definir tamaños personalizados para los anuncios responsables de AdSense"
910
+
911
+ #: ../admin/includes/class-overview-widgets.php:201
912
+ msgid "list all ads by their responsive settings"
913
+ msgstr "Listar todos los anuncios por sus configuraciones responsables"
914
+
915
+ #: ../admin/includes/class-overview-widgets.php:203
916
+ msgid "Get the Responsive add-on"
917
+ msgstr "Obtener el add-on de diseño responsable"
918
+
919
+ #: ../admin/includes/class-overview-widgets.php:211 ../admin/views/ad-info-top.
920
+ #: php:30
921
+ msgid ""
922
+ "Fix ads to the browser while users are scrolling and create best performing "
923
+ "anchor ads."
924
+ msgstr ""
925
+ "Fijar anuncios al navegador mientras los usuarios están desplazándose y "
926
+ "crear los anuncios de anclaje con mejor rendimiento."
927
+
928
+ #: ../admin/includes/class-overview-widgets.php:212
929
+ msgid "position ads that don’t scroll with the screen"
930
+ msgstr "Posicionar anuncios que no se desplacen con la pantalla"
931
+
932
+ #: ../admin/includes/class-overview-widgets.php:213
933
+ msgid "build anchor ads not only on mobile devices"
934
+ msgstr "Construir anuncios de anclaje no solamente en dispositivos móviles"
935
+
936
+ #: ../admin/includes/class-overview-widgets.php:215 ../admin/views/ad-info-top.
937
+ #: php:32
938
+ msgid "Get the Sticky add-on"
939
+ msgstr "Obtener el add-on de Anuncios Pegajosos (sticky)"
940
+
941
+ #: ../admin/includes/class-overview-widgets.php:223 ../admin/views/ad-info-top.
942
+ #: php:37
943
+ msgid "Display content and ads in layers and popups on custom events."
944
+ msgstr ""
945
+ "Mostrar contenido y anuncios en Ventanas Emergentes y PopUps en eventos "
946
+ "personalizados."
947
+
948
+ #: ../admin/includes/class-overview-widgets.php:224
949
+ msgid "display a popup after a user interaction like scrolling"
950
+ msgstr "Mostrar un PopUp después de una interacción de usuario (como desplazarse)"
951
+
952
+ #: ../admin/includes/class-overview-widgets.php:225
953
+ msgid "optional backgroup overlay"
954
+ msgstr "Recubrimiento opcional del fondo"
955
+
956
+ #: ../admin/includes/class-overview-widgets.php:226
957
+ msgid "allow users to close the popup"
958
+ msgstr "Permitir a los usuarios cerrar un PopUp\n"
959
+
960
+ #: ../admin/includes/class-overview-widgets.php:228 ../admin/views/ad-info-top.
961
+ #: php:39
962
+ msgid "Get the PopUp and Layer add-on"
963
+ msgstr "Obtener el add-on de PopUps y Ventanas Emergentes"
964
+
965
+ #: ../admin/includes/class-overview-widgets.php:236
966
+ msgid "Create a beautiful and simple slider from your ads."
967
+ msgstr "Crear un lindo y simple Slider para tus anuncios."
968
+
969
+ #: ../admin/includes/class-overview-widgets.php:238
970
+ msgid "Get the Slider add-on"
971
+ msgstr "Obtener el add-on del Slider"
972
+
973
+ #: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
974
+ msgid "--empty--"
975
+ msgstr "--Vacío--"
976
+
977
+ #: ../admin/includes/notices.php:14
978
+ #, php-format
979
+ msgid ""
980
+ "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
981
+ "Steps</a>."
982
+ msgstr ""
983
+ "Advanced Ads exitosamente instalado. Échale un vistazo a los <a "
984
+ "href=\"%s\">primeros pasos</a>."
985
+
986
+ #: ../admin/includes/notices.php:19
987
+ msgid ""
988
+ "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
989
+ "receive the first steps via email?"
990
+ msgstr ""
991
+ "Gracias por activar <strong>Advanced Ads</strong>. Deseas recibir los "
992
+ "primeros pasos por correo electrónico?"
993
+
994
+ #: ../admin/includes/notices.php:20
995
+ msgid "Yes, send it"
996
+ msgstr "Si, envíalo"
997
+
998
+ #: ../admin/includes/notices.php:25
999
+ msgid ""
1000
+ "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1001
+ "<strong>2 free add-ons</strong> for joining the newsletter."
1002
+ msgstr ""
1003
+ "Gracias por usar <strong>Advanced Ads</strong>. Mántente informado y recibe "
1004
+ "<strong>2 add-ons gratis</strong> por unirte a nuestro boletín de noticias."
1005
+
1006
+ #: ../admin/includes/notices.php:26
1007
+ msgid "Add me now"
1008
+ msgstr "Añadirme Ahora"
1009
+
1010
+ #: ../admin/includes/notices.php:31
1011
+ msgid ""
1012
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1013
+ "and Advanced Ads from my dedicated newsletter."
1014
+ msgstr ""
1015
+ "Aprende más sobre cómo y <strong>cuánto puedes ganar con AdSense</strong> y "
1016
+ "Advanced Ads con mi boletín de noticias dedicado."
1017
+
1018
+ #: ../admin/includes/notices.php:52
1019
+ msgid ""
1020
+ "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1021
+ "missing</strong>."
1022
+ msgstr ""
1023
+ "Una o más llaves de licencia para los <strong>add-ons de Advanced Ads no se "
1024
+ "encuentran o son inválidos</strong>."
1025
+
1026
+ #: ../admin/includes/notices.php:52
1027
+ #, php-format
1028
+ msgid "Please add valid license keys <a href=\"%s\">here</a>."
1029
+ msgstr "Por favor, añade llaves de licencia válidas <a href=\"%s\">aquí</a>."
1030
+
1031
+ #: ../admin/includes/notices.php:57
1032
+ #, php-format
1033
+ msgid ""
1034
+ "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1035
+ "soon</strong>. Don’t risk to lose support and updates and renew your license "
1036
+ "before it expires with a significant discount on <a href=\"%s\" "
1037
+ "target=\"_blank\">the add-on page</a>."
1038
+ msgstr ""
1039
+ "Una o más licencias para tus <strong>add-ons de Advanced Ads van a expirar "
1040
+ "pronto</strong>. No arriesgues perder soporte y actualizaciones y renueva tu "
1041
+ "licencia antes de que expire con un descuento significativo en <a href=\"%s\" "
1042
+ "target=\"_blank\">la página de add-ons</a>."
1043
+
1044
+ #: ../admin/includes/notices.php:62 ../admin/views/support.php:38
1045
+ #, php-format
1046
+ msgid ""
1047
+ "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1048
+ "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1049
+ "information."
1050
+ msgstr ""
1051
+ "Licencia (s) de <strong>Advanced Ads</strong> expirada. El soporte y las "
1052
+ "actualizaciones están deshabilitadas. Por favor, visita <a href=\"%s\"> la "
1053
+ "página de licencias</a> para más información."
1054
+
1055
+ #: ../admin/includes/shortcode-creator-l10n.php:10
1056
+ msgctxt "shortcode creator"
1057
+ msgid "Add an ad"
1058
+ msgstr "Agrega un Anuncio"
1059
+
1060
+ #: ../admin/includes/shortcode-creator-l10n.php:11
1061
+ msgctxt "shortcode creator"
1062
+ msgid "Add shortcode"
1063
+ msgstr "Agrega un Shortcode "
1064
+
1065
+ #: ../admin/includes/shortcode-creator-l10n.php:12
1066
+ msgctxt "shortcode creator"
1067
+ msgid "Cancel"
1068
+ msgstr "Cancelar "
1069
+
1070
+ #: ../admin/views/ad-display-metabox.php:8
1071
+ msgid "Choose where to display the ad and where to hide it."
1072
+ msgstr "Selecciona en donde mostrar el anuncio y en donde esconderlo."
1073
+
1074
+ #: ../admin/views/ad-display-metabox.php:10
1075
+ msgid "Display ad everywhere"
1076
+ msgstr "Mostrar el anuncio en todas partes"
1077
+
1078
+ #: ../admin/views/ad-display-metabox.php:11
1079
+ msgid "Set display conditions"
1080
+ msgstr "Configurar condiciones de visualización"
1081
+
1082
+ #: ../admin/views/ad-display-metabox.php:15
1083
+ msgid "If you want to display the ad everywhere, don't do anything here. "
1084
+ msgstr "Si quieres mostrar el anuncio en todas partes, no hagas nada aquí."
1085
+
1086
+ #: ../admin/views/ad-display-metabox.php:16
1087
+ msgid "The fewer conditions you enter, the better the performance will be."
1088
+ msgstr "Entre menos condiciones ingreses, mejor será el rendimiento."
1089
+
1090
+ #: ../admin/views/ad-display-metabox.php:17
1091
+ #, php-format
1092
+ msgid ""
1093
+ "Learn more about display conditions from the <a href=\"%s\" "
1094
+ "target=\"_blank\">manual</a>."
1095
+ msgstr ""
1096
+ "Aprende más sobre las condiciones de visualización en el <a href=\"%s\" "
1097
+ "target=\"_blank\">manual</a>."
1098
+
1099
+ #: ../admin/views/ad-display-metabox.php:34
1100
+ msgid "Other conditions"
1101
+ msgstr "Otras Condiciones:"
1102
+
1103
+ #: ../admin/views/ad-display-metabox.php:52
1104
+ msgctxt "button label"
1105
+ msgid "on"
1106
+ msgstr "Encendido"
1107
+
1108
+ #: ../admin/views/ad-display-metabox.php:56
1109
+ msgctxt "button label"
1110
+ msgid "off"
1111
+ msgstr "Apagado"
1112
+
1113
+ #: ../admin/views/ad-display-metabox.php:71
1114
+ msgid "show debug output"
1115
+ msgstr "Mostrar los resultados de la depuración"
1116
+
1117
+ #: ../admin/views/ad-display-metabox.php:72
1118
+ msgid "Values saved for this ad in the database (post metas)"
1119
+ msgstr "Valores guardados para este anuncio en la base de datos (post metas)"
1120
+
1121
+ #: ../admin/views/ad-group-edit.php:14
1122
+ msgid "You did not select an item for editing."
1123
+ msgstr "No seleccionaste un ítem para editar."
1124
+
1125
+ #: ../admin/views/ad-group-edit.php:33
1126
+ msgctxt "Taxonomy Name"
1127
+ msgid "Name"
1128
+ msgstr "Nombre"
1129
+
1130
+ #: ../admin/views/ad-group-edit.php:38
1131
+ msgctxt "Taxonomy Slug"
1132
+ msgid "Slug"
1133
+ msgstr "Slug"
1134
+
1135
+ #: ../admin/views/ad-group-edit.php:40
1136
+ msgid "An id-like string with only letters in lower case, numbers, and hyphens."
1137
+ msgstr "Una cadena tipo-id con solamente letras en minúscula, números, y guiones."
1138
+
1139
+ #: ../admin/views/ad-group-edit.php:45
1140
+ msgctxt "Taxonomy Description"
1141
+ msgid "Description"
1142
+ msgstr "Descripción"
1143
+
1144
+ #: ../admin/views/ad-group-edit.php:57
1145
+ msgid "Create new Ad Group"
1146
+ msgstr "Crear un nuevo Grupo de Anuncios"
1147
+
1148
+ #: ../admin/views/ad-group-edit.php:59
1149
+ msgid "Update"
1150
+ msgstr "Actualizar"
1151
+
1152
+ #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
1153
+ msgid "Name"
1154
+ msgstr "Nombre"
1155
+
1156
+ #: ../admin/views/ad-group-list-form-row.php:5
1157
+ msgid "Description"
1158
+ msgstr "Descripción"
1159
+
1160
+ #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
1161
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:48
1162
+ msgid "Type"
1163
+ msgstr "Tipo"
1164
+
1165
+ #: ../admin/views/ad-group-list-form-row.php:16
1166
+ msgid "Number of visible ads"
1167
+ msgstr "Número de anuncios visibles"
1168
+
1169
+ #: ../admin/views/ad-group-list-form-row.php:22
1170
+ msgctxt "option to display all ads in an ad groups"
1171
+ msgid "all"
1172
+ msgstr "Todos"
1173
+
1174
+ #: ../admin/views/ad-group-list-form-row.php:25
1175
+ msgid "Number of ads that are visible at the same time"
1176
+ msgstr "Número de anuncios que son visibles al mismo tiempo"
1177
+
1178
+ #: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
1179
+ #: 564
1180
+ msgid "Ad"
1181
+ msgstr "Anuncio"
1182
+
1183
+ #: ../admin/views/ad-group-list-form-row.php:32
1184
+ msgid "weight"
1185
+ msgstr "Peso"
1186
+
1187
+ #: ../admin/views/ad-group-list-header.php:3
1188
+ msgid "Ad Group"
1189
+ msgstr "Grupo de Anuncios"
1190
+
1191
+ #: ../admin/views/ad-group-list-header.php:4
1192
+ msgid "Details"
1193
+ msgstr "Detalles"
1194
+
1195
+ #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1196
+ #: admin/views/ad-info.php:3 ../admin/views/placements.php:58
1197
+ msgid "shortcode"
1198
+ msgstr "Shortcode:"
1199
+
1200
+ #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1201
+ #: admin/views/placements.php:61
1202
+ msgid "template"
1203
+ msgstr "Plantilla"
1204
+
1205
+ #: ../admin/views/ad-group-list-row.php:14
1206
+ #, php-format
1207
+ msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
1208
+ msgstr ""
1209
+ "Aprende más sobre el uso de grupos en el <a href=\"%s\" "
1210
+ "target=\"_blank\">manual</a>."
1211
+
1212
+ #: ../admin/views/ad-group-list-row.php:19
1213
+ #, php-format
1214
+ msgid "Type: %s"
1215
+ msgstr "Tipo: %s"
1216
+
1217
+ #: ../admin/views/ad-group-list-row.php:20
1218
+ #, php-format
1219
+ msgid "ID: %s"
1220
+ msgstr "ID: %s"
1221
+
1222
+ #: ../admin/views/ad-group.php:18
1223
+ msgid "Ad Groups successfully updated"
1224
+ msgstr "Grupos de Anuncios actualizados exitosamente"
1225
+
1226
+ #: ../admin/views/ad-group.php:46
1227
+ #, php-format
1228
+ msgid "Search results for &#8220;%s&#8221;"
1229
+ msgstr "Resultados de la búsqueda para &#8220;%s&#8221;"
1230
+
1231
+ #: ../admin/views/ad-group.php:52
1232
+ msgid ""
1233
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
1234
+ "display random ads in the frontend or run split tests, but also just for "
1235
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1236
+ "ad can belong to multiple ad groups."
1237
+ msgstr ""
1238
+ "Los Grupos de Anuncios son un método muy flexible para reunir anuncios. Los "
1239
+ "puedes usar para mostrar anuncios aleatorios en el frente de tu sitio o para "
1240
+ "ejecutar evaluaciones comparativas (tipo split tests), pero también sirven "
1241
+ "con propósitos informativos. Los Grupos de Anuncios no solamente pueden "
1242
+ "tener múltiples anuncios, sino que también, un anuncio puede pertenecer a "
1243
+ "múltiples grupos."
1244
+
1245
+ #: ../admin/views/ad-group.php:60
1246
+ msgid "How to display an Ad Group?"
1247
+ msgstr "Cómo mostrar un Grupo de Anuncios?"
1248
+
1249
+ #: ../admin/views/ad-group.php:62
1250
+ #, php-format
1251
+ msgid ""
1252
+ "Examples on how to display an ad group? Find more help and examples in the "
1253
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
1254
+ msgstr ""
1255
+ "Ejemplos de cómo mostrar un Grupo de Anuncios? Encuentra más ayuda y "
1256
+ "ejemplos en el <a href=\"%s\" target=\"_blank\">manual</a>"
1257
+
1258
+ #: ../admin/views/ad-group.php:64
1259
+ msgid "To display an ad group with the ID 6 in content fields"
1260
+ msgstr "Para mostrar un Grupo de Anuncios con el ID 6 en los campos de contenido"
1261
+
1262
+ #: ../admin/views/ad-group.php:67
1263
+ msgid "To display an ad group with the ID 6 in template files"
1264
+ msgstr "Para mostrar un Grupo de Anuncios con el ID 6 en los archivos de plantilla"
1265
+
1266
+ #: ../admin/views/ad-group.php:87
1267
+ msgid "Update Groups"
1268
+ msgstr "Actualizar Grupos"
1269
+
1270
+ #: ../admin/views/ad-info-top.php:4
1271
+ msgid "Cool, you just published an ad. What now?"
1272
+ msgstr "Excelente, has publicado un anuncio. Y ahora qué?"
1273
+
1274
+ #: ../admin/views/ad-info-top.php:5
1275
+ msgid "Display the ad in …"
1276
+ msgstr "Mostrar el anuncio en…"
1277
+
1278
+ #: ../admin/views/ad-info-top.php:7
1279
+ msgid "… every post or page"
1280
+ msgstr "… Cada entrada o Página"
1281
+
1282
+ #: ../admin/views/ad-info-top.php:9
1283
+ msgid "Use placements to inject the ad automatically into posts and pages."
1284
+ msgstr ""
1285
+ "Usar colocaciones para inyectar el anuncio automáticamente en las entradas y "
1286
+ "páginas."
1287
+
1288
+ #: ../admin/views/ad-info-top.php:10
1289
+ msgid "Configure Placements"
1290
+ msgstr "Configurar Colocaciones"
1291
+
1292
+ #: ../admin/views/ad-info-top.php:12
1293
+ msgid "… Sidebar or Widget Area"
1294
+ msgstr "… Barra Lateral o Área de Widget"
1295
+
1296
+ #: ../admin/views/ad-info-top.php:14
1297
+ msgid "Use the <em>Advanced Ads</em> Widget to display ads in your sidebars."
1298
+ msgstr ""
1299
+ "Usar el widget de <em>Advanced Ads</em> para mostrar anuncios en las barras "
1300
+ "laterales."
1301
+
1302
+ #: ../admin/views/ad-info-top.php:15
1303
+ msgid "Configure a Widget"
1304
+ msgstr "Configurar un Widget"
1305
+
1306
+ #: ../admin/views/ad-info-top.php:17
1307
+ msgid "… a few hand selected posts or pages"
1308
+ msgstr "… Un pequeño grupo de entradas o páginas seleccionadas."
1309
+
1310
+ #: ../admin/views/ad-info-top.php:19
1311
+ msgid ""
1312
+ "Use the shortcode below to manually place the ad in the content editor of "
1313
+ "posts and pages."
1314
+ msgstr ""
1315
+ "Usar el shortcode de abajo para manualmente colocar el anuncio en el editor "
1316
+ "de contenido de entradas y páginas."
1317
+
1318
+ #: ../admin/views/ad-info-top.php:22
1319
+ msgid "… in a custom position in your theme"
1320
+ msgstr "… En una posición personalizada de tu tema"
1321
+
1322
+ #: ../admin/views/ad-info-top.php:24
1323
+ msgid ""
1324
+ "Use the function below to manually place the ad into your template files. "
1325
+ "This method is needed for more advanced placements like in the header of "
1326
+ "your theme."
1327
+ msgstr ""
1328
+ "Usar la función de abajo para manualmente colocar anuncios en los archivos "
1329
+ "de la plantilla de tu sitio (Template Files). Este método es necesario para "
1330
+ "colocaciones más avanzadas, como en el encabezado de tu tema."
1331
+
1332
+ #: ../admin/views/ad-info-top.php:27
1333
+ msgid "… in an anchor ad or pop-up"
1334
+ msgstr "… En un anclaje de anuncio o PopUp"
1335
+
1336
+ #: ../admin/views/ad-info-top.php:34
1337
+ msgid "You find the settings for the Sticky Ads below."
1338
+ msgstr "Encontrarás las configuraciones para los Anuncios Pegajosos (sticky) abajo."
1339
+
1340
+ #: ../admin/views/ad-info-top.php:41
1341
+ msgid "You find the settings for the Layer and PopUp effects below."
1342
+ msgstr ""
1343
+ "Encontrarás las configuraciones para las ventanas emergentes y los efectos "
1344
+ "PopUp abajo."
1345
+
1346
+ #: ../admin/views/ad-info-top.php:46
1347
+ #, php-format
1348
+ msgid ""
1349
+ "Learn more about your choices to display an ad in the <a href=\"%s\" "
1350
+ "target=\"_blank\">manual</a>"
1351
+ msgstr ""
1352
+ "Aprender más acerca de tus opciones para mostrar un anuncio en el <a "
1353
+ "href=\"%s\" target=\"_blank\">manual</a>"
1354
+
1355
+ #: ../admin/views/ad-info.php:2
1356
+ #, php-format
1357
+ msgid "Ad Id: %s"
1358
+ msgstr "ID del Anuncio: %s"
1359
+
1360
+ #: ../admin/views/ad-info.php:5
1361
+ msgid "theme function"
1362
+ msgstr "Función para el Tema:"
1363
+
1364
+ #: ../admin/views/ad-info.php:7
1365
+ #, php-format
1366
+ msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1367
+ msgstr ""
1368
+ "Encuentra más opciones de visualización en el <a href=\"%s\" "
1369
+ "target=\"_blank\">manual</a>."
1370
+
1371
+ #: ../admin/views/ad-info.php:12
1372
+ msgid "click to change"
1373
+ msgstr "Clic para cambiar"
1374
+
1375
+ #: ../admin/views/ad-info.php:16
1376
+ msgid "Add a description"
1377
+ msgstr "Añadir una Descripción"
1378
+
1379
+ #: ../admin/views/ad-info.php:19
1380
+ msgid "Internal description or your own notes about this ad."
1381
+ msgstr "Descripción interna, o tus propias notas, acerca de este anuncio."
1382
+
1383
+ #: ../admin/views/ad-list-filters.php:2
1384
+ msgid "all ad types"
1385
+ msgstr "Todos los tipos de anuncios"
1386
+
1387
+ #: ../admin/views/ad-list-filters.php:5
1388
+ msgid "all ad sizes"
1389
+ msgstr "Todos los tamaños de anuncios"
1390
+
1391
+ #: ../admin/views/ad-list-filters.php:8
1392
+ msgid "all ad dates"
1393
+ msgstr "Todas las fechas de anuncios"
1394
+
1395
+ #: ../admin/views/ad-list-filters.php:9
1396
+ msgid "expired"
1397
+ msgstr "Expirado"
1398
+
1399
+ #: ../admin/views/ad-list-filters.php:10
1400
+ msgid "any expiry date"
1401
+ msgstr "Cualquier fecha de expiración"
1402
+
1403
+ #: ../admin/views/ad-list-filters.php:11
1404
+ msgid "planned"
1405
+ msgstr "Planeado"
1406
+
1407
+ #: ../admin/views/ad-list-filters.php:14
1408
+ msgid "all ad groups"
1409
+ msgstr "Todos los Grupos de Anuncios"
1410
+
1411
+ #: ../admin/views/ad-main-metabox.php:3
1412
+ msgid "No ad types defined"
1413
+ msgstr "No hay tipos de anuncios definidos"
1414
+
1415
+ #: ../admin/views/ad-output-metabox.php:1
1416
+ msgid "Everything connected to the ads layout and output."
1417
+ msgstr "Todo lo relacionado con el diseño y la visualización de los anuncios."
1418
+
1419
+ #: ../admin/views/ad-output-metabox.php:5
1420
+ msgid "Position"
1421
+ msgstr "Posición:"
1422
+
1423
+ #: ../admin/views/ad-output-metabox.php:6
1424
+ msgid "- default -"
1425
+ msgstr "- Defecto -"
1426
+
1427
+ #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
1428
+ msgid "default"
1429
+ msgstr "Defecto"
1430
+
1431
+ #: ../admin/views/ad-output-metabox.php:8
1432
+ msgid "left"
1433
+ msgstr "Izquierda"
1434
+
1435
+ #: ../admin/views/ad-output-metabox.php:11
1436
+ msgid "center"
1437
+ msgstr "Centro"
1438
+
1439
+ #: ../admin/views/ad-output-metabox.php:14
1440
+ msgid "right"
1441
+ msgstr "Derecha"
1442
+
1443
+ #: ../admin/views/ad-output-metabox.php:19
1444
+ msgid ""
1445
+ "Check this if you don't want the following elements to float around the ad. "
1446
+ "(adds a clearfix)"
1447
+ msgstr ""
1448
+ "Chequea esto si no quieres que los elementos sub-siguientes floten alrededor "
1449
+ "del anuncio. (Añade un arreglo de espacio - clearfix)"
1450
+
1451
+ #: ../admin/views/ad-output-metabox.php:22
1452
+ msgid "Margin"
1453
+ msgstr "Margen:"
1454
+
1455
+ #: ../admin/views/ad-output-metabox.php:23
1456
+ msgid "top:"
1457
+ msgstr "Superior:"
1458
+
1459
+ #: ../admin/views/ad-output-metabox.php:25
1460
+ msgid "right:"
1461
+ msgstr "Derecho:"
1462
+
1463
+ #: ../admin/views/ad-output-metabox.php:27
1464
+ msgid "bottom:"
1465
+ msgstr "Inferior:"
1466
+
1467
+ #: ../admin/views/ad-output-metabox.php:29
1468
+ msgid "left:"
1469
+ msgstr "Izquierdo:"
1470
+
1471
+ #: ../admin/views/ad-output-metabox.php:31
1472
+ msgid "tip: use this to add a margin around the ad"
1473
+ msgstr "Tip: usa esto para añadir un margen alrededor del anuncio"
1474
+
1475
+ #: ../admin/views/ad-output-metabox.php:33
1476
+ msgid "container id"
1477
+ msgstr "ID del Contenedor"
1478
+
1479
+ #: ../admin/views/ad-output-metabox.php:36
1480
+ msgid "Specify the id of the ad container. Leave blank for random or no id."
1481
+ msgstr ""
1482
+ "Especificar el ID para el contenedor del anuncio. Dejar en blanco para un "
1483
+ "valor aleatorio o para no tener un ID"
1484
+
1485
+ #: ../admin/views/ad-output-metabox.php:38
1486
+ msgid "container classes"
1487
+ msgstr "Clases para el Contenedor"
1488
+
1489
+ #: ../admin/views/ad-output-metabox.php:41
1490
+ msgid ""
1491
+ "Specify one or more classes for the container. Separate multiple classes "
1492
+ "with a space"
1493
+ msgstr ""
1494
+ "Especificar múltiples clases para el contenedor. Separar múltiples clases "
1495
+ "con un espacio"
1496
+
1497
+ #: ../admin/views/ad-parameters-metabox.php:25 ../classes/ad_ajax_callbacks.php:54
1498
+ msgid "size:"
1499
+ msgstr "Tamaño:"
1500
+
1501
+ #: ../admin/views/ad-parameters-metabox.php:26 ../classes/ad_ajax_callbacks.php:55
1502
+ msgid "width"
1503
+ msgstr "Ancho"
1504
+
1505
+ #: ../admin/views/ad-parameters-metabox.php:27 ../classes/ad_ajax_callbacks.php:56
1506
+ msgid "height"
1507
+ msgstr "Alto"
1508
+
1509
+ #: ../admin/views/ad-submitbox-meta.php:4
1510
+ msgid "Set expiry date"
1511
+ msgstr "Establecer la fecha de expiración"
1512
+
1513
+ #: ../admin/views/ad-submitbox-meta.php:10
1514
+ msgid "Month"
1515
+ msgstr "Mes"
1516
+
1517
+ #: ../admin/views/ad-submitbox-meta.php:14
1518
+ #, php-format
1519
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1520
+ msgid "%1$s-%2$s"
1521
+ msgstr "%1$s-%2$s"
1522
+
1523
+ #: ../admin/views/ad-submitbox-meta.php:19
1524
+ msgid "Day"
1525
+ msgstr "Día"
1526
+
1527
+ #: ../admin/views/ad-submitbox-meta.php:20
1528
+ msgid "Year"
1529
+ msgstr "Año"
1530
+
1531
+ #: ../admin/views/ad-submitbox-meta.php:21
1532
+ msgid "Hour"
1533
+ msgstr "Hora"
1534
+
1535
+ #: ../admin/views/ad-submitbox-meta.php:22
1536
+ msgid "Minute"
1537
+ msgstr "Minuto"
1538
+
1539
+ #: ../admin/views/ad-submitbox-meta.php:27
1540
+ #, php-format
1541
+ msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1542
+ msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1543
+ msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
1544
+
1545
+ #: ../admin/views/ad-visitor-metabox.php:4
1546
+ msgid ""
1547
+ "Display conditions that are based on the user. Use with caution on cached "
1548
+ "websites."
1549
+ msgstr ""
1550
+ "Mostrar condiciones que están basadas en el usuario. Usar con cautela en "
1551
+ "websites cacheados."
1552
+
1553
+ #: ../admin/views/ad-visitor-metabox.php:28
1554
+ msgid ""
1555
+ "Visitor conditions limit the number of users who can see your ad. There is "
1556
+ "no need to set visitor conditions if you want all users to see the ad."
1557
+ msgstr ""
1558
+ "Las condiciones del visitante limitan el número de usuarios que pueden ver "
1559
+ "tu anuncio. No hay necesidad de establecer condiciones del visitante si "
1560
+ "deseas que todos los usuarios vean el anuncio."
1561
+
1562
+ #: ../admin/views/ad-visitor-metabox.php:30
1563
+ #, php-format
1564
+ msgid ""
1565
+ "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
1566
+ "if dynamic features get cached."
1567
+ msgstr ""
1568
+ "Revisa el almacenamiento-en-caché en <a href=\"%s\" target=\"_blank\">Advanced "
1569
+ "Ads Pro</a> si las funcionalidades dinámicas son cacheadas."
1570
+
1571
+ #: ../admin/views/ad-visitor-metabox.php:34
1572
+ msgid "New condition"
1573
+ msgstr "Nueva Condición"
1574
+
1575
+ #: ../admin/views/ad-visitor-metabox.php:37
1576
+ msgctxt "visitor condition connector"
1577
+ msgid "and"
1578
+ msgstr "y"
1579
+
1580
+ #: ../admin/views/ad-visitor-metabox.php:38
1581
+ msgctxt "visitor condition connector"
1582
+ msgid "or"
1583
+ msgstr "o"
1584
+
1585
+ #: ../admin/views/ad-visitor-metabox.php:41
1586
+ msgid "-- choose a condition --"
1587
+ msgstr "-- Selecciona una Condición --"
1588
+
1589
+ #: ../admin/views/ad-visitor-metabox.php:46
1590
+ msgid "add"
1591
+ msgstr "Añadir"
1592
+
1593
+ #: ../admin/views/ad-visitor-metabox.php:50
1594
+ #, php-format
1595
+ msgid ""
1596
+ "Define the exact browser width for which an ad should be visible using the "
1597
+ "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1598
+ msgstr ""
1599
+ "Definir el ancho exacto del navegador para los que un anuncio debe ser "
1600
+ "visible usando el <a href=\"%s\" target=\"_blank\">Add-on responsable</a>."
1601
+
1602
+ #: ../admin/views/ad-visitor-metabox.php:108
1603
+ msgid ""
1604
+ "The visitor conditions below are deprecated. Please use the new version of "
1605
+ "visitor conditions to replace it."
1606
+ msgstr ""
1607
+ "Las condiciones del visitante de abajo están depreciadas. Por favor, utiliza "
1608
+ "la nueva versión de las condiciones del visitante para reemplazarlas."
1609
+
1610
+ #: ../admin/views/ad-visitor-metabox.php:114
1611
+ msgid "Display on all devices"
1612
+ msgstr "Mostrar en todos los dispositivos"
1613
+
1614
+ #: ../admin/views/ad-visitor-metabox.php:118
1615
+ msgid "only on mobile devices"
1616
+ msgstr "Solamente en dispositivos móviles"
1617
+
1618
+ #: ../admin/views/ad-visitor-metabox.php:122
1619
+ msgid "not on mobile devices"
1620
+ msgstr "No en dispositivos móviles"
1621
+
1622
+ #: ../admin/views/debug.php:6 ../admin/views/settings.php:45
1623
+ msgid "Debug Page"
1624
+ msgstr "Página de Depuración"
1625
+
1626
+ #: ../admin/views/debug.php:7
1627
+ msgid "Work in progress"
1628
+ msgstr "Trabajo en Progreso"
1629
+
1630
+ #: ../admin/views/debug.php:8
1631
+ msgid ""
1632
+ "This screen is work in progress. You can use the information if you "
1633
+ "understand them, but there is nothing to do here yet."
1634
+ msgstr ""
1635
+ "Esta pantalla es trabajo en progreso. Puedes usar la información si la "
1636
+ "entiendes, pero no hay nada que hacer aquí todavía."
1637
+
1638
+ #: ../admin/views/intro.php:18
1639
+ msgid "5-Star Usability"
1640
+ msgstr "Usabilidad 5- estrellas"
1641
+
1642
+ #: ../admin/views/intro.php:19
1643
+ msgid ""
1644
+ "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1645
+ "standards. If you know how to publish a post then you know how to create an "
1646
+ "ad."
1647
+ msgstr ""
1648
+ "Advanced Ads es poderoso y fácil de usar porque está construido bajo los "
1649
+ "estándares de WordPress. Si sabes cómo publicar una entrada, entonces sabrás "
1650
+ "cómo crear un anuncio."
1651
+
1652
+ #: ../admin/views/intro.php:23
1653
+ msgid "5-Star Support"
1654
+ msgstr "Soporte 5-estrellas"
1655
+
1656
+ #: ../admin/views/intro.php:24
1657
+ msgid ""
1658
+ "I promise you the best supported ad management plugin for WordPress. Whether "
1659
+ "a pro user or not, you can reach me easily through the support page, in the "
1660
+ "chat on the homepage or replying to a newsletter."
1661
+ msgstr ""
1662
+ "Te prometo el plugin de administración de anuncios con mejor soporte para "
1663
+ "WordPress. Seas un usuario pro o no, puedes localizarme fácilmente a través "
1664
+ "de la página de soporte, en el chat de la página de inicio, o respondiendo a "
1665
+ "mi boletín de noticias."
1666
+
1667
+ #: ../admin/views/intro.php:28
1668
+ msgid "5-Star Experience"
1669
+ msgstr "Experiencia 5- estrellas"
1670
+
1671
+ #: ../admin/views/intro.php:29
1672
+ msgid ""
1673
+ "Advanced Ads was built out of my own experience. I am personally using it to "
1674
+ "serve millions of ad impressions per month and constantly test new ways to "
1675
+ "optimize ad settings."
1676
+ msgstr ""
1677
+ "Advanced Ads fue construido en base a mi propia experiencia. Personalmente, "
1678
+ "lo uso para manejar millones de impresiones de anuncios por mes y "
1679
+ "constantemente pruebo nuevas formas de optimizar las configuraciones de los "
1680
+ "anuncios."
1681
+
1682
+ #: ../admin/views/intro.php:34
1683
+ msgid "Welcome to <strong>Advanced Ads</strong>"
1684
+ msgstr "Bienvenido a <strong>Advanced Ads</strong>\n"
1685
+
1686
+ #: ../admin/views/intro.php:36
1687
+ msgid "Let me give you an introduction into your future ad management solution."
1688
+ msgstr ""
1689
+ "Permíteme darte una introducción de tu futura solución en gestión de "
1690
+ "anuncios."
1691
+
1692
+ #: ../admin/views/intro.php:61
1693
+ msgid "Next Steps"
1694
+ msgstr "Próximos Pasos"
1695
+
1696
+ #: ../admin/views/intro.php:64
1697
+ msgid "Subscribe to the Mailing List"
1698
+ msgstr "Suscríbete a la Lista de Correos"
1699
+
1700
+ #: ../admin/views/intro.php:65
1701
+ msgid "Subscribe to the newsletter and instantly"
1702
+ msgstr "Suscríbete instantáneamente al boletín de noticias"
1703
+
1704
+ #: ../admin/views/intro.php:67
1705
+ msgid "get 2 free add-ons."
1706
+ msgstr "Obtén 2 add-ons gratis"
1707
+
1708
+ #: ../admin/views/intro.php:68
1709
+ msgid "reply to the welcome message with a question."
1710
+ msgstr "Responde al mensaje de bienvenida con una pregunta."
1711
+
1712
+ #: ../admin/views/intro.php:69
1713
+ msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1714
+ msgstr "Suscríbete a un grupo dedicado para el tutorial o para los tips de AdSense."
1715
+
1716
+ #: ../admin/views/intro.php:79
1717
+ #, php-format
1718
+ msgid ""
1719
+ "Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
1720
+ "watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
1721
+ msgstr ""
1722
+ "Empieza creando un anuncio <a href=\"$1%s\" target=\"blank\">ahora</a> o mira el "
1723
+ "<a href=\"$2%s\" target=\"blank\">vídeo tutorial (3:29min)</a> primero."
1724
+
1725
+ #: ../admin/views/intro.php:82
1726
+ msgid "Display your ad"
1727
+ msgstr "Muestra Tu Anuncio"
1728
+
1729
+ #: ../admin/views/intro.php:83
1730
+ msgid ""
1731
+ "You can display your ad using a shortcode, widget or one of the powerful "
1732
+ "placements. Placements help you to inject ads into the content or place them "
1733
+ "on your site without coding."
1734
+ msgstr ""
1735
+ "Puedes mostrar tu anuncio utilizando un shortcode, un widget, o alguna de "
1736
+ "las poderosas colocaciones disponibles. Las colocaciones te ayudan a "
1737
+ "inyectar anuncios dentro del contenido, o a colocarlos en algún lugar de tu "
1738
+ "sitio sin necesidad de que tengas que programar."
1739
+
1740
+ #: ../admin/views/intro.php:85
1741
+ msgid "List of all available placements"
1742
+ msgstr "Listado de todas las colocaciones disponibles"
1743
+
1744
+ #: ../admin/views/intro.php:86
1745
+ msgid "Create a placement"
1746
+ msgstr "Crear una Colocación"
1747
+
1748
+ #: ../admin/views/placements.php:8
1749
+ msgid ""
1750
+ "Couldn’t create the new placement. Please check your form field and whether "
1751
+ "the name is already in use."
1752
+ msgstr ""
1753
+ "No se pudo crear la nueva colocación. Por favor, revisa el campo del "
1754
+ "formulario y si el nombre ya está en uso."
1755
+
1756
+ #: ../admin/views/placements.php:10
1757
+ msgid "Placements updated"
1758
+ msgstr "Colocaciones Actualizadas"
1759
+
1760
+ #: ../admin/views/placements.php:15
1761
+ msgid ""
1762
+ "Placements are physically places in your theme and posts. You can use them "
1763
+ "if you plan to change ads and ad groups on the same place without the need "
1764
+ "to change your templates."
1765
+ msgstr ""
1766
+ "Las Colocaciones son lugares físicos dentro de tu tema y tus entradas. "
1767
+ "Puedes utilizarlas si planeas cambiar anuncios o Grupos de Anuncios en el "
1768
+ "mismo lugar y sin la necesidad de cambiar tus plantillas (templates)."
1769
+
1770
+ #: ../admin/views/placements.php:16
1771
+ #, php-format
1772
+ msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1773
+ msgstr ""
1774
+ "Consulta también el manual para más información sobre <a href=\"%s\">Las "
1775
+ "Colocaciones</a>. "
1776
+
1777
+ #: ../admin/views/placements.php:25
1778
+ msgid "Options"
1779
+ msgstr "Opciones"
1780
+
1781
+ #: ../admin/views/placements.php:42
1782
+ #, php-format
1783
+ msgid ""
1784
+ "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1785
+ "if the responsible add-on is activated."
1786
+ msgstr ""
1787
+ "El tipo de colocación \"%s\" no se encuentra y fue reiniciado a su \"valor por "
1788
+ "defecto\". <br/> Por favor, chequea si el add-on que es responsable de este "
1789
+ "funcionamiento está activado."
1790
+
1791
+ #: ../admin/views/placements.php:57
1792
+ msgid "show usage"
1793
+ msgstr "Mostrar uso"
1794
+
1795
+ #: ../admin/views/placements.php:69
1796
+ msgid "Item"
1797
+ msgstr "Item"
1798
+
1799
+ #: ../admin/views/placements.php:71 ../admin/views/placements.php:175
1800
+ msgid "--not selected--"
1801
+ msgstr "--No Seleccionado--"
1802
+
1803
+ #: ../admin/views/placements.php:91
1804
+ msgid "Inject"
1805
+ msgstr "Inyectados"
1806
+
1807
+ #: ../admin/views/placements.php:92
1808
+ msgid "after"
1809
+ msgstr "Después"
1810
+
1811
+ #: ../admin/views/placements.php:92
1812
+ msgid "before"
1813
+ msgstr "Antes"
1814
+
1815
+ #: ../admin/views/placements.php:112
1816
+ msgid "start counting from bottom"
1817
+ msgstr "Empezar contando desde el final"
1818
+
1819
+ #: ../admin/views/placements.php:115
1820
+ msgid "Important Notice"
1821
+ msgstr "Notificación Importante"
1822
+
1823
+ #: ../admin/views/placements.php:115
1824
+ msgid ""
1825
+ "Your server is missing an extension. This might break the content injection."
1826
+ "<br/>Ignore this warning if everything works fine or else ask your hosting "
1827
+ "provider to enable <em>mbstring</em>."
1828
+ msgstr ""
1829
+ "A tu servidor le hace falta una extensión. Esto puede romper la inyección de "
1830
+ "contenido.<br/> Ignora esta advertencia si todo está funcionando bien. De lo "
1831
+ "contrario, pídele a tu compañía de hospedaje habilitar <em>mbstring</em>."
1832
+
1833
+ #: ../admin/views/placements.php:125
1834
+ msgid "advanced options"
1835
+ msgstr "Opciones Avanzadas"
1836
+
1837
+ #: ../admin/views/placements.php:133
1838
+ msgctxt "checkbox to remove placement"
1839
+ msgid "delete"
1840
+ msgstr "Eliminar"
1841
+
1842
+ #: ../admin/views/placements.php:139
1843
+ msgid "Save Placements"
1844
+ msgstr "Guardar Colocaciones"
1845
+
1846
+ #: ../admin/views/placements.php:141
1847
+ msgid "Create a new placement"
1848
+ msgstr "Crear una Nueva Colocación"
1849
+
1850
+ #: ../admin/views/placements.php:142
1851
+ msgid "New Placement"
1852
+ msgstr "Nueva Colocación"
1853
+
1854
+ #: ../admin/views/placements.php:148
1855
+ msgid "Choose a placement type"
1856
+ msgstr "Selecciona un tipo de colocación"
1857
+
1858
+ #: ../admin/views/placements.php:149
1859
+ #, php-format
1860
+ msgid ""
1861
+ "Placement types define where the ad is going to be displayed. Learn more "
1862
+ "about the different types from the <a href=\"%s\">manual</a>"
1863
+ msgstr ""
1864
+ "Los tipos de colocaciones definen en donde se debe mostrar el anuncio. "
1865
+ "Aprende más sobre los diferentes tipos en el <a href=\"%s\">manual</a>."
1866
+
1867
+ #: ../admin/views/placements.php:166
1868
+ msgid "Please select a placement type."
1869
+ msgstr "Por favor, selecciona un tipo de colocación."
1870
+
1871
+ #: ../admin/views/placements.php:168
1872
+ msgid "Choose a Name"
1873
+ msgstr "Selecciona un Nombre"
1874
+
1875
+ #: ../admin/views/placements.php:169
1876
+ msgid ""
1877
+ "The name of the placement is only visible to you. Tip: choose a descriptive "
1878
+ "one, e.g. <em>Below Post Headline</em>."
1879
+ msgstr ""
1880
+ "El nombre de la colocación es solamente visible para ti. Tip: selecciona un "
1881
+ "nombre descriptivo, ej: <em>Debajo del Encabezado de la Entrada</em>."
1882
+
1883
+ #: ../admin/views/placements.php:170
1884
+ msgid "Placement Name"
1885
+ msgstr "Nombre de la Colocación"
1886
+
1887
+ #: ../admin/views/placements.php:171
1888
+ msgid "Please enter a name for your placement."
1889
+ msgstr "Por favor, ingresa un nombre para tu colocación."
1890
+
1891
+ #: ../admin/views/placements.php:172
1892
+ msgid "Choose the Ad or Group"
1893
+ msgstr "Selecciona el Anuncio o Grupo"
1894
+
1895
+ #: ../admin/views/placements.php:173
1896
+ msgid "The ad or group that should be displayed."
1897
+ msgstr "El anuncio o grupo que debe ser mostrado."
1898
+
1899
+ #: ../admin/views/placements.php:192
1900
+ msgid "Save New Placement"
1901
+ msgstr "Guardar la Nueva Colocación"
1902
+
1903
+ #: ../admin/views/post-ad-settings-metabox.php:3
1904
+ msgid "Disable ads on this page"
1905
+ msgstr "Deshabilitar anuncios en esta página"
1906
+
1907
+ #: ../admin/views/setting-license.php:10
1908
+ #, php-format
1909
+ msgid ""
1910
+ "Your license expired. Please visit <a href=\"%s\" target=\"_blank\">the plugin "
1911
+ "page</a> to renew it."
1912
+ msgstr ""
1913
+ "Tu licencia expiró. Por favor, visita <a href=\"%s\" target=\"_blank\">la página "
1914
+ "del plugin</a> para renovarla."
1915
+
1916
+ #: ../admin/views/setting-license.php:14
1917
+ msgid "License key"
1918
+ msgstr "Llave de Licencia"
1919
+
1920
+ #: ../admin/views/setting-license.php:24
1921
+ msgid "Deactivate License"
1922
+ msgstr "Desactivar Licencia"
1923
+
1924
+ #: ../admin/views/setting-license.php:32
1925
+ msgid "Activate License"
1926
+ msgstr "Activar Licencia"
1927
+
1928
+ #: ../admin/views/setting-license.php:35
1929
+ msgid "Please enter a valid license key"
1930
+ msgstr "Por favor, ingresa una llave de licencia válida"
1931
+
1932
+ #: ../admin/views/setting-license.php:37
1933
+ msgid "License key invalid"
1934
+ msgstr "Llave de licencia inválida"
1935
+
1936
+ #: ../admin/views/setting-license.php:41
1937
+ msgid "active"
1938
+ msgstr "Activa"
1939
+
1940
+ #: ../admin/views/setting-license.php:42
1941
+ #, php-format
1942
+ msgid "(%d days left)"
1943
+ msgstr "(%d días restantes)"
1944
+
1945
+ #: ../admin/views/setting-license.php:45
1946
+ msgid ""
1947
+ "1. enter the key and save options; 2. click the activate button behind the "
1948
+ "field"
1949
+ msgstr ""
1950
+ "1. Ingresa la llave y guarda las opciones; 2. Dale clic al botón de "
1951
+ "activación detrás del campo"
1952
+
1953
+ #: ../admin/views/settings-disable-ads.php:3
1954
+ msgid "Disable all ads in frontend"
1955
+ msgstr "Deshabilitar todos los anuncios en el frente del sitio"
1956
+
1957
+ #: ../admin/views/settings-disable-ads.php:4
1958
+ msgid ""
1959
+ "Use this option to disable all ads in the frontend, but still be able to use "
1960
+ "the plugin."
1961
+ msgstr ""
1962
+ "Usar esta opción para deshabilitar todos los anuncios en el frente del sitio "
1963
+ "y todavía tener la capacidad de usar el plugin."
1964
+
1965
+ #: ../admin/views/settings-disable-ads.php:8
1966
+ msgid "Disable ads on 404 error pages"
1967
+ msgstr "Deshabilitar anuncios en las páginas de error 404"
1968
+
1969
+ #: ../admin/views/settings-disable-ads.php:12
1970
+ msgid "Disable ads on non-singular pages"
1971
+ msgstr "Deshabilitar anuncios en páginas no-singulares"
1972
+
1973
+ #: ../admin/views/settings-disable-ads.php:13
1974
+ msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
1975
+ msgstr ""
1976
+ "Ej. Páginas de archivo como categorías, etiquetas, autores, frente de la "
1977
+ "página (si es una lista)"
1978
+
1979
+ #: ../admin/views/settings-disable-ads.php:16
1980
+ msgid "Disable ads on secondary queries"
1981
+ msgstr "Deshabilitar anuncios en consultas (queries) secundarias"
1982
+
1983
+ #: ../admin/views/settings-disable-ads.php:17
1984
+ msgid ""
1985
+ "Secondary queries are custom queries of posts outside the main query of a "
1986
+ "page. Try this option if you see ads injected on places where they shouldn’t "
1987
+ "appear."
1988
+ msgstr ""
1989
+ "Las consultas (queries) secundarias son consultas personalizadas de entradas "
1990
+ "fuera de la consulta principal de una página. Intenta habilitar esta opción "
1991
+ "si ves anuncios inyectados en lugares en donde no deberían aparecer."
1992
+
1993
+ #: ../admin/views/settings.php:35
1994
+ msgid "Save settings on this page"
1995
+ msgstr "Guardar las configuraciones de esta página"
1996
+
1997
+ #: ../admin/views/settings.php:46
1998
+ msgid "Welcome Page"
1999
+ msgstr "Página de Bienvenida"
2000
+
2001
+ #: ../admin/views/settings.php:47
2002
+ msgid "Advanced Ads on WordPress.org"
2003
+ msgstr "Advanced Ads en WordPress.org"
2004
+
2005
+ #: ../admin/views/settings.php:47
2006
+ msgid "Advanced Ads on wp.org"
2007
+ msgstr "Advanced Ads en wp.org"
2008
+
2009
+ #: ../admin/views/settings.php:48
2010
+ msgid "the company behind Advanced Ads"
2011
+ msgstr "la compañía detrás de Advanced Ads"
2012
+
2013
+ #: ../admin/views/support.php:9
2014
+ msgid "Email was successfully sent."
2015
+ msgstr "El correo electrónico fue enviado exitosamente."
2016
+
2017
+ #: ../admin/views/support.php:11
2018
+ msgid "Search"
2019
+ msgstr "Buscar"
2020
+
2021
+ #: ../admin/views/support.php:12
2022
+ msgid ""
2023
+ "Use the following form to search for solutions in the manual on "
2024
+ "wpadvancedads.com"
2025
+ msgstr ""
2026
+ "Usa el siguiente formulario para buscar soluciones en el manual de "
2027
+ "wpadvancedads.com"
2028
+
2029
+ #: ../admin/views/support.php:15
2030
+ msgid "search"
2031
+ msgstr "Buscar"
2032
+
2033
+ #: ../admin/views/support.php:18
2034
+ msgid "Possible Issues"
2035
+ msgstr "Posibles Problemas"
2036
+
2037
+ #: ../admin/views/support.php:19
2038
+ msgid ""
2039
+ "Please fix the red highlighted issues on this page or try to understand "
2040
+ "their consequences before contacting support."
2041
+ msgstr ""
2042
+ "Por favor, arregla los problemas resaltados en rojo en esta página o intenta "
2043
+ "entender sus consecuencias antes de contactar a soporte."
2044
+
2045
+ #: ../admin/views/support.php:23
2046
+ #, php-format
2047
+ msgid ""
2048
+ "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2049
+ "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2050
+ "Please ask your hosting provider for more information."
2051
+ msgstr ""
2052
+ "Tu <strong>versión de PHP (%s) es muy vieja</strong>. Advanced Ads fue "
2053
+ "diseñado para PHP 5.3 o mayor. Puede que funcione, pero actualizar PHP es "
2054
+ "altamente recomendado. Por favor, consulta con tu compañía de hospedaje para "
2055
+ "mayor información."
2056
+
2057
+ #: ../admin/views/support.php:26
2058
+ #, php-format
2059
+ msgid ""
2060
+ "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2061
+ "rotation or visitor conditions might not work properly. Use the cache-"
2062
+ "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
2063
+ "ads dynamically."
2064
+ msgstr ""
2065
+ "Tu <strong>sitio web utiliza caché</strong>. Algunas características "
2066
+ "dinámicas, como la rotación de anuncios o las condiciones del visitante, "
2067
+ "puede que no funcionen correctamente. Utiliza la característica de "
2068
+ "almacenamiento-en-caché de <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
2069
+ "para cargar los anuncios dinámicamente."
2070
+
2071
+ #: ../admin/views/support.php:29
2072
+ msgid "There is a <strong>new WordPress version available</strong>. Please update."
2073
+ msgstr ""
2074
+ "Hay una <strong>nueva versión de WordPress disponible</strong>. Por favor, "
2075
+ "actualízala."
2076
+
2077
+ #: ../admin/views/support.php:32
2078
+ msgid "There are <strong>plugin updates available</strong>. Please update."
2079
+ msgstr ""
2080
+ "Hay <strong>actualizaciones del plugin disponibles</strong>. Por favor, "
2081
+ "actualízalo."
2082
+
2083
+ #: ../admin/views/support.php:35
2084
+ #, php-format
2085
+ msgid ""
2086
+ "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
2087
+ "missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
2088
+ msgstr ""
2089
+ "Una o más llaves de licencia para <strong>los add-ons avanzados son "
2090
+ "inválidas o no se encuentran</strong>. Por favor, adiciona llaves de "
2091
+ "licencia válidas <a href=\"%s\">aquí</a>."
2092
+
2093
+ #: ../admin/views/support.php:41
2094
+ #, php-format
2095
+ msgid ""
2096
+ "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2097
+ "site performance, it is known to alter code, including scripts from ad "
2098
+ "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
2099
+ "support for Autoptimize."
2100
+ msgstr ""
2101
+ "<strong>Autoptimize plugin detectado</strong>. A pesar de que este plugin es "
2102
+ "muy bueno para el rendimiento del sitio, también es bien sabido que tiende a "
2103
+ "modificar el código, incluyendo scripts de redes de anuncios. <a href=\"%s\" "
2104
+ "target=\"_blank\">Advanced Ads Pro</a> posee un soporte incorporado para "
2105
+ "Autoptimize."
2106
+
2107
+ #: ../admin/views/support.php:44
2108
+ #, php-format
2109
+ msgid ""
2110
+ "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2111
+ "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2112
+ msgstr ""
2113
+ "Plugins que se conocen que causan problemas (parciales): "
2114
+ "<strong>%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Más Información</a>."
2115
+
2116
+ #: ../admin/views/support.php:48
2117
+ #, php-format
2118
+ msgid ""
2119
+ "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2120
+ "href=\"%s\">settings</a>."
2121
+ msgstr ""
2122
+ "Los anuncios están deshabilitados para todas o algunas páginas. Ver "
2123
+ "\"anuncios deshabilitados\" en <a href=\"%s\">configuraciones</a>."
2124
+
2125
+ #: ../admin/views/support.php:59
2126
+ msgid "Contact"
2127
+ msgstr "Contacto"
2128
+
2129
+ #: ../admin/views/support.php:60
2130
+ #, php-format
2131
+ msgid ""
2132
+ "Please search the manual for a solution and take a look at <a href=\"%s\" "
2133
+ "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2134
+ msgstr ""
2135
+ "Por favor, busca en el manual para una solución y échale un vistazo a la "
2136
+ "sección de <a href=\"%s\" target=\"_blank\"> Anuncios no aparecen?</a> antes de "
2137
+ "contactarme por ayuda."
2138
+
2139
+ #: ../admin/views/support.php:65
2140
+ msgid "your email"
2141
+ msgstr "Tu correo electrónico"
2142
+
2143
+ #: ../admin/views/support.php:69
2144
+ msgid "your name"
2145
+ msgstr "Tu nombre"
2146
+
2147
+ #: ../admin/views/support.php:73
2148
+ msgid "your message"
2149
+ msgstr "Tu mensaje"
2150
+
2151
+ #: ../admin/views/support.php:78
2152
+ msgid "send"
2153
+ msgstr "Enviar"
2154
+
2155
+ #: ../admin/views/notices/adblock.php:3
2156
+ msgid ""
2157
+ "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2158
+ "ad setup."
2159
+ msgstr ""
2160
+ "Por favor, deshabilita tu <strong>bloqueador de anuncios "
2161
+ "(AdBlocker)</strong> para prevenir problemas con la configuración de tu "
2162
+ "anuncio."
2163
+
2164
+ #: ../classes/ad_placements.php:31
2165
+ msgid "Manual Placement"
2166
+ msgstr "Colocación Manual"
2167
+
2168
+ #: ../classes/ad_placements.php:32
2169
+ msgid "Manual placement to use as function or shortcode."
2170
+ msgstr "Colocación manual para usar como Función o Shortcode."
2171
+
2172
+ #: ../classes/ad_placements.php:36
2173
+ msgid "Header Code"
2174
+ msgstr "Código de Encabezado"
2175
+
2176
+ #: ../classes/ad_placements.php:37
2177
+ msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
2178
+ msgstr ""
2179
+ "Inyectar en el encabezado (antes de la etiqueta &lt;/head&gt;, que con "
2180
+ "frecuencia no es visible)."
2181
+
2182
+ #: ../classes/ad_placements.php:41
2183
+ msgid "Footer Code"
2184
+ msgstr "Código del Pie de Página"
2185
+
2186
+ #: ../classes/ad_placements.php:42
2187
+ msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
2188
+ msgstr ""
2189
+ "Inyectado en el Pie de Página (antes de la etiqueta de cierre del &lt;"
2190
+ "/body&gt;). "
2191
+
2192
+ #: ../classes/ad_placements.php:46
2193
+ msgid "Before Content"
2194
+ msgstr "Antes del Contenido"
2195
+
2196
+ #: ../classes/ad_placements.php:47
2197
+ msgid "Injected before the post content."
2198
+ msgstr "Inyectado antes del contenido de la entrada."
2199
+
2200
+ #: ../classes/ad_placements.php:51
2201
+ msgid "After Content"
2202
+ msgstr "Después del Contenido"
2203
+
2204
+ #: ../classes/ad_placements.php:52
2205
+ msgid "Injected after the post content."
2206
+ msgstr "Inyectado después del contenido de la entrada."
2207
+
2208
+ #: ../classes/ad_placements.php:56
2209
+ msgid "Post Content"
2210
+ msgstr "Contenido de la Entrada"
2211
+
2212
+ #: ../classes/ad_placements.php:57
2213
+ msgid ""
2214
+ "Injected into the post content. You can choose the paragraph after which the "
2215
+ "ad content is displayed."
2216
+ msgstr ""
2217
+ "Inyectado en el contenido de la entrada. Puedes elegir el párrafo en el que "
2218
+ "inmediatamente después el anuncio se mostrará."
2219
+
2220
+ #: ../classes/ad_placements.php:61
2221
+ msgid "Sidebar Widget"
2222
+ msgstr "Widget de la Barra Lateral"
2223
+
2224
+ #: ../classes/ad_placements.php:62
2225
+ msgid ""
2226
+ "Create a sidebar widget with an ad. Can be placed and used like any other "
2227
+ "widget."
2228
+ msgstr ""
2229
+ "Crear un widget de barra lateral con un anuncio. Puede ser colocado y "
2230
+ "utilizado como cualquier otro widget."
2231
+
2232
+ #: ../classes/ad_placements.php:204
2233
+ #, php-format
2234
+ msgid "paragraph (%s)"
2235
+ msgstr "Párrafo (%s)"
2236
+
2237
+ #: ../classes/ad_placements.php:205
2238
+ #, php-format
2239
+ msgid "headline 2 (%s)"
2240
+ msgstr "Encabezado 2 (%s)"
2241
+
2242
+ #: ../classes/ad_placements.php:206
2243
+ #, php-format
2244
+ msgid "headline 3 (%s)"
2245
+ msgstr "Encabezado 3 (%s)"
2246
+
2247
+ #: ../classes/ad_placements.php:207
2248
+ #, php-format
2249
+ msgid "headline 4 (%s)"
2250
+ msgstr "Encabezado 4 (%s)"
2251
+
2252
+ #: ../classes/ad_type_content.php:35
2253
+ msgid "Rich Content"
2254
+ msgstr "Contenido Enriquecido"
2255
+
2256
+ #: ../classes/ad_type_content.php:36
2257
+ msgid ""
2258
+ "The full content editor from WordPress with all features like shortcodes, "
2259
+ "image upload or styling, but also simple text/html mode for scripts and code."
2260
+ msgstr ""
2261
+ "El editor de contenido de WordPress completo con todas las características "
2262
+ "como shortcodes, carga de imágenes o estilos, y también un modo simple de "
2263
+ "texto/html para scripts y código."
2264
+
2265
+ #: ../classes/ad_type_image.php:34
2266
+ msgid "Image Ad"
2267
+ msgstr "Anuncio con Imagen"
2268
+
2269
+ #: ../classes/ad_type_image.php:35
2270
+ msgid "Ads in various image formats."
2271
+ msgstr "Anuncios en varios formatos de imagen."
2272
+
2273
+ #: ../classes/ad_type_image.php:55
2274
+ msgid "Insert File"
2275
+ msgstr "Insertar Archivo"
2276
+
2277
+ #: ../classes/ad_type_image.php:55
2278
+ msgid "Insert"
2279
+ msgstr "Insertar"
2280
+
2281
+ #: ../classes/ad_type_image.php:55
2282
+ msgid "select image"
2283
+ msgstr "Seleccionar Imagen"
2284
+
2285
+ #: ../classes/ad_type_image.php:56
2286
+ msgid "edit"
2287
+ msgstr "Editar"
2288
+
2289
+ #: ../classes/ad_type_image.php:65
2290
+ msgid "url"
2291
+ msgstr "URL"
2292
+
2293
+ #: ../classes/ad_type_image.php:67
2294
+ #, php-format
2295
+ msgid ""
2296
+ "Pro: Open this url in a new window and track impressions and clicks with the "
2297
+ "<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
2298
+ msgstr ""
2299
+ "Pro: Abre esta URL en una ventana nueva y rastrea las impresiones y los "
2300
+ "clics con el <a href=\"%s\" target=\"_blank\">add-on de Rastreo</a>"
2301
+
2302
+ #: ../classes/ad_type_plain.php:31
2303
+ msgid "Plain Text and Code"
2304
+ msgstr "Texto Simple y Código"
2305
+
2306
+ #: ../classes/ad_type_plain.php:32
2307
+ msgid ""
2308
+ "Simple text editor without any filters. You might use it to display "
2309
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
2310
+ "content field magic does not work here."
2311
+ msgstr ""
2312
+ "Editor de texto simple sin ningún filtro. Lo puedes usar para mostrar "
2313
+ "contenido no filtrado, código PHP o JavaScript. Sin embargo, los shortcodes "
2314
+ "y otro contenido del campo mágico de WordPress no funciona aquí."
2315
+
2316
+ #: ../classes/ad_type_plain.php:67
2317
+ msgid "Insert plain text or code into this field."
2318
+ msgstr "Insertar texto simple o código en este campo."
2319
+
2320
+ #: ../classes/ad_type_plain.php:70
2321
+ msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2322
+ msgstr "Ejecutar código PHP (enmarcado en <code>&lt;?php ?&gt;</code>)"
2323
+
2324
+ #: ../classes/checks.php:223
2325
+ #, php-format
2326
+ msgid ""
2327
+ "Possible conflict between jQueryUI library, used by Advanced Ads and other "
2328
+ "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
2329
+ "misfortunate formats in forms, but should not damage features."
2330
+ msgstr ""
2331
+ "Potencial conflicto entre la librería jQueryUI, usada por Advanced Ads, y "
2332
+ "otras librerías (probablemente <a href=\"%s\">Twitter Bootstrap</a>). Esto "
2333
+ "puede crear formatos distorsionados en formularios, pero no debería dañar "
2334
+ "ninguna funcionalidad."
2335
+
2336
+ #: ../classes/EDD_SL_Plugin_Updater.php:177
2337
+ #, php-format
2338
+ msgid ""
2339
+ "There is a new version of %1$s available. <a target=\"_blank\" "
2340
+ "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
2341
+ msgstr ""
2342
+ "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
2343
+ "class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a>."
2344
+
2345
+ #: ../classes/EDD_SL_Plugin_Updater.php:184
2346
+ #, php-format
2347
+ msgid ""
2348
+ "There is a new version of %1$s available. <a target=\"_blank\" "
2349
+ "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
2350
+ "href=\"%4$s\">update now</a>."
2351
+ msgstr ""
2352
+ "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
2353
+ "class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a> o <a "
2354
+ "href=\"%4$s\">actualízala ahora</a>."
2355
+
2356
+ #: ../classes/EDD_SL_Plugin_Updater.php:324
2357
+ msgid "You do not have permission to install plugin updates"
2358
+ msgstr "No tienes permiso para instalar actualizaciones de plugins"
2359
+
2360
+ #: ../classes/EDD_SL_Plugin_Updater.php:324
2361
+ msgid "Error"
2362
+ msgstr "Error"
2363
+
2364
+ #: ../classes/visitor-conditions.php:32
2365
+ msgid "mobile device"
2366
+ msgstr "Dispositivo Móvil"
2367
+
2368
+ #: ../classes/visitor-conditions.php:33
2369
+ msgid "Display ads only on mobile devices or hide them."
2370
+ msgstr "Mostrar anuncios solamente en dispositivos móviles u ocultarlos."
2371
+
2372
+ #: ../classes/visitor-conditions.php:38
2373
+ msgid "logged in visitor"
2374
+ msgstr "Visitante Conectado"
2375
+
2376
+ #: ../classes/visitor-conditions.php:39
2377
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
2378
+ msgstr "Si el visitante debe estar conectado o no para ver los anuncios."
2379
+
2380
+ #: ../classes/visitor-conditions.php:72
2381
+ #, php-format
2382
+ msgid ""
2383
+ "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2384
+ "target=\"_blank\">Responsive add-on</a>"
2385
+ msgstr ""
2386
+ "Pro: Mostrar anuncios según el espacio disponible en el dispositivo usando "
2387
+ "el <a href=\"%s\" target=\"_blank\">Add-on Responsable</a>"
2388
+
2389
+ #: ../classes/visitor-conditions.php:102
2390
+ msgid "is"
2391
+ msgstr "Es"
2392
+
2393
+ #: ../classes/visitor-conditions.php:103
2394
+ msgid "is not"
2395
+ msgstr "No es"
2396
+
2397
+ #: ../classes/visitor-conditions.php:135
2398
+ msgid "equal"
2399
+ msgstr "Igual"
2400
+
2401
+ #: ../classes/visitor-conditions.php:136
2402
+ msgid "equal or higher"
2403
+ msgstr "Igual o mayor"
2404
+
2405
+ #: ../classes/visitor-conditions.php:137
2406
+ msgid "equal or lower"
2407
+ msgstr "Igual o menor"
2408
+
2409
+ #: ../classes/visitor-conditions.php:169
2410
+ msgid "contains"
2411
+ msgstr "Contiene"
2412
+
2413
+ #: ../classes/visitor-conditions.php:170
2414
+ msgid "starts with"
2415
+ msgstr "Comienza con"
2416
+
2417
+ #: ../classes/visitor-conditions.php:171
2418
+ msgid "ends with"
2419
+ msgstr "Termina con"
2420
+
2421
+ #: ../classes/visitor-conditions.php:172
2422
+ msgid "matches"
2423
+ msgstr "Equivale a"
2424
+
2425
+ #: ../classes/visitor-conditions.php:173
2426
+ msgid "matches regex"
2427
+ msgstr "Equivale a regex"
2428
+
2429
+ #: ../classes/visitor-conditions.php:174
2430
+ msgid "does not contain"
2431
+ msgstr "No contiene"
2432
+
2433
+ #: ../classes/visitor-conditions.php:175
2434
+ msgid "does not start with"
2435
+ msgstr "No comienza con"
2436
+
2437
+ #: ../classes/visitor-conditions.php:176
2438
+ msgid "does not end with"
2439
+ msgstr "No termina con"
2440
+
2441
+ #: ../classes/visitor-conditions.php:177
2442
+ msgid "does not match"
2443
+ msgstr "No equivale a"
2444
+
2445
+ #: ../classes/visitor-conditions.php:178
2446
+ msgid "does not match regex"
2447
+ msgstr "No equivale a regex"
2448
+
2449
+ #: ../classes/widget.php:25
2450
+ msgid "Display Ads and Ad Groups."
2451
+ msgstr "Mostrar Anuncios y Grupos de Anuncios."
2452
+
2453
+ #: ../classes/widget.php:67
2454
+ msgid "Title:"
2455
+ msgstr "Título:"
2456
+
2457
+ #: ../includes/array_ad_conditions.php:38
2458
+ msgid "Post Types"
2459
+ msgstr "Post Types"
2460
+
2461
+ #: ../includes/array_ad_conditions.php:44
2462
+ msgid "Categories, Tags and Taxonomies"
2463
+ msgstr "Categorías, Etiquetas y Taxonomías"
2464
+
2465
+ #: ../includes/array_ad_conditions.php:45
2466
+ msgid ""
2467
+ "Choose terms from public category, tag and other taxonomies a post must "
2468
+ "belong to in order to have ads."
2469
+ msgstr ""
2470
+ "Seleccionar términos de categorías públicas, etiquetas y otras taxonomías a "
2471
+ "las que una entrada debe pertenecer para tener anuncios."
2472
+
2473
+ #: ../includes/array_ad_conditions.php:50
2474
+ msgid "Category Archives"
2475
+ msgstr "Archivos de Categorías"
2476
+
2477
+ #: ../includes/array_ad_conditions.php:51
2478
+ msgid "comma seperated IDs of category archives"
2479
+ msgstr "IDs de archivos de categorías separados por coma "
2480
+
2481
+ #: ../includes/array_ad_conditions.php:56
2482
+ msgid "Individual Posts, Pages and Public Post Types"
2483
+ msgstr "Entradas Individuales, Páginas y Post Types Públicos"
2484
+
2485
+ #: ../includes/array_ad_conditions.php:62
2486
+ msgid "Home Page"
2487
+ msgstr "Página de Inicio"
2488
+
2489
+ #: ../includes/array_ad_conditions.php:63
2490
+ msgid "show on Home page"
2491
+ msgstr "Mostrar en Página de Inicio"
2492
+
2493
+ #: ../includes/array_ad_conditions.php:67
2494
+ msgid "Singular Pages"
2495
+ msgstr "Páginas Singulares"
2496
+
2497
+ #: ../includes/array_ad_conditions.php:68
2498
+ msgid "show on singular pages/posts"
2499
+ msgstr "Mostrar en páginas/entradas singulares"
2500
+
2501
+ #: ../includes/array_ad_conditions.php:72
2502
+ msgid "Archive Pages"
2503
+ msgstr "Páginas de Archivo"
2504
+
2505
+ #: ../includes/array_ad_conditions.php:73
2506
+ msgid "show on any type of archive page (category, tag, author and date)"
2507
+ msgstr ""
2508
+ "Mostrar en cualquier tipo de página de archivo (categoría, etiqueta, autor y "
2509
+ "fecha)"
2510
+
2511
+ #: ../includes/array_ad_conditions.php:77
2512
+ msgid "Search Results"
2513
+ msgstr "Resultados de la Búsqueda"
2514
+
2515
+ #: ../includes/array_ad_conditions.php:78
2516
+ msgid "show on search result pages"
2517
+ msgstr "Mostrar en páginas de resultados de búsquedas"
2518
+
2519
+ #: ../includes/array_ad_conditions.php:82
2520
+ msgid "404 Page"
2521
+ msgstr "Páginas 404"
2522
+
2523
+ #: ../includes/array_ad_conditions.php:83
2524
+ msgid "show on 404 error page"
2525
+ msgstr "Mostrar en páginas de error 404"
2526
+
2527
+ #: ../includes/array_ad_conditions.php:87
2528
+ msgid "Attachment Pages"
2529
+ msgstr "Páginas Adjuntas"
2530
+
2531
+ #: ../includes/array_ad_conditions.php:88
2532
+ msgid "show on attachment pages"
2533
+ msgstr "Mostrar en páginas adjuntas"
2534
+
2535
+ #: ../includes/array_ad_conditions.php:92
2536
+ msgid "Secondary Queries"
2537
+ msgstr "Consultas (Queries) Secundarias "
2538
+
2539
+ #: ../includes/array_ad_conditions.php:93
2540
+ msgid "allow ads in secondary queries"
2541
+ msgstr "Permitir anuncios en consultas (queries) secundarias "
2542
+
2543
+ #: ../modules/ad-blocker/admin/admin.php:139
2544
+ msgid "The asset folder was rebuilt successfully"
2545
+ msgstr "El directorio de archivos fue reconstruido exitosamente"
2546
+
2547
+ #: ../modules/ad-blocker/admin/admin.php:261
2548
+ msgid "Ad blocker fix"
2549
+ msgstr "Reparación de Ad blocker"
2550
+
2551
+ #: ../modules/ad-blocker/admin/admin.php:301
2552
+ msgid "There is no writable upload folder"
2553
+ msgstr "No hay directorio escribible de cargas y subidas "
2554
+
2555
+ #: ../modules/ad-blocker/admin/admin.php:324
2556
+ #, php-format
2557
+ msgid "Unable to rename \"%s\" directory"
2558
+ msgstr "No es posible renombrar el directorio \"%s\""
2559
+
2560
+ #: ../modules/ad-blocker/admin/admin.php:342 ../modules/ad-blocker/admin/admin.
2561
+ #: php:356 ../modules/ad-blocker/admin/admin.php:374
2562
+ #, php-format
2563
+ msgid "Unable to copy assets to the \"%s\" directory"
2564
+ msgstr "No es posible copiar los archivos al directorio \"%s\""
2565
+
2566
+ #: ../modules/ad-blocker/admin/admin.php:406 ../modules/ad-blocker/admin/admin.
2567
+ #: php:416
2568
+ #, php-format
2569
+ msgid "We do not have direct write access to the \"%s\" directory"
2570
+ msgstr "No tenemos acceso directo de escritura al directorio \"%s\" "
2571
+
2572
+ #: ../modules/ad-blocker/admin/admin.php:425
2573
+ msgid "There are no assets to copy"
2574
+ msgstr "No existen archivos para copiar"
2575
+
2576
+ #: ../modules/ad-blocker/admin/admin.php:481
2577
+ #, php-format
2578
+ msgid ""
2579
+ "Unable to create \"%s\" directory. Is its parent directory writable by the "
2580
+ "server?"
2581
+ msgstr ""
2582
+ "No es posible crear el directorio \"%s\". Es el directorio principal "
2583
+ "escribible en el servidor?"
2584
+
2585
+ #: ../modules/ad-blocker/admin/admin.php:493
2586
+ #, php-format
2587
+ msgid "Unable to copy files to %s"
2588
+ msgstr "No es posible copiar archivos a %s"
2589
+
2590
+ #: ../modules/ad-blocker/admin/admin.php:560
2591
+ msgid ""
2592
+ "Prevents ad block software from breaking your website when blocking asset "
2593
+ "files (.js, .css)."
2594
+ msgstr ""
2595
+ "Previene que el software de Ad block rompa tu sitio cuando bloquee archivos "
2596
+ "(.js, .css)."
2597
+
2598
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:1
2599
+ msgid "Ad blocker file folder"
2600
+ msgstr "Directorio de archivos de Ad blocker"
2601
+
2602
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:10
2603
+ msgid "Upload folder is not writable"
2604
+ msgstr "El directorio de cargas y subidas no es escribible"
2605
+
2606
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:23
2607
+ msgid "Asset path"
2608
+ msgstr "Ruta de Archivos"
2609
+
2610
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:27
2611
+ msgid "Asset URL"
2612
+ msgstr "URL de Archivos"
2613
+
2614
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:31
2615
+ msgid "Rename asset folder"
2616
+ msgstr "Renombrar el directorio de archivos"
2617
+
2618
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:34
2619
+ msgid "Check if you want to change the name of the assets folder"
2620
+ msgstr "Chequea si deseas cambiar el nombre del directorio de archivos"
2621
+
2622
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:41
2623
+ #, php-format
2624
+ msgid ""
2625
+ "Please, rebuild the asset folder. The new folder will be located in "
2626
+ "<strong>%s</strong>"
2627
+ msgstr ""
2628
+ "Por favor, reconstruir el directorio de archivos. El nuevo directorio estará "
2629
+ "localizado en <strong>%s</strong>"
2630
+
2631
+ #: ../modules/ad-blocker/admin/views/rebuild_form.php:44
2632
+ msgid "Rebuild asset folder"
2633
+ msgstr "Reconstruir directorio de archivos"
2634
+
2635
+ #: ../modules/gadsense/main.php:19
2636
+ msgid " at "
2637
+ msgstr "En"
2638
+
2639
+ #: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
2640
+ #: ad-parameters.php:51
2641
+ msgid "Responsive"
2642
+ msgstr "Responsable"
2643
+
2644
+ #: ../modules/gadsense/admin/admin.php:44
2645
+ msgid "The ad details couldn't be retrieved from the ad code"
2646
+ msgstr "Los detalles del anuncio no pudieron ser recuperados del código del anuncio"
2647
+
2648
+ #: ../modules/gadsense/admin/admin.php:45
2649
+ msgid ""
2650
+ "Warning : The AdSense account from this code does not match the one set with "
2651
+ "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2652
+ "end."
2653
+ msgstr ""
2654
+ "Advertencia: La cuenta de AdSense de este código no es equivalente a la que "
2655
+ "se encuentra en el plugin de Advanced Ads. Este anuncio puede causar "
2656
+ "problemas cuando se use en el frente del sitio."
2657
+
2658
+ #: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
2659
+ msgid "AdSense"
2660
+ msgstr "AdSense"
2661
+
2662
+ #: ../modules/gadsense/admin/admin.php:131
2663
+ msgid "AdSense ID"
2664
+ msgstr "ID de AdSense "
2665
+
2666
+ #: ../modules/gadsense/admin/admin.php:140
2667
+ msgid "Limit to 3 ads"
2668
+ msgstr "Limitar a 3 anuncios"
2669
+
2670
+ #: ../modules/gadsense/admin/admin.php:149
2671
+ msgid "Activate Page-Level ads"
2672
+ msgstr "Activar Anuncios de Nivel-de-Página"
2673
+
2674
+ #: ../modules/gadsense/admin/admin.php:169
2675
+ #, php-format
2676
+ msgid ""
2677
+ "Please enter your Publisher ID in order to use AdSense on your page. See the "
2678
+ "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2679
+ msgstr ""
2680
+ "Por favor, ingresa tu ID de publicador para usar AdSense en tu página. Ver "
2681
+ "el <a href=\"%s\" target=\"_blank\">manual</a> para mayor información."
2682
+
2683
+ #: ../modules/gadsense/admin/admin.php:183
2684
+ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2685
+ msgstr "Tu ID de publicador de AdSense <em>(pub-xxxxxxxxxxxxxx)</em>"
2686
+
2687
+ #: ../modules/gadsense/admin/admin.php:195
2688
+ #, php-format
2689
+ msgid "Limit to %d AdSense ads"
2690
+ msgstr "Limitar a %d anuncios de AdSense "
2691
+
2692
+ #: ../modules/gadsense/admin/admin.php:199
2693
+ #, php-format
2694
+ msgid ""
2695
+ "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2696
+ "Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
2697
+ "this limitation at your own risks."
2698
+ msgstr ""
2699
+ "Actualmente, los <a target=\"_blank\" href=\"%s\" title=\"Terminos de "
2700
+ "Servicio\">Terminos de Servicio</a> de Google AdSense imponen un límite de %d "
2701
+ "anuncios a mostrar por página. Puedes deshabilitar esta limitación bajo tu "
2702
+ "propio riesgo."
2703
+
2704
+ #: ../modules/gadsense/admin/admin.php:202
2705
+ msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
2706
+ msgstr ""
2707
+ "Nota: Advanced Ads solamente considera el tipo de anuncio de AdSense para "
2708
+ "este límite."
2709
+
2710
+ #: ../modules/gadsense/admin/admin.php:205
2711
+ msgid ""
2712
+ "Due to technical restrictions, the limit does not work on placements with "
2713
+ "cache-busting enabled."
2714
+ msgstr ""
2715
+ "Debido a restricciones técnicas, el límite no funciona en colocaciones con "
2716
+ "almacenamiento-en-caché habilitado."
2717
+
2718
+ #: ../modules/gadsense/admin/admin.php:219
2719
+ msgid "Insert Page-Level ads code on all pages."
2720
+ msgstr "Insertar código de anuncios de Nivel-de-Página en todas las páginas."
2721
+
2722
+ #: ../modules/gadsense/admin/admin.php:221
2723
+ msgid ""
2724
+ "You still need to enable Page-Level ads in your AdSense account. See <a "
2725
+ "href=\"https://support.google.com/adsense/answer/6245304\" "
2726
+ "target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
2727
+ "information"
2728
+ msgstr ""
2729
+ "Todavía necesitas habilitar anuncios de Nivel-de-Página en tu cuenta de "
2730
+ "AdSense. Ver <a href=\"https://support.google.com/adsense/answer/6245304\" "
2731
+ "target=\"_blank\">Ayuda de AdSense</a> (requirere inicio de sesión en AdSense)"
2732
+
2733
+ #: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
2734
+ #: type-adsense.php:73
2735
+ msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2736
+ msgstr "El ID del publicador tiene un formato incorrecto. (Debe comenzar con \"pub-\")"
2737
+
2738
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
2739
+ msgid "Copy&Paste existing ad code"
2740
+ msgstr "Copiar & Pegar el código existente del anuncio"
2741
+
2742
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
2743
+ msgid "Ad Slot ID"
2744
+ msgstr "ID de la Casilla del Anuncio"
2745
+
2746
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
2747
+ #, php-format
2748
+ msgid "Publisher ID: %s"
2749
+ msgstr "ID del Publicador: %s"
2750
+
2751
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
2752
+ #, php-format
2753
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2754
+ msgstr "Por favor, <a href=\"%s\" target=\"_blank\">cámbialo aquí</a>."
2755
+
2756
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
2757
+ msgid "Normal"
2758
+ msgstr "Normal"
2759
+
2760
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
2761
+ #, php-format
2762
+ msgid ""
2763
+ "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2764
+ "define the exact creative for each browser width."
2765
+ msgstr ""
2766
+ "Usa el <a href=\"%s\" target=\"_blank\">add-on responsable</a> para definir el "
2767
+ "diseño exacto para cada ancho del navegador."
2768
+
2769
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
2770
+ msgid "Resizing"
2771
+ msgstr "Cambiar el Tamaño"
2772
+
2773
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
2774
+ msgid "Copy the ad code from your AdSense account and paste it in the area below"
2775
+ msgstr ""
2776
+ "Copia el código del anuncio de tu cuenta de AdSense y pégalo en el área de "
2777
+ "abajo"
2778
+
2779
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
2780
+ msgid "Get details"
2781
+ msgstr "Obtener Detalles"
2782
+
2783
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
2784
+ msgid "Close"
2785
+ msgstr "Cerrar"
2786
+
2787
+ #: ../modules/gadsense/includes/class-ad-type-adsense.php:35
2788
+ msgid "AdSense ad"
2789
+ msgstr "Anuncio de AdSense"
2790
+
2791
+ #: ../modules/gadsense/includes/class-ad-type-adsense.php:36
2792
+ msgid "Use ads from your Google AdSense account"
2793
+ msgstr "Usar anuncios de tu cuenta de Google AdSense"
2794
+
2795
+ #: ../modules/gadsense/includes/class-ad-type-adsense.php:105
2796
+ msgid "Your AdSense Publisher ID is missing."
2797
+ msgstr "Tu ID de publicador de AdSense no se encuentra."
2798
+
2799
+ #: ../modules/gadsense/includes/class-gadsense-data.php:46
2800
+ msgid "Auto"
2801
+ msgstr "Auto"
2802
+
2803
+ #: ../public/class-advanced-ads.php:295
2804
+ msgid "Advanced Ads Error following:"
2805
+ msgstr "El siguiente error de Advanced Ads:"
2806
+
2807
+ #: ../public/class-advanced-ads.php:298
2808
+ #, php-format
2809
+ msgid "Advanced Ads Error: %s"
2810
+ msgstr "Error de Advanced Ads: %s"
2811
+
2812
+ #: ../public/class-advanced-ads.php:526
2813
+ msgctxt "ad group general name"
2814
+ msgid "Ad Groups"
2815
+ msgstr "Grupos de Anuncios"
2816
+
2817
+ #: ../public/class-advanced-ads.php:527
2818
+ msgctxt "ad group singular name"
2819
+ msgid "Ad Group"
2820
+ msgstr "Grupo de Anuncios"
2821
+
2822
+ #: ../public/class-advanced-ads.php:528
2823
+ msgid "Search Ad Groups"
2824
+ msgstr "Buscar Grupos de Anuncios"
2825
+
2826
+ #: ../public/class-advanced-ads.php:529
2827
+ msgid "All Ad Groups"
2828
+ msgstr "Todos los Grupos de Anuncios"
2829
+
2830
+ #: ../public/class-advanced-ads.php:530
2831
+ msgid "Parent Ad Groups"
2832
+ msgstr "Grupos Principales de Anuncios"
2833
+
2834
+ #: ../public/class-advanced-ads.php:531
2835
+ msgid "Parent Ad Groups:"
2836
+ msgstr "Grupos Principales de Anuncios:"
2837
+
2838
+ #: ../public/class-advanced-ads.php:532
2839
+ msgid "Edit Ad Group"
2840
+ msgstr "Editar Grupo de Anuncios"
2841
+
2842
+ #: ../public/class-advanced-ads.php:533
2843
+ msgid "Update Ad Group"
2844
+ msgstr "Actualizar Grupo de Anuncios"
2845
+
2846
+ #: ../public/class-advanced-ads.php:534
2847
+ msgid "Add New Ad Group"
2848
+ msgstr "Añadir Nuevo Grupo de Anuncios"
2849
+
2850
+ #: ../public/class-advanced-ads.php:535
2851
+ msgid "New Ad Groups Name"
2852
+ msgstr "Nuevo Nombre para Grupos de Anuncios"
2853
+
2854
+ #: ../public/class-advanced-ads.php:537
2855
+ msgid "No Ad Group found"
2856
+ msgstr "Grupo de Anuncios no encontrado"
2857
+
2858
+ #: ../public/class-advanced-ads.php:565 ../public/class-advanced-ads.php:569
2859
+ msgid "New Ad"
2860
+ msgstr "Nuevo Anuncio"
2861
+
2862
+ #: ../public/class-advanced-ads.php:566
2863
+ msgid "Add New Ad"
2864
+ msgstr "Añadir Nuevo Anuncio"
2865
+
2866
+ #: ../public/class-advanced-ads.php:568
2867
+ msgid "Edit Ad"
2868
+ msgstr "Editar Anuncio"
2869
+
2870
+ #: ../public/class-advanced-ads.php:570
2871
+ msgid "View"
2872
+ msgstr "Ver"
2873
+
2874
+ #: ../public/class-advanced-ads.php:571
2875
+ msgid "View the Ad"
2876
+ msgstr "Ver el Anuncio"
2877
+
2878
+ #: ../public/class-advanced-ads.php:572
2879
+ msgid "Search Ads"
2880
+ msgstr "Buscar Anuncios"
2881
+
2882
+ #: ../public/class-advanced-ads.php:573
2883
+ msgid "No Ads found"
2884
+ msgstr "No se encontraron anuncios"
2885
+
2886
+ #: ../public/class-advanced-ads.php:574
2887
+ msgid "No Ads found in Trash"
2888
+ msgstr "No se encontraron anuncios en la papelera"
2889
+
2890
+ #: ../public/class-advanced-ads.php:575
2891
+ msgid "Parent Ad"
2892
+ msgstr "Anuncio Principal"
languages/advanced-ads-it_IT.po CHANGED
@@ -1842,7 +1842,7 @@ msgstr "Mostra su tutte le <strong>pagine archivio di categoria</strong>."
1842
 
1843
  #: ../admin/includes/class-display-condition-callbacks.php:239
1844
  msgid ""
1845
- "Display an all <strong>individual posts, pages</strong> and public post type "
1846
  "pages"
1847
  msgstr "Mostra in tutti gli <strong>articoli, pagine</strong> e tipi di pagina"
1848
 
1842
 
1843
  #: ../admin/includes/class-display-condition-callbacks.php:239
1844
  msgid ""
1845
+ "Display on all <strong>individual posts, pages</strong> and public post type "
1846
  "pages"
1847
  msgstr "Mostra in tutti gli <strong>articoli, pagine</strong> e tipi di pagina"
1848
 
languages/advanced-ads-nl_NL.po CHANGED
@@ -703,7 +703,7 @@ msgstr ""
703
 
704
  #: ../admin/includes/class-display-condition-callbacks.php:239
705
  msgid ""
706
- "Display an all <strong>individual posts, pages</strong> and public post type "
707
  "pages"
708
  msgstr ""
709
  "Toon op alle <strong>individuele berichten, pagina's</strong> en publieke "
703
 
704
  #: ../admin/includes/class-display-condition-callbacks.php:239
705
  msgid ""
706
+ "Display on all <strong>individual posts, pages</strong> and public post type "
707
  "pages"
708
  msgstr ""
709
  "Toon op alle <strong>individuele berichten, pagina's</strong> en publieke "
languages/advanced-ads-pt_BR.po CHANGED
@@ -1941,7 +1941,7 @@ msgstr ""
1941
 
1942
  #: ../admin/includes/class-display-condition-callbacks.php:239
1943
  msgid ""
1944
- "Display an all <strong>individual posts, pages</strong> and public post type "
1945
  "pages"
1946
  msgstr ""
1947
  "Exibir em todos os <strong>posts e páginas</strong> e páginas de tipos de "
1941
 
1942
  #: ../admin/includes/class-display-condition-callbacks.php:239
1943
  msgid ""
1944
+ "Display on all <strong>individual posts, pages</strong> and public post type "
1945
  "pages"
1946
  msgstr ""
1947
  "Exibir em todos os <strong>posts e páginas</strong> e páginas de tipos de "
languages/advanced-ads.po CHANGED
@@ -542,7 +542,7 @@ msgstr ""
542
 
543
  #: ../admin/includes/class-display-condition-callbacks.php:239
544
  msgid ""
545
- "Display an all <strong>individual posts, pages</strong> and public post type "
546
  "pages"
547
  msgstr ""
548
 
542
 
543
  #: ../admin/includes/class-display-condition-callbacks.php:239
544
  msgid ""
545
+ "Display on all <strong>individual posts, pages</strong> and public post type "
546
  "pages"
547
  msgstr ""
548
 
languages/advanced-ads.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Advanved Ads\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
8
- "POT-Revision-Date: Wed Dec 16 2015 17:36:23 GMT+0100 (CET)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
11
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
@@ -44,251 +44,251 @@ msgstr ""
44
  msgid "http://webgilde.com"
45
  msgstr ""
46
 
47
- #: ../admin/class-advanced-ads-admin.php:255
48
  msgid "Overview"
49
  msgstr ""
50
 
51
- #: ../admin/class-advanced-ads-admin.php:259 ../admin/class-advanced-ads-admin.
52
- #: php:259 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
53
  #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
54
  #: /admin/views/placements.php:80 ../admin/views/placements.php:184 ..
55
  #: /classes/widget.php:89 ../public/class-advanced-ads.php:563
56
  msgid "Ads"
57
  msgstr ""
58
 
59
- #: ../admin/class-advanced-ads-admin.php:263 ../admin/includes/class-shortcode-
60
  #: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
61
  #: 177 ../classes/widget.php:82
62
  msgid "Ad Groups"
63
  msgstr ""
64
 
65
- #: ../admin/class-advanced-ads-admin.php:263 ../public/class-advanced-ads.php:536
66
  msgid "Groups"
67
  msgstr ""
68
 
69
- #: ../admin/class-advanced-ads-admin.php:268 ../admin/views/debug.php:14
70
  msgid "Ad Placements"
71
  msgstr ""
72
 
73
- #: ../admin/class-advanced-ads-admin.php:268 ../admin/includes/class-shortcode-
74
  #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
75
  msgid "Placements"
76
  msgstr ""
77
 
78
- #: ../admin/class-advanced-ads-admin.php:272
79
  msgid "Advanced Ads Settings"
80
  msgstr ""
81
 
82
- #: ../admin/class-advanced-ads-admin.php:272 ../admin/class-advanced-ads-admin.
83
- #: php:499 ../admin/views/debug.php:11
84
  msgid "Settings"
85
  msgstr ""
86
 
87
- #: ../admin/class-advanced-ads-admin.php:275
88
  msgid "Advanced Ads Debugging"
89
  msgstr ""
90
 
91
- #: ../admin/class-advanced-ads-admin.php:275
92
  msgid "Debug"
93
  msgstr ""
94
 
95
- #: ../admin/class-advanced-ads-admin.php:279 ../admin/class-advanced-ads-admin.
96
- #: php:279
97
  msgid "Advanced Ads Intro"
98
  msgstr ""
99
 
100
- #: ../admin/class-advanced-ads-admin.php:283 ../admin/class-advanced-ads-admin.
101
- #: php:283
102
  msgid "Support"
103
  msgstr ""
104
 
105
- #: ../admin/class-advanced-ads-admin.php:413 ../admin/class-advanced-ads-admin.
106
- #: php:440
107
  msgid "Sorry, you are not allowed to access this feature."
108
  msgstr ""
109
 
110
- #: ../admin/class-advanced-ads-admin.php:426
111
  msgid ""
112
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
113
  "deleted?"
114
  msgstr ""
115
 
116
- #: ../admin/class-advanced-ads-admin.php:541
117
  msgid "Ad Type"
118
  msgstr ""
119
 
120
- #: ../admin/class-advanced-ads-admin.php:544
121
  msgid "Ad Parameters"
122
  msgstr ""
123
 
124
- #: ../admin/class-advanced-ads-admin.php:547
125
  msgid "Layout / Output"
126
  msgstr ""
127
 
128
- #: ../admin/class-advanced-ads-admin.php:550
129
  msgid "Display Conditions"
130
  msgstr ""
131
 
132
- #: ../admin/class-advanced-ads-admin.php:553
133
  msgid "Visitor Conditions"
134
  msgstr ""
135
 
136
- #: ../admin/class-advanced-ads-admin.php:764 ../admin/class-advanced-ads-admin.
137
- #: php:765
138
  msgid "Ad updated."
139
  msgstr ""
140
 
141
  #. translators: %s: date and time of the revision
142
- #: ../admin/class-advanced-ads-admin.php:767
143
  #, php-format
144
  msgid "Ad restored to revision from %s"
145
  msgstr ""
146
 
147
- #: ../admin/class-advanced-ads-admin.php:768
148
  msgid "Ad published."
149
  msgstr ""
150
 
151
- #: ../admin/class-advanced-ads-admin.php:769
152
  msgid "Ad saved."
153
  msgstr ""
154
 
155
- #: ../admin/class-advanced-ads-admin.php:770
156
  msgid "Ad submitted."
157
  msgstr ""
158
 
159
- #: ../admin/class-advanced-ads-admin.php:772
160
  #, php-format
161
  msgid "Ad scheduled for: <strong>%1$s</strong>."
162
  msgstr ""
163
 
164
  #. translators: Publish box date format, see http://php.net/date
165
- #: ../admin/class-advanced-ads-admin.php:774
166
  msgid "M j, Y @ G:i"
167
  msgstr ""
168
 
169
- #: ../admin/class-advanced-ads-admin.php:776
170
  msgid "Ad draft updated."
171
  msgstr ""
172
 
173
- #: ../admin/class-advanced-ads-admin.php:795
174
  #, php-format
175
  msgid "%s ad updated."
176
  msgid_plural "%s ads updated."
177
  msgstr[0] ""
178
  msgstr[1] ""
179
 
180
- #: ../admin/class-advanced-ads-admin.php:796
181
  #, php-format
182
  msgid "%s ad not updated, somebody is editing it."
183
  msgid_plural "%s ads not updated, somebody is editing them."
184
  msgstr[0] ""
185
  msgstr[1] ""
186
 
187
- #: ../admin/class-advanced-ads-admin.php:797
188
  #, php-format
189
  msgid "%s ad permanently deleted."
190
  msgid_plural "%s ads permanently deleted."
191
  msgstr[0] ""
192
  msgstr[1] ""
193
 
194
- #: ../admin/class-advanced-ads-admin.php:798
195
  #, php-format
196
  msgid "%s ad moved to the Trash."
197
  msgid_plural "%s ads moved to the Trash."
198
  msgstr[0] ""
199
  msgstr[1] ""
200
 
201
- #: ../admin/class-advanced-ads-admin.php:799
202
  #, php-format
203
  msgid "%s ad restored from the Trash."
204
  msgid_plural "%s ads restored from the Trash."
205
  msgstr[0] ""
206
  msgstr[1] ""
207
 
208
- #: ../admin/class-advanced-ads-admin.php:834 ../admin/views/settings.php:12
209
  msgid "General"
210
  msgstr ""
211
 
212
- #: ../admin/class-advanced-ads-admin.php:846 ../admin/class-advanced-ads-admin.
213
- #: php:950
214
  msgid "Licenses"
215
  msgstr ""
216
 
217
- #: ../admin/class-advanced-ads-admin.php:857
218
  msgid "Disable ads"
219
  msgstr ""
220
 
221
- #: ../admin/class-advanced-ads-admin.php:865
222
  msgid "Hide ads for logged in users"
223
  msgstr ""
224
 
225
- #: ../admin/class-advanced-ads-admin.php:873
226
  msgid "Use advanced JavaScript"
227
  msgstr ""
228
 
229
- #: ../admin/class-advanced-ads-admin.php:881
230
  msgid "Unlimited ad injection"
231
  msgstr ""
232
 
233
- #: ../admin/class-advanced-ads-admin.php:889
234
  msgid "Priority of content injection filter"
235
  msgstr ""
236
 
237
- #: ../admin/class-advanced-ads-admin.php:897
238
  msgid "Hide ads from bots"
239
  msgstr ""
240
 
241
- #: ../admin/class-advanced-ads-admin.php:905
242
  msgid "Disable notices"
243
  msgstr ""
244
 
245
- #: ../admin/class-advanced-ads-admin.php:913
246
  msgid "ID prefix"
247
  msgstr ""
248
 
249
- #: ../admin/class-advanced-ads-admin.php:921
250
  msgid "Remove Widget ID"
251
  msgstr ""
252
 
253
- #: ../admin/class-advanced-ads-admin.php:929
254
  msgid "Allow editors to manage ads"
255
  msgstr ""
256
 
257
- #: ../admin/class-advanced-ads-admin.php:1004
258
  msgid "(display to all)"
259
  msgstr ""
260
 
261
- #: ../admin/class-advanced-ads-admin.php:1005
262
  msgid "Subscriber"
263
  msgstr ""
264
 
265
- #: ../admin/class-advanced-ads-admin.php:1006
266
  msgid "Contributor"
267
  msgstr ""
268
 
269
- #: ../admin/class-advanced-ads-admin.php:1007
270
  msgid "Author"
271
  msgstr ""
272
 
273
- #: ../admin/class-advanced-ads-admin.php:1008
274
  msgid "Editor"
275
  msgstr ""
276
 
277
- #: ../admin/class-advanced-ads-admin.php:1009
278
  msgid "Admin"
279
  msgstr ""
280
 
281
- #: ../admin/class-advanced-ads-admin.php:1017
282
  msgid "Choose the lowest role a user must have in order to not see any ads."
283
  msgstr ""
284
 
285
- #: ../admin/class-advanced-ads-admin.php:1031
286
  msgid ""
287
  "<strong>notice: </strong>the file is currently enabled by an add-on that "
288
  "needs it."
289
  msgstr ""
290
 
291
- #: ../admin/class-advanced-ads-admin.php:1034
292
  #, php-format
293
  msgid ""
294
  "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
@@ -296,7 +296,7 @@ msgid ""
296
  "from this file."
297
  msgstr ""
298
 
299
- #: ../admin/class-advanced-ads-admin.php:1047
300
  msgid ""
301
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
302
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
@@ -305,19 +305,19 @@ msgid ""
305
  "on archive pages AT YOUR OWN RISK."
306
  msgstr ""
307
 
308
- #: ../admin/class-advanced-ads-admin.php:1063
309
  msgid ""
310
  "Please check your post content. A priority of 10 and below might cause "
311
  "issues (wpautop function might run twice)."
312
  msgstr ""
313
 
314
- #: ../admin/class-advanced-ads-admin.php:1065
315
  msgid ""
316
  "Play with this value in order to change the priority of the injected ads "
317
  "compared to other auto injected elements in the post content."
318
  msgstr ""
319
 
320
- #: ../admin/class-advanced-ads-admin.php:1079
321
  #, php-format
322
  msgid ""
323
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
@@ -325,99 +325,118 @@ msgid ""
325
  "Add-On</a>."
326
  msgstr ""
327
 
328
- #: ../admin/class-advanced-ads-admin.php:1080
329
  msgid ""
330
  "Disabling this option only makes sense if your ads contain content you want "
331
  "to display to bots (like search engines) or your site is cached and bots "
332
  "could create a cached version without the ads."
333
  msgstr ""
334
 
335
- #: ../admin/class-advanced-ads-admin.php:1093
336
  msgid ""
337
  "Disable internal notices like tips, tutorials, email newsletters and update "
338
  "notices. Disabling notices is recommended if you run multiple blogs with "
339
  "Advanced Ads already."
340
  msgstr ""
341
 
342
- #: ../admin/class-advanced-ads-admin.php:1115
343
  msgid ""
344
  "Prefix of class or id attributes in the frontend. Change it if you don’t "
345
  "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
346
  "need to <strong>rewrite css rules afterwards</strong>."
347
  msgstr ""
348
 
349
- #: ../admin/class-advanced-ads-admin.php:1136
350
  msgid ""
351
  "Remove the ID attribute from widgets in order to not make them an easy "
352
  "target of ad blockers."
353
  msgstr ""
354
 
355
- #: ../admin/class-advanced-ads-admin.php:1155
356
  msgid "Allow editors to also manage and publish ads."
357
  msgstr ""
358
 
359
- #: ../admin/class-advanced-ads-admin.php:1224
 
 
 
 
 
 
 
360
  msgid "Ad Details"
361
  msgstr ""
362
 
363
- #: ../admin/class-advanced-ads-admin.php:1225
364
  msgid "Ad Planning"
365
  msgstr ""
366
 
367
- #: ../admin/class-advanced-ads-admin.php:1360
368
  msgid "Ad Settings"
369
  msgstr ""
370
 
371
- #: ../admin/class-advanced-ads-admin.php:1439 ../admin/views/overview.php:23
372
  msgid "Ads Dashboard"
373
  msgstr ""
374
 
375
- #: ../admin/class-advanced-ads-admin.php:1451
376
  msgid "From the ad optimization universe"
377
  msgstr ""
378
 
379
- #: ../admin/class-advanced-ads-admin.php:1460
380
  msgid "Advanced Ads Tutorials"
381
  msgstr ""
382
 
383
- #: ../admin/class-advanced-ads-admin.php:1471
384
  #, php-format
385
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
386
  msgstr ""
387
 
388
- #: ../admin/class-advanced-ads-admin.php:1482
389
  msgid "plugin manual and homepage"
390
  msgstr ""
391
 
392
- #: ../admin/class-advanced-ads-admin.php:1489
393
  msgid "Get the tutorial via email"
394
  msgstr ""
395
 
396
- #: ../admin/class-advanced-ads-admin.php:1496
397
  msgid "Get AdSense tips via email"
398
  msgstr ""
399
 
400
- #: ../admin/class-advanced-ads-admin.php:1577
401
  msgid "Error while trying to register the license. Please contact support."
402
  msgstr ""
403
 
404
- #: ../admin/class-advanced-ads-admin.php:1583
405
  msgid "Please enter and save a valid license key first."
406
  msgstr ""
407
 
408
- #: ../admin/class-advanced-ads-admin.php:1609
 
 
 
 
 
 
 
 
409
  #, php-format
410
  msgid "License is invalid. Reason: %s"
411
  msgstr ""
412
 
413
- #: ../admin/class-advanced-ads-admin.php:1627
414
  msgid "Error while trying to disable the license. Please contact support."
415
  msgstr ""
416
 
417
- #: ../admin/class-advanced-ads-admin.php:1658
418
  msgid "License couldn’t be deactivated. Please try again later or contact support."
419
  msgstr ""
420
 
 
 
 
 
421
  #: ../admin/includes/class-ad-groups-list.php:156
422
  msgid "Ad weight"
423
  msgstr ""
@@ -556,7 +575,7 @@ msgstr ""
556
 
557
  #: ../admin/includes/class-display-condition-callbacks.php:239
558
  msgid ""
559
- "Display an all <strong>individual posts, pages</strong> and public post type "
560
  "pages"
561
  msgstr ""
562
 
@@ -621,18 +640,18 @@ msgstr ""
621
  msgid "type the title"
622
  msgstr ""
623
 
624
- #: ../admin/includes/class-notices.php:359
625
  #, php-format
626
  msgid ""
627
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
628
  "target=\"_blank\">this form</a> to sign up."
629
  msgstr ""
630
 
631
- #: ../admin/includes/class-notices.php:377
632
  msgid "How embarrassing. The email server seems to be down. Please try again later."
633
  msgstr ""
634
 
635
- #: ../admin/includes/class-notices.php:382
636
  #, php-format
637
  msgid ""
638
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -665,224 +684,231 @@ msgid "Responsive and Mobile ads"
665
  msgstr ""
666
 
667
  #: ../admin/includes/class-overview-widgets.php:59
668
- msgid "Sticky ads"
669
  msgstr ""
670
 
671
  #: ../admin/includes/class-overview-widgets.php:61
672
- msgid "PopUps and Layers"
673
  msgstr ""
674
 
675
  #: ../admin/includes/class-overview-widgets.php:63
 
 
 
 
676
  msgid "Ad Slider"
677
  msgstr ""
678
 
679
- #: ../admin/includes/class-overview-widgets.php:81
680
  msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
681
  msgstr ""
682
 
683
- #: ../admin/includes/class-overview-widgets.php:82
684
  msgid "Join now"
685
  msgstr ""
686
 
687
- #: ../admin/includes/class-overview-widgets.php:89
688
  msgid ""
689
  "Learn more about how and <strong>how much you can earn with AdSense</strong> "
690
  "and Advanced Ads from the dedicated newsletter group."
691
  msgstr ""
692
 
693
- #: ../admin/includes/class-overview-widgets.php:90 ../admin/includes/notices.php:
694
- #: 32 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
695
  #: /admin/views/notices/subscribe.php:3
696
  msgid "Subscribe me now"
697
  msgstr ""
698
 
699
- #: ../admin/includes/class-overview-widgets.php:97
700
  msgid "Get the first steps and more tutorials to your inbox."
701
  msgstr ""
702
 
703
- #: ../admin/includes/class-overview-widgets.php:98
704
  msgid "Send it now"
705
  msgstr ""
706
 
707
- #: ../admin/includes/class-overview-widgets.php:121 ../admin/views/intro.php:78
708
  msgid "Create your first ad"
709
  msgstr ""
710
 
711
- #: ../admin/includes/class-overview-widgets.php:124
712
  msgid ""
713
  "Ad Groups contain ads and are currently used to rotate multiple ads on a "
714
  "single spot."
715
  msgstr ""
716
 
717
- #: ../admin/includes/class-overview-widgets.php:126
718
  msgid "Create your first group"
719
  msgstr ""
720
 
721
- #: ../admin/includes/class-overview-widgets.php:129
722
  msgid "Ad Placements are the best way to manage where to display ads and groups."
723
  msgstr ""
724
 
725
- #: ../admin/includes/class-overview-widgets.php:131
726
  msgid "Create your first placement"
727
  msgstr ""
728
 
729
- #: ../admin/includes/class-overview-widgets.php:136
730
  msgid "Next steps"
731
  msgstr ""
732
 
733
- #: ../admin/includes/class-overview-widgets.php:148
734
- #, php-format
735
- msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
736
- msgstr ""
737
-
738
- #: ../admin/includes/class-overview-widgets.php:149
739
  #, php-format
740
  msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
741
  msgstr ""
742
 
743
- #: ../admin/includes/class-overview-widgets.php:150
744
  #, php-format
745
- msgid "Ask other users in the <a href=\"%s\" target=\"_blank\">wordpress.org forum</a>"
746
  msgstr ""
747
 
748
- #: ../admin/includes/class-overview-widgets.php:151
749
  #, php-format
750
  msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
751
  msgstr ""
752
 
753
- #: ../admin/includes/class-overview-widgets.php:152
754
  #, php-format
755
  msgid ""
756
  "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
757
  "href=\"%s\" target=\"_blank\">wordpress.org</a>"
758
  msgstr ""
759
 
760
- #: ../admin/includes/class-overview-widgets.php:161
761
  msgid ""
762
  "Need help to set up and optimize your ads? Need custom coding on your site? "
763
  "Ask me for a quote."
764
  msgstr ""
765
 
766
- #: ../admin/includes/class-overview-widgets.php:162
767
  #, php-format
768
  msgid "Help with ads on %s"
769
  msgstr ""
770
 
771
- #: ../admin/includes/class-overview-widgets.php:163
772
  msgid "Get an offer"
773
  msgstr ""
774
 
775
- #: ../admin/includes/class-overview-widgets.php:171
776
  msgid "Ad management for advanced websites."
777
  msgstr ""
778
 
779
- #: ../admin/includes/class-overview-widgets.php:172
780
  msgid "Cache-busting"
781
  msgstr ""
782
 
783
- #: ../admin/includes/class-overview-widgets.php:173
784
  msgid "Advanced visitor conditions"
785
  msgstr ""
786
 
787
- #: ../admin/includes/class-overview-widgets.php:174
788
  msgid "Flash ads with fallback"
789
  msgstr ""
790
 
791
- #: ../admin/includes/class-overview-widgets.php:176
792
  msgid "Get Pro"
793
  msgstr ""
794
 
795
- #: ../admin/includes/class-overview-widgets.php:184
796
  msgid "Track the impressions of and clicks on your ads."
797
  msgstr ""
798
 
799
- #: ../admin/includes/class-overview-widgets.php:185
800
  msgid "2 methods to count impressions"
801
  msgstr ""
802
 
803
- #: ../admin/includes/class-overview-widgets.php:186
804
  msgid "beautiful stats for all or single ads"
805
  msgstr ""
806
 
807
- #: ../admin/includes/class-overview-widgets.php:187
808
- msgid "get stats for predefined and custom persiods"
809
  msgstr ""
810
 
811
- #: ../admin/includes/class-overview-widgets.php:188
812
  msgid "group stats by day, week or month"
813
  msgstr ""
814
 
815
- #: ../admin/includes/class-overview-widgets.php:190
816
  msgid "Get the Tracking add-on"
817
  msgstr ""
818
 
819
- #: ../admin/includes/class-overview-widgets.php:198
820
  msgid "Display ads based on the size of your visitor’s browser or device."
821
  msgstr ""
822
 
823
- #: ../admin/includes/class-overview-widgets.php:199
824
  msgid "set a range (from … to …) pixels for the browser size"
825
  msgstr ""
826
 
827
- #: ../admin/includes/class-overview-widgets.php:200
828
  msgid "set custom sizes for AdSense responsive ads"
829
  msgstr ""
830
 
831
- #: ../admin/includes/class-overview-widgets.php:201
832
  msgid "list all ads by their responsive settings"
833
  msgstr ""
834
 
835
- #: ../admin/includes/class-overview-widgets.php:203
836
  msgid "Get the Responsive add-on"
837
  msgstr ""
838
 
839
- #: ../admin/includes/class-overview-widgets.php:211 ../admin/views/ad-info-top.
 
 
 
 
 
 
 
 
840
  #: php:30
841
  msgid ""
842
  "Fix ads to the browser while users are scrolling and create best performing "
843
  "anchor ads."
844
  msgstr ""
845
 
846
- #: ../admin/includes/class-overview-widgets.php:212
847
  msgid "position ads that don’t scroll with the screen"
848
  msgstr ""
849
 
850
- #: ../admin/includes/class-overview-widgets.php:213
851
  msgid "build anchor ads not only on mobile devices"
852
  msgstr ""
853
 
854
- #: ../admin/includes/class-overview-widgets.php:215 ../admin/views/ad-info-top.
855
  #: php:32
856
  msgid "Get the Sticky add-on"
857
  msgstr ""
858
 
859
- #: ../admin/includes/class-overview-widgets.php:223 ../admin/views/ad-info-top.
860
  #: php:37
861
  msgid "Display content and ads in layers and popups on custom events."
862
  msgstr ""
863
 
864
- #: ../admin/includes/class-overview-widgets.php:224
865
  msgid "display a popup after a user interaction like scrolling"
866
  msgstr ""
867
 
868
- #: ../admin/includes/class-overview-widgets.php:225
869
- msgid "optional backgroup overlay"
870
  msgstr ""
871
 
872
- #: ../admin/includes/class-overview-widgets.php:226
873
  msgid "allow users to close the popup"
874
  msgstr ""
875
 
876
- #: ../admin/includes/class-overview-widgets.php:228 ../admin/views/ad-info-top.
877
  #: php:39
878
  msgid "Get the PopUp and Layer add-on"
879
  msgstr ""
880
 
881
- #: ../admin/includes/class-overview-widgets.php:236
882
  msgid "Create a beautiful and simple slider from your ads."
883
  msgstr ""
884
 
885
- #: ../admin/includes/class-overview-widgets.php:238
886
  msgid "Get the Slider add-on"
887
  msgstr ""
888
 
@@ -897,44 +923,44 @@ msgid ""
897
  "Steps</a>."
898
  msgstr ""
899
 
900
- #: ../admin/includes/notices.php:19
901
  msgid ""
902
  "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
903
  "receive the first steps via email?"
904
  msgstr ""
905
 
906
- #: ../admin/includes/notices.php:20
907
  msgid "Yes, send it"
908
  msgstr ""
909
 
910
- #: ../admin/includes/notices.php:25
911
  msgid ""
912
  "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
913
  "<strong>2 free add-ons</strong> for joining the newsletter."
914
  msgstr ""
915
 
916
- #: ../admin/includes/notices.php:26
917
  msgid "Add me now"
918
  msgstr ""
919
 
920
- #: ../admin/includes/notices.php:31
921
  msgid ""
922
  "Learn more about how and <strong>how much you can earn with AdSense</strong> "
923
  "and Advanced Ads from my dedicated newsletter."
924
  msgstr ""
925
 
926
- #: ../admin/includes/notices.php:52
927
  msgid ""
928
  "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
929
  "missing</strong>."
930
  msgstr ""
931
 
932
- #: ../admin/includes/notices.php:52
933
  #, php-format
934
  msgid "Please add valid license keys <a href=\"%s\">here</a>."
935
  msgstr ""
936
 
937
- #: ../admin/includes/notices.php:57
938
  #, php-format
939
  msgid ""
940
  "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
@@ -943,7 +969,7 @@ msgid ""
943
  "target=\"_blank\">the add-on page</a>."
944
  msgstr ""
945
 
946
- #: ../admin/includes/notices.php:62 ../admin/views/support.php:38
947
  #, php-format
948
  msgid ""
949
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
@@ -951,6 +977,18 @@ msgid ""
951
  "information."
952
  msgstr ""
953
 
 
 
 
 
 
 
 
 
 
 
 
 
954
  #: ../admin/includes/shortcode-creator-l10n.php:10
955
  msgctxt "shortcode creator"
956
  msgid "Add an ad"
@@ -1414,6 +1452,10 @@ msgid ""
1414
  "websites."
1415
  msgstr ""
1416
 
 
 
 
 
1417
  #: ../admin/views/ad-visitor-metabox.php:28
1418
  msgid ""
1419
  "Visitor conditions limit the number of users who can see your ad. There is "
@@ -1488,6 +1530,45 @@ msgid ""
1488
  "understand them, but there is nothing to do here yet."
1489
  msgstr ""
1490
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1491
  #: ../admin/views/intro.php:18
1492
  msgid "5-Star Usability"
1493
  msgstr ""
@@ -1556,8 +1637,8 @@ msgstr ""
1556
  #: ../admin/views/intro.php:79
1557
  #, php-format
1558
  msgid ""
1559
- "Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
1560
- "watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
1561
  msgstr ""
1562
 
1563
  #: ../admin/views/intro.php:82
@@ -2115,78 +2196,82 @@ msgstr ""
2115
  msgid "Display ads only on mobile devices or hide them."
2116
  msgstr ""
2117
 
2118
- #: ../classes/visitor-conditions.php:38
2119
  msgid "logged in visitor"
2120
  msgstr ""
2121
 
2122
- #: ../classes/visitor-conditions.php:39
2123
  msgid "Whether the visitor has to be logged in or not in order to see the ads."
2124
  msgstr ""
2125
 
2126
- #: ../classes/visitor-conditions.php:72
2127
  #, php-format
2128
  msgid ""
2129
  "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2130
  "target=\"_blank\">Responsive add-on</a>"
2131
  msgstr ""
2132
 
2133
- #: ../classes/visitor-conditions.php:102
2134
  msgid "is"
2135
  msgstr ""
2136
 
2137
- #: ../classes/visitor-conditions.php:103
2138
  msgid "is not"
2139
  msgstr ""
2140
 
2141
- #: ../classes/visitor-conditions.php:135
 
 
 
 
2142
  msgid "equal"
2143
  msgstr ""
2144
 
2145
- #: ../classes/visitor-conditions.php:136
2146
  msgid "equal or higher"
2147
  msgstr ""
2148
 
2149
- #: ../classes/visitor-conditions.php:137
2150
  msgid "equal or lower"
2151
  msgstr ""
2152
 
2153
- #: ../classes/visitor-conditions.php:169
2154
  msgid "contains"
2155
  msgstr ""
2156
 
2157
- #: ../classes/visitor-conditions.php:170
2158
  msgid "starts with"
2159
  msgstr ""
2160
 
2161
- #: ../classes/visitor-conditions.php:171
2162
  msgid "ends with"
2163
  msgstr ""
2164
 
2165
- #: ../classes/visitor-conditions.php:172
2166
  msgid "matches"
2167
  msgstr ""
2168
 
2169
- #: ../classes/visitor-conditions.php:173
2170
  msgid "matches regex"
2171
  msgstr ""
2172
 
2173
- #: ../classes/visitor-conditions.php:174
2174
  msgid "does not contain"
2175
  msgstr ""
2176
 
2177
- #: ../classes/visitor-conditions.php:175
2178
  msgid "does not start with"
2179
  msgstr ""
2180
 
2181
- #: ../classes/visitor-conditions.php:176
2182
  msgid "does not end with"
2183
  msgstr ""
2184
 
2185
- #: ../classes/visitor-conditions.php:177
2186
  msgid "does not match"
2187
  msgstr ""
2188
 
2189
- #: ../classes/visitor-conditions.php:178
2190
  msgid "does not match regex"
2191
  msgstr ""
2192
 
@@ -2280,52 +2365,52 @@ msgstr ""
2280
  msgid "allow ads in secondary queries"
2281
  msgstr ""
2282
 
2283
- #: ../modules/ad-blocker/admin/admin.php:139
2284
  msgid "The asset folder was rebuilt successfully"
2285
  msgstr ""
2286
 
2287
- #: ../modules/ad-blocker/admin/admin.php:261
2288
  msgid "Ad blocker fix"
2289
  msgstr ""
2290
 
2291
- #: ../modules/ad-blocker/admin/admin.php:301
2292
  msgid "There is no writable upload folder"
2293
  msgstr ""
2294
 
2295
- #: ../modules/ad-blocker/admin/admin.php:324
2296
  #, php-format
2297
  msgid "Unable to rename \"%s\" directory"
2298
  msgstr ""
2299
 
2300
- #: ../modules/ad-blocker/admin/admin.php:342 ../modules/ad-blocker/admin/admin.
2301
- #: php:356 ../modules/ad-blocker/admin/admin.php:374
2302
  #, php-format
2303
  msgid "Unable to copy assets to the \"%s\" directory"
2304
  msgstr ""
2305
 
2306
- #: ../modules/ad-blocker/admin/admin.php:406 ../modules/ad-blocker/admin/admin.
2307
- #: php:416
2308
  #, php-format
2309
  msgid "We do not have direct write access to the \"%s\" directory"
2310
  msgstr ""
2311
 
2312
- #: ../modules/ad-blocker/admin/admin.php:425
2313
  msgid "There are no assets to copy"
2314
  msgstr ""
2315
 
2316
- #: ../modules/ad-blocker/admin/admin.php:481
2317
  #, php-format
2318
  msgid ""
2319
  "Unable to create \"%s\" directory. Is its parent directory writable by the "
2320
  "server?"
2321
  msgstr ""
2322
 
2323
- #: ../modules/ad-blocker/admin/admin.php:493
2324
  #, php-format
2325
  msgid "Unable to copy files to %s"
2326
  msgstr ""
2327
 
2328
- #: ../modules/ad-blocker/admin/admin.php:560
2329
  msgid ""
2330
  "Prevents ad block software from breaking your website when blocking asset "
2331
  "files (.js, .css)."
5
  "Project-Id-Version: Advanved Ads\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
8
+ "POT-Revision-Date: Mon Feb 08 2016 15:19:26 GMT+0100 (CET)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
11
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
44
  msgid "http://webgilde.com"
45
  msgstr ""
46
 
47
+ #: ../admin/class-advanced-ads-admin.php:260
48
  msgid "Overview"
49
  msgstr ""
50
 
51
+ #: ../admin/class-advanced-ads-admin.php:264 ../admin/class-advanced-ads-admin.
52
+ #: php:264 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
53
  #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
54
  #: /admin/views/placements.php:80 ../admin/views/placements.php:184 ..
55
  #: /classes/widget.php:89 ../public/class-advanced-ads.php:563
56
  msgid "Ads"
57
  msgstr ""
58
 
59
+ #: ../admin/class-advanced-ads-admin.php:268 ../admin/includes/class-shortcode-
60
  #: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
61
  #: 177 ../classes/widget.php:82
62
  msgid "Ad Groups"
63
  msgstr ""
64
 
65
+ #: ../admin/class-advanced-ads-admin.php:268 ../public/class-advanced-ads.php:536
66
  msgid "Groups"
67
  msgstr ""
68
 
69
+ #: ../admin/class-advanced-ads-admin.php:273 ../admin/views/debug.php:14
70
  msgid "Ad Placements"
71
  msgstr ""
72
 
73
+ #: ../admin/class-advanced-ads-admin.php:273 ../admin/includes/class-shortcode-
74
  #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
75
  msgid "Placements"
76
  msgstr ""
77
 
78
+ #: ../admin/class-advanced-ads-admin.php:277
79
  msgid "Advanced Ads Settings"
80
  msgstr ""
81
 
82
+ #: ../admin/class-advanced-ads-admin.php:277 ../admin/class-advanced-ads-admin.
83
+ #: php:504 ../admin/views/debug.php:11
84
  msgid "Settings"
85
  msgstr ""
86
 
87
+ #: ../admin/class-advanced-ads-admin.php:280
88
  msgid "Advanced Ads Debugging"
89
  msgstr ""
90
 
91
+ #: ../admin/class-advanced-ads-admin.php:280
92
  msgid "Debug"
93
  msgstr ""
94
 
95
+ #: ../admin/class-advanced-ads-admin.php:284 ../admin/class-advanced-ads-admin.
96
+ #: php:284
97
  msgid "Advanced Ads Intro"
98
  msgstr ""
99
 
100
+ #: ../admin/class-advanced-ads-admin.php:288 ../admin/class-advanced-ads-admin.
101
+ #: php:288 ../admin/class-advanced-ads-admin.php:1857
102
  msgid "Support"
103
  msgstr ""
104
 
105
+ #: ../admin/class-advanced-ads-admin.php:418 ../admin/class-advanced-ads-admin.
106
+ #: php:445
107
  msgid "Sorry, you are not allowed to access this feature."
108
  msgstr ""
109
 
110
+ #: ../admin/class-advanced-ads-admin.php:431
111
  msgid ""
112
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
113
  "deleted?"
114
  msgstr ""
115
 
116
+ #: ../admin/class-advanced-ads-admin.php:546
117
  msgid "Ad Type"
118
  msgstr ""
119
 
120
+ #: ../admin/class-advanced-ads-admin.php:549
121
  msgid "Ad Parameters"
122
  msgstr ""
123
 
124
+ #: ../admin/class-advanced-ads-admin.php:552
125
  msgid "Layout / Output"
126
  msgstr ""
127
 
128
+ #: ../admin/class-advanced-ads-admin.php:555
129
  msgid "Display Conditions"
130
  msgstr ""
131
 
132
+ #: ../admin/class-advanced-ads-admin.php:558
133
  msgid "Visitor Conditions"
134
  msgstr ""
135
 
136
+ #: ../admin/class-advanced-ads-admin.php:769 ../admin/class-advanced-ads-admin.
137
+ #: php:770
138
  msgid "Ad updated."
139
  msgstr ""
140
 
141
  #. translators: %s: date and time of the revision
142
+ #: ../admin/class-advanced-ads-admin.php:772
143
  #, php-format
144
  msgid "Ad restored to revision from %s"
145
  msgstr ""
146
 
147
+ #: ../admin/class-advanced-ads-admin.php:773
148
  msgid "Ad published."
149
  msgstr ""
150
 
151
+ #: ../admin/class-advanced-ads-admin.php:774
152
  msgid "Ad saved."
153
  msgstr ""
154
 
155
+ #: ../admin/class-advanced-ads-admin.php:775
156
  msgid "Ad submitted."
157
  msgstr ""
158
 
159
+ #: ../admin/class-advanced-ads-admin.php:777
160
  #, php-format
161
  msgid "Ad scheduled for: <strong>%1$s</strong>."
162
  msgstr ""
163
 
164
  #. translators: Publish box date format, see http://php.net/date
165
+ #: ../admin/class-advanced-ads-admin.php:779
166
  msgid "M j, Y @ G:i"
167
  msgstr ""
168
 
169
+ #: ../admin/class-advanced-ads-admin.php:781
170
  msgid "Ad draft updated."
171
  msgstr ""
172
 
173
+ #: ../admin/class-advanced-ads-admin.php:800
174
  #, php-format
175
  msgid "%s ad updated."
176
  msgid_plural "%s ads updated."
177
  msgstr[0] ""
178
  msgstr[1] ""
179
 
180
+ #: ../admin/class-advanced-ads-admin.php:801
181
  #, php-format
182
  msgid "%s ad not updated, somebody is editing it."
183
  msgid_plural "%s ads not updated, somebody is editing them."
184
  msgstr[0] ""
185
  msgstr[1] ""
186
 
187
+ #: ../admin/class-advanced-ads-admin.php:802
188
  #, php-format
189
  msgid "%s ad permanently deleted."
190
  msgid_plural "%s ads permanently deleted."
191
  msgstr[0] ""
192
  msgstr[1] ""
193
 
194
+ #: ../admin/class-advanced-ads-admin.php:803
195
  #, php-format
196
  msgid "%s ad moved to the Trash."
197
  msgid_plural "%s ads moved to the Trash."
198
  msgstr[0] ""
199
  msgstr[1] ""
200
 
201
+ #: ../admin/class-advanced-ads-admin.php:804
202
  #, php-format
203
  msgid "%s ad restored from the Trash."
204
  msgid_plural "%s ads restored from the Trash."
205
  msgstr[0] ""
206
  msgstr[1] ""
207
 
208
+ #: ../admin/class-advanced-ads-admin.php:839 ../admin/views/settings.php:12
209
  msgid "General"
210
  msgstr ""
211
 
212
+ #: ../admin/class-advanced-ads-admin.php:851 ../admin/class-advanced-ads-admin.
213
+ #: php:955
214
  msgid "Licenses"
215
  msgstr ""
216
 
217
+ #: ../admin/class-advanced-ads-admin.php:862
218
  msgid "Disable ads"
219
  msgstr ""
220
 
221
+ #: ../admin/class-advanced-ads-admin.php:870
222
  msgid "Hide ads for logged in users"
223
  msgstr ""
224
 
225
+ #: ../admin/class-advanced-ads-admin.php:878
226
  msgid "Use advanced JavaScript"
227
  msgstr ""
228
 
229
+ #: ../admin/class-advanced-ads-admin.php:886
230
  msgid "Unlimited ad injection"
231
  msgstr ""
232
 
233
+ #: ../admin/class-advanced-ads-admin.php:894
234
  msgid "Priority of content injection filter"
235
  msgstr ""
236
 
237
+ #: ../admin/class-advanced-ads-admin.php:902
238
  msgid "Hide ads from bots"
239
  msgstr ""
240
 
241
+ #: ../admin/class-advanced-ads-admin.php:910
242
  msgid "Disable notices"
243
  msgstr ""
244
 
245
+ #: ../admin/class-advanced-ads-admin.php:918
246
  msgid "ID prefix"
247
  msgstr ""
248
 
249
+ #: ../admin/class-advanced-ads-admin.php:926
250
  msgid "Remove Widget ID"
251
  msgstr ""
252
 
253
+ #: ../admin/class-advanced-ads-admin.php:934
254
  msgid "Allow editors to manage ads"
255
  msgstr ""
256
 
257
+ #: ../admin/class-advanced-ads-admin.php:1009
258
  msgid "(display to all)"
259
  msgstr ""
260
 
261
+ #: ../admin/class-advanced-ads-admin.php:1010
262
  msgid "Subscriber"
263
  msgstr ""
264
 
265
+ #: ../admin/class-advanced-ads-admin.php:1011
266
  msgid "Contributor"
267
  msgstr ""
268
 
269
+ #: ../admin/class-advanced-ads-admin.php:1012
270
  msgid "Author"
271
  msgstr ""
272
 
273
+ #: ../admin/class-advanced-ads-admin.php:1013
274
  msgid "Editor"
275
  msgstr ""
276
 
277
+ #: ../admin/class-advanced-ads-admin.php:1014
278
  msgid "Admin"
279
  msgstr ""
280
 
281
+ #: ../admin/class-advanced-ads-admin.php:1022
282
  msgid "Choose the lowest role a user must have in order to not see any ads."
283
  msgstr ""
284
 
285
+ #: ../admin/class-advanced-ads-admin.php:1036
286
  msgid ""
287
  "<strong>notice: </strong>the file is currently enabled by an add-on that "
288
  "needs it."
289
  msgstr ""
290
 
291
+ #: ../admin/class-advanced-ads-admin.php:1039
292
  #, php-format
293
  msgid ""
294
  "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
296
  "from this file."
297
  msgstr ""
298
 
299
+ #: ../admin/class-advanced-ads-admin.php:1052
300
  msgid ""
301
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
302
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
305
  "on archive pages AT YOUR OWN RISK."
306
  msgstr ""
307
 
308
+ #: ../admin/class-advanced-ads-admin.php:1068
309
  msgid ""
310
  "Please check your post content. A priority of 10 and below might cause "
311
  "issues (wpautop function might run twice)."
312
  msgstr ""
313
 
314
+ #: ../admin/class-advanced-ads-admin.php:1070
315
  msgid ""
316
  "Play with this value in order to change the priority of the injected ads "
317
  "compared to other auto injected elements in the post content."
318
  msgstr ""
319
 
320
+ #: ../admin/class-advanced-ads-admin.php:1084
321
  #, php-format
322
  msgid ""
323
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
325
  "Add-On</a>."
326
  msgstr ""
327
 
328
+ #: ../admin/class-advanced-ads-admin.php:1085
329
  msgid ""
330
  "Disabling this option only makes sense if your ads contain content you want "
331
  "to display to bots (like search engines) or your site is cached and bots "
332
  "could create a cached version without the ads."
333
  msgstr ""
334
 
335
+ #: ../admin/class-advanced-ads-admin.php:1098
336
  msgid ""
337
  "Disable internal notices like tips, tutorials, email newsletters and update "
338
  "notices. Disabling notices is recommended if you run multiple blogs with "
339
  "Advanced Ads already."
340
  msgstr ""
341
 
342
+ #: ../admin/class-advanced-ads-admin.php:1120
343
  msgid ""
344
  "Prefix of class or id attributes in the frontend. Change it if you don’t "
345
  "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
346
  "need to <strong>rewrite css rules afterwards</strong>."
347
  msgstr ""
348
 
349
+ #: ../admin/class-advanced-ads-admin.php:1141
350
  msgid ""
351
  "Remove the ID attribute from widgets in order to not make them an easy "
352
  "target of ad blockers."
353
  msgstr ""
354
 
355
+ #: ../admin/class-advanced-ads-admin.php:1160
356
  msgid "Allow editors to also manage and publish ads."
357
  msgstr ""
358
 
359
+ #: ../admin/class-advanced-ads-admin.php:1161
360
+ #, php-format
361
+ msgid ""
362
+ "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
363
+ "target=\"_blank\">Advanced Ads Pro</a>."
364
+ msgstr ""
365
+
366
+ #: ../admin/class-advanced-ads-admin.php:1248
367
  msgid "Ad Details"
368
  msgstr ""
369
 
370
+ #: ../admin/class-advanced-ads-admin.php:1249
371
  msgid "Ad Planning"
372
  msgstr ""
373
 
374
+ #: ../admin/class-advanced-ads-admin.php:1384
375
  msgid "Ad Settings"
376
  msgstr ""
377
 
378
+ #: ../admin/class-advanced-ads-admin.php:1463 ../admin/views/overview.php:23
379
  msgid "Ads Dashboard"
380
  msgstr ""
381
 
382
+ #: ../admin/class-advanced-ads-admin.php:1475
383
  msgid "From the ad optimization universe"
384
  msgstr ""
385
 
386
+ #: ../admin/class-advanced-ads-admin.php:1484
387
  msgid "Advanced Ads Tutorials"
388
  msgstr ""
389
 
390
+ #: ../admin/class-advanced-ads-admin.php:1495
391
  #, php-format
392
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
393
  msgstr ""
394
 
395
+ #: ../admin/class-advanced-ads-admin.php:1506
396
  msgid "plugin manual and homepage"
397
  msgstr ""
398
 
399
+ #: ../admin/class-advanced-ads-admin.php:1513
400
  msgid "Get the tutorial via email"
401
  msgstr ""
402
 
403
+ #: ../admin/class-advanced-ads-admin.php:1520
404
  msgid "Get AdSense tips via email"
405
  msgstr ""
406
 
407
+ #: ../admin/class-advanced-ads-admin.php:1601
408
  msgid "Error while trying to register the license. Please contact support."
409
  msgstr ""
410
 
411
+ #: ../admin/class-advanced-ads-admin.php:1607
412
  msgid "Please enter and save a valid license key first."
413
  msgstr ""
414
 
415
+ #: ../admin/class-advanced-ads-admin.php:1635
416
+ msgid "This is the bundle license key."
417
+ msgstr ""
418
+
419
+ #: ../admin/class-advanced-ads-admin.php:1636
420
+ msgid "This is not the correct key for this add-on."
421
+ msgstr ""
422
+
423
+ #: ../admin/class-advanced-ads-admin.php:1639
424
  #, php-format
425
  msgid "License is invalid. Reason: %s"
426
  msgstr ""
427
 
428
+ #: ../admin/class-advanced-ads-admin.php:1683
429
  msgid "Error while trying to disable the license. Please contact support."
430
  msgstr ""
431
 
432
+ #: ../admin/class-advanced-ads-admin.php:1714
433
  msgid "License couldn’t be deactivated. Please try again later or contact support."
434
  msgstr ""
435
 
436
+ #: ../admin/class-advanced-ads-admin.php:1861
437
+ msgid "Add-Ons"
438
+ msgstr ""
439
+
440
  #: ../admin/includes/class-ad-groups-list.php:156
441
  msgid "Ad weight"
442
  msgstr ""
575
 
576
  #: ../admin/includes/class-display-condition-callbacks.php:239
577
  msgid ""
578
+ "Display on all <strong>individual posts, pages</strong> and public post type "
579
  "pages"
580
  msgstr ""
581
 
640
  msgid "type the title"
641
  msgstr ""
642
 
643
+ #: ../admin/includes/class-notices.php:364
644
  #, php-format
645
  msgid ""
646
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
647
  "target=\"_blank\">this form</a> to sign up."
648
  msgstr ""
649
 
650
+ #: ../admin/includes/class-notices.php:382
651
  msgid "How embarrassing. The email server seems to be down. Please try again later."
652
  msgstr ""
653
 
654
+ #: ../admin/includes/class-notices.php:387
655
  #, php-format
656
  msgid ""
657
  "Please check your email (%s) for the confirmation message. If you didn’t "
684
  msgstr ""
685
 
686
  #: ../admin/includes/class-overview-widgets.php:59
687
+ msgid "Geo Targeting"
688
  msgstr ""
689
 
690
  #: ../admin/includes/class-overview-widgets.php:61
691
+ msgid "Sticky ads"
692
  msgstr ""
693
 
694
  #: ../admin/includes/class-overview-widgets.php:63
695
+ msgid "PopUps and Layers"
696
+ msgstr ""
697
+
698
+ #: ../admin/includes/class-overview-widgets.php:65
699
  msgid "Ad Slider"
700
  msgstr ""
701
 
702
+ #: ../admin/includes/class-overview-widgets.php:83
703
  msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
704
  msgstr ""
705
 
706
+ #: ../admin/includes/class-overview-widgets.php:84
707
  msgid "Join now"
708
  msgstr ""
709
 
710
+ #: ../admin/includes/class-overview-widgets.php:91
711
  msgid ""
712
  "Learn more about how and <strong>how much you can earn with AdSense</strong> "
713
  "and Advanced Ads from the dedicated newsletter group."
714
  msgstr ""
715
 
716
+ #: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
717
+ #: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
718
  #: /admin/views/notices/subscribe.php:3
719
  msgid "Subscribe me now"
720
  msgstr ""
721
 
722
+ #: ../admin/includes/class-overview-widgets.php:99
723
  msgid "Get the first steps and more tutorials to your inbox."
724
  msgstr ""
725
 
726
+ #: ../admin/includes/class-overview-widgets.php:100
727
  msgid "Send it now"
728
  msgstr ""
729
 
730
+ #: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
731
  msgid "Create your first ad"
732
  msgstr ""
733
 
734
+ #: ../admin/includes/class-overview-widgets.php:126
735
  msgid ""
736
  "Ad Groups contain ads and are currently used to rotate multiple ads on a "
737
  "single spot."
738
  msgstr ""
739
 
740
+ #: ../admin/includes/class-overview-widgets.php:128
741
  msgid "Create your first group"
742
  msgstr ""
743
 
744
+ #: ../admin/includes/class-overview-widgets.php:131
745
  msgid "Ad Placements are the best way to manage where to display ads and groups."
746
  msgstr ""
747
 
748
+ #: ../admin/includes/class-overview-widgets.php:133
749
  msgid "Create your first placement"
750
  msgstr ""
751
 
752
+ #: ../admin/includes/class-overview-widgets.php:138
753
  msgid "Next steps"
754
  msgstr ""
755
 
756
+ #: ../admin/includes/class-overview-widgets.php:150
 
 
 
 
 
757
  #, php-format
758
  msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
759
  msgstr ""
760
 
761
+ #: ../admin/includes/class-overview-widgets.php:151
762
  #, php-format
763
+ msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
764
  msgstr ""
765
 
766
+ #: ../admin/includes/class-overview-widgets.php:152
767
  #, php-format
768
  msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
769
  msgstr ""
770
 
771
+ #: ../admin/includes/class-overview-widgets.php:153
772
  #, php-format
773
  msgid ""
774
  "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
775
  "href=\"%s\" target=\"_blank\">wordpress.org</a>"
776
  msgstr ""
777
 
778
+ #: ../admin/includes/class-overview-widgets.php:162
779
  msgid ""
780
  "Need help to set up and optimize your ads? Need custom coding on your site? "
781
  "Ask me for a quote."
782
  msgstr ""
783
 
784
+ #: ../admin/includes/class-overview-widgets.php:163
785
  #, php-format
786
  msgid "Help with ads on %s"
787
  msgstr ""
788
 
789
+ #: ../admin/includes/class-overview-widgets.php:164
790
  msgid "Get an offer"
791
  msgstr ""
792
 
793
+ #: ../admin/includes/class-overview-widgets.php:172
794
  msgid "Ad management for advanced websites."
795
  msgstr ""
796
 
797
+ #: ../admin/includes/class-overview-widgets.php:173
798
  msgid "Cache-busting"
799
  msgstr ""
800
 
801
+ #: ../admin/includes/class-overview-widgets.php:174
802
  msgid "Advanced visitor conditions"
803
  msgstr ""
804
 
805
+ #: ../admin/includes/class-overview-widgets.php:175
806
  msgid "Flash ads with fallback"
807
  msgstr ""
808
 
809
+ #: ../admin/includes/class-overview-widgets.php:177
810
  msgid "Get Pro"
811
  msgstr ""
812
 
813
+ #: ../admin/includes/class-overview-widgets.php:185
814
  msgid "Track the impressions of and clicks on your ads."
815
  msgstr ""
816
 
817
+ #: ../admin/includes/class-overview-widgets.php:186
818
  msgid "2 methods to count impressions"
819
  msgstr ""
820
 
821
+ #: ../admin/includes/class-overview-widgets.php:187
822
  msgid "beautiful stats for all or single ads"
823
  msgstr ""
824
 
825
+ #: ../admin/includes/class-overview-widgets.php:188
826
+ msgid "get stats for predefined and custom periods"
827
  msgstr ""
828
 
829
+ #: ../admin/includes/class-overview-widgets.php:189
830
  msgid "group stats by day, week or month"
831
  msgstr ""
832
 
833
+ #: ../admin/includes/class-overview-widgets.php:191
834
  msgid "Get the Tracking add-on"
835
  msgstr ""
836
 
837
+ #: ../admin/includes/class-overview-widgets.php:199
838
  msgid "Display ads based on the size of your visitor’s browser or device."
839
  msgstr ""
840
 
841
+ #: ../admin/includes/class-overview-widgets.php:200
842
  msgid "set a range (from … to …) pixels for the browser size"
843
  msgstr ""
844
 
845
+ #: ../admin/includes/class-overview-widgets.php:201
846
  msgid "set custom sizes for AdSense responsive ads"
847
  msgstr ""
848
 
849
+ #: ../admin/includes/class-overview-widgets.php:202
850
  msgid "list all ads by their responsive settings"
851
  msgstr ""
852
 
853
+ #: ../admin/includes/class-overview-widgets.php:204
854
  msgid "Get the Responsive add-on"
855
  msgstr ""
856
 
857
+ #: ../admin/includes/class-overview-widgets.php:212
858
+ msgid "Target visitors by their geo location."
859
+ msgstr ""
860
+
861
+ #: ../admin/includes/class-overview-widgets.php:214
862
+ msgid "Get the Geo Targeting add-on"
863
+ msgstr ""
864
+
865
+ #: ../admin/includes/class-overview-widgets.php:222 ../admin/views/ad-info-top.
866
  #: php:30
867
  msgid ""
868
  "Fix ads to the browser while users are scrolling and create best performing "
869
  "anchor ads."
870
  msgstr ""
871
 
872
+ #: ../admin/includes/class-overview-widgets.php:223
873
  msgid "position ads that don’t scroll with the screen"
874
  msgstr ""
875
 
876
+ #: ../admin/includes/class-overview-widgets.php:224
877
  msgid "build anchor ads not only on mobile devices"
878
  msgstr ""
879
 
880
+ #: ../admin/includes/class-overview-widgets.php:226 ../admin/views/ad-info-top.
881
  #: php:32
882
  msgid "Get the Sticky add-on"
883
  msgstr ""
884
 
885
+ #: ../admin/includes/class-overview-widgets.php:234 ../admin/views/ad-info-top.
886
  #: php:37
887
  msgid "Display content and ads in layers and popups on custom events."
888
  msgstr ""
889
 
890
+ #: ../admin/includes/class-overview-widgets.php:235
891
  msgid "display a popup after a user interaction like scrolling"
892
  msgstr ""
893
 
894
+ #: ../admin/includes/class-overview-widgets.php:236
895
+ msgid "optional background overlay"
896
  msgstr ""
897
 
898
+ #: ../admin/includes/class-overview-widgets.php:237
899
  msgid "allow users to close the popup"
900
  msgstr ""
901
 
902
+ #: ../admin/includes/class-overview-widgets.php:239 ../admin/views/ad-info-top.
903
  #: php:39
904
  msgid "Get the PopUp and Layer add-on"
905
  msgstr ""
906
 
907
+ #: ../admin/includes/class-overview-widgets.php:247
908
  msgid "Create a beautiful and simple slider from your ads."
909
  msgstr ""
910
 
911
+ #: ../admin/includes/class-overview-widgets.php:249
912
  msgid "Get the Slider add-on"
913
  msgstr ""
914
 
923
  "Steps</a>."
924
  msgstr ""
925
 
926
+ #: ../admin/includes/notices.php:20
927
  msgid ""
928
  "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
929
  "receive the first steps via email?"
930
  msgstr ""
931
 
932
+ #: ../admin/includes/notices.php:21
933
  msgid "Yes, send it"
934
  msgstr ""
935
 
936
+ #: ../admin/includes/notices.php:27
937
  msgid ""
938
  "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
939
  "<strong>2 free add-ons</strong> for joining the newsletter."
940
  msgstr ""
941
 
942
+ #: ../admin/includes/notices.php:28
943
  msgid "Add me now"
944
  msgstr ""
945
 
946
+ #: ../admin/includes/notices.php:34
947
  msgid ""
948
  "Learn more about how and <strong>how much you can earn with AdSense</strong> "
949
  "and Advanced Ads from my dedicated newsletter."
950
  msgstr ""
951
 
952
+ #: ../admin/includes/notices.php:56
953
  msgid ""
954
  "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
955
  "missing</strong>."
956
  msgstr ""
957
 
958
+ #: ../admin/includes/notices.php:56
959
  #, php-format
960
  msgid "Please add valid license keys <a href=\"%s\">here</a>."
961
  msgstr ""
962
 
963
+ #: ../admin/includes/notices.php:62
964
  #, php-format
965
  msgid ""
966
  "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
969
  "target=\"_blank\">the add-on page</a>."
970
  msgstr ""
971
 
972
+ #: ../admin/includes/notices.php:68 ../admin/views/support.php:38
973
  #, php-format
974
  msgid ""
975
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
977
  "information."
978
  msgstr ""
979
 
980
+ #: ../admin/includes/notices.php:74
981
+ #, php-format
982
+ msgid ""
983
+ "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
984
+ "image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
985
+ "you! If you need my help then please visit the <a href=\"%1$s\" "
986
+ "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
987
+ "Review</h3><p>If you share my passion and find Advanced Ads useful then "
988
+ "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
989
+ "org</a>.</p><p><em>Thomas</em>"
990
+ msgstr ""
991
+
992
  #: ../admin/includes/shortcode-creator-l10n.php:10
993
  msgctxt "shortcode creator"
994
  msgid "Add an ad"
1452
  "websites."
1453
  msgstr ""
1454
 
1455
+ #: ../admin/views/ad-visitor-metabox.php:4
1456
+ msgid "Manual"
1457
+ msgstr ""
1458
+
1459
  #: ../admin/views/ad-visitor-metabox.php:28
1460
  msgid ""
1461
  "Visitor conditions limit the number of users who can see your ad. There is "
1530
  "understand them, but there is nothing to do here yet."
1531
  msgstr ""
1532
 
1533
+ #: ../admin/views/feedback_disable.php:3
1534
+ msgid "Thank you for helping to improve Advanced Ads."
1535
+ msgstr ""
1536
+
1537
+ #: ../admin/views/feedback_disable.php:4
1538
+ msgid ""
1539
+ "Your feedback will motivates me to work harder towards a professional ad "
1540
+ "management solution."
1541
+ msgstr ""
1542
+
1543
+ #: ../admin/views/feedback_disable.php:5
1544
+ msgid "Why did you decide to disable Advanced Ads?"
1545
+ msgstr ""
1546
+
1547
+ #: ../admin/views/feedback_disable.php:7
1548
+ msgid "I stopped showing ads on my site"
1549
+ msgstr ""
1550
+
1551
+ #: ../admin/views/feedback_disable.php:8
1552
+ #, php-format
1553
+ msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1554
+ msgstr ""
1555
+
1556
+ #: ../admin/views/feedback_disable.php:9
1557
+ msgid "I have a technical problem"
1558
+ msgstr ""
1559
+
1560
+ #: ../admin/views/feedback_disable.php:10
1561
+ msgid "other reason"
1562
+ msgstr ""
1563
+
1564
+ #: ../admin/views/feedback_disable.php:12
1565
+ msgid "Please specify, if possible"
1566
+ msgstr ""
1567
+
1568
+ #: ../admin/views/feedback_disable.php:13
1569
+ msgid "What would be a reason to return to Advanced Ads?"
1570
+ msgstr ""
1571
+
1572
  #: ../admin/views/intro.php:18
1573
  msgid "5-Star Usability"
1574
  msgstr ""
1637
  #: ../admin/views/intro.php:79
1638
  #, php-format
1639
  msgid ""
1640
+ "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
1641
+ "watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
1642
  msgstr ""
1643
 
1644
  #: ../admin/views/intro.php:82
2196
  msgid "Display ads only on mobile devices or hide them."
2197
  msgstr ""
2198
 
2199
+ #: ../classes/visitor-conditions.php:39
2200
  msgid "logged in visitor"
2201
  msgstr ""
2202
 
2203
+ #: ../classes/visitor-conditions.php:40
2204
  msgid "Whether the visitor has to be logged in or not in order to see the ads."
2205
  msgstr ""
2206
 
2207
+ #: ../classes/visitor-conditions.php:73
2208
  #, php-format
2209
  msgid ""
2210
  "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2211
  "target=\"_blank\">Responsive add-on</a>"
2212
  msgstr ""
2213
 
2214
+ #: ../classes/visitor-conditions.php:103
2215
  msgid "is"
2216
  msgstr ""
2217
 
2218
+ #: ../classes/visitor-conditions.php:104
2219
  msgid "is not"
2220
  msgstr ""
2221
 
2222
+ #: ../classes/visitor-conditions.php:109
2223
+ msgid "Manual and Troubleshooting"
2224
+ msgstr ""
2225
+
2226
+ #: ../classes/visitor-conditions.php:140
2227
  msgid "equal"
2228
  msgstr ""
2229
 
2230
+ #: ../classes/visitor-conditions.php:141
2231
  msgid "equal or higher"
2232
  msgstr ""
2233
 
2234
+ #: ../classes/visitor-conditions.php:142
2235
  msgid "equal or lower"
2236
  msgstr ""
2237
 
2238
+ #: ../classes/visitor-conditions.php:174
2239
  msgid "contains"
2240
  msgstr ""
2241
 
2242
+ #: ../classes/visitor-conditions.php:175
2243
  msgid "starts with"
2244
  msgstr ""
2245
 
2246
+ #: ../classes/visitor-conditions.php:176
2247
  msgid "ends with"
2248
  msgstr ""
2249
 
2250
+ #: ../classes/visitor-conditions.php:177
2251
  msgid "matches"
2252
  msgstr ""
2253
 
2254
+ #: ../classes/visitor-conditions.php:178
2255
  msgid "matches regex"
2256
  msgstr ""
2257
 
2258
+ #: ../classes/visitor-conditions.php:179
2259
  msgid "does not contain"
2260
  msgstr ""
2261
 
2262
+ #: ../classes/visitor-conditions.php:180
2263
  msgid "does not start with"
2264
  msgstr ""
2265
 
2266
+ #: ../classes/visitor-conditions.php:181
2267
  msgid "does not end with"
2268
  msgstr ""
2269
 
2270
+ #: ../classes/visitor-conditions.php:182
2271
  msgid "does not match"
2272
  msgstr ""
2273
 
2274
+ #: ../classes/visitor-conditions.php:183
2275
  msgid "does not match regex"
2276
  msgstr ""
2277
 
2365
  msgid "allow ads in secondary queries"
2366
  msgstr ""
2367
 
2368
+ #: ../modules/ad-blocker/admin/admin.php:133
2369
  msgid "The asset folder was rebuilt successfully"
2370
  msgstr ""
2371
 
2372
+ #: ../modules/ad-blocker/admin/admin.php:258
2373
  msgid "Ad blocker fix"
2374
  msgstr ""
2375
 
2376
+ #: ../modules/ad-blocker/admin/admin.php:297
2377
  msgid "There is no writable upload folder"
2378
  msgstr ""
2379
 
2380
+ #: ../modules/ad-blocker/admin/admin.php:319
2381
  #, php-format
2382
  msgid "Unable to rename \"%s\" directory"
2383
  msgstr ""
2384
 
2385
+ #: ../modules/ad-blocker/admin/admin.php:334 ../modules/ad-blocker/admin/admin.
2386
+ #: php:347 ../modules/ad-blocker/admin/admin.php:364
2387
  #, php-format
2388
  msgid "Unable to copy assets to the \"%s\" directory"
2389
  msgstr ""
2390
 
2391
+ #: ../modules/ad-blocker/admin/admin.php:392 ../modules/ad-blocker/admin/admin.
2392
+ #: php:401
2393
  #, php-format
2394
  msgid "We do not have direct write access to the \"%s\" directory"
2395
  msgstr ""
2396
 
2397
+ #: ../modules/ad-blocker/admin/admin.php:410
2398
  msgid "There are no assets to copy"
2399
  msgstr ""
2400
 
2401
+ #: ../modules/ad-blocker/admin/admin.php:466
2402
  #, php-format
2403
  msgid ""
2404
  "Unable to create \"%s\" directory. Is its parent directory writable by the "
2405
  "server?"
2406
  msgstr ""
2407
 
2408
+ #: ../modules/ad-blocker/admin/admin.php:477
2409
  #, php-format
2410
  msgid "Unable to copy files to %s"
2411
  msgstr ""
2412
 
2413
+ #: ../modules/ad-blocker/admin/admin.php:544
2414
  msgid ""
2415
  "Prevents ad block software from breaking your website when blocking asset "
2416
  "files (.js, .css)."
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webzunft
3
  Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
4
  Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
5
  Requires at least: WP 4.2, PHP 5.3
6
- Tested up to: 4.4.1
7
- Stable tag: 1.6.17
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -69,17 +69,18 @@ global conditions
69
 
70
  = visitor conditions =
71
 
72
- display ads by conditions based on the visitor
73
 
74
  * display or hide ads for mobile visitors
75
  * display or hide ads for logged in visitors
76
  * hide all ads from logged in users based on their role
77
  * advanced visitor conditions: previous visited url (referrer), user capability, browser language, browser and device, url parameters included in [Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/)
 
78
  * display ads by exact browser width with the [Responsive add-on](https://wpadvancedads.com/add-ons/responsive-ads/)
79
 
80
  = ad injection | placements =
81
 
82
- Placements to inject ads in pre-defined positions in your theme and content:
83
 
84
  * ads after any given paragraph or headline in the post content
85
  * ads at the top of the post content
@@ -120,11 +121,12 @@ You can also use it to add additional ad network tags into header or footer of y
120
 
121
  Learn more on the [plugin homepage](https://wpadvancedads.com).
122
 
123
- Localizations: English, German, Dutch, Italian, Portuguese
124
 
125
  > <strong>Add-Ons</strong>
126
  >
127
  > * [Advanced Ads Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/) – powerful tools for ad optimizations: cache-busting, more placements, etc.
 
128
  > * [Tracking](https://wpadvancedads.com/add-ons/tracking/) – ad tracking and statistics
129
  > * [Responsive Ads](https://wpadvancedads.com/add-ons/responsive-ads/) – create mobile ads or ads for specific browser sizes
130
  > * [Sticky Ads](https://wpadvancedads.com/sticky-ads/demo/) – increase click rates with fixed, sticky, and anchor ads
@@ -193,6 +195,13 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
193
 
194
  == Changelog ==
195
 
 
 
 
 
 
 
 
196
  = 1.6.17 =
197
 
198
  * asking nicely for a [review on wordpress.org](https://wordpress.org/support/view/plugin-reviews/advanced-ads#postform)
@@ -282,208 +291,6 @@ Please [share your ideas](https://wpadvancedads.com/advanced-ads-1-6-14/) about
282
  * added check for conflicting plugins
283
  * allow a higher number of visible ads in a group if more are existing
284
 
285
- = 1.6.9.4 =
286
-
287
- * last settings tab is now opened again after being saved
288
- * exchanged text domain constants with string to match wp.org translate criteria
289
-
290
- = 1.6.9.3 =
291
-
292
- * order placement list by slug (which normally equals name)
293
- * updated Autoptimize message. If you use the Autoptimize plugin then check out the Autoptimize-Support in [Advanced Ads Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/)
294
- * unquote json request
295
- * added missing advertisement image for AdBlock check
296
- * added `advanced-ads-can-inject-into-content-` hook to check if individual placements can be injected into the content
297
-
298
- = 1.6.9.2 =
299
-
300
- * small adjustment to make cache-busting from [Advanced Ads Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/) compatible with [Sticky Ads](https://wpadvancedads.com/add-ons/sticky-ads/)
301
-
302
- = 1.6.9.1 =
303
-
304
- * fixed AdBlocker check on Support page
305
- * display Advanced Ads notices on Support page
306
-
307
- = 1.6.9 =
308
-
309
- *features*
310
-
311
- * add AdSense Page-Level ads code globally
312
- * added hours and minutes to expiry date
313
- * allow to set content priority to negative value
314
- * added checks for main issues to the Support page
315
- * added check for AdBlocker to all Advanced Ads pages in the dashboard
316
-
317
- *fixes and maintenance*
318
-
319
- * don’t display error message if not on archive page
320
- * fixed issue with placement tooltips not showing up
321
- * optimized content injection code
322
- * added collapsed field for advanced placement options
323
- * fix "support email sent" message showing all the time
324
- * allow JSON encoded arguments for ajax callback
325
- * make conditions case insensitive and binary safe
326
- * renamed some classes belonging to AdSense module
327
- * updated composer
328
- * display warning on AdSense settings page if publisher ID is missing
329
- * optimized support form layout
330
- * added can-display check + filter for placements
331
-
332
- = 1.6.8.3 =
333
-
334
- * Hoe vet is dat!? – added Dutch translation
335
- * fix selecting placement type in IE 11
336
- * fix errors with content injection when mbstring extension is missing on the server
337
-
338
- = 1.6.8.2 =
339
-
340
- * added introduction page with first steps
341
- * optimized error handling in placement form
342
- * added option to remove the public id from widgets completely
343
- * rewritten dismiss buttons of notices based on new WP standard
344
-
345
- = 1.6.8.1 =
346
-
347
- * added menu page to get support from within your dashboard
348
- * stricter control of ad group archives not being public
349
- * fix: content-injection requires more than one item per level for p-tags only
350
- * updated German translation
351
-
352
- = 1.6.8 =
353
-
354
- * added option to change the prefix of ids and classes in the frontend to prevent widgets from being ad-blocked
355
- * minor optimization to autocomplete feature of post display condition
356
- * minor changes to align with changes in WordPress 4.3
357
- * content-injection now detects wrappers around content up to the third level
358
-
359
- = 1.6.7.1 =
360
-
361
- * hotfix to prevent error message on empty content injection placements
362
-
363
- = 1.6.7 =
364
-
365
- *features*
366
-
367
- * allow to inject ads into content starting from bottom
368
- * prevent ad injection into lower-level paragraphs (e.g. into tables or containers)
369
- * hide ad widget when the content is empty
370
- * show post type or date when searching an individual post display condition
371
-
372
- *fixes and maintenance*
373
-
374
- * fix placement types images not showing up completely
375
- * warn if any used placement type is missing
376
- * added `advads-ad-allow-php` class to php-setting of plain text
377
- * added `advanced-ads-activate-advanced-js` filter to allow add-ons to attach advanced js file without bothering the user
378
- * updated German translation
379
-
380
- = 1.6.6.1 =
381
-
382
- * removed link to no-longer-existing manual page
383
- * the option to close internal notices now also hides update messages
384
- * fixed broken html on placement page
385
-
386
- = 1.6.6 =
387
-
388
- *features*
389
-
390
- * added images to placement form ui
391
- * allow to select item when creating a new placement
392
- * always display placement form if no placement exists
393
- * display shortcode and function for default placement type
394
- * display notice if license keys are invalid, expired, or expire soon
395
- * display error when AdSense Publisher ID is missing
396
- * log error message in case regular expression is used wrong in visitor conditions
397
-
398
- *fixes and under-the-hood*
399
-
400
- * extended advanced js by move and fix_element function
401
- * minified advanced js file
402
- * added `advanced-ads-sanitize-settings` filter to sanitize plugin options
403
- * added `advanced-ads-can-inject-into-content` filter
404
- * added `advanced-ads-dashboard-screens` filter
405
- * removed wrong output on Responsive settings
406
- * store jquery ui css locally
407
- * fixed saving empty placement options
408
- * fixed free add-on notice showing up twice
409
- * fixed error message in ads list when AdSense ad is empty
410
- * fixed saving quick edit on ad list returning wrong columns
411
-
412
- = 1.6.5 =
413
-
414
- * removed "use strict" from js
415
- * hide error message caused by third party code that uses post_updated_messages filter wrong
416
- * hide licenses tab on non-main-blogs on multisites
417
- * made plugin name untranslatable
418
-
419
- = 1.6.4.1 =
420
-
421
- * fixed free-add-on notice not closing forever
422
-
423
- = 1.6.4 =
424
-
425
- COOL: newsletter subscribers now receive 2 free add-ons
426
-
427
- * changed newsletter subscription text
428
- * display description of visitor conditions, if selected
429
- * minor fix to display conditions ui
430
- * updated German translation
431
-
432
- = 1.6.3 =
433
-
434
- * added visitor condition to check for logged in visitors
435
- * fixed display conditions buttons
436
- * updated German translation
437
-
438
- = 1.6.2.1 =
439
-
440
- * added missing files to repository
441
-
442
- = 1.6.2 =
443
-
444
- * display dashboard widget only to authors and higher roles
445
- * include admin javascript file only on pages which need it
446
- * no need to save AdSense publisher ID separately anymore
447
- * added warning if AdSense publisher ID has wrong format
448
- * list more than 10 ads from a group on the group overview page
449
- * active settings and conditions are now blue
450
- * clear object cache when saving an ad (thanks to pete-sch)
451
-
452
- = 1.6.1 =
453
-
454
- * fix secondary query condition (this was revered in 1.6)
455
- * fix wrong constant displaying errors on add-on license page
456
- * display license expire date for add-ons
457
- * prevent accidental removal of license keys
458
-
459
- = 1.6 =
460
-
461
- THIS IS A MAJOR UPDATE, PLEASE HELP ME WITH YOUR BUG REPORTS
462
-
463
- [Update post](https://wpadvancedads.com/advanced-ads-1-6)
464
-
465
- Changes you can test:
466
-
467
- * fixed ordered ad groups displaying ads with 0 ad weight
468
- * fixed order of ad groups to deliver ad with highest weight first
469
- * added option to allow ad injections on archive pages and outside the loop
470
- * minor layout fix for update button after selecting rich content ad type
471
- * fixed timestamp issues using GMT only now (might shift old ad expiry timestamps by timezone offset)
472
- * load adsense script with every ad request
473
-
474
- Changes under the hood:
475
-
476
- * allow to cache groups when persistend object cache is available
477
- * pass placement options to underlying ad/ group
478
- * allow to exchange loaded ad ids for ajax callback
479
- * fix override option for ad select
480
- * wp query is now prepared as ad argument on selection
481
- * moved query based display conditions to own module
482
- * fixed ajax request parser
483
- * actually serve placement on injection (and allow to use placement arguments)
484
- * `advanced-ads-ajax-ad-select-init` action when ad is going to be selected by ajax call
485
- * provide action when plugin was loaded
486
-
487
  [Changelog Archive](http://wpadvancedads.com/codex/changelog-archive/)
488
 
489
  == Upgrade Notice ==
3
  Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
4
  Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
5
  Requires at least: WP 4.2, PHP 5.3
6
+ Tested up to: 4.4.2
7
+ Stable tag: 1.6.17.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
69
 
70
  = visitor conditions =
71
 
72
+ display ads by conditions based on the visitor. [List of all visitor conditions](https://wpadvancedads.com/manual/visitor-conditions/)
73
 
74
  * display or hide ads for mobile visitors
75
  * display or hide ads for logged in visitors
76
  * hide all ads from logged in users based on their role
77
  * advanced visitor conditions: previous visited url (referrer), user capability, browser language, browser and device, url parameters included in [Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/)
78
+ * display ads by geo location with the [Geo Targeting add-on](https://wpadvancedads.com/add-ons/geo-targeting/)
79
  * display ads by exact browser width with the [Responsive add-on](https://wpadvancedads.com/add-ons/responsive-ads/)
80
 
81
  = ad injection | placements =
82
 
83
+ Placements to inject ads in pre-defined positions in your theme and content. [List of all placements](https://wpadvancedads.com/manual/placements/)
84
 
85
  * ads after any given paragraph or headline in the post content
86
  * ads at the top of the post content
121
 
122
  Learn more on the [plugin homepage](https://wpadvancedads.com).
123
 
124
+ Localizations: English, German, Spanish, Dutch, Italian, Portuguese
125
 
126
  > <strong>Add-Ons</strong>
127
  >
128
  > * [Advanced Ads Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/) – powerful tools for ad optimizations: cache-busting, more placements, etc.
129
+ > * [Geo Targeting](https://wpadvancedads.com/add-ons/geo-targeting/) – display ads based on geo location of the visitor
130
  > * [Tracking](https://wpadvancedads.com/add-ons/tracking/) – ad tracking and statistics
131
  > * [Responsive Ads](https://wpadvancedads.com/add-ons/responsive-ads/) – create mobile ads or ads for specific browser sizes
132
  > * [Sticky Ads](https://wpadvancedads.com/sticky-ads/demo/) – increase click rates with fixed, sticky, and anchor ads
195
 
196
  == Changelog ==
197
 
198
+ = 1.6.17.1 =
199
+
200
+ * fixed complex Visitor Condition chains
201
+ * added link to Visitor Conditions manual
202
+ * added Spanish translation
203
+ * fixed expiry time gaps
204
+
205
  = 1.6.17 =
206
 
207
  * asking nicely for a [review on wordpress.org](https://wordpress.org/support/view/plugin-reviews/advanced-ads#postform)
291
  * added check for conflicting plugins
292
  * allow a higher number of visible ads in a group if more are existing
293
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  [Changelog Archive](http://wpadvancedads.com/codex/changelog-archive/)
295
 
296
  == Upgrade Notice ==