Advanced Ads - Version 1.7.11

Version Description

  • added filter to change General display conditions set
  • set ADVANCED_ADS_AD_DEBUG_FOR_ADMIN_ONLY in order to allow only admins to see ad debug mode
  • introduced advanced-ads-output-final filter
  • only check once per day for add-on updates
  • fixed one support link
  • fixed multiple add-on update checks
  • fixed error message when ad group is empty
Download this release

Release Info

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

Code changes from version 1.7.10 to 1.7.11

admin/class-advanced-ads-admin.php CHANGED
@@ -619,6 +619,13 @@ class Advanced_Ads_Admin {
619
 
620
  // setup the updater
621
  if( $license_key ){
 
 
 
 
 
 
 
622
  new EDD_SL_Plugin_Updater( ADVADS_URL, $_add_on['path'], array(
623
  'version' => $_add_on['version'],
624
  'license' => $license_key,
@@ -630,6 +637,14 @@ class Advanced_Ads_Admin {
630
  }
631
  }
632
 
 
 
 
 
 
 
 
 
633
  /**
634
  * add links to the plugins list
635
  *
619
 
620
  // setup the updater
621
  if( $license_key ){
622
+
623
+ // register filter to set EDD transient to 86,400 seconds (day) instead of 3,600 (hours)
624
+ $slug = basename( $_add_on['path'], '.php' );
625
+ $transient_key = md5( serialize( $slug . $license_key ) );
626
+
627
+ add_filter( 'expiration_of_transient_' . $transient_key, array( $this, 'set_expiration_of_update_transient' ) );
628
+
629
  new EDD_SL_Plugin_Updater( ADVADS_URL, $_add_on['path'], array(
630
  'version' => $_add_on['version'],
631
  'license' => $license_key,
637
  }
638
  }
639
 
640
+ /**
641
+ * set the expiration of the updater transient key to 1 day instead of 1 hour to prevent too many update checks
642
+ */
643
+ public function set_expiration_of_update_transient( $expiration ){
644
+
645
+ return 86400;
646
+ }
647
+
648
  /**
649
  * add links to the plugins list
650
  *
admin/views/support.php CHANGED
@@ -48,7 +48,7 @@
48
  <ul>
49
  <li><a href="<?php echo ADVADS_URL; ?>manual/ads-not-showing-up/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'Ads not showing up', 'advanced-ads' ); ?></a></li>
50
  <li><a href="<?php echo ADVADS_URL; ?>manual-category/purchase-licenses/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'Purchase & Licenses', 'advanced-ads' ); ?></a></li>
51
- <li><a href="<?php echo ADVADS_URL; ?>manual-category/troubleshooting/support/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'General Issues', 'advanced-ads' ); ?></a></li>
52
  <li><a href="<?php echo ADVADS_URL; ?>manual-category/add-on-issues/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'Issues with Add-Ons', 'advanced-ads' ); ?></a></li>
53
  </ul>
54
  <p><?php _e( 'Use the following form to search for solutions in the manual on wpadvancedads.com', 'advanced-ads' ); ?></p>
48
  <ul>
49
  <li><a href="<?php echo ADVADS_URL; ?>manual/ads-not-showing-up/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'Ads not showing up', 'advanced-ads' ); ?></a></li>
50
  <li><a href="<?php echo ADVADS_URL; ?>manual-category/purchase-licenses/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'Purchase & Licenses', 'advanced-ads' ); ?></a></li>
51
+ <li><a href="<?php echo ADVADS_URL; ?>manual-category/troubleshooting/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'General Issues', 'advanced-ads' ); ?></a></li>
52
  <li><a href="<?php echo ADVADS_URL; ?>manual-category/add-on-issues/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support"><?php _e( 'Issues with Add-Ons', 'advanced-ads' ); ?></a></li>
53
  </ul>
54
  <p><?php _e( 'Use the following form to search for solutions in the manual on wpadvancedads.com', 'advanced-ads' ); ?></p>
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.7.10
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
- define( 'ADVADS_VERSION', '1.7.10' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.7.11
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
+ define( 'ADVADS_VERSION', '1.7.11' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
classes/EDD_SL_Plugin_Updater.php CHANGED
@@ -10,7 +10,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
10
  * Allows plugins to use their own update API.
11
  *
12
  * @author Pippin Williamson
13
- * @version 1.6.5
14
  */
15
  class EDD_SL_Plugin_Updater {
16
 
@@ -20,6 +20,7 @@ class EDD_SL_Plugin_Updater {
20
  private $slug = '';
21
  private $version = '';
22
  private $wp_override = false;
 
23
 
24
  /**
25
  * Class constructor.
@@ -42,6 +43,8 @@ class EDD_SL_Plugin_Updater {
42
  $this->version = $_api_data['version'];
43
  $this->wp_override = isset( $_api_data['wp_override'] ) ? (bool) $_api_data['wp_override'] : false;
44
 
 
 
45
  $edd_plugin_data[ $this->slug ] = $this->api_data;
46
 
47
  // Set up hooks.
@@ -58,7 +61,7 @@ class EDD_SL_Plugin_Updater {
58
  */
59
  public function init() {
60
 
61
- add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
62
  add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
63
  remove_action( 'after_plugin_row_' . $this->name, 'wp_plugin_update_row', 10, 2 );
64
  add_action( 'after_plugin_row_' . $this->name, array( $this, 'show_update_notification' ), 10, 2 );
@@ -95,7 +98,13 @@ class EDD_SL_Plugin_Updater {
95
  return $_transient_data;
96
  }
97
 
98
- $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
 
 
 
 
 
 
99
 
100
  if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) {
101
 
@@ -146,21 +155,19 @@ class EDD_SL_Plugin_Updater {
146
 
147
  if ( empty( $update_cache->response ) || empty( $update_cache->response[ $this->name ] ) ) {
148
 
149
- $cache_key = md5( 'edd_plugin_' . sanitize_key( $this->name ) . '_version_info' );
150
- $version_info = get_transient( $cache_key );
151
-
152
- if( false === $version_info ) {
153
 
 
154
  $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
155
 
156
- set_transient( $cache_key, $version_info, 3600 );
157
  }
158
 
159
- if( ! is_object( $version_info ) ) {
160
  return;
161
  }
162
 
163
- if( version_compare( $this->version, $version_info->new_version, '<' ) ) {
164
 
165
  $update_cache->response[ $this->name ] = $version_info;
166
 
@@ -251,7 +258,7 @@ class EDD_SL_Plugin_Updater {
251
  )
252
  );
253
 
254
- $cache_key = 'edd_api_request_' . substr( md5( serialize( $this->slug ) ), 0, 15 );
255
 
256
  //Get the transient where we store the api request for this plugin for 24 hours
257
  $edd_api_request_transient = get_site_transient( $cache_key );
@@ -320,7 +327,8 @@ class EDD_SL_Plugin_Updater {
320
  'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false,
321
  'slug' => $data['slug'],
322
  'author' => $data['author'],
323
- 'url' => home_url()
 
324
  );
325
 
326
  $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
10
  * Allows plugins to use their own update API.
11
  *
12
  * @author Pippin Williamson
13
+ * @version 1.6.6
14
  */
15
  class EDD_SL_Plugin_Updater {
16
 
20
  private $slug = '';
21
  private $version = '';
22
  private $wp_override = false;
23
+ private $cache_key = '';
24
 
25
  /**
26
  * Class constructor.
43
  $this->version = $_api_data['version'];
44
  $this->wp_override = isset( $_api_data['wp_override'] ) ? (bool) $_api_data['wp_override'] : false;
45
 
46
+ $this->cache_key = md5( serialize( $this->slug . $this->api_data['license'] ) );
47
+
48
  $edd_plugin_data[ $this->slug ] = $this->api_data;
49
 
50
  // Set up hooks.
61
  */
62
  public function init() {
63
 
64
+ add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ), 10 );
65
  add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
66
  remove_action( 'after_plugin_row_' . $this->name, 'wp_plugin_update_row', 10, 2 );
67
  add_action( 'after_plugin_row_' . $this->name, array( $this, 'show_update_notification' ), 10, 2 );
98
  return $_transient_data;
99
  }
100
 
101
+ $version_info = get_transient( $this->cache_key );
102
+
103
+ if ( false === $version_info ) {
104
+ $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
105
+
106
+ set_transient( $this->cache_key, $version_info, 3600 );
107
+ }
108
 
109
  if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) {
110
 
155
 
156
  if ( empty( $update_cache->response ) || empty( $update_cache->response[ $this->name ] ) ) {
157
 
158
+ $version_info = get_transient( $this->cache_key );
 
 
 
159
 
160
+ if ( false === $version_info ) {
161
  $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
162
 
163
+ set_transient( $this->cache_key, $version_info, 3600 );
164
  }
165
 
166
+ if ( ! is_object( $version_info ) ) {
167
  return;
168
  }
169
 
170
+ if ( version_compare( $this->version, $version_info->new_version, '<' ) ) {
171
 
172
  $update_cache->response[ $this->name ] = $version_info;
173
 
258
  )
259
  );
260
 
261
+ $cache_key = 'edd_api_request_' . md5( serialize( $this->slug . $this->api_data->license ) );
262
 
263
  //Get the transient where we store the api request for this plugin for 24 hours
264
  $edd_api_request_transient = get_site_transient( $cache_key );
327
  'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false,
328
  'slug' => $data['slug'],
329
  'author' => $data['author'],
330
+ 'url' => home_url(),
331
+ 'beta' => isset( $data['beta'] ) ? $data['beta'] : false,
332
  );
333
 
334
  $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
classes/ad-debug.php CHANGED
@@ -28,6 +28,12 @@ class Advanced_Ads_Ad_Debug {
28
 
29
  $content = array();
30
 
 
 
 
 
 
 
31
  // compare current wp_query with global wp_main_query
32
  if ( ! $wp_query->is_main_query() ) {
33
  $content[] = sprintf( '<span style="color: red;">%s</span>', __( 'Current query is not identical to main query.', 'advanced-ads' ) );
@@ -35,25 +41,18 @@ class Advanced_Ads_Ad_Debug {
35
  $content[] = $this->build_query_diff_table();
36
  }
37
 
 
 
 
38
  // compare current post with global post
39
  if ( $wp_query->post !== $post ){
40
  $error = sprintf( '<span style="color: red;">%s</span>', __( 'Current post is not identical to main post.', 'advanced-ads' ) );
41
- // output differences
42
- if ( isset( $post->post_title ) && $post->ID ) {
43
- $error .= sprintf( '<br />%s: %s, %s: %s', __( 'current post', 'advanced-ads' ), $post->post_title, 'ID', $post->ID );
44
- }
45
  if ( isset( $wp_query->post->post_title ) && $wp_query->post->ID ) {
46
  $error .= sprintf( '<br />%s: %s, %s: %s', __( 'main post', 'advanced-ads' ), $wp_query->post->post_title, 'ID', $wp_query->post->ID );
47
  }
48
  $content[] = $error;
49
  }
50
 
51
- if ( $ad->can_display( array( 'ignore_debugmode' => true ) ) ) {
52
- $content[] = __( 'The ad is displayed on the page', 'advanced-ads' );
53
- } else {
54
- $content[] = __( 'The ad is not displayed on the page', 'advanced-ads' );
55
- }
56
-
57
  $content[] = $this->build_call_chain( $ad );
58
  $content[] = $this->build_display_conditions_table( $ad );
59
  $content[] = $this->build_visitor_conditions_table( $ad );
28
 
29
  $content = array();
30
 
31
+ if ( $ad->can_display( array( 'ignore_debugmode' => true ) ) ) {
32
+ $content[] = __( 'The ad is displayed on the page', 'advanced-ads' );
33
+ } else {
34
+ $content[] = __( 'The ad is not displayed on the page', 'advanced-ads' );
35
+ }
36
+
37
  // compare current wp_query with global wp_main_query
38
  if ( ! $wp_query->is_main_query() ) {
39
  $content[] = sprintf( '<span style="color: red;">%s</span>', __( 'Current query is not identical to main query.', 'advanced-ads' ) );
41
  $content[] = $this->build_query_diff_table();
42
  }
43
 
44
+ if ( isset( $post->post_title ) && isset( $post->ID ) ) {
45
+ $content[] = sprintf( '%s: %s, %s: %s', __( 'current post', 'advanced-ads' ), $post->post_title, 'ID', $post->ID );
46
+ }
47
  // compare current post with global post
48
  if ( $wp_query->post !== $post ){
49
  $error = sprintf( '<span style="color: red;">%s</span>', __( 'Current post is not identical to main post.', 'advanced-ads' ) );
 
 
 
 
50
  if ( isset( $wp_query->post->post_title ) && $wp_query->post->ID ) {
51
  $error .= sprintf( '<br />%s: %s, %s: %s', __( 'main post', 'advanced-ads' ), $wp_query->post->post_title, 'ID', $wp_query->post->ID );
52
  }
53
  $content[] = $error;
54
  }
55
 
 
 
 
 
 
 
56
  $content[] = $this->build_call_chain( $ad );
57
  $content[] = $this->build_display_conditions_table( $ad );
58
  $content[] = $this->build_visitor_conditions_table( $ad );
classes/ad.php CHANGED
@@ -263,7 +263,10 @@ class Advanced_Ads_Ad {
263
  $output_options['global_output'] = $this->global_output = isset( $output_options['global_output'] ) ? $output_options['global_output'] : $this->global_output;
264
 
265
  // switch between normal and debug mode
266
- if( isset( $this->output['debugmode'] ) ){
 
 
 
267
  require_once __DIR__ . '/ad-debug.php';
268
  $debug = new Advanced_Ads_Ad_Debug;
269
  return $debug->prepare_debug_output( $this );
@@ -284,7 +287,7 @@ class Advanced_Ads_Ad {
284
  // action when output is created
285
  do_action( 'advanced-ads-output', $this, $output, $output_options );
286
 
287
- return $output;
288
  }
289
 
290
  /**
@@ -296,16 +299,16 @@ class Advanced_Ads_Ad {
296
  */
297
  public function can_display( $check_options = array() ) {
298
  $check_options = wp_parse_args( $check_options, array( 'passive_cache_busting' => false, 'ignore_debugmode' => false ) );
299
-
300
- // force ad display if debug mode is enabled
301
- if( isset( $this->output['debugmode'] ) && ! $check_options['ignore_debugmode'] ) {
302
- return true;
303
- }
304
 
305
  // prevent ad to show up through wp_head, if this is not a header placement
306
  if( doing_action( 'wp_head' ) && isset( $this->options['placement_type'] ) && 'header' !== $this->options['placement_type'] ){
307
  return false;
308
  }
 
 
 
 
 
309
 
310
  if ( ! $check_options['passive_cache_busting'] ) {
311
  // don’t display ads that are not published or private for users not logged in
263
  $output_options['global_output'] = $this->global_output = isset( $output_options['global_output'] ) ? $output_options['global_output'] : $this->global_output;
264
 
265
  // switch between normal and debug mode
266
+ // check if debug output should only be displayed to admins
267
+ $user_can_manage_ads = current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options') );
268
+ if( isset( $this->output['debugmode'] )
269
+ && ( $user_can_manage_ads || ( ! $user_can_manage_ads && ! defined('ADVANCED_ADS_AD_DEBUG_FOR_ADMIN_ONLY') ) ) ){
270
  require_once __DIR__ . '/ad-debug.php';
271
  $debug = new Advanced_Ads_Ad_Debug;
272
  return $debug->prepare_debug_output( $this );
287
  // action when output is created
288
  do_action( 'advanced-ads-output', $this, $output, $output_options );
289
 
290
+ return apply_filters( 'advanced-ads-output-final', $output, $this, $output_options );
291
  }
292
 
293
  /**
299
  */
300
  public function can_display( $check_options = array() ) {
301
  $check_options = wp_parse_args( $check_options, array( 'passive_cache_busting' => false, 'ignore_debugmode' => false ) );
 
 
 
 
 
302
 
303
  // prevent ad to show up through wp_head, if this is not a header placement
304
  if( doing_action( 'wp_head' ) && isset( $this->options['placement_type'] ) && 'header' !== $this->options['placement_type'] ){
305
  return false;
306
  }
307
+
308
+ // force ad display if debug mode is enabled
309
+ if( isset( $this->output['debugmode'] ) && ! $check_options['ignore_debugmode'] ) {
310
+ return true;
311
+ }
312
 
313
  if ( ! $check_options['passive_cache_busting'] ) {
314
  // don’t display ads that are not published or private for users not logged in
classes/ad_group.php CHANGED
@@ -167,7 +167,7 @@ class Advanced_Ads_Group {
167
  public function output( $ordered_ad_ids = false ) {
168
  // if $ordered_ad_ids was not passed to the function, load it
169
  $ordered_ad_ids = ( $ordered_ad_ids === false ) ? $this->get_ordered_ad_ids() : $ordered_ad_ids;
170
- if ( $ordered_ad_ids === null ) {
171
  return;
172
  }
173
 
@@ -181,18 +181,20 @@ class Advanced_Ads_Group {
181
  // the Advanced_Ads_Ad obj can access this info
182
  $this->ad_args['group_info'] = array( 'refresh_enabled' => ! empty( $this->options['refresh']['enabled'] ), 'type' => $this->type );
183
 
184
- foreach ( $ordered_ad_ids as $_ad_id ) {
185
- $this->ad_args['group_info']['ads_displayed'] = $ads_displayed;
 
186
 
187
- // load the ad object
188
- $ad = $ad_select->get_ad_by_method( $_ad_id, Advanced_Ads_Select::AD, $this->ad_args );
189
 
190
- if ( $ad !== null ) {
191
- $output[] = $ad;
192
- $ads_displayed++;
193
- // break the loop when maximum ads are reached
194
- if( $ads_displayed === $ad_count ) {
195
- break;
 
196
  }
197
  }
198
  }
@@ -215,13 +217,13 @@ class Advanced_Ads_Group {
215
  */
216
  public function get_ordered_ad_ids() {
217
  if ( ! $this->id ) {
218
- return;
219
  }
220
 
221
  // load ads
222
  $ads = $this->load_all_ads();
223
- if ( $ads === array() ) {
224
- return;
225
  }
226
 
227
  // get ad weights serving as an order here
167
  public function output( $ordered_ad_ids = false ) {
168
  // if $ordered_ad_ids was not passed to the function, load it
169
  $ordered_ad_ids = ( $ordered_ad_ids === false ) ? $this->get_ordered_ad_ids() : $ordered_ad_ids;
170
+ if ( $ordered_ad_ids === null ) {
171
  return;
172
  }
173
 
181
  // the Advanced_Ads_Ad obj can access this info
182
  $this->ad_args['group_info'] = array( 'refresh_enabled' => ! empty( $this->options['refresh']['enabled'] ), 'type' => $this->type );
183
 
184
+ if( is_array( $ordered_ad_ids ) ){
185
+ foreach ( $ordered_ad_ids as $_ad_id ) {
186
+ $this->ad_args['group_info']['ads_displayed'] = $ads_displayed;
187
 
188
+ // load the ad object
189
+ $ad = $ad_select->get_ad_by_method( $_ad_id, Advanced_Ads_Select::AD, $this->ad_args );
190
 
191
+ if ( $ad !== null ) {
192
+ $output[] = $ad;
193
+ $ads_displayed++;
194
+ // break the loop when maximum ads are reached
195
+ if( $ads_displayed === $ad_count ) {
196
+ break;
197
+ }
198
  }
199
  }
200
  }
217
  */
218
  public function get_ordered_ad_ids() {
219
  if ( ! $this->id ) {
220
+ return false;
221
  }
222
 
223
  // load ads
224
  $ads = $this->load_all_ads();
225
+ if ( ! is_array( $ads ) || $ads === array() ) {
226
+ return false;
227
  }
228
 
229
  // get ad weights serving as an order here
classes/ad_type_image.php CHANGED
@@ -64,7 +64,7 @@ class Advanced_Ads_Ad_Type_Image extends Advanced_Ads_Ad_Type_Abstract{
64
  if( ! defined( 'AAT_VERSION' )) : ?>
65
  <p><label for="advads-url"><?php _e( 'url', ADVADS_SLUG ); ?></label><br/>
66
  <input type="url" name="advanced_ad[url]" id="advads-url" value="<?php echo $url; ?>"/></p>
67
- <p><?php printf(__( 'Pro: Open this url in a new window and track impressions and clicks with the <a href="%s" target="_blank">Tracking add-on</a>', ADVADS_SLUG ), ADVADS_URL . 'add-ons/tracking/#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-image-tracking'); ?></p>
68
  <?php endif;
69
  }
70
 
64
  if( ! defined( 'AAT_VERSION' )) : ?>
65
  <p><label for="advads-url"><?php _e( 'url', ADVADS_SLUG ); ?></label><br/>
66
  <input type="url" name="advanced_ad[url]" id="advads-url" value="<?php echo $url; ?>"/></p>
67
+ <p><?php printf(__( 'Open this url in a new window and track impressions and clicks with the <a href="%s" target="_blank">Tracking add-on</a>', ADVADS_SLUG ), ADVADS_URL . 'add-ons/tracking/#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-image-tracking'); ?></p>
68
  <?php endif;
69
  }
70
 
classes/display-conditions.php CHANGED
@@ -454,7 +454,7 @@ class Advanced_Ads_Display_Conditions {
454
  *
455
  */
456
  static function general_conditions() {
457
- return $conditions = array(
458
  'is_front_page' => array(
459
  'label' => __('Home Page', 'advanced-ads'),
460
  'description' => __('show on Home page', 'advanced-ads'),
@@ -495,7 +495,7 @@ class Advanced_Ads_Display_Conditions {
495
  'description' => __('allow ads in Feed', 'advanced-ads'),
496
  'type' => 'radio',
497
  )
498
- );
499
  }
500
 
501
  /**
@@ -698,6 +698,11 @@ class Advanced_Ads_Display_Conditions {
698
  return true;
699
  }
700
 
 
 
 
 
 
701
  // skip checks, if general conditions are unchanged
702
  if( self::$default_general_keys === $options['value'] ){
703
  return true;
454
  *
455
  */
456
  static function general_conditions() {
457
+ return $conditions = apply_filters( 'advanced-ads-display-conditions-general', array(
458
  'is_front_page' => array(
459
  'label' => __('Home Page', 'advanced-ads'),
460
  'description' => __('show on Home page', 'advanced-ads'),
495
  'description' => __('allow ads in Feed', 'advanced-ads'),
496
  'type' => 'radio',
497
  )
498
+ ) );
499
  }
500
 
501
  /**
698
  return true;
699
  }
700
 
701
+ // check general conditions added by other add-ons
702
+ if ( null !== ( $result = apply_filters( 'advanced-ads-display-conditions-check-general', null, $options['value'] ) ) ) {
703
+ return $result;
704
+ }
705
+
706
  // skip checks, if general conditions are unchanged
707
  if( self::$default_general_keys === $options['value'] ){
708
  return true;
languages/advanced-ads-es_ES.mo CHANGED
Binary file
languages/advanced-ads-es_ES.po CHANGED
@@ -1,2922 +1,2901 @@
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: Sun May 15 2016 18:05:03 GMT+0200 (CEST)\n"
7
- "Last-Translator: admin <post@webzunft.de>\n"
8
- "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
9
- "Language: Spanish (Spain)\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: ../\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Loco-Target-Locale: es_ES"
24
-
25
- #: ../admin/class-advanced-ads-admin.php:215 ../classes/display-conditions.php:
26
- #: 171 ../classes/visitor-conditions.php:214
27
- msgid "or"
28
- msgstr ""
29
-
30
- #: ../admin/class-advanced-ads-admin.php:216 ../admin/views/ad-display-metabox.
31
- #: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
32
- #: php:171 ../classes/visitor-conditions.php:214
33
- msgid "and"
34
- msgstr ""
35
-
36
- #: ../admin/class-advanced-ads-admin.php:217
37
- msgid "After which paragraph?"
38
- msgstr ""
39
-
40
- #: ../admin/class-advanced-ads-admin.php:430
41
- msgid "Please enter a message"
42
- msgstr ""
43
-
44
- #: ../admin/class-advanced-ads-admin.php:440
45
- #, php-format
46
- msgid "Email could NOT be sent. Please contact us directly at %s."
47
- msgstr ""
48
-
49
- #: ../admin/class-advanced-ads-admin.php:443
50
- msgid "Please enter a valid email address"
51
- msgstr ""
52
-
53
- #: ../admin/class-advanced-ads-admin.php:736 ../admin/class-advanced-ads-admin.
54
- #: php:747 ../admin/class-advanced-ads-admin.php:752 ../admin/views/ad-output-
55
- #: metabox.php:50
56
- msgid "Manual"
57
- msgstr ""
58
-
59
- #: ../admin/class-advanced-ads-admin.php:746
60
- msgid "Video"
61
- msgstr ""
62
-
63
- #: ../admin/class-advanced-ads-admin.php:1097
64
- msgid "Ad label"
65
- msgstr ""
66
-
67
- #: ../admin/class-advanced-ads-admin.php:1304
68
- msgid ""
69
- "If checked, the Advanced Ads Widget will not work with the fixed option of "
70
- "the <strong>Q2W3 Fixed Widget</strong> plugin."
71
- msgstr ""
72
-
73
- #: ../admin/class-advanced-ads-admin.php:1327
74
- #, php-format
75
- msgid ""
76
- "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
77
- "target=\"_blank\">Advanced Ads Pro</a>."
78
- msgstr ""
79
-
80
- #: ../admin/class-advanced-ads-admin.php:1339 ../public/class-advanced-ads.php:711
81
- msgctxt "label before ads"
82
- msgid "Advertisements"
83
- msgstr ""
84
-
85
- #: ../admin/class-advanced-ads-admin.php:1346
86
- msgid "Displayed above ads."
87
- msgstr ""
88
-
89
- #: ../admin/class-advanced-ads-admin.php:1766
90
- #, php-format
91
- msgid "time of %s"
92
- msgstr ""
93
-
94
- #: ../admin/class-advanced-ads-admin.php:1833
95
- msgid "License couldn’t be activated. Please try again later."
96
- msgstr ""
97
-
98
- #: ../admin/class-advanced-ads-admin.php:1845
99
- msgid "This is the bundle license key."
100
- msgstr ""
101
-
102
- #: ../admin/class-advanced-ads-admin.php:1846
103
- msgid "This is not the correct key for this add-on."
104
- msgstr ""
105
-
106
- #: ../admin/class-advanced-ads-admin.php:1847
107
- msgid "There are no activations left."
108
- msgstr ""
109
-
110
- #: ../admin/class-advanced-ads-admin.php:2114
111
- msgid "Add-Ons"
112
- msgstr ""
113
-
114
- #: ../admin/includes/class-overview-widgets.php:59
115
- msgid "Geo Targeting"
116
- msgstr ""
117
-
118
- #: ../admin/includes/class-overview-widgets.php:151
119
- #, php-format
120
- msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
121
- msgstr ""
122
-
123
- #: ../admin/includes/class-overview-widgets.php:211
124
- msgid "Target visitors by their geo location."
125
- msgstr ""
126
-
127
- #: ../admin/includes/class-overview-widgets.php:213
128
- msgid "Get the Geo Targeting add-on"
129
- msgstr ""
130
-
131
- #: ../admin/includes/class-overview-widgets.php:235
132
- msgid "optional background overlay"
133
- msgstr ""
134
-
135
- #: ../admin/includes/notices.php:79
136
- #, php-format
137
- msgid ""
138
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
139
- "image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
140
- "you! If you need my help then please visit the <a href=\"%1$s\" "
141
- "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
142
- "Review</h3><p>If you share my passion and find Advanced Ads useful then "
143
- "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
144
- "org</a>.</p><p><em>Thomas</em>"
145
- msgstr ""
146
-
147
- #: ../admin/includes/notices.php:85
148
- #, php-format
149
- msgid ""
150
- "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
151
- "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
152
- "disguise."
153
- msgstr ""
154
-
155
- #: ../admin/views/ad-display-metabox.php:6
156
- msgid "Set Display Conditions to allow or hide the ad on specific pages."
157
- msgstr ""
158
-
159
- #: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
160
- #: php:2
161
- #, php-format
162
- msgid ""
163
- "There might be a problem with layouts and scripts in your dashboard. Please "
164
- "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
165
- msgstr ""
166
-
167
- #: ../admin/views/ad-info-bottom.php:2
168
- msgctxt "wizard navigation"
169
- msgid "previous"
170
- msgstr ""
171
-
172
- #: ../admin/views/ad-info-bottom.php:3
173
- msgctxt "wizard navigation"
174
- msgid "save"
175
- msgstr ""
176
-
177
- #: ../admin/views/ad-info-bottom.php:4
178
- msgctxt "wizard navigation"
179
- msgid "next"
180
- msgstr ""
181
-
182
- #: ../admin/views/ad-info-top.php:4
183
- #, php-format
184
- msgid ""
185
- "Congratulations! Your ad is now visible in the frontend. You can adjust the "
186
- "placement options <a href=\"%s\">here</a>."
187
- msgstr ""
188
-
189
- #: ../admin/views/ad-info-top.php:5
190
- msgid "Where do you want to display the ad?"
191
- msgstr ""
192
-
193
- #: ../admin/views/ad-info-top.php:7
194
- msgid "Content"
195
- msgstr ""
196
-
197
- #: ../admin/views/ad-info-top.php:9
198
- msgid "Manage Sidebar"
199
- msgstr ""
200
-
201
- #: ../admin/views/ad-info-top.php:11
202
- msgid "Show Pro Places"
203
- msgstr ""
204
-
205
- #: ../admin/views/ad-info-top.php:14
206
- msgid "Show Sticky Places"
207
- msgstr ""
208
-
209
- #: ../admin/views/ad-info-top.php:17
210
- msgid "Show PopUp"
211
- msgstr ""
212
-
213
- #: ../admin/views/ad-info-top.php:21
214
- #, php-format
215
- msgid "Or use the shortcode %s to insert the ad into the content manually."
216
- msgstr ""
217
-
218
- #: ../admin/views/ad-info-top.php:31 ../admin/views/ad-info-top.php:43
219
- msgid "Start Wizard"
220
- msgstr ""
221
-
222
- #: ../admin/views/ad-info-top.php:32
223
- msgid "Stop Wizard"
224
- msgstr ""
225
-
226
- #: ../admin/views/ad-info-top.php:41
227
- msgid "Welcome to the Wizard"
228
- msgstr ""
229
-
230
- #: ../admin/views/ad-info-top.php:42
231
- msgid ""
232
- "The Wizard helps you to quickly create and publish an ad. Therefore, only "
233
- "the most common options are visible.<br/>You can access all options when "
234
- "<strong>switching off</strong> the Wizard using the <em>Stop Wizard</em> "
235
- "button.<br/>You can <strong>switch on</strong> the Wizard at any time using "
236
- "the <em>Start Wizard</em> button."
237
- msgstr ""
238
-
239
- #: ../admin/views/ad-info-top.php:44
240
- msgid "Stop Wizard and show all options"
241
- msgstr ""
242
-
243
- #: ../admin/views/ad-output-metabox.php:47
244
- msgid "Enable debug mode"
245
- msgstr ""
246
-
247
- #: ../admin/views/ad-parameters-size.php:6
248
- msgid "reserve this space"
249
- msgstr ""
250
-
251
- #: ../admin/views/feedback_disable.php:3
252
- msgid "Thank you for helping to improve Advanced Ads."
253
- msgstr ""
254
-
255
- #: ../admin/views/feedback_disable.php:4
256
- msgid ""
257
- "Your feedback will motivates me to work harder towards a professional ad "
258
- "management solution."
259
- msgstr ""
260
-
261
- #: ../admin/views/feedback_disable.php:5
262
- msgid "Why did you decide to disable Advanced Ads?"
263
- msgstr ""
264
-
265
- #: ../admin/views/feedback_disable.php:7
266
- msgid "I stopped showing ads on my site"
267
- msgstr ""
268
-
269
- #: ../admin/views/feedback_disable.php:8
270
- #, php-format
271
- msgid "I miss a feature or <a href=\"%s\">add-on</a>"
272
- msgstr ""
273
-
274
- #: ../admin/views/feedback_disable.php:9
275
- msgid "I have a technical problem"
276
- msgstr ""
277
-
278
- #: ../admin/views/feedback_disable.php:10
279
- msgid "other reason"
280
- msgstr ""
281
-
282
- #: ../admin/views/feedback_disable.php:12
283
- msgid "Please specify, if possible"
284
- msgstr ""
285
-
286
- #: ../admin/views/feedback_disable.php:13
287
- msgid "What would be a reason to return to Advanced Ads?"
288
- msgstr ""
289
-
290
- #: ../admin/views/intro.php:79
291
- #, php-format
292
- msgid ""
293
- "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
294
- "watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
295
- msgstr ""
296
-
297
- #: ../admin/views/setting-license.php:6
298
- #, php-format
299
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
300
- msgstr ""
301
-
302
- #: ../admin/views/settings-disable-ads.php:21
303
- msgid "Disable ads in Feed"
304
- msgstr ""
305
-
306
- #: ../classes/ad_placements.php:211
307
- #, php-format
308
- msgid "paragraph without image (%s)"
309
- msgstr ""
310
-
311
- #: ../classes/ad_type_group.php:31
312
- msgid ""
313
- "Choose an existing ad group. Use this type when you want to assign the same "
314
- "display and visitor conditions to all ads in that group."
315
- msgstr ""
316
-
317
- #: ../classes/ad_type_group.php:84
318
- msgid "ad group"
319
- msgstr ""
320
-
321
- #: ../classes/ad_type_plain.php:86
322
- msgid "Allow PHP"
323
- msgstr ""
324
-
325
- #: ../classes/display-conditions.php:69
326
- msgid "post type"
327
- msgstr ""
328
-
329
- #: ../classes/display-conditions.php:76
330
- msgid "specific pages"
331
- msgstr ""
332
-
333
- #: ../classes/display-conditions.php:82
334
- msgid "general conditions"
335
- msgstr ""
336
-
337
- #: ../classes/display-conditions.php:88
338
- msgid "author"
339
- msgstr ""
340
-
341
- #: ../classes/display-conditions.php:113
342
- #, php-format
343
- msgid "archive: %s"
344
- msgstr ""
345
-
346
- #: ../classes/display-conditions.php:214 ../classes/display-conditions.php:258 ..
347
- #: classes/display-conditions.php:346
348
- msgctxt "Error message shown when no display condition term is selected"
349
- msgid "Please select some items."
350
- msgstr ""
351
-
352
- #: ../classes/display-conditions.php:243 ../classes/display-conditions.php:296 ..
353
- #: classes/display-conditions.php:371
354
- msgid "show"
355
- msgstr ""
356
-
357
- #: ../classes/display-conditions.php:244 ../classes/display-conditions.php:297 ..
358
- #: classes/display-conditions.php:372
359
- msgid "hide"
360
- msgstr ""
361
-
362
- #: ../classes/display-conditions.php:400
363
- msgid "title or id"
364
- msgstr ""
365
-
366
- #: ../classes/display-conditions.php:480
367
- msgid "Feed"
368
- msgstr ""
369
-
370
- #: ../classes/display-conditions.php:481
371
- msgid "allow ads in Feed"
372
- msgstr ""
373
-
374
- #: ../classes/visitor-conditions.php:107
375
- msgid "Manual and Troubleshooting"
376
- msgstr ""
377
-
378
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:31
379
- msgid "Rename assets"
380
- msgstr ""
381
-
382
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:34
383
- msgid "Check if you want to change the names of the assets"
384
- msgstr ""
385
-
386
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:43
387
- #, php-format
388
- msgid ""
389
- "Please, rebuild the asset folder. All assets will be located in "
390
- "<strong>%s</strong>"
391
- msgstr ""
392
-
393
- #. Name of the plugin
394
- msgid "Advanced Ads"
395
- msgstr "Advanced Ads"
396
-
397
- #. URI of the plugin
398
- msgid "https://wpadvancedads.com"
399
- msgstr "https://wpadvancedads.com"
400
-
401
- #. Description of the plugin
402
- msgid "Manage and optimize your ads in WordPress"
403
- msgstr "Gestiona y optimiza tus anuncios en Wordpress"
404
-
405
- #. Author of the plugin
406
- msgid "Thomas Maier"
407
- msgstr "Thomas Maier"
408
-
409
- #. Author URI of the plugin
410
- msgid "http://webgilde.com"
411
- msgstr "http://webgilde.com"
412
-
413
- #: ../admin/class-advanced-ads-admin.php:283
414
- msgid "Overview"
415
- msgstr "Visión General"
416
-
417
- #: ../admin/class-advanced-ads-admin.php:287 ../admin/class-advanced-ads-admin.
418
- #: php:287 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
419
- #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
420
- #: admin/views/placements.php:81 ../admin/views/placements.php:185 ..
421
- #: classes/widget.php:89 ../public/class-advanced-ads.php:590
422
- msgid "Ads"
423
- msgstr "Anuncios"
424
-
425
- #: ../admin/class-advanced-ads-admin.php:293 ../public/class-advanced-ads.php:593
426
- msgid "Add New Ad"
427
- msgstr "Añadir Nuevo Anuncio"
428
-
429
- #: ../admin/class-advanced-ads-admin.php:293 ../public/class-advanced-ads.php:592
430
- #: ../public/class-advanced-ads.php:596
431
- msgid "New Ad"
432
- msgstr "Nuevo Anuncio"
433
-
434
- #: ../admin/class-advanced-ads-admin.php:298 ../admin/includes/class-shortcode-
435
- #: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
436
- #: 178 ../classes/widget.php:82
437
- msgid "Ad Groups"
438
- msgstr "Grupos de Anuncios"
439
-
440
- #: ../admin/class-advanced-ads-admin.php:298 ../public/class-advanced-ads.php:563
441
- msgid "Groups"
442
- msgstr "Grupos"
443
-
444
- #: ../admin/class-advanced-ads-admin.php:303
445
- msgid "Ad Placements"
446
- msgstr "Colocación de Anuncios"
447
-
448
- #: ../admin/class-advanced-ads-admin.php:303 ../admin/includes/class-shortcode-
449
- #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
450
- msgid "Placements"
451
- msgstr "Colocaciones"
452
-
453
- #: ../admin/class-advanced-ads-admin.php:307
454
- msgid "Advanced Ads Settings"
455
- msgstr "Configuraciones de Advanced Ads"
456
-
457
- #: ../admin/class-advanced-ads-admin.php:307 ../admin/class-advanced-ads-admin.
458
- #: php:555 ../admin/views/debug.php:10
459
- msgid "Settings"
460
- msgstr "Configuraciones"
461
-
462
- #: ../admin/class-advanced-ads-admin.php:310
463
- msgid "Advanced Ads Debugging"
464
- msgstr "Depuración de Advanced Ads"
465
-
466
- #: ../admin/class-advanced-ads-admin.php:310
467
- msgid "Debug"
468
- msgstr "Depuración"
469
-
470
- #: ../admin/class-advanced-ads-admin.php:314 ../admin/class-advanced-ads-admin.
471
- #: php:314
472
- msgid "Advanced Ads Intro"
473
- msgstr "Introducción a Advanced Ads"
474
-
475
- #: ../admin/class-advanced-ads-admin.php:318 ../admin/class-advanced-ads-admin.
476
- #: php:318 ../admin/class-advanced-ads-admin.php:2110
477
- msgid "Support"
478
- msgstr "Soporte"
479
-
480
- #: ../admin/class-advanced-ads-admin.php:469 ../admin/class-advanced-ads-admin.
481
- #: php:496
482
- msgid "Sorry, you are not allowed to access this feature."
483
- msgstr "Lo sentimos, no tienes permiso para acceder a esta función."
484
-
485
- #: ../admin/class-advanced-ads-admin.php:482
486
- msgid ""
487
- "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
488
- "deleted?"
489
- msgstr ""
490
- "Intentaste editar un Grupo de Anuncios que no existe. Tal vez ha sido "
491
- "borrado?"
492
-
493
- #: ../admin/class-advanced-ads-admin.php:650
494
- msgid "Ad Type"
495
- msgstr "Tipo de Anuncio"
496
-
497
- #: ../admin/class-advanced-ads-admin.php:656
498
- msgid "Ad Parameters"
499
- msgstr "Parámetros del Anuncio"
500
-
501
- #: ../admin/class-advanced-ads-admin.php:659
502
- msgid "Layout / Output"
503
- msgstr "Diseño / Visualización"
504
-
505
- #: ../admin/class-advanced-ads-admin.php:662
506
- msgid "Display Conditions"
507
- msgstr "Condiciones de Visualización"
508
-
509
- #: ../admin/class-advanced-ads-admin.php:665
510
- msgid "Visitor Conditions"
511
- msgstr "Condiciones del Visitante"
512
-
513
- #: ../admin/class-advanced-ads-admin.php:924 ../admin/class-advanced-ads-admin.
514
- #: php:925
515
- msgid "Ad updated."
516
- msgstr "Anuncio actualizado."
517
-
518
- #. translators: %s: date and time of the revision
519
- #: ../admin/class-advanced-ads-admin.php:927
520
- #, php-format
521
- msgid "Ad restored to revision from %s"
522
- msgstr "Anunció restaurado para revisión de %s"
523
-
524
- #: ../admin/class-advanced-ads-admin.php:928
525
- msgid "Ad published."
526
- msgstr "Anuncio publicado."
527
-
528
- #: ../admin/class-advanced-ads-admin.php:929
529
- msgid "Ad saved."
530
- msgstr "Anuncio guardado."
531
-
532
- #: ../admin/class-advanced-ads-admin.php:930
533
- msgid "Ad submitted."
534
- msgstr "Anuncio enviado."
535
-
536
- #: ../admin/class-advanced-ads-admin.php:932
537
- #, php-format
538
- msgid "Ad scheduled for: <strong>%1$s</strong>."
539
- msgstr "Anuncio programado para: <strong>%1$s</strong>."
540
-
541
- #. translators: Publish box date format, see http://php.net/date
542
- #: ../admin/class-advanced-ads-admin.php:934
543
- msgid "M j, Y @ G:i"
544
- msgstr "M j, Y @ G:i"
545
-
546
- #: ../admin/class-advanced-ads-admin.php:936
547
- msgid "Ad draft updated."
548
- msgstr "Borrador del anuncio actualizado."
549
-
550
- #: ../admin/class-advanced-ads-admin.php:955
551
- #, php-format
552
- msgid "%s ad updated."
553
- msgid_plural "%s ads updated."
554
- msgstr[0] "%s anuncio actualizado."
555
- msgstr[1] "%s anuncios actualizados."
556
-
557
- #: ../admin/class-advanced-ads-admin.php:956
558
- #, php-format
559
- msgid "%s ad not updated, somebody is editing it."
560
- msgid_plural "%s ads not updated, somebody is editing them."
561
- msgstr[0] "%s anuncio no actualizado, alguien lo esta editando."
562
- msgstr[1] "%s anuncios no actualizados, alguien los esta editando."
563
-
564
- #: ../admin/class-advanced-ads-admin.php:957
565
- #, php-format
566
- msgid "%s ad permanently deleted."
567
- msgid_plural "%s ads permanently deleted."
568
- msgstr[0] "%s anuncio permanentemente borrado."
569
- msgstr[1] "%s anuncios permanentemente borrados."
570
-
571
- #: ../admin/class-advanced-ads-admin.php:958
572
- #, php-format
573
- msgid "%s ad moved to the Trash."
574
- msgid_plural "%s ads moved to the Trash."
575
- msgstr[0] "%s anuncio movido a la papelera."
576
- msgstr[1] "%s anuncios movidos a la papelera."
577
-
578
- #: ../admin/class-advanced-ads-admin.php:959
579
- #, php-format
580
- msgid "%s ad restored from the Trash."
581
- msgid_plural "%s ads restored from the Trash."
582
- msgstr[0] "%s anuncio restaurado de la papelera."
583
- msgstr[1] "%s anuncios restaurados de la papelera."
584
-
585
- #: ../admin/class-advanced-ads-admin.php:994 ../admin/views/settings.php:12
586
- msgid "General"
587
- msgstr "General"
588
-
589
- #: ../admin/class-advanced-ads-admin.php:1006 ../admin/class-advanced-ads-admin.
590
- #: php:1118
591
- msgid "Licenses"
592
- msgstr "Licencias"
593
-
594
- #: ../admin/class-advanced-ads-admin.php:1017
595
- msgid "Disable ads"
596
- msgstr "Deshabilitar anuncios"
597
-
598
- #: ../admin/class-advanced-ads-admin.php:1025
599
- msgid "Hide ads for logged in users"
600
- msgstr "Ocultar anuncios para usuarios que inicien sesión"
601
-
602
- #: ../admin/class-advanced-ads-admin.php:1033
603
- msgid "Use advanced JavaScript"
604
- msgstr "Utilizar JavaScript avanzado"
605
-
606
- #: ../admin/class-advanced-ads-admin.php:1041
607
- msgid "Unlimited ad injection"
608
- msgstr "Inyección ilimitada de anuncios"
609
-
610
- #: ../admin/class-advanced-ads-admin.php:1049
611
- msgid "Priority of content injection filter"
612
- msgstr "Prioridad de filtro de inyección de contenido"
613
-
614
- #: ../admin/class-advanced-ads-admin.php:1057
615
- msgid "Hide ads from bots"
616
- msgstr "Ocultar anuncios de bots"
617
-
618
- #: ../admin/class-advanced-ads-admin.php:1065
619
- msgid "Disable notices"
620
- msgstr "Deshabilitar notificaciones"
621
-
622
- #: ../admin/class-advanced-ads-admin.php:1073
623
- msgid "ID prefix"
624
- msgstr "Prefijo ID"
625
-
626
- #: ../admin/class-advanced-ads-admin.php:1081
627
- msgid "Remove Widget ID"
628
- msgstr "Remover Widget ID"
629
-
630
- #: ../admin/class-advanced-ads-admin.php:1089
631
- msgid "Allow editors to manage ads"
632
- msgstr "Permitir a editores gestionar anuncios"
633
-
634
- #: ../admin/class-advanced-ads-admin.php:1174
635
- msgid "(display to all)"
636
- msgstr "(mostrar a todos)"
637
-
638
- #: ../admin/class-advanced-ads-admin.php:1175
639
- msgid "Subscriber"
640
- msgstr "Suscriptor"
641
-
642
- #: ../admin/class-advanced-ads-admin.php:1176
643
- msgid "Contributor"
644
- msgstr "Contribuyente"
645
-
646
- #: ../admin/class-advanced-ads-admin.php:1177
647
- msgid "Author"
648
- msgstr "Autor"
649
-
650
- #: ../admin/class-advanced-ads-admin.php:1178
651
- msgid "Editor"
652
- msgstr "Editor"
653
-
654
- #: ../admin/class-advanced-ads-admin.php:1179
655
- msgid "Admin"
656
- msgstr "Administrador"
657
-
658
- #: ../admin/class-advanced-ads-admin.php:1187
659
- msgid "Choose the lowest role a user must have in order to not see any ads."
660
- msgstr "Elige el rol mínimo que un usuario debe tener para no ver ningún anuncio."
661
-
662
- #: ../admin/class-advanced-ads-admin.php:1201
663
- msgid ""
664
- "<strong>notice: </strong>the file is currently enabled by an add-on that "
665
- "needs it."
666
- msgstr ""
667
- "<strong>Notificación: </strong>el archivo se encuentra activado por un add-"
668
- "on que lo necesita."
669
-
670
- #: ../admin/class-advanced-ads-admin.php:1204
671
- #, php-format
672
- msgid ""
673
- "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
674
- " Some features and add-ons might override this setting if they need features "
675
- "from this file."
676
- msgstr ""
677
- "Habilitar funciones avanzadas de JavaScript (<a href=\"%s\" "
678
- "target=\"_blank\">aquí</a>). Algunas características y add-ons pueden anular "
679
- "esta configuración si necesitan funciones de este archivo."
680
-
681
- #: ../admin/class-advanced-ads-admin.php:1217
682
- msgid ""
683
- "Some plugins and themes trigger ad injection where it shouldn’t happen. "
684
- "Therefore, Advanced Ads ignores injected placements on non-singular pages "
685
- "and outside the loop. However, this can cause problems with some themes. You "
686
- "can enable this option if you don’t see ads or want to enable ad injections "
687
- "on archive pages AT YOUR OWN RISK."
688
- msgstr ""
689
- "Algunos plugins y temas pueden desencadenar inyecciones de anuncios en "
690
- "lugares en donde no debe ocurrir. Por lo tanto, Advanced Ads ignora las "
691
- "colocaciones inyectadas en páginas no singulares y fuera del ciclo iterativo "
692
- "(loop). No obstante, esto puede causar problemas con algunos temas. Puedes "
693
- "habilitar esta opción si no ves anuncios o quieres habilitar las inyecciones "
694
- "de anuncios en páginas de archivos BAJO TU PROPIO RIESGO."
695
-
696
- #: ../admin/class-advanced-ads-admin.php:1233
697
- msgid ""
698
- "Please check your post content. A priority of 10 and below might cause "
699
- "issues (wpautop function might run twice)."
700
- msgstr ""
701
- "Por favor, revisa el contenido de tu entrada. Una prioridad de 10 o menos "
702
- "puede causar problemas (la función wpautop puede ejecutarse dos veces)."
703
-
704
- #: ../admin/class-advanced-ads-admin.php:1235
705
- msgid ""
706
- "Play with this value in order to change the priority of the injected ads "
707
- "compared to other auto injected elements in the post content."
708
- msgstr ""
709
- "Juega con este valor para cambiar la prioridad de los anuncios inyectados en "
710
- "comparación con otros elementos auto inyectados en el contenido de la "
711
- "entrada."
712
-
713
- #: ../admin/class-advanced-ads-admin.php:1249
714
- #, php-format
715
- msgid ""
716
- "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
717
- "impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
718
- "Add-On</a>."
719
- msgstr ""
720
- "Ocultar los anuncios de rastreadores (crawlers), bots y usuarios de agente "
721
- "vacíos. También previene contar impresiones de bots cuando se usa <a "
722
- "href=\"%s\" target=\"_blank\">El Add-On de Rastreo</a>."
723
-
724
- #: ../admin/class-advanced-ads-admin.php:1250
725
- msgid ""
726
- "Disabling this option only makes sense if your ads contain content you want "
727
- "to display to bots (like search engines) or your site is cached and bots "
728
- "could create a cached version without the ads."
729
- msgstr ""
730
- "Deshabilitar esta opción sólo tiene sentido si tus anuncios contienen "
731
- "contenido que deseas mostrar a los bots (como motores de búsqueda) o tu "
732
- "sitio esta cacheado y los bots pueden crear una versión cacheada sin los "
733
- "anuncios."
734
-
735
- #: ../admin/class-advanced-ads-admin.php:1263
736
- msgid ""
737
- "Disable internal notices like tips, tutorials, email newsletters and update "
738
- "notices. Disabling notices is recommended if you run multiple blogs with "
739
- "Advanced Ads already."
740
- msgstr ""
741
- "Deshabilitar notificaciones internas como tips, tutoriales, boletines de "
742
- "noticias y notificaciones de actualizaciones. Deshabilitar las "
743
- "notificaciones es recomendado si ya administras múltiples sitios con "
744
- "Advanced Ads."
745
-
746
- #: ../admin/class-advanced-ads-admin.php:1280
747
- msgid ""
748
- "Prefix of class or id attributes in the frontend. Change it if you don’t "
749
- "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
750
- "need to <strong>rewrite css rules afterwards</strong>."
751
- msgstr ""
752
- "Prefijo de clase o atributos ID en el frente del sitio. Cámbialo si no "
753
- "quieres que los <strong>bloqueadores de anuncios</strong> marquen estos "
754
- "bloques como anuncios. <br/>Podrías necesitar <strong>reescribir las reglas "
755
- "css después</strong>."
756
-
757
- #: ../admin/class-advanced-ads-admin.php:1301
758
- msgid ""
759
- "Remove the ID attribute from widgets in order to not make them an easy "
760
- "target of ad blockers."
761
- msgstr ""
762
- "Remover el atributo ID de los widgets para no hacerlos un blanco fácil de "
763
- "los bloqueadores de anuncios."
764
-
765
- #: ../admin/class-advanced-ads-admin.php:1326
766
- msgid "Allow editors to also manage and publish ads."
767
- msgstr "Permitir también que los editores gestionen y publiquen anuncios."
768
-
769
- #: ../admin/class-advanced-ads-admin.php:1404
770
- msgid "Ad Details"
771
- msgstr "Detalles del Anuncio"
772
-
773
- #: ../admin/class-advanced-ads-admin.php:1405
774
- msgid "Ad Planning"
775
- msgstr "Planificación del Anuncio"
776
-
777
- #: ../admin/class-advanced-ads-admin.php:1540
778
- msgid "Ad Settings"
779
- msgstr "Configuración del Anuncio"
780
-
781
- #: ../admin/class-advanced-ads-admin.php:1619 ../admin/views/overview.php:23
782
- msgid "Ads Dashboard"
783
- msgstr "Panel de Anuncios"
784
-
785
- #: ../admin/class-advanced-ads-admin.php:1631
786
- msgid "From the ad optimization universe"
787
- msgstr "Desde el universo de optimización de anuncios"
788
-
789
- #: ../admin/class-advanced-ads-admin.php:1640
790
- msgid "Advanced Ads Tutorials"
791
- msgstr "Tutoriales de Advanced Ads"
792
-
793
- #: ../admin/class-advanced-ads-admin.php:1651
794
- #, php-format
795
- msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
796
- msgstr "%d Anuncios <a href=\"%s\">Gestionar</a> - <a href=\"%s\">Nuevo</a>"
797
-
798
- #: ../admin/class-advanced-ads-admin.php:1662
799
- msgid "plugin manual and homepage"
800
- msgstr "Manual del plugin y página de inicio"
801
-
802
- #: ../admin/class-advanced-ads-admin.php:1669
803
- msgid "Get the tutorial via email"
804
- msgstr "Obtener el tutorial vía correo electrónico"
805
-
806
- #: ../admin/class-advanced-ads-admin.php:1676
807
- msgid "Get AdSense tips via email"
808
- msgstr "Obtener tips de AdSense vía correo electrónico"
809
-
810
- #: ../admin/class-advanced-ads-admin.php:1802
811
- msgid "Error while trying to register the license. Please contact support."
812
- msgstr "Error al tratar de registrar la licencia. Por favor, contactar a soporte."
813
-
814
- #: ../admin/class-advanced-ads-admin.php:1807 ../admin/views/setting-license.php:37
815
- msgid "Please enter a valid license key"
816
- msgstr "Por favor, ingresa una llave de licencia válida"
817
-
818
- #: ../admin/class-advanced-ads-admin.php:1856
819
- #, php-format
820
- msgid "License is invalid. Reason: %s"
821
- msgstr "Licencia inválida. Razón: %s"
822
-
823
- #: ../admin/class-advanced-ads-admin.php:1910
824
- msgid "Error while trying to disable the license. Please contact support."
825
- msgstr "Error al tratar de deshabilitar la licencia. Por favor, contacta a soporte."
826
-
827
- #: ../admin/class-advanced-ads-admin.php:1933 ../admin/class-advanced-ads-admin.
828
- #: php:1950
829
- msgid "License couldn’t be deactivated. Please try again later."
830
- msgstr "La licencia no pudo ser desactivada.a soporte."
831
-
832
- #: ../admin/includes/class-ad-groups-list.php:156
833
- msgid "Ad weight"
834
- msgstr "Peso del Anuncio"
835
-
836
- #: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
837
- #: column.php:4
838
- #, php-format
839
- msgid "starts %s"
840
- msgstr "Comienza %s"
841
-
842
- #: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
843
- #: column.php:21
844
- #, php-format
845
- msgid "expires %s"
846
- msgstr "Expira %s"
847
-
848
- #: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
849
- #: column.php:23
850
- #, php-format
851
- msgid "<strong>expired</strong> %s"
852
- msgstr "<strong>Expirado</strong> %s"
853
-
854
- #: ../admin/includes/class-ad-groups-list.php:198
855
- msgid "all published ads are displayed"
856
- msgstr "Todos los anuncios publicados están mostrados"
857
-
858
- #: ../admin/includes/class-ad-groups-list.php:200
859
- #, php-format
860
- msgid "up to %d ads displayed"
861
- msgstr "Hasta %d anuncios mostrados"
862
-
863
- #: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
864
- #: form-row.php:37
865
- msgid "No ads assigned"
866
- msgstr "No hay anuncios asignados"
867
-
868
- #: ../admin/includes/class-ad-groups-list.php:251
869
- msgid "Random ads"
870
- msgstr "Anuncios aleatorios"
871
-
872
- #: ../admin/includes/class-ad-groups-list.php:252
873
- msgid "Display random ads based on ad weight"
874
- msgstr "Mostrar anuncios aleatorios basados en el peso del anuncio"
875
-
876
- #: ../admin/includes/class-ad-groups-list.php:255
877
- msgid "Ordered ads"
878
- msgstr "Anuncios ordenados"
879
-
880
- #: ../admin/includes/class-ad-groups-list.php:256
881
- msgid "Display ads with the highest ad weight first"
882
- msgstr "Mostrar de primero anuncios con el peso más alto"
883
-
884
- #: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
885
- #: php:594
886
- msgid "Edit"
887
- msgstr "Editar"
888
-
889
- #: ../admin/includes/class-ad-groups-list.php:276
890
- msgid "Usage"
891
- msgstr "Uso"
892
-
893
- #: ../admin/includes/class-ad-groups-list.php:285
894
- msgid "Delete"
895
- msgstr "Eliminar"
896
-
897
- #: ../admin/includes/class-ad-groups-list.php:306
898
- msgid "Invalid Ad Group"
899
- msgstr "Grupo de Anuncios Inválido"
900
-
901
- #: ../admin/includes/class-ad-groups-list.php:311
902
- msgid "You don’t have permission to change the ad groups"
903
- msgstr "No tienes permiso para cambiar los Grupos de Anuncios"
904
-
905
- #: ../admin/includes/class-notices.php:406
906
- #, php-format
907
- msgid ""
908
- "You don’t seem to have an email address. Please use <a href=\"%s\" "
909
- "target=\"_blank\">this form</a> to sign up."
910
- msgstr ""
911
- "Parece ser que no tienes una dirección de correo electrónico. Por favor, usa "
912
- "<a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
913
-
914
- #: ../admin/includes/class-notices.php:424
915
- msgid "How embarrassing. The email server seems to be down. Please try again later."
916
- msgstr ""
917
- "Esto es penoso. El servidor de correos parece estar caído. Por favor, "
918
- "inténtalo más tarde."
919
-
920
- #: ../admin/includes/class-notices.php:429
921
- #, php-format
922
- msgid ""
923
- "Please check your email (%s) for the confirmation message. If you didn’t "
924
- "receive one or want to use another email address then please use <a "
925
- "href=\"%s\" target=\"_blank\">this form</a> to sign up."
926
- msgstr ""
927
- "Por favor, revisa tu correo (%s) para el mensaje de confirmación. Si no "
928
- "recibiste uno o deseas utilizar otra dirección de correo, entonces por favor "
929
- "usa <a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
930
-
931
- #: ../admin/includes/class-overview-widgets.php:45
932
- msgid "Tips and Tutorials"
933
- msgstr "Tips y Tutoriales"
934
-
935
- #: ../admin/includes/class-overview-widgets.php:47
936
- msgid "Setup and Optimization Help"
937
- msgstr "Ayuda de Optimización y Configuración"
938
-
939
- #: ../admin/includes/class-overview-widgets.php:49
940
- msgid "Manual and Support"
941
- msgstr "Manual y Soporte"
942
-
943
- #: ../admin/includes/class-overview-widgets.php:53
944
- msgid "Advanced Ads Pro"
945
- msgstr "Advanced Ads Pro"
946
-
947
- #: ../admin/includes/class-overview-widgets.php:55
948
- msgid "Tracking and Stats"
949
- msgstr "Estadísticas y Rastreo"
950
-
951
- #: ../admin/includes/class-overview-widgets.php:57
952
- msgid "Responsive and Mobile ads"
953
- msgstr "Anuncios Responsables y Móviles"
954
-
955
- #: ../admin/includes/class-overview-widgets.php:61
956
- msgid "Sticky ads"
957
- msgstr "Anuncios Pegajosos (sticky)"
958
-
959
- #: ../admin/includes/class-overview-widgets.php:63
960
- msgid "PopUps and Layers"
961
- msgstr "PopUps y Ventanas Emergentes"
962
-
963
- #: ../admin/includes/class-overview-widgets.php:65
964
- msgid "Ad Slider"
965
- msgstr "Slider de Anuncios"
966
-
967
- #: ../admin/includes/class-overview-widgets.php:83
968
- msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
969
- msgstr ""
970
- "Obtén <strong>2 add-ons gratis</strong> por suscribirte al boletín de "
971
- "noticias."
972
-
973
- #: ../admin/includes/class-overview-widgets.php:84
974
- msgid "Join now"
975
- msgstr "Suscríbete Ahora"
976
-
977
- #: ../admin/includes/class-overview-widgets.php:91
978
- msgid ""
979
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
980
- "and Advanced Ads from the dedicated newsletter group."
981
- msgstr ""
982
- "Aprende más acerca de cómo y <strong>cuánto puedes ganar con "
983
- "AdSense</strong> y Advanced Ads con nuestro grupo de noticias dedicado."
984
-
985
- #: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
986
- #: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
987
- #: admin/views/notices/subscribe.php:3
988
- msgid "Subscribe me now"
989
- msgstr "Suscribirme Ahora"
990
-
991
- #: ../admin/includes/class-overview-widgets.php:99
992
- msgid "Get the first steps and more tutorials to your inbox."
993
- msgstr "Obtén los primeros pasos y más tutoriales en tu correo."
994
-
995
- #: ../admin/includes/class-overview-widgets.php:100
996
- msgid "Send it now"
997
- msgstr "Enviarlo Ahora"
998
-
999
- #: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
1000
- msgid "Create your first ad"
1001
- msgstr "Crea Tu Primer Anuncio"
1002
-
1003
- #: ../admin/includes/class-overview-widgets.php:126
1004
- msgid ""
1005
- "Ad Groups contain ads and are currently used to rotate multiple ads on a "
1006
- "single spot."
1007
- msgstr ""
1008
- "Los Grupos de Anuncios contienen anuncios y se usan actualmente para rotar "
1009
- "múltiples anuncios en un mismo lugar."
1010
-
1011
- #: ../admin/includes/class-overview-widgets.php:128
1012
- msgid "Create your first group"
1013
- msgstr "Crea Tu Primer Grupo"
1014
-
1015
- #: ../admin/includes/class-overview-widgets.php:131
1016
- msgid "Ad Placements are the best way to manage where to display ads and groups."
1017
- msgstr ""
1018
- "Las Colocaciones de Anuncios son la mejor manera para gestionar en donde "
1019
- "mostrar anuncios y grupos."
1020
-
1021
- #: ../admin/includes/class-overview-widgets.php:133
1022
- msgid "Create your first placement"
1023
- msgstr "Crea Tu Primera Colocación"
1024
-
1025
- #: ../admin/includes/class-overview-widgets.php:138
1026
- msgid "Next steps"
1027
- msgstr "Próximos Pasos"
1028
-
1029
- #: ../admin/includes/class-overview-widgets.php:150
1030
- #, php-format
1031
- msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
1032
- msgstr "<a href=\"%s\" target=\"_blank\">Manual</a>"
1033
-
1034
- #: ../admin/includes/class-overview-widgets.php:152
1035
- #, php-format
1036
- msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
1037
- msgstr "Vota por una <a href=\"%s\" target=\"_blank\">funcionalidad</a>"
1038
-
1039
- #: ../admin/includes/class-overview-widgets.php:153
1040
- #, php-format
1041
- msgid ""
1042
- "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
1043
- "href=\"%s\" target=\"_blank\">wordpress.org</a>"
1044
- msgstr ""
1045
- "Agradece al desarrollador con una &#9733;&#9733;&#9733;&#9733;&#9733; "
1046
- "evaluación del plugin en <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
1047
-
1048
- #: ../admin/includes/class-overview-widgets.php:162
1049
- msgid ""
1050
- "Need help to set up and optimize your ads? Need custom coding on your site? "
1051
- "Ask me for a quote."
1052
- msgstr ""
1053
- "Necesitas ayuda configurando y optimizando tus anuncios? Necesitas "
1054
- "programación personalizada para tu sitio? Contáctame para una cotización."
1055
-
1056
- #: ../admin/includes/class-overview-widgets.php:163
1057
- #, php-format
1058
- msgid "Help with ads on %s"
1059
- msgstr "Ayuda con anuncios en %s"
1060
-
1061
- #: ../admin/includes/class-overview-widgets.php:164
1062
- msgid "Get an offer"
1063
- msgstr "Obtén una Cotización"
1064
-
1065
- #: ../admin/includes/class-overview-widgets.php:172
1066
- msgid "Ad management for advanced websites."
1067
- msgstr "Gestión de anuncios para websites avanzados."
1068
-
1069
- #: ../admin/includes/class-overview-widgets.php:173
1070
- msgid "Cache-busting"
1071
- msgstr "Almacenamiento-en-caché"
1072
-
1073
- #: ../admin/includes/class-overview-widgets.php:174
1074
- msgid "Advanced visitor conditions"
1075
- msgstr "Condiciones Avanzadas del Visitante"
1076
-
1077
- #: ../admin/includes/class-overview-widgets.php:175
1078
- msgid "Flash ads with fallback"
1079
- msgstr "Anuncios Flash con Retroceso (fallback)"
1080
-
1081
- #: ../admin/includes/class-overview-widgets.php:177
1082
- msgid "Get Pro"
1083
- msgstr "Obtener Pro"
1084
-
1085
- #: ../admin/includes/class-overview-widgets.php:185
1086
- msgid "Track the impressions of and clicks on your ads."
1087
- msgstr "Rastrear las impresiones y los clics en tus anuncios."
1088
-
1089
- #: ../admin/includes/class-overview-widgets.php:186
1090
- msgid "2 methods to count impressions"
1091
- msgstr "Dos métodos para contar las impresiones"
1092
-
1093
- #: ../admin/includes/class-overview-widgets.php:187
1094
- msgid "beautiful stats for all or single ads"
1095
- msgstr "Hermosas estadísticas para todos los anuncios o para anuncios individuales"
1096
-
1097
- #: ../admin/includes/class-overview-widgets.php:188
1098
- msgid "group stats by day, week or month"
1099
- msgstr "Agrupar estadísticas por día, semana o mes"
1100
-
1101
- #: ../admin/includes/class-overview-widgets.php:190
1102
- msgid "Get the Tracking add-on"
1103
- msgstr "Obtener el add-on de Rastreo"
1104
-
1105
- #: ../admin/includes/class-overview-widgets.php:198
1106
- msgid "Display ads based on the size of your visitor’s browser or device."
1107
- msgstr "Mostrar anuncios en base al tamaño del navegador del visitante."
1108
-
1109
- #: ../admin/includes/class-overview-widgets.php:199
1110
- msgid "set a range (from … to …) pixels for the browser size"
1111
- msgstr "Definir un rango (de… a…) píxeles para el tamaño del navegador"
1112
-
1113
- #: ../admin/includes/class-overview-widgets.php:200
1114
- msgid "set custom sizes for AdSense responsive ads"
1115
- msgstr "Definir tamaños personalizados para los anuncios responsables de AdSense"
1116
-
1117
- #: ../admin/includes/class-overview-widgets.php:201
1118
- msgid "list all ads by their responsive settings"
1119
- msgstr "Listar todos los anuncios por sus configuraciones responsables"
1120
-
1121
- #: ../admin/includes/class-overview-widgets.php:203
1122
- msgid "Get the Responsive add-on"
1123
- msgstr "Obtener el add-on de diseño responsable"
1124
-
1125
- #: ../admin/includes/class-overview-widgets.php:221
1126
- msgid ""
1127
- "Fix ads to the browser while users are scrolling and create best performing "
1128
- "anchor ads."
1129
- msgstr ""
1130
- "Fijar anuncios al navegador mientras los usuarios están desplazándose y "
1131
- "crear los anuncios de anclaje con mejor rendimiento."
1132
-
1133
- #: ../admin/includes/class-overview-widgets.php:222
1134
- msgid "position ads that don’t scroll with the screen"
1135
- msgstr "Posicionar anuncios que no se desplacen con la pantalla"
1136
-
1137
- #: ../admin/includes/class-overview-widgets.php:223
1138
- msgid "build anchor ads not only on mobile devices"
1139
- msgstr "Construir anuncios de anclaje no solamente en dispositivos móviles"
1140
-
1141
- #: ../admin/includes/class-overview-widgets.php:225
1142
- msgid "Get the Sticky add-on"
1143
- msgstr "Obtener el add-on de Anuncios Pegajosos (sticky)"
1144
-
1145
- #: ../admin/includes/class-overview-widgets.php:233
1146
- msgid "Display content and ads in layers and popups on custom events."
1147
- msgstr ""
1148
- "Mostrar contenido y anuncios en Ventanas Emergentes y PopUps en eventos "
1149
- "personalizados."
1150
-
1151
- #: ../admin/includes/class-overview-widgets.php:234
1152
- msgid "display a popup after a user interaction like scrolling"
1153
- msgstr "Mostrar un PopUp después de una interacción de usuario (como desplazarse)"
1154
-
1155
- #: ../admin/includes/class-overview-widgets.php:236
1156
- msgid "allow users to close the popup"
1157
- msgstr "Permitir a los usuarios cerrar un PopUp\n"
1158
-
1159
- #: ../admin/includes/class-overview-widgets.php:238
1160
- msgid "Get the PopUp and Layer add-on"
1161
- msgstr "Obtener el add-on de PopUps y Ventanas Emergentes"
1162
-
1163
- #: ../admin/includes/class-overview-widgets.php:246
1164
- msgid "Create a beautiful and simple slider from your ads."
1165
- msgstr "Crear un lindo y simple Slider para tus anuncios."
1166
-
1167
- #: ../admin/includes/class-overview-widgets.php:248
1168
- msgid "Get the Slider add-on"
1169
- msgstr "Obtener el add-on del Slider"
1170
-
1171
- #: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
1172
- msgid "--empty--"
1173
- msgstr "--Vacío--"
1174
-
1175
- #: ../admin/includes/notices.php:14
1176
- #, php-format
1177
- msgid ""
1178
- "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1179
- "Steps</a>."
1180
- msgstr ""
1181
- "Advanced Ads exitosamente instalado. Échale un vistazo a los <a "
1182
- "href=\"%s\">primeros pasos</a>."
1183
-
1184
- #: ../admin/includes/notices.php:20
1185
- msgid ""
1186
- "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1187
- "receive the first steps via email?"
1188
- msgstr ""
1189
- "Gracias por activar <strong>Advanced Ads</strong>. Deseas recibir los "
1190
- "primeros pasos por correo electrónico?"
1191
-
1192
- #: ../admin/includes/notices.php:21
1193
- msgid "Yes, send it"
1194
- msgstr "Si, envíalo"
1195
-
1196
- #: ../admin/includes/notices.php:27
1197
- msgid ""
1198
- "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1199
- "<strong>2 free add-ons</strong> for joining the newsletter."
1200
- msgstr ""
1201
- "Gracias por usar <strong>Advanced Ads</strong>. Mántente informado y recibe "
1202
- "<strong>2 add-ons gratis</strong> por unirte a nuestro boletín de noticias."
1203
-
1204
- #: ../admin/includes/notices.php:28
1205
- msgid "Add me now"
1206
- msgstr "Añadirme Ahora"
1207
-
1208
- #: ../admin/includes/notices.php:34
1209
- msgid ""
1210
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1211
- "and Advanced Ads from my dedicated newsletter."
1212
- msgstr ""
1213
- "Aprende más sobre cómo y <strong>cuánto puedes ganar con AdSense</strong> y "
1214
- "Advanced Ads con mi boletín de noticias dedicado."
1215
-
1216
- #: ../admin/includes/notices.php:61
1217
- msgid ""
1218
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1219
- "missing</strong>."
1220
- msgstr ""
1221
- "Una o más llaves de licencia para los <strong>add-ons de Advanced Ads no se "
1222
- "encuentran o son inválidos</strong>."
1223
-
1224
- #: ../admin/includes/notices.php:61
1225
- #, php-format
1226
- msgid "Please add valid license keys <a href=\"%s\">here</a>."
1227
- msgstr "Por favor, añade llaves de licencia válidas <a href=\"%s\">aquí</a>."
1228
-
1229
- #: ../admin/includes/notices.php:67
1230
- #, php-format
1231
- msgid ""
1232
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1233
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1234
- "before it expires with a significant discount on <a href=\"%s\" "
1235
- "target=\"_blank\">the add-on page</a>."
1236
- msgstr ""
1237
- "Una o más licencias para tus <strong>add-ons de Advanced Ads van a expirar "
1238
- "pronto</strong>. No arriesgues perder soporte y actualizaciones y renueva tu "
1239
- "licencia antes de que expire con un descuento significativo en <a href=\"%s\" "
1240
- "target=\"_blank\">la página de add-ons</a>."
1241
-
1242
- #: ../admin/includes/notices.php:73 ../admin/views/support.php:28
1243
- #, php-format
1244
- msgid ""
1245
- "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1246
- "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1247
- "information."
1248
- msgstr ""
1249
- "Licencia (s) de <strong>Advanced Ads</strong> expirada. El soporte y las "
1250
- "actualizaciones están deshabilitadas. Por favor, visita <a href=\"%s\"> la "
1251
- "página de licencias</a> para más información."
1252
-
1253
- #: ../admin/includes/shortcode-creator-l10n.php:10
1254
- msgctxt "shortcode creator"
1255
- msgid "Add an ad"
1256
- msgstr "Agrega un Anuncio"
1257
-
1258
- #: ../admin/includes/shortcode-creator-l10n.php:11
1259
- msgctxt "shortcode creator"
1260
- msgid "Add shortcode"
1261
- msgstr "Agrega un Shortcode "
1262
-
1263
- #: ../admin/includes/shortcode-creator-l10n.php:12
1264
- msgctxt "shortcode creator"
1265
- msgid "Cancel"
1266
- msgstr "Cancelar "
1267
-
1268
- #: ../admin/views/ad-display-metabox.php:39
1269
- msgid "If you want to display the ad everywhere, don't do anything here. "
1270
- msgstr "Si quieres mostrar el anuncio en todas partes, no hagas nada aquí."
1271
-
1272
- #: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
1273
- #: 34
1274
- msgid "New condition"
1275
- msgstr "Nueva Condición"
1276
-
1277
- #: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
1278
- #: 37
1279
- msgid "-- choose a condition --"
1280
- msgstr "-- Selecciona una Condición --"
1281
-
1282
- #: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
1283
- #: 42
1284
- msgid "add"
1285
- msgstr "Añadir"
1286
-
1287
- #: ../admin/views/ad-group-edit.php:14
1288
- msgid "You did not select an item for editing."
1289
- msgstr "No seleccionaste un ítem para editar."
1290
-
1291
- #: ../admin/views/ad-group-edit.php:33
1292
- msgctxt "Taxonomy Name"
1293
- msgid "Name"
1294
- msgstr "Nombre"
1295
-
1296
- #: ../admin/views/ad-group-edit.php:38
1297
- msgctxt "Taxonomy Slug"
1298
- msgid "Slug"
1299
- msgstr "Slug"
1300
-
1301
- #: ../admin/views/ad-group-edit.php:40
1302
- msgid "An id-like string with only letters in lower case, numbers, and hyphens."
1303
- msgstr "Una cadena tipo-id con solamente letras en minúscula, números, y guiones."
1304
-
1305
- #: ../admin/views/ad-group-edit.php:45
1306
- msgctxt "Taxonomy Description"
1307
- msgid "Description"
1308
- msgstr "Descripción"
1309
-
1310
- #: ../admin/views/ad-group-edit.php:57
1311
- msgid "Create new Ad Group"
1312
- msgstr "Crear un nuevo Grupo de Anuncios"
1313
-
1314
- #: ../admin/views/ad-group-edit.php:59
1315
- msgid "Update"
1316
- msgstr "Actualizar"
1317
-
1318
- #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
1319
- msgid "Name"
1320
- msgstr "Nombre"
1321
-
1322
- #: ../admin/views/ad-group-list-form-row.php:5
1323
- msgid "Description"
1324
- msgstr "Descripción"
1325
-
1326
- #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
1327
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:48
1328
- msgid "Type"
1329
- msgstr "Tipo"
1330
-
1331
- #: ../admin/views/ad-group-list-form-row.php:16
1332
- msgid "Number of visible ads"
1333
- msgstr "Número de anuncios visibles"
1334
-
1335
- #: ../admin/views/ad-group-list-form-row.php:22
1336
- msgctxt "option to display all ads in an ad groups"
1337
- msgid "all"
1338
- msgstr "Todos"
1339
-
1340
- #: ../admin/views/ad-group-list-form-row.php:25
1341
- msgid "Number of ads that are visible at the same time"
1342
- msgstr "Número de anuncios que son visibles al mismo tiempo"
1343
-
1344
- #: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
1345
- #: 591
1346
- msgid "Ad"
1347
- msgstr "Anuncio"
1348
-
1349
- #: ../admin/views/ad-group-list-form-row.php:32
1350
- msgid "weight"
1351
- msgstr "Peso"
1352
-
1353
- #: ../admin/views/ad-group-list-header.php:3 ../classes/ad_type_group.php:30
1354
- msgid "Ad Group"
1355
- msgstr "Grupo de Anuncios"
1356
-
1357
- #: ../admin/views/ad-group-list-header.php:4
1358
- msgid "Details"
1359
- msgstr "Detalles"
1360
-
1361
- #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1362
- #: admin/views/ad-info.php:3 ../admin/views/placements.php:59
1363
- msgid "shortcode"
1364
- msgstr "Shortcode:"
1365
-
1366
- #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1367
- #: admin/views/placements.php:62
1368
- msgid "template"
1369
- msgstr "Plantilla"
1370
-
1371
- #: ../admin/views/ad-group-list-row.php:14
1372
- #, php-format
1373
- msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
1374
- msgstr ""
1375
- "Aprende más sobre el uso de grupos en el <a href=\"%s\" "
1376
- "target=\"_blank\">manual</a>."
1377
-
1378
- #: ../admin/views/ad-group-list-row.php:19
1379
- #, php-format
1380
- msgid "Type: %s"
1381
- msgstr "Tipo: %s"
1382
-
1383
- #: ../admin/views/ad-group-list-row.php:20
1384
- #, php-format
1385
- msgid "ID: %s"
1386
- msgstr "ID: %s"
1387
-
1388
- #: ../admin/views/ad-group.php:18
1389
- msgid "Ad Groups successfully updated"
1390
- msgstr "Grupos de Anuncios actualizados exitosamente"
1391
-
1392
- #: ../admin/views/ad-group.php:46
1393
- #, php-format
1394
- msgid "Search results for &#8220;%s&#8221;"
1395
- msgstr "Resultados de la búsqueda para &#8220;%s&#8221;"
1396
-
1397
- #: ../admin/views/ad-group.php:52
1398
- msgid ""
1399
- "Ad Groups are a very flexible method to bundle ads. You can use them to "
1400
- "display random ads in the frontend or run split tests, but also just for "
1401
- "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1402
- "ad can belong to multiple ad groups."
1403
- msgstr ""
1404
- "Los Grupos de Anuncios son un método muy flexible para reunir anuncios. Los "
1405
- "puedes usar para mostrar anuncios aleatorios en el frente de tu sitio o para "
1406
- "ejecutar evaluaciones comparativas (tipo split tests), pero también sirven "
1407
- "con propósitos informativos. Los Grupos de Anuncios no solamente pueden "
1408
- "tener múltiples anuncios, sino que también, un anuncio puede pertenecer a "
1409
- "múltiples grupos."
1410
-
1411
- #: ../admin/views/ad-group.php:60
1412
- msgid "How to display an Ad Group?"
1413
- msgstr "Cómo mostrar un Grupo de Anuncios?"
1414
-
1415
- #: ../admin/views/ad-group.php:62
1416
- #, php-format
1417
- msgid ""
1418
- "Examples on how to display an ad group? Find more help and examples in the "
1419
- "<a href=\"%s\" target=\"_blank\">manual</a>"
1420
- msgstr ""
1421
- "Ejemplos de cómo mostrar un Grupo de Anuncios? Encuentra más ayuda y "
1422
- "ejemplos en el <a href=\"%s\" target=\"_blank\">manual</a>"
1423
-
1424
- #: ../admin/views/ad-group.php:64
1425
- msgid "To display an ad group with the ID 6 in content fields"
1426
- msgstr "Para mostrar un Grupo de Anuncios con el ID 6 en los campos de contenido"
1427
-
1428
- #: ../admin/views/ad-group.php:67
1429
- msgid "To display an ad group with the ID 6 in template files"
1430
- msgstr "Para mostrar un Grupo de Anuncios con el ID 6 en los archivos de plantilla"
1431
-
1432
- #: ../admin/views/ad-group.php:87
1433
- msgid "Update Groups"
1434
- msgstr "Actualizar Grupos"
1435
-
1436
- #: ../admin/views/ad-info-top.php:6 ../classes/ad_placements.php:46
1437
- msgid "Before Content"
1438
- msgstr "Antes del Contenido"
1439
-
1440
- #: ../admin/views/ad-info-top.php:8 ../classes/ad_placements.php:51
1441
- msgid "After Content"
1442
- msgstr "Después del Contenido"
1443
-
1444
- #: ../admin/views/ad-info-top.php:22
1445
- #, php-format
1446
- msgid ""
1447
- "Learn more about your choices to display an ad in the <a href=\"%s\" "
1448
- "target=\"_blank\">manual</a>."
1449
- msgstr ""
1450
- "Aprender más acerca de tus opciones para mostrar un anuncio en el <a "
1451
- "href=\"%s\" target=\"_blank\">manual</a>."
1452
-
1453
- #: ../admin/views/ad-info.php:2
1454
- #, php-format
1455
- msgid "Ad Id: %s"
1456
- msgstr "ID del Anuncio: %s"
1457
-
1458
- #: ../admin/views/ad-info.php:5
1459
- msgid "theme function"
1460
- msgstr "Función para el Tema:"
1461
-
1462
- #: ../admin/views/ad-info.php:7
1463
- #, php-format
1464
- msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1465
- msgstr ""
1466
- "Encuentra más opciones de visualización en el <a href=\"%s\" "
1467
- "target=\"_blank\">manual</a>."
1468
-
1469
- #: ../admin/views/ad-info.php:12
1470
- msgid "click to change"
1471
- msgstr "Clic para cambiar"
1472
-
1473
- #: ../admin/views/ad-info.php:16
1474
- msgid "Add a description"
1475
- msgstr "Añadir una Descripción"
1476
-
1477
- #: ../admin/views/ad-info.php:19
1478
- msgid "Internal description or your own notes about this ad."
1479
- msgstr "Descripción interna, o tus propias notas, acerca de este anuncio."
1480
-
1481
- #: ../admin/views/ad-list-filters.php:2
1482
- msgid "all ad types"
1483
- msgstr "Todos los tipos de anuncios"
1484
-
1485
- #: ../admin/views/ad-list-filters.php:5
1486
- msgid "all ad sizes"
1487
- msgstr "Todos los tamaños de anuncios"
1488
-
1489
- #: ../admin/views/ad-list-filters.php:8
1490
- msgid "all ad dates"
1491
- msgstr "Todas las fechas de anuncios"
1492
-
1493
- #: ../admin/views/ad-list-filters.php:9
1494
- msgid "expired"
1495
- msgstr "Expirado"
1496
-
1497
- #: ../admin/views/ad-list-filters.php:10
1498
- msgid "any expiry date"
1499
- msgstr "Cualquier fecha de expiración"
1500
-
1501
- #: ../admin/views/ad-list-filters.php:11
1502
- msgid "planned"
1503
- msgstr "Planeado"
1504
-
1505
- #: ../admin/views/ad-list-filters.php:14
1506
- msgid "all ad groups"
1507
- msgstr "Todos los Grupos de Anuncios"
1508
-
1509
- #: ../admin/views/ad-main-metabox.php:3
1510
- msgid "No ad types defined"
1511
- msgstr "No hay tipos de anuncios definidos"
1512
-
1513
- #: ../admin/views/ad-output-metabox.php:1
1514
- msgid "Everything connected to the ads layout and output."
1515
- msgstr "Todo lo relacionado con el diseño y la visualización de los anuncios."
1516
-
1517
- #: ../admin/views/ad-output-metabox.php:4
1518
- msgid "Position"
1519
- msgstr "Posición:"
1520
-
1521
- #: ../admin/views/ad-output-metabox.php:6
1522
- msgid "- default -"
1523
- msgstr "- Defecto -"
1524
-
1525
- #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:52
1526
- msgid "default"
1527
- msgstr "Defecto"
1528
-
1529
- #: ../admin/views/ad-output-metabox.php:8
1530
- msgid "left"
1531
- msgstr "Izquierda"
1532
-
1533
- #: ../admin/views/ad-output-metabox.php:11
1534
- msgid "center"
1535
- msgstr "Centro"
1536
-
1537
- #: ../admin/views/ad-output-metabox.php:14
1538
- msgid "right"
1539
- msgstr "Derecha"
1540
-
1541
- #: ../admin/views/ad-output-metabox.php:18
1542
- msgid ""
1543
- "Check this if you don't want the following elements to float around the ad. "
1544
- "(adds a clearfix)"
1545
- msgstr ""
1546
- "Chequea esto si no quieres que los elementos sub-siguientes floten alrededor "
1547
- "del anuncio. (Añade un arreglo de espacio - clearfix)"
1548
-
1549
- #: ../admin/views/ad-output-metabox.php:22
1550
- msgid "Margin"
1551
- msgstr "Margen:"
1552
-
1553
- #: ../admin/views/ad-output-metabox.php:24
1554
- msgid "top:"
1555
- msgstr "Superior:"
1556
-
1557
- #: ../admin/views/ad-output-metabox.php:26
1558
- msgid "right:"
1559
- msgstr "Derecho:"
1560
-
1561
- #: ../admin/views/ad-output-metabox.php:28
1562
- msgid "bottom:"
1563
- msgstr "Inferior:"
1564
-
1565
- #: ../admin/views/ad-output-metabox.php:30
1566
- msgid "left:"
1567
- msgstr "Izquierdo:"
1568
-
1569
- #: ../admin/views/ad-output-metabox.php:32
1570
- msgid "tip: use this to add a margin around the ad"
1571
- msgstr "Tip: usa esto para añadir un margen alrededor del anuncio"
1572
-
1573
- #: ../admin/views/ad-output-metabox.php:35
1574
- msgid "container ID"
1575
- msgstr "ID del Contenedor"
1576
-
1577
- #: ../admin/views/ad-output-metabox.php:38
1578
- msgid "Specify the id of the ad container. Leave blank for random or no id."
1579
- msgstr ""
1580
- "Especificar el ID para el contenedor del anuncio. Dejar en blanco para un "
1581
- "valor aleatorio o para no tener un ID"
1582
-
1583
- #: ../admin/views/ad-output-metabox.php:41
1584
- msgid "container classes"
1585
- msgstr "Clases para el Contenedor"
1586
-
1587
- #: ../admin/views/ad-output-metabox.php:44
1588
- msgid ""
1589
- "Specify one or more classes for the container. Separate multiple classes "
1590
- "with a space"
1591
- msgstr ""
1592
- "Especificar múltiples clases para el contenedor. Separar múltiples clases "
1593
- "con un espacio"
1594
-
1595
- #: ../admin/views/ad-parameters-size.php:1
1596
- msgid "size"
1597
- msgstr "Tamaño"
1598
-
1599
- #: ../admin/views/ad-parameters-size.php:3
1600
- msgid "width"
1601
- msgstr "Ancho"
1602
-
1603
- #: ../admin/views/ad-parameters-size.php:4
1604
- msgid "height"
1605
- msgstr "Alto"
1606
-
1607
- #: ../admin/views/ad-submitbox-meta.php:6
1608
- msgid "Set expiry date"
1609
- msgstr "Establecer la fecha de expiración"
1610
-
1611
- #: ../admin/views/ad-submitbox-meta.php:12
1612
- msgid "Month"
1613
- msgstr "Mes"
1614
-
1615
- #: ../admin/views/ad-submitbox-meta.php:16
1616
- #, php-format
1617
- msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1618
- msgid "%1$s-%2$s"
1619
- msgstr "%1$s-%2$s"
1620
-
1621
- #: ../admin/views/ad-submitbox-meta.php:21
1622
- msgid "Day"
1623
- msgstr "Día"
1624
-
1625
- #: ../admin/views/ad-submitbox-meta.php:22
1626
- msgid "Year"
1627
- msgstr "Año"
1628
-
1629
- #: ../admin/views/ad-submitbox-meta.php:23
1630
- msgid "Hour"
1631
- msgstr "Hora"
1632
-
1633
- #: ../admin/views/ad-submitbox-meta.php:24
1634
- msgid "Minute"
1635
- msgstr "Minuto"
1636
-
1637
- #: ../admin/views/ad-submitbox-meta.php:29
1638
- #, php-format
1639
- msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1640
- msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1641
- msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
1642
-
1643
- #: ../admin/views/ad-visitor-metabox.php:4
1644
- msgid ""
1645
- "Display conditions that are based on the user. Use with caution on cached "
1646
- "websites."
1647
- msgstr ""
1648
- "Mostrar condiciones que están basadas en el usuario. Usar con cautela en "
1649
- "websites cacheados."
1650
-
1651
- #: ../admin/views/ad-visitor-metabox.php:28
1652
- msgid ""
1653
- "Visitor conditions limit the number of users who can see your ad. There is "
1654
- "no need to set visitor conditions if you want all users to see the ad."
1655
- msgstr ""
1656
- "Las condiciones del visitante limitan el número de usuarios que pueden ver "
1657
- "tu anuncio. No hay necesidad de establecer condiciones del visitante si "
1658
- "deseas que todos los usuarios vean el anuncio."
1659
-
1660
- #: ../admin/views/ad-visitor-metabox.php:30
1661
- #, php-format
1662
- msgid ""
1663
- "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
1664
- "if dynamic features get cached."
1665
- msgstr ""
1666
- "Revisa el almacenamiento-en-caché en <a href=\"%s\" target=\"_blank\">Advanced "
1667
- "Ads Pro</a> si las funcionalidades dinámicas son cacheadas."
1668
-
1669
- #: ../admin/views/ad-visitor-metabox.php:47
1670
- #, php-format
1671
- msgid ""
1672
- "Define the exact browser width for which an ad should be visible using the "
1673
- "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1674
- msgstr ""
1675
- "Definir el ancho exacto del navegador para los que un anuncio debe ser "
1676
- "visible usando el <a href=\"%s\" target=\"_blank\">Add-on responsable</a>."
1677
-
1678
- #: ../admin/views/ad-visitor-metabox.php:92
1679
- msgid ""
1680
- "The visitor conditions below are deprecated. Please use the new version of "
1681
- "visitor conditions to replace it."
1682
- msgstr ""
1683
- "Las condiciones del visitante de abajo están depreciadas. Por favor, utiliza "
1684
- "la nueva versión de las condiciones del visitante para reemplazarlas."
1685
-
1686
- #: ../admin/views/ad-visitor-metabox.php:98
1687
- msgid "Display on all devices"
1688
- msgstr "Mostrar en todos los dispositivos"
1689
-
1690
- #: ../admin/views/ad-visitor-metabox.php:102
1691
- msgid "only on mobile devices"
1692
- msgstr "Solamente en dispositivos móviles"
1693
-
1694
- #: ../admin/views/ad-visitor-metabox.php:106
1695
- msgid "not on mobile devices"
1696
- msgstr "No en dispositivos móviles"
1697
-
1698
- #: ../admin/views/debug.php:6 ../admin/views/settings.php:47
1699
- msgid "Debug Page"
1700
- msgstr "Página de Depuración"
1701
-
1702
- #: ../admin/views/debug.php:7
1703
- msgid "Work in progress"
1704
- msgstr "Trabajo en Progreso"
1705
-
1706
- #: ../admin/views/intro.php:18
1707
- msgid "5-Star Usability"
1708
- msgstr "Usabilidad 5- estrellas"
1709
-
1710
- #: ../admin/views/intro.php:19
1711
- msgid ""
1712
- "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1713
- "standards. If you know how to publish a post then you know how to create an "
1714
- "ad."
1715
- msgstr ""
1716
- "Advanced Ads es poderoso y fácil de usar porque está construido bajo los "
1717
- "estándares de WordPress. Si sabes cómo publicar una entrada, entonces sabrás "
1718
- "cómo crear un anuncio."
1719
-
1720
- #: ../admin/views/intro.php:23
1721
- msgid "5-Star Support"
1722
- msgstr "Soporte 5-estrellas"
1723
-
1724
- #: ../admin/views/intro.php:24
1725
- msgid ""
1726
- "I promise you the best supported ad management plugin for WordPress. Whether "
1727
- "a pro user or not, you can reach me easily through the support page, in the "
1728
- "chat on the homepage or replying to a newsletter."
1729
- msgstr ""
1730
- "Te prometo el plugin de administración de anuncios con mejor soporte para "
1731
- "WordPress. Seas un usuario pro o no, puedes localizarme fácilmente a través "
1732
- "de la página de soporte, en el chat de la página de inicio, o respondiendo a "
1733
- "mi boletín de noticias."
1734
-
1735
- #: ../admin/views/intro.php:28
1736
- msgid "5-Star Experience"
1737
- msgstr "Experiencia 5- estrellas"
1738
-
1739
- #: ../admin/views/intro.php:29
1740
- msgid ""
1741
- "Advanced Ads was built out of my own experience. I am personally using it to "
1742
- "serve millions of ad impressions per month and constantly test new ways to "
1743
- "optimize ad settings."
1744
- msgstr ""
1745
- "Advanced Ads fue construido en base a mi propia experiencia. Personalmente, "
1746
- "lo uso para manejar millones de impresiones de anuncios por mes y "
1747
- "constantemente pruebo nuevas formas de optimizar las configuraciones de los "
1748
- "anuncios."
1749
-
1750
- #: ../admin/views/intro.php:34
1751
- msgid "Welcome to <strong>Advanced Ads</strong>"
1752
- msgstr "Bienvenido a <strong>Advanced Ads</strong>\n"
1753
-
1754
- #: ../admin/views/intro.php:36
1755
- msgid "Let me give you an introduction into your future ad management solution."
1756
- msgstr ""
1757
- "Permíteme darte una introducción de tu futura solución en gestión de "
1758
- "anuncios."
1759
-
1760
- #: ../admin/views/intro.php:61
1761
- msgid "Next Steps"
1762
- msgstr "Próximos Pasos"
1763
-
1764
- #: ../admin/views/intro.php:64
1765
- msgid "Subscribe to the Mailing List"
1766
- msgstr "Suscríbete a la Lista de Correos"
1767
-
1768
- #: ../admin/views/intro.php:65
1769
- msgid "Subscribe to the newsletter and instantly"
1770
- msgstr "Suscríbete instantáneamente al boletín de noticias"
1771
-
1772
- #: ../admin/views/intro.php:67
1773
- msgid "get 2 free add-ons."
1774
- msgstr "Obtén 2 add-ons gratis"
1775
-
1776
- #: ../admin/views/intro.php:68
1777
- msgid "reply to the welcome message with a question."
1778
- msgstr "Responde al mensaje de bienvenida con una pregunta."
1779
-
1780
- #: ../admin/views/intro.php:69
1781
- msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1782
- msgstr "Suscríbete a un grupo dedicado para el tutorial o para los tips de AdSense."
1783
-
1784
- #: ../admin/views/intro.php:82
1785
- msgid "Display your ad"
1786
- msgstr "Muestra Tu Anuncio"
1787
-
1788
- #: ../admin/views/intro.php:83
1789
- msgid ""
1790
- "You can display your ad using a shortcode, widget or one of the powerful "
1791
- "placements. Placements help you to inject ads into the content or place them "
1792
- "on your site without coding."
1793
- msgstr ""
1794
- "Puedes mostrar tu anuncio utilizando un shortcode, un widget, o alguna de "
1795
- "las poderosas colocaciones disponibles. Las colocaciones te ayudan a "
1796
- "inyectar anuncios dentro del contenido, o a colocarlos en algún lugar de tu "
1797
- "sitio sin necesidad de que tengas que programar."
1798
-
1799
- #: ../admin/views/intro.php:85
1800
- msgid "List of all available placements"
1801
- msgstr "Listado de todas las colocaciones disponibles"
1802
-
1803
- #: ../admin/views/intro.php:86
1804
- msgid "Create a placement"
1805
- msgstr "Crear una Colocación"
1806
-
1807
- #: ../admin/views/placements.php:8
1808
- msgid ""
1809
- "Couldn’t create the new placement. Please check your form field and whether "
1810
- "the name is already in use."
1811
- msgstr ""
1812
- "No se pudo crear la nueva colocación. Por favor, revisa el campo del "
1813
- "formulario y si el nombre ya está en uso."
1814
-
1815
- #: ../admin/views/placements.php:10
1816
- msgid "Placements updated"
1817
- msgstr "Colocaciones Actualizadas"
1818
-
1819
- #: ../admin/views/placements.php:15
1820
- msgid ""
1821
- "Placements are physically places in your theme and posts. You can use them "
1822
- "if you plan to change ads and ad groups on the same place without the need "
1823
- "to change your templates."
1824
- msgstr ""
1825
- "Las Colocaciones son lugares físicos dentro de tu tema y tus entradas. "
1826
- "Puedes utilizarlas si planeas cambiar anuncios o Grupos de Anuncios en el "
1827
- "mismo lugar y sin la necesidad de cambiar tus plantillas (templates)."
1828
-
1829
- #: ../admin/views/placements.php:16
1830
- #, php-format
1831
- msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1832
- msgstr ""
1833
- "Consulta también el manual para más información sobre <a href=\"%s\">Las "
1834
- "Colocaciones</a>. "
1835
-
1836
- #: ../admin/views/placements.php:25
1837
- msgid "Options"
1838
- msgstr "Opciones"
1839
-
1840
- #: ../admin/views/placements.php:42
1841
- #, php-format
1842
- msgid ""
1843
- "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1844
- "if the responsible add-on is activated."
1845
- msgstr ""
1846
- "El tipo de colocación \"%s\" no se encuentra y fue reiniciado a su \"valor por "
1847
- "defecto\". <br/> Por favor, chequea si el add-on que es responsable de este "
1848
- "funcionamiento está activado."
1849
-
1850
- #: ../admin/views/placements.php:58
1851
- msgid "show usage"
1852
- msgstr "Mostrar uso"
1853
-
1854
- #: ../admin/views/placements.php:70
1855
- msgid "Item"
1856
- msgstr "Item"
1857
-
1858
- #: ../admin/views/placements.php:72 ../admin/views/placements.php:176
1859
- msgid "--not selected--"
1860
- msgstr "--No Seleccionado--"
1861
-
1862
- #: ../admin/views/placements.php:92
1863
- msgid "Inject"
1864
- msgstr "Inyectados"
1865
-
1866
- #: ../admin/views/placements.php:93
1867
- msgid "after"
1868
- msgstr "Después"
1869
-
1870
- #: ../admin/views/placements.php:93
1871
- msgid "before"
1872
- msgstr "Antes"
1873
-
1874
- #: ../admin/views/placements.php:113
1875
- msgid "start counting from bottom"
1876
- msgstr "Empezar contando desde el final"
1877
-
1878
- #: ../admin/views/placements.php:116
1879
- msgid "Important Notice"
1880
- msgstr "Notificación Importante"
1881
-
1882
- #: ../admin/views/placements.php:116
1883
- msgid ""
1884
- "Your server is missing an extension. This might break the content injection."
1885
- "<br/>Ignore this warning if everything works fine or else ask your hosting "
1886
- "provider to enable <em>mbstring</em>."
1887
- msgstr ""
1888
- "A tu servidor le hace falta una extensión. Esto puede romper la inyección de "
1889
- "contenido.<br/> Ignora esta advertencia si todo está funcionando bien. De lo "
1890
- "contrario, pídele a tu compañía de hospedaje habilitar <em>mbstring</em>."
1891
-
1892
- #: ../admin/views/placements.php:126
1893
- msgid "advanced options"
1894
- msgstr "Opciones Avanzadas"
1895
-
1896
- #: ../admin/views/placements.php:134
1897
- msgctxt "checkbox to remove placement"
1898
- msgid "delete"
1899
- msgstr "Eliminar"
1900
-
1901
- #: ../admin/views/placements.php:140
1902
- msgid "Save Placements"
1903
- msgstr "Guardar Colocaciones"
1904
-
1905
- #: ../admin/views/placements.php:142
1906
- msgid "Create a new placement"
1907
- msgstr "Crear una Nueva Colocación"
1908
-
1909
- #: ../admin/views/placements.php:143
1910
- msgid "New Placement"
1911
- msgstr "Nueva Colocación"
1912
-
1913
- #: ../admin/views/placements.php:149
1914
- msgid "Choose a placement type"
1915
- msgstr "Selecciona un tipo de colocación"
1916
-
1917
- #: ../admin/views/placements.php:150
1918
- #, php-format
1919
- msgid ""
1920
- "Placement types define where the ad is going to be displayed. Learn more "
1921
- "about the different types from the <a href=\"%s\">manual</a>"
1922
- msgstr ""
1923
- "Los tipos de colocaciones definen en donde se debe mostrar el anuncio. "
1924
- "Aprende más sobre los diferentes tipos en el <a href=\"%s\">manual</a>."
1925
-
1926
- #: ../admin/views/placements.php:167
1927
- msgid "Please select a placement type."
1928
- msgstr "Por favor, selecciona un tipo de colocación."
1929
-
1930
- #: ../admin/views/placements.php:169
1931
- msgid "Choose a Name"
1932
- msgstr "Selecciona un Nombre"
1933
-
1934
- #: ../admin/views/placements.php:170
1935
- msgid ""
1936
- "The name of the placement is only visible to you. Tip: choose a descriptive "
1937
- "one, e.g. <em>Below Post Headline</em>."
1938
- msgstr ""
1939
- "El nombre de la colocación es solamente visible para ti. Tip: selecciona un "
1940
- "nombre descriptivo, ej: <em>Debajo del Encabezado de la Entrada</em>."
1941
-
1942
- #: ../admin/views/placements.php:171
1943
- msgid "Placement Name"
1944
- msgstr "Nombre de la Colocación"
1945
-
1946
- #: ../admin/views/placements.php:172
1947
- msgid "Please enter a name for your placement."
1948
- msgstr "Por favor, ingresa un nombre para tu colocación."
1949
-
1950
- #: ../admin/views/placements.php:173
1951
- msgid "Choose the Ad or Group"
1952
- msgstr "Selecciona el Anuncio o Grupo"
1953
-
1954
- #: ../admin/views/placements.php:174
1955
- msgid "The ad or group that should be displayed."
1956
- msgstr "El anuncio o grupo que debe ser mostrado."
1957
-
1958
- #: ../admin/views/placements.php:193
1959
- msgid "Save New Placement"
1960
- msgstr "Guardar la Nueva Colocación"
1961
-
1962
- #: ../admin/views/post-ad-settings-metabox.php:3
1963
- msgid "Disable ads on this page"
1964
- msgstr "Deshabilitar anuncios en esta página"
1965
-
1966
- #: ../admin/views/setting-license.php:5
1967
- msgid "Your license expired."
1968
- msgstr "Tu licencia expiró."
1969
-
1970
- #: ../admin/views/setting-license.php:14
1971
- #, php-format
1972
- msgid "(%d days left)"
1973
- msgstr "(%d días restantes)"
1974
-
1975
- #: ../admin/views/setting-license.php:18
1976
- msgid "License key"
1977
- msgstr "Llave de Licencia"
1978
-
1979
- #: ../admin/views/setting-license.php:28
1980
- msgid "Deactivate License"
1981
- msgstr "Desactivar Licencia"
1982
-
1983
- #: ../admin/views/setting-license.php:35
1984
- msgid "Activate License"
1985
- msgstr "Activar Licencia"
1986
-
1987
- #: ../admin/views/setting-license.php:39
1988
- msgid "License key invalid"
1989
- msgstr "Llave de licencia inválida"
1990
-
1991
- #: ../admin/views/setting-license.php:42
1992
- msgid "active"
1993
- msgstr "Activa"
1994
-
1995
- #: ../admin/views/settings-disable-ads.php:3
1996
- msgid "Disable all ads in frontend"
1997
- msgstr "Deshabilitar todos los anuncios en el frente del sitio"
1998
-
1999
- #: ../admin/views/settings-disable-ads.php:4
2000
- msgid ""
2001
- "Use this option to disable all ads in the frontend, but still be able to use "
2002
- "the plugin."
2003
- msgstr ""
2004
- "Usar esta opción para deshabilitar todos los anuncios en el frente del sitio "
2005
- "y todavía tener la capacidad de usar el plugin."
2006
-
2007
- #: ../admin/views/settings-disable-ads.php:8
2008
- msgid "Disable ads on 404 error pages"
2009
- msgstr "Deshabilitar anuncios en las páginas de error 404"
2010
-
2011
- #: ../admin/views/settings-disable-ads.php:12
2012
- msgid "Disable ads on non-singular pages"
2013
- msgstr "Deshabilitar anuncios en páginas no-singulares"
2014
-
2015
- #: ../admin/views/settings-disable-ads.php:13
2016
- msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
2017
- msgstr ""
2018
- "Ej. Páginas de archivo como categorías, etiquetas, autores, frente de la "
2019
- "página (si es una lista)"
2020
-
2021
- #: ../admin/views/settings-disable-ads.php:16
2022
- msgid "Disable ads on secondary queries"
2023
- msgstr "Deshabilitar anuncios en consultas (queries) secundarias"
2024
-
2025
- #: ../admin/views/settings-disable-ads.php:17
2026
- msgid ""
2027
- "Secondary queries are custom queries of posts outside the main query of a "
2028
- "page. Try this option if you see ads injected on places where they shouldn’t "
2029
- "appear."
2030
- msgstr ""
2031
- "Las consultas (queries) secundarias son consultas personalizadas de entradas "
2032
- "fuera de la consulta principal de una página. Intenta habilitar esta opción "
2033
- "si ves anuncios inyectados en lugares en donde no deberían aparecer."
2034
-
2035
- #: ../admin/views/settings.php:36
2036
- msgid "Save settings on this page"
2037
- msgstr "Guardar las configuraciones de esta página"
2038
-
2039
- #: ../admin/views/settings.php:48
2040
- msgid "Welcome Page"
2041
- msgstr "Página de Bienvenida"
2042
-
2043
- #: ../admin/views/settings.php:49
2044
- msgid "Advanced Ads on WordPress.org"
2045
- msgstr "Advanced Ads en WordPress.org"
2046
-
2047
- #: ../admin/views/settings.php:49
2048
- msgid "Advanced Ads on wp.org"
2049
- msgstr "Advanced Ads en wp.org"
2050
-
2051
- #: ../admin/views/settings.php:50
2052
- msgid "the company behind Advanced Ads"
2053
- msgstr "la compañía detrás de Advanced Ads"
2054
-
2055
- #: ../admin/views/support.php:8
2056
- msgid "Possible Issues"
2057
- msgstr "Posibles Problemas"
2058
-
2059
- #: ../admin/views/support.php:9
2060
- msgid ""
2061
- "Please fix the red highlighted issues on this page or try to understand "
2062
- "their consequences before contacting support."
2063
- msgstr ""
2064
- "Por favor, arregla los problemas resaltados en rojo en esta página o intenta "
2065
- "entender sus consecuencias antes de contactar a soporte."
2066
-
2067
- #: ../admin/views/support.php:13
2068
- #, php-format
2069
- msgid ""
2070
- "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2071
- "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2072
- "Please ask your hosting provider for more information."
2073
- msgstr ""
2074
- "Tu <strong>versión de PHP (%s) es muy vieja</strong>. Advanced Ads fue "
2075
- "diseñado para PHP 5.3 o mayor. Puede que funcione, pero actualizar PHP es "
2076
- "altamente recomendado. Por favor, consulta con tu compañía de hospedaje para "
2077
- "mayor información."
2078
-
2079
- #: ../admin/views/support.php:16
2080
- #, php-format
2081
- msgid ""
2082
- "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2083
- "rotation or visitor conditions might not work properly. Use the cache-"
2084
- "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
2085
- "ads dynamically."
2086
- msgstr ""
2087
- "Tu <strong>sitio web utiliza caché</strong>. Algunas características "
2088
- "dinámicas, como la rotación de anuncios o las condiciones del visitante, "
2089
- "puede que no funcionen correctamente. Utiliza la característica de "
2090
- "almacenamiento-en-caché de <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
2091
- "para cargar los anuncios dinámicamente."
2092
-
2093
- #: ../admin/views/support.php:19
2094
- msgid "There is a <strong>new WordPress version available</strong>. Please update."
2095
- msgstr ""
2096
- "Hay una <strong>nueva versión de WordPress disponible</strong>. Por favor, "
2097
- "actualízala."
2098
-
2099
- #: ../admin/views/support.php:22
2100
- msgid "There are <strong>plugin updates available</strong>. Please update."
2101
- msgstr ""
2102
- "Hay <strong>actualizaciones del plugin disponibles</strong>. Por favor, "
2103
- "actualízalo."
2104
-
2105
- #: ../admin/views/support.php:25
2106
- #, php-format
2107
- msgid ""
2108
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
2109
- "missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
2110
- msgstr ""
2111
- "Una o más llaves de licencia para <strong>los add-ons avanzados son "
2112
- "inválidas o no se encuentran</strong>. Por favor, adiciona llaves de "
2113
- "licencia válidas <a href=\"%s\">aquí</a>."
2114
-
2115
- #: ../admin/views/support.php:31
2116
- #, php-format
2117
- msgid ""
2118
- "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2119
- "site performance, it is known to alter code, including scripts from ad "
2120
- "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
2121
- "support for Autoptimize."
2122
- msgstr ""
2123
- "<strong>Autoptimize plugin detectado</strong>. A pesar de que este plugin es "
2124
- "muy bueno para el rendimiento del sitio, también es bien sabido que tiende a "
2125
- "modificar el código, incluyendo scripts de redes de anuncios. <a href=\"%s\" "
2126
- "target=\"_blank\">Advanced Ads Pro</a> posee un soporte incorporado para "
2127
- "Autoptimize."
2128
-
2129
- #: ../admin/views/support.php:34
2130
- #, php-format
2131
- msgid ""
2132
- "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2133
- "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2134
- msgstr ""
2135
- "Plugins que se conocen que causan problemas (parciales): "
2136
- "<strong>%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Más Información</a>."
2137
-
2138
- #: ../admin/views/support.php:38
2139
- #, php-format
2140
- msgid ""
2141
- "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2142
- "href=\"%s\">settings</a>."
2143
- msgstr ""
2144
- "Los anuncios están deshabilitados para todas o algunas páginas. Ver "
2145
- "\"anuncios deshabilitados\" en <a href=\"%s\">configuraciones</a>."
2146
-
2147
- #: ../admin/views/support.php:49
2148
- msgid "Search"
2149
- msgstr "Buscar"
2150
-
2151
- #: ../admin/views/support.php:50
2152
- msgid ""
2153
- "Use the following form to search for solutions in the manual on "
2154
- "wpadvancedads.com"
2155
- msgstr ""
2156
- "Usa el siguiente formulario para buscar soluciones en el manual de "
2157
- "wpadvancedads.com"
2158
-
2159
- #: ../admin/views/support.php:53
2160
- msgid "search"
2161
- msgstr "Buscar"
2162
-
2163
- #: ../admin/views/support.php:55
2164
- msgid "Contact"
2165
- msgstr "Contacto"
2166
-
2167
- #: ../admin/views/support.php:56
2168
- #, php-format
2169
- msgid ""
2170
- "Please search the manual for a solution and take a look at <a href=\"%s\" "
2171
- "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2172
- msgstr ""
2173
- "Por favor, busca en el manual para una solución y échale un vistazo a la "
2174
- "sección de <a href=\"%s\" target=\"_blank\"> Anuncios no aparecen?</a> antes de "
2175
- "contactarme por ayuda."
2176
-
2177
- #: ../admin/views/support.php:58
2178
- msgid "Email was successfully sent."
2179
- msgstr "El correo electrónico fue enviado exitosamente."
2180
-
2181
- #: ../admin/views/support.php:67
2182
- msgid "your email"
2183
- msgstr "Tu correo electrónico"
2184
-
2185
- #: ../admin/views/support.php:71
2186
- msgid "your name"
2187
- msgstr "Tu nombre"
2188
-
2189
- #: ../admin/views/support.php:75
2190
- msgid "your message"
2191
- msgstr "Tu mensaje"
2192
-
2193
- #: ../admin/views/support.php:80
2194
- msgid "send"
2195
- msgstr "Enviar"
2196
-
2197
- #: ../admin/views/notices/adblock.php:3
2198
- msgid ""
2199
- "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2200
- "ad setup."
2201
- msgstr ""
2202
- "Por favor, deshabilita tu <strong>bloqueador de anuncios "
2203
- "(AdBlocker)</strong> para prevenir problemas con la configuración de tu "
2204
- "anuncio."
2205
-
2206
- #: ../classes/ad_placements.php:31
2207
- msgid "Manual Placement"
2208
- msgstr "Colocación Manual"
2209
-
2210
- #: ../classes/ad_placements.php:32
2211
- msgid "Manual placement to use as function or shortcode."
2212
- msgstr "Colocación manual para usar como Función o Shortcode."
2213
-
2214
- #: ../classes/ad_placements.php:36
2215
- msgid "Header Code"
2216
- msgstr "Código de Encabezado"
2217
-
2218
- #: ../classes/ad_placements.php:37
2219
- msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
2220
- msgstr ""
2221
- "Inyectar en el encabezado (antes de la etiqueta &lt;/head&gt;, que con "
2222
- "frecuencia no es visible)."
2223
-
2224
- #: ../classes/ad_placements.php:41
2225
- msgid "Footer Code"
2226
- msgstr "Código del Pie de Página"
2227
-
2228
- #: ../classes/ad_placements.php:42
2229
- msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
2230
- msgstr ""
2231
- "Inyectado en el Pie de Página (antes de la etiqueta de cierre del &lt;"
2232
- "/body&gt;). "
2233
-
2234
- #: ../classes/ad_placements.php:47
2235
- msgid "Injected before the post content."
2236
- msgstr "Inyectado antes del contenido de la entrada."
2237
-
2238
- #: ../classes/ad_placements.php:52
2239
- msgid "Injected after the post content."
2240
- msgstr "Inyectado después del contenido de la entrada."
2241
-
2242
- #: ../classes/ad_placements.php:56
2243
- msgid "Post Content"
2244
- msgstr "Contenido de la Entrada"
2245
-
2246
- #: ../classes/ad_placements.php:57
2247
- msgid ""
2248
- "Injected into the post content. You can choose the paragraph after which the "
2249
- "ad content is displayed."
2250
- msgstr ""
2251
- "Inyectado en el contenido de la entrada. Puedes elegir el párrafo en el que "
2252
- "inmediatamente después el anuncio se mostrará."
2253
-
2254
- #: ../classes/ad_placements.php:61
2255
- msgid "Sidebar Widget"
2256
- msgstr "Widget de la Barra Lateral"
2257
-
2258
- #: ../classes/ad_placements.php:62
2259
- msgid ""
2260
- "Create a sidebar widget with an ad. Can be placed and used like any other "
2261
- "widget."
2262
- msgstr ""
2263
- "Crear un widget de barra lateral con un anuncio. Puede ser colocado y "
2264
- "utilizado como cualquier otro widget."
2265
-
2266
- #: ../classes/ad_placements.php:210
2267
- #, php-format
2268
- msgid "paragraph (%s)"
2269
- msgstr "Párrafo (%s)"
2270
-
2271
- #: ../classes/ad_placements.php:212
2272
- #, php-format
2273
- msgid "headline 2 (%s)"
2274
- msgstr "Encabezado 2 (%s)"
2275
-
2276
- #: ../classes/ad_placements.php:213
2277
- #, php-format
2278
- msgid "headline 3 (%s)"
2279
- msgstr "Encabezado 3 (%s)"
2280
-
2281
- #: ../classes/ad_placements.php:214
2282
- #, php-format
2283
- msgid "headline 4 (%s)"
2284
- msgstr "Encabezado 4 (%s)"
2285
-
2286
- #: ../classes/ad_type_content.php:35
2287
- msgid "Rich Content"
2288
- msgstr "Contenido Enriquecido"
2289
-
2290
- #: ../classes/ad_type_content.php:36
2291
- msgid ""
2292
- "The full content editor from WordPress with all features like shortcodes, "
2293
- "image upload or styling, but also simple text/html mode for scripts and code."
2294
- msgstr ""
2295
- "El editor de contenido de WordPress completo con todas las características "
2296
- "como shortcodes, carga de imágenes o estilos, y también un modo simple de "
2297
- "texto/html para scripts y código."
2298
-
2299
- #: ../classes/ad_type_image.php:34
2300
- msgid "Image Ad"
2301
- msgstr "Anuncio con Imagen"
2302
-
2303
- #: ../classes/ad_type_image.php:35
2304
- msgid "Ads in various image formats."
2305
- msgstr "Anuncios en varios formatos de imagen."
2306
-
2307
- #: ../classes/ad_type_image.php:55
2308
- msgid "Insert File"
2309
- msgstr "Insertar Archivo"
2310
-
2311
- #: ../classes/ad_type_image.php:55
2312
- msgid "Insert"
2313
- msgstr "Insertar"
2314
-
2315
- #: ../classes/ad_type_image.php:55
2316
- msgid "select image"
2317
- msgstr "Seleccionar Imagen"
2318
-
2319
- #: ../classes/ad_type_image.php:56
2320
- msgid "edit"
2321
- msgstr "Editar"
2322
-
2323
- #: ../classes/ad_type_image.php:65
2324
- msgid "url"
2325
- msgstr "URL"
2326
-
2327
- #: ../classes/ad_type_image.php:67
2328
- #, php-format
2329
- msgid ""
2330
- "Pro: Open this url in a new window and track impressions and clicks with the "
2331
- "<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
2332
- msgstr ""
2333
- "Pro: Abre esta URL en una ventana nueva y rastrea las impresiones y los "
2334
- "clics con el <a href=\"%s\" target=\"_blank\">add-on de Rastreo</a>"
2335
-
2336
- #: ../classes/ad_type_plain.php:31
2337
- msgid "Plain Text and Code"
2338
- msgstr "Texto Simple y Código"
2339
-
2340
- #: ../classes/ad_type_plain.php:32
2341
- msgid ""
2342
- "Simple text editor without any filters. You might use it to display "
2343
- "unfiltered content, php code or javascript. Shortcodes and other WordPress "
2344
- "content field magic does not work here."
2345
- msgstr ""
2346
- "Editor de texto simple sin ningún filtro. Lo puedes usar para mostrar "
2347
- "contenido no filtrado, código PHP o JavaScript. Sin embargo, los shortcodes "
2348
- "y otro contenido del campo mágico de WordPress no funciona aquí."
2349
-
2350
- #: ../classes/ad_type_plain.php:52
2351
- msgid "Insert plain text or code into this field."
2352
- msgstr "Insertar texto simple o código en este campo."
2353
-
2354
- #: ../classes/ad_type_plain.php:88
2355
- msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2356
- msgstr "Ejecutar código PHP (enmarcado en <code>&lt;?php ?&gt;</code>)"
2357
-
2358
- #: ../classes/checks.php:223
2359
- #, php-format
2360
- msgid ""
2361
- "Possible conflict between jQueryUI library, used by Advanced Ads and other "
2362
- "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
2363
- "misfortunate formats in forms, but should not damage features."
2364
- msgstr ""
2365
- "Potencial conflicto entre la librería jQueryUI, usada por Advanced Ads, y "
2366
- "otras librerías (probablemente <a href=\"%s\">Twitter Bootstrap</a>). Esto "
2367
- "puede crear formatos distorsionados en formularios, pero no debería dañar "
2368
- "ninguna funcionalidad."
2369
-
2370
- #: ../classes/display-conditions.php:70 ../includes/array_ad_conditions.php:40
2371
- msgid "Choose the public post types on which to display the ad."
2372
- msgstr "Selecciona los post types públicos en los cuales mostrar el anuncio."
2373
-
2374
- #: ../classes/display-conditions.php:77 ../includes/array_ad_conditions.php:58
2375
- msgid ""
2376
- "Choose on which individual posts, pages and public post type pages you want "
2377
- "to display or hide ads."
2378
- msgstr ""
2379
- "Seleccionar en que entradas individuales, páginas y páginas públicas post "
2380
- "type deseas mostrar o ocultar anuncios."
2381
-
2382
- #: ../classes/display-conditions.php:336
2383
- msgctxt "display the terms search field on ad edit page"
2384
- msgid "add more terms"
2385
- msgstr "Añadir más términos "
2386
-
2387
- #: ../classes/display-conditions.php:337
2388
- msgid "add more terms"
2389
- msgstr "Añadir más términos"
2390
-
2391
- #: ../classes/display-conditions.php:339
2392
- msgid "term name or id"
2393
- msgstr "Nombre del término o ID"
2394
-
2395
- #: ../classes/display-conditions.php:445 ../includes/array_ad_conditions.php:63
2396
- msgid "Home Page"
2397
- msgstr "Página de Inicio"
2398
-
2399
- #: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:64
2400
- msgid "show on Home page"
2401
- msgstr "Mostrar en Página de Inicio"
2402
-
2403
- #: ../classes/display-conditions.php:450 ../includes/array_ad_conditions.php:68
2404
- msgid "Singular Pages"
2405
- msgstr "Páginas Singulares"
2406
-
2407
- #: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:69
2408
- msgid "show on singular pages/posts"
2409
- msgstr "Mostrar en páginas/entradas singulares"
2410
-
2411
- #: ../classes/display-conditions.php:455 ../includes/array_ad_conditions.php:73
2412
- msgid "Archive Pages"
2413
- msgstr "Páginas de Archivo"
2414
-
2415
- #: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:74
2416
- msgid "show on any type of archive page (category, tag, author and date)"
2417
- msgstr ""
2418
- "Mostrar en cualquier tipo de página de archivo (categoría, etiqueta, autor y "
2419
- "fecha)"
2420
-
2421
- #: ../classes/display-conditions.php:460 ../includes/array_ad_conditions.php:78
2422
- msgid "Search Results"
2423
- msgstr "Resultados de la Búsqueda"
2424
-
2425
- #: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:79
2426
- msgid "show on search result pages"
2427
- msgstr "Mostrar en páginas de resultados de búsquedas"
2428
-
2429
- #: ../classes/display-conditions.php:465 ../includes/array_ad_conditions.php:83
2430
- msgid "404 Page"
2431
- msgstr "Páginas 404"
2432
-
2433
- #: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:84
2434
- msgid "show on 404 error page"
2435
- msgstr "Mostrar en páginas de error 404"
2436
-
2437
- #: ../classes/display-conditions.php:470 ../includes/array_ad_conditions.php:88
2438
- msgid "Attachment Pages"
2439
- msgstr "Páginas Adjuntas"
2440
-
2441
- #: ../classes/display-conditions.php:471 ../includes/array_ad_conditions.php:89
2442
- msgid "show on attachment pages"
2443
- msgstr "Mostrar en páginas adjuntas"
2444
-
2445
- #: ../classes/display-conditions.php:475 ../includes/array_ad_conditions.php:93
2446
- msgid "Secondary Queries"
2447
- msgstr "Consultas (Queries) Secundarias "
2448
-
2449
- #: ../classes/display-conditions.php:476 ../includes/array_ad_conditions.php:94
2450
- msgid "allow ads in secondary queries"
2451
- msgstr "Permitir anuncios en consultas (queries) secundarias "
2452
-
2453
- #: ../classes/EDD_SL_Plugin_Updater.php:177
2454
- #, php-format
2455
- msgid ""
2456
- "There is a new version of %1$s available. <a target=\"_blank\" "
2457
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
2458
- msgstr ""
2459
- "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
2460
- "class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a>."
2461
-
2462
- #: ../classes/EDD_SL_Plugin_Updater.php:184
2463
- #, php-format
2464
- msgid ""
2465
- "There is a new version of %1$s available. <a target=\"_blank\" "
2466
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
2467
- "href=\"%4$s\">update now</a>."
2468
- msgstr ""
2469
- "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
2470
- "class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a> o <a "
2471
- "href=\"%4$s\">actualízala ahora</a>."
2472
-
2473
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2474
- msgid "You do not have permission to install plugin updates"
2475
- msgstr "No tienes permiso para instalar actualizaciones de plugins"
2476
-
2477
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2478
- msgid "Error"
2479
- msgstr "Error"
2480
-
2481
- #: ../classes/visitor-conditions.php:32
2482
- msgid "mobile device"
2483
- msgstr "Dispositivo Móvil"
2484
-
2485
- #: ../classes/visitor-conditions.php:33
2486
- msgid "Display ads only on mobile devices or hide them."
2487
- msgstr "Mostrar anuncios solamente en dispositivos móviles u ocultarlos."
2488
-
2489
- #: ../classes/visitor-conditions.php:39
2490
- msgid "logged in visitor"
2491
- msgstr "Visitante Conectado"
2492
-
2493
- #: ../classes/visitor-conditions.php:40
2494
- msgid "Whether the visitor has to be logged in or not in order to see the ads."
2495
- msgstr "Si el visitante debe estar conectado o no para ver los anuncios."
2496
-
2497
- #: ../classes/visitor-conditions.php:73
2498
- #, php-format
2499
- msgid ""
2500
- "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2501
- "target=\"_blank\">Responsive add-on</a>"
2502
- msgstr ""
2503
- "Pro: Mostrar anuncios según el espacio disponible en el dispositivo usando "
2504
- "el <a href=\"%s\" target=\"_blank\">Add-on Responsable</a>"
2505
-
2506
- #: ../classes/visitor-conditions.php:101
2507
- msgid "is"
2508
- msgstr "Es"
2509
-
2510
- #: ../classes/visitor-conditions.php:102
2511
- msgid "is not"
2512
- msgstr "No es"
2513
-
2514
- #: ../classes/visitor-conditions.php:136
2515
- msgid "equal"
2516
- msgstr "Igual"
2517
-
2518
- #: ../classes/visitor-conditions.php:137
2519
- msgid "equal or higher"
2520
- msgstr "Igual o mayor"
2521
-
2522
- #: ../classes/visitor-conditions.php:138
2523
- msgid "equal or lower"
2524
- msgstr "Igual o menor"
2525
-
2526
- #: ../classes/visitor-conditions.php:168
2527
- msgid "contains"
2528
- msgstr "Contiene"
2529
-
2530
- #: ../classes/visitor-conditions.php:169
2531
- msgid "starts with"
2532
- msgstr "Comienza con"
2533
-
2534
- #: ../classes/visitor-conditions.php:170
2535
- msgid "ends with"
2536
- msgstr "Termina con"
2537
-
2538
- #: ../classes/visitor-conditions.php:171
2539
- msgid "matches"
2540
- msgstr "Equivale a"
2541
-
2542
- #: ../classes/visitor-conditions.php:172
2543
- msgid "matches regex"
2544
- msgstr "Equivale a regex"
2545
-
2546
- #: ../classes/visitor-conditions.php:173
2547
- msgid "does not contain"
2548
- msgstr "No contiene"
2549
-
2550
- #: ../classes/visitor-conditions.php:174
2551
- msgid "does not start with"
2552
- msgstr "No comienza con"
2553
-
2554
- #: ../classes/visitor-conditions.php:175
2555
- msgid "does not end with"
2556
- msgstr "No termina con"
2557
-
2558
- #: ../classes/visitor-conditions.php:176
2559
- msgid "does not match"
2560
- msgstr "No equivale a"
2561
-
2562
- #: ../classes/visitor-conditions.php:177
2563
- msgid "does not match regex"
2564
- msgstr "No equivale a regex"
2565
-
2566
- #: ../classes/widget.php:25
2567
- msgid "Display Ads and Ad Groups."
2568
- msgstr "Mostrar Anuncios y Grupos de Anuncios."
2569
-
2570
- #: ../classes/widget.php:67
2571
- msgid "Title:"
2572
- msgstr "Título:"
2573
-
2574
- #: ../includes/array_ad_conditions.php:39
2575
- msgid "Post Types"
2576
- msgstr "Post Types"
2577
-
2578
- #: ../includes/array_ad_conditions.php:45
2579
- msgid "Categories, Tags and Taxonomies"
2580
- msgstr "Categorías, Etiquetas y Taxonomías"
2581
-
2582
- #: ../includes/array_ad_conditions.php:46
2583
- msgid ""
2584
- "Choose terms from public category, tag and other taxonomies a post must "
2585
- "belong to in order to have ads."
2586
- msgstr ""
2587
- "Seleccionar términos de categorías públicas, etiquetas y otras taxonomías a "
2588
- "las que una entrada debe pertenecer para tener anuncios."
2589
-
2590
- #: ../includes/array_ad_conditions.php:51
2591
- msgid "Category Archives"
2592
- msgstr "Archivos de Categorías"
2593
-
2594
- #: ../includes/array_ad_conditions.php:52
2595
- msgid "comma seperated IDs of category archives"
2596
- msgstr "IDs de archivos de categorías separados por coma "
2597
-
2598
- #: ../includes/array_ad_conditions.php:57
2599
- msgid "Individual Posts, Pages and Public Post Types"
2600
- msgstr "Entradas Individuales, Páginas y Post Types Públicos"
2601
-
2602
- #: ../modules/ad-blocker/admin/admin.php:133
2603
- msgid "The asset folder was rebuilt successfully"
2604
- msgstr "El directorio de archivos fue reconstruido exitosamente"
2605
-
2606
- #: ../modules/ad-blocker/admin/admin.php:218
2607
- msgid "Ad blocker fix"
2608
- msgstr "Reparación de Ad blocker"
2609
-
2610
- #: ../modules/ad-blocker/admin/admin.php:257
2611
- msgid "There is no writable upload folder"
2612
- msgstr "No hay directorio escribible de cargas y subidas "
2613
-
2614
- #: ../modules/ad-blocker/admin/admin.php:278
2615
- #, php-format
2616
- msgid "Unable to rename \"%s\" directory"
2617
- msgstr "No es posible renombrar el directorio \"%s\""
2618
-
2619
- #: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
2620
- #: php:307 ../modules/ad-blocker/admin/admin.php:324
2621
- #, php-format
2622
- msgid "Unable to copy assets to the \"%s\" directory"
2623
- msgstr "No es posible copiar los archivos al directorio \"%s\""
2624
-
2625
- #: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
2626
- #: php:378
2627
- #, php-format
2628
- msgid "We do not have direct write access to the \"%s\" directory"
2629
- msgstr "No tenemos acceso directo de escritura al directorio \"%s\" "
2630
-
2631
- #: ../modules/ad-blocker/admin/admin.php:445
2632
- #, php-format
2633
- msgid ""
2634
- "Unable to create \"%s\" directory. Is its parent directory writable by the "
2635
- "server?"
2636
- msgstr ""
2637
- "No es posible crear el directorio \"%s\". Es el directorio principal "
2638
- "escribible en el servidor?"
2639
-
2640
- #: ../modules/ad-blocker/admin/admin.php:456
2641
- #, php-format
2642
- msgid "Unable to copy files to %s"
2643
- msgstr "No es posible copiar archivos a %s"
2644
-
2645
- #: ../modules/ad-blocker/admin/admin.php:592
2646
- msgid ""
2647
- "Prevents ad block software from breaking your website when blocking asset "
2648
- "files (.js, .css)."
2649
- msgstr ""
2650
- "Previene que el software de Ad block rompa tu sitio cuando bloquee archivos "
2651
- "(.js, .css)."
2652
-
2653
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:1
2654
- msgid "Ad blocker file folder"
2655
- msgstr "Directorio de archivos de Ad blocker"
2656
-
2657
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:10
2658
- msgid "Upload folder is not writable"
2659
- msgstr "El directorio de cargas y subidas no es escribible"
2660
-
2661
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:23
2662
- msgid "Asset path"
2663
- msgstr "Ruta de Archivos"
2664
-
2665
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:27
2666
- msgid "Asset URL"
2667
- msgstr "URL de Archivos"
2668
-
2669
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:46
2670
- msgid "Rebuild asset folder"
2671
- msgstr "Reconstruir directorio de archivos"
2672
-
2673
- #: ../modules/gadsense/main.php:19
2674
- msgid " at "
2675
- msgstr "En"
2676
-
2677
- #: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
2678
- #: ad-parameters.php:51
2679
- msgid "Responsive"
2680
- msgstr "Responsable"
2681
-
2682
- #: ../modules/gadsense/admin/admin.php:44
2683
- msgid "The ad details couldn't be retrieved from the ad code"
2684
- msgstr "Los detalles del anuncio no pudieron ser recuperados del código del anuncio"
2685
-
2686
- #: ../modules/gadsense/admin/admin.php:45
2687
- msgid ""
2688
- "Warning : The AdSense account from this code does not match the one set with "
2689
- "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2690
- "end."
2691
- msgstr ""
2692
- "Advertencia: La cuenta de AdSense de este código no es equivalente a la que "
2693
- "se encuentra en el plugin de Advanced Ads. Este anuncio puede causar "
2694
- "problemas cuando se use en el frente del sitio."
2695
-
2696
- #: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
2697
- msgid "AdSense"
2698
- msgstr "AdSense"
2699
-
2700
- #: ../modules/gadsense/admin/admin.php:131
2701
- msgid "AdSense ID"
2702
- msgstr "ID de AdSense "
2703
-
2704
- #: ../modules/gadsense/admin/admin.php:140
2705
- msgid "Limit to 3 ads"
2706
- msgstr "Limitar a 3 anuncios"
2707
-
2708
- #: ../modules/gadsense/admin/admin.php:149
2709
- msgid "Activate Page-Level ads"
2710
- msgstr "Activar Anuncios de Nivel-de-Página"
2711
-
2712
- #: ../modules/gadsense/admin/admin.php:169
2713
- #, php-format
2714
- msgid ""
2715
- "Please enter your Publisher ID in order to use AdSense on your page. See the "
2716
- "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2717
- msgstr ""
2718
- "Por favor, ingresa tu ID de publicador para usar AdSense en tu página. Ver "
2719
- "el <a href=\"%s\" target=\"_blank\">manual</a> para mayor información."
2720
-
2721
- #: ../modules/gadsense/admin/admin.php:183
2722
- msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2723
- msgstr "Tu ID de publicador de AdSense <em>(pub-xxxxxxxxxxxxxx)</em>"
2724
-
2725
- #: ../modules/gadsense/admin/admin.php:195
2726
- #, php-format
2727
- msgid "Limit to %d AdSense ads"
2728
- msgstr "Limitar a %d anuncios de AdSense "
2729
-
2730
- #: ../modules/gadsense/admin/admin.php:199
2731
- #, php-format
2732
- msgid ""
2733
- "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2734
- "Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
2735
- "this limitation at your own risks."
2736
- msgstr ""
2737
- "Actualmente, los <a target=\"_blank\" href=\"%s\" title=\"Terminos de "
2738
- "Servicio\">Terminos de Servicio</a> de Google AdSense imponen un límite de %d "
2739
- "anuncios a mostrar por página. Puedes deshabilitar esta limitación bajo tu "
2740
- "propio riesgo."
2741
-
2742
- #: ../modules/gadsense/admin/admin.php:202
2743
- msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
2744
- msgstr ""
2745
- "Nota: Advanced Ads solamente considera el tipo de anuncio de AdSense para "
2746
- "este límite."
2747
-
2748
- #: ../modules/gadsense/admin/admin.php:205
2749
- msgid ""
2750
- "Due to technical restrictions, the limit does not work on placements with "
2751
- "cache-busting enabled."
2752
- msgstr ""
2753
- "Debido a restricciones técnicas, el límite no funciona en colocaciones con "
2754
- "almacenamiento-en-caché habilitado."
2755
-
2756
- #: ../modules/gadsense/admin/admin.php:219
2757
- msgid "Insert Page-Level ads code on all pages."
2758
- msgstr "Insertar código de anuncios de Nivel-de-Página en todas las páginas."
2759
-
2760
- #: ../modules/gadsense/admin/admin.php:221
2761
- msgid ""
2762
- "You still need to enable Page-Level ads in your AdSense account. See <a "
2763
- "href=\"https://support.google.com/adsense/answer/6245304\" "
2764
- "target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
2765
- "information"
2766
- msgstr ""
2767
- "Todavía necesitas habilitar anuncios de Nivel-de-Página en tu cuenta de "
2768
- "AdSense. Ver <a href=\"https://support.google.com/adsense/answer/6245304\" "
2769
- "target=\"_blank\">Ayuda de AdSense</a> (requirere inicio de sesión en AdSense)"
2770
-
2771
- #: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
2772
- #: type-adsense.php:73
2773
- msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2774
- msgstr "El ID del publicador tiene un formato incorrecto. (Debe comenzar con \"pub-\")"
2775
-
2776
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
2777
- msgid "Copy&Paste existing ad code"
2778
- msgstr "Copiar & Pegar el código existente del anuncio"
2779
-
2780
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
2781
- msgid "Ad Slot ID"
2782
- msgstr "ID de la Casilla del Anuncio"
2783
-
2784
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
2785
- #, php-format
2786
- msgid "Publisher ID: %s"
2787
- msgstr "ID del Publicador: %s"
2788
-
2789
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
2790
- #, php-format
2791
- msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2792
- msgstr "Por favor, <a href=\"%s\" target=\"_blank\">cámbialo aquí</a>."
2793
-
2794
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
2795
- msgid "Normal"
2796
- msgstr "Normal"
2797
-
2798
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
2799
- #, php-format
2800
- msgid ""
2801
- "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2802
- "define the exact creative for each browser width."
2803
- msgstr ""
2804
- "Usa el <a href=\"%s\" target=\"_blank\">add-on responsable</a> para definir el "
2805
- "diseño exacto para cada ancho del navegador."
2806
-
2807
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
2808
- msgid "Resizing"
2809
- msgstr "Cambiar el Tamaño"
2810
-
2811
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
2812
- msgid "Copy the ad code from your AdSense account and paste it in the area below"
2813
- msgstr ""
2814
- "Copia el código del anuncio de tu cuenta de AdSense y pégalo en el área de "
2815
- "abajo"
2816
-
2817
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
2818
- msgid "Get details"
2819
- msgstr "Obtener Detalles"
2820
-
2821
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
2822
- msgid "Close"
2823
- msgstr "Cerrar"
2824
-
2825
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:35
2826
- msgid "AdSense ad"
2827
- msgstr "Anuncio de AdSense"
2828
-
2829
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:36
2830
- msgid "Use ads from your Google AdSense account"
2831
- msgstr "Usar anuncios de tu cuenta de Google AdSense"
2832
-
2833
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:105
2834
- msgid "Your AdSense Publisher ID is missing."
2835
- msgstr "Tu ID de publicador de AdSense no se encuentra."
2836
-
2837
- #: ../modules/gadsense/includes/class-gadsense-data.php:46
2838
- msgid "Auto"
2839
- msgstr "Auto"
2840
-
2841
- #: ../public/class-advanced-ads.php:309
2842
- msgid "Advanced Ads Error following:"
2843
- msgstr "El siguiente error de Advanced Ads:"
2844
-
2845
- #: ../public/class-advanced-ads.php:312
2846
- #, php-format
2847
- msgid "Advanced Ads Error: %s"
2848
- msgstr "Error de Advanced Ads: %s"
2849
-
2850
- #: ../public/class-advanced-ads.php:553
2851
- msgctxt "ad group general name"
2852
- msgid "Ad Groups"
2853
- msgstr "Grupos de Anuncios"
2854
-
2855
- #: ../public/class-advanced-ads.php:554
2856
- msgctxt "ad group singular name"
2857
- msgid "Ad Group"
2858
- msgstr "Grupo de Anuncios"
2859
-
2860
- #: ../public/class-advanced-ads.php:555
2861
- msgid "Search Ad Groups"
2862
- msgstr "Buscar Grupos de Anuncios"
2863
-
2864
- #: ../public/class-advanced-ads.php:556
2865
- msgid "All Ad Groups"
2866
- msgstr "Todos los Grupos de Anuncios"
2867
-
2868
- #: ../public/class-advanced-ads.php:557
2869
- msgid "Parent Ad Groups"
2870
- msgstr "Grupos Principales de Anuncios"
2871
-
2872
- #: ../public/class-advanced-ads.php:558
2873
- msgid "Parent Ad Groups:"
2874
- msgstr "Grupos Principales de Anuncios:"
2875
-
2876
- #: ../public/class-advanced-ads.php:559
2877
- msgid "Edit Ad Group"
2878
- msgstr "Editar Grupo de Anuncios"
2879
-
2880
- #: ../public/class-advanced-ads.php:560
2881
- msgid "Update Ad Group"
2882
- msgstr "Actualizar Grupo de Anuncios"
2883
-
2884
- #: ../public/class-advanced-ads.php:561
2885
- msgid "Add New Ad Group"
2886
- msgstr "Añadir Nuevo Grupo de Anuncios"
2887
-
2888
- #: ../public/class-advanced-ads.php:562
2889
- msgid "New Ad Groups Name"
2890
- msgstr "Nuevo Nombre para Grupos de Anuncios"
2891
-
2892
- #: ../public/class-advanced-ads.php:564
2893
- msgid "No Ad Group found"
2894
- msgstr "Grupo de Anuncios no encontrado"
2895
-
2896
- #: ../public/class-advanced-ads.php:595
2897
- msgid "Edit Ad"
2898
- msgstr "Editar Anuncio"
2899
-
2900
- #: ../public/class-advanced-ads.php:597
2901
- msgid "View"
2902
- msgstr "Ver"
2903
-
2904
- #: ../public/class-advanced-ads.php:598
2905
- msgid "View the Ad"
2906
- msgstr "Ver el Anuncio"
2907
-
2908
- #: ../public/class-advanced-ads.php:599
2909
- msgid "Search Ads"
2910
- msgstr "Buscar Anuncios"
2911
-
2912
- #: ../public/class-advanced-ads.php:600
2913
- msgid "No Ads found"
2914
- msgstr "No se encontraron anuncios"
2915
-
2916
- #: ../public/class-advanced-ads.php:601
2917
- msgid "No Ads found in Trash"
2918
- msgstr "No se encontraron anuncios en la papelera"
2919
-
2920
- #: ../public/class-advanced-ads.php:602
2921
- msgid "Parent Ad"
2922
- msgstr "Anuncio Principal"
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: 2016-11-21 12:16+0000\n"
6
+ "PO-Revision-Date: 2016-11-21 12:16+0000\n"
7
+ "Last-Translator: admin <post@webzunft.de>\n"
8
+ "Language-Team: Spanish (Spain)\n"
9
+ "Language: es-ES\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Loco - https://localise.biz/\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Poedit-Basepath: ../\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Loco-Target-Locale: es_ES"
24
+
25
+ #: admin/class-advanced-ads-admin.php:167 classes/display-conditions.php:169
26
+ #: classes/visitor-conditions.php:214 admin/views/ad-display-metabox.php:103
27
+ msgid "or"
28
+ msgstr ""
29
+
30
+ #: admin/class-advanced-ads-admin.php:168 classes/display-conditions.php:169
31
+ #: classes/visitor-conditions.php:214 admin/views/ad-visitor-metabox.php:68
32
+ msgid "and"
33
+ msgstr ""
34
+
35
+ #: admin/class-advanced-ads-admin.php:169
36
+ msgid "After which paragraph?"
37
+ msgstr ""
38
+
39
+ #: admin/class-advanced-ads-admin.php:278
40
+ msgid "time of %s"
41
+ msgstr ""
42
+
43
+ #: admin/class-advanced-ads-admin.php:350
44
+ #: modules/marketpress-license/main.php:65
45
+ #: modules/marketpress-license/main.php:77
46
+ msgid "License couldn’t be activated. Please try again later."
47
+ msgstr ""
48
+
49
+ #: admin/class-advanced-ads-admin.php:362
50
+ msgid "This is the bundle license key."
51
+ msgstr ""
52
+
53
+ #: admin/class-advanced-ads-admin.php:363
54
+ #: modules/marketpress-license/main.php:136
55
+ msgid "This is not the correct key for this add-on."
56
+ msgstr ""
57
+
58
+ #: admin/class-advanced-ads-admin.php:364
59
+ #: modules/marketpress-license/main.php:134
60
+ msgid "There are no activations left."
61
+ msgstr ""
62
+
63
+ #: admin/class-advanced-ads-admin.php:657
64
+ msgid "Add-Ons"
65
+ msgstr ""
66
+
67
+ #: classes/ad_placements.php:215
68
+ msgid "paragraph without image (%s)"
69
+ msgstr ""
70
+
71
+ #: classes/ad_type_group.php:31
72
+ msgid ""
73
+ "Choose an existing ad group. Use this type when you want to assign the same "
74
+ "display and visitor conditions to all ads in that group."
75
+ msgstr ""
76
+
77
+ #: classes/ad_type_group.php:84
78
+ msgid "ad group"
79
+ msgstr ""
80
+
81
+ #: classes/display-conditions.php:69
82
+ msgid "post type"
83
+ msgstr ""
84
+
85
+ #: classes/display-conditions.php:76
86
+ msgid "specific pages"
87
+ msgstr ""
88
+
89
+ #: classes/display-conditions.php:82
90
+ msgid "general conditions"
91
+ msgstr ""
92
+
93
+ #: classes/display-conditions.php:88
94
+ msgid "author"
95
+ msgstr ""
96
+
97
+ #: classes/display-conditions.php:111
98
+ msgid "archive: %s"
99
+ msgstr ""
100
+
101
+ #: classes/display-conditions.php:204 classes/display-conditions.php:257
102
+ #: classes/display-conditions.php:310 classes/display-conditions.php:385
103
+ msgid "show"
104
+ msgstr ""
105
+
106
+ #: classes/display-conditions.php:205 classes/display-conditions.php:258
107
+ #: classes/display-conditions.php:311 classes/display-conditions.php:386
108
+ msgid "hide"
109
+ msgstr ""
110
+
111
+ #: classes/display-conditions.php:228 classes/display-conditions.php:272
112
+ #: classes/display-conditions.php:360
113
+ msgctxt "Error message shown when no display condition term is selected"
114
+ msgid "Please select some items."
115
+ msgstr ""
116
+
117
+ #: classes/display-conditions.php:414
118
+ msgid "title or id"
119
+ msgstr ""
120
+
121
+ #: classes/display-conditions.php:494
122
+ msgid "Feed"
123
+ msgstr ""
124
+
125
+ #: classes/display-conditions.php:495
126
+ msgid "allow ads in Feed"
127
+ msgstr ""
128
+
129
+ #: classes/EDD_SL_Plugin_Updater.php:186
130
+ msgid ""
131
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
132
+ msgstr ""
133
+
134
+ #: classes/EDD_SL_Plugin_Updater.php:194
135
+ msgid ""
136
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
137
+ "or %5$supdate now%6$s."
138
+ msgstr ""
139
+
140
+ #: classes/frontend_checks.php:39
141
+ msgid "Ad Health"
142
+ msgstr ""
143
+
144
+ #: classes/frontend_checks.php:46
145
+ msgid "jQuery not in header"
146
+ msgstr ""
147
+
148
+ #: classes/frontend_checks.php:58
149
+ msgid "Ad blocker enabled"
150
+ msgstr ""
151
+
152
+ #: classes/frontend_checks.php:72
153
+ msgid "<em>%s</em> filter does not exist"
154
+ msgstr ""
155
+
156
+ #: classes/frontend_checks.php:88
157
+ msgid "Ads are disabled on this page"
158
+ msgstr ""
159
+
160
+ #: classes/frontend_checks.php:101
161
+ msgid "Ads are disabled in the content of this page"
162
+ msgstr ""
163
+
164
+ #: classes/frontend_checks.php:113
165
+ msgid "the current post ID is 0 "
166
+ msgstr ""
167
+
168
+ #: classes/frontend_checks.php:127
169
+ msgid "Ads are disabled on 404 pages"
170
+ msgstr ""
171
+
172
+ #: classes/frontend_checks.php:140
173
+ msgid "Ads are disabled on non singular pages"
174
+ msgstr ""
175
+
176
+ #: classes/frontend_checks.php:153
177
+ msgid "Everything is fine"
178
+ msgstr ""
179
+
180
+ #: classes/visitor-conditions.php:107
181
+ msgid "Manual and Troubleshooting"
182
+ msgstr ""
183
+
184
+ #: public/class-advanced-ads.php:714
185
+ msgctxt "label above ads"
186
+ msgid "Advertisements"
187
+ msgstr ""
188
+
189
+ #: admin/includes/class-ad-type.php:491
190
+ msgid ""
191
+ "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
192
+ msgstr ""
193
+
194
+ #: admin/includes/class-menu.php:199
195
+ msgid "Please enter a message"
196
+ msgstr ""
197
+
198
+ #: admin/includes/class-menu.php:209
199
+ msgid "Email could NOT be sent. Please contact us directly at %s."
200
+ msgstr ""
201
+
202
+ #: admin/includes/class-menu.php:212
203
+ msgid "Please enter a valid email address"
204
+ msgstr ""
205
+
206
+ #: admin/includes/class-meta-box.php:125 admin/includes/class-meta-box.php:136
207
+ #: admin/includes/class-meta-box.php:141 admin/includes/class-settings.php:409
208
+ #: admin/views/ad-output-metabox.php:51
209
+ msgid "Manual"
210
+ msgstr ""
211
+
212
+ #: admin/includes/class-meta-box.php:135
213
+ msgid "Video"
214
+ msgstr ""
215
+
216
+ #: admin/includes/class-overview-widgets.php:59
217
+ msgid "Geo Targeting"
218
+ msgstr ""
219
+
220
+ #: admin/includes/class-overview-widgets.php:154
221
+ msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
222
+ msgstr ""
223
+
224
+ #: admin/includes/class-overview-widgets.php:214
225
+ msgid "Target visitors by their geo location."
226
+ msgstr ""
227
+
228
+ #: admin/includes/class-overview-widgets.php:216
229
+ msgid "Get the Geo Targeting add-on"
230
+ msgstr ""
231
+
232
+ #: admin/includes/class-overview-widgets.php:238
233
+ msgid "optional background overlay"
234
+ msgstr ""
235
+
236
+ #: admin/includes/class-overview-widgets.php:258
237
+ msgid "Let users purchase ads directly in the frontend of your site."
238
+ msgstr ""
239
+
240
+ #: admin/includes/class-overview-widgets.php:260
241
+ msgid "Get the Selling Ads add-on"
242
+ msgstr ""
243
+
244
+ #: admin/includes/class-settings.php:150
245
+ msgid "Ad label"
246
+ msgstr ""
247
+
248
+ #: admin/includes/class-settings.php:160
249
+ msgid "Delete data on uninstall"
250
+ msgstr ""
251
+
252
+ #: admin/includes/class-settings.php:368
253
+ msgid ""
254
+ "If checked, the Advanced Ads Widget will not work with the fixed option of "
255
+ "the <strong>Q2W3 Fixed Widget</strong> plugin."
256
+ msgstr ""
257
+
258
+ #: admin/includes/class-settings.php:391
259
+ msgid ""
260
+ "You can assign different ad-related roles on a user basis with <a "
261
+ "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
262
+ msgstr ""
263
+
264
+ #: admin/includes/class-settings.php:409
265
+ msgid "Displayed above ads."
266
+ msgstr ""
267
+
268
+ #: admin/includes/class-settings.php:423
269
+ msgid "Clean up all data related to Advanced Ads when removing the plugin."
270
+ msgstr ""
271
+
272
+ #: admin/includes/notices.php:59
273
+ msgid ""
274
+ "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
275
+ "review-image\"/>You are using <strong>Advanced Ads</strong> for some time "
276
+ "now. Thank you! If you need my help then please visit the <a href=\"%1$s\" "
277
+ "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
278
+ "Review</h3><p>If you share my passion and find Advanced Ads useful then "
279
+ "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
280
+ "org</a>.</p><p><em>Thomas</em>"
281
+ msgstr ""
282
+
283
+ #: admin/includes/notices.php:65
284
+ msgid ""
285
+ "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
286
+ "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
287
+ "disguise."
288
+ msgstr ""
289
+
290
+ #: admin/views/ad-display-metabox.php:6
291
+ msgid "Set Display Conditions to allow or hide the ad on specific pages."
292
+ msgstr ""
293
+
294
+ #: admin/views/ad-display-metabox.php:8
295
+ #: admin/views/notices/jqueryui_error.php:2
296
+ msgid ""
297
+ "There might be a problem with layouts and scripts in your dashboard. Please "
298
+ "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
299
+ msgstr ""
300
+
301
+ #: admin/views/ad-display-metabox.php:50
302
+ msgid "Forced to OR."
303
+ msgstr ""
304
+
305
+ #: admin/views/ad-display-metabox.php:51 admin/views/ad-info-top.php:78
306
+ msgid "manual"
307
+ msgstr ""
308
+
309
+ #: admin/views/ad-info-bottom.php:2
310
+ msgctxt "wizard navigation"
311
+ msgid "previous"
312
+ msgstr ""
313
+
314
+ #: admin/views/ad-info-bottom.php:4
315
+ msgctxt "wizard navigation"
316
+ msgid "save"
317
+ msgstr ""
318
+
319
+ #: admin/views/ad-info-bottom.php:5
320
+ msgctxt "wizard navigation"
321
+ msgid "next"
322
+ msgstr ""
323
+
324
+ #: admin/views/ad-info-top.php:5
325
+ msgid ""
326
+ "Congratulations! Your ad is now visible in the frontend. You can adjust the "
327
+ "placement options <a href=\"%s\">here</a>."
328
+ msgstr ""
329
+
330
+ #: admin/views/ad-info-top.php:7
331
+ msgid "Where do you want to display the ad?"
332
+ msgstr ""
333
+
334
+ #: admin/views/ad-info-top.php:8
335
+ msgid "New placement"
336
+ msgstr ""
337
+
338
+ #: admin/views/ad-info-top.php:10
339
+ msgid "Content"
340
+ msgstr ""
341
+
342
+ #: admin/views/ad-info-top.php:12
343
+ msgid "Manage Sidebar"
344
+ msgstr ""
345
+
346
+ #: admin/views/ad-info-top.php:15
347
+ msgid "Show Pro Places"
348
+ msgstr ""
349
+
350
+ #: admin/views/ad-info-top.php:19
351
+ msgid "Show Sticky Places"
352
+ msgstr ""
353
+
354
+ #: admin/views/ad-info-top.php:23
355
+ msgid "Show PopUp"
356
+ msgstr ""
357
+
358
+ #: admin/views/ad-info-top.php:48
359
+ msgid "Existing placement"
360
+ msgstr ""
361
+
362
+ #: admin/views/ad-info-top.php:53
363
+ msgid "Or use the shortcode %s to insert the ad into the content manually."
364
+ msgstr ""
365
+
366
+ #: admin/views/ad-info-top.php:64 admin/views/ad-info-top.php:76
367
+ msgid "Start Wizard"
368
+ msgstr ""
369
+
370
+ #: admin/views/ad-info-top.php:65
371
+ msgid "Stop Wizard"
372
+ msgstr ""
373
+
374
+ #: admin/views/ad-info-top.php:74
375
+ msgid "Welcome to the Wizard"
376
+ msgstr ""
377
+
378
+ #: admin/views/ad-info-top.php:75
379
+ msgid ""
380
+ "The Wizard helps you to quickly create and publish an ad. Therefore, only "
381
+ "the most common options are visible."
382
+ msgstr ""
383
+
384
+ #: admin/views/ad-info-top.php:77
385
+ msgid "Stop Wizard and show all options"
386
+ msgstr ""
387
+
388
+ #: admin/views/ad-list-no-ads.php:2
389
+ msgid "Not many ads here yet. Get help from the following resources:"
390
+ msgstr ""
391
+
392
+ #: admin/views/ad-list-no-ads.php:3
393
+ msgid "Watch the “First Ad” Tutorial (Video)"
394
+ msgstr ""
395
+
396
+ #: admin/views/ad-list-no-ads.php:4
397
+ msgid "Import Ads (Link)"
398
+ msgstr ""
399
+
400
+ #: admin/views/ad-list-no-ads.php:5
401
+ msgid "Get dummy ad content (Link)"
402
+ msgstr ""
403
+
404
+ #: admin/views/ad-output-metabox.php:47
405
+ msgid "Enable debug mode"
406
+ msgstr ""
407
+
408
+ #: admin/views/ad-parameters-metabox.php:30
409
+ msgid ""
410
+ "The code of this ad might not work properly with the <em>Content</em> "
411
+ "placement."
412
+ msgstr ""
413
+
414
+ #: admin/views/ad-parameters-metabox.php:31
415
+ msgid "Reach out to <a href=\"%s\">support</a> to get help."
416
+ msgstr ""
417
+
418
+ #: admin/views/ad-parameters-size.php:6
419
+ msgid "reserve this space"
420
+ msgstr ""
421
+
422
+ #: admin/views/feedback_disable.php:3
423
+ msgid "Thank you for helping to improve Advanced Ads."
424
+ msgstr ""
425
+
426
+ #: admin/views/feedback_disable.php:4
427
+ msgid ""
428
+ "Your feedback will motivates me to work harder towards a professional ad "
429
+ "management solution."
430
+ msgstr ""
431
+
432
+ #: admin/views/feedback_disable.php:5
433
+ msgid "Why did you decide to disable Advanced Ads?"
434
+ msgstr ""
435
+
436
+ #: admin/views/feedback_disable.php:7
437
+ msgid "I stopped showing ads on my site"
438
+ msgstr ""
439
+
440
+ #: admin/views/feedback_disable.php:8
441
+ msgid "I miss a feature or <a href=\"%s\">add-on</a>"
442
+ msgstr ""
443
+
444
+ #: admin/views/feedback_disable.php:9
445
+ msgid "I have a technical problem"
446
+ msgstr ""
447
+
448
+ #: admin/views/feedback_disable.php:10
449
+ msgid "other reason"
450
+ msgstr ""
451
+
452
+ #: admin/views/feedback_disable.php:12
453
+ msgid "Please specify, if possible"
454
+ msgstr ""
455
+
456
+ #: admin/views/feedback_disable.php:13
457
+ msgid "What would be a reason to return to Advanced Ads?"
458
+ msgstr ""
459
+
460
+ #: admin/views/intro.php:79
461
+ msgid ""
462
+ "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a>"
463
+ " or watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> "
464
+ "first."
465
+ msgstr ""
466
+
467
+ #: admin/views/setting-license.php:6
468
+ msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
469
+ msgstr ""
470
+
471
+ #: admin/views/settings-disable-ads.php:21
472
+ msgid "Disable ads in Feed"
473
+ msgstr ""
474
+
475
+ #: admin/views/settings.php:48 modules/import-export/main.php:15
476
+ #: modules/import-export/main.php:15
477
+ msgid "Import &amp; Export"
478
+ msgstr ""
479
+
480
+ #: modules/marketpress-license/admin.php:36
481
+ msgid "MarketPress Bundle License"
482
+ msgstr ""
483
+
484
+ #: modules/marketpress-license/admin.php:67
485
+ #: modules/marketpress-license/admin.php:70
486
+ msgid ""
487
+ "Enter your key here, if you have purchased the bundle through MarketPress."
488
+ msgstr ""
489
+
490
+ #: modules/marketpress-license/admin.php:72
491
+ msgid ""
492
+ "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
493
+ "."
494
+ msgstr ""
495
+
496
+ #: modules/gadsense/admin/admin.php:199
497
+ msgid ""
498
+ "There is no explicit limit for AdSense ads anymore, but you can still use "
499
+ "this setting to prevent too many AdSense ads to show accidentally on your "
500
+ "site."
501
+ msgstr ""
502
+
503
+ #: modules/import-export/classes/import.php:64
504
+ msgid "Please enter XML content"
505
+ msgstr ""
506
+
507
+ #: modules/import-export/classes/import.php:144
508
+ #: modules/import-export/classes/import.php:560
509
+ msgid "New attachment created <em>%s</em> %s"
510
+ msgstr ""
511
+
512
+ #: modules/import-export/classes/import.php:176
513
+ msgid "Failed to import <em>%s</em>"
514
+ msgstr ""
515
+
516
+ #: modules/import-export/classes/import.php:184
517
+ msgid "New ad created: <em>%s</em> %s"
518
+ msgstr ""
519
+
520
+ #: modules/import-export/classes/import.php:227
521
+ msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
522
+ msgstr ""
523
+
524
+ #: modules/import-export/classes/import.php:289
525
+ msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
526
+ msgstr ""
527
+
528
+ #: modules/import-export/classes/import.php:291
529
+ msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
530
+ msgstr ""
531
+
532
+ #: modules/import-export/classes/import.php:356
533
+ msgid "Placement <em>%s</em> created"
534
+ msgstr ""
535
+
536
+ #: modules/import-export/classes/import.php:471
537
+ msgid "Option was updated: <em>%s</em>"
538
+ msgstr ""
539
+
540
+ #: modules/import-export/classes/import.php:474
541
+ msgid "Option already exists: <em>%s</em>"
542
+ msgstr ""
543
+
544
+ #: modules/import-export/classes/import.php:496
545
+ msgid "Failed to create import directory <em>%s</em>"
546
+ msgstr ""
547
+
548
+ #: modules/import-export/classes/import.php:501
549
+ msgid "Import directory is not writable: <em>%s</em>"
550
+ msgstr ""
551
+
552
+ #: modules/import-export/classes/import.php:509
553
+ msgid ""
554
+ "File is empty, uploads are disabled or post_max_size is smaller than "
555
+ "upload_max_filesize in php.ini"
556
+ msgstr ""
557
+
558
+ #: modules/import-export/classes/import.php:519
559
+ msgid "Failed to upload file, error: <em>%s</em>"
560
+ msgstr ""
561
+
562
+ #: modules/import-export/classes/import.php:524
563
+ msgid "File is empty."
564
+ msgstr ""
565
+
566
+ #: modules/import-export/classes/import.php:529
567
+ msgid ""
568
+ "The file could not be created: <em>%s</em>. This is probably a permissions "
569
+ "problem"
570
+ msgstr ""
571
+
572
+ #: modules/import-export/classes/import.php:602
573
+ msgid "Invalid filetype <em>%s</em>"
574
+ msgstr ""
575
+
576
+ #: modules/import-export/classes/import.php:607
577
+ #: modules/import-export/classes/import.php:614
578
+ #: modules/import-export/classes/import.php:622
579
+ #: modules/import-export/classes/import.php:637
580
+ msgid "Error getting remote image <em>%s</em>"
581
+ msgstr ""
582
+
583
+ #: modules/import-export/classes/import.php:631
584
+ msgid "Zero size file downloaded <em>%s</em>"
585
+ msgstr ""
586
+
587
+ #: modules/import-export/classes/XmlEncoder.php:61
588
+ #: modules/import-export/classes/XmlEncoder.php:190
589
+ msgid "The %s extension(s) is not loaded"
590
+ msgstr ""
591
+
592
+ #: modules/import-export/classes/XmlEncoder.php:72
593
+ msgctxt "import_export"
594
+ msgid "The data must be an array"
595
+ msgstr ""
596
+
597
+ #: modules/import-export/classes/XmlEncoder.php:100
598
+ msgctxt "import_export"
599
+ msgid "The key %s is not valid"
600
+ msgstr ""
601
+
602
+ #: modules/import-export/classes/XmlEncoder.php:146
603
+ msgctxt "import_export"
604
+ msgid "An unexpected value could not be serialized: %s"
605
+ msgstr ""
606
+
607
+ #: modules/import-export/classes/XmlEncoder.php:194
608
+ msgctxt "import_export"
609
+ msgid "Invalid XML data, it can not be empty"
610
+ msgstr ""
611
+
612
+ #: modules/import-export/classes/XmlEncoder.php:216
613
+ msgctxt "import_export"
614
+ msgid "XML error: %s"
615
+ msgstr ""
616
+
617
+ #: modules/import-export/views/page.php:16
618
+ msgid "Export"
619
+ msgstr ""
620
+
621
+ #: modules/import-export/views/page.php:17
622
+ msgid ""
623
+ "When you click the button below Advanced Ads will create an XML file for you "
624
+ "to save to your computer."
625
+ msgstr ""
626
+
627
+ #: modules/import-export/views/page.php:33
628
+ msgid "Import"
629
+ msgstr ""
630
+
631
+ #: modules/import-export/views/page.php:44
632
+ msgid "Choose an XML file"
633
+ msgstr ""
634
+
635
+ #: modules/import-export/views/page.php:45
636
+ msgid "Copy an XML content"
637
+ msgstr ""
638
+
639
+ #: modules/import-export/views/page.php:66
640
+ msgid "Start import"
641
+ msgstr ""
642
+
643
+ #: modules/ad-blocker/admin/views/rebuild_form.php:31
644
+ msgid "Rename assets"
645
+ msgstr ""
646
+
647
+ #: modules/ad-blocker/admin/views/rebuild_form.php:34
648
+ msgid "Check if you want to change the names of the assets"
649
+ msgstr ""
650
+
651
+ #: modules/ad-blocker/admin/views/rebuild_form.php:43
652
+ msgid ""
653
+ "Please, rebuild the asset folder. All assets will be located in <strong>"
654
+ "%s</strong>"
655
+ msgstr ""
656
+
657
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:56
658
+ msgid ""
659
+ "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
660
+ "define the exact size for each browser width or choose between horizontal, "
661
+ "vertical, or rectangle formats."
662
+ msgstr ""
663
+
664
+ #: admin/class-advanced-ads-admin.php:314
665
+ msgid "Error while trying to register the license. Please contact support."
666
+ msgstr ""
667
+ "Error al tratar de registrar la licencia. Por favor, contactar a soporte."
668
+
669
+ #: admin/class-advanced-ads-admin.php:319 admin/views/setting-license.php:41
670
+ msgid "Please enter a valid license key"
671
+ msgstr "Por favor, ingresa una llave de licencia válida"
672
+
673
+ #: admin/class-advanced-ads-admin.php:435
674
+ msgid "Error while trying to disable the license. Please contact support."
675
+ msgstr ""
676
+ "Error al tratar de deshabilitar la licencia. Por favor, contacta a soporte."
677
+
678
+ #: admin/class-advanced-ads-admin.php:462
679
+ #: admin/class-advanced-ads-admin.php:480
680
+ msgid "License couldn’t be deactivated. Please try again later."
681
+ msgstr "La licencia no pudo ser desactivada.a soporte."
682
+
683
+ #: admin/class-advanced-ads-admin.php:653 admin/includes/class-menu.php:87
684
+ #: admin/includes/class-menu.php:87
685
+ msgid "Support"
686
+ msgstr "Soporte"
687
+
688
+ #: classes/ad_placements.php:31
689
+ msgid "Manual Placement"
690
+ msgstr "Colocación Manual"
691
+
692
+ #: classes/ad_placements.php:32
693
+ msgid "Manual placement to use as function or shortcode."
694
+ msgstr "Colocación manual para usar como Función o Shortcode."
695
+
696
+ #: classes/ad_placements.php:36
697
+ msgid "Header Code"
698
+ msgstr "Código de Encabezado"
699
+
700
+ #: classes/ad_placements.php:37
701
+ msgid ""
702
+ "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
703
+ msgstr ""
704
+ "Inyectar en el encabezado (antes de la etiqueta &lt;/head&gt;, que con "
705
+ "frecuencia no es visible)."
706
+
707
+ #: classes/ad_placements.php:41
708
+ msgid "Footer Code"
709
+ msgstr "Código del Pie de Página"
710
+
711
+ #: classes/ad_placements.php:42
712
+ msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
713
+ msgstr ""
714
+ "Inyectado en el Pie de Página (antes de la etiqueta de cierre del &lt;"
715
+ "/body&gt;). "
716
+
717
+ #: classes/ad_placements.php:46 admin/views/ad-info-top.php:9
718
+ msgid "Before Content"
719
+ msgstr "Antes del Contenido"
720
+
721
+ #: classes/ad_placements.php:47
722
+ msgid "Injected before the post content."
723
+ msgstr "Inyectado antes del contenido de la entrada."
724
+
725
+ #: classes/ad_placements.php:51 admin/views/ad-info-top.php:11
726
+ msgid "After Content"
727
+ msgstr "Después del Contenido"
728
+
729
+ #: classes/ad_placements.php:52
730
+ msgid "Injected after the post content."
731
+ msgstr "Inyectado después del contenido de la entrada."
732
+
733
+ #: classes/ad_placements.php:56
734
+ msgid "Post Content"
735
+ msgstr "Contenido de la Entrada"
736
+
737
+ #: classes/ad_placements.php:57
738
+ msgid ""
739
+ "Injected into the post content. You can choose the paragraph after which the "
740
+ "ad content is displayed."
741
+ msgstr ""
742
+ "Inyectado en el contenido de la entrada. Puedes elegir el párrafo en el que "
743
+ "inmediatamente después el anuncio se mostrará."
744
+
745
+ #: classes/ad_placements.php:61
746
+ msgid "Sidebar Widget"
747
+ msgstr "Widget de la Barra Lateral"
748
+
749
+ #: classes/ad_placements.php:62
750
+ msgid ""
751
+ "Create a sidebar widget with an ad. Can be placed and used like any other "
752
+ "widget."
753
+ msgstr ""
754
+ "Crear un widget de barra lateral con un anuncio. Puede ser colocado y "
755
+ "utilizado como cualquier otro widget."
756
+
757
+ #: classes/ad_placements.php:214
758
+ msgid "paragraph (%s)"
759
+ msgstr "Párrafo (%s)"
760
+
761
+ #: classes/ad_placements.php:216
762
+ msgid "headline 2 (%s)"
763
+ msgstr "Encabezado 2 (%s)"
764
+
765
+ #: classes/ad_placements.php:217
766
+ msgid "headline 3 (%s)"
767
+ msgstr "Encabezado 3 (%s)"
768
+
769
+ #: classes/ad_placements.php:218
770
+ msgid "headline 4 (%s)"
771
+ msgstr "Encabezado 4 (%s)"
772
+
773
+ #: classes/ad_type_content.php:35
774
+ msgid "Rich Content"
775
+ msgstr "Contenido Enriquecido"
776
+
777
+ #: classes/ad_type_content.php:36
778
+ msgid ""
779
+ "The full content editor from WordPress with all features like shortcodes, "
780
+ "image upload or styling, but also simple text/html mode for scripts and code."
781
+ msgstr ""
782
+ "El editor de contenido de WordPress completo con todas las características "
783
+ "como shortcodes, carga de imágenes o estilos, y también un modo simple de "
784
+ "texto/html para scripts y código."
785
+
786
+ #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
787
+ msgid "Ad Group"
788
+ msgstr "Grupo de Anuncios"
789
+
790
+ #: classes/ad_type_plain.php:31
791
+ msgid "Plain Text and Code"
792
+ msgstr "Texto Simple y Código"
793
+
794
+ #: classes/ad_type_plain.php:32
795
+ msgid ""
796
+ "Simple text editor without any filters. You might use it to display "
797
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
798
+ "content field magic does not work here."
799
+ msgstr ""
800
+ "Editor de texto simple sin ningún filtro. Lo puedes usar para mostrar "
801
+ "contenido no filtrado, código PHP o JavaScript. Sin embargo, los shortcodes "
802
+ "y otro contenido del campo mágico de WordPress no funciona aquí."
803
+
804
+ #: classes/ad_type_plain.php:52
805
+ msgid "Insert plain text or code into this field."
806
+ msgstr "Insertar texto simple o código en este campo."
807
+
808
+ #: classes/ad_type_plain.php:88
809
+ msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
810
+ msgstr "Ejecutar código PHP (enmarcado en <code>&lt;?php ?&gt;</code>)"
811
+
812
+ #: classes/checks.php:223
813
+ msgid ""
814
+ "Possible conflict between jQueryUI library, used by Advanced Ads and other "
815
+ "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead "
816
+ "to misfortunate formats in forms, but should not damage features."
817
+ msgstr ""
818
+ "Potencial conflicto entre la librería jQueryUI, usada por Advanced Ads, y "
819
+ "otras librerías (probablemente <a href=\"%s\">Twitter Bootstrap</a>). Esto "
820
+ "puede crear formatos distorsionados en formularios, pero no debería dañar "
821
+ "ninguna funcionalidad."
822
+
823
+ #: classes/display-conditions.php:70
824
+ msgid "Choose the public post types on which to display the ad."
825
+ msgstr "Selecciona los post types públicos en los cuales mostrar el anuncio."
826
+
827
+ #: classes/display-conditions.php:77
828
+ msgid ""
829
+ "Choose on which individual posts, pages and public post type pages you want "
830
+ "to display or hide ads."
831
+ msgstr ""
832
+ "Seleccionar en que entradas individuales, páginas y páginas públicas post "
833
+ "type deseas mostrar o ocultar anuncios."
834
+
835
+ #: classes/display-conditions.php:350
836
+ msgctxt "display the terms search field on ad edit page"
837
+ msgid "add more terms"
838
+ msgstr "Añadir más términos "
839
+
840
+ #: classes/display-conditions.php:351
841
+ msgid "add more terms"
842
+ msgstr "Añadir más términos"
843
+
844
+ #: classes/display-conditions.php:353
845
+ msgid "term name or id"
846
+ msgstr "Nombre del término o ID"
847
+
848
+ #: classes/display-conditions.php:459
849
+ msgid "Home Page"
850
+ msgstr "Página de Inicio"
851
+
852
+ #: classes/display-conditions.php:460
853
+ msgid "show on Home page"
854
+ msgstr "Mostrar en Página de Inicio"
855
+
856
+ #: classes/display-conditions.php:464
857
+ msgid "Singular Pages"
858
+ msgstr "Páginas Singulares"
859
+
860
+ #: classes/display-conditions.php:465
861
+ msgid "show on singular pages/posts"
862
+ msgstr "Mostrar en páginas/entradas singulares"
863
+
864
+ #: classes/display-conditions.php:469
865
+ msgid "Archive Pages"
866
+ msgstr "Páginas de Archivo"
867
+
868
+ #: classes/display-conditions.php:470
869
+ msgid "show on any type of archive page (category, tag, author and date)"
870
+ msgstr ""
871
+ "Mostrar en cualquier tipo de página de archivo (categoría, etiqueta, autor y "
872
+ "fecha)"
873
+
874
+ #: classes/display-conditions.php:474
875
+ msgid "Search Results"
876
+ msgstr "Resultados de la Búsqueda"
877
+
878
+ #: classes/display-conditions.php:475
879
+ msgid "show on search result pages"
880
+ msgstr "Mostrar en páginas de resultados de búsquedas"
881
+
882
+ #: classes/display-conditions.php:479
883
+ msgid "404 Page"
884
+ msgstr "Páginas 404"
885
+
886
+ #: classes/display-conditions.php:480
887
+ msgid "show on 404 error page"
888
+ msgstr "Mostrar en páginas de error 404"
889
+
890
+ #: classes/display-conditions.php:484
891
+ msgid "Attachment Pages"
892
+ msgstr "Páginas Adjuntas"
893
+
894
+ #: classes/display-conditions.php:485
895
+ msgid "show on attachment pages"
896
+ msgstr "Mostrar en páginas adjuntas"
897
+
898
+ #: classes/display-conditions.php:489
899
+ msgid "Secondary Queries"
900
+ msgstr "Consultas (Queries) Secundarias "
901
+
902
+ #: classes/display-conditions.php:490
903
+ msgid "allow ads in secondary queries"
904
+ msgstr "Permitir anuncios en consultas (queries) secundarias "
905
+
906
+ #: classes/visitor-conditions.php:32
907
+ msgid "mobile device"
908
+ msgstr "Dispositivo Móvil"
909
+
910
+ #: classes/visitor-conditions.php:33
911
+ msgid "Display ads only on mobile devices or hide them."
912
+ msgstr "Mostrar anuncios solamente en dispositivos móviles u ocultarlos."
913
+
914
+ #: classes/visitor-conditions.php:39
915
+ msgid "logged in visitor"
916
+ msgstr "Visitante Conectado"
917
+
918
+ #: classes/visitor-conditions.php:40
919
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
920
+ msgstr "Si el visitante debe estar conectado o no para ver los anuncios."
921
+
922
+ #: classes/visitor-conditions.php:136
923
+ msgid "equal"
924
+ msgstr "Igual"
925
+
926
+ #: classes/visitor-conditions.php:137
927
+ msgid "equal or higher"
928
+ msgstr "Igual o mayor"
929
+
930
+ #: classes/visitor-conditions.php:138
931
+ msgid "equal or lower"
932
+ msgstr "Igual o menor"
933
+
934
+ #: classes/visitor-conditions.php:168
935
+ msgid "contains"
936
+ msgstr "Contiene"
937
+
938
+ #: classes/visitor-conditions.php:169
939
+ msgid "starts with"
940
+ msgstr "Comienza con"
941
+
942
+ #: classes/visitor-conditions.php:170
943
+ msgid "ends with"
944
+ msgstr "Termina con"
945
+
946
+ #: classes/visitor-conditions.php:171
947
+ msgid "matches"
948
+ msgstr "Equivale a"
949
+
950
+ #: classes/visitor-conditions.php:172
951
+ msgid "matches regex"
952
+ msgstr "Equivale a regex"
953
+
954
+ #: classes/visitor-conditions.php:173
955
+ msgid "does not contain"
956
+ msgstr "No contiene"
957
+
958
+ #: classes/visitor-conditions.php:174
959
+ msgid "does not start with"
960
+ msgstr "No comienza con"
961
+
962
+ #: classes/visitor-conditions.php:175
963
+ msgid "does not end with"
964
+ msgstr "No termina con"
965
+
966
+ #: classes/visitor-conditions.php:176
967
+ msgid "does not match"
968
+ msgstr "No equivale a"
969
+
970
+ #: classes/visitor-conditions.php:177
971
+ msgid "does not match regex"
972
+ msgstr "No equivale a regex"
973
+
974
+ #: classes/widget.php:22
975
+ msgid "Display Ads and Ad Groups."
976
+ msgstr "Mostrar Anuncios y Grupos de Anuncios."
977
+
978
+ #: classes/widget.php:67 admin/includes/class-shortcode-creator.php:75
979
+ msgid "--empty--"
980
+ msgstr "--Vacío--"
981
+
982
+ #: classes/widget.php:69 admin/includes/class-menu.php:72
983
+ #: admin/includes/class-shortcode-creator.php:91 admin/views/placements.php:19
984
+ #: modules/import-export/views/page.php:25
985
+ msgid "Placements"
986
+ msgstr "Colocaciones"
987
+
988
+ #: classes/widget.php:76 admin/includes/class-menu.php:67
989
+ #: admin/includes/class-shortcode-creator.php:84 admin/views/placements.php:76
990
+ #: admin/views/placements.php:182
991
+ msgid "Ad Groups"
992
+ msgstr "Grupos de Anuncios"
993
+
994
+ #: classes/widget.php:83 public/class-advanced-ads.php:590
995
+ #: admin/includes/class-menu.php:56 admin/includes/class-menu.php:56
996
+ #: admin/includes/class-shortcode-creator.php:77
997
+ #: admin/views/ad-group-list-form-row.php:28
998
+ #: admin/views/ad-group-list-header.php:5 admin/views/placements.php:83
999
+ #: admin/views/placements.php:189 modules/import-export/views/page.php:23
1000
+ msgid "Ads"
1001
+ msgstr "Anuncios"
1002
+
1003
+ #: public/class-advanced-ads.php:309
1004
+ msgid "Advanced Ads Error following:"
1005
+ msgstr "El siguiente error de Advanced Ads:"
1006
+
1007
+ #: public/class-advanced-ads.php:312
1008
+ msgid "Advanced Ads Error: %s"
1009
+ msgstr "Error de Advanced Ads: %s"
1010
+
1011
+ #: public/class-advanced-ads.php:553
1012
+ msgctxt "ad group general name"
1013
+ msgid "Ad Groups"
1014
+ msgstr "Grupos de Anuncios"
1015
+
1016
+ #: public/class-advanced-ads.php:554
1017
+ msgctxt "ad group singular name"
1018
+ msgid "Ad Group"
1019
+ msgstr "Grupo de Anuncios"
1020
+
1021
+ #: public/class-advanced-ads.php:555
1022
+ msgid "Search Ad Groups"
1023
+ msgstr "Buscar Grupos de Anuncios"
1024
+
1025
+ #: public/class-advanced-ads.php:556
1026
+ msgid "All Ad Groups"
1027
+ msgstr "Todos los Grupos de Anuncios"
1028
+
1029
+ #: public/class-advanced-ads.php:557
1030
+ msgid "Parent Ad Groups"
1031
+ msgstr "Grupos Principales de Anuncios"
1032
+
1033
+ #: public/class-advanced-ads.php:558
1034
+ msgid "Parent Ad Groups:"
1035
+ msgstr "Grupos Principales de Anuncios:"
1036
+
1037
+ #: public/class-advanced-ads.php:559
1038
+ msgid "Edit Ad Group"
1039
+ msgstr "Editar Grupo de Anuncios"
1040
+
1041
+ #: public/class-advanced-ads.php:560
1042
+ msgid "Update Ad Group"
1043
+ msgstr "Actualizar Grupo de Anuncios"
1044
+
1045
+ #: public/class-advanced-ads.php:561
1046
+ msgid "Add New Ad Group"
1047
+ msgstr "Añadir Nuevo Grupo de Anuncios"
1048
+
1049
+ #: public/class-advanced-ads.php:562
1050
+ msgid "New Ad Groups Name"
1051
+ msgstr "Nuevo Nombre para Grupos de Anuncios"
1052
+
1053
+ #: public/class-advanced-ads.php:563 admin/includes/class-menu.php:67
1054
+ #: modules/import-export/views/page.php:24
1055
+ msgid "Groups"
1056
+ msgstr "Grupos"
1057
+
1058
+ #: public/class-advanced-ads.php:564
1059
+ msgid "No Ad Group found"
1060
+ msgstr "Grupo de Anuncios no encontrado"
1061
+
1062
+ #: public/class-advanced-ads.php:591 admin/views/ad-group-list-form-row.php:31
1063
+ msgid "Ad"
1064
+ msgstr "Anuncio"
1065
+
1066
+ #: public/class-advanced-ads.php:592 public/class-advanced-ads.php:596
1067
+ #: admin/includes/class-menu.php:62 admin/views/ad-group-list-form-row.php:45
1068
+ msgid "New Ad"
1069
+ msgstr "Nuevo Anuncio"
1070
+
1071
+ #: public/class-advanced-ads.php:593 admin/includes/class-menu.php:62
1072
+ msgid "Add New Ad"
1073
+ msgstr "Añadir Nuevo Anuncio"
1074
+
1075
+ #: public/class-advanced-ads.php:594
1076
+ #: admin/includes/class-ad-groups-list.php:302
1077
+ #: modules/import-export/classes/import.php:143
1078
+ #: modules/import-export/classes/import.php:183
1079
+ #: modules/import-export/classes/import.php:559
1080
+ msgid "Edit"
1081
+ msgstr "Editar"
1082
+
1083
+ #: public/class-advanced-ads.php:595
1084
+ msgid "Edit Ad"
1085
+ msgstr "Editar Anuncio"
1086
+
1087
+ #: public/class-advanced-ads.php:597
1088
+ msgid "View"
1089
+ msgstr "Ver"
1090
+
1091
+ #: public/class-advanced-ads.php:598
1092
+ msgid "View the Ad"
1093
+ msgstr "Ver el Anuncio"
1094
+
1095
+ #: public/class-advanced-ads.php:599
1096
+ msgid "Search Ads"
1097
+ msgstr "Buscar Anuncios"
1098
+
1099
+ #: public/class-advanced-ads.php:600
1100
+ msgid "No Ads found"
1101
+ msgstr "No se encontraron anuncios"
1102
+
1103
+ #: public/class-advanced-ads.php:601
1104
+ msgid "No Ads found in Trash"
1105
+ msgstr "No se encontraron anuncios en la papelera"
1106
+
1107
+ #: public/class-advanced-ads.php:602
1108
+ msgid "Parent Ad"
1109
+ msgstr "Anuncio Principal"
1110
+
1111
+ #: admin/includes/class-ad-groups-list.php:165
1112
+ msgid "Ad weight"
1113
+ msgstr "Peso del Anuncio"
1114
+
1115
+ #: admin/includes/class-ad-groups-list.php:173
1116
+ #: admin/views/ad-list-timing-column.php:4
1117
+ msgid "starts %s"
1118
+ msgstr "Comienza %s"
1119
+
1120
+ #: admin/includes/class-ad-groups-list.php:192
1121
+ #: admin/views/ad-list-timing-column.php:21
1122
+ msgid "expires %s"
1123
+ msgstr "Expira %s"
1124
+
1125
+ #: admin/includes/class-ad-groups-list.php:194
1126
+ #: admin/views/ad-list-timing-column.php:23
1127
+ msgid "<strong>expired</strong> %s"
1128
+ msgstr "<strong>Expirado</strong> %s"
1129
+
1130
+ #: admin/includes/class-ad-groups-list.php:207
1131
+ msgid "all published ads are displayed"
1132
+ msgstr "Todos los anuncios publicados están mostrados"
1133
+
1134
+ #: admin/includes/class-ad-groups-list.php:209
1135
+ msgid "up to %d ads displayed"
1136
+ msgstr "Hasta %d anuncios mostrados"
1137
+
1138
+ #: admin/includes/class-ad-groups-list.php:212
1139
+ msgid "No ads assigned"
1140
+ msgstr "No hay anuncios asignados"
1141
+
1142
+ #: admin/includes/class-ad-groups-list.php:278
1143
+ msgid "Random ads"
1144
+ msgstr "Anuncios aleatorios"
1145
+
1146
+ #: admin/includes/class-ad-groups-list.php:279
1147
+ msgid "Display random ads based on ad weight"
1148
+ msgstr "Mostrar anuncios aleatorios basados en el peso del anuncio"
1149
+
1150
+ #: admin/includes/class-ad-groups-list.php:282
1151
+ msgid "Ordered ads"
1152
+ msgstr "Anuncios ordenados"
1153
+
1154
+ #: admin/includes/class-ad-groups-list.php:283
1155
+ msgid "Display ads with the highest ad weight first"
1156
+ msgstr "Mostrar de primero anuncios con el peso más alto"
1157
+
1158
+ #: admin/includes/class-ad-groups-list.php:303
1159
+ msgid "Usage"
1160
+ msgstr "Uso"
1161
+
1162
+ #: admin/includes/class-ad-groups-list.php:333
1163
+ msgid "Invalid Ad Group"
1164
+ msgstr "Grupo de Anuncios Inválido"
1165
+
1166
+ #: admin/includes/class-ad-groups-list.php:338
1167
+ msgid "You don’t have permission to change the ad groups"
1168
+ msgstr "No tienes permiso para cambiar los Grupos de Anuncios"
1169
+
1170
+ #: admin/includes/class-ad-type.php:79 admin/includes/class-ad-type.php:84
1171
+ msgid "Ad Details"
1172
+ msgstr "Detalles del Anuncio"
1173
+
1174
+ #: admin/includes/class-ad-type.php:80 admin/includes/class-ad-type.php:85
1175
+ msgid "Ad Planning"
1176
+ msgstr "Planificación del Anuncio"
1177
+
1178
+ #: admin/includes/class-ad-type.php:182
1179
+ msgid "expired"
1180
+ msgstr "Expirado"
1181
+
1182
+ #: admin/includes/class-ad-type.php:183
1183
+ msgid "any expiry date"
1184
+ msgstr "Cualquier fecha de expiración"
1185
+
1186
+ #: admin/includes/class-ad-type.php:184
1187
+ msgid "planned"
1188
+ msgstr "Planeado"
1189
+
1190
+ #: admin/includes/class-ad-type.php:487 admin/includes/class-ad-type.php:488
1191
+ msgid "Ad updated."
1192
+ msgstr "Anuncio actualizado."
1193
+
1194
+ #. translators: %s: date and time of the revision
1195
+ #: admin/includes/class-ad-type.php:490
1196
+ msgid "Ad restored to revision from %s"
1197
+ msgstr "Anunció restaurado para revisión de %s"
1198
+
1199
+ #: admin/includes/class-ad-type.php:491
1200
+ msgid "Ad published."
1201
+ msgstr "Anuncio publicado."
1202
+
1203
+ #: admin/includes/class-ad-type.php:492
1204
+ msgid "Ad saved."
1205
+ msgstr "Anuncio guardado."
1206
+
1207
+ #: admin/includes/class-ad-type.php:493
1208
+ msgid "Ad submitted."
1209
+ msgstr "Anuncio enviado."
1210
+
1211
+ #: admin/includes/class-ad-type.php:495
1212
+ msgid "Ad scheduled for: <strong>%1$s</strong>."
1213
+ msgstr "Anuncio programado para: <strong>%1$s</strong>."
1214
+
1215
+ #. translators: Publish box date format, see http://php.net/date
1216
+ #: admin/includes/class-ad-type.php:497
1217
+ msgid "M j, Y @ G:i"
1218
+ msgstr "M j, Y @ G:i"
1219
+
1220
+ #: admin/includes/class-ad-type.php:499
1221
+ msgid "Ad draft updated."
1222
+ msgstr "Borrador del anuncio actualizado."
1223
+
1224
+ #: admin/includes/class-menu.php:52
1225
+ msgid "Overview"
1226
+ msgstr "Visión General"
1227
+
1228
+ #: admin/includes/class-menu.php:72
1229
+ msgid "Ad Placements"
1230
+ msgstr "Colocación de Anuncios"
1231
+
1232
+ #: admin/includes/class-menu.php:76
1233
+ msgid "Advanced Ads Settings"
1234
+ msgstr "Configuraciones de Advanced Ads"
1235
+
1236
+ #: admin/includes/class-menu.php:76 admin/views/debug.php:10
1237
+ msgid "Settings"
1238
+ msgstr "Configuraciones"
1239
+
1240
+ #: admin/includes/class-menu.php:79
1241
+ msgid "Advanced Ads Debugging"
1242
+ msgstr "Depuración de Advanced Ads"
1243
+
1244
+ #: admin/includes/class-menu.php:79
1245
+ msgid "Debug"
1246
+ msgstr "Depuración"
1247
+
1248
+ #: admin/includes/class-menu.php:83 admin/includes/class-menu.php:83
1249
+ msgid "Advanced Ads Intro"
1250
+ msgstr "Introducción a Advanced Ads"
1251
+
1252
+ #: admin/includes/class-menu.php:238 admin/includes/class-menu.php:265
1253
+ msgid "Sorry, you are not allowed to access this feature."
1254
+ msgstr "Lo sentimos, no tienes permiso para acceder a esta función."
1255
+
1256
+ #: admin/includes/class-menu.php:251
1257
+ msgid ""
1258
+ "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1259
+ "deleted?"
1260
+ msgstr ""
1261
+ "Intentaste editar un Grupo de Anuncios que no existe. Tal vez ha sido "
1262
+ "borrado?"
1263
+
1264
+ #: admin/includes/class-meta-box.php:53
1265
+ msgid "Ad Type"
1266
+ msgstr "Tipo de Anuncio"
1267
+
1268
+ #: admin/includes/class-meta-box.php:59
1269
+ msgid "Ad Parameters"
1270
+ msgstr "Parámetros del Anuncio"
1271
+
1272
+ #: admin/includes/class-meta-box.php:62
1273
+ msgid "Layout / Output"
1274
+ msgstr "Diseño / Visualización"
1275
+
1276
+ #: admin/includes/class-meta-box.php:65
1277
+ msgid "Display Conditions"
1278
+ msgstr "Condiciones de Visualización"
1279
+
1280
+ #: admin/includes/class-meta-box.php:68
1281
+ msgid "Visitor Conditions"
1282
+ msgstr "Condiciones del Visitante"
1283
+
1284
+ #: admin/includes/class-meta-box.php:196
1285
+ msgid "Ad Settings"
1286
+ msgstr "Configuración del Anuncio"
1287
+
1288
+ #: admin/includes/class-meta-box.php:298 admin/views/overview.php:23
1289
+ msgid "Ads Dashboard"
1290
+ msgstr "Panel de Anuncios"
1291
+
1292
+ #: admin/includes/class-meta-box.php:310
1293
+ msgid "From the ad optimization universe"
1294
+ msgstr "Desde el universo de optimización de anuncios"
1295
+
1296
+ #: admin/includes/class-meta-box.php:319
1297
+ msgid "Advanced Ads Tutorials"
1298
+ msgstr "Tutoriales de Advanced Ads"
1299
+
1300
+ #: admin/includes/class-meta-box.php:330
1301
+ msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
1302
+ msgstr "%d Anuncios <a href=\"%s\">Gestionar</a> - <a href=\"%s\">Nuevo</a>"
1303
+
1304
+ #: admin/includes/class-meta-box.php:341
1305
+ msgid "plugin manual and homepage"
1306
+ msgstr "Manual del plugin y página de inicio"
1307
+
1308
+ #: admin/includes/class-meta-box.php:348
1309
+ msgid "Get the tutorial via email"
1310
+ msgstr "Obtener el tutorial vía correo electrónico"
1311
+
1312
+ #: admin/includes/class-meta-box.php:355
1313
+ msgid "Get AdSense tips via email"
1314
+ msgstr "Obtener tips de AdSense vía correo electrónico"
1315
+
1316
+ #: admin/includes/class-notices.php:412
1317
+ msgid ""
1318
+ "You don’t seem to have an email address. Please use <a href=\"%s\" "
1319
+ "target=\"_blank\">this form</a> to sign up."
1320
+ msgstr ""
1321
+ "Parece ser que no tienes una dirección de correo electrónico. Por favor, usa "
1322
+ "<a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
1323
+
1324
+ #: admin/includes/class-notices.php:430
1325
+ msgid ""
1326
+ "How embarrassing. The email server seems to be down. Please try again later."
1327
+ msgstr ""
1328
+ "Esto es penoso. El servidor de correos parece estar caído. Por favor, "
1329
+ "inténtalo más tarde."
1330
+
1331
+ #: admin/includes/class-notices.php:435
1332
+ msgid ""
1333
+ "Please check your email (%s) for the confirmation message. If you didn’t "
1334
+ "receive one or want to use another email address then please use <a "
1335
+ "href=\"%s\" target=\"_blank\">this form</a> to sign up."
1336
+ msgstr ""
1337
+ "Por favor, revisa tu correo (%s) para el mensaje de confirmación. Si no "
1338
+ "recibiste uno o deseas utilizar otra dirección de correo, entonces por favor "
1339
+ "usa <a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
1340
+
1341
+ #: admin/includes/class-overview-widgets.php:45
1342
+ msgid "Tips and Tutorials"
1343
+ msgstr "Tips y Tutoriales"
1344
+
1345
+ #: admin/includes/class-overview-widgets.php:47
1346
+ msgid "Setup and Optimization Help"
1347
+ msgstr "Ayuda de Optimización y Configuración"
1348
+
1349
+ #: admin/includes/class-overview-widgets.php:49
1350
+ msgid "Manual and Support"
1351
+ msgstr "Manual y Soporte"
1352
+
1353
+ #: admin/includes/class-overview-widgets.php:53
1354
+ msgid "Advanced Ads Pro"
1355
+ msgstr "Advanced Ads Pro"
1356
+
1357
+ #: admin/includes/class-overview-widgets.php:55
1358
+ msgid "Tracking and Stats"
1359
+ msgstr "Estadísticas y Rastreo"
1360
+
1361
+ #: admin/includes/class-overview-widgets.php:57
1362
+ msgid "Responsive and Mobile ads"
1363
+ msgstr "Anuncios Responsables y Móviles"
1364
+
1365
+ #: admin/includes/class-overview-widgets.php:61
1366
+ msgid "Sticky ads"
1367
+ msgstr "Anuncios Pegajosos (sticky)"
1368
+
1369
+ #: admin/includes/class-overview-widgets.php:63
1370
+ msgid "PopUps and Layers"
1371
+ msgstr "PopUps y Ventanas Emergentes"
1372
+
1373
+ #: admin/includes/class-overview-widgets.php:65
1374
+ msgid "Ad Slider"
1375
+ msgstr "Slider de Anuncios"
1376
+
1377
+ #: admin/includes/class-overview-widgets.php:86
1378
+ msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
1379
+ msgstr ""
1380
+ "Obtén <strong>2 add-ons gratis</strong> por suscribirte al boletín de "
1381
+ "noticias."
1382
+
1383
+ #: admin/includes/class-overview-widgets.php:87
1384
+ msgid "Join now"
1385
+ msgstr "Suscríbete Ahora"
1386
+
1387
+ #: admin/includes/class-overview-widgets.php:94
1388
+ msgid ""
1389
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1390
+ "and Advanced Ads from the dedicated newsletter group."
1391
+ msgstr ""
1392
+ "Aprende más acerca de cómo y <strong>cuánto puedes ganar con AdSense</strong>"
1393
+ " y Advanced Ads con nuestro grupo de noticias dedicado."
1394
+
1395
+ #: admin/includes/class-overview-widgets.php:95 admin/includes/notices.php:30
1396
+ #: admin/views/intro.php:73 admin/views/notices/inline.php:3
1397
+ #: admin/views/notices/subscribe.php:3
1398
+ msgid "Subscribe me now"
1399
+ msgstr "Suscribirme Ahora"
1400
+
1401
+ #: admin/includes/class-overview-widgets.php:102
1402
+ msgid "Get the first steps and more tutorials to your inbox."
1403
+ msgstr "Obtén los primeros pasos y más tutoriales en tu correo."
1404
+
1405
+ #: admin/includes/class-overview-widgets.php:103
1406
+ msgid "Send it now"
1407
+ msgstr "Enviarlo Ahora"
1408
+
1409
+ #: admin/includes/class-overview-widgets.php:126 admin/views/intro.php:78
1410
+ msgid "Create your first ad"
1411
+ msgstr "Crea Tu Primer Anuncio"
1412
+
1413
+ #: admin/includes/class-overview-widgets.php:129
1414
+ msgid ""
1415
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
1416
+ "single spot."
1417
+ msgstr ""
1418
+ "Los Grupos de Anuncios contienen anuncios y se usan actualmente para rotar "
1419
+ "múltiples anuncios en un mismo lugar."
1420
+
1421
+ #: admin/includes/class-overview-widgets.php:131
1422
+ msgid "Create your first group"
1423
+ msgstr "Crea Tu Primer Grupo"
1424
+
1425
+ #: admin/includes/class-overview-widgets.php:134
1426
+ msgid ""
1427
+ "Ad Placements are the best way to manage where to display ads and groups."
1428
+ msgstr ""
1429
+ "Las Colocaciones de Anuncios son la mejor manera para gestionar en donde "
1430
+ "mostrar anuncios y grupos."
1431
+
1432
+ #: admin/includes/class-overview-widgets.php:136
1433
+ msgid "Create your first placement"
1434
+ msgstr "Crea Tu Primera Colocación"
1435
+
1436
+ #: admin/includes/class-overview-widgets.php:141
1437
+ msgid "Next steps"
1438
+ msgstr "Próximos Pasos"
1439
+
1440
+ #: admin/includes/class-overview-widgets.php:153
1441
+ msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
1442
+ msgstr "<a href=\"%s\" target=\"_blank\">Manual</a>"
1443
+
1444
+ #: admin/includes/class-overview-widgets.php:155
1445
+ msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
1446
+ msgstr "Vota por una <a href=\"%s\" target=\"_blank\">funcionalidad</a>"
1447
+
1448
+ #: admin/includes/class-overview-widgets.php:156
1449
+ msgid ""
1450
+ "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
1451
+ "href=\"%s\" target=\"_blank\">wordpress.org</a>"
1452
+ msgstr ""
1453
+ "Agradece al desarrollador con una &#9733;&#9733;&#9733;&#9733;&#9733; "
1454
+ "evaluación del plugin en <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
1455
+
1456
+ #: admin/includes/class-overview-widgets.php:165
1457
+ msgid ""
1458
+ "Need help to set up and optimize your ads? Need custom coding on your site? "
1459
+ "Ask me for a quote."
1460
+ msgstr ""
1461
+ "Necesitas ayuda configurando y optimizando tus anuncios? Necesitas "
1462
+ "programación personalizada para tu sitio? Contáctame para una cotización."
1463
+
1464
+ #: admin/includes/class-overview-widgets.php:166
1465
+ msgid "Help with ads on %s"
1466
+ msgstr "Ayuda con anuncios en %s"
1467
+
1468
+ #: admin/includes/class-overview-widgets.php:167
1469
+ msgid "Get an offer"
1470
+ msgstr "Obtén una Cotización"
1471
+
1472
+ #: admin/includes/class-overview-widgets.php:175
1473
+ msgid "Ad management for advanced websites."
1474
+ msgstr "Gestión de anuncios para websites avanzados."
1475
+
1476
+ #: admin/includes/class-overview-widgets.php:176
1477
+ msgid "Cache-busting"
1478
+ msgstr "Almacenamiento-en-caché"
1479
+
1480
+ #: admin/includes/class-overview-widgets.php:177
1481
+ msgid "Advanced visitor conditions"
1482
+ msgstr "Condiciones Avanzadas del Visitante"
1483
+
1484
+ #: admin/includes/class-overview-widgets.php:178
1485
+ msgid "Flash ads with fallback"
1486
+ msgstr "Anuncios Flash con Retroceso (fallback)"
1487
+
1488
+ #: admin/includes/class-overview-widgets.php:180
1489
+ msgid "Get Pro"
1490
+ msgstr "Obtener Pro"
1491
+
1492
+ #: admin/includes/class-overview-widgets.php:188
1493
+ msgid "Track the impressions of and clicks on your ads."
1494
+ msgstr "Rastrear las impresiones y los clics en tus anuncios."
1495
+
1496
+ #: admin/includes/class-overview-widgets.php:189
1497
+ msgid "2 methods to count impressions"
1498
+ msgstr "Dos métodos para contar las impresiones"
1499
+
1500
+ #: admin/includes/class-overview-widgets.php:190
1501
+ msgid "beautiful stats for all or single ads"
1502
+ msgstr ""
1503
+ "Hermosas estadísticas para todos los anuncios o para anuncios individuales"
1504
+
1505
+ #: admin/includes/class-overview-widgets.php:191
1506
+ msgid "group stats by day, week or month"
1507
+ msgstr "Agrupar estadísticas por día, semana o mes"
1508
+
1509
+ #: admin/includes/class-overview-widgets.php:193
1510
+ msgid "Get the Tracking add-on"
1511
+ msgstr "Obtener el add-on de Rastreo"
1512
+
1513
+ #: admin/includes/class-overview-widgets.php:201
1514
+ msgid "Display ads based on the size of your visitor’s browser or device."
1515
+ msgstr "Mostrar anuncios en base al tamaño del navegador del visitante."
1516
+
1517
+ #: admin/includes/class-overview-widgets.php:202
1518
+ msgid "set a range (from … to …) pixels for the browser size"
1519
+ msgstr "Definir un rango (de… a…) píxeles para el tamaño del navegador"
1520
+
1521
+ #: admin/includes/class-overview-widgets.php:203
1522
+ msgid "set custom sizes for AdSense responsive ads"
1523
+ msgstr ""
1524
+ "Definir tamaños personalizados para los anuncios responsables de AdSense"
1525
+
1526
+ #: admin/includes/class-overview-widgets.php:204
1527
+ msgid "list all ads by their responsive settings"
1528
+ msgstr "Listar todos los anuncios por sus configuraciones responsables"
1529
+
1530
+ #: admin/includes/class-overview-widgets.php:206
1531
+ msgid "Get the Responsive add-on"
1532
+ msgstr "Obtener el add-on de diseño responsable"
1533
+
1534
+ #: admin/includes/class-overview-widgets.php:224
1535
+ msgid ""
1536
+ "Fix ads to the browser while users are scrolling and create best performing "
1537
+ "anchor ads."
1538
+ msgstr ""
1539
+ "Fijar anuncios al navegador mientras los usuarios están desplazándose y "
1540
+ "crear los anuncios de anclaje con mejor rendimiento."
1541
+
1542
+ #: admin/includes/class-overview-widgets.php:225
1543
+ msgid "position ads that dont scroll with the screen"
1544
+ msgstr "Posicionar anuncios que no se desplacen con la pantalla"
1545
+
1546
+ #: admin/includes/class-overview-widgets.php:226
1547
+ msgid "build anchor ads not only on mobile devices"
1548
+ msgstr "Construir anuncios de anclaje no solamente en dispositivos móviles"
1549
+
1550
+ #: admin/includes/class-overview-widgets.php:228
1551
+ msgid "Get the Sticky add-on"
1552
+ msgstr "Obtener el add-on de Anuncios Pegajosos (sticky)"
1553
+
1554
+ #: admin/includes/class-overview-widgets.php:236
1555
+ msgid "Display content and ads in layers and popups on custom events."
1556
+ msgstr ""
1557
+ "Mostrar contenido y anuncios en Ventanas Emergentes y PopUps en eventos "
1558
+ "personalizados."
1559
+
1560
+ #: admin/includes/class-overview-widgets.php:237
1561
+ msgid "display a popup after a user interaction like scrolling"
1562
+ msgstr ""
1563
+ "Mostrar un PopUp después de una interacción de usuario (como desplazarse)"
1564
+
1565
+ #: admin/includes/class-overview-widgets.php:239
1566
+ msgid "allow users to close the popup"
1567
+ msgstr ""
1568
+ "Permitir a los usuarios cerrar un PopUp\n"
1569
+
1570
+ #: admin/includes/class-overview-widgets.php:241
1571
+ msgid "Get the PopUp and Layer add-on"
1572
+ msgstr "Obtener el add-on de PopUps y Ventanas Emergentes"
1573
+
1574
+ #: admin/includes/class-overview-widgets.php:249
1575
+ msgid "Create a beautiful and simple slider from your ads."
1576
+ msgstr "Crear un lindo y simple Slider para tus anuncios."
1577
+
1578
+ #: admin/includes/class-overview-widgets.php:251
1579
+ msgid "Get the Slider add-on"
1580
+ msgstr "Obtener el add-on del Slider"
1581
+
1582
+ #: admin/includes/class-settings.php:47 admin/views/settings.php:12
1583
+ msgid "General"
1584
+ msgstr "General"
1585
+
1586
+ #: admin/includes/class-settings.php:59 admin/includes/class-settings.php:182
1587
+ msgid "Licenses"
1588
+ msgstr "Licencias"
1589
+
1590
+ #: admin/includes/class-settings.php:70
1591
+ msgid "Disable ads"
1592
+ msgstr "Deshabilitar anuncios"
1593
+
1594
+ #: admin/includes/class-settings.php:78
1595
+ msgid "Hide ads for logged in users"
1596
+ msgstr "Ocultar anuncios para usuarios que inicien sesión"
1597
+
1598
+ #: admin/includes/class-settings.php:86
1599
+ msgid "Use advanced JavaScript"
1600
+ msgstr "Utilizar JavaScript avanzado"
1601
+
1602
+ #: admin/includes/class-settings.php:94
1603
+ msgid "Unlimited ad injection"
1604
+ msgstr "Inyección ilimitada de anuncios"
1605
+
1606
+ #: admin/includes/class-settings.php:102
1607
+ msgid "Priority of content injection filter"
1608
+ msgstr "Prioridad de filtro de inyección de contenido"
1609
+
1610
+ #: admin/includes/class-settings.php:110
1611
+ msgid "Hide ads from bots"
1612
+ msgstr "Ocultar anuncios de bots"
1613
+
1614
+ #: admin/includes/class-settings.php:118
1615
+ msgid "Disable notices"
1616
+ msgstr "Deshabilitar notificaciones"
1617
+
1618
+ #: admin/includes/class-settings.php:126
1619
+ msgid "ID prefix"
1620
+ msgstr "Prefijo ID"
1621
+
1622
+ #: admin/includes/class-settings.php:134
1623
+ msgid "Remove Widget ID"
1624
+ msgstr "Remover Widget ID"
1625
+
1626
+ #: admin/includes/class-settings.php:142
1627
+ msgid "Allow editors to manage ads"
1628
+ msgstr "Permitir a editores gestionar anuncios"
1629
+
1630
+ #: admin/includes/class-settings.php:238
1631
+ msgid "(display to all)"
1632
+ msgstr "(mostrar a todos)"
1633
+
1634
+ #: admin/includes/class-settings.php:239
1635
+ msgid "Subscriber"
1636
+ msgstr "Suscriptor"
1637
+
1638
+ #: admin/includes/class-settings.php:240
1639
+ msgid "Contributor"
1640
+ msgstr "Contribuyente"
1641
+
1642
+ #: admin/includes/class-settings.php:241
1643
+ msgid "Author"
1644
+ msgstr "Autor"
1645
+
1646
+ #: admin/includes/class-settings.php:242
1647
+ msgid "Editor"
1648
+ msgstr "Editor"
1649
+
1650
+ #: admin/includes/class-settings.php:243
1651
+ msgid "Admin"
1652
+ msgstr "Administrador"
1653
+
1654
+ #: admin/includes/class-settings.php:251
1655
+ msgid "Choose the lowest role a user must have in order to not see any ads."
1656
+ msgstr ""
1657
+ "Elige el rol mínimo que un usuario debe tener para no ver ningún anuncio."
1658
+
1659
+ #: admin/includes/class-settings.php:265
1660
+ msgid ""
1661
+ "<strong>notice: </strong>the file is currently enabled by an add-on that "
1662
+ "needs it."
1663
+ msgstr ""
1664
+ "<strong>Notificación: </strong>el archivo se encuentra activado por un add-"
1665
+ "on que lo necesita."
1666
+
1667
+ #: admin/includes/class-settings.php:268
1668
+ msgid ""
1669
+ "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
1670
+ "here</a>). Some features and add-ons might override this setting if they "
1671
+ "need features from this file."
1672
+ msgstr ""
1673
+ "Habilitar funciones avanzadas de JavaScript (<a href=\"%s\" "
1674
+ "target=\"_blank\">aquí</a>). Algunas características y add-ons pueden anular "
1675
+ "esta configuración si necesitan funciones de este archivo."
1676
+
1677
+ #: admin/includes/class-settings.php:281
1678
+ msgid ""
1679
+ "Some plugins and themes trigger ad injection where it shouldn’t happen. "
1680
+ "Therefore, Advanced Ads ignores injected placements on non-singular pages "
1681
+ "and outside the loop. However, this can cause problems with some themes. You "
1682
+ "can enable this option if you don’t see ads or want to enable ad injections "
1683
+ "on archive pages AT YOUR OWN RISK."
1684
+ msgstr ""
1685
+ "Algunos plugins y temas pueden desencadenar inyecciones de anuncios en "
1686
+ "lugares en donde no debe ocurrir. Por lo tanto, Advanced Ads ignora las "
1687
+ "colocaciones inyectadas en páginas no singulares y fuera del ciclo iterativo "
1688
+ "(loop). No obstante, esto puede causar problemas con algunos temas. Puedes "
1689
+ "habilitar esta opción si no ves anuncios o quieres habilitar las inyecciones "
1690
+ "de anuncios en páginas de archivos BAJO TU PROPIO RIESGO."
1691
+
1692
+ #: admin/includes/class-settings.php:297
1693
+ msgid ""
1694
+ "Please check your post content. A priority of 10 and below might cause "
1695
+ "issues (wpautop function might run twice)."
1696
+ msgstr ""
1697
+ "Por favor, revisa el contenido de tu entrada. Una prioridad de 10 o menos "
1698
+ "puede causar problemas (la función wpautop puede ejecutarse dos veces)."
1699
+
1700
+ #: admin/includes/class-settings.php:299
1701
+ msgid ""
1702
+ "Play with this value in order to change the priority of the injected ads "
1703
+ "compared to other auto injected elements in the post content."
1704
+ msgstr ""
1705
+ "Juega con este valor para cambiar la prioridad de los anuncios inyectados en "
1706
+ "comparación con otros elementos auto inyectados en el contenido de la "
1707
+ "entrada."
1708
+
1709
+ #: admin/includes/class-settings.php:313
1710
+ msgid ""
1711
+ "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
1712
+ "impressions for bots when using the <a href=\"%s\" target=\"_blank\">"
1713
+ "Tracking Add-On</a>."
1714
+ msgstr ""
1715
+ "Ocultar los anuncios de rastreadores (crawlers), bots y usuarios de agente "
1716
+ "vacíos. También previene contar impresiones de bots cuando se usa <a "
1717
+ "href=\"%s\" target=\"_blank\">El Add-On de Rastreo</a>."
1718
+
1719
+ #: admin/includes/class-settings.php:314
1720
+ msgid ""
1721
+ "Disabling this option only makes sense if your ads contain content you want "
1722
+ "to display to bots (like search engines) or your site is cached and bots "
1723
+ "could create a cached version without the ads."
1724
+ msgstr ""
1725
+ "Deshabilitar esta opción sólo tiene sentido si tus anuncios contienen "
1726
+ "contenido que deseas mostrar a los bots (como motores de búsqueda) o tu "
1727
+ "sitio esta cacheado y los bots pueden crear una versión cacheada sin los "
1728
+ "anuncios."
1729
+
1730
+ #: admin/includes/class-settings.php:327
1731
+ msgid ""
1732
+ "Disable internal notices like tips, tutorials, email newsletters and update "
1733
+ "notices. Disabling notices is recommended if you run multiple blogs with "
1734
+ "Advanced Ads already."
1735
+ msgstr ""
1736
+ "Deshabilitar notificaciones internas como tips, tutoriales, boletines de "
1737
+ "noticias y notificaciones de actualizaciones. Deshabilitar las "
1738
+ "notificaciones es recomendado si ya administras múltiples sitios con "
1739
+ "Advanced Ads."
1740
+
1741
+ #: admin/includes/class-settings.php:344
1742
+ msgid ""
1743
+ "Prefix of class or id attributes in the frontend. Change it if you don’t "
1744
+ "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
1745
+ "need to <strong>rewrite css rules afterwards</strong>."
1746
+ msgstr ""
1747
+ "Prefijo de clase o atributos ID en el frente del sitio. Cámbialo si no "
1748
+ "quieres que los <strong>bloqueadores de anuncios</strong> marquen estos "
1749
+ "bloques como anuncios. <br/>Podrías necesitar <strong>reescribir las reglas "
1750
+ "css después</strong>."
1751
+
1752
+ #: admin/includes/class-settings.php:365
1753
+ msgid ""
1754
+ "Remove the ID attribute from widgets in order to not make them an easy "
1755
+ "target of ad blockers."
1756
+ msgstr ""
1757
+ "Remover el atributo ID de los widgets para no hacerlos un blanco fácil de "
1758
+ "los bloqueadores de anuncios."
1759
+
1760
+ #: admin/includes/class-settings.php:390
1761
+ msgid "Allow editors to also manage and publish ads."
1762
+ msgstr "Permitir también que los editores gestionen y publiquen anuncios."
1763
+
1764
+ #: admin/includes/notices.php:9
1765
+ msgid ""
1766
+ "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1767
+ "Steps</a>."
1768
+ msgstr ""
1769
+ "Advanced Ads exitosamente instalado. Échale un vistazo a los <a href=\"%s\">"
1770
+ "primeros pasos</a>."
1771
+
1772
+ #: admin/includes/notices.php:15
1773
+ msgid ""
1774
+ "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1775
+ "receive the first steps via email?"
1776
+ msgstr ""
1777
+ "Gracias por activar <strong>Advanced Ads</strong>. Deseas recibir los "
1778
+ "primeros pasos por correo electrónico?"
1779
+
1780
+ #: admin/includes/notices.php:16
1781
+ msgid "Yes, send it"
1782
+ msgstr "Si, envíalo"
1783
+
1784
+ #: admin/includes/notices.php:22
1785
+ msgid ""
1786
+ "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1787
+ "<strong>2 free add-ons</strong> for joining the newsletter."
1788
+ msgstr ""
1789
+ "Gracias por usar <strong>Advanced Ads</strong>. Mántente informado y recibe "
1790
+ "<strong>2 add-ons gratis</strong> por unirte a nuestro boletín de noticias."
1791
+
1792
+ #: admin/includes/notices.php:23
1793
+ msgid "Add me now"
1794
+ msgstr "Añadirme Ahora"
1795
+
1796
+ #: admin/includes/notices.php:29
1797
+ msgid ""
1798
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1799
+ "and Advanced Ads from my dedicated newsletter."
1800
+ msgstr ""
1801
+ "Aprende más sobre cómo y <strong>cuánto puedes ganar con AdSense</strong> y "
1802
+ "Advanced Ads con mi boletín de noticias dedicado."
1803
+
1804
+ #: admin/includes/notices.php:41
1805
+ msgid ""
1806
+ "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1807
+ "missing</strong>."
1808
+ msgstr ""
1809
+ "Una o más llaves de licencia para los <strong>add-ons de Advanced Ads no se "
1810
+ "encuentran o son inválidos</strong>."
1811
+
1812
+ #: admin/includes/notices.php:41
1813
+ msgid "Please add valid license keys <a href=\"%s\">here</a>."
1814
+ msgstr "Por favor, añade llaves de licencia válidas <a href=\"%s\">aquí</a>."
1815
+
1816
+ #: admin/includes/notices.php:47
1817
+ msgid ""
1818
+ "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1819
+ "soon</strong>. Don’t risk to lose support and updates and renew your license "
1820
+ "before it expires with a significant discount on <a href=\"%s\" "
1821
+ "target=\"_blank\">the add-on page</a>."
1822
+ msgstr ""
1823
+ "Una o más licencias para tus <strong>add-ons de Advanced Ads van a expirar "
1824
+ "pronto</strong>. No arriesgues perder soporte y actualizaciones y renueva tu "
1825
+ "licencia antes de que expire con un descuento significativo en <a "
1826
+ "href=\"%s\" target=\"_blank\">la página de add-ons</a>."
1827
+
1828
+ #: admin/includes/notices.php:53
1829
+ msgid ""
1830
+ "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1831
+ "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1832
+ "information."
1833
+ msgstr ""
1834
+ "Licencia (s) de <strong>Advanced Ads</strong> expirada. El soporte y las "
1835
+ "actualizaciones están deshabilitadas. Por favor, visita <a href=\"%s\"> la "
1836
+ "página de licencias</a> para más información."
1837
+
1838
+ #: admin/includes/shortcode-creator-l10n.php:10
1839
+ msgctxt "shortcode creator"
1840
+ msgid "Add an ad"
1841
+ msgstr "Agrega un Anuncio"
1842
+
1843
+ #: admin/includes/shortcode-creator-l10n.php:11
1844
+ msgctxt "shortcode creator"
1845
+ msgid "Add shortcode"
1846
+ msgstr "Agrega un Shortcode "
1847
+
1848
+ #: admin/includes/shortcode-creator-l10n.php:12
1849
+ msgctxt "shortcode creator"
1850
+ msgid "Cancel"
1851
+ msgstr "Cancelar "
1852
+
1853
+ #: admin/views/ad-display-metabox.php:66
1854
+ msgid "If you want to display the ad everywhere, don't do anything here. "
1855
+ msgstr "Si quieres mostrar el anuncio en todas partes, no hagas nada aquí."
1856
+
1857
+ #: admin/views/ad-display-metabox.php:69 admin/views/ad-visitor-metabox.php:34
1858
+ msgid "New condition"
1859
+ msgstr "Nueva Condición"
1860
+
1861
+ #: admin/views/ad-display-metabox.php:72 admin/views/ad-visitor-metabox.php:37
1862
+ msgid "-- choose a condition --"
1863
+ msgstr "-- Selecciona una Condición --"
1864
+
1865
+ #: admin/views/ad-display-metabox.php:77
1866
+ #: admin/views/ad-group-list-form-row.php:52
1867
+ #: admin/views/ad-visitor-metabox.php:42
1868
+ msgid "add"
1869
+ msgstr "Añadir"
1870
+
1871
+ #: admin/views/ad-group-edit.php:40
1872
+ msgid ""
1873
+ "An id-like string with only letters in lower case, numbers, and hyphens."
1874
+ msgstr ""
1875
+ "Una cadena tipo-id con solamente letras en minúscula, números, y guiones."
1876
+
1877
+ #: admin/views/ad-group-edit.php:57
1878
+ msgid "Create new Ad Group"
1879
+ msgstr "Crear un nuevo Grupo de Anuncios"
1880
+
1881
+ #: admin/views/ad-group-edit.php:59
1882
+ msgid "Update"
1883
+ msgstr "Actualizar"
1884
+
1885
+ #: admin/views/ad-group-list-form-row.php:3 admin/views/placements.php:25
1886
+ msgid "Name"
1887
+ msgstr "Nombre"
1888
+
1889
+ #: admin/views/ad-group-list-form-row.php:5
1890
+ msgid "Description"
1891
+ msgstr "Descripción"
1892
+
1893
+ #: admin/views/ad-group-list-form-row.php:7 admin/views/placements.php:24
1894
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:47
1895
+ msgid "Type"
1896
+ msgstr "Tipo"
1897
+
1898
+ #: admin/views/ad-group-list-form-row.php:16
1899
+ msgid "Number of visible ads"
1900
+ msgstr "Número de anuncios visibles"
1901
+
1902
+ #: admin/views/ad-group-list-form-row.php:22
1903
+ msgctxt "option to display all ads in an ad groups"
1904
+ msgid "all"
1905
+ msgstr "Todos"
1906
+
1907
+ #: admin/views/ad-group-list-form-row.php:25
1908
+ msgid "Number of ads that are visible at the same time"
1909
+ msgstr "Número de anuncios que son visibles al mismo tiempo"
1910
+
1911
+ #: admin/views/ad-group-list-form-row.php:32
1912
+ msgid "weight"
1913
+ msgstr "Peso"
1914
+
1915
+ #: admin/views/ad-group-list-header.php:4
1916
+ msgid "Details"
1917
+ msgstr "Detalles"
1918
+
1919
+ #: admin/views/ad-group-list-row.php:8 admin/views/ad-group.php:63
1920
+ #: admin/views/ad-info.php:3 admin/views/placements.php:61
1921
+ msgid "shortcode"
1922
+ msgstr "Shortcode:"
1923
+
1924
+ #: admin/views/ad-group-list-row.php:11 admin/views/ad-group.php:66
1925
+ #: admin/views/placements.php:64
1926
+ msgid "template"
1927
+ msgstr "Plantilla"
1928
+
1929
+ #: admin/views/ad-group-list-row.php:14
1930
+ msgid ""
1931
+ "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1932
+ "manual</a>."
1933
+ msgstr ""
1934
+ "Aprende más sobre el uso de grupos en el <a href=\"%s\" target=\"_blank\">"
1935
+ "manual</a>."
1936
+
1937
+ #: admin/views/ad-group-list-row.php:19
1938
+ msgid "Type: %s"
1939
+ msgstr "Tipo: %s"
1940
+
1941
+ #: admin/views/ad-group-list-row.php:20
1942
+ msgid "ID: %s"
1943
+ msgstr "ID: %s"
1944
+
1945
+ #: admin/views/ad-group.php:18
1946
+ msgid "Ad Groups successfully updated"
1947
+ msgstr "Grupos de Anuncios actualizados exitosamente"
1948
+
1949
+ #: admin/views/ad-group.php:46
1950
+ msgid "Search results for &#8220;%s&#8221;"
1951
+ msgstr "Resultados de la búsqueda para &#8220;%s&#8221;"
1952
+
1953
+ #: admin/views/ad-group.php:52
1954
+ msgid ""
1955
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
1956
+ "display random ads in the frontend or run split tests, but also just for "
1957
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1958
+ "ad can belong to multiple ad groups."
1959
+ msgstr ""
1960
+ "Los Grupos de Anuncios son un método muy flexible para reunir anuncios. Los "
1961
+ "puedes usar para mostrar anuncios aleatorios en el frente de tu sitio o para "
1962
+ "ejecutar evaluaciones comparativas (tipo split tests), pero también sirven "
1963
+ "con propósitos informativos. Los Grupos de Anuncios no solamente pueden "
1964
+ "tener múltiples anuncios, sino que también, un anuncio puede pertenecer a "
1965
+ "múltiples grupos."
1966
+
1967
+ #: admin/views/ad-group.php:60
1968
+ msgid "How to display an Ad Group?"
1969
+ msgstr "Cómo mostrar un Grupo de Anuncios?"
1970
+
1971
+ #: admin/views/ad-group.php:62
1972
+ msgid ""
1973
+ "Examples on how to display an ad group? Find more help and examples in the "
1974
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
1975
+ msgstr ""
1976
+ "Ejemplos de cómo mostrar un Grupo de Anuncios? Encuentra más ayuda y "
1977
+ "ejemplos en el <a href=\"%s\" target=\"_blank\">manual</a>"
1978
+
1979
+ #: admin/views/ad-group.php:64
1980
+ msgid "To display an ad group with the ID 6 in content fields"
1981
+ msgstr ""
1982
+ "Para mostrar un Grupo de Anuncios con el ID 6 en los campos de contenido"
1983
+
1984
+ #: admin/views/ad-group.php:67
1985
+ msgid "To display an ad group with the ID 6 in template files"
1986
+ msgstr ""
1987
+ "Para mostrar un Grupo de Anuncios con el ID 6 en los archivos de plantilla"
1988
+
1989
+ #: admin/views/ad-group.php:87
1990
+ msgid "Update Groups"
1991
+ msgstr "Actualizar Grupos"
1992
+
1993
+ #: admin/views/ad-info-top.php:54
1994
+ msgid ""
1995
+ "Learn more about your choices to display an ad in the <a href=\"%s\" "
1996
+ "target=\"_blank\">manual</a>."
1997
+ msgstr ""
1998
+ "Aprender más acerca de tus opciones para mostrar un anuncio en el <a "
1999
+ "href=\"%s\" target=\"_blank\">manual</a>."
2000
+
2001
+ #: admin/views/ad-info.php:2
2002
+ msgid "Ad Id: %s"
2003
+ msgstr "ID del Anuncio: %s"
2004
+
2005
+ #: admin/views/ad-info.php:5
2006
+ msgid "theme function"
2007
+ msgstr "Función para el Tema:"
2008
+
2009
+ #: admin/views/ad-info.php:7
2010
+ msgid ""
2011
+ "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
2012
+ msgstr ""
2013
+ "Encuentra más opciones de visualización en el <a href=\"%s\" "
2014
+ "target=\"_blank\">manual</a>."
2015
+
2016
+ #: admin/views/ad-info.php:11
2017
+ msgid "click to change"
2018
+ msgstr "Clic para cambiar"
2019
+
2020
+ #: admin/views/ad-info.php:15
2021
+ msgid "Add a description"
2022
+ msgstr "Añadir una Descripción"
2023
+
2024
+ #: admin/views/ad-info.php:18
2025
+ msgid "Internal description or your own notes about this ad."
2026
+ msgstr "Descripción interna, o tus propias notas, acerca de este anuncio."
2027
+
2028
+ #: admin/views/ad-list-filters.php:2
2029
+ msgid "all ad types"
2030
+ msgstr "Todos los tipos de anuncios"
2031
+
2032
+ #: admin/views/ad-list-filters.php:5
2033
+ msgid "all ad sizes"
2034
+ msgstr "Todos los tamaños de anuncios"
2035
+
2036
+ #: admin/views/ad-list-filters.php:8
2037
+ msgid "all ad dates"
2038
+ msgstr "Todas las fechas de anuncios"
2039
+
2040
+ #: admin/views/ad-list-filters.php:16
2041
+ msgid "all ad groups"
2042
+ msgstr "Todos los Grupos de Anuncios"
2043
+
2044
+ #: admin/views/ad-main-metabox.php:3
2045
+ msgid "No ad types defined"
2046
+ msgstr "No hay tipos de anuncios definidos"
2047
+
2048
+ #: admin/views/ad-output-metabox.php:1
2049
+ msgid "Everything connected to the ads layout and output."
2050
+ msgstr "Todo lo relacionado con el diseño y la visualización de los anuncios."
2051
+
2052
+ #: admin/views/ad-output-metabox.php:4
2053
+ msgid "Position"
2054
+ msgstr "Posición:"
2055
+
2056
+ #: admin/views/ad-output-metabox.php:6
2057
+ msgid "- default -"
2058
+ msgstr "- Defecto -"
2059
+
2060
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:54
2061
+ msgid "default"
2062
+ msgstr "Defecto"
2063
+
2064
+ #: admin/views/ad-output-metabox.php:8
2065
+ msgid "left"
2066
+ msgstr "Izquierda"
2067
+
2068
+ #: admin/views/ad-output-metabox.php:11
2069
+ msgid "center"
2070
+ msgstr "Centro"
2071
+
2072
+ #: admin/views/ad-output-metabox.php:14
2073
+ msgid "right"
2074
+ msgstr "Derecha"
2075
+
2076
+ #: admin/views/ad-output-metabox.php:18
2077
+ msgid ""
2078
+ "Check this if you don't want the following elements to float around the ad. "
2079
+ "(adds a clearfix)"
2080
+ msgstr ""
2081
+ "Chequea esto si no quieres que los elementos sub-siguientes floten alrededor "
2082
+ "del anuncio. (Añade un arreglo de espacio - clearfix)"
2083
+
2084
+ #: admin/views/ad-output-metabox.php:22
2085
+ msgid "Margin"
2086
+ msgstr "Margen:"
2087
+
2088
+ #: admin/views/ad-output-metabox.php:24
2089
+ msgid "top:"
2090
+ msgstr "Superior:"
2091
+
2092
+ #: admin/views/ad-output-metabox.php:26
2093
+ msgid "right:"
2094
+ msgstr "Derecho:"
2095
+
2096
+ #: admin/views/ad-output-metabox.php:28
2097
+ msgid "bottom:"
2098
+ msgstr "Inferior:"
2099
+
2100
+ #: admin/views/ad-output-metabox.php:30
2101
+ msgid "left:"
2102
+ msgstr "Izquierdo:"
2103
+
2104
+ #: admin/views/ad-output-metabox.php:32
2105
+ msgid "tip: use this to add a margin around the ad"
2106
+ msgstr "Tip: usa esto para añadir un margen alrededor del anuncio"
2107
+
2108
+ #: admin/views/ad-output-metabox.php:35
2109
+ msgid "container ID"
2110
+ msgstr "ID del Contenedor"
2111
+
2112
+ #: admin/views/ad-output-metabox.php:38
2113
+ msgid "Specify the id of the ad container. Leave blank for random or no id."
2114
+ msgstr ""
2115
+ "Especificar el ID para el contenedor del anuncio. Dejar en blanco para un "
2116
+ "valor aleatorio o para no tener un ID"
2117
+
2118
+ #: admin/views/ad-output-metabox.php:41
2119
+ msgid "container classes"
2120
+ msgstr "Clases para el Contenedor"
2121
+
2122
+ #: admin/views/ad-parameters-size.php:1
2123
+ msgid "size"
2124
+ msgstr "Tamaño"
2125
+
2126
+ #: admin/views/ad-parameters-size.php:3
2127
+ msgid "width"
2128
+ msgstr "Ancho"
2129
+
2130
+ #: admin/views/ad-parameters-size.php:4
2131
+ msgid "height"
2132
+ msgstr "Alto"
2133
+
2134
+ #: admin/views/ad-submitbox-meta.php:6
2135
+ msgid "Set expiry date"
2136
+ msgstr "Establecer la fecha de expiración"
2137
+
2138
+ #: admin/views/ad-submitbox-meta.php:16
2139
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2140
+ msgid "%1$s-%2$s"
2141
+ msgstr "%1$s-%2$s"
2142
+
2143
+ #: admin/views/ad-submitbox-meta.php:29
2144
+ msgctxt ""
2145
+ "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
2146
+ msgid "%1$s %2$s, %3$s @ %4$s %5$s"
2147
+ msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
2148
+
2149
+ #: admin/views/ad-visitor-metabox.php:4
2150
+ msgid ""
2151
+ "Display conditions that are based on the user. Use with caution on cached "
2152
+ "websites."
2153
+ msgstr ""
2154
+ "Mostrar condiciones que están basadas en el usuario. Usar con cautela en "
2155
+ "websites cacheados."
2156
+
2157
+ #: admin/views/ad-visitor-metabox.php:28
2158
+ msgid ""
2159
+ "Visitor conditions limit the number of users who can see your ad. There is "
2160
+ "no need to set visitor conditions if you want all users to see the ad."
2161
+ msgstr ""
2162
+ "Las condiciones del visitante limitan el número de usuarios que pueden ver "
2163
+ "tu anuncio. No hay necesidad de establecer condiciones del visitante si "
2164
+ "deseas que todos los usuarios vean el anuncio."
2165
+
2166
+ #: admin/views/ad-visitor-metabox.php:30
2167
+ msgid ""
2168
+ "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
2169
+ "Pro</a> if dynamic features get cached."
2170
+ msgstr ""
2171
+ "Revisa el almacenamiento-en-caché en <a href=\"%s\" target=\"_blank\">"
2172
+ "Advanced Ads Pro</a> si las funcionalidades dinámicas son cacheadas."
2173
+
2174
+ #: admin/views/ad-visitor-metabox.php:47
2175
+ msgid ""
2176
+ "Define the exact browser width for which an ad should be visible using the "
2177
+ "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
2178
+ msgstr ""
2179
+ "Definir el ancho exacto del navegador para los que un anuncio debe ser "
2180
+ "visible usando el <a href=\"%s\" target=\"_blank\">Add-on responsable</a>."
2181
+
2182
+ #: admin/views/ad-visitor-metabox.php:94
2183
+ msgid ""
2184
+ "The visitor conditions below are deprecated. Please use the new version of "
2185
+ "visitor conditions to replace it."
2186
+ msgstr ""
2187
+ "Las condiciones del visitante de abajo están depreciadas. Por favor, utiliza "
2188
+ "la nueva versión de las condiciones del visitante para reemplazarlas."
2189
+
2190
+ #: admin/views/ad-visitor-metabox.php:100
2191
+ msgid "Display on all devices"
2192
+ msgstr "Mostrar en todos los dispositivos"
2193
+
2194
+ #: admin/views/ad-visitor-metabox.php:104
2195
+ msgid "only on mobile devices"
2196
+ msgstr "Solamente en dispositivos móviles"
2197
+
2198
+ #: admin/views/ad-visitor-metabox.php:108
2199
+ msgid "not on mobile devices"
2200
+ msgstr "No en dispositivos móviles"
2201
+
2202
+ #: admin/views/debug.php:6 admin/views/settings.php:49
2203
+ msgid "Debug Page"
2204
+ msgstr "Página de Depuración"
2205
+
2206
+ #: admin/views/debug.php:7
2207
+ msgid "Work in progress"
2208
+ msgstr "Trabajo en Progreso"
2209
+
2210
+ #: admin/views/intro.php:18
2211
+ msgid "5-Star Usability"
2212
+ msgstr "Usabilidad 5- estrellas"
2213
+
2214
+ #: admin/views/intro.php:19
2215
+ msgid ""
2216
+ "Advanced Ads is powerful and easy to use, because it is build on WordPress "
2217
+ "standards. If you know how to publish a post then you know how to create an "
2218
+ "ad."
2219
+ msgstr ""
2220
+ "Advanced Ads es poderoso y fácil de usar porque está construido bajo los "
2221
+ "estándares de WordPress. Si sabes cómo publicar una entrada, entonces sabrás "
2222
+ "cómo crear un anuncio."
2223
+
2224
+ #: admin/views/intro.php:23
2225
+ msgid "5-Star Support"
2226
+ msgstr "Soporte 5-estrellas"
2227
+
2228
+ #: admin/views/intro.php:24
2229
+ msgid ""
2230
+ "I promise you the best supported ad management plugin for WordPress. Whether "
2231
+ "a pro user or not, you can reach me easily through the support page, in the "
2232
+ "chat on the homepage or replying to a newsletter."
2233
+ msgstr ""
2234
+ "Te prometo el plugin de administración de anuncios con mejor soporte para "
2235
+ "WordPress. Seas un usuario pro o no, puedes localizarme fácilmente a través "
2236
+ "de la página de soporte, en el chat de la página de inicio, o respondiendo a "
2237
+ "mi boletín de noticias."
2238
+
2239
+ #: admin/views/intro.php:28
2240
+ msgid "5-Star Experience"
2241
+ msgstr "Experiencia 5- estrellas"
2242
+
2243
+ #: admin/views/intro.php:29
2244
+ msgid ""
2245
+ "Advanced Ads was built out of my own experience. I am personally using it to "
2246
+ "serve millions of ad impressions per month and constantly test new ways to "
2247
+ "optimize ad settings."
2248
+ msgstr ""
2249
+ "Advanced Ads fue construido en base a mi propia experiencia. Personalmente, "
2250
+ "lo uso para manejar millones de impresiones de anuncios por mes y "
2251
+ "constantemente pruebo nuevas formas de optimizar las configuraciones de los "
2252
+ "anuncios."
2253
+
2254
+ #: admin/views/intro.php:61
2255
+ msgid "Next Steps"
2256
+ msgstr "Próximos Pasos"
2257
+
2258
+ #: admin/views/intro.php:64
2259
+ msgid "Subscribe to the Mailing List"
2260
+ msgstr "Suscríbete a la Lista de Correos"
2261
+
2262
+ #: admin/views/intro.php:65
2263
+ msgid "Subscribe to the newsletter and instantly"
2264
+ msgstr "Suscríbete instantáneamente al boletín de noticias"
2265
+
2266
+ #: admin/views/intro.php:67
2267
+ msgid "get 2 free add-ons."
2268
+ msgstr "Obtén 2 add-ons gratis"
2269
+
2270
+ #: admin/views/intro.php:68
2271
+ msgid "reply to the welcome message with a question."
2272
+ msgstr "Responde al mensaje de bienvenida con una pregunta."
2273
+
2274
+ #: admin/views/intro.php:69
2275
+ msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
2276
+ msgstr ""
2277
+ "Suscríbete a un grupo dedicado para el tutorial o para los tips de AdSense."
2278
+
2279
+ #: admin/views/intro.php:82
2280
+ msgid "Display your ad"
2281
+ msgstr "Muestra Tu Anuncio"
2282
+
2283
+ #: admin/views/intro.php:83
2284
+ msgid ""
2285
+ "You can display your ad using a shortcode, widget or one of the powerful "
2286
+ "placements. Placements help you to inject ads into the content or place them "
2287
+ "on your site without coding."
2288
+ msgstr ""
2289
+ "Puedes mostrar tu anuncio utilizando un shortcode, un widget, o alguna de "
2290
+ "las poderosas colocaciones disponibles. Las colocaciones te ayudan a "
2291
+ "inyectar anuncios dentro del contenido, o a colocarlos en algún lugar de tu "
2292
+ "sitio sin necesidad de que tengas que programar."
2293
+
2294
+ #: admin/views/intro.php:85
2295
+ msgid "List of all available placements"
2296
+ msgstr "Listado de todas las colocaciones disponibles"
2297
+
2298
+ #: admin/views/intro.php:86
2299
+ msgid "Create a placement"
2300
+ msgstr "Crear una Colocación"
2301
+
2302
+ #: admin/views/placements.php:8
2303
+ msgid ""
2304
+ "Couldn’t create the new placement. Please check your form field and whether "
2305
+ "the name is already in use."
2306
+ msgstr ""
2307
+ "No se pudo crear la nueva colocación. Por favor, revisa el campo del "
2308
+ "formulario y si el nombre ya está en uso."
2309
+
2310
+ #: admin/views/placements.php:10
2311
+ msgid "Placements updated"
2312
+ msgstr "Colocaciones Actualizadas"
2313
+
2314
+ #: admin/views/placements.php:15
2315
+ msgid ""
2316
+ "Placements are physically places in your theme and posts. You can use them "
2317
+ "if you plan to change ads and ad groups on the same place without the need "
2318
+ "to change your templates."
2319
+ msgstr ""
2320
+ "Las Colocaciones son lugares físicos dentro de tu tema y tus entradas. "
2321
+ "Puedes utilizarlas si planeas cambiar anuncios o Grupos de Anuncios en el "
2322
+ "mismo lugar y sin la necesidad de cambiar tus plantillas (templates)."
2323
+
2324
+ #: admin/views/placements.php:16
2325
+ msgid ""
2326
+ "See also the manual for more information on <a href=\"%s\">placements</a>."
2327
+ msgstr ""
2328
+ "Consulta también el manual para más información sobre <a href=\"%s\">Las "
2329
+ "Colocaciones</a>. "
2330
+
2331
+ #: admin/views/placements.php:26 modules/import-export/views/page.php:26
2332
+ msgid "Options"
2333
+ msgstr "Opciones"
2334
+
2335
+ #: admin/views/placements.php:44
2336
+ msgid ""
2337
+ "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
2338
+ "check if the responsible add-on is activated."
2339
+ msgstr ""
2340
+ "El tipo de colocación \"%s\" no se encuentra y fue reiniciado a su \"valor "
2341
+ "por defecto\". <br/> Por favor, chequea si el add-on que es responsable de "
2342
+ "este funcionamiento está activado."
2343
+
2344
+ #: admin/views/placements.php:60
2345
+ msgid "show usage"
2346
+ msgstr "Mostrar uso"
2347
+
2348
+ #: admin/views/placements.php:72
2349
+ msgid "Item"
2350
+ msgstr "Item"
2351
+
2352
+ #: admin/views/placements.php:74 admin/views/placements.php:180
2353
+ msgid "--not selected--"
2354
+ msgstr "--No Seleccionado--"
2355
+
2356
+ #: admin/views/placements.php:94
2357
+ msgid "Inject"
2358
+ msgstr "Inyectados"
2359
+
2360
+ #: admin/views/placements.php:95
2361
+ msgid "after"
2362
+ msgstr "Después"
2363
+
2364
+ #: admin/views/placements.php:95
2365
+ msgid "before"
2366
+ msgstr "Antes"
2367
+
2368
+ #: admin/views/placements.php:115
2369
+ msgid "start counting from bottom"
2370
+ msgstr "Empezar contando desde el final"
2371
+
2372
+ #: admin/views/placements.php:118
2373
+ msgid "Important Notice"
2374
+ msgstr "Notificación Importante"
2375
+
2376
+ #: admin/views/placements.php:118
2377
+ msgid ""
2378
+ "Your server is missing an extension. This might break the content injection."
2379
+ "<br/>Ignore this warning if everything works fine or else ask your hosting "
2380
+ "provider to enable <em>mbstring</em>."
2381
+ msgstr ""
2382
+ "A tu servidor le hace falta una extensión. Esto puede romper la inyección de "
2383
+ "contenido.<br/> Ignora esta advertencia si todo está funcionando bien. De lo "
2384
+ "contrario, pídele a tu compañía de hospedaje habilitar <em>mbstring</em>."
2385
+
2386
+ #: admin/views/placements.php:128
2387
+ msgid "advanced options"
2388
+ msgstr "Opciones Avanzadas"
2389
+
2390
+ #: admin/views/placements.php:137
2391
+ msgctxt "checkbox to remove placement"
2392
+ msgid "delete"
2393
+ msgstr "Eliminar"
2394
+
2395
+ #: admin/views/placements.php:143
2396
+ msgid "Save Placements"
2397
+ msgstr "Guardar Colocaciones"
2398
+
2399
+ #: admin/views/placements.php:145
2400
+ msgid "Create a new placement"
2401
+ msgstr "Crear una Nueva Colocación"
2402
+
2403
+ #: admin/views/placements.php:146
2404
+ msgid "New Placement"
2405
+ msgstr "Nueva Colocación"
2406
+
2407
+ #: admin/views/placements.php:153
2408
+ msgid "Choose a placement type"
2409
+ msgstr "Selecciona un tipo de colocación"
2410
+
2411
+ #: admin/views/placements.php:154
2412
+ msgid ""
2413
+ "Placement types define where the ad is going to be displayed. Learn more "
2414
+ "about the different types from the <a href=\"%s\">manual</a>"
2415
+ msgstr ""
2416
+ "Los tipos de colocaciones definen en donde se debe mostrar el anuncio. "
2417
+ "Aprende más sobre los diferentes tipos en el <a href=\"%s\">manual</a>."
2418
+
2419
+ #: admin/views/placements.php:171
2420
+ msgid "Please select a placement type."
2421
+ msgstr "Por favor, selecciona un tipo de colocación."
2422
+
2423
+ #: admin/views/placements.php:173
2424
+ msgid "Choose a Name"
2425
+ msgstr "Selecciona un Nombre"
2426
+
2427
+ #: admin/views/placements.php:174
2428
+ msgid ""
2429
+ "The name of the placement is only visible to you. Tip: choose a descriptive "
2430
+ "one, e.g. <em>Below Post Headline</em>."
2431
+ msgstr ""
2432
+ "El nombre de la colocación es solamente visible para ti. Tip: selecciona un "
2433
+ "nombre descriptivo, ej: <em>Debajo del Encabezado de la Entrada</em>."
2434
+
2435
+ #: admin/views/placements.php:175
2436
+ msgid "Placement Name"
2437
+ msgstr "Nombre de la Colocación"
2438
+
2439
+ #: admin/views/placements.php:176
2440
+ msgid "Please enter a name for your placement."
2441
+ msgstr "Por favor, ingresa un nombre para tu colocación."
2442
+
2443
+ #: admin/views/placements.php:177
2444
+ msgid "Choose the Ad or Group"
2445
+ msgstr "Selecciona el Anuncio o Grupo"
2446
+
2447
+ #: admin/views/placements.php:178
2448
+ msgid "The ad or group that should be displayed."
2449
+ msgstr "El anuncio o grupo que debe ser mostrado."
2450
+
2451
+ #: admin/views/placements.php:197
2452
+ msgid "Save New Placement"
2453
+ msgstr "Guardar la Nueva Colocación"
2454
+
2455
+ #: admin/views/post-ad-settings-metabox.php:3
2456
+ msgid "Disable ads on this page"
2457
+ msgstr "Deshabilitar anuncios en esta página"
2458
+
2459
+ #: admin/views/setting-license.php:5
2460
+ msgid "Your license expired."
2461
+ msgstr "Tu licencia expiró."
2462
+
2463
+ #: admin/views/setting-license.php:18
2464
+ msgid "(%d days left)"
2465
+ msgstr "(%d días restantes)"
2466
+
2467
+ #: admin/views/setting-license.php:22
2468
+ msgid "License key"
2469
+ msgstr "Llave de Licencia"
2470
+
2471
+ #: admin/views/setting-license.php:43
2472
+ msgid "License key invalid"
2473
+ msgstr "Llave de licencia inválida"
2474
+
2475
+ #: admin/views/setting-license.php:46
2476
+ msgid "active"
2477
+ msgstr "Activa"
2478
+
2479
+ #: admin/views/settings-disable-ads.php:3
2480
+ msgid "Disable all ads in frontend"
2481
+ msgstr "Deshabilitar todos los anuncios en el frente del sitio"
2482
+
2483
+ #: admin/views/settings-disable-ads.php:4
2484
+ msgid ""
2485
+ "Use this option to disable all ads in the frontend, but still be able to use "
2486
+ "the plugin."
2487
+ msgstr ""
2488
+ "Usar esta opción para deshabilitar todos los anuncios en el frente del sitio "
2489
+ "y todavía tener la capacidad de usar el plugin."
2490
+
2491
+ #: admin/views/settings-disable-ads.php:8
2492
+ msgid "Disable ads on 404 error pages"
2493
+ msgstr "Deshabilitar anuncios en las páginas de error 404"
2494
+
2495
+ #: admin/views/settings-disable-ads.php:12
2496
+ msgid "Disable ads on non-singular pages"
2497
+ msgstr "Deshabilitar anuncios en páginas no-singulares"
2498
+
2499
+ #: admin/views/settings-disable-ads.php:13
2500
+ msgid ""
2501
+ "e.g. archive pages like categories, tags, authors, front page (if a list)"
2502
+ msgstr ""
2503
+ "Ej. Páginas de archivo como categorías, etiquetas, autores, frente de la "
2504
+ "página (si es una lista)"
2505
+
2506
+ #: admin/views/settings-disable-ads.php:16
2507
+ msgid "Disable ads on secondary queries"
2508
+ msgstr "Deshabilitar anuncios en consultas (queries) secundarias"
2509
+
2510
+ #: admin/views/settings-disable-ads.php:17
2511
+ msgid ""
2512
+ "Secondary queries are custom queries of posts outside the main query of a "
2513
+ "page. Try this option if you see ads injected on places where they shouldn’t "
2514
+ "appear."
2515
+ msgstr ""
2516
+ "Las consultas (queries) secundarias son consultas personalizadas de entradas "
2517
+ "fuera de la consulta principal de una página. Intenta habilitar esta opción "
2518
+ "si ves anuncios inyectados en lugares en donde no deberían aparecer."
2519
+
2520
+ #: admin/views/settings.php:36
2521
+ msgid "Save settings on this page"
2522
+ msgstr "Guardar las configuraciones de esta página"
2523
+
2524
+ #: admin/views/settings.php:50
2525
+ msgid "Welcome Page"
2526
+ msgstr "Página de Bienvenida"
2527
+
2528
+ #: admin/views/settings.php:51
2529
+ msgid "Advanced Ads on WordPress.org"
2530
+ msgstr "Advanced Ads en WordPress.org"
2531
+
2532
+ #: admin/views/settings.php:51
2533
+ msgid "Advanced Ads on wp.org"
2534
+ msgstr "Advanced Ads en wp.org"
2535
+
2536
+ #: admin/views/settings.php:52
2537
+ msgid "the company behind Advanced Ads"
2538
+ msgstr "la compañía detrás de Advanced Ads"
2539
+
2540
+ #: admin/views/support.php:8
2541
+ msgid "Possible Issues"
2542
+ msgstr "Posibles Problemas"
2543
+
2544
+ #: admin/views/support.php:9
2545
+ msgid ""
2546
+ "Please fix the red highlighted issues on this page or try to understand "
2547
+ "their consequences before contacting support."
2548
+ msgstr ""
2549
+ "Por favor, arregla los problemas resaltados en rojo en esta página o intenta "
2550
+ "entender sus consecuencias antes de contactar a soporte."
2551
+
2552
+ #: admin/views/support.php:13
2553
+ msgid ""
2554
+ "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2555
+ "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2556
+ "Please ask your hosting provider for more information."
2557
+ msgstr ""
2558
+ "Tu <strong>versión de PHP (%s) es muy vieja</strong>. Advanced Ads fue "
2559
+ "diseñado para PHP 5.3 o mayor. Puede que funcione, pero actualizar PHP es "
2560
+ "altamente recomendado. Por favor, consulta con tu compañía de hospedaje para "
2561
+ "mayor información."
2562
+
2563
+ #: admin/views/support.php:16
2564
+ msgid ""
2565
+ "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2566
+ "rotation or visitor conditions might not work properly. Use the cache-"
2567
+ "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to "
2568
+ "load ads dynamically."
2569
+ msgstr ""
2570
+ "Tu <strong>sitio web utiliza caché</strong>. Algunas características "
2571
+ "dinámicas, como la rotación de anuncios o las condiciones del visitante, "
2572
+ "puede que no funcionen correctamente. Utiliza la característica de "
2573
+ "almacenamiento-en-caché de <a href=\"%s\" target=\"_blank\">Advanced Ads "
2574
+ "Pro</a> para cargar los anuncios dinámicamente."
2575
+
2576
+ #: admin/views/support.php:19
2577
+ msgid ""
2578
+ "There is a <strong>new WordPress version available</strong>. Please update."
2579
+ msgstr ""
2580
+ "Hay una <strong>nueva versión de WordPress disponible</strong>. Por favor, "
2581
+ "actualízala."
2582
+
2583
+ #: admin/views/support.php:22
2584
+ msgid "There are <strong>plugin updates available</strong>. Please update."
2585
+ msgstr ""
2586
+ "Hay <strong>actualizaciones del plugin disponibles</strong>. Por favor, "
2587
+ "actualízalo."
2588
+
2589
+ #: admin/views/support.php:31
2590
+ msgid ""
2591
+ "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2592
+ "site performance, it is known to alter code, including scripts from ad "
2593
+ "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-"
2594
+ "in support for Autoptimize."
2595
+ msgstr ""
2596
+ "<strong>Autoptimize plugin detectado</strong>. A pesar de que este plugin es "
2597
+ "muy bueno para el rendimiento del sitio, también es bien sabido que tiende a "
2598
+ "modificar el código, incluyendo scripts de redes de anuncios. <a href=\"%s\" "
2599
+ "target=\"_blank\">Advanced Ads Pro</a> posee un soporte incorporado para "
2600
+ "Autoptimize."
2601
+
2602
+ #: admin/views/support.php:34
2603
+ msgid ""
2604
+ "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2605
+ "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2606
+ msgstr ""
2607
+ "Plugins que se conocen que causan problemas (parciales): <strong>"
2608
+ "%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Más Información</a>."
2609
+
2610
+ #: admin/views/support.php:38
2611
+ msgid ""
2612
+ "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2613
+ "href=\"%s\">settings</a>."
2614
+ msgstr ""
2615
+ "Los anuncios están deshabilitados para todas o algunas páginas. Ver "
2616
+ "\"anuncios deshabilitados\" en <a href=\"%s\">configuraciones</a>."
2617
+
2618
+ #: admin/views/support.php:49
2619
+ msgid "Search"
2620
+ msgstr "Buscar"
2621
+
2622
+ #: admin/views/support.php:50
2623
+ msgid ""
2624
+ "Use the following form to search for solutions in the manual on "
2625
+ "wpadvancedads.com"
2626
+ msgstr ""
2627
+ "Usa el siguiente formulario para buscar soluciones en el manual de "
2628
+ "wpadvancedads.com"
2629
+
2630
+ #: admin/views/support.php:53
2631
+ msgid "search"
2632
+ msgstr "Buscar"
2633
+
2634
+ #: admin/views/support.php:55
2635
+ msgid "Contact"
2636
+ msgstr "Contacto"
2637
+
2638
+ #: admin/views/support.php:56
2639
+ msgid ""
2640
+ "Please search the manual for a solution and take a look at <a href=\"%s\" "
2641
+ "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2642
+ msgstr ""
2643
+ "Por favor, busca en el manual para una solución y échale un vistazo a la "
2644
+ "sección de <a href=\"%s\" target=\"_blank\"> Anuncios no aparecen?</a> antes "
2645
+ "de contactarme por ayuda."
2646
+
2647
+ #: admin/views/support.php:58
2648
+ msgid "Email was successfully sent."
2649
+ msgstr "El correo electrónico fue enviado exitosamente."
2650
+
2651
+ #: admin/views/support.php:67
2652
+ msgid "your email"
2653
+ msgstr "Tu correo electrónico"
2654
+
2655
+ #: admin/views/support.php:71
2656
+ msgid "your name"
2657
+ msgstr "Tu nombre"
2658
+
2659
+ #: admin/views/support.php:75
2660
+ msgid "your message"
2661
+ msgstr "Tu mensaje"
2662
+
2663
+ #: admin/views/support.php:80
2664
+ msgid "send"
2665
+ msgstr "Enviar"
2666
+
2667
+ #: modules/gadsense/main.php:19
2668
+ msgid " at "
2669
+ msgstr "En"
2670
+
2671
+ #: admin/views/notices/adblock.php:3
2672
+ msgid ""
2673
+ "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2674
+ "ad setup."
2675
+ msgstr ""
2676
+ "Por favor, deshabilita tu <strong>bloqueador de anuncios (AdBlocker)</strong>"
2677
+ " para prevenir problemas con la configuración de tu anuncio."
2678
+
2679
+ #: modules/ad-blocker/admin/admin.php:133
2680
+ msgid "The asset folder was rebuilt successfully"
2681
+ msgstr "El directorio de archivos fue reconstruido exitosamente"
2682
+
2683
+ #: modules/ad-blocker/admin/admin.php:218
2684
+ msgid "Ad blocker fix"
2685
+ msgstr "Reparación de Ad blocker"
2686
+
2687
+ #: modules/ad-blocker/admin/admin.php:257
2688
+ msgid "There is no writable upload folder"
2689
+ msgstr "No hay directorio escribible de cargas y subidas "
2690
+
2691
+ #: modules/ad-blocker/admin/admin.php:286
2692
+ msgid "Unable to rename \"%s\" directory"
2693
+ msgstr "No es posible renombrar el directorio \"%s\""
2694
+
2695
+ #: modules/ad-blocker/admin/admin.php:302
2696
+ #: modules/ad-blocker/admin/admin.php:315
2697
+ #: modules/ad-blocker/admin/admin.php:332
2698
+ msgid "Unable to copy assets to the \"%s\" directory"
2699
+ msgstr "No es posible copiar los archivos al directorio \"%s\""
2700
+
2701
+ #: modules/ad-blocker/admin/admin.php:366
2702
+ #: modules/ad-blocker/admin/admin.php:386
2703
+ msgid "We do not have direct write access to the \"%s\" directory"
2704
+ msgstr "No tenemos acceso directo de escritura al directorio \"%s\" "
2705
+
2706
+ #: modules/ad-blocker/admin/admin.php:453
2707
+ msgid ""
2708
+ "Unable to create \"%s\" directory. Is its parent directory writable by the "
2709
+ "server?"
2710
+ msgstr ""
2711
+ "No es posible crear el directorio \"%s\". Es el directorio principal "
2712
+ "escribible en el servidor?"
2713
+
2714
+ #: modules/ad-blocker/admin/admin.php:464
2715
+ msgid "Unable to copy files to %s"
2716
+ msgstr "No es posible copiar archivos a %s"
2717
+
2718
+ #: modules/ad-blocker/admin/admin.php:600
2719
+ msgid ""
2720
+ "Prevents ad block software from breaking your website when blocking asset "
2721
+ "files (.js, .css)."
2722
+ msgstr ""
2723
+ "Previene que el software de Ad block rompa tu sitio cuando bloquee archivos "
2724
+ "(.js, .css)."
2725
+
2726
+ #: modules/gadsense/admin/admin.php:26
2727
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:51
2728
+ msgid "Responsive"
2729
+ msgstr "Responsable"
2730
+
2731
+ #: modules/gadsense/admin/admin.php:44
2732
+ msgid "The ad details couldn't be retrieved from the ad code"
2733
+ msgstr ""
2734
+ "Los detalles del anuncio no pudieron ser recuperados del código del anuncio"
2735
+
2736
+ #: modules/gadsense/admin/admin.php:45
2737
+ msgid ""
2738
+ "Warning : The AdSense account from this code does not match the one set with "
2739
+ "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2740
+ "end."
2741
+ msgstr ""
2742
+ "Advertencia: La cuenta de AdSense de este código no es equivalente a la que "
2743
+ "se encuentra en el plugin de Advanced Ads. Este anuncio puede causar "
2744
+ "problemas cuando se use en el frente del sitio."
2745
+
2746
+ #: modules/gadsense/admin/admin.php:123 modules/gadsense/admin/admin.php:260
2747
+ msgid "AdSense"
2748
+ msgstr "AdSense"
2749
+
2750
+ #: modules/gadsense/admin/admin.php:131
2751
+ msgid "AdSense ID"
2752
+ msgstr "ID de AdSense "
2753
+
2754
+ #: modules/gadsense/admin/admin.php:140
2755
+ msgid "Limit to 3 ads"
2756
+ msgstr "Limitar a 3 anuncios"
2757
+
2758
+ #: modules/gadsense/admin/admin.php:149
2759
+ msgid "Activate Page-Level ads"
2760
+ msgstr "Activar Anuncios de Nivel-de-Página"
2761
+
2762
+ #: modules/gadsense/admin/admin.php:169
2763
+ msgid ""
2764
+ "Please enter your Publisher ID in order to use AdSense on your page. See the "
2765
+ "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2766
+ msgstr ""
2767
+ "Por favor, ingresa tu ID de publicador para usar AdSense en tu página. Ver "
2768
+ "el <a href=\"%s\" target=\"_blank\">manual</a> para mayor información."
2769
+
2770
+ #: modules/gadsense/admin/admin.php:183
2771
+ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2772
+ msgstr "Tu ID de publicador de AdSense <em>(pub-xxxxxxxxxxxxxx)</em>"
2773
+
2774
+ #: modules/gadsense/admin/admin.php:195
2775
+ msgid "Limit to %d AdSense ads"
2776
+ msgstr "Limitar a %d anuncios de AdSense "
2777
+
2778
+ #: modules/gadsense/admin/admin.php:203
2779
+ msgid ""
2780
+ "Due to technical restrictions, the limit does not work on placements with "
2781
+ "cache-busting enabled."
2782
+ msgstr ""
2783
+ "Debido a restricciones técnicas, el límite no funciona en colocaciones con "
2784
+ "almacenamiento-en-caché habilitado."
2785
+
2786
+ #: modules/gadsense/admin/admin.php:217
2787
+ msgid "Insert Page-Level ads code on all pages."
2788
+ msgstr "Insertar código de anuncios de Nivel-de-Página en todas las páginas."
2789
+
2790
+ #: modules/gadsense/admin/admin.php:219
2791
+ msgid ""
2792
+ "You still need to enable Page-Level ads in your AdSense account. See <a "
2793
+ "href=\"https://support.google.com/adsense/answer/6245304\" target=\"_blank\">"
2794
+ "AdSense Help</a> (requires AdSense-login) for more information"
2795
+ msgstr ""
2796
+ "Todavía necesitas habilitar anuncios de Nivel-de-Página en tu cuenta de "
2797
+ "AdSense. Ver <a href=\"https://support.google.com/adsense/answer/6245304\" "
2798
+ "target=\"_blank\">Ayuda de AdSense</a> (requirere inicio de sesión en "
2799
+ "AdSense)"
2800
+
2801
+ #: modules/gadsense/admin/admin.php:238
2802
+ #: modules/gadsense/includes/class-ad-type-adsense.php:73
2803
+ msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2804
+ msgstr ""
2805
+ "El ID del publicador tiene un formato incorrecto. (Debe comenzar con \"pub-"
2806
+ "\")"
2807
+
2808
+ #: modules/gadsense/includes/class-ad-type-adsense.php:35
2809
+ msgid "AdSense ad"
2810
+ msgstr "Anuncio de AdSense"
2811
+
2812
+ #: modules/gadsense/includes/class-ad-type-adsense.php:36
2813
+ msgid "Use ads from your Google AdSense account"
2814
+ msgstr "Usar anuncios de tu cuenta de Google AdSense"
2815
+
2816
+ #: modules/gadsense/includes/class-ad-type-adsense.php:105
2817
+ msgid "Your AdSense Publisher ID is missing."
2818
+ msgstr "Tu ID de publicador de AdSense no se encuentra."
2819
+
2820
+ #: modules/gadsense/includes/class-gadsense-data.php:37
2821
+ msgid "Auto"
2822
+ msgstr "Auto"
2823
+
2824
+ #: modules/ad-blocker/admin/views/rebuild_form.php:1
2825
+ msgid "Ad blocker file folder"
2826
+ msgstr "Directorio de archivos de Ad blocker"
2827
+
2828
+ #: modules/ad-blocker/admin/views/rebuild_form.php:10
2829
+ msgid "Upload folder is not writable"
2830
+ msgstr "El directorio de cargas y subidas no es escribible"
2831
+
2832
+ #: modules/ad-blocker/admin/views/rebuild_form.php:23
2833
+ msgid "Asset path"
2834
+ msgstr "Ruta de Archivos"
2835
+
2836
+ #: modules/ad-blocker/admin/views/rebuild_form.php:27
2837
+ msgid "Asset URL"
2838
+ msgstr "URL de Archivos"
2839
+
2840
+ #: modules/ad-blocker/admin/views/rebuild_form.php:46
2841
+ msgid "Rebuild asset folder"
2842
+ msgstr "Reconstruir directorio de archivos"
2843
+
2844
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:22
2845
+ msgid "Copy&Paste existing ad code"
2846
+ msgstr "Copiar & Pegar el código existente del anuncio"
2847
+
2848
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:27
2849
+ msgid "Ad Slot ID"
2850
+ msgstr "ID de la Casilla del Anuncio"
2851
+
2852
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:32
2853
+ msgid "Publisher ID: %s"
2854
+ msgstr "ID del Publicador: %s"
2855
+
2856
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:44
2857
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2858
+ msgstr "Por favor, <a href=\"%s\" target=\"_blank\">cámbialo aquí</a>."
2859
+
2860
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:50
2861
+ msgid "Normal"
2862
+ msgstr "Normal"
2863
+
2864
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:59
2865
+ msgid "Resizing"
2866
+ msgstr "Cambiar el Tamaño"
2867
+
2868
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:72
2869
+ msgid ""
2870
+ "Copy the ad code from your AdSense account and paste it in the area below"
2871
+ msgstr ""
2872
+ "Copia el código del anuncio de tu cuenta de AdSense y pégalo en el área de "
2873
+ "abajo"
2874
+
2875
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:75
2876
+ msgid "Get details"
2877
+ msgstr "Obtener Detalles"
2878
+
2879
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:76
2880
+ msgid "Close"
2881
+ msgstr "Cerrar"
2882
+
2883
+ #. Name of the plugin
2884
+ msgid "Advanced Ads"
2885
+ msgstr "Advanced Ads"
2886
+
2887
+ #. Description of the plugin
2888
+ msgid "Manage and optimize your ads in WordPress"
2889
+ msgstr "Gestiona y optimiza tus anuncios en Wordpress"
2890
+
2891
+ #. URI of the plugin
2892
+ msgid "https://wpadvancedads.com"
2893
+ msgstr "https://wpadvancedads.com"
2894
+
2895
+ #. Author of the plugin
2896
+ msgid "Thomas Maier"
2897
+ msgstr "Thomas Maier"
2898
+
2899
+ #. Author URI of the plugin
2900
+ msgid "http://webgilde.com"
2901
+ msgstr "http://webgilde.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/advanced-ads-fr_FR.mo CHANGED
Binary file
languages/advanced-ads-fr_FR.po CHANGED
@@ -1,2968 +1,2936 @@
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: Sun May 15 2016 18:04:50 GMT+0200 (CEST)\n"
7
- "Last-Translator: admin <post@webzunft.de>\n"
8
- "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
9
- "Language: French (France)\n"
10
- "Plural-Forms: nplurals=2; plural=n > 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: ..\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Loco-Target-Locale: fr_FR"
24
-
25
- #: ../admin/class-advanced-ads-admin.php:215 ../classes/display-conditions.php:
26
- #: 171 ../classes/visitor-conditions.php:214
27
- msgid "or"
28
- msgstr ""
29
-
30
- #: ../admin/class-advanced-ads-admin.php:216 ../admin/views/ad-display-metabox.
31
- #: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
32
- #: php:171 ../classes/visitor-conditions.php:214
33
- msgid "and"
34
- msgstr ""
35
-
36
- #: ../admin/class-advanced-ads-admin.php:217
37
- msgid "After which paragraph?"
38
- msgstr ""
39
-
40
- #: ../admin/class-advanced-ads-admin.php:746
41
- msgid "Video"
42
- msgstr ""
43
-
44
- #: ../admin/class-advanced-ads-admin.php:1097
45
- msgid "Ad label"
46
- msgstr ""
47
-
48
- #: ../admin/class-advanced-ads-admin.php:1339 ../public/class-advanced-ads.php:711
49
- msgctxt "label before ads"
50
- msgid "Advertisements"
51
- msgstr ""
52
-
53
- #: ../admin/class-advanced-ads-admin.php:1346
54
- msgid "Displayed above ads."
55
- msgstr ""
56
-
57
- #: ../admin/class-advanced-ads-admin.php:1833
58
- msgid "License couldn’t be activated. Please try again later."
59
- msgstr ""
60
-
61
- #: ../admin/class-advanced-ads-admin.php:1847
62
- msgid "There are no activations left."
63
- msgstr ""
64
-
65
- #: ../admin/class-advanced-ads-admin.php:1933 ../admin/class-advanced-ads-admin.
66
- #: php:1950
67
- msgid "License couldn’t be deactivated. Please try again later."
68
- msgstr ""
69
-
70
- #: ../admin/views/ad-info-bottom.php:2
71
- msgctxt "wizard navigation"
72
- msgid "previous"
73
- msgstr ""
74
-
75
- #: ../admin/views/ad-info-bottom.php:3
76
- msgctxt "wizard navigation"
77
- msgid "save"
78
- msgstr ""
79
-
80
- #: ../admin/views/ad-info-bottom.php:4
81
- msgctxt "wizard navigation"
82
- msgid "next"
83
- msgstr ""
84
-
85
- #: ../admin/views/ad-info-top.php:4
86
- #, php-format
87
- msgid ""
88
- "Congratulations! Your ad is now visible in the frontend. You can adjust the "
89
- "placement options <a href=\"%s\">here</a>."
90
- msgstr ""
91
-
92
- #: ../admin/views/ad-info-top.php:5
93
- msgid "Where do you want to display the ad?"
94
- msgstr ""
95
-
96
- #: ../admin/views/ad-info-top.php:7
97
- msgid "Content"
98
- msgstr ""
99
-
100
- #: ../admin/views/ad-info-top.php:9
101
- msgid "Manage Sidebar"
102
- msgstr ""
103
-
104
- #: ../admin/views/ad-info-top.php:11
105
- msgid "Show Pro Places"
106
- msgstr ""
107
-
108
- #: ../admin/views/ad-info-top.php:14
109
- msgid "Show Sticky Places"
110
- msgstr ""
111
-
112
- #: ../admin/views/ad-info-top.php:17
113
- msgid "Show PopUp"
114
- msgstr ""
115
-
116
- #: ../admin/views/ad-info-top.php:21
117
- #, php-format
118
- msgid "Or use the shortcode %s to insert the ad into the content manually."
119
- msgstr ""
120
-
121
- #: ../admin/views/ad-info-top.php:31 ../admin/views/ad-info-top.php:43
122
- msgid "Start Wizard"
123
- msgstr ""
124
-
125
- #: ../admin/views/ad-info-top.php:32
126
- msgid "Stop Wizard"
127
- msgstr ""
128
-
129
- #: ../admin/views/ad-info-top.php:41
130
- msgid "Welcome to the Wizard"
131
- msgstr ""
132
-
133
- #: ../admin/views/ad-info-top.php:42
134
- msgid ""
135
- "The Wizard helps you to quickly create and publish an ad. Therefore, only "
136
- "the most common options are visible.<br/>You can access all options when "
137
- "<strong>switching off</strong> the Wizard using the <em>Stop Wizard</em> "
138
- "button.<br/>You can <strong>switch on</strong> the Wizard at any time using "
139
- "the <em>Start Wizard</em> button."
140
- msgstr ""
141
-
142
- #: ../admin/views/ad-info-top.php:44
143
- msgid "Stop Wizard and show all options"
144
- msgstr ""
145
-
146
- #: ../admin/views/ad-output-metabox.php:47
147
- msgid "Enable debug mode"
148
- msgstr ""
149
-
150
- #: ../admin/views/ad-parameters-size.php:6
151
- msgid "reserve this space"
152
- msgstr ""
153
-
154
- #: ../admin/views/setting-license.php:6
155
- #, php-format
156
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
157
- msgstr ""
158
-
159
- #: ../admin/views/settings-disable-ads.php:21
160
- msgid "Disable ads in Feed"
161
- msgstr ""
162
-
163
- #: ../classes/ad_placements.php:211
164
- #, php-format
165
- msgid "paragraph without image (%s)"
166
- msgstr ""
167
-
168
- #: ../classes/ad_type_group.php:31
169
- msgid ""
170
- "Choose an existing ad group. Use this type when you want to assign the same "
171
- "display and visitor conditions to all ads in that group."
172
- msgstr ""
173
-
174
- #: ../classes/ad_type_group.php:84
175
- msgid "ad group"
176
- msgstr ""
177
-
178
- #: ../classes/ad_type_plain.php:86
179
- msgid "Allow PHP"
180
- msgstr ""
181
-
182
- #: ../classes/display-conditions.php:400
183
- msgid "title or id"
184
- msgstr ""
185
-
186
- #: ../classes/display-conditions.php:480
187
- msgid "Feed"
188
- msgstr ""
189
-
190
- #: ../classes/display-conditions.php:481
191
- msgid "allow ads in Feed"
192
- msgstr ""
193
-
194
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:31
195
- msgid "Rename assets"
196
- msgstr ""
197
-
198
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:34
199
- msgid "Check if you want to change the names of the assets"
200
- msgstr ""
201
-
202
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:43
203
- #, php-format
204
- msgid ""
205
- "Please, rebuild the asset folder. All assets will be located in "
206
- "<strong>%s</strong>"
207
- msgstr ""
208
-
209
- #. Name of the plugin
210
- msgid "Advanced Ads"
211
- msgstr "Advanced Ads"
212
-
213
- #. URI of the plugin
214
- msgid "https://wpadvancedads.com"
215
- msgstr "https://wpadvancedads.com"
216
-
217
- #. Description of the plugin
218
- msgid "Manage and optimize your ads in WordPress"
219
- msgstr "Gérer et optimiser vos pubs dans Wordpress"
220
-
221
- #. Author of the plugin
222
- msgid "Thomas Maier"
223
- msgstr "Thomas Maier"
224
-
225
- #. Author URI of the plugin
226
- msgid "http://webgilde.com"
227
- msgstr "http://webgilde.com"
228
-
229
- #: ../admin/class-advanced-ads-admin.php:283
230
- msgid "Overview"
231
- msgstr "Aperçu"
232
-
233
- #: ../admin/class-advanced-ads-admin.php:287 ../admin/class-advanced-ads-admin.
234
- #: php:287 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
235
- #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
236
- #: admin/views/placements.php:81 ../admin/views/placements.php:185 ..
237
- #: classes/widget.php:89 ../public/class-advanced-ads.php:590
238
- msgid "Ads"
239
- msgstr "Pubs"
240
-
241
- #: ../admin/class-advanced-ads-admin.php:293 ../public/class-advanced-ads.php:593
242
- msgid "Add New Ad"
243
- msgstr "Ajouter une nouvelle pub"
244
-
245
- #: ../admin/class-advanced-ads-admin.php:293 ../public/class-advanced-ads.php:592
246
- #: ../public/class-advanced-ads.php:596
247
- msgid "New Ad"
248
- msgstr "Nouvelle pub"
249
-
250
- #: ../admin/class-advanced-ads-admin.php:298 ../admin/includes/class-shortcode-
251
- #: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
252
- #: 178 ../classes/widget.php:82
253
- msgid "Ad Groups"
254
- msgstr "Groupes de pubs"
255
-
256
- #: ../admin/class-advanced-ads-admin.php:298 ../public/class-advanced-ads.php:563
257
- msgid "Groups"
258
- msgstr "Groupes"
259
-
260
- #: ../admin/class-advanced-ads-admin.php:303
261
- msgid "Ad Placements"
262
- msgstr "Emplacements de la pub"
263
-
264
- #: ../admin/class-advanced-ads-admin.php:303 ../admin/includes/class-shortcode-
265
- #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
266
- msgid "Placements"
267
- msgstr "Placements"
268
-
269
- #: ../admin/class-advanced-ads-admin.php:307
270
- msgid "Advanced Ads Settings"
271
- msgstr "Réglages d’Advanced Ads"
272
-
273
- #: ../admin/class-advanced-ads-admin.php:307 ../admin/class-advanced-ads-admin.
274
- #: php:555 ../admin/views/debug.php:10
275
- msgid "Settings"
276
- msgstr "Réglages"
277
-
278
- #: ../admin/class-advanced-ads-admin.php:310
279
- msgid "Advanced Ads Debugging"
280
- msgstr "Débogage Advanced Ads"
281
-
282
- #: ../admin/class-advanced-ads-admin.php:310
283
- msgid "Debug"
284
- msgstr "Débogage"
285
-
286
- #: ../admin/class-advanced-ads-admin.php:314 ../admin/class-advanced-ads-admin.
287
- #: php:314
288
- msgid "Advanced Ads Intro"
289
- msgstr "Introduction à Advanced Ads"
290
-
291
- #: ../admin/class-advanced-ads-admin.php:318 ../admin/class-advanced-ads-admin.
292
- #: php:318 ../admin/class-advanced-ads-admin.php:2110
293
- msgid "Support"
294
- msgstr "Support"
295
-
296
- #: ../admin/class-advanced-ads-admin.php:430
297
- msgid "Please enter a message"
298
- msgstr "Veuillez saisir un message"
299
-
300
- #: ../admin/class-advanced-ads-admin.php:440
301
- #, php-format
302
- msgid "Email could NOT be sent. Please contact us directly at %s."
303
- msgstr "L’email n’a pas pu être envoyé. Veuillez nous contacter directement à %s."
304
-
305
- #: ../admin/class-advanced-ads-admin.php:443
306
- msgid "Please enter a valid email address"
307
- msgstr "Veuillez entrer un Email valide"
308
-
309
- #: ../admin/class-advanced-ads-admin.php:469 ../admin/class-advanced-ads-admin.
310
- #: php:496
311
- msgid "Sorry, you are not allowed to access this feature."
312
- msgstr "Désolé, vous n’êtes pas autorisé à accéder à cette fonctionnalité."
313
-
314
- #: ../admin/class-advanced-ads-admin.php:482
315
- msgid ""
316
- "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
317
- "deleted?"
318
- msgstr ""
319
- "Vous avez essayé de modifier un groupe de pubs qui n’existe pas. Peut-être a-"
320
- "t-il été supprimé?"
321
-
322
- #: ../admin/class-advanced-ads-admin.php:650
323
- msgid "Ad Type"
324
- msgstr "Type de pub"
325
-
326
- #: ../admin/class-advanced-ads-admin.php:656
327
- msgid "Ad Parameters"
328
- msgstr "Paramètres de pub"
329
-
330
- #: ../admin/class-advanced-ads-admin.php:659
331
- msgid "Layout / Output"
332
- msgstr "Mise en page / sortie"
333
-
334
- #: ../admin/class-advanced-ads-admin.php:662
335
- msgid "Display Conditions"
336
- msgstr "Conditions d’affichage"
337
-
338
- #: ../admin/class-advanced-ads-admin.php:665
339
- msgid "Visitor Conditions"
340
- msgstr "Conditions de visiteur"
341
-
342
- #: ../admin/class-advanced-ads-admin.php:736 ../admin/class-advanced-ads-admin.
343
- #: php:747 ../admin/class-advanced-ads-admin.php:752 ../admin/views/ad-output-
344
- #: metabox.php:50
345
- msgid "Manual"
346
- msgstr "Manuel"
347
-
348
- #: ../admin/class-advanced-ads-admin.php:924 ../admin/class-advanced-ads-admin.
349
- #: php:925
350
- msgid "Ad updated."
351
- msgstr "Pub mise à jour."
352
-
353
- #. translators: %s: date and time of the revision
354
- #: ../admin/class-advanced-ads-admin.php:927
355
- #, php-format
356
- msgid "Ad restored to revision from %s"
357
- msgstr "Pub restaurée à partir de la révision du %s"
358
-
359
- #: ../admin/class-advanced-ads-admin.php:928
360
- msgid "Ad published."
361
- msgstr "Pub publiée."
362
-
363
- #: ../admin/class-advanced-ads-admin.php:929
364
- msgid "Ad saved."
365
- msgstr "Pub enregistrée."
366
-
367
- #: ../admin/class-advanced-ads-admin.php:930
368
- msgid "Ad submitted."
369
- msgstr "Pub soumise."
370
-
371
- #: ../admin/class-advanced-ads-admin.php:932
372
- #, php-format
373
- msgid "Ad scheduled for: <strong>%1$s</strong>."
374
- msgstr "Pub programmée pour: <strong>%1$s.</strong>"
375
-
376
- #. translators: Publish box date format, see http://php.net/date
377
- #: ../admin/class-advanced-ads-admin.php:934
378
- msgid "M j, Y @ G:i"
379
- msgstr "M j, Y @ G:i"
380
-
381
- #: ../admin/class-advanced-ads-admin.php:936
382
- msgid "Ad draft updated."
383
- msgstr "Brouillon de la pub mis à jour."
384
-
385
- #: ../admin/class-advanced-ads-admin.php:955
386
- #, php-format
387
- msgid "%s ad updated."
388
- msgid_plural "%s ads updated."
389
- msgstr[0] "la pub %s à été mise à jour."
390
- msgstr[1] "les pubs %s ont été mises à jour."
391
-
392
- #: ../admin/class-advanced-ads-admin.php:956
393
- #, php-format
394
- msgid "%s ad not updated, somebody is editing it."
395
- msgid_plural "%s ads not updated, somebody is editing them."
396
- msgstr[0] ""
397
- "La pub %s n’a pas été mise à jour, quelqu’un d’autre est en train de la "
398
- "modifier."
399
- msgstr[1] ""
400
- "Les pubs %s n’ont pas été mises à jour, quelqu’un d’autre est en train de "
401
- "les modifier."
402
-
403
- #: ../admin/class-advanced-ads-admin.php:957
404
- #, php-format
405
- msgid "%s ad permanently deleted."
406
- msgid_plural "%s ads permanently deleted."
407
- msgstr[0] "La pub %s a été supprimée définitivement."
408
- msgstr[1] "Les pubs %s ont été supprimées définitivement."
409
-
410
- #: ../admin/class-advanced-ads-admin.php:958
411
- #, php-format
412
- msgid "%s ad moved to the Trash."
413
- msgid_plural "%s ads moved to the Trash."
414
- msgstr[0] "La pub %s a été déplacée dans la corbeille."
415
- msgstr[1] "Les pubs %s ont été déplacées dans la corbeille."
416
-
417
- #: ../admin/class-advanced-ads-admin.php:959
418
- #, php-format
419
- msgid "%s ad restored from the Trash."
420
- msgid_plural "%s ads restored from the Trash."
421
- msgstr[0] "La pub %s a été récupérée de la corbeille."
422
- msgstr[1] "Les pubs %s ont été récupérées de la corbeille."
423
-
424
- #: ../admin/class-advanced-ads-admin.php:994 ../admin/views/settings.php:12
425
- msgid "General"
426
- msgstr "Général"
427
-
428
- #: ../admin/class-advanced-ads-admin.php:1006 ../admin/class-advanced-ads-admin.
429
- #: php:1118
430
- msgid "Licenses"
431
- msgstr "Licences"
432
-
433
- #: ../admin/class-advanced-ads-admin.php:1017
434
- msgid "Disable ads"
435
- msgstr "Désactiver les pubs"
436
-
437
- #: ../admin/class-advanced-ads-admin.php:1025
438
- msgid "Hide ads for logged in users"
439
- msgstr "Cacher les pubs pour les utilisateurs connectés"
440
-
441
- #: ../admin/class-advanced-ads-admin.php:1033
442
- msgid "Use advanced JavaScript"
443
- msgstr "Utiliser du JavaScript avancé"
444
-
445
- #: ../admin/class-advanced-ads-admin.php:1041
446
- msgid "Unlimited ad injection"
447
- msgstr "Injection de pub illimitée"
448
-
449
- #: ../admin/class-advanced-ads-admin.php:1049
450
- msgid "Priority of content injection filter"
451
- msgstr "Filtre de priorité d’injection de contenu"
452
-
453
- #: ../admin/class-advanced-ads-admin.php:1057
454
- msgid "Hide ads from bots"
455
- msgstr "Cacher les publicités aux robots"
456
-
457
- #: ../admin/class-advanced-ads-admin.php:1065
458
- msgid "Disable notices"
459
- msgstr "Désactiver les avis"
460
-
461
- #: ../admin/class-advanced-ads-admin.php:1073
462
- msgid "ID prefix"
463
- msgstr "Préfixe ID"
464
-
465
- #: ../admin/class-advanced-ads-admin.php:1081
466
- msgid "Remove Widget ID"
467
- msgstr "Supprimer le Widget ID"
468
-
469
- #: ../admin/class-advanced-ads-admin.php:1089
470
- msgid "Allow editors to manage ads"
471
- msgstr "Permettre aux éditeurs de gérer des pubs"
472
-
473
- #: ../admin/class-advanced-ads-admin.php:1174
474
- msgid "(display to all)"
475
- msgstr "(afficher à tous)"
476
-
477
- #: ../admin/class-advanced-ads-admin.php:1175
478
- msgid "Subscriber"
479
- msgstr "Abonné"
480
-
481
- #: ../admin/class-advanced-ads-admin.php:1176
482
- msgid "Contributor"
483
- msgstr "Contributeur"
484
-
485
- #: ../admin/class-advanced-ads-admin.php:1177
486
- msgid "Author"
487
- msgstr "Auteur"
488
-
489
- #: ../admin/class-advanced-ads-admin.php:1178
490
- msgid "Editor"
491
- msgstr "Éditeur"
492
-
493
- #: ../admin/class-advanced-ads-admin.php:1179
494
- msgid "Admin"
495
- msgstr "Administrateur"
496
-
497
- #: ../admin/class-advanced-ads-admin.php:1187
498
- msgid "Choose the lowest role a user must have in order to not see any ads."
499
- msgstr ""
500
- "Choisissez le rôle le plus faible dont un utilisateur doit disposer afin de "
501
- "ne pas voir de pubs."
502
-
503
- #: ../admin/class-advanced-ads-admin.php:1201
504
- msgid ""
505
- "<strong>notice: </strong>the file is currently enabled by an add-on that "
506
- "needs it."
507
- msgstr ""
508
- "<strong>avis: </strong>le fichier est actuellement activé par un module "
509
- "complémentaire dont il a besoin."
510
-
511
- #: ../admin/class-advanced-ads-admin.php:1204
512
- #, php-format
513
- msgid ""
514
- "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
515
- " Some features and add-ons might override this setting if they need features "
516
- "from this file."
517
- msgstr ""
518
- "Activer les fonctions JavaScript avancées (<a href=\"%s\" "
519
- "target=\"_blank\">here</a>). Certaines fonctionnalités et modules "
520
- "complémentaires peuvent remplacer ce paramètre si elles ont besoin des "
521
- "fonctionnalités de ce fichier."
522
-
523
- #: ../admin/class-advanced-ads-admin.php:1217
524
- msgid ""
525
- "Some plugins and themes trigger ad injection where it shouldn’t happen. "
526
- "Therefore, Advanced Ads ignores injected placements on non-singular pages "
527
- "and outside the loop. However, this can cause problems with some themes. You "
528
- "can enable this option if you don’t see ads or want to enable ad injections "
529
- "on archive pages AT YOUR OWN RISK."
530
- msgstr ""
531
- "Certains plugins et thèmes place l’injection de la pub où il ne devrait pas. "
532
- "Par conséquent, Advanced Ads ignore les placements injecté sur des pages non "
533
- "singulière et en dehors de la boucle. Cependant, cela peut poser des "
534
- "problèmes avec certains thèmes. Vous pouvez activer cette option si vous ne "
535
- "voyez pas de pubs ou si vous désirez activer les injections de pub sur les "
536
- "pages d’archives ceci À VOS PROPRE RISQUES."
537
-
538
- #: ../admin/class-advanced-ads-admin.php:1233
539
- msgid ""
540
- "Please check your post content. A priority of 10 and below might cause "
541
- "issues (wpautop function might run twice)."
542
- msgstr ""
543
- "Veuillez vérifier le contenu de votre article. Une priorité de 10 et moins "
544
- "pourrait causer des problèmes (la fonction « wpautop » pourrait s’exécuter "
545
- "deux fois)."
546
-
547
- #: ../admin/class-advanced-ads-admin.php:1235
548
- msgid ""
549
- "Play with this value in order to change the priority of the injected ads "
550
- "compared to other auto injected elements in the post content."
551
- msgstr ""
552
- "Jouer avec cette valeur pour modifier la priorité des publicités injectées "
553
- "par rapport aux autres éléments automatiquement injecté dans le contenu de "
554
- "l’article."
555
-
556
- #: ../admin/class-advanced-ads-admin.php:1249
557
- #, php-format
558
- msgid ""
559
- "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
560
- "impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
561
- "Add-On</a>."
562
- msgstr ""
563
- "Cacher les pubs des moteurs de recherche, des robots et des agents "
564
- "utilisateurs vide. Empêche également le comptage des impressions pour les "
565
- "robots lorsque vous utilisez l’ <a href=\"%s\" target=\"_blank\">Tracking Add-"
566
- "On</a>."
567
-
568
- #: ../admin/class-advanced-ads-admin.php:1250
569
- msgid ""
570
- "Disabling this option only makes sense if your ads contain content you want "
571
- "to display to bots (like search engines) or your site is cached and bots "
572
- "could create a cached version without the ads."
573
- msgstr ""
574
- "La désactivation de cette option n’a de sens que si vos pubs contiennent un "
575
- "contenu à afficher aux robots (comme les moteurs de recherche) ou votre site "
576
- "est mis en cache et les robots pourraient créer une version mise en cache "
577
- "sans les publicités."
578
-
579
- #: ../admin/class-advanced-ads-admin.php:1263
580
- msgid ""
581
- "Disable internal notices like tips, tutorials, email newsletters and update "
582
- "notices. Disabling notices is recommended if you run multiple blogs with "
583
- "Advanced Ads already."
584
- msgstr ""
585
- "Désactiver les avis internes comme les conseils, les tutoriels, les "
586
- "newsletters et les avis de mise à jour. La désactivation des avis est "
587
- "recommandé si vous exécutez déjà plusieurs blogs (multi-sites) avec Advanced "
588
- "Ads."
589
-
590
- #: ../admin/class-advanced-ads-admin.php:1280
591
- msgid ""
592
- "Prefix of class or id attributes in the frontend. Change it if you don’t "
593
- "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
594
- "need to <strong>rewrite css rules afterwards</strong>."
595
- msgstr ""
596
- "Préfixe de classe ou d’attributs d’Identifiant au niveau du Frontend. "
597
- "Changez-le si vous ne voulez pas que les <strong>bloqueurs de "
598
- "publicité</strong> marque ces blocs comme pubs.<br>Vous devrez peut-être "
599
- "<strong>réécrire les règles css par la suite</strong>."
600
-
601
- #: ../admin/class-advanced-ads-admin.php:1301
602
- msgid ""
603
- "Remove the ID attribute from widgets in order to not make them an easy "
604
- "target of ad blockers."
605
- msgstr ""
606
- "Supprimer l’attribut ID des widgets pour ne pas qu’ils soient une cible "
607
- "facile des bloqueurs de publicité."
608
-
609
- #: ../admin/class-advanced-ads-admin.php:1304
610
- msgid ""
611
- "If checked, the Advanced Ads Widget will not work with the fixed option of "
612
- "the <strong>Q2W3 Fixed Widget</strong> plugin."
613
- msgstr ""
614
- "Si cochée, l’Avanced Ads Widget ne fonctionnera pas avec l’option fixe du "
615
- "plugin <strong>Q2W3 Fixed Widget</strong> ."
616
-
617
- #: ../admin/class-advanced-ads-admin.php:1326
618
- msgid "Allow editors to also manage and publish ads."
619
- msgstr "Permettre aussi aux éditeurs de gérer et publier des pubs."
620
-
621
- #: ../admin/class-advanced-ads-admin.php:1327
622
- #, php-format
623
- msgid ""
624
- "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
625
- "target=\"_blank\">Advanced Ads Pro</a>."
626
- msgstr ""
627
- "Vous pouvez assigner différents rôles liés à la pub sur une base "
628
- "d’utilisateur avec <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
629
-
630
- #: ../admin/class-advanced-ads-admin.php:1404
631
- msgid "Ad Details"
632
- msgstr "Détails de la pub"
633
-
634
- #: ../admin/class-advanced-ads-admin.php:1405
635
- msgid "Ad Planning"
636
- msgstr "Planification de la pub"
637
-
638
- #: ../admin/class-advanced-ads-admin.php:1540
639
- msgid "Ad Settings"
640
- msgstr "Paramètres de la pub"
641
-
642
- #: ../admin/class-advanced-ads-admin.php:1619 ../admin/views/overview.php:23
643
- msgid "Ads Dashboard"
644
- msgstr "Tableau de bord des pubs"
645
-
646
- #: ../admin/class-advanced-ads-admin.php:1631
647
- msgid "From the ad optimization universe"
648
- msgstr "De l’univers d’optimisation de pub"
649
-
650
- #: ../admin/class-advanced-ads-admin.php:1640
651
- msgid "Advanced Ads Tutorials"
652
- msgstr "Tutoriels Advanced Ads"
653
-
654
- #: ../admin/class-advanced-ads-admin.php:1651
655
- #, php-format
656
- msgid "%d ads <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
657
- msgstr "%d pubs – <a href=\"%s\">gérer</a> – <a href=\"%s\">nouveau</a>"
658
-
659
- #: ../admin/class-advanced-ads-admin.php:1662
660
- msgid "plugin manual and homepage"
661
- msgstr "Page d’accueil et manuel du plugin"
662
-
663
- #: ../admin/class-advanced-ads-admin.php:1669
664
- msgid "Get the tutorial via email"
665
- msgstr "Téléchargez le tutoriel par e-mail"
666
-
667
- #: ../admin/class-advanced-ads-admin.php:1676
668
- msgid "Get AdSense tips via email"
669
- msgstr "Recevez des conseils de Adsense par e-mail"
670
-
671
- #: ../admin/class-advanced-ads-admin.php:1766
672
- #, php-format
673
- msgid "time of %s"
674
- msgstr "temps de %s"
675
-
676
- #: ../admin/class-advanced-ads-admin.php:1802
677
- msgid "Error while trying to register the license. Please contact support."
678
- msgstr "Erreur en essayant d’enregistrer la licence. Veuillez contacter le support."
679
-
680
- #: ../admin/class-advanced-ads-admin.php:1807 ../admin/views/setting-license.php:37
681
- msgid "Please enter a valid license key"
682
- msgstr "Veuillez entrer une clé de licence valide"
683
-
684
- #: ../admin/class-advanced-ads-admin.php:1845
685
- msgid "This is the bundle license key."
686
- msgstr "Il s’agit de la clé de licence du package (bundle)."
687
-
688
- #: ../admin/class-advanced-ads-admin.php:1846
689
- msgid "This is not the correct key for this add-on."
690
- msgstr "Ce n’est pas la clé correcte pour ce module."
691
-
692
- #: ../admin/class-advanced-ads-admin.php:1856
693
- #, php-format
694
- msgid "License is invalid. Reason: %s"
695
- msgstr "Licence n’est pas valide. Raison: %s"
696
-
697
- #: ../admin/class-advanced-ads-admin.php:1910
698
- msgid "Error while trying to disable the license. Please contact support."
699
- msgstr "Erreur en essayant de désactiver la licence. Veuillez contacter le support."
700
-
701
- #: ../admin/class-advanced-ads-admin.php:2114
702
- msgid "Add-Ons"
703
- msgstr "Extensions (Add-Ons)"
704
-
705
- #: ../admin/includes/class-ad-groups-list.php:156
706
- msgid "Ad weight"
707
- msgstr "Poids de la pub"
708
-
709
- #: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
710
- #: column.php:4
711
- #, php-format
712
- msgid "starts %s"
713
- msgstr "commence le %s"
714
-
715
- #: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
716
- #: column.php:21
717
- #, php-format
718
- msgid "expires %s"
719
- msgstr "Expire le %s"
720
-
721
- #: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
722
- #: column.php:23
723
- #, php-format
724
- msgid "<strong>expired</strong> %s"
725
- msgstr "<strong>expiré</strong> %s"
726
-
727
- #: ../admin/includes/class-ad-groups-list.php:198
728
- msgid "all published ads are displayed"
729
- msgstr "toutes les pubs publiées sont affichées"
730
-
731
- #: ../admin/includes/class-ad-groups-list.php:200
732
- #, php-format
733
- msgid "up to %d ads displayed"
734
- msgstr "jusqu’à %d pubs affichées"
735
-
736
- #: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
737
- #: form-row.php:37
738
- msgid "No ads assigned"
739
- msgstr "Aucune pub assignée"
740
-
741
- #: ../admin/includes/class-ad-groups-list.php:251
742
- msgid "Random ads"
743
- msgstr "Pubs aléatoires"
744
-
745
- #: ../admin/includes/class-ad-groups-list.php:252
746
- msgid "Display random ads based on ad weight"
747
- msgstr "Afficher des pubs aléatoirement selon le poids de la pub"
748
-
749
- #: ../admin/includes/class-ad-groups-list.php:255
750
- msgid "Ordered ads"
751
- msgstr "Pubs ordonnées"
752
-
753
- #: ../admin/includes/class-ad-groups-list.php:256
754
- msgid "Display ads with the highest ad weight first"
755
- msgstr "Afficher les pubs avec le poids le plus élevé tout d’abord"
756
-
757
- #: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
758
- #: php:594
759
- msgid "Edit"
760
- msgstr "Éditer"
761
-
762
- #: ../admin/includes/class-ad-groups-list.php:276
763
- msgid "Usage"
764
- msgstr "Utilisation"
765
-
766
- #: ../admin/includes/class-ad-groups-list.php:285
767
- msgid "Delete"
768
- msgstr "Supprimer"
769
-
770
- #: ../admin/includes/class-ad-groups-list.php:306
771
- msgid "Invalid Ad Group"
772
- msgstr "Groupe de pubs invalide."
773
-
774
- #: ../admin/includes/class-ad-groups-list.php:311
775
- msgid "You don’t have permission to change the ad groups"
776
- msgstr "Vous n’avez pas l’autorisation de modifier les groupes de pubs"
777
-
778
- #: ../admin/includes/class-notices.php:406
779
- #, php-format
780
- msgid ""
781
- "You don’t seem to have an email address. Please use <a href=\"%s\" "
782
- "target=\"_blank\">this form</a> to sign up."
783
- msgstr ""
784
- "Vous ne semblez pas avoir une adresse e-mail. Veuillez utiliser <a href=\"%s\" "
785
- "target=\"_blank\">ce formulaire</a> pour vous inscrire."
786
-
787
- #: ../admin/includes/class-notices.php:424
788
- msgid "How embarrassing. The email server seems to be down. Please try again later."
789
- msgstr ""
790
- "Quelle honte. Le serveur de messagerie semble être à l’arrêt. Veuillez "
791
- "réessayer ultérieurement."
792
-
793
- #: ../admin/includes/class-notices.php:429
794
- #, php-format
795
- msgid ""
796
- "Please check your email (%s) for the confirmation message. If you didn’t "
797
- "receive one or want to use another email address then please use <a "
798
- "href=\"%s\" target=\"_blank\">this form</a> to sign up."
799
- msgstr ""
800
- "Veuillez vérifier votre client mail (%s) pour le message de confirmation. Si "
801
- "vous n’avez reçu d’email ou voulez utiliser une autre adresse e-mail "
802
- "veuillez utiliser <a href=\"%s\" target=\"_blank\">ce formulaire</a> pour vous "
803
- "inscrire."
804
-
805
- #: ../admin/includes/class-overview-widgets.php:45
806
- msgid "Tips and Tutorials"
807
- msgstr "Tutoriels et astuces"
808
-
809
- #: ../admin/includes/class-overview-widgets.php:47
810
- msgid "Setup and Optimization Help"
811
- msgstr "Aide pour la configuration et l’optimisation"
812
-
813
- #: ../admin/includes/class-overview-widgets.php:49
814
- msgid "Manual and Support"
815
- msgstr "Manuel et Support"
816
-
817
- #: ../admin/includes/class-overview-widgets.php:53
818
- msgid "Advanced Ads Pro"
819
- msgstr "Advanced Ads Pro"
820
-
821
- #: ../admin/includes/class-overview-widgets.php:55
822
- msgid "Tracking and Stats"
823
- msgstr "Suivi et statistiques"
824
-
825
- #: ../admin/includes/class-overview-widgets.php:57
826
- msgid "Responsive and Mobile ads"
827
- msgstr "Pubs responsives et pour Mobile"
828
-
829
- #: ../admin/includes/class-overview-widgets.php:59
830
- msgid "Geo Targeting"
831
- msgstr "Géociblage"
832
-
833
- #: ../admin/includes/class-overview-widgets.php:61
834
- msgid "Sticky ads"
835
- msgstr "Sticky ads"
836
-
837
- #: ../admin/includes/class-overview-widgets.php:63
838
- msgid "PopUps and Layers"
839
- msgstr "PopUps and Layers"
840
-
841
- #: ../admin/includes/class-overview-widgets.php:65
842
- msgid "Ad Slider"
843
- msgstr "Ad Slider"
844
-
845
- #: ../admin/includes/class-overview-widgets.php:83
846
- msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
847
- msgstr ""
848
- "Obtenez 2 <strong>Add-ons gratuits</strong> en vous inscrivant à la lettre "
849
- "d’information."
850
-
851
- #: ../admin/includes/class-overview-widgets.php:84
852
- msgid "Join now"
853
- msgstr "Inscrivez-vous maintenant"
854
-
855
- #: ../admin/includes/class-overview-widgets.php:91
856
- msgid ""
857
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
858
- "and Advanced Ads from the dedicated newsletter group."
859
- msgstr ""
860
- "En savoir plus sur comment et <strong>combien vous pouvez gagner avec "
861
- "AdSense</strong> et Advanced Ads via la newsletter du groupe dédié."
862
-
863
- #: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
864
- #: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
865
- #: admin/views/notices/subscribe.php:3
866
- msgid "Subscribe me now"
867
- msgstr "Inscrivez-moi maintenant"
868
-
869
- #: ../admin/includes/class-overview-widgets.php:99
870
- msgid "Get the first steps and more tutorials to your inbox."
871
- msgstr ""
872
- "Recevez les premières étapes et plus de tutoriels dans votre boîte de "
873
- "réception."
874
-
875
- #: ../admin/includes/class-overview-widgets.php:100
876
- msgid "Send it now"
877
- msgstr "Envoyer maintenant"
878
-
879
- #: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
880
- msgid "Create your first ad"
881
- msgstr "Créez votre première pub"
882
-
883
- #: ../admin/includes/class-overview-widgets.php:126
884
- msgid ""
885
- "Ad Groups contain ads and are currently used to rotate multiple ads on a "
886
- "single spot."
887
- msgstr ""
888
- "Groupes de pubs contiennent des pubs et sont utilisées pour faire tourner "
889
- "plusieurs pubs sur un seul point."
890
-
891
- #: ../admin/includes/class-overview-widgets.php:128
892
- msgid "Create your first group"
893
- msgstr "Créez votre premier groupe"
894
-
895
- #: ../admin/includes/class-overview-widgets.php:131
896
- msgid "Ad Placements are the best way to manage where to display ads and groups."
897
- msgstr ""
898
- "Les placements de pubs sont la meilleure façon de gérer où afficher des pubs "
899
- "et des groupes."
900
-
901
- #: ../admin/includes/class-overview-widgets.php:133
902
- msgid "Create your first placement"
903
- msgstr "Créez votre premier placement"
904
-
905
- #: ../admin/includes/class-overview-widgets.php:138
906
- msgid "Next steps"
907
- msgstr "Prochaines étapes"
908
-
909
- #: ../admin/includes/class-overview-widgets.php:150
910
- #, php-format
911
- msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
912
- msgstr "<a href=\"%s\" target=\"_blank\">Manuel</a>"
913
-
914
- #: ../admin/includes/class-overview-widgets.php:151
915
- #, php-format
916
- msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
917
- msgstr "<a href=\"%s\" target=\"_blank\">FAQ et Support</a>"
918
-
919
- #: ../admin/includes/class-overview-widgets.php:152
920
- #, php-format
921
- msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
922
- msgstr "Votez pour une <a href=\"%s\" target=\"_blank\">fonctionnalité</a>"
923
-
924
- #: ../admin/includes/class-overview-widgets.php:153
925
- #, php-format
926
- msgid ""
927
- "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
928
- "href=\"%s\" target=\"_blank\">wordpress.org</a>"
929
- msgstr ""
930
- "Remerciez le développeur avec un avis &#9733;&#9733;&#9733;&#9733;&#9733; "
931
- "sur <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
932
-
933
- #: ../admin/includes/class-overview-widgets.php:162
934
- msgid ""
935
- "Need help to set up and optimize your ads? Need custom coding on your site? "
936
- "Ask me for a quote."
937
- msgstr ""
938
- "Besoin d’aide pour configurer et optimiser vos pubs ? Besoin d’un codage "
939
- "personnalisé sur votre site ? Demandez-moi un devis."
940
-
941
- #: ../admin/includes/class-overview-widgets.php:163
942
- #, php-format
943
- msgid "Help with ads on %s"
944
- msgstr "Aide sur les pubs activée %s"
945
-
946
- #: ../admin/includes/class-overview-widgets.php:164
947
- msgid "Get an offer"
948
- msgstr "Obtenir une offre"
949
-
950
- #: ../admin/includes/class-overview-widgets.php:172
951
- msgid "Ad management for advanced websites."
952
- msgstr "Gestion de pubs pour des sites Web avancés."
953
-
954
- #: ../admin/includes/class-overview-widgets.php:173
955
- msgid "Cache-busting"
956
- msgstr "Suppression du cache"
957
-
958
- #: ../admin/includes/class-overview-widgets.php:174
959
- msgid "Advanced visitor conditions"
960
- msgstr "Conditions de visiteur avancées"
961
-
962
- #: ../admin/includes/class-overview-widgets.php:175
963
- msgid "Flash ads with fallback"
964
- msgstr "Pubs en Flash avec alternative"
965
-
966
- #: ../admin/includes/class-overview-widgets.php:177
967
- msgid "Get Pro"
968
- msgstr "Obtenir la version Pro"
969
-
970
- #: ../admin/includes/class-overview-widgets.php:185
971
- msgid "Track the impressions of and clicks on your ads."
972
- msgstr "Suivre les impressions et les clics sur vos pubs."
973
-
974
- #: ../admin/includes/class-overview-widgets.php:186
975
- msgid "2 methods to count impressions"
976
- msgstr "2 méthodes pour compter les impressions"
977
-
978
- #: ../admin/includes/class-overview-widgets.php:187
979
- msgid "beautiful stats for all or single ads"
980
- msgstr "belles statistiques pour une ou toutes les pubs"
981
-
982
- #: ../admin/includes/class-overview-widgets.php:188
983
- msgid "group stats by day, week or month"
984
- msgstr "grouper les statistiques par jour, semaine ou mois"
985
-
986
- #: ../admin/includes/class-overview-widgets.php:190
987
- msgid "Get the Tracking add-on"
988
- msgstr "Obtenir le module de statistiques « Tracking add-on »"
989
-
990
- #: ../admin/includes/class-overview-widgets.php:198
991
- msgid "Display ads based on the size of your visitor’s browser or device."
992
- msgstr ""
993
- "Afficher des pubs basées sur la taille du navigateur ou le périphérique de "
994
- "votre visiteur."
995
-
996
- #: ../admin/includes/class-overview-widgets.php:199
997
- msgid "set a range (from … to …) pixels for the browser size"
998
- msgstr "définir une plage (de… à…) pixels pour la taille du navigateur"
999
-
1000
- #: ../admin/includes/class-overview-widgets.php:200
1001
- msgid "set custom sizes for AdSense responsive ads"
1002
- msgstr "définir des formats personnalisés pour les pubs responsives AdSense"
1003
-
1004
- #: ../admin/includes/class-overview-widgets.php:201
1005
- msgid "list all ads by their responsive settings"
1006
- msgstr "lister toutes les pubs par leurs paramètres responsifs"
1007
-
1008
- #: ../admin/includes/class-overview-widgets.php:203
1009
- msgid "Get the Responsive add-on"
1010
- msgstr "Obtenir le module « Responsive add-on »"
1011
-
1012
- #: ../admin/includes/class-overview-widgets.php:211
1013
- msgid "Target visitors by their geo location."
1014
- msgstr "Cibler les visiteurs par leur géolocalisation."
1015
-
1016
- #: ../admin/includes/class-overview-widgets.php:213
1017
- msgid "Get the Geo Targeting add-on"
1018
- msgstr "Obtenir le module de ciblage géolocalisé « Geo Targeting add-on »"
1019
-
1020
- #: ../admin/includes/class-overview-widgets.php:221
1021
- msgid ""
1022
- "Fix ads to the browser while users are scrolling and create best performing "
1023
- "anchor ads."
1024
- msgstr ""
1025
- "Fixer les pubs sur le navigateur pendant que les utilisateurs font défiler "
1026
- "la page et créer des publicités à ancrage plus performants."
1027
-
1028
- #: ../admin/includes/class-overview-widgets.php:222
1029
- msgid "position ads that don’t scroll with the screen"
1030
- msgstr "positionner des pubs qui ne défilent à l’écran"
1031
-
1032
- #: ../admin/includes/class-overview-widgets.php:223
1033
- msgid "build anchor ads not only on mobile devices"
1034
- msgstr "construire des pubs à ancrage pas seulement sur les appareils mobiles"
1035
-
1036
- #: ../admin/includes/class-overview-widgets.php:225
1037
- msgid "Get the Sticky add-on"
1038
- msgstr "Obtenir le module « Sticky add-on »"
1039
-
1040
- #: ../admin/includes/class-overview-widgets.php:233
1041
- msgid "Display content and ads in layers and popups on custom events."
1042
- msgstr ""
1043
- "Afficher le contenu et les pubs dans des couches et des fenêtres pop-up lors "
1044
- "des événements personnalisés."
1045
-
1046
- #: ../admin/includes/class-overview-widgets.php:234
1047
- msgid "display a popup after a user interaction like scrolling"
1048
- msgstr "afficher une popup après une action de l’utilisateur comme le défilement"
1049
-
1050
- #: ../admin/includes/class-overview-widgets.php:235
1051
- msgid "optional background overlay"
1052
- msgstr "option de recouvrement d’arrière plan"
1053
-
1054
- #: ../admin/includes/class-overview-widgets.php:236
1055
- msgid "allow users to close the popup"
1056
- msgstr "permettre aux utilisateurs de fermer les popup"
1057
-
1058
- #: ../admin/includes/class-overview-widgets.php:238
1059
- msgid "Get the PopUp and Layer add-on"
1060
- msgstr "Obtenir le module « PopUp and Layer add-on »"
1061
-
1062
- #: ../admin/includes/class-overview-widgets.php:246
1063
- msgid "Create a beautiful and simple slider from your ads."
1064
- msgstr "Créer un simple et beau diaporama avec vos pubs."
1065
-
1066
- #: ../admin/includes/class-overview-widgets.php:248
1067
- msgid "Get the Slider add-on"
1068
- msgstr "Obtenir le module « Slider add-on »"
1069
-
1070
- #: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
1071
- msgid "--empty--"
1072
- msgstr "--vide--"
1073
-
1074
- #: ../admin/includes/notices.php:14
1075
- #, php-format
1076
- msgid ""
1077
- "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1078
- "Steps</a>."
1079
- msgstr ""
1080
- "Advanced Ads installé avec succès. Jetez un oeil sur les <a "
1081
- "href=\"%s\">Premières étapes</a>."
1082
-
1083
- #: ../admin/includes/notices.php:20
1084
- msgid ""
1085
- "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1086
- "receive the first steps via email?"
1087
- msgstr ""
1088
- "Merci d’activer <strong>Advanced Ads</strong>. Souhaitez-vous recevoir les "
1089
- "premières étapes par e-mail?"
1090
-
1091
- #: ../admin/includes/notices.php:21
1092
- msgid "Yes, send it"
1093
- msgstr "Oui, envoyez"
1094
-
1095
- #: ../admin/includes/notices.php:27
1096
- msgid ""
1097
- "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1098
- "<strong>2 free add-ons</strong> for joining the newsletter."
1099
- msgstr ""
1100
- "Merci d’utiliser <strong>Advanced Ads</strong>. Restez informé et recevez "
1101
- "<strong>2 Add-ons gratuits</strong> en vous inscrivant à la lettre "
1102
- "d’information."
1103
-
1104
- #: ../admin/includes/notices.php:28
1105
- msgid "Add me now"
1106
- msgstr "Ajouter moi maintenant"
1107
-
1108
- #: ../admin/includes/notices.php:34
1109
- msgid ""
1110
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1111
- "and Advanced Ads from my dedicated newsletter."
1112
- msgstr ""
1113
- "En savoir plus sur comment et <strong>combien vous pouvez gagner avec "
1114
- "AdSense</strong> et Advanced Ads via la newsletter dédiée."
1115
-
1116
- #: ../admin/includes/notices.php:61
1117
- msgid ""
1118
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1119
- "missing</strong>."
1120
- msgstr ""
1121
- "Une ou plusieurs clés de licence pour des <strong>Advanced Ads add-ons sont "
1122
- "manquant ou incorrect</strong>."
1123
-
1124
- #: ../admin/includes/notices.php:61
1125
- #, php-format
1126
- msgid "Please add valid license keys <a href=\"%s\">here</a>."
1127
- msgstr "S’il vous plaît ajoutez des clés de licences valides <a href=\"%s\">ici</a>."
1128
-
1129
- #: ../admin/includes/notices.php:67
1130
- #, php-format
1131
- msgid ""
1132
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1133
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1134
- "before it expires with a significant discount on <a href=\"%s\" "
1135
- "target=\"_blank\">the add-on page</a>."
1136
- msgstr ""
1137
- "Une ou plusieurs licences pour vos <strong>Advanced Ads Add-ons arrivent "
1138
- "bientôt à expiration</strong>. Ne risquez pas de perdre le support et mises "
1139
- "à jour et renouveler votre licence avant sa date d’expiration avec un rabais "
1140
- "significatif sur <a href=\"%s\" target=\"_blank\">la page Add-on</a>."
1141
-
1142
- #: ../admin/includes/notices.php:73 ../admin/views/support.php:28
1143
- #, php-format
1144
- msgid ""
1145
- "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1146
- "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1147
- "information."
1148
- msgstr ""
1149
- "Licence(s) <strong>Advanced Ads</strong> expiré(es). Le support et les mises "
1150
- "à jour sont désactivées. S’il vous plaît, visitez <a href=\"%s\">la page de "
1151
- "licence</a> pour plus d’informations."
1152
-
1153
- #: ../admin/includes/notices.php:79
1154
- #, php-format
1155
- msgid ""
1156
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
1157
- "image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
1158
- "you! If you need my help then please visit the <a href=\"%1$s\" "
1159
- "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
1160
- "Review</h3><p>If you share my passion and find Advanced Ads useful then "
1161
- "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
1162
- "org</a>.</p><p><em>Thomas</em>"
1163
- msgstr ""
1164
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
1165
- "image\"/>Vous utilisez <strong>Advanced Ads</strong> depuis quelques temps "
1166
- "maintenant. Je vous en remercie! Si vous avez besoin d’aide, visitez <a "
1167
- "href=\"%1$s\" target=\"_blank\">la page de support</a> et obtenez une aide "
1168
- "gratuite.</p><h3>Merci pour votre avis</h3><p>Si vous partagez ma passion et "
1169
- "trouvez Advanced Ads utile, alors s’il vous plaît <a href=\"%2$s\" "
1170
- "target=\"_blank\">laissez un avis de 5 étoiles sur wordpress.org</a>."
1171
- "</p><p><em>Thomas</em>"
1172
-
1173
- #: ../admin/includes/notices.php:85
1174
- #, php-format
1175
- msgid ""
1176
- "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1177
- "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1178
- "disguise."
1179
- msgstr ""
1180
- "Certains éléments (assets) ont été changés. S’il vous plaît ,"
1181
- "<strong>reconstruisez le dossier des éléments (assets)</strong> dans les <a "
1182
- "href=« %s »>Paramètres Advanced Ads</a> pour mettre à jour la dissimulation "
1183
- "vis-à-vis des bloqueurs de publicités."
1184
-
1185
- #: ../admin/includes/shortcode-creator-l10n.php:10
1186
- msgctxt "shortcode creator"
1187
- msgid "Add an ad"
1188
- msgstr "Ajouter une pub"
1189
-
1190
- #: ../admin/includes/shortcode-creator-l10n.php:11
1191
- msgctxt "shortcode creator"
1192
- msgid "Add shortcode"
1193
- msgstr "Ajouter un shortcode"
1194
-
1195
- #: ../admin/includes/shortcode-creator-l10n.php:12
1196
- msgctxt "shortcode creator"
1197
- msgid "Cancel"
1198
- msgstr "Annuler"
1199
-
1200
- #: ../admin/views/ad-display-metabox.php:6
1201
- msgid "Set Display Conditions to allow or hide the ad on specific pages."
1202
- msgstr ""
1203
- "Fixer les Conditions d’affichage afin d’autoriser ou de cacher la publicité "
1204
- "sur des pages spécifiques."
1205
-
1206
- #: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
1207
- #: php:2
1208
- #, php-format
1209
- msgid ""
1210
- "There might be a problem with layouts and scripts in your dashboard. Please "
1211
- "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1212
- msgstr ""
1213
- "Il pourrait y avoir un problème avec les mises en page et les scripts dans "
1214
- "votre tableau de bord. Veuillez consulter <a href=\"%s\" target=\"_blank\">cet "
1215
- "article pour en savoir plus</a>."
1216
-
1217
- #: ../admin/views/ad-display-metabox.php:39
1218
- msgid "If you want to display the ad everywhere, don't do anything here. "
1219
- msgstr "Si vous souhaitez afficher la publicité partout, ne faites rien ici. "
1220
-
1221
- #: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
1222
- #: 34
1223
- msgid "New condition"
1224
- msgstr "Nouvelle condition"
1225
-
1226
- #: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
1227
- #: 37
1228
- msgid "-- choose a condition --"
1229
- msgstr "—Choisissez une condition—"
1230
-
1231
- #: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
1232
- #: 42
1233
- msgid "add"
1234
- msgstr "ajouter"
1235
-
1236
- #: ../admin/views/ad-group-edit.php:14
1237
- msgid "You did not select an item for editing."
1238
- msgstr "Vous n’avez pas sélectionné un élément pour le modifier."
1239
-
1240
- #: ../admin/views/ad-group-edit.php:33
1241
- msgctxt "Taxonomy Name"
1242
- msgid "Name"
1243
- msgstr "Nom"
1244
-
1245
- #: ../admin/views/ad-group-edit.php:38
1246
- msgctxt "Taxonomy Slug"
1247
- msgid "Slug"
1248
- msgstr "Identifiant"
1249
-
1250
- #: ../admin/views/ad-group-edit.php:40
1251
- msgid "An id-like string with only letters in lower case, numbers, and hyphens."
1252
- msgstr ""
1253
- "Une chaîne de caractères (à l’image des identifiants) avec seulement des "
1254
- "lettres en minuscules, des chiffres et des traits d’Union."
1255
-
1256
- #: ../admin/views/ad-group-edit.php:45
1257
- msgctxt "Taxonomy Description"
1258
- msgid "Description"
1259
- msgstr "Description"
1260
-
1261
- #: ../admin/views/ad-group-edit.php:57
1262
- msgid "Create new Ad Group"
1263
- msgstr "Créer un nouveau groupe"
1264
-
1265
- #: ../admin/views/ad-group-edit.php:59
1266
- msgid "Update"
1267
- msgstr "Mettre à jour"
1268
-
1269
- #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
1270
- msgid "Name"
1271
- msgstr "Nom"
1272
-
1273
- #: ../admin/views/ad-group-list-form-row.php:5
1274
- msgid "Description"
1275
- msgstr "Description"
1276
-
1277
- #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
1278
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:48
1279
- msgid "Type"
1280
- msgstr "Type"
1281
-
1282
- #: ../admin/views/ad-group-list-form-row.php:16
1283
- msgid "Number of visible ads"
1284
- msgstr "Nombre de pubs visibles"
1285
-
1286
- #: ../admin/views/ad-group-list-form-row.php:22
1287
- msgctxt "option to display all ads in an ad groups"
1288
- msgid "all"
1289
- msgstr "toutes"
1290
-
1291
- #: ../admin/views/ad-group-list-form-row.php:25
1292
- msgid "Number of ads that are visible at the same time"
1293
- msgstr "Nombre de pubs qui sont visibles en même temps"
1294
-
1295
- #: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
1296
- #: 591
1297
- msgid "Ad"
1298
- msgstr "Pub"
1299
-
1300
- #: ../admin/views/ad-group-list-form-row.php:32
1301
- msgid "weight"
1302
- msgstr "poids"
1303
-
1304
- #: ../admin/views/ad-group-list-header.php:3 ../classes/ad_type_group.php:30
1305
- msgid "Ad Group"
1306
- msgstr "Groupe de pubs"
1307
-
1308
- #: ../admin/views/ad-group-list-header.php:4
1309
- msgid "Details"
1310
- msgstr " Détails"
1311
-
1312
- #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1313
- #: admin/views/ad-info.php:3 ../admin/views/placements.php:59
1314
- msgid "shortcode"
1315
- msgstr "shortcode"
1316
-
1317
- #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1318
- #: admin/views/placements.php:62
1319
- msgid "template"
1320
- msgstr "modèle"
1321
-
1322
- #: ../admin/views/ad-group-list-row.php:14
1323
- #, php-format
1324
- msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
1325
- msgstr ""
1326
- "En savoir plus sur l’utilisation de groupes dans le <a href=\"%s\" "
1327
- "target=\"_blank\">Manuel</a>."
1328
-
1329
- #: ../admin/views/ad-group-list-row.php:19
1330
- #, php-format
1331
- msgid "Type: %s"
1332
- msgstr "Type: %s"
1333
-
1334
- #: ../admin/views/ad-group-list-row.php:20
1335
- #, php-format
1336
- msgid "ID: %s"
1337
- msgstr "ID: %s"
1338
-
1339
- #: ../admin/views/ad-group.php:18
1340
- msgid "Ad Groups successfully updated"
1341
- msgstr "Groupes de pubs mis à jour avec succès"
1342
-
1343
- #: ../admin/views/ad-group.php:46
1344
- #, php-format
1345
- msgid "Search results for &#8220;%s&#8221;"
1346
- msgstr "Résultats de recherche pour &#8220;%s&#8221;"
1347
-
1348
- #: ../admin/views/ad-group.php:52
1349
- msgid ""
1350
- "Ad Groups are a very flexible method to bundle ads. You can use them to "
1351
- "display random ads in the frontend or run split tests, but also just for "
1352
- "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1353
- "ad can belong to multiple ad groups."
1354
- msgstr ""
1355
- "Les groupes de pubs sont une méthode très flexible pour regrouper les pubs. "
1356
- "Vous pouvez les utiliser pour afficher des pubs au hasard au niveau du "
1357
- "Frontend ou effectuer des tests de versions, mais aussi juste à titre "
1358
- "d’informatif. Non seulement un groupes de pubs peut avoir des pubs multiples,"
1359
- " mais une pub peut aussi appartenir à plusieurs groupes de pubs."
1360
-
1361
- #: ../admin/views/ad-group.php:60
1362
- msgid "How to display an Ad Group?"
1363
- msgstr "Comment afficher un groupe de pubs ?"
1364
-
1365
- #: ../admin/views/ad-group.php:62
1366
- #, php-format
1367
- msgid ""
1368
- "Examples on how to display an ad group? Find more help and examples in the "
1369
- "<a href=\"%s\" target=\"_blank\">manual</a>"
1370
- msgstr ""
1371
- "Exemples sur la façon d’afficher un groupe de pubs? Trouver plus d’aide et "
1372
- "des exemples dans le <a href=\"%s\" target=\"_blank\">Manuel</a>"
1373
-
1374
- #: ../admin/views/ad-group.php:64
1375
- msgid "To display an ad group with the ID 6 in content fields"
1376
- msgstr "Pour afficher un groupe de pubs avec l’ID 6 dans les champs de contenu"
1377
-
1378
- #: ../admin/views/ad-group.php:67
1379
- msgid "To display an ad group with the ID 6 in template files"
1380
- msgstr "Pour afficher un groupe de pubs avec l’ID 6 dans les fichiers modèles"
1381
-
1382
- #: ../admin/views/ad-group.php:87
1383
- msgid "Update Groups"
1384
- msgstr "Mettre à jour les Groupes"
1385
-
1386
- #: ../admin/views/ad-info-top.php:6 ../classes/ad_placements.php:46
1387
- msgid "Before Content"
1388
- msgstr "Avant le contenu"
1389
-
1390
- #: ../admin/views/ad-info-top.php:8 ../classes/ad_placements.php:51
1391
- msgid "After Content"
1392
- msgstr "Après le contenu"
1393
-
1394
- #: ../admin/views/ad-info-top.php:22
1395
- #, php-format
1396
- msgid ""
1397
- "Learn more about your choices to display an ad in the <a href=\"%s\" "
1398
- "target=\"_blank\">manual</a>."
1399
- msgstr ""
1400
- "En savoir plus sur les choix pour afficher une pub dans le <a href=\"%s\" "
1401
- "target=\"_blank\">Manuel</a>."
1402
-
1403
- #: ../admin/views/ad-info.php:2
1404
- #, php-format
1405
- msgid "Ad Id: %s"
1406
- msgstr "Id de la pub: %s"
1407
-
1408
- #: ../admin/views/ad-info.php:5
1409
- msgid "theme function"
1410
- msgstr "fonction du thème"
1411
-
1412
- #: ../admin/views/ad-info.php:7
1413
- #, php-format
1414
- msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1415
- msgstr ""
1416
- "Trouver plus d’options d’affichage dans le <a href=\"%s\" "
1417
- "target=\"_blank\">Manuel</a>."
1418
-
1419
- #: ../admin/views/ad-info.php:12
1420
- msgid "click to change"
1421
- msgstr "Cliquez pour modifier"
1422
-
1423
- #: ../admin/views/ad-info.php:16
1424
- msgid "Add a description"
1425
- msgstr "Ajoutez une description"
1426
-
1427
- #: ../admin/views/ad-info.php:19
1428
- msgid "Internal description or your own notes about this ad."
1429
- msgstr "Description interne ou vos propres notes sur cette pub."
1430
-
1431
- #: ../admin/views/ad-list-filters.php:2
1432
- msgid "all ad types"
1433
- msgstr "tous les types de pub"
1434
-
1435
- #: ../admin/views/ad-list-filters.php:5
1436
- msgid "all ad sizes"
1437
- msgstr "toutes les tailles de pub"
1438
-
1439
- #: ../admin/views/ad-list-filters.php:8
1440
- msgid "all ad dates"
1441
- msgstr "toutes les dates de pub"
1442
-
1443
- #: ../admin/views/ad-list-filters.php:9
1444
- msgid "expired"
1445
- msgstr "expiré"
1446
-
1447
- #: ../admin/views/ad-list-filters.php:10
1448
- msgid "any expiry date"
1449
- msgstr "toute date d’expiration"
1450
-
1451
- #: ../admin/views/ad-list-filters.php:11
1452
- msgid "planned"
1453
- msgstr "planifiée(s)"
1454
-
1455
- #: ../admin/views/ad-list-filters.php:14
1456
- msgid "all ad groups"
1457
- msgstr "tous les groupes de pubs"
1458
-
1459
- #: ../admin/views/ad-main-metabox.php:3
1460
- msgid "No ad types defined"
1461
- msgstr "Aucun type de pub définies"
1462
-
1463
- #: ../admin/views/ad-output-metabox.php:1
1464
- msgid "Everything connected to the ads layout and output."
1465
- msgstr "Tout ce qui est lié à la l’agencement et à la sortie des pubs."
1466
-
1467
- #: ../admin/views/ad-output-metabox.php:4
1468
- msgid "Position"
1469
- msgstr "Position"
1470
-
1471
- #: ../admin/views/ad-output-metabox.php:6
1472
- msgid "- default -"
1473
- msgstr "- par défaut -"
1474
-
1475
- #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:52
1476
- msgid "default"
1477
- msgstr "défaut"
1478
-
1479
- #: ../admin/views/ad-output-metabox.php:8
1480
- msgid "left"
1481
- msgstr "gauche"
1482
-
1483
- #: ../admin/views/ad-output-metabox.php:11
1484
- msgid "center"
1485
- msgstr "centre"
1486
-
1487
- #: ../admin/views/ad-output-metabox.php:14
1488
- msgid "right"
1489
- msgstr "droite"
1490
-
1491
- #: ../admin/views/ad-output-metabox.php:18
1492
- msgid ""
1493
- "Check this if you don't want the following elements to float around the ad. "
1494
- "(adds a clearfix)"
1495
- msgstr ""
1496
- "Cochez cette case si vous ne voulez pas que les éléments suivants flottent "
1497
- "autour de la pub. (ajoute un clearfix)"
1498
-
1499
- #: ../admin/views/ad-output-metabox.php:22
1500
- msgid "Margin"
1501
- msgstr "Marge"
1502
-
1503
- #: ../admin/views/ad-output-metabox.php:24
1504
- msgid "top:"
1505
- msgstr "haut:"
1506
-
1507
- #: ../admin/views/ad-output-metabox.php:26
1508
- msgid "right:"
1509
- msgstr "droite:"
1510
-
1511
- #: ../admin/views/ad-output-metabox.php:28
1512
- msgid "bottom:"
1513
- msgstr "bas:"
1514
-
1515
- #: ../admin/views/ad-output-metabox.php:30
1516
- msgid "left:"
1517
- msgstr "gauche:"
1518
-
1519
- #: ../admin/views/ad-output-metabox.php:32
1520
- msgid "tip: use this to add a margin around the ad"
1521
- msgstr "Astuce : utilisez cela pour ajouter une marge autour de la pub"
1522
-
1523
- #: ../admin/views/ad-output-metabox.php:35
1524
- msgid "container ID"
1525
- msgstr "ID de conteneur"
1526
-
1527
- #: ../admin/views/ad-output-metabox.php:38
1528
- msgid "Specify the id of the ad container. Leave blank for random or no id."
1529
- msgstr ""
1530
- "Spécifiez l’ID du conteneur de pub. Laissez vide pour aléatoire ou sans "
1531
- "identité."
1532
-
1533
- #: ../admin/views/ad-output-metabox.php:41
1534
- msgid "container classes"
1535
- msgstr "classes de conteneur"
1536
-
1537
- #: ../admin/views/ad-output-metabox.php:44
1538
- msgid ""
1539
- "Specify one or more classes for the container. Separate multiple classes "
1540
- "with a space"
1541
- msgstr ""
1542
- "Spécifier une ou plusieurs classe pour le conteneur. Séparez les classes "
1543
- "multiples par un espace"
1544
-
1545
- #: ../admin/views/ad-parameters-size.php:1
1546
- msgid "size"
1547
- msgstr "Taille"
1548
-
1549
- #: ../admin/views/ad-parameters-size.php:3
1550
- msgid "width"
1551
- msgstr "largeur"
1552
-
1553
- #: ../admin/views/ad-parameters-size.php:4
1554
- msgid "height"
1555
- msgstr "hauteur"
1556
-
1557
- #: ../admin/views/ad-submitbox-meta.php:6
1558
- msgid "Set expiry date"
1559
- msgstr "Date d’expiration"
1560
-
1561
- #: ../admin/views/ad-submitbox-meta.php:12
1562
- msgid "Month"
1563
- msgstr "Mois"
1564
-
1565
- #: ../admin/views/ad-submitbox-meta.php:16
1566
- #, php-format
1567
- msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1568
- msgid "%1$s-%2$s"
1569
- msgstr "%1$s-%2$s"
1570
-
1571
- #: ../admin/views/ad-submitbox-meta.php:21
1572
- msgid "Day"
1573
- msgstr "Jour"
1574
-
1575
- #: ../admin/views/ad-submitbox-meta.php:22
1576
- msgid "Year"
1577
- msgstr "Année"
1578
-
1579
- #: ../admin/views/ad-submitbox-meta.php:23
1580
- msgid "Hour"
1581
- msgstr "Heure"
1582
-
1583
- #: ../admin/views/ad-submitbox-meta.php:24
1584
- msgid "Minute"
1585
- msgstr "Minute"
1586
-
1587
- #: ../admin/views/ad-submitbox-meta.php:29
1588
- #, php-format
1589
- msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1590
- msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1591
- msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
1592
-
1593
- #: ../admin/views/ad-visitor-metabox.php:4
1594
- msgid ""
1595
- "Display conditions that are based on the user. Use with caution on cached "
1596
- "websites."
1597
- msgstr ""
1598
- "Afficher les conditions qui sont basées sur l’utilisateur. Utilisez avec "
1599
- "prudence sur les sites Web mis en cache."
1600
-
1601
- #: ../admin/views/ad-visitor-metabox.php:28
1602
- msgid ""
1603
- "Visitor conditions limit the number of users who can see your ad. There is "
1604
- "no need to set visitor conditions if you want all users to see the ad."
1605
- msgstr ""
1606
- "Les conditions de visiteur limitent le nombre d’utilisateurs qui peuvent "
1607
- "voir votre pub. Il ny a pas besoin de définir des conditions de visiteur si "
1608
- "vous souhaitez que tous les utilisateurs voient cette pub."
1609
-
1610
- #: ../admin/views/ad-visitor-metabox.php:30
1611
- #, php-format
1612
- msgid ""
1613
- "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
1614
- "if dynamic features get cached."
1615
- msgstr ""
1616
- "Consultez la suppression du cache (cache-busting) dans <a href=\"%s\" "
1617
- "target=\"_blank\">Advanced Ads Pro</a> si les fonctionnalités dynamiques sont "
1618
- "mises en cache."
1619
-
1620
- #: ../admin/views/ad-visitor-metabox.php:47
1621
- #, php-format
1622
- msgid ""
1623
- "Define the exact browser width for which an ad should be visible using the "
1624
- "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1625
- msgstr ""
1626
- "Définir la largeur exacte de navigateur pour lequel une pub doit être "
1627
- "visible à l’aide du <a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1628
-
1629
- #: ../admin/views/ad-visitor-metabox.php:92
1630
- msgid ""
1631
- "The visitor conditions below are deprecated. Please use the new version of "
1632
- "visitor conditions to replace it."
1633
- msgstr ""
1634
- "Les conditions des visiteurs ci-dessous sont obsolètes. S’il vous plaît "
1635
- "utiliser la nouvelle version des conditions des visiteurs pour le remplacer."
1636
-
1637
- #: ../admin/views/ad-visitor-metabox.php:98
1638
- msgid "Display on all devices"
1639
- msgstr "Afficher sur tous les appareils"
1640
-
1641
- #: ../admin/views/ad-visitor-metabox.php:102
1642
- msgid "only on mobile devices"
1643
- msgstr "seulement sur les appareils mobiles"
1644
-
1645
- #: ../admin/views/ad-visitor-metabox.php:106
1646
- msgid "not on mobile devices"
1647
- msgstr "pas sur les appareils mobiles"
1648
-
1649
- #: ../admin/views/debug.php:6 ../admin/views/settings.php:47
1650
- msgid "Debug Page"
1651
- msgstr "Page de débogage"
1652
-
1653
- #: ../admin/views/debug.php:7
1654
- msgid "Work in progress"
1655
- msgstr "Travail en cours"
1656
-
1657
- #: ../admin/views/feedback_disable.php:3
1658
- msgid "Thank you for helping to improve Advanced Ads."
1659
- msgstr "Merci de nous aider à améliorer Advanced Ads."
1660
-
1661
- #: ../admin/views/feedback_disable.php:4
1662
- msgid ""
1663
- "Your feedback will motivates me to work harder towards a professional ad "
1664
- "management solution."
1665
- msgstr ""
1666
- "Vos commentaires vont me motiver à travailler plus fort vers une solution de "
1667
- "gestion professionnelle de pubs."
1668
-
1669
- #: ../admin/views/feedback_disable.php:5
1670
- msgid "Why did you decide to disable Advanced Ads?"
1671
- msgstr "Pourquoi avez-vous décidé de désactiver Advanced Ads?"
1672
-
1673
- #: ../admin/views/feedback_disable.php:7
1674
- msgid "I stopped showing ads on my site"
1675
- msgstr "J’ai arrêté la diffusion de pubs sur mon site"
1676
-
1677
- #: ../admin/views/feedback_disable.php:8
1678
- #, php-format
1679
- msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1680
- msgstr "Il manque une fonctionnalité ou un <a href=\"%s\">Add-on</a>"
1681
-
1682
- #: ../admin/views/feedback_disable.php:9
1683
- msgid "I have a technical problem"
1684
- msgstr "Jai un problème technique"
1685
-
1686
- #: ../admin/views/feedback_disable.php:10
1687
- msgid "other reason"
1688
- msgstr "autre raison"
1689
-
1690
- #: ../admin/views/feedback_disable.php:12
1691
- msgid "Please specify, if possible"
1692
- msgstr "Veuillez préciser, si possible"
1693
-
1694
- #: ../admin/views/feedback_disable.php:13
1695
- msgid "What would be a reason to return to Advanced Ads?"
1696
- msgstr "Quelle serait une raison de revenir à Advanced Ads?"
1697
-
1698
- #: ../admin/views/intro.php:18
1699
- msgid "5-Star Usability"
1700
- msgstr "5 étoiles pour la facilité d’utilisation"
1701
-
1702
- #: ../admin/views/intro.php:19
1703
- msgid ""
1704
- "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1705
- "standards. If you know how to publish a post then you know how to create an "
1706
- "ad."
1707
- msgstr ""
1708
- "Advanced Ads est puissant et facile à utiliser, car il est construit sur les "
1709
- "normes et standards de WordPress. Si vous savez comment faire pour publier "
1710
- "un billet, alors vous savez comment créer une pub."
1711
-
1712
- #: ../admin/views/intro.php:23
1713
- msgid "5-Star Support"
1714
- msgstr "5 étoiles pour le support"
1715
-
1716
- #: ../admin/views/intro.php:24
1717
- msgid ""
1718
- "I promise you the best supported ad management plugin for WordPress. Whether "
1719
- "a pro user or not, you can reach me easily through the support page, in the "
1720
- "chat on the homepage or replying to a newsletter."
1721
- msgstr ""
1722
- "Je vous promets le plugin de gestion de pubs pour WordPress avec le meilleur "
1723
- "support. Utilisateur pro ou pas, vous pouvez me joindre facilement par le "
1724
- "biais de la page de support, dans le chat sur la page d’accueil ou en "
1725
- "réponse à une newsletter."
1726
-
1727
- #: ../admin/views/intro.php:28
1728
- msgid "5-Star Experience"
1729
- msgstr "5 étoiles pour l’expérience"
1730
-
1731
- #: ../admin/views/intro.php:29
1732
- msgid ""
1733
- "Advanced Ads was built out of my own experience. I am personally using it to "
1734
- "serve millions of ad impressions per month and constantly test new ways to "
1735
- "optimize ad settings."
1736
- msgstr ""
1737
- "Advanced Ads a été conçu de ma propre expérience. Je l’utilise "
1738
- "personnellement pour servir des millions d’impressions de pubs par mois et "
1739
- "sans cesse tester de nouvelles façons d’optimiser les paramètres des pubs."
1740
-
1741
- #: ../admin/views/intro.php:34
1742
- msgid "Welcome to <strong>Advanced Ads</strong>"
1743
- msgstr "Bienvenue sur <strong>Advanced Ads</strong>"
1744
-
1745
- #: ../admin/views/intro.php:36
1746
- msgid "Let me give you an introduction into your future ad management solution."
1747
- msgstr ""
1748
- "Permettez-moi de vous faire une introduction à votre future solution de "
1749
- "gestion de pubs."
1750
-
1751
- #: ../admin/views/intro.php:61
1752
- msgid "Next Steps"
1753
- msgstr "Étapes suivantes"
1754
-
1755
- #: ../admin/views/intro.php:64
1756
- msgid "Subscribe to the Mailing List"
1757
- msgstr "Inscription à la liste de diffusion"
1758
-
1759
- #: ../admin/views/intro.php:65
1760
- msgid "Subscribe to the newsletter and instantly"
1761
- msgstr "S’abonner à la newsletter et instantanément"
1762
-
1763
- #: ../admin/views/intro.php:67
1764
- msgid "get 2 free add-ons."
1765
- msgstr "obtenez 2 Add-ons gratuits."
1766
-
1767
- #: ../admin/views/intro.php:68
1768
- msgid "reply to the welcome message with a question."
1769
- msgstr "répondre au message d’accueil par une question."
1770
-
1771
- #: ../admin/views/intro.php:69
1772
- msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1773
- msgstr "s’abonner à un groupe dédié pour le tutoriel ou astuces sur AdSense."
1774
-
1775
- #: ../admin/views/intro.php:79
1776
- #, php-format
1777
- msgid ""
1778
- "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
1779
- "watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
1780
- msgstr ""
1781
- "Se lancer en créant une pub <a href=\"%1$s\" target=\"blank\">dès maintenant</a> "
1782
- "ou regardez en premier le <a href=\"%2$s\" target=\"blank\">tutoriel vidéo (03:"
1783
- "29 min)</a>."
1784
-
1785
- #: ../admin/views/intro.php:82
1786
- msgid "Display your ad"
1787
- msgstr "Affichez votre pub"
1788
-
1789
- #: ../admin/views/intro.php:83
1790
- msgid ""
1791
- "You can display your ad using a shortcode, widget or one of the powerful "
1792
- "placements. Placements help you to inject ads into the content or place them "
1793
- "on your site without coding."
1794
- msgstr ""
1795
- "Vous pouvez afficher votre pub à l’aide d’un shortcode, d’un widget ou de "
1796
- "l’un des placements disponibles très efficaces. Les placements vous aideront "
1797
- "à injecter des pubs dans le contenu ou de les placer sur votre sites et cela "
1798
- "sans codage."
1799
-
1800
- #: ../admin/views/intro.php:85
1801
- msgid "List of all available placements"
1802
- msgstr "Liste de tous les placements disponibles"
1803
-
1804
- #: ../admin/views/intro.php:86
1805
- msgid "Create a placement"
1806
- msgstr "Créer un placement"
1807
-
1808
- #: ../admin/views/placements.php:8
1809
- msgid ""
1810
- "Couldn’t create the new placement. Please check your form field and whether "
1811
- "the name is already in use."
1812
- msgstr ""
1813
- "Impossible de créer le nouveau placement. S’il vous plaît vérifier votre "
1814
- "champ de formulaire ou si le nom est déjà utilisé."
1815
-
1816
- #: ../admin/views/placements.php:10
1817
- msgid "Placements updated"
1818
- msgstr "Mise à jour des placements"
1819
-
1820
- #: ../admin/views/placements.php:15
1821
- msgid ""
1822
- "Placements are physically places in your theme and posts. You can use them "
1823
- "if you plan to change ads and ad groups on the same place without the need "
1824
- "to change your templates."
1825
- msgstr ""
1826
- "Les placements sont physiquement positionnés dans votre thème et vos "
1827
- "articles. Vous pouvez les utiliser si vous envisagez de modifier les pubs et "
1828
- "les groupes de pubs sur une même position sans avoir besoin de changer vos "
1829
- "modèles."
1830
-
1831
- #: ../admin/views/placements.php:16
1832
- #, php-format
1833
- msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1834
- msgstr ""
1835
- "Voir aussi le manuel pour plus d’informations sur les <a "
1836
- "href=\"%s\">placements</a>."
1837
-
1838
- #: ../admin/views/placements.php:25
1839
- msgid "Options"
1840
- msgstr "Options"
1841
-
1842
- #: ../admin/views/placements.php:42
1843
- #, php-format
1844
- msgid ""
1845
- "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1846
- "if the responsible add-on is activated."
1847
- msgstr ""
1848
- "Type de placement \"%s\" est absent et a été remis à zéro « par défaut »."
1849
- "<br>S’il vous plaît, vérifiez si l’Add-on responsable de cela est activé."
1850
-
1851
- #: ../admin/views/placements.php:58
1852
- msgid "show usage"
1853
- msgstr "montrer son utilisation"
1854
-
1855
- #: ../admin/views/placements.php:70
1856
- msgid "Item"
1857
- msgstr "élément"
1858
-
1859
- #: ../admin/views/placements.php:72 ../admin/views/placements.php:176
1860
- msgid "--not selected--"
1861
- msgstr "--non sélectionné--"
1862
-
1863
- #: ../admin/views/placements.php:92
1864
- msgid "Inject"
1865
- msgstr "Injecter"
1866
-
1867
- #: ../admin/views/placements.php:93
1868
- msgid "after"
1869
- msgstr "après"
1870
-
1871
- #: ../admin/views/placements.php:93
1872
- msgid "before"
1873
- msgstr "avant"
1874
-
1875
- #: ../admin/views/placements.php:113
1876
- msgid "start counting from bottom"
1877
- msgstr "commencer à compter à partir du bas"
1878
-
1879
- #: ../admin/views/placements.php:116
1880
- msgid "Important Notice"
1881
- msgstr "Remarque importante"
1882
-
1883
- #: ../admin/views/placements.php:116
1884
- msgid ""
1885
- "Your server is missing an extension. This might break the content injection."
1886
- "<br/>Ignore this warning if everything works fine or else ask your hosting "
1887
- "provider to enable <em>mbstring</em>."
1888
- msgstr ""
1889
- "Une extension est manquante sur votre serveur. Cela pourrait casser "
1890
- "l’injection de contenu.<br>Ignorer cet avertissement si tout fonctionne très "
1891
- "bien, ou bien demander à votre d’hébergeur d’activer <em>l’extension "
1892
- "mbstring</em>."
1893
-
1894
- #: ../admin/views/placements.php:126
1895
- msgid "advanced options"
1896
- msgstr "options avancées"
1897
-
1898
- #: ../admin/views/placements.php:134
1899
- msgctxt "checkbox to remove placement"
1900
- msgid "delete"
1901
- msgstr "supprimer"
1902
-
1903
- #: ../admin/views/placements.php:140
1904
- msgid "Save Placements"
1905
- msgstr "Enregistrer les placements"
1906
-
1907
- #: ../admin/views/placements.php:142
1908
- msgid "Create a new placement"
1909
- msgstr "Créer un nouveau placement"
1910
-
1911
- #: ../admin/views/placements.php:143
1912
- msgid "New Placement"
1913
- msgstr "Nouveau Placement"
1914
-
1915
- #: ../admin/views/placements.php:149
1916
- msgid "Choose a placement type"
1917
- msgstr "Choisissez un type de placement"
1918
-
1919
- #: ../admin/views/placements.php:150
1920
- #, php-format
1921
- msgid ""
1922
- "Placement types define where the ad is going to be displayed. Learn more "
1923
- "about the different types from the <a href=\"%s\">manual</a>"
1924
- msgstr ""
1925
- "Les types de placement défini la où publicité va s’afficher. En savoir plus "
1926
- "sur les différents types de placement dans <a href=\"%s\">manuelle</a>"
1927
-
1928
- #: ../admin/views/placements.php:167
1929
- msgid "Please select a placement type."
1930
- msgstr "Veuillez sélectionner un type de placement."
1931
-
1932
- #: ../admin/views/placements.php:169
1933
- msgid "Choose a Name"
1934
- msgstr "Choisissez un nom"
1935
-
1936
- #: ../admin/views/placements.php:170
1937
- msgid ""
1938
- "The name of the placement is only visible to you. Tip: choose a descriptive "
1939
- "one, e.g. <em>Below Post Headline</em>."
1940
- msgstr ""
1941
- "Le nom du placement est uniquement visible par vous. Conseil: choisir un "
1942
- "descriptif, par exemple <em>Sous le titre des articles</em>."
1943
-
1944
- #: ../admin/views/placements.php:171
1945
- msgid "Placement Name"
1946
- msgstr "Nom de placement"
1947
-
1948
- #: ../admin/views/placements.php:172
1949
- msgid "Please enter a name for your placement."
1950
- msgstr "Entrez un nom pour votre placement."
1951
-
1952
- #: ../admin/views/placements.php:173
1953
- msgid "Choose the Ad or Group"
1954
- msgstr "Choisissez la pub ou le groupe"
1955
-
1956
- #: ../admin/views/placements.php:174
1957
- msgid "The ad or group that should be displayed."
1958
- msgstr "Pub ou groupe qui doit être affichée."
1959
-
1960
- #: ../admin/views/placements.php:193
1961
- msgid "Save New Placement"
1962
- msgstr "Enregistrez le nouveau placement"
1963
-
1964
- #: ../admin/views/post-ad-settings-metabox.php:3
1965
- msgid "Disable ads on this page"
1966
- msgstr "Désactiver les pubs sur cette page"
1967
-
1968
- #: ../admin/views/setting-license.php:5
1969
- msgid "Your license expired."
1970
- msgstr "Votre licence est expirée."
1971
-
1972
- #: ../admin/views/setting-license.php:14
1973
- #, php-format
1974
- msgid "(%d days left)"
1975
- msgstr "(%d jours restants)"
1976
-
1977
- #: ../admin/views/setting-license.php:18
1978
- msgid "License key"
1979
- msgstr "Clef de la licence"
1980
-
1981
- #: ../admin/views/setting-license.php:28
1982
- msgid "Deactivate License"
1983
- msgstr "Désactiver la licence"
1984
-
1985
- #: ../admin/views/setting-license.php:35
1986
- msgid "Activate License"
1987
- msgstr "Activer la licence"
1988
-
1989
- #: ../admin/views/setting-license.php:39
1990
- msgid "License key invalid"
1991
- msgstr "Clé de licence invalide"
1992
-
1993
- #: ../admin/views/setting-license.php:42
1994
- msgid "active"
1995
- msgstr "active"
1996
-
1997
- #: ../admin/views/settings-disable-ads.php:3
1998
- msgid "Disable all ads in frontend"
1999
- msgstr "Désactiver toutes les pubs sur le Frontend"
2000
-
2001
- #: ../admin/views/settings-disable-ads.php:4
2002
- msgid ""
2003
- "Use this option to disable all ads in the frontend, but still be able to use "
2004
- "the plugin."
2005
- msgstr ""
2006
- "Utilisez cette option pour désactiver toutes les pubs sur Frontend, mais "
2007
- "toujours être en mesure d’utiliser le plugin."
2008
-
2009
- #: ../admin/views/settings-disable-ads.php:8
2010
- msgid "Disable ads on 404 error pages"
2011
- msgstr "Désactiver les pubs sur les pages d’erreur 404"
2012
-
2013
- #: ../admin/views/settings-disable-ads.php:12
2014
- msgid "Disable ads on non-singular pages"
2015
- msgstr "Désactiver les pubs sur les pages non singulière"
2016
-
2017
- #: ../admin/views/settings-disable-ads.php:13
2018
- msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
2019
- msgstr ""
2020
- "par exemple les pages d’archives comme catégories, mots-clés, auteurs, page "
2021
- "de couverture (si une liste)"
2022
-
2023
- #: ../admin/views/settings-disable-ads.php:16
2024
- msgid "Disable ads on secondary queries"
2025
- msgstr "Désactiver les pubs sur les requêtes secondaires"
2026
-
2027
- #: ../admin/views/settings-disable-ads.php:17
2028
- msgid ""
2029
- "Secondary queries are custom queries of posts outside the main query of a "
2030
- "page. Try this option if you see ads injected on places where they shouldn’t "
2031
- "appear."
2032
- msgstr ""
2033
- "Les requêtes secondaires sont des requêtes personnalisées d’articles à "
2034
- "l’extérieur de la requête principale d’une page. Essayez cette option si "
2035
- "vous voyez des pubs injectées à des endroits où elles ne devraient pas "
2036
- "apparaître."
2037
-
2038
- #: ../admin/views/settings.php:36
2039
- msgid "Save settings on this page"
2040
- msgstr "Enregistrer les paramètres sur cette page"
2041
-
2042
- #: ../admin/views/settings.php:48
2043
- msgid "Welcome Page"
2044
- msgstr "Page de Bienvenue"
2045
-
2046
- #: ../admin/views/settings.php:49
2047
- msgid "Advanced Ads on WordPress.org"
2048
- msgstr "Advanced Ads sur WordPress.org"
2049
-
2050
- #: ../admin/views/settings.php:49
2051
- msgid "Advanced Ads on wp.org"
2052
- msgstr "Advanced Ads sur wp.org"
2053
-
2054
- #: ../admin/views/settings.php:50
2055
- msgid "the company behind Advanced Ads"
2056
- msgstr "la compagnie derrière Advanced Ads"
2057
-
2058
- #: ../admin/views/support.php:8
2059
- msgid "Possible Issues"
2060
- msgstr "Problèmes possibles"
2061
-
2062
- #: ../admin/views/support.php:9
2063
- msgid ""
2064
- "Please fix the red highlighted issues on this page or try to understand "
2065
- "their consequences before contacting support."
2066
- msgstr ""
2067
- "S’il vous plaît, réglez les problèmes (surligné en rouge) sur cette page ou "
2068
- "essayer de comprendre leurs conséquences avant de contacter notre assistance."
2069
-
2070
- #: ../admin/views/support.php:13
2071
- #, php-format
2072
- msgid ""
2073
- "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2074
- "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2075
- "Please ask your hosting provider for more information."
2076
- msgstr ""
2077
- "Votre <strong>version de PHP (%s) est trop ancienne</strong>. Pubs avancés "
2078
- "est construit pour PHP 5.3 et supérieur. Il pourrait fonctionner, mais mise "
2079
- jour de PHP est vivement recommandé. Demandez à votre hébergeur pour plus "
2080
- "d’informations."
2081
-
2082
- #: ../admin/views/support.php:16
2083
- #, php-format
2084
- msgid ""
2085
- "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2086
- "rotation or visitor conditions might not work properly. Use the cache-"
2087
- "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
2088
- "ads dynamically."
2089
- msgstr ""
2090
- "Votre <strong>site Web utilise le cache</strong>. Quelques fonctionnalités "
2091
- "dynamiques comme la rotation (alternance) de pubs ou les conditions de "
2092
- "visiteur ne peuvent pas fonctionner correctement. Utilisez la fonctionnalité "
2093
- "de suppression de cache (cache-busting) de <a href=\"%s\" "
2094
- "target=\"_blank\">Advanced Ads Pro</a> pour charger dynamiquement les pubs."
2095
-
2096
- #: ../admin/views/support.php:19
2097
- msgid "There is a <strong>new WordPress version available</strong>. Please update."
2098
- msgstr ""
2099
- "Il existe une <strong>nouvelle version de WordPress disponible</strong>. "
2100
- "Veuillez mettre à jour."
2101
-
2102
- #: ../admin/views/support.php:22
2103
- msgid "There are <strong>plugin updates available</strong>. Please update."
2104
- msgstr ""
2105
- "Il y a des <strong>mises à jour du plugin disponible</strong>. Veuillez "
2106
- "mettre à jour."
2107
-
2108
- #: ../admin/views/support.php:25
2109
- #, php-format
2110
- msgid ""
2111
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
2112
- "missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
2113
- msgstr ""
2114
- "Une ou plusieurs clés de licences pour <strong>Advanced Ads add-ons sont "
2115
- "manquantes ou incorrectes</strong>. S’il vous plaît ajouter les clés de "
2116
- "licences valides <a href=\"%s\">ici</a>."
2117
-
2118
- #: ../admin/views/support.php:31
2119
- #, php-format
2120
- msgid ""
2121
- "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2122
- "site performance, it is known to alter code, including scripts from ad "
2123
- "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
2124
- "support for Autoptimize."
2125
- msgstr ""
2126
- "<strong>Autoptimize plugin détecté</strong>. Ce plugin est excellent pour la "
2127
- "performance du site, mais il est reconnu pour modifier le code, y compris "
2128
- "les scripts de réseaux publicitaires. <a href=\"%s\" target=\"_blank\">Advanced "
2129
- "Ads Pro</a> propose le support intégré d’Autoptimize."
2130
-
2131
- #: ../admin/views/support.php:34
2132
- #, php-format
2133
- msgid ""
2134
- "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2135
- "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2136
- msgstr ""
2137
- "Les plugins qui sont connus pour causer des problèmes (partielles): "
2138
- "<strong>%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">En savoir plus</a>."
2139
-
2140
- #: ../admin/views/support.php:38
2141
- #, php-format
2142
- msgid ""
2143
- "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2144
- "href=\"%s\">settings</a>."
2145
- msgstr ""
2146
- "Les pubs sont désactivées pour toutes ou certaines pages. Voir « pubs "
2147
- "désactivées » dans les <a href=\"%s\">paramètres</a>."
2148
-
2149
- #: ../admin/views/support.php:49
2150
- msgid "Search"
2151
- msgstr "Recherche"
2152
-
2153
- #: ../admin/views/support.php:50
2154
- msgid ""
2155
- "Use the following form to search for solutions in the manual on "
2156
- "wpadvancedads.com"
2157
- msgstr ""
2158
- "Utilisez le formulaire ci-dessous pour rechercher des solutions dans le "
2159
- "manuel sur wpadvancedads.com"
2160
-
2161
- #: ../admin/views/support.php:53
2162
- msgid "search"
2163
- msgstr "rechercher"
2164
-
2165
- #: ../admin/views/support.php:55
2166
- msgid "Contact"
2167
- msgstr "Contact"
2168
-
2169
- #: ../admin/views/support.php:56
2170
- #, php-format
2171
- msgid ""
2172
- "Please search the manual for a solution and take a look at <a href=\"%s\" "
2173
- "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2174
- msgstr ""
2175
- "Veuillez rechercher une solution dans le manuel et jetez un oeil à <a "
2176
- "href=\"%s\" target=\"_blank\">pubs n’apparaissant-pas?</a> avant de me contacter "
2177
- "pour de l’aide."
2178
-
2179
- #: ../admin/views/support.php:58
2180
- msgid "Email was successfully sent."
2181
- msgstr "Votre e-mail a bien été envoyé."
2182
-
2183
- #: ../admin/views/support.php:67
2184
- msgid "your email"
2185
- msgstr "votre email"
2186
-
2187
- #: ../admin/views/support.php:71
2188
- msgid "your name"
2189
- msgstr "Votre nom"
2190
-
2191
- #: ../admin/views/support.php:75
2192
- msgid "your message"
2193
- msgstr "Votre message"
2194
-
2195
- #: ../admin/views/support.php:80
2196
- msgid "send"
2197
- msgstr "envoyer"
2198
-
2199
- #: ../admin/views/notices/adblock.php:3
2200
- msgid ""
2201
- "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2202
- "ad setup."
2203
- msgstr ""
2204
- "Veuillez désactiver votre <strong>bloqueur de publicité</strong> pour éviter "
2205
- "tout problème avec la configuration de pub."
2206
-
2207
- #: ../classes/ad_placements.php:31
2208
- msgid "Manual Placement"
2209
- msgstr "Placement manuel"
2210
-
2211
- #: ../classes/ad_placements.php:32
2212
- msgid "Manual placement to use as function or shortcode."
2213
- msgstr "Placement manuel à utiliser comme fonction ou shortcode."
2214
-
2215
- #: ../classes/ad_placements.php:36
2216
- msgid "Header Code"
2217
- msgstr "Code d’en-tête"
2218
-
2219
- #: ../classes/ad_placements.php:37
2220
- msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
2221
- msgstr ""
2222
- "Injecté dans l’en-tête (avant fermeture de la balise &lt;/head&gt; , souvent "
2223
- "non visible)."
2224
-
2225
- #: ../classes/ad_placements.php:41
2226
- msgid "Footer Code"
2227
- msgstr "Code du pied de page"
2228
-
2229
- #: ../classes/ad_placements.php:42
2230
- msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
2231
- msgstr "Injecté en pied de page (avant la fermeture de la balise &lt;/body&gt;)."
2232
-
2233
- #: ../classes/ad_placements.php:47
2234
- msgid "Injected before the post content."
2235
- msgstr "Injecté avant le contenu de l’article."
2236
-
2237
- #: ../classes/ad_placements.php:52
2238
- msgid "Injected after the post content."
2239
- msgstr "Injecté après le contenu de l’article."
2240
-
2241
- #: ../classes/ad_placements.php:56
2242
- msgid "Post Content"
2243
- msgstr "Contenu d’article"
2244
-
2245
- #: ../classes/ad_placements.php:57
2246
- msgid ""
2247
- "Injected into the post content. You can choose the paragraph after which the "
2248
- "ad content is displayed."
2249
- msgstr ""
2250
- "Injecté dans le contenu de l’article. Vous pouvez choisir le paragraphe "
2251
- "après lequel le contenu de la pub est affiché."
2252
-
2253
- #: ../classes/ad_placements.php:61
2254
- msgid "Sidebar Widget"
2255
- msgstr "Widget de barre latérale"
2256
-
2257
- #: ../classes/ad_placements.php:62
2258
- msgid ""
2259
- "Create a sidebar widget with an ad. Can be placed and used like any other "
2260
- "widget."
2261
- msgstr ""
2262
- "Créer un widget de barre latérale avec une pub. Peuvent être placé et "
2263
- "utilisé comme nimporte quel autre widget."
2264
-
2265
- #: ../classes/ad_placements.php:210
2266
- #, php-format
2267
- msgid "paragraph (%s)"
2268
- msgstr "paragraphe (%s)"
2269
-
2270
- #: ../classes/ad_placements.php:212
2271
- #, php-format
2272
- msgid "headline 2 (%s)"
2273
- msgstr "titre 2 (%s)"
2274
-
2275
- #: ../classes/ad_placements.php:213
2276
- #, php-format
2277
- msgid "headline 3 (%s)"
2278
- msgstr "titre 3 (%s)"
2279
-
2280
- #: ../classes/ad_placements.php:214
2281
- #, php-format
2282
- msgid "headline 4 (%s)"
2283
- msgstr "titre 4 (%s)"
2284
-
2285
- #: ../classes/ad_type_content.php:35
2286
- msgid "Rich Content"
2287
- msgstr "Contenu riche"
2288
-
2289
- #: ../classes/ad_type_content.php:36
2290
- msgid ""
2291
- "The full content editor from WordPress with all features like shortcodes, "
2292
- "image upload or styling, but also simple text/html mode for scripts and code."
2293
- msgstr ""
2294
- "L’éditeur de contenu complet de WordPress avec toutes les fonctionnalités "
2295
- "comme les shortcodes, téléchargement d’images, ou styles, mais aussi en mode "
2296
- "texte/html pour les scripts et le code."
2297
-
2298
- #: ../classes/ad_type_image.php:34
2299
- msgid "Image Ad"
2300
- msgstr "Image de la pub"
2301
-
2302
- #: ../classes/ad_type_image.php:35
2303
- msgid "Ads in various image formats."
2304
- msgstr "Pubs dans divers formats d’image."
2305
-
2306
- #: ../classes/ad_type_image.php:55
2307
- msgid "Insert File"
2308
- msgstr "Insérer un fichier"
2309
-
2310
- #: ../classes/ad_type_image.php:55
2311
- msgid "Insert"
2312
- msgstr "Insérer"
2313
-
2314
- #: ../classes/ad_type_image.php:55
2315
- msgid "select image"
2316
- msgstr "sélectionnez une image"
2317
-
2318
- #: ../classes/ad_type_image.php:56
2319
- msgid "edit"
2320
- msgstr "modifier"
2321
-
2322
- #: ../classes/ad_type_image.php:65
2323
- msgid "url"
2324
- msgstr "url"
2325
-
2326
- #: ../classes/ad_type_image.php:67
2327
- #, php-format
2328
- msgid ""
2329
- "Pro: Open this url in a new window and track impressions and clicks with the "
2330
- "<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
2331
- msgstr ""
2332
- "Pro : Ouvrir cette url dans une nouvelle fenêtre et suivre les impressions "
2333
- "et les clics avec <a href=\"%s\" target=\"_blank\">le module de suivi « Tracking "
2334
- "add-on »</a>"
2335
-
2336
- #: ../classes/ad_type_plain.php:31
2337
- msgid "Plain Text and Code"
2338
- msgstr "Texte brut et code"
2339
-
2340
- #: ../classes/ad_type_plain.php:32
2341
- msgid ""
2342
- "Simple text editor without any filters. You might use it to display "
2343
- "unfiltered content, php code or javascript. Shortcodes and other WordPress "
2344
- "content field magic does not work here."
2345
- msgstr ""
2346
- "Éditeur de texte simple sans aucun filtre. Vous pouvez l’utiliser pour "
2347
- "afficher le contenu non filtrée, code php ou javascript. Shortcodes et autre "
2348
- "champs de contenus de WordPress ne fonctionnent pas ici."
2349
-
2350
- #: ../classes/ad_type_plain.php:52
2351
- msgid "Insert plain text or code into this field."
2352
- msgstr "Insérez le code ou texte brut dans ce champ."
2353
-
2354
- #: ../classes/ad_type_plain.php:88
2355
- msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2356
- msgstr "Exécuter du code PHP (inséré dans <code>&lt;?php ?&gt;</code>)"
2357
-
2358
- #: ../classes/checks.php:223
2359
- #, php-format
2360
- msgid ""
2361
- "Possible conflict between jQueryUI library, used by Advanced Ads and other "
2362
- "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
2363
- "misfortunate formats in forms, but should not damage features."
2364
- msgstr ""
2365
- "Conflits possibles entre les bibliothèques jQueryUI, utilisée par Advanced "
2366
- "Ads et d’autres bibliothèques (probablement <a href=\"%s\">Twitter "
2367
- "Bootstrap</a>). Cela pourrait conduire à des formats malheureux, mais ne "
2368
- "devrait pas endommager les fonctionnalités."
2369
-
2370
- #: ../classes/display-conditions.php:69
2371
- msgid "post type"
2372
- msgstr "Type darticle"
2373
-
2374
- #: ../classes/display-conditions.php:70 ../includes/array_ad_conditions.php:40
2375
- msgid "Choose the public post types on which to display the ad."
2376
- msgstr "Choisir les types d’article public sur lequel afficher la pub."
2377
-
2378
- #: ../classes/display-conditions.php:76
2379
- msgid "specific pages"
2380
- msgstr "pages spécifiques"
2381
-
2382
- #: ../classes/display-conditions.php:77 ../includes/array_ad_conditions.php:58
2383
- msgid ""
2384
- "Choose on which individual posts, pages and public post type pages you want "
2385
- "to display or hide ads."
2386
- msgstr ""
2387
- "Choisir sur quels articles individuels, pages et pages de type article "
2388
- "public vous souhaitez afficher ou masquer les pubs."
2389
-
2390
- #: ../classes/display-conditions.php:82
2391
- msgid "general conditions"
2392
- msgstr "conditions générales"
2393
-
2394
- #: ../classes/display-conditions.php:88
2395
- msgid "author"
2396
- msgstr "auteur"
2397
-
2398
- #: ../classes/display-conditions.php:113
2399
- #, php-format
2400
- msgid "archive: %s"
2401
- msgstr "archive: %s"
2402
-
2403
- #: ../classes/display-conditions.php:214 ../classes/display-conditions.php:258 ..
2404
- #: classes/display-conditions.php:346
2405
- msgctxt "Error message shown when no display condition term is selected"
2406
- msgid "Please select some items."
2407
- msgstr "Veuillez sélectionner quelques éléments."
2408
-
2409
- #: ../classes/display-conditions.php:243 ../classes/display-conditions.php:296 ..
2410
- #: classes/display-conditions.php:371
2411
- msgid "show"
2412
- msgstr "montrer"
2413
-
2414
- #: ../classes/display-conditions.php:244 ../classes/display-conditions.php:297 ..
2415
- #: classes/display-conditions.php:372
2416
- msgid "hide"
2417
- msgstr "masquer"
2418
-
2419
- #: ../classes/display-conditions.php:336
2420
- msgctxt "display the terms search field on ad edit page"
2421
- msgid "add more terms"
2422
- msgstr "ajouter plus de termes"
2423
-
2424
- #: ../classes/display-conditions.php:337
2425
- msgid "add more terms"
2426
- msgstr "ajouter plus de termes"
2427
-
2428
- #: ../classes/display-conditions.php:339
2429
- msgid "term name or id"
2430
- msgstr "nom du terme ou id"
2431
-
2432
- #: ../classes/display-conditions.php:445 ../includes/array_ad_conditions.php:63
2433
- msgid "Home Page"
2434
- msgstr "Page d’accueil"
2435
-
2436
- #: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:64
2437
- msgid "show on Home page"
2438
- msgstr "voir sur page d’accueil"
2439
-
2440
- #: ../classes/display-conditions.php:450 ../includes/array_ad_conditions.php:68
2441
- msgid "Singular Pages"
2442
- msgstr "Pages particulières"
2443
-
2444
- #: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:69
2445
- msgid "show on singular pages/posts"
2446
- msgstr "afficher sur les articles particuliers ou pages particulières"
2447
-
2448
- #: ../classes/display-conditions.php:455 ../includes/array_ad_conditions.php:73
2449
- msgid "Archive Pages"
2450
- msgstr "Pages d’archive"
2451
-
2452
- #: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:74
2453
- msgid "show on any type of archive page (category, tag, author and date)"
2454
- msgstr ""
2455
- "afficher sur n’importe quel type de page d’archive (catégorie, mot-clé, "
2456
- "auteur et date)"
2457
-
2458
- #: ../classes/display-conditions.php:460 ../includes/array_ad_conditions.php:78
2459
- msgid "Search Results"
2460
- msgstr "Résultats de recherche"
2461
-
2462
- #: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:79
2463
- msgid "show on search result pages"
2464
- msgstr "montrer sur les pages de résultats de recherche"
2465
-
2466
- #: ../classes/display-conditions.php:465 ../includes/array_ad_conditions.php:83
2467
- msgid "404 Page"
2468
- msgstr "Page 404"
2469
-
2470
- #: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:84
2471
- msgid "show on 404 error page"
2472
- msgstr "afficher sur la page d’erreur 404"
2473
-
2474
- #: ../classes/display-conditions.php:470 ../includes/array_ad_conditions.php:88
2475
- msgid "Attachment Pages"
2476
- msgstr "Pages de pièce jointe"
2477
-
2478
- #: ../classes/display-conditions.php:471 ../includes/array_ad_conditions.php:89
2479
- msgid "show on attachment pages"
2480
- msgstr "afficher sur les pages de pièce jointe"
2481
-
2482
- #: ../classes/display-conditions.php:475 ../includes/array_ad_conditions.php:93
2483
- msgid "Secondary Queries"
2484
- msgstr "Requêtes secondaires"
2485
-
2486
- #: ../classes/display-conditions.php:476 ../includes/array_ad_conditions.php:94
2487
- msgid "allow ads in secondary queries"
2488
- msgstr "autoriser les pubs dans les requêtes secondaires"
2489
-
2490
- #: ../classes/EDD_SL_Plugin_Updater.php:177
2491
- #, php-format
2492
- msgid ""
2493
- "There is a new version of %1$s available. <a target=\"_blank\" "
2494
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
2495
- msgstr ""
2496
- "Il y a une nouvelle version de %1$s disponible. <a target=\"_blank\" "
2497
- "class=\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s </a>."
2498
-
2499
- #: ../classes/EDD_SL_Plugin_Updater.php:184
2500
- #, php-format
2501
- msgid ""
2502
- "There is a new version of %1$s available. <a target=\"_blank\" "
2503
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
2504
- "href=\"%4$s\">update now</a>."
2505
- msgstr ""
2506
- "Il y a une nouvelle version de %1$s disponible. <a target=\"_blank\" "
2507
- "class=\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a> or <a "
2508
- "href=\"%4$s\">Mettre à jour maintenant</a>."
2509
-
2510
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2511
- msgid "You do not have permission to install plugin updates"
2512
- msgstr "Vous n’avez pas la permission d’installer les mises à jour de l’extension"
2513
-
2514
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2515
- msgid "Error"
2516
- msgstr "Erreur"
2517
-
2518
- #: ../classes/visitor-conditions.php:32
2519
- msgid "mobile device"
2520
- msgstr "appareil mobile"
2521
-
2522
- #: ../classes/visitor-conditions.php:33
2523
- msgid "Display ads only on mobile devices or hide them."
2524
- msgstr "Afficher les pubs uniquement sur les appareils mobiles ou les masquer."
2525
-
2526
- #: ../classes/visitor-conditions.php:39
2527
- msgid "logged in visitor"
2528
- msgstr "visiteur connecté"
2529
-
2530
- #: ../classes/visitor-conditions.php:40
2531
- msgid "Whether the visitor has to be logged in or not in order to see the ads."
2532
- msgstr "Si le visiteur doit se connecter ou non afin de voir les pubs."
2533
-
2534
- #: ../classes/visitor-conditions.php:73
2535
- #, php-format
2536
- msgid ""
2537
- "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2538
- "target=\"_blank\">Responsive add-on</a>"
2539
- msgstr ""
2540
- "Pro: Afficher les pubs par l’espace disponible sur l’appareil à l’aide du <a "
2541
- "href=\"%s\" target=\"_blank\">Responsive add-on</a>"
2542
-
2543
- #: ../classes/visitor-conditions.php:101
2544
- msgid "is"
2545
- msgstr "est"
2546
-
2547
- #: ../classes/visitor-conditions.php:102
2548
- msgid "is not"
2549
- msgstr "n’est pas"
2550
-
2551
- #: ../classes/visitor-conditions.php:107
2552
- msgid "Manual and Troubleshooting"
2553
- msgstr "Manuel et dépannage"
2554
-
2555
- #: ../classes/visitor-conditions.php:136
2556
- msgid "equal"
2557
- msgstr "égal"
2558
-
2559
- #: ../classes/visitor-conditions.php:137
2560
- msgid "equal or higher"
2561
- msgstr "égal ou supérieur"
2562
-
2563
- #: ../classes/visitor-conditions.php:138
2564
- msgid "equal or lower"
2565
- msgstr "égal ou inférieur"
2566
-
2567
- #: ../classes/visitor-conditions.php:168
2568
- msgid "contains"
2569
- msgstr "contient"
2570
-
2571
- #: ../classes/visitor-conditions.php:169
2572
- msgid "starts with"
2573
- msgstr "commence par"
2574
-
2575
- #: ../classes/visitor-conditions.php:170
2576
- msgid "ends with"
2577
- msgstr "finit par"
2578
-
2579
- #: ../classes/visitor-conditions.php:171
2580
- msgid "matches"
2581
- msgstr "correspond"
2582
-
2583
- #: ../classes/visitor-conditions.php:172
2584
- msgid "matches regex"
2585
- msgstr "expression régulière correspondante"
2586
-
2587
- #: ../classes/visitor-conditions.php:173
2588
- msgid "does not contain"
2589
- msgstr "ne contient pas"
2590
-
2591
- #: ../classes/visitor-conditions.php:174
2592
- msgid "does not start with"
2593
- msgstr "ne commence pas par"
2594
-
2595
- #: ../classes/visitor-conditions.php:175
2596
- msgid "does not end with"
2597
- msgstr "ne se termine pas par"
2598
-
2599
- #: ../classes/visitor-conditions.php:176
2600
- msgid "does not match"
2601
- msgstr "ne correspond pas"
2602
-
2603
- #: ../classes/visitor-conditions.php:177
2604
- msgid "does not match regex"
2605
- msgstr "expression régulière non-correspondante"
2606
-
2607
- #: ../classes/widget.php:25
2608
- msgid "Display Ads and Ad Groups."
2609
- msgstr "Afficher des pubs et des groupes de pubs."
2610
-
2611
- #: ../classes/widget.php:67
2612
- msgid "Title:"
2613
- msgstr "Titre:"
2614
-
2615
- #: ../includes/array_ad_conditions.php:39
2616
- msgid "Post Types"
2617
- msgstr "Types d’article"
2618
-
2619
- #: ../includes/array_ad_conditions.php:45
2620
- msgid "Categories, Tags and Taxonomies"
2621
- msgstr "Catégories, mots-clés et taxonomies"
2622
-
2623
- #: ../includes/array_ad_conditions.php:46
2624
- msgid ""
2625
- "Choose terms from public category, tag and other taxonomies a post must "
2626
- "belong to in order to have ads."
2627
- msgstr ""
2628
- "Choisissez des termes dans la catégorie public, mot-clé et autres taxonomies "
2629
- "pour lesquels un article doit appartenir à afin d’avoir des pubs."
2630
-
2631
- #: ../includes/array_ad_conditions.php:51
2632
- msgid "Category Archives"
2633
- msgstr "Catégorie des Archives"
2634
-
2635
- #: ../includes/array_ad_conditions.php:52
2636
- msgid "comma seperated IDs of category archives"
2637
- msgstr "Identifiants (séparés de virgules) de catégorie d’archive"
2638
-
2639
- #: ../includes/array_ad_conditions.php:57
2640
- msgid "Individual Posts, Pages and Public Post Types"
2641
- msgstr "Articles individuels, pages et types d’article public"
2642
-
2643
- #: ../modules/ad-blocker/admin/admin.php:133
2644
- msgid "The asset folder was rebuilt successfully"
2645
- msgstr "Le dossier d’éléments (assets) a été reconstruit avec succès"
2646
-
2647
- #: ../modules/ad-blocker/admin/admin.php:218
2648
- msgid "Ad blocker fix"
2649
- msgstr "Réparation bloqueur de publicité"
2650
-
2651
- #: ../modules/ad-blocker/admin/admin.php:257
2652
- msgid "There is no writable upload folder"
2653
- msgstr "Il n’y a aucun dossier de transfert avec des droits d’écriture (writable)"
2654
-
2655
- #: ../modules/ad-blocker/admin/admin.php:278
2656
- #, php-format
2657
- msgid "Unable to rename \"%s\" directory"
2658
- msgstr "Impossible de renommer le répertoire \"%s\""
2659
-
2660
- #: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
2661
- #: php:307 ../modules/ad-blocker/admin/admin.php:324
2662
- #, php-format
2663
- msgid "Unable to copy assets to the \"%s\" directory"
2664
- msgstr "Impossible de copier des éléments (assets) dans le répertoire \"%s\""
2665
-
2666
- #: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
2667
- #: php:378
2668
- #, php-format
2669
- msgid "We do not have direct write access to the \"%s\" directory"
2670
- msgstr "Vous n’avez pas de droit direct d’écriture pour le répertoire \"%s\""
2671
-
2672
- #: ../modules/ad-blocker/admin/admin.php:445
2673
- #, php-format
2674
- msgid ""
2675
- "Unable to create \"%s\" directory. Is its parent directory writable by the "
2676
- "server?"
2677
- msgstr ""
2678
- "Impossible de créer le répertoire \"%s\". Son répertoire parent est-il "
2679
- "modifiable par le serveur ?"
2680
-
2681
- #: ../modules/ad-blocker/admin/admin.php:456
2682
- #, php-format
2683
- msgid "Unable to copy files to %s"
2684
- msgstr "Impossible de copier les fichiers vers %s"
2685
-
2686
- #: ../modules/ad-blocker/admin/admin.php:592
2687
- msgid ""
2688
- "Prevents ad block software from breaking your website when blocking asset "
2689
- "files (.js, .css)."
2690
- msgstr ""
2691
- "Empêcher le logiciel de blocage de publicités de casser votre site Internet "
2692
- "lors du blocage des fichiers de composants (.js, .css)."
2693
-
2694
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:1
2695
- msgid "Ad blocker file folder"
2696
- msgstr "Dossier de fichier ad bloquer"
2697
-
2698
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:10
2699
- msgid "Upload folder is not writable"
2700
- msgstr "Dossier de transfert n’est pas accessible en écriture"
2701
-
2702
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:23
2703
- msgid "Asset path"
2704
- msgstr "Chemin d’élément (asset)"
2705
-
2706
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:27
2707
- msgid "Asset URL"
2708
- msgstr "URL de l’actif (asset)"
2709
-
2710
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:46
2711
- msgid "Rebuild asset folder"
2712
- msgstr "Reconstruire le dossier d’éléments (asset folder)"
2713
-
2714
- #: ../modules/gadsense/main.php:19
2715
- msgid " at "
2716
- msgstr "à"
2717
-
2718
- #: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
2719
- #: ad-parameters.php:51
2720
- msgid "Responsive"
2721
- msgstr "Responsive"
2722
-
2723
- #: ../modules/gadsense/admin/admin.php:44
2724
- msgid "The ad details couldn't be retrieved from the ad code"
2725
- msgstr "Les détails de la pub n’ont pas pu être récupérés à partir du code de la pub"
2726
-
2727
- #: ../modules/gadsense/admin/admin.php:45
2728
- msgid ""
2729
- "Warning : The AdSense account from this code does not match the one set with "
2730
- "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2731
- "end."
2732
- msgstr ""
2733
- "Avertissement : Le compte AdSense à partir de ce code ne correspond pas à "
2734
- "celui fixé avec le Plugin Advanced Ads. Cette pub pourrait entraîner des "
2735
- "problèmes lorsqu’elle est utilisée sur le Frontend."
2736
-
2737
- #: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
2738
- msgid "AdSense"
2739
- msgstr "Adsense"
2740
-
2741
- #: ../modules/gadsense/admin/admin.php:131
2742
- msgid "AdSense ID"
2743
- msgstr "ID AdSense"
2744
-
2745
- #: ../modules/gadsense/admin/admin.php:140
2746
- msgid "Limit to 3 ads"
2747
- msgstr "Limiter à 3 pubs"
2748
-
2749
- #: ../modules/gadsense/admin/admin.php:149
2750
- msgid "Activate Page-Level ads"
2751
- msgstr "Activer les pubs de niveau de Page"
2752
-
2753
- #: ../modules/gadsense/admin/admin.php:169
2754
- #, php-format
2755
- msgid ""
2756
- "Please enter your Publisher ID in order to use AdSense on your page. See the "
2757
- "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2758
- msgstr ""
2759
- "Veuillez entrer votre Référence éditeur (Publisher ID) pour utiliser AdSense "
2760
- "sur votre page. Voir le <a href=\"%s\" target=\"_blank\">manuel</a> pour plus "
2761
- "d’informations."
2762
-
2763
- #: ../modules/gadsense/admin/admin.php:183
2764
- msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2765
- msgstr ""
2766
- "Votre Référence éditeur (Publisher ID) dAdSense <em>(pub-"
2767
- "xxxxxxxxxxxxxx)</em>"
2768
-
2769
- #: ../modules/gadsense/admin/admin.php:195
2770
- #, php-format
2771
- msgid "Limit to %d AdSense ads"
2772
- msgstr "Limiter à %d pubs AdSense"
2773
-
2774
- #: ../modules/gadsense/admin/admin.php:199
2775
- #, php-format
2776
- msgid ""
2777
- "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2778
- "Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
2779
- "this limitation at your own risks."
2780
- msgstr ""
2781
- "Actuellement, les <a target=\"_blank\" href=\"%s\" title=\"TOS »>Conditions "
2782
- "d’utilisation</a> Google AdSense impose une limite d’affichage de %d pubs "
2783
- "par page. Vous pouvez désactiver cette limitation à vos propres risques."
2784
-
2785
- #: ../modules/gadsense/admin/admin.php:202
2786
- msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
2787
- msgstr ""
2788
- "Avis: Advanced Ads considère uniquement le type de publicité AdSense pour "
2789
- "cette limite."
2790
-
2791
- #: ../modules/gadsense/admin/admin.php:205
2792
- msgid ""
2793
- "Due to technical restrictions, the limit does not work on placements with "
2794
- "cache-busting enabled."
2795
- msgstr ""
2796
- "En raison de restrictions techniques, la limite ne fonctionne pas sur les "
2797
- "placements avec la suppression du cache (cache-busting) activé."
2798
-
2799
- #: ../modules/gadsense/admin/admin.php:219
2800
- msgid "Insert Page-Level ads code on all pages."
2801
- msgstr "Insérez le code des pubs de niveau de page sur toutes les pages."
2802
-
2803
- #: ../modules/gadsense/admin/admin.php:221
2804
- msgid ""
2805
- "You still need to enable Page-Level ads in your AdSense account. See <a "
2806
- "href=\"https://support.google.com/adsense/answer/6245304\" "
2807
- "target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
2808
- "information"
2809
- msgstr ""
2810
- "Vous devez toujours activer les pubs de niveau de page dans votre compte "
2811
- "Adsense. Consultez l’ <a href=\"https://support.google."
2812
- "com/adsense/answer/6245304\" target=\"_blank\">Aide d’AdSense</a> (compte "
2813
- "AdSense obligatoire) pour plus d’informations"
2814
-
2815
- #: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
2816
- #: type-adsense.php:73
2817
- msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2818
- msgstr ""
2819
- "L’ID de l’éditeur (Publisher ID) a un format incorrect. (doit commencer par "
2820
- "« pub- »)"
2821
-
2822
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
2823
- msgid "Copy&Paste existing ad code"
2824
- msgstr "Copiez et collez le code existant de la pub"
2825
-
2826
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
2827
- msgid "Ad Slot ID"
2828
- msgstr "ID de l’emplacement de pub"
2829
-
2830
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
2831
- #, php-format
2832
- msgid "Publisher ID: %s"
2833
- msgstr "ID de l’éditeur (Publisher ID): %s"
2834
-
2835
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
2836
- #, php-format
2837
- msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2838
- msgstr "S’il vous plaît <a href=\"%s\" target=\"_blank\">changez le ici</a>."
2839
-
2840
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
2841
- msgid "Normal"
2842
- msgstr "Normal"
2843
-
2844
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
2845
- #, php-format
2846
- msgid ""
2847
- "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2848
- "define the exact creative for each browser width."
2849
- msgstr ""
2850
- "Utilisez le <a href=\"%s\" target=\"_blank\">Responsive add-on</a> afin de "
2851
- "définir la création exacte pour chaque largeur de navigateur."
2852
-
2853
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
2854
- msgid "Resizing"
2855
- msgstr "Redimensionnement"
2856
-
2857
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
2858
- msgid "Copy the ad code from your AdSense account and paste it in the area below"
2859
- msgstr ""
2860
- "Copiez le code de pub de votre compte AdSense et collez-le dans la zone ci-"
2861
- "dessous"
2862
-
2863
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
2864
- msgid "Get details"
2865
- msgstr "Plus de Détails"
2866
-
2867
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
2868
- msgid "Close"
2869
- msgstr "Fermer"
2870
-
2871
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:35
2872
- msgid "AdSense ad"
2873
- msgstr "Pub AdSense"
2874
-
2875
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:36
2876
- msgid "Use ads from your Google AdSense account"
2877
- msgstr "Utiliser les pubs de votre compte Google AdSense"
2878
-
2879
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:105
2880
- msgid "Your AdSense Publisher ID is missing."
2881
- msgstr "Votre identifiant d’éditeur (Publisher ID) AdSense est manquant."
2882
-
2883
- #: ../modules/gadsense/includes/class-gadsense-data.php:46
2884
- msgid "Auto"
2885
- msgstr "Auto"
2886
-
2887
- #: ../public/class-advanced-ads.php:309
2888
- msgid "Advanced Ads Error following:"
2889
- msgstr "Erreur d’Advanced Ads suivante :"
2890
-
2891
- #: ../public/class-advanced-ads.php:312
2892
- #, php-format
2893
- msgid "Advanced Ads Error: %s"
2894
- msgstr "Erreur Advanced Ads: %s"
2895
-
2896
- #: ../public/class-advanced-ads.php:553
2897
- msgctxt "ad group general name"
2898
- msgid "Ad Groups"
2899
- msgstr "Groupes de pubs"
2900
-
2901
- #: ../public/class-advanced-ads.php:554
2902
- msgctxt "ad group singular name"
2903
- msgid "Ad Group"
2904
- msgstr "Groupe de pubs"
2905
-
2906
- #: ../public/class-advanced-ads.php:555
2907
- msgid "Search Ad Groups"
2908
- msgstr "Rechercher des groupes de pubs"
2909
-
2910
- #: ../public/class-advanced-ads.php:556
2911
- msgid "All Ad Groups"
2912
- msgstr "Tous les groupes de pubs"
2913
-
2914
- #: ../public/class-advanced-ads.php:557
2915
- msgid "Parent Ad Groups"
2916
- msgstr "Groupes de pubs parents"
2917
-
2918
- #: ../public/class-advanced-ads.php:558
2919
- msgid "Parent Ad Groups:"
2920
- msgstr "Groupes de pubs parents :"
2921
-
2922
- #: ../public/class-advanced-ads.php:559
2923
- msgid "Edit Ad Group"
2924
- msgstr "Modifier le groupe de pubs"
2925
-
2926
- #: ../public/class-advanced-ads.php:560
2927
- msgid "Update Ad Group"
2928
- msgstr "Mettre à jour le groupe de pubs"
2929
-
2930
- #: ../public/class-advanced-ads.php:561
2931
- msgid "Add New Ad Group"
2932
- msgstr "Ajouter un nouveau groupe de pubs"
2933
-
2934
- #: ../public/class-advanced-ads.php:562
2935
- msgid "New Ad Groups Name"
2936
- msgstr "Nouveau nom de groupes de pubs"
2937
-
2938
- #: ../public/class-advanced-ads.php:564
2939
- msgid "No Ad Group found"
2940
- msgstr "Aucun groupe de pubs trouvé"
2941
-
2942
- #: ../public/class-advanced-ads.php:595
2943
- msgid "Edit Ad"
2944
- msgstr "Modifier la pub"
2945
-
2946
- #: ../public/class-advanced-ads.php:597
2947
- msgid "View"
2948
- msgstr "Voir"
2949
-
2950
- #: ../public/class-advanced-ads.php:598
2951
- msgid "View the Ad"
2952
- msgstr "Voir la pub"
2953
-
2954
- #: ../public/class-advanced-ads.php:599
2955
- msgid "Search Ads"
2956
- msgstr "Rechercher des pubs"
2957
-
2958
- #: ../public/class-advanced-ads.php:600
2959
- msgid "No Ads found"
2960
- msgstr "Aucune pub n’a été trouvée"
2961
-
2962
- #: ../public/class-advanced-ads.php:601
2963
- msgid "No Ads found in Trash"
2964
- msgstr "Aucune pub n’a été trouvée dans la corbeille"
2965
-
2966
- #: ../public/class-advanced-ads.php:602
2967
- msgid "Parent Ad"
2968
- msgstr "Pub parente"
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: 2016-11-21 12:16+0000\n"
6
+ "PO-Revision-Date: 2016-11-21 12:16+0000\n"
7
+ "Last-Translator: admin <post@webzunft.de>\n"
8
+ "Language-Team: French (France)\n"
9
+ "Language: fr-FR\n"
10
+ "Plural-Forms: nplurals=2; plural=n > 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Loco - https://localise.biz/\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Poedit-Basepath: ..\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Loco-Target-Locale: fr_FR"
24
+
25
+ #: admin/class-advanced-ads-admin.php:167 classes/display-conditions.php:169
26
+ #: classes/visitor-conditions.php:214 admin/views/ad-display-metabox.php:103
27
+ msgid "or"
28
+ msgstr ""
29
+
30
+ #: admin/class-advanced-ads-admin.php:168 classes/display-conditions.php:169
31
+ #: classes/visitor-conditions.php:214 admin/views/ad-visitor-metabox.php:68
32
+ msgid "and"
33
+ msgstr ""
34
+
35
+ #: admin/class-advanced-ads-admin.php:169
36
+ msgid "After which paragraph?"
37
+ msgstr ""
38
+
39
+ #: admin/class-advanced-ads-admin.php:350
40
+ #: modules/marketpress-license/main.php:65
41
+ #: modules/marketpress-license/main.php:77
42
+ msgid "License couldn’t be activated. Please try again later."
43
+ msgstr ""
44
+
45
+ #: admin/class-advanced-ads-admin.php:364
46
+ #: modules/marketpress-license/main.php:134
47
+ msgid "There are no activations left."
48
+ msgstr ""
49
+
50
+ #: admin/class-advanced-ads-admin.php:462
51
+ #: admin/class-advanced-ads-admin.php:480
52
+ msgid "License couldn’t be deactivated. Please try again later."
53
+ msgstr ""
54
+
55
+ #: classes/ad_placements.php:215
56
+ msgid "paragraph without image (%s)"
57
+ msgstr ""
58
+
59
+ #: classes/ad_type_group.php:31
60
+ msgid ""
61
+ "Choose an existing ad group. Use this type when you want to assign the same "
62
+ "display and visitor conditions to all ads in that group."
63
+ msgstr ""
64
+
65
+ #: classes/ad_type_group.php:84
66
+ msgid "ad group"
67
+ msgstr ""
68
+
69
+ #: classes/display-conditions.php:414
70
+ msgid "title or id"
71
+ msgstr ""
72
+
73
+ #: classes/display-conditions.php:494
74
+ msgid "Feed"
75
+ msgstr ""
76
+
77
+ #: classes/display-conditions.php:495
78
+ msgid "allow ads in Feed"
79
+ msgstr ""
80
+
81
+ #: classes/EDD_SL_Plugin_Updater.php:186
82
+ msgid ""
83
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
84
+ msgstr ""
85
+
86
+ #: classes/EDD_SL_Plugin_Updater.php:194
87
+ msgid ""
88
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
89
+ "or %5$supdate now%6$s."
90
+ msgstr ""
91
+
92
+ #: classes/frontend_checks.php:39
93
+ msgid "Ad Health"
94
+ msgstr ""
95
+
96
+ #: classes/frontend_checks.php:46
97
+ msgid "jQuery not in header"
98
+ msgstr ""
99
+
100
+ #: classes/frontend_checks.php:58
101
+ msgid "Ad blocker enabled"
102
+ msgstr ""
103
+
104
+ #: classes/frontend_checks.php:72
105
+ msgid "<em>%s</em> filter does not exist"
106
+ msgstr ""
107
+
108
+ #: classes/frontend_checks.php:88
109
+ msgid "Ads are disabled on this page"
110
+ msgstr ""
111
+
112
+ #: classes/frontend_checks.php:101
113
+ msgid "Ads are disabled in the content of this page"
114
+ msgstr ""
115
+
116
+ #: classes/frontend_checks.php:113
117
+ msgid "the current post ID is 0 "
118
+ msgstr ""
119
+
120
+ #: classes/frontend_checks.php:127
121
+ msgid "Ads are disabled on 404 pages"
122
+ msgstr ""
123
+
124
+ #: classes/frontend_checks.php:140
125
+ msgid "Ads are disabled on non singular pages"
126
+ msgstr ""
127
+
128
+ #: classes/frontend_checks.php:153
129
+ msgid "Everything is fine"
130
+ msgstr ""
131
+
132
+ #: public/class-advanced-ads.php:714
133
+ msgctxt "label above ads"
134
+ msgid "Advertisements"
135
+ msgstr ""
136
+
137
+ #: admin/includes/class-ad-type.php:491
138
+ msgid ""
139
+ "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
140
+ msgstr ""
141
+
142
+ #: admin/includes/class-meta-box.php:135
143
+ msgid "Video"
144
+ msgstr ""
145
+
146
+ #: admin/includes/class-overview-widgets.php:258
147
+ msgid "Let users purchase ads directly in the frontend of your site."
148
+ msgstr ""
149
+
150
+ #: admin/includes/class-overview-widgets.php:260
151
+ msgid "Get the Selling Ads add-on"
152
+ msgstr ""
153
+
154
+ #: admin/includes/class-settings.php:150
155
+ msgid "Ad label"
156
+ msgstr ""
157
+
158
+ #: admin/includes/class-settings.php:160
159
+ msgid "Delete data on uninstall"
160
+ msgstr ""
161
+
162
+ #: admin/includes/class-settings.php:409
163
+ msgid "Displayed above ads."
164
+ msgstr ""
165
+
166
+ #: admin/includes/class-settings.php:423
167
+ msgid "Clean up all data related to Advanced Ads when removing the plugin."
168
+ msgstr ""
169
+
170
+ #: admin/views/ad-display-metabox.php:50
171
+ msgid "Forced to OR."
172
+ msgstr ""
173
+
174
+ #: admin/views/ad-display-metabox.php:51 admin/views/ad-info-top.php:78
175
+ msgid "manual"
176
+ msgstr ""
177
+
178
+ #: admin/views/ad-info-bottom.php:2
179
+ msgctxt "wizard navigation"
180
+ msgid "previous"
181
+ msgstr ""
182
+
183
+ #: admin/views/ad-info-bottom.php:4
184
+ msgctxt "wizard navigation"
185
+ msgid "save"
186
+ msgstr ""
187
+
188
+ #: admin/views/ad-info-bottom.php:5
189
+ msgctxt "wizard navigation"
190
+ msgid "next"
191
+ msgstr ""
192
+
193
+ #: admin/views/ad-info-top.php:5
194
+ msgid ""
195
+ "Congratulations! Your ad is now visible in the frontend. You can adjust the "
196
+ "placement options <a href=\"%s\">here</a>."
197
+ msgstr ""
198
+
199
+ #: admin/views/ad-info-top.php:7
200
+ msgid "Where do you want to display the ad?"
201
+ msgstr ""
202
+
203
+ #: admin/views/ad-info-top.php:8
204
+ msgid "New placement"
205
+ msgstr ""
206
+
207
+ #: admin/views/ad-info-top.php:10
208
+ msgid "Content"
209
+ msgstr ""
210
+
211
+ #: admin/views/ad-info-top.php:12
212
+ msgid "Manage Sidebar"
213
+ msgstr ""
214
+
215
+ #: admin/views/ad-info-top.php:15
216
+ msgid "Show Pro Places"
217
+ msgstr ""
218
+
219
+ #: admin/views/ad-info-top.php:19
220
+ msgid "Show Sticky Places"
221
+ msgstr ""
222
+
223
+ #: admin/views/ad-info-top.php:23
224
+ msgid "Show PopUp"
225
+ msgstr ""
226
+
227
+ #: admin/views/ad-info-top.php:48
228
+ msgid "Existing placement"
229
+ msgstr ""
230
+
231
+ #: admin/views/ad-info-top.php:53
232
+ msgid "Or use the shortcode %s to insert the ad into the content manually."
233
+ msgstr ""
234
+
235
+ #: admin/views/ad-info-top.php:64 admin/views/ad-info-top.php:76
236
+ msgid "Start Wizard"
237
+ msgstr ""
238
+
239
+ #: admin/views/ad-info-top.php:65
240
+ msgid "Stop Wizard"
241
+ msgstr ""
242
+
243
+ #: admin/views/ad-info-top.php:74
244
+ msgid "Welcome to the Wizard"
245
+ msgstr ""
246
+
247
+ #: admin/views/ad-info-top.php:75
248
+ msgid ""
249
+ "The Wizard helps you to quickly create and publish an ad. Therefore, only "
250
+ "the most common options are visible."
251
+ msgstr ""
252
+
253
+ #: admin/views/ad-info-top.php:77
254
+ msgid "Stop Wizard and show all options"
255
+ msgstr ""
256
+
257
+ #: admin/views/ad-list-no-ads.php:2
258
+ msgid "Not many ads here yet. Get help from the following resources:"
259
+ msgstr ""
260
+
261
+ #: admin/views/ad-list-no-ads.php:3
262
+ msgid "Watch the “First Ad” Tutorial (Video)"
263
+ msgstr ""
264
+
265
+ #: admin/views/ad-list-no-ads.php:4
266
+ msgid "Import Ads (Link)"
267
+ msgstr ""
268
+
269
+ #: admin/views/ad-list-no-ads.php:5
270
+ msgid "Get dummy ad content (Link)"
271
+ msgstr ""
272
+
273
+ #: admin/views/ad-output-metabox.php:47
274
+ msgid "Enable debug mode"
275
+ msgstr ""
276
+
277
+ #: admin/views/ad-parameters-metabox.php:30
278
+ msgid ""
279
+ "The code of this ad might not work properly with the <em>Content</em> "
280
+ "placement."
281
+ msgstr ""
282
+
283
+ #: admin/views/ad-parameters-metabox.php:31
284
+ msgid "Reach out to <a href=\"%s\">support</a> to get help."
285
+ msgstr ""
286
+
287
+ #: admin/views/ad-parameters-size.php:6
288
+ msgid "reserve this space"
289
+ msgstr ""
290
+
291
+ #: admin/views/setting-license.php:6
292
+ msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
293
+ msgstr ""
294
+
295
+ #: admin/views/settings-disable-ads.php:21
296
+ msgid "Disable ads in Feed"
297
+ msgstr ""
298
+
299
+ #: admin/views/settings.php:48 modules/import-export/main.php:15
300
+ #: modules/import-export/main.php:15
301
+ msgid "Import &amp; Export"
302
+ msgstr ""
303
+
304
+ #: modules/marketpress-license/admin.php:36
305
+ msgid "MarketPress Bundle License"
306
+ msgstr ""
307
+
308
+ #: modules/marketpress-license/admin.php:67
309
+ #: modules/marketpress-license/admin.php:70
310
+ msgid ""
311
+ "Enter your key here, if you have purchased the bundle through MarketPress."
312
+ msgstr ""
313
+
314
+ #: modules/marketpress-license/admin.php:72
315
+ msgid ""
316
+ "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
317
+ "."
318
+ msgstr ""
319
+
320
+ #: modules/gadsense/admin/admin.php:199
321
+ msgid ""
322
+ "There is no explicit limit for AdSense ads anymore, but you can still use "
323
+ "this setting to prevent too many AdSense ads to show accidentally on your "
324
+ "site."
325
+ msgstr ""
326
+
327
+ #: modules/import-export/classes/import.php:64
328
+ msgid "Please enter XML content"
329
+ msgstr ""
330
+
331
+ #: modules/import-export/classes/import.php:144
332
+ #: modules/import-export/classes/import.php:560
333
+ msgid "New attachment created <em>%s</em> %s"
334
+ msgstr ""
335
+
336
+ #: modules/import-export/classes/import.php:176
337
+ msgid "Failed to import <em>%s</em>"
338
+ msgstr ""
339
+
340
+ #: modules/import-export/classes/import.php:184
341
+ msgid "New ad created: <em>%s</em> %s"
342
+ msgstr ""
343
+
344
+ #: modules/import-export/classes/import.php:227
345
+ msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
346
+ msgstr ""
347
+
348
+ #: modules/import-export/classes/import.php:289
349
+ msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
350
+ msgstr ""
351
+
352
+ #: modules/import-export/classes/import.php:291
353
+ msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
354
+ msgstr ""
355
+
356
+ #: modules/import-export/classes/import.php:356
357
+ msgid "Placement <em>%s</em> created"
358
+ msgstr ""
359
+
360
+ #: modules/import-export/classes/import.php:471
361
+ msgid "Option was updated: <em>%s</em>"
362
+ msgstr ""
363
+
364
+ #: modules/import-export/classes/import.php:474
365
+ msgid "Option already exists: <em>%s</em>"
366
+ msgstr ""
367
+
368
+ #: modules/import-export/classes/import.php:496
369
+ msgid "Failed to create import directory <em>%s</em>"
370
+ msgstr ""
371
+
372
+ #: modules/import-export/classes/import.php:501
373
+ msgid "Import directory is not writable: <em>%s</em>"
374
+ msgstr ""
375
+
376
+ #: modules/import-export/classes/import.php:509
377
+ msgid ""
378
+ "File is empty, uploads are disabled or post_max_size is smaller than "
379
+ "upload_max_filesize in php.ini"
380
+ msgstr ""
381
+
382
+ #: modules/import-export/classes/import.php:519
383
+ msgid "Failed to upload file, error: <em>%s</em>"
384
+ msgstr ""
385
+
386
+ #: modules/import-export/classes/import.php:524
387
+ msgid "File is empty."
388
+ msgstr ""
389
+
390
+ #: modules/import-export/classes/import.php:529
391
+ msgid ""
392
+ "The file could not be created: <em>%s</em>. This is probably a permissions "
393
+ "problem"
394
+ msgstr ""
395
+
396
+ #: modules/import-export/classes/import.php:602
397
+ msgid "Invalid filetype <em>%s</em>"
398
+ msgstr ""
399
+
400
+ #: modules/import-export/classes/import.php:607
401
+ #: modules/import-export/classes/import.php:614
402
+ #: modules/import-export/classes/import.php:622
403
+ #: modules/import-export/classes/import.php:637
404
+ msgid "Error getting remote image <em>%s</em>"
405
+ msgstr ""
406
+
407
+ #: modules/import-export/classes/import.php:631
408
+ msgid "Zero size file downloaded <em>%s</em>"
409
+ msgstr ""
410
+
411
+ #: modules/import-export/classes/XmlEncoder.php:61
412
+ #: modules/import-export/classes/XmlEncoder.php:190
413
+ msgid "The %s extension(s) is not loaded"
414
+ msgstr ""
415
+
416
+ #: modules/import-export/classes/XmlEncoder.php:72
417
+ msgctxt "import_export"
418
+ msgid "The data must be an array"
419
+ msgstr ""
420
+
421
+ #: modules/import-export/classes/XmlEncoder.php:100
422
+ msgctxt "import_export"
423
+ msgid "The key %s is not valid"
424
+ msgstr ""
425
+
426
+ #: modules/import-export/classes/XmlEncoder.php:146
427
+ msgctxt "import_export"
428
+ msgid "An unexpected value could not be serialized: %s"
429
+ msgstr ""
430
+
431
+ #: modules/import-export/classes/XmlEncoder.php:194
432
+ msgctxt "import_export"
433
+ msgid "Invalid XML data, it can not be empty"
434
+ msgstr ""
435
+
436
+ #: modules/import-export/classes/XmlEncoder.php:216
437
+ msgctxt "import_export"
438
+ msgid "XML error: %s"
439
+ msgstr ""
440
+
441
+ #: modules/import-export/views/page.php:16
442
+ msgid "Export"
443
+ msgstr ""
444
+
445
+ #: modules/import-export/views/page.php:17
446
+ msgid ""
447
+ "When you click the button below Advanced Ads will create an XML file for you "
448
+ "to save to your computer."
449
+ msgstr ""
450
+
451
+ #: modules/import-export/views/page.php:33
452
+ msgid "Import"
453
+ msgstr ""
454
+
455
+ #: modules/import-export/views/page.php:44
456
+ msgid "Choose an XML file"
457
+ msgstr ""
458
+
459
+ #: modules/import-export/views/page.php:45
460
+ msgid "Copy an XML content"
461
+ msgstr ""
462
+
463
+ #: modules/import-export/views/page.php:66
464
+ msgid "Start import"
465
+ msgstr ""
466
+
467
+ #: modules/ad-blocker/admin/views/rebuild_form.php:31
468
+ msgid "Rename assets"
469
+ msgstr ""
470
+
471
+ #: modules/ad-blocker/admin/views/rebuild_form.php:34
472
+ msgid "Check if you want to change the names of the assets"
473
+ msgstr ""
474
+
475
+ #: modules/ad-blocker/admin/views/rebuild_form.php:43
476
+ msgid ""
477
+ "Please, rebuild the asset folder. All assets will be located in <strong>"
478
+ "%s</strong>"
479
+ msgstr ""
480
+
481
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:56
482
+ msgid ""
483
+ "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
484
+ "define the exact size for each browser width or choose between horizontal, "
485
+ "vertical, or rectangle formats."
486
+ msgstr ""
487
+
488
+ #: admin/class-advanced-ads-admin.php:278
489
+ msgid "time of %s"
490
+ msgstr "temps de %s"
491
+
492
+ #: admin/class-advanced-ads-admin.php:314
493
+ msgid "Error while trying to register the license. Please contact support."
494
+ msgstr ""
495
+ "Erreur en essayant d’enregistrer la licence. Veuillez contacter le support."
496
+
497
+ #: admin/class-advanced-ads-admin.php:319 admin/views/setting-license.php:41
498
+ msgid "Please enter a valid license key"
499
+ msgstr "Veuillez entrer une clé de licence valide"
500
+
501
+ #: admin/class-advanced-ads-admin.php:362
502
+ msgid "This is the bundle license key."
503
+ msgstr "Il s’agit de la clé de licence du package (bundle)."
504
+
505
+ #: admin/class-advanced-ads-admin.php:363
506
+ #: modules/marketpress-license/main.php:136
507
+ msgid "This is not the correct key for this add-on."
508
+ msgstr "Ce n’est pas la clé correcte pour ce module."
509
+
510
+ #: admin/class-advanced-ads-admin.php:435
511
+ msgid "Error while trying to disable the license. Please contact support."
512
+ msgstr ""
513
+ "Erreur en essayant de désactiver la licence. Veuillez contacter le support."
514
+
515
+ #: admin/class-advanced-ads-admin.php:653 admin/includes/class-menu.php:87
516
+ #: admin/includes/class-menu.php:87
517
+ msgid "Support"
518
+ msgstr "Support"
519
+
520
+ #: admin/class-advanced-ads-admin.php:657
521
+ msgid "Add-Ons"
522
+ msgstr "Extensions (Add-Ons)"
523
+
524
+ #: classes/ad_placements.php:31
525
+ msgid "Manual Placement"
526
+ msgstr "Placement manuel"
527
+
528
+ #: classes/ad_placements.php:32
529
+ msgid "Manual placement to use as function or shortcode."
530
+ msgstr "Placement manuel à utiliser comme fonction ou shortcode."
531
+
532
+ #: classes/ad_placements.php:36
533
+ msgid "Header Code"
534
+ msgstr "Code d’en-tête"
535
+
536
+ #: classes/ad_placements.php:37
537
+ msgid ""
538
+ "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
539
+ msgstr ""
540
+ "Injecté dans l’en-tête (avant fermeture de la balise &lt;/head&gt; , souvent "
541
+ "non visible)."
542
+
543
+ #: classes/ad_placements.php:41
544
+ msgid "Footer Code"
545
+ msgstr "Code du pied de page"
546
+
547
+ #: classes/ad_placements.php:42
548
+ msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
549
+ msgstr ""
550
+ "Injecté en pied de page (avant la fermeture de la balise &lt;/body&gt;)."
551
+
552
+ #: classes/ad_placements.php:46 admin/views/ad-info-top.php:9
553
+ msgid "Before Content"
554
+ msgstr "Avant le contenu"
555
+
556
+ #: classes/ad_placements.php:47
557
+ msgid "Injected before the post content."
558
+ msgstr "Injecté avant le contenu de l’article."
559
+
560
+ #: classes/ad_placements.php:51 admin/views/ad-info-top.php:11
561
+ msgid "After Content"
562
+ msgstr "Après le contenu"
563
+
564
+ #: classes/ad_placements.php:52
565
+ msgid "Injected after the post content."
566
+ msgstr "Injecté après le contenu de l’article."
567
+
568
+ #: classes/ad_placements.php:56
569
+ msgid "Post Content"
570
+ msgstr "Contenu d’article"
571
+
572
+ #: classes/ad_placements.php:57
573
+ msgid ""
574
+ "Injected into the post content. You can choose the paragraph after which the "
575
+ "ad content is displayed."
576
+ msgstr ""
577
+ "Injecté dans le contenu de l’article. Vous pouvez choisir le paragraphe "
578
+ "après lequel le contenu de la pub est affiché."
579
+
580
+ #: classes/ad_placements.php:61
581
+ msgid "Sidebar Widget"
582
+ msgstr "Widget de barre latérale"
583
+
584
+ #: classes/ad_placements.php:62
585
+ msgid ""
586
+ "Create a sidebar widget with an ad. Can be placed and used like any other "
587
+ "widget."
588
+ msgstr ""
589
+ "Créer un widget de barre latérale avec une pub. Peuvent être placé et "
590
+ "utilisé comme n’importe quel autre widget."
591
+
592
+ #: classes/ad_placements.php:214
593
+ msgid "paragraph (%s)"
594
+ msgstr "paragraphe (%s)"
595
+
596
+ #: classes/ad_placements.php:216
597
+ msgid "headline 2 (%s)"
598
+ msgstr "titre 2 (%s)"
599
+
600
+ #: classes/ad_placements.php:217
601
+ msgid "headline 3 (%s)"
602
+ msgstr "titre 3 (%s)"
603
+
604
+ #: classes/ad_placements.php:218
605
+ msgid "headline 4 (%s)"
606
+ msgstr "titre 4 (%s)"
607
+
608
+ #: classes/ad_type_content.php:35
609
+ msgid "Rich Content"
610
+ msgstr "Contenu riche"
611
+
612
+ #: classes/ad_type_content.php:36
613
+ msgid ""
614
+ "The full content editor from WordPress with all features like shortcodes, "
615
+ "image upload or styling, but also simple text/html mode for scripts and code."
616
+ msgstr ""
617
+ "L’éditeur de contenu complet de WordPress avec toutes les fonctionnalités "
618
+ "comme les shortcodes, téléchargement d’images, ou styles, mais aussi en mode "
619
+ "texte/html pour les scripts et le code."
620
+
621
+ #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
622
+ msgid "Ad Group"
623
+ msgstr "Groupe de pubs"
624
+
625
+ #: classes/ad_type_plain.php:31
626
+ msgid "Plain Text and Code"
627
+ msgstr "Texte brut et code"
628
+
629
+ #: classes/ad_type_plain.php:32
630
+ msgid ""
631
+ "Simple text editor without any filters. You might use it to display "
632
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
633
+ "content field magic does not work here."
634
+ msgstr ""
635
+ "Éditeur de texte simple sans aucun filtre. Vous pouvez l’utiliser pour "
636
+ "afficher le contenu non filtrée, code php ou javascript. Shortcodes et autre "
637
+ "champs de contenus de WordPress ne fonctionnent pas ici."
638
+
639
+ #: classes/ad_type_plain.php:52
640
+ msgid "Insert plain text or code into this field."
641
+ msgstr "Insérez le code ou texte brut dans ce champ."
642
+
643
+ #: classes/ad_type_plain.php:88
644
+ msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
645
+ msgstr "Exécuter du code PHP (inséré dans <code>&lt;?php ?&gt;</code>)"
646
+
647
+ #: classes/checks.php:223
648
+ msgid ""
649
+ "Possible conflict between jQueryUI library, used by Advanced Ads and other "
650
+ "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead "
651
+ "to misfortunate formats in forms, but should not damage features."
652
+ msgstr ""
653
+ "Conflits possibles entre les bibliothèques jQueryUI, utilisée par Advanced "
654
+ "Ads et d’autres bibliothèques (probablement <a href=\"%s\">Twitter "
655
+ "Bootstrap</a>). Cela pourrait conduire à des formats malheureux, mais ne "
656
+ "devrait pas endommager les fonctionnalités."
657
+
658
+ #: classes/display-conditions.php:69
659
+ msgid "post type"
660
+ msgstr "Type d’article"
661
+
662
+ #: classes/display-conditions.php:70
663
+ msgid "Choose the public post types on which to display the ad."
664
+ msgstr "Choisir les types d’article public sur lequel afficher la pub."
665
+
666
+ #: classes/display-conditions.php:76
667
+ msgid "specific pages"
668
+ msgstr "pages spécifiques"
669
+
670
+ #: classes/display-conditions.php:77
671
+ msgid ""
672
+ "Choose on which individual posts, pages and public post type pages you want "
673
+ "to display or hide ads."
674
+ msgstr ""
675
+ "Choisir sur quels articles individuels, pages et pages de type article "
676
+ "public vous souhaitez afficher ou masquer les pubs."
677
+
678
+ #: classes/display-conditions.php:82
679
+ msgid "general conditions"
680
+ msgstr "conditions générales"
681
+
682
+ #: classes/display-conditions.php:88
683
+ msgid "author"
684
+ msgstr "auteur"
685
+
686
+ #: classes/display-conditions.php:111
687
+ msgid "archive: %s"
688
+ msgstr "archive: %s"
689
+
690
+ #: classes/display-conditions.php:204 classes/display-conditions.php:257
691
+ #: classes/display-conditions.php:310 classes/display-conditions.php:385
692
+ msgid "show"
693
+ msgstr "montrer"
694
+
695
+ #: classes/display-conditions.php:205 classes/display-conditions.php:258
696
+ #: classes/display-conditions.php:311 classes/display-conditions.php:386
697
+ msgid "hide"
698
+ msgstr "masquer"
699
+
700
+ #: classes/display-conditions.php:228 classes/display-conditions.php:272
701
+ #: classes/display-conditions.php:360
702
+ msgctxt "Error message shown when no display condition term is selected"
703
+ msgid "Please select some items."
704
+ msgstr "Veuillez sélectionner quelques éléments."
705
+
706
+ #: classes/display-conditions.php:350
707
+ msgctxt "display the terms search field on ad edit page"
708
+ msgid "add more terms"
709
+ msgstr "ajouter plus de termes"
710
+
711
+ #: classes/display-conditions.php:351
712
+ msgid "add more terms"
713
+ msgstr "ajouter plus de termes"
714
+
715
+ #: classes/display-conditions.php:353
716
+ msgid "term name or id"
717
+ msgstr "nom du terme ou id"
718
+
719
+ #: classes/display-conditions.php:459
720
+ msgid "Home Page"
721
+ msgstr "Page d’accueil"
722
+
723
+ #: classes/display-conditions.php:460
724
+ msgid "show on Home page"
725
+ msgstr "voir sur page d’accueil"
726
+
727
+ #: classes/display-conditions.php:464
728
+ msgid "Singular Pages"
729
+ msgstr "Pages particulières"
730
+
731
+ #: classes/display-conditions.php:465
732
+ msgid "show on singular pages/posts"
733
+ msgstr "afficher sur les articles particuliers ou pages particulières"
734
+
735
+ #: classes/display-conditions.php:469
736
+ msgid "Archive Pages"
737
+ msgstr "Pages d’archive"
738
+
739
+ #: classes/display-conditions.php:470
740
+ msgid "show on any type of archive page (category, tag, author and date)"
741
+ msgstr ""
742
+ "afficher sur n’importe quel type de page d’archive (catégorie, mot-clé, "
743
+ "auteur et date)"
744
+
745
+ #: classes/display-conditions.php:474
746
+ msgid "Search Results"
747
+ msgstr "Résultats de recherche"
748
+
749
+ #: classes/display-conditions.php:475
750
+ msgid "show on search result pages"
751
+ msgstr "montrer sur les pages de résultats de recherche"
752
+
753
+ #: classes/display-conditions.php:479
754
+ msgid "404 Page"
755
+ msgstr "Page 404"
756
+
757
+ #: classes/display-conditions.php:480
758
+ msgid "show on 404 error page"
759
+ msgstr "afficher sur la page d’erreur 404"
760
+
761
+ #: classes/display-conditions.php:484
762
+ msgid "Attachment Pages"
763
+ msgstr "Pages de pièce jointe"
764
+
765
+ #: classes/display-conditions.php:485
766
+ msgid "show on attachment pages"
767
+ msgstr "afficher sur les pages de pièce jointe"
768
+
769
+ #: classes/display-conditions.php:489
770
+ msgid "Secondary Queries"
771
+ msgstr "Requêtes secondaires"
772
+
773
+ #: classes/display-conditions.php:490
774
+ msgid "allow ads in secondary queries"
775
+ msgstr "autoriser les pubs dans les requêtes secondaires"
776
+
777
+ #: classes/visitor-conditions.php:32
778
+ msgid "mobile device"
779
+ msgstr "appareil mobile"
780
+
781
+ #: classes/visitor-conditions.php:33
782
+ msgid "Display ads only on mobile devices or hide them."
783
+ msgstr "Afficher les pubs uniquement sur les appareils mobiles ou les masquer."
784
+
785
+ #: classes/visitor-conditions.php:39
786
+ msgid "logged in visitor"
787
+ msgstr "visiteur connecté"
788
+
789
+ #: classes/visitor-conditions.php:40
790
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
791
+ msgstr "Si le visiteur doit se connecter ou non afin de voir les pubs."
792
+
793
+ #: classes/visitor-conditions.php:107
794
+ msgid "Manual and Troubleshooting"
795
+ msgstr "Manuel et dépannage"
796
+
797
+ #: classes/visitor-conditions.php:136
798
+ msgid "equal"
799
+ msgstr "égal"
800
+
801
+ #: classes/visitor-conditions.php:137
802
+ msgid "equal or higher"
803
+ msgstr "égal ou supérieur"
804
+
805
+ #: classes/visitor-conditions.php:138
806
+ msgid "equal or lower"
807
+ msgstr "égal ou inférieur"
808
+
809
+ #: classes/visitor-conditions.php:168
810
+ msgid "contains"
811
+ msgstr "contient"
812
+
813
+ #: classes/visitor-conditions.php:169
814
+ msgid "starts with"
815
+ msgstr "commence par"
816
+
817
+ #: classes/visitor-conditions.php:170
818
+ msgid "ends with"
819
+ msgstr "finit par"
820
+
821
+ #: classes/visitor-conditions.php:171
822
+ msgid "matches"
823
+ msgstr "correspond"
824
+
825
+ #: classes/visitor-conditions.php:172
826
+ msgid "matches regex"
827
+ msgstr "expression régulière correspondante"
828
+
829
+ #: classes/visitor-conditions.php:173
830
+ msgid "does not contain"
831
+ msgstr "ne contient pas"
832
+
833
+ #: classes/visitor-conditions.php:174
834
+ msgid "does not start with"
835
+ msgstr "ne commence pas par"
836
+
837
+ #: classes/visitor-conditions.php:175
838
+ msgid "does not end with"
839
+ msgstr "ne se termine pas par"
840
+
841
+ #: classes/visitor-conditions.php:176
842
+ msgid "does not match"
843
+ msgstr "ne correspond pas"
844
+
845
+ #: classes/visitor-conditions.php:177
846
+ msgid "does not match regex"
847
+ msgstr "expression régulière non-correspondante"
848
+
849
+ #: classes/widget.php:22
850
+ msgid "Display Ads and Ad Groups."
851
+ msgstr "Afficher des pubs et des groupes de pubs."
852
+
853
+ #: classes/widget.php:67 admin/includes/class-shortcode-creator.php:75
854
+ msgid "--empty--"
855
+ msgstr "--vide--"
856
+
857
+ #: classes/widget.php:69 admin/includes/class-menu.php:72
858
+ #: admin/includes/class-shortcode-creator.php:91 admin/views/placements.php:19
859
+ #: modules/import-export/views/page.php:25
860
+ msgid "Placements"
861
+ msgstr "Placements"
862
+
863
+ #: classes/widget.php:76 admin/includes/class-menu.php:67
864
+ #: admin/includes/class-shortcode-creator.php:84 admin/views/placements.php:76
865
+ #: admin/views/placements.php:182
866
+ msgid "Ad Groups"
867
+ msgstr "Groupes de pubs"
868
+
869
+ #: classes/widget.php:83 public/class-advanced-ads.php:590
870
+ #: admin/includes/class-menu.php:56 admin/includes/class-menu.php:56
871
+ #: admin/includes/class-shortcode-creator.php:77
872
+ #: admin/views/ad-group-list-form-row.php:28
873
+ #: admin/views/ad-group-list-header.php:5 admin/views/placements.php:83
874
+ #: admin/views/placements.php:189 modules/import-export/views/page.php:23
875
+ msgid "Ads"
876
+ msgstr "Pubs"
877
+
878
+ #: public/class-advanced-ads.php:309
879
+ msgid "Advanced Ads Error following:"
880
+ msgstr "Erreur d’Advanced Ads suivante :"
881
+
882
+ #: public/class-advanced-ads.php:312
883
+ msgid "Advanced Ads Error: %s"
884
+ msgstr "Erreur Advanced Ads: %s"
885
+
886
+ #: public/class-advanced-ads.php:553
887
+ msgctxt "ad group general name"
888
+ msgid "Ad Groups"
889
+ msgstr "Groupes de pubs"
890
+
891
+ #: public/class-advanced-ads.php:554
892
+ msgctxt "ad group singular name"
893
+ msgid "Ad Group"
894
+ msgstr "Groupe de pubs"
895
+
896
+ #: public/class-advanced-ads.php:555
897
+ msgid "Search Ad Groups"
898
+ msgstr "Rechercher des groupes de pubs"
899
+
900
+ #: public/class-advanced-ads.php:556
901
+ msgid "All Ad Groups"
902
+ msgstr "Tous les groupes de pubs"
903
+
904
+ #: public/class-advanced-ads.php:557
905
+ msgid "Parent Ad Groups"
906
+ msgstr "Groupes de pubs parents"
907
+
908
+ #: public/class-advanced-ads.php:558
909
+ msgid "Parent Ad Groups:"
910
+ msgstr "Groupes de pubs parents :"
911
+
912
+ #: public/class-advanced-ads.php:559
913
+ msgid "Edit Ad Group"
914
+ msgstr "Modifier le groupe de pubs"
915
+
916
+ #: public/class-advanced-ads.php:560
917
+ msgid "Update Ad Group"
918
+ msgstr "Mettre à jour le groupe de pubs"
919
+
920
+ #: public/class-advanced-ads.php:561
921
+ msgid "Add New Ad Group"
922
+ msgstr "Ajouter un nouveau groupe de pubs"
923
+
924
+ #: public/class-advanced-ads.php:562
925
+ msgid "New Ad Groups Name"
926
+ msgstr "Nouveau nom de groupes de pubs"
927
+
928
+ #: public/class-advanced-ads.php:563 admin/includes/class-menu.php:67
929
+ #: modules/import-export/views/page.php:24
930
+ msgid "Groups"
931
+ msgstr "Groupes"
932
+
933
+ #: public/class-advanced-ads.php:564
934
+ msgid "No Ad Group found"
935
+ msgstr "Aucun groupe de pubs trouvé"
936
+
937
+ #: public/class-advanced-ads.php:591 admin/views/ad-group-list-form-row.php:31
938
+ msgid "Ad"
939
+ msgstr "Pub"
940
+
941
+ #: public/class-advanced-ads.php:592 public/class-advanced-ads.php:596
942
+ #: admin/includes/class-menu.php:62 admin/views/ad-group-list-form-row.php:45
943
+ msgid "New Ad"
944
+ msgstr "Nouvelle pub"
945
+
946
+ #: public/class-advanced-ads.php:593 admin/includes/class-menu.php:62
947
+ msgid "Add New Ad"
948
+ msgstr "Ajouter une nouvelle pub"
949
+
950
+ #: public/class-advanced-ads.php:594
951
+ #: admin/includes/class-ad-groups-list.php:302
952
+ #: modules/import-export/classes/import.php:143
953
+ #: modules/import-export/classes/import.php:183
954
+ #: modules/import-export/classes/import.php:559
955
+ msgid "Edit"
956
+ msgstr "Éditer"
957
+
958
+ #: public/class-advanced-ads.php:595
959
+ msgid "Edit Ad"
960
+ msgstr "Modifier la pub"
961
+
962
+ #: public/class-advanced-ads.php:597
963
+ msgid "View"
964
+ msgstr "Voir"
965
+
966
+ #: public/class-advanced-ads.php:598
967
+ msgid "View the Ad"
968
+ msgstr "Voir la pub"
969
+
970
+ #: public/class-advanced-ads.php:599
971
+ msgid "Search Ads"
972
+ msgstr "Rechercher des pubs"
973
+
974
+ #: public/class-advanced-ads.php:600
975
+ msgid "No Ads found"
976
+ msgstr "Aucune pub n’a été trouvée"
977
+
978
+ #: public/class-advanced-ads.php:601
979
+ msgid "No Ads found in Trash"
980
+ msgstr "Aucune pub n’a été trouvée dans la corbeille"
981
+
982
+ #: public/class-advanced-ads.php:602
983
+ msgid "Parent Ad"
984
+ msgstr "Pub parente"
985
+
986
+ #: admin/includes/class-ad-groups-list.php:165
987
+ msgid "Ad weight"
988
+ msgstr "Poids de la pub"
989
+
990
+ #: admin/includes/class-ad-groups-list.php:173
991
+ #: admin/views/ad-list-timing-column.php:4
992
+ msgid "starts %s"
993
+ msgstr "commence le %s"
994
+
995
+ #: admin/includes/class-ad-groups-list.php:192
996
+ #: admin/views/ad-list-timing-column.php:21
997
+ msgid "expires %s"
998
+ msgstr "Expire le %s"
999
+
1000
+ #: admin/includes/class-ad-groups-list.php:194
1001
+ #: admin/views/ad-list-timing-column.php:23
1002
+ msgid "<strong>expired</strong> %s"
1003
+ msgstr "<strong>expiré</strong> %s"
1004
+
1005
+ #: admin/includes/class-ad-groups-list.php:207
1006
+ msgid "all published ads are displayed"
1007
+ msgstr "toutes les pubs publiées sont affichées"
1008
+
1009
+ #: admin/includes/class-ad-groups-list.php:209
1010
+ msgid "up to %d ads displayed"
1011
+ msgstr "jusqu’à %d pubs affichées"
1012
+
1013
+ #: admin/includes/class-ad-groups-list.php:212
1014
+ msgid "No ads assigned"
1015
+ msgstr "Aucune pub assignée"
1016
+
1017
+ #: admin/includes/class-ad-groups-list.php:278
1018
+ msgid "Random ads"
1019
+ msgstr "Pubs aléatoires"
1020
+
1021
+ #: admin/includes/class-ad-groups-list.php:279
1022
+ msgid "Display random ads based on ad weight"
1023
+ msgstr "Afficher des pubs aléatoirement selon le poids de la pub"
1024
+
1025
+ #: admin/includes/class-ad-groups-list.php:282
1026
+ msgid "Ordered ads"
1027
+ msgstr "Pubs ordonnées"
1028
+
1029
+ #: admin/includes/class-ad-groups-list.php:283
1030
+ msgid "Display ads with the highest ad weight first"
1031
+ msgstr "Afficher les pubs avec le poids le plus élevé tout d’abord"
1032
+
1033
+ #: admin/includes/class-ad-groups-list.php:303
1034
+ msgid "Usage"
1035
+ msgstr "Utilisation"
1036
+
1037
+ #: admin/includes/class-ad-groups-list.php:333
1038
+ msgid "Invalid Ad Group"
1039
+ msgstr "Groupe de pubs invalide."
1040
+
1041
+ #: admin/includes/class-ad-groups-list.php:338
1042
+ msgid "You don’t have permission to change the ad groups"
1043
+ msgstr "Vous n’avez pas l’autorisation de modifier les groupes de pubs"
1044
+
1045
+ #: admin/includes/class-ad-type.php:79 admin/includes/class-ad-type.php:84
1046
+ msgid "Ad Details"
1047
+ msgstr "Détails de la pub"
1048
+
1049
+ #: admin/includes/class-ad-type.php:80 admin/includes/class-ad-type.php:85
1050
+ msgid "Ad Planning"
1051
+ msgstr "Planification de la pub"
1052
+
1053
+ #: admin/includes/class-ad-type.php:182
1054
+ msgid "expired"
1055
+ msgstr "expiré"
1056
+
1057
+ #: admin/includes/class-ad-type.php:183
1058
+ msgid "any expiry date"
1059
+ msgstr "toute date d’expiration"
1060
+
1061
+ #: admin/includes/class-ad-type.php:184
1062
+ msgid "planned"
1063
+ msgstr "planifiée(s)"
1064
+
1065
+ #: admin/includes/class-ad-type.php:487 admin/includes/class-ad-type.php:488
1066
+ msgid "Ad updated."
1067
+ msgstr "Pub mise à jour."
1068
+
1069
+ #. translators: %s: date and time of the revision
1070
+ #: admin/includes/class-ad-type.php:490
1071
+ msgid "Ad restored to revision from %s"
1072
+ msgstr "Pub restaurée à partir de la révision du %s"
1073
+
1074
+ #: admin/includes/class-ad-type.php:491
1075
+ msgid "Ad published."
1076
+ msgstr "Pub publiée."
1077
+
1078
+ #: admin/includes/class-ad-type.php:492
1079
+ msgid "Ad saved."
1080
+ msgstr "Pub enregistrée."
1081
+
1082
+ #: admin/includes/class-ad-type.php:493
1083
+ msgid "Ad submitted."
1084
+ msgstr "Pub soumise."
1085
+
1086
+ #: admin/includes/class-ad-type.php:495
1087
+ msgid "Ad scheduled for: <strong>%1$s</strong>."
1088
+ msgstr "Pub programmée pour: <strong>%1$s.</strong>"
1089
+
1090
+ #. translators: Publish box date format, see http://php.net/date
1091
+ #: admin/includes/class-ad-type.php:497
1092
+ msgid "M j, Y @ G:i"
1093
+ msgstr "M j, Y @ G:i"
1094
+
1095
+ #: admin/includes/class-ad-type.php:499
1096
+ msgid "Ad draft updated."
1097
+ msgstr "Brouillon de la pub mis à jour."
1098
+
1099
+ #: admin/includes/class-menu.php:52
1100
+ msgid "Overview"
1101
+ msgstr "Aperçu"
1102
+
1103
+ #: admin/includes/class-menu.php:72
1104
+ msgid "Ad Placements"
1105
+ msgstr "Emplacements de la pub"
1106
+
1107
+ #: admin/includes/class-menu.php:76
1108
+ msgid "Advanced Ads Settings"
1109
+ msgstr "Réglages d’Advanced Ads"
1110
+
1111
+ #: admin/includes/class-menu.php:76 admin/views/debug.php:10
1112
+ msgid "Settings"
1113
+ msgstr "Réglages"
1114
+
1115
+ #: admin/includes/class-menu.php:79
1116
+ msgid "Advanced Ads Debugging"
1117
+ msgstr "Débogage Advanced Ads"
1118
+
1119
+ #: admin/includes/class-menu.php:79
1120
+ msgid "Debug"
1121
+ msgstr "Débogage"
1122
+
1123
+ #: admin/includes/class-menu.php:83 admin/includes/class-menu.php:83
1124
+ msgid "Advanced Ads Intro"
1125
+ msgstr "Introduction à Advanced Ads"
1126
+
1127
+ #: admin/includes/class-menu.php:199
1128
+ msgid "Please enter a message"
1129
+ msgstr "Veuillez saisir un message"
1130
+
1131
+ #: admin/includes/class-menu.php:209
1132
+ msgid "Email could NOT be sent. Please contact us directly at %s."
1133
+ msgstr ""
1134
+ "L’email n’a pas pu être envoyé. Veuillez nous contacter directement à %s."
1135
+
1136
+ #: admin/includes/class-menu.php:212
1137
+ msgid "Please enter a valid email address"
1138
+ msgstr "Veuillez entrer un Email valide"
1139
+
1140
+ #: admin/includes/class-menu.php:238 admin/includes/class-menu.php:265
1141
+ msgid "Sorry, you are not allowed to access this feature."
1142
+ msgstr "Désolé, vous n’êtes pas autorisé à accéder à cette fonctionnalité."
1143
+
1144
+ #: admin/includes/class-menu.php:251
1145
+ msgid ""
1146
+ "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1147
+ "deleted?"
1148
+ msgstr ""
1149
+ "Vous avez essayé de modifier un groupe de pubs qui n’existe pas. Peut-être a-"
1150
+ "t-il été supprimé?"
1151
+
1152
+ #: admin/includes/class-meta-box.php:53
1153
+ msgid "Ad Type"
1154
+ msgstr "Type de pub"
1155
+
1156
+ #: admin/includes/class-meta-box.php:59
1157
+ msgid "Ad Parameters"
1158
+ msgstr "Paramètres de pub"
1159
+
1160
+ #: admin/includes/class-meta-box.php:62
1161
+ msgid "Layout / Output"
1162
+ msgstr "Mise en page / sortie"
1163
+
1164
+ #: admin/includes/class-meta-box.php:65
1165
+ msgid "Display Conditions"
1166
+ msgstr "Conditions d’affichage"
1167
+
1168
+ #: admin/includes/class-meta-box.php:68
1169
+ msgid "Visitor Conditions"
1170
+ msgstr "Conditions de visiteur"
1171
+
1172
+ #: admin/includes/class-meta-box.php:125 admin/includes/class-meta-box.php:136
1173
+ #: admin/includes/class-meta-box.php:141 admin/includes/class-settings.php:409
1174
+ #: admin/views/ad-output-metabox.php:51
1175
+ msgid "Manual"
1176
+ msgstr "Manuel"
1177
+
1178
+ #: admin/includes/class-meta-box.php:196
1179
+ msgid "Ad Settings"
1180
+ msgstr "Paramètres de la pub"
1181
+
1182
+ #: admin/includes/class-meta-box.php:298 admin/views/overview.php:23
1183
+ msgid "Ads Dashboard"
1184
+ msgstr "Tableau de bord des pubs"
1185
+
1186
+ #: admin/includes/class-meta-box.php:310
1187
+ msgid "From the ad optimization universe"
1188
+ msgstr "De l’univers d’optimisation de pub"
1189
+
1190
+ #: admin/includes/class-meta-box.php:319
1191
+ msgid "Advanced Ads Tutorials"
1192
+ msgstr "Tutoriels Advanced Ads"
1193
+
1194
+ #: admin/includes/class-meta-box.php:330
1195
+ msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
1196
+ msgstr "%d pubs – <a href=\"%s\">gérer</a> – <a href=\"%s\">nouveau</a>"
1197
+
1198
+ #: admin/includes/class-meta-box.php:341
1199
+ msgid "plugin manual and homepage"
1200
+ msgstr "Page d’accueil et manuel du plugin"
1201
+
1202
+ #: admin/includes/class-meta-box.php:348
1203
+ msgid "Get the tutorial via email"
1204
+ msgstr "Téléchargez le tutoriel par e-mail"
1205
+
1206
+ #: admin/includes/class-meta-box.php:355
1207
+ msgid "Get AdSense tips via email"
1208
+ msgstr "Recevez des conseils de Adsense par e-mail"
1209
+
1210
+ #: admin/includes/class-notices.php:412
1211
+ msgid ""
1212
+ "You don’t seem to have an email address. Please use <a href=\"%s\" "
1213
+ "target=\"_blank\">this form</a> to sign up."
1214
+ msgstr ""
1215
+ "Vous ne semblez pas avoir une adresse e-mail. Veuillez utiliser <a "
1216
+ "href=\"%s\" target=\"_blank\">ce formulaire</a> pour vous inscrire."
1217
+
1218
+ #: admin/includes/class-notices.php:430
1219
+ msgid ""
1220
+ "How embarrassing. The email server seems to be down. Please try again later."
1221
+ msgstr ""
1222
+ "Quelle honte. Le serveur de messagerie semble être à l’arrêt. Veuillez "
1223
+ "réessayer ultérieurement."
1224
+
1225
+ #: admin/includes/class-notices.php:435
1226
+ msgid ""
1227
+ "Please check your email (%s) for the confirmation message. If you didn’t "
1228
+ "receive one or want to use another email address then please use <a "
1229
+ "href=\"%s\" target=\"_blank\">this form</a> to sign up."
1230
+ msgstr ""
1231
+ "Veuillez vérifier votre client mail (%s) pour le message de confirmation. Si "
1232
+ "vous n’avez reçu d’email ou voulez utiliser une autre adresse e-mail "
1233
+ "veuillez utiliser <a href=\"%s\" target=\"_blank\">ce formulaire</a> pour "
1234
+ "vous inscrire."
1235
+
1236
+ #: admin/includes/class-overview-widgets.php:45
1237
+ msgid "Tips and Tutorials"
1238
+ msgstr "Tutoriels et astuces"
1239
+
1240
+ #: admin/includes/class-overview-widgets.php:47
1241
+ msgid "Setup and Optimization Help"
1242
+ msgstr "Aide pour la configuration et l’optimisation"
1243
+
1244
+ #: admin/includes/class-overview-widgets.php:49
1245
+ msgid "Manual and Support"
1246
+ msgstr "Manuel et Support"
1247
+
1248
+ #: admin/includes/class-overview-widgets.php:53
1249
+ msgid "Advanced Ads Pro"
1250
+ msgstr "Advanced Ads Pro"
1251
+
1252
+ #: admin/includes/class-overview-widgets.php:55
1253
+ msgid "Tracking and Stats"
1254
+ msgstr "Suivi et statistiques"
1255
+
1256
+ #: admin/includes/class-overview-widgets.php:57
1257
+ msgid "Responsive and Mobile ads"
1258
+ msgstr "Pubs responsives et pour Mobile"
1259
+
1260
+ #: admin/includes/class-overview-widgets.php:59
1261
+ msgid "Geo Targeting"
1262
+ msgstr "Géociblage"
1263
+
1264
+ #: admin/includes/class-overview-widgets.php:61
1265
+ msgid "Sticky ads"
1266
+ msgstr "Sticky ads"
1267
+
1268
+ #: admin/includes/class-overview-widgets.php:63
1269
+ msgid "PopUps and Layers"
1270
+ msgstr "PopUps and Layers"
1271
+
1272
+ #: admin/includes/class-overview-widgets.php:65
1273
+ msgid "Ad Slider"
1274
+ msgstr "Ad Slider"
1275
+
1276
+ #: admin/includes/class-overview-widgets.php:86
1277
+ msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
1278
+ msgstr ""
1279
+ "Obtenez 2 <strong>Add-ons gratuits</strong> en vous inscrivant à la lettre "
1280
+ "d’information."
1281
+
1282
+ #: admin/includes/class-overview-widgets.php:87
1283
+ msgid "Join now"
1284
+ msgstr "Inscrivez-vous maintenant"
1285
+
1286
+ #: admin/includes/class-overview-widgets.php:94
1287
+ msgid ""
1288
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1289
+ "and Advanced Ads from the dedicated newsletter group."
1290
+ msgstr ""
1291
+ "En savoir plus sur comment et <strong>combien vous pouvez gagner avec "
1292
+ "AdSense</strong> et Advanced Ads via la newsletter du groupe dédié."
1293
+
1294
+ #: admin/includes/class-overview-widgets.php:95 admin/includes/notices.php:30
1295
+ #: admin/views/intro.php:73 admin/views/notices/inline.php:3
1296
+ #: admin/views/notices/subscribe.php:3
1297
+ msgid "Subscribe me now"
1298
+ msgstr "Inscrivez-moi maintenant"
1299
+
1300
+ #: admin/includes/class-overview-widgets.php:102
1301
+ msgid "Get the first steps and more tutorials to your inbox."
1302
+ msgstr ""
1303
+ "Recevez les premières étapes et plus de tutoriels dans votre boîte de "
1304
+ "réception."
1305
+
1306
+ #: admin/includes/class-overview-widgets.php:103
1307
+ msgid "Send it now"
1308
+ msgstr "Envoyer maintenant"
1309
+
1310
+ #: admin/includes/class-overview-widgets.php:126 admin/views/intro.php:78
1311
+ msgid "Create your first ad"
1312
+ msgstr "Créez votre première pub"
1313
+
1314
+ #: admin/includes/class-overview-widgets.php:129
1315
+ msgid ""
1316
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
1317
+ "single spot."
1318
+ msgstr ""
1319
+ "Groupes de pubs contiennent des pubs et sont utilisées pour faire tourner "
1320
+ "plusieurs pubs sur un seul point."
1321
+
1322
+ #: admin/includes/class-overview-widgets.php:131
1323
+ msgid "Create your first group"
1324
+ msgstr "Créez votre premier groupe"
1325
+
1326
+ #: admin/includes/class-overview-widgets.php:134
1327
+ msgid ""
1328
+ "Ad Placements are the best way to manage where to display ads and groups."
1329
+ msgstr ""
1330
+ "Les placements de pubs sont la meilleure façon de gérer où afficher des pubs "
1331
+ "et des groupes."
1332
+
1333
+ #: admin/includes/class-overview-widgets.php:136
1334
+ msgid "Create your first placement"
1335
+ msgstr "Créez votre premier placement"
1336
+
1337
+ #: admin/includes/class-overview-widgets.php:141
1338
+ msgid "Next steps"
1339
+ msgstr "Prochaines étapes"
1340
+
1341
+ #: admin/includes/class-overview-widgets.php:153
1342
+ msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
1343
+ msgstr "<a href=\"%s\" target=\"_blank\">Manuel</a>"
1344
+
1345
+ #: admin/includes/class-overview-widgets.php:154
1346
+ msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
1347
+ msgstr "<a href=\"%s\" target=\"_blank\">FAQ et Support</a>"
1348
+
1349
+ #: admin/includes/class-overview-widgets.php:155
1350
+ msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
1351
+ msgstr "Votez pour une <a href=\"%s\" target=\"_blank\">fonctionnalité</a>"
1352
+
1353
+ #: admin/includes/class-overview-widgets.php:156
1354
+ msgid ""
1355
+ "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
1356
+ "href=\"%s\" target=\"_blank\">wordpress.org</a>"
1357
+ msgstr ""
1358
+ "Remerciez le développeur avec un avis &#9733;&#9733;&#9733;&#9733;&#9733; "
1359
+ "sur <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
1360
+
1361
+ #: admin/includes/class-overview-widgets.php:165
1362
+ msgid ""
1363
+ "Need help to set up and optimize your ads? Need custom coding on your site? "
1364
+ "Ask me for a quote."
1365
+ msgstr ""
1366
+ "Besoin d’aide pour configurer et optimiser vos pubs ? Besoin d’un codage "
1367
+ "personnalisé sur votre site ? Demandez-moi un devis."
1368
+
1369
+ #: admin/includes/class-overview-widgets.php:166
1370
+ msgid "Help with ads on %s"
1371
+ msgstr "Aide sur les pubs activée %s"
1372
+
1373
+ #: admin/includes/class-overview-widgets.php:167
1374
+ msgid "Get an offer"
1375
+ msgstr "Obtenir une offre"
1376
+
1377
+ #: admin/includes/class-overview-widgets.php:175
1378
+ msgid "Ad management for advanced websites."
1379
+ msgstr "Gestion de pubs pour des sites Web avancés."
1380
+
1381
+ #: admin/includes/class-overview-widgets.php:176
1382
+ msgid "Cache-busting"
1383
+ msgstr "Suppression du cache"
1384
+
1385
+ #: admin/includes/class-overview-widgets.php:177
1386
+ msgid "Advanced visitor conditions"
1387
+ msgstr "Conditions de visiteur avancées"
1388
+
1389
+ #: admin/includes/class-overview-widgets.php:178
1390
+ msgid "Flash ads with fallback"
1391
+ msgstr "Pubs en Flash avec alternative"
1392
+
1393
+ #: admin/includes/class-overview-widgets.php:180
1394
+ msgid "Get Pro"
1395
+ msgstr "Obtenir la version Pro"
1396
+
1397
+ #: admin/includes/class-overview-widgets.php:188
1398
+ msgid "Track the impressions of and clicks on your ads."
1399
+ msgstr "Suivre les impressions et les clics sur vos pubs."
1400
+
1401
+ #: admin/includes/class-overview-widgets.php:189
1402
+ msgid "2 methods to count impressions"
1403
+ msgstr "2 méthodes pour compter les impressions"
1404
+
1405
+ #: admin/includes/class-overview-widgets.php:190
1406
+ msgid "beautiful stats for all or single ads"
1407
+ msgstr "belles statistiques pour une ou toutes les pubs"
1408
+
1409
+ #: admin/includes/class-overview-widgets.php:191
1410
+ msgid "group stats by day, week or month"
1411
+ msgstr "grouper les statistiques par jour, semaine ou mois"
1412
+
1413
+ #: admin/includes/class-overview-widgets.php:193
1414
+ msgid "Get the Tracking add-on"
1415
+ msgstr "Obtenir le module de statistiques « Tracking add-on »"
1416
+
1417
+ #: admin/includes/class-overview-widgets.php:201
1418
+ msgid "Display ads based on the size of your visitor’s browser or device."
1419
+ msgstr ""
1420
+ "Afficher des pubs basées sur la taille du navigateur ou le périphérique de "
1421
+ "votre visiteur."
1422
+
1423
+ #: admin/includes/class-overview-widgets.php:202
1424
+ msgid "set a range (from … to …) pixels for the browser size"
1425
+ msgstr "définir une plage (de… à…) pixels pour la taille du navigateur"
1426
+
1427
+ #: admin/includes/class-overview-widgets.php:203
1428
+ msgid "set custom sizes for AdSense responsive ads"
1429
+ msgstr "définir des formats personnalisés pour les pubs responsives AdSense"
1430
+
1431
+ #: admin/includes/class-overview-widgets.php:204
1432
+ msgid "list all ads by their responsive settings"
1433
+ msgstr "lister toutes les pubs par leurs paramètres responsifs"
1434
+
1435
+ #: admin/includes/class-overview-widgets.php:206
1436
+ msgid "Get the Responsive add-on"
1437
+ msgstr "Obtenir le module « Responsive add-on »"
1438
+
1439
+ #: admin/includes/class-overview-widgets.php:214
1440
+ msgid "Target visitors by their geo location."
1441
+ msgstr "Cibler les visiteurs par leur géolocalisation."
1442
+
1443
+ #: admin/includes/class-overview-widgets.php:216
1444
+ msgid "Get the Geo Targeting add-on"
1445
+ msgstr "Obtenir le module de ciblage géolocalisé « Geo Targeting add-on »"
1446
+
1447
+ #: admin/includes/class-overview-widgets.php:224
1448
+ msgid ""
1449
+ "Fix ads to the browser while users are scrolling and create best performing "
1450
+ "anchor ads."
1451
+ msgstr ""
1452
+ "Fixer les pubs sur le navigateur pendant que les utilisateurs font défiler "
1453
+ "la page et créer des publicités à ancrage plus performants."
1454
+
1455
+ #: admin/includes/class-overview-widgets.php:225
1456
+ msgid "position ads that don’t scroll with the screen"
1457
+ msgstr "positionner des pubs qui ne défilent à l’écran"
1458
+
1459
+ #: admin/includes/class-overview-widgets.php:226
1460
+ msgid "build anchor ads not only on mobile devices"
1461
+ msgstr "construire des pubs à ancrage pas seulement sur les appareils mobiles"
1462
+
1463
+ #: admin/includes/class-overview-widgets.php:228
1464
+ msgid "Get the Sticky add-on"
1465
+ msgstr "Obtenir le module « Sticky add-on »"
1466
+
1467
+ #: admin/includes/class-overview-widgets.php:236
1468
+ msgid "Display content and ads in layers and popups on custom events."
1469
+ msgstr ""
1470
+ "Afficher le contenu et les pubs dans des couches et des fenêtres pop-up lors "
1471
+ "des événements personnalisés."
1472
+
1473
+ #: admin/includes/class-overview-widgets.php:237
1474
+ msgid "display a popup after a user interaction like scrolling"
1475
+ msgstr ""
1476
+ "afficher une popup après une action de l’utilisateur comme le défilement"
1477
+
1478
+ #: admin/includes/class-overview-widgets.php:238
1479
+ msgid "optional background overlay"
1480
+ msgstr "option de recouvrement d’arrière plan"
1481
+
1482
+ #: admin/includes/class-overview-widgets.php:239
1483
+ msgid "allow users to close the popup"
1484
+ msgstr "permettre aux utilisateurs de fermer les popup"
1485
+
1486
+ #: admin/includes/class-overview-widgets.php:241
1487
+ msgid "Get the PopUp and Layer add-on"
1488
+ msgstr "Obtenir le module « PopUp and Layer add-on »"
1489
+
1490
+ #: admin/includes/class-overview-widgets.php:249
1491
+ msgid "Create a beautiful and simple slider from your ads."
1492
+ msgstr "Créer un simple et beau diaporama avec vos pubs."
1493
+
1494
+ #: admin/includes/class-overview-widgets.php:251
1495
+ msgid "Get the Slider add-on"
1496
+ msgstr "Obtenir le module « Slider add-on »"
1497
+
1498
+ #: admin/includes/class-settings.php:47 admin/views/settings.php:12
1499
+ msgid "General"
1500
+ msgstr "Général"
1501
+
1502
+ #: admin/includes/class-settings.php:59 admin/includes/class-settings.php:182
1503
+ msgid "Licenses"
1504
+ msgstr "Licences"
1505
+
1506
+ #: admin/includes/class-settings.php:70
1507
+ msgid "Disable ads"
1508
+ msgstr "Désactiver les pubs"
1509
+
1510
+ #: admin/includes/class-settings.php:78
1511
+ msgid "Hide ads for logged in users"
1512
+ msgstr "Cacher les pubs pour les utilisateurs connectés"
1513
+
1514
+ #: admin/includes/class-settings.php:86
1515
+ msgid "Use advanced JavaScript"
1516
+ msgstr "Utiliser du JavaScript avancé"
1517
+
1518
+ #: admin/includes/class-settings.php:94
1519
+ msgid "Unlimited ad injection"
1520
+ msgstr "Injection de pub illimitée"
1521
+
1522
+ #: admin/includes/class-settings.php:102
1523
+ msgid "Priority of content injection filter"
1524
+ msgstr "Filtre de priorité d’injection de contenu"
1525
+
1526
+ #: admin/includes/class-settings.php:110
1527
+ msgid "Hide ads from bots"
1528
+ msgstr "Cacher les publicités aux robots"
1529
+
1530
+ #: admin/includes/class-settings.php:118
1531
+ msgid "Disable notices"
1532
+ msgstr "Désactiver les avis"
1533
+
1534
+ #: admin/includes/class-settings.php:126
1535
+ msgid "ID prefix"
1536
+ msgstr "Préfixe ID"
1537
+
1538
+ #: admin/includes/class-settings.php:134
1539
+ msgid "Remove Widget ID"
1540
+ msgstr "Supprimer le Widget ID"
1541
+
1542
+ #: admin/includes/class-settings.php:142
1543
+ msgid "Allow editors to manage ads"
1544
+ msgstr "Permettre aux éditeurs de gérer des pubs"
1545
+
1546
+ #: admin/includes/class-settings.php:238
1547
+ msgid "(display to all)"
1548
+ msgstr "(afficher à tous)"
1549
+
1550
+ #: admin/includes/class-settings.php:239
1551
+ msgid "Subscriber"
1552
+ msgstr "Abonné"
1553
+
1554
+ #: admin/includes/class-settings.php:240
1555
+ msgid "Contributor"
1556
+ msgstr "Contributeur"
1557
+
1558
+ #: admin/includes/class-settings.php:241
1559
+ msgid "Author"
1560
+ msgstr "Auteur"
1561
+
1562
+ #: admin/includes/class-settings.php:242
1563
+ msgid "Editor"
1564
+ msgstr "Éditeur"
1565
+
1566
+ #: admin/includes/class-settings.php:243
1567
+ msgid "Admin"
1568
+ msgstr "Administrateur"
1569
+
1570
+ #: admin/includes/class-settings.php:251
1571
+ msgid "Choose the lowest role a user must have in order to not see any ads."
1572
+ msgstr ""
1573
+ "Choisissez le rôle le plus faible dont un utilisateur doit disposer afin de "
1574
+ "ne pas voir de pubs."
1575
+
1576
+ #: admin/includes/class-settings.php:265
1577
+ msgid ""
1578
+ "<strong>notice: </strong>the file is currently enabled by an add-on that "
1579
+ "needs it."
1580
+ msgstr ""
1581
+ "<strong>avis: </strong>le fichier est actuellement activé par un module "
1582
+ "complémentaire dont il a besoin."
1583
+
1584
+ #: admin/includes/class-settings.php:268
1585
+ msgid ""
1586
+ "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
1587
+ "here</a>). Some features and add-ons might override this setting if they "
1588
+ "need features from this file."
1589
+ msgstr ""
1590
+ "Activer les fonctions JavaScript avancées (<a href=\"%s\" target=\"_blank\">"
1591
+ "here</a>). Certaines fonctionnalités et modules complémentaires peuvent "
1592
+ "remplacer ce paramètre si elles ont besoin des fonctionnalités de ce fichier."
1593
+
1594
+ #: admin/includes/class-settings.php:281
1595
+ msgid ""
1596
+ "Some plugins and themes trigger ad injection where it shouldn’t happen. "
1597
+ "Therefore, Advanced Ads ignores injected placements on non-singular pages "
1598
+ "and outside the loop. However, this can cause problems with some themes. You "
1599
+ "can enable this option if you don’t see ads or want to enable ad injections "
1600
+ "on archive pages AT YOUR OWN RISK."
1601
+ msgstr ""
1602
+ "Certains plugins et thèmes place l’injection de la pub où il ne devrait pas. "
1603
+ "Par conséquent, Advanced Ads ignore les placements injecté sur des pages non "
1604
+ "singulière et en dehors de la boucle. Cependant, cela peut poser des "
1605
+ "problèmes avec certains thèmes. Vous pouvez activer cette option si vous ne "
1606
+ "voyez pas de pubs ou si vous désirez activer les injections de pub sur les "
1607
+ "pages darchives ceci À VOS PROPRE RISQUES."
1608
+
1609
+ #: admin/includes/class-settings.php:297
1610
+ msgid ""
1611
+ "Please check your post content. A priority of 10 and below might cause "
1612
+ "issues (wpautop function might run twice)."
1613
+ msgstr ""
1614
+ "Veuillez vérifier le contenu de votre article. Une priorité de 10 et moins "
1615
+ "pourrait causer des problèmes (la fonction « wpautop » pourrait s’exécuter "
1616
+ "deux fois)."
1617
+
1618
+ #: admin/includes/class-settings.php:299
1619
+ msgid ""
1620
+ "Play with this value in order to change the priority of the injected ads "
1621
+ "compared to other auto injected elements in the post content."
1622
+ msgstr ""
1623
+ "Jouer avec cette valeur pour modifier la priorité des publicités injectées "
1624
+ "par rapport aux autres éléments automatiquement injecté dans le contenu de "
1625
+ "l’article."
1626
+
1627
+ #: admin/includes/class-settings.php:313
1628
+ msgid ""
1629
+ "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
1630
+ "impressions for bots when using the <a href=\"%s\" target=\"_blank\">"
1631
+ "Tracking Add-On</a>."
1632
+ msgstr ""
1633
+ "Cacher les pubs des moteurs de recherche, des robots et des agents "
1634
+ "utilisateurs vide. Empêche également le comptage des impressions pour les "
1635
+ "robots lorsque vous utilisez l’ <a href=\"%s\" target=\"_blank\">Tracking "
1636
+ "Add-On</a>."
1637
+
1638
+ #: admin/includes/class-settings.php:314
1639
+ msgid ""
1640
+ "Disabling this option only makes sense if your ads contain content you want "
1641
+ "to display to bots (like search engines) or your site is cached and bots "
1642
+ "could create a cached version without the ads."
1643
+ msgstr ""
1644
+ "La désactivation de cette option n’a de sens que si vos pubs contiennent un "
1645
+ "contenu à afficher aux robots (comme les moteurs de recherche) ou votre site "
1646
+ "est mis en cache et les robots pourraient créer une version mise en cache "
1647
+ "sans les publicités."
1648
+
1649
+ #: admin/includes/class-settings.php:327
1650
+ msgid ""
1651
+ "Disable internal notices like tips, tutorials, email newsletters and update "
1652
+ "notices. Disabling notices is recommended if you run multiple blogs with "
1653
+ "Advanced Ads already."
1654
+ msgstr ""
1655
+ "Désactiver les avis internes comme les conseils, les tutoriels, les "
1656
+ "newsletters et les avis de mise à jour. La désactivation des avis est "
1657
+ "recommandé si vous exécutez déjà plusieurs blogs (multi-sites) avec Advanced "
1658
+ "Ads."
1659
+
1660
+ #: admin/includes/class-settings.php:344
1661
+ msgid ""
1662
+ "Prefix of class or id attributes in the frontend. Change it if you don’t "
1663
+ "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
1664
+ "need to <strong>rewrite css rules afterwards</strong>."
1665
+ msgstr ""
1666
+ "Préfixe de classe ou d’attributs d’Identifiant au niveau du Frontend. "
1667
+ "Changez-le si vous ne voulez pas que les <strong>bloqueurs de "
1668
+ "publicité</strong> marque ces blocs comme pubs.<br>Vous devrez peut-être "
1669
+ "<strong>réécrire les règles css par la suite</strong>."
1670
+
1671
+ #: admin/includes/class-settings.php:365
1672
+ msgid ""
1673
+ "Remove the ID attribute from widgets in order to not make them an easy "
1674
+ "target of ad blockers."
1675
+ msgstr ""
1676
+ "Supprimer l’attribut ID des widgets pour ne pas qu’ils soient une cible "
1677
+ "facile des bloqueurs de publicité."
1678
+
1679
+ #: admin/includes/class-settings.php:368
1680
+ msgid ""
1681
+ "If checked, the Advanced Ads Widget will not work with the fixed option of "
1682
+ "the <strong>Q2W3 Fixed Widget</strong> plugin."
1683
+ msgstr ""
1684
+ "Si cochée, lAvanced Ads Widget ne fonctionnera pas avec l’option fixe du "
1685
+ "plugin <strong>Q2W3 Fixed Widget</strong> ."
1686
+
1687
+ #: admin/includes/class-settings.php:390
1688
+ msgid "Allow editors to also manage and publish ads."
1689
+ msgstr "Permettre aussi aux éditeurs de gérer et publier des pubs."
1690
+
1691
+ #: admin/includes/class-settings.php:391
1692
+ msgid ""
1693
+ "You can assign different ad-related roles on a user basis with <a "
1694
+ "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1695
+ msgstr ""
1696
+ "Vous pouvez assigner différents rôles liés à la pub sur une base "
1697
+ "d’utilisateur avec <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1698
+
1699
+ #: admin/includes/notices.php:9
1700
+ msgid ""
1701
+ "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1702
+ "Steps</a>."
1703
+ msgstr ""
1704
+ "Advanced Ads installé avec succès. Jetez un oeil sur les <a href=\"%s\">"
1705
+ "Premières étapes</a>."
1706
+
1707
+ #: admin/includes/notices.php:15
1708
+ msgid ""
1709
+ "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1710
+ "receive the first steps via email?"
1711
+ msgstr ""
1712
+ "Merci d’activer <strong>Advanced Ads</strong>. Souhaitez-vous recevoir les "
1713
+ "premières étapes par e-mail?"
1714
+
1715
+ #: admin/includes/notices.php:16
1716
+ msgid "Yes, send it"
1717
+ msgstr "Oui, envoyez"
1718
+
1719
+ #: admin/includes/notices.php:22
1720
+ msgid ""
1721
+ "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1722
+ "<strong>2 free add-ons</strong> for joining the newsletter."
1723
+ msgstr ""
1724
+ "Merci d’utiliser <strong>Advanced Ads</strong>. Restez informé et recevez "
1725
+ "<strong>2 Add-ons gratuits</strong> en vous inscrivant à la lettre "
1726
+ "d’information."
1727
+
1728
+ #: admin/includes/notices.php:23
1729
+ msgid "Add me now"
1730
+ msgstr "Ajouter moi maintenant"
1731
+
1732
+ #: admin/includes/notices.php:29
1733
+ msgid ""
1734
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1735
+ "and Advanced Ads from my dedicated newsletter."
1736
+ msgstr ""
1737
+ "En savoir plus sur comment et <strong>combien vous pouvez gagner avec "
1738
+ "AdSense</strong> et Advanced Ads via la newsletter dédiée."
1739
+
1740
+ #: admin/includes/notices.php:41
1741
+ msgid ""
1742
+ "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1743
+ "missing</strong>."
1744
+ msgstr ""
1745
+ "Une ou plusieurs clés de licence pour des <strong>Advanced Ads add-ons sont "
1746
+ "manquant ou incorrect</strong>."
1747
+
1748
+ #: admin/includes/notices.php:41
1749
+ msgid "Please add valid license keys <a href=\"%s\">here</a>."
1750
+ msgstr ""
1751
+ "S’il vous plaît ajoutez des clés de licences valides <a href=\"%s\">ici</a>."
1752
+
1753
+ #: admin/includes/notices.php:47
1754
+ msgid ""
1755
+ "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1756
+ "soon</strong>. Don’t risk to lose support and updates and renew your license "
1757
+ "before it expires with a significant discount on <a href=\"%s\" "
1758
+ "target=\"_blank\">the add-on page</a>."
1759
+ msgstr ""
1760
+ "Une ou plusieurs licences pour vos <strong>Advanced Ads Add-ons arrivent "
1761
+ "bientôt à expiration</strong>. Ne risquez pas de perdre le support et mises "
1762
+ "à jour et renouveler votre licence avant sa date d’expiration avec un rabais "
1763
+ "significatif sur <a href=\"%s\" target=\"_blank\">la page Add-on</a>."
1764
+
1765
+ #: admin/includes/notices.php:53
1766
+ msgid ""
1767
+ "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1768
+ "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1769
+ "information."
1770
+ msgstr ""
1771
+ "Licence(s) <strong>Advanced Ads</strong> expiré(es). Le support et les mises "
1772
+ "à jour sont désactivées. S’il vous plaît, visitez <a href=\"%s\">la page de "
1773
+ "licence</a> pour plus d’informations."
1774
+
1775
+ #: admin/includes/notices.php:59
1776
+ msgid ""
1777
+ "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1778
+ "review-image\"/>You are using <strong>Advanced Ads</strong> for some time "
1779
+ "now. Thank you! If you need my help then please visit the <a href=\"%1$s\" "
1780
+ "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
1781
+ "Review</h3><p>If you share my passion and find Advanced Ads useful then "
1782
+ "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
1783
+ "org</a>.</p><p><em>Thomas</em>"
1784
+ msgstr ""
1785
+ "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1786
+ "review-image\"/>Vous utilisez <strong>Advanced Ads</strong> depuis quelques "
1787
+ "temps maintenant. Je vous en remercie! Si vous avez besoin d’aide, visitez "
1788
+ "<a href=\"%1$s\" target=\"_blank\">la page de support</a> et obtenez une "
1789
+ "aide gratuite.</p><h3>Merci pour votre avis</h3><p>Si vous partagez ma "
1790
+ "passion et trouvez Advanced Ads utile, alors s’il vous plaît <a "
1791
+ "href=\"%2$s\" target=\"_blank\">laissez un avis de 5 étoiles sur wordpress."
1792
+ "org</a>.</p><p><em>Thomas</em>"
1793
+
1794
+ #: admin/includes/notices.php:65
1795
+ msgid ""
1796
+ "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1797
+ "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1798
+ "disguise."
1799
+ msgstr ""
1800
+ "Certains éléments (assets) ont été changés. S’il vous plaît ,<strong>"
1801
+ "reconstruisez le dossier des éléments (assets)</strong> dans les <a "
1802
+ "href=« %s »>Paramètres Advanced Ads</a> pour mettre à jour la dissimulation "
1803
+ "vis-à-vis des bloqueurs de publicités."
1804
+
1805
+ #: admin/includes/shortcode-creator-l10n.php:10
1806
+ msgctxt "shortcode creator"
1807
+ msgid "Add an ad"
1808
+ msgstr "Ajouter une pub"
1809
+
1810
+ #: admin/includes/shortcode-creator-l10n.php:11
1811
+ msgctxt "shortcode creator"
1812
+ msgid "Add shortcode"
1813
+ msgstr "Ajouter un shortcode"
1814
+
1815
+ #: admin/includes/shortcode-creator-l10n.php:12
1816
+ msgctxt "shortcode creator"
1817
+ msgid "Cancel"
1818
+ msgstr "Annuler"
1819
+
1820
+ #: admin/views/ad-display-metabox.php:6
1821
+ msgid "Set Display Conditions to allow or hide the ad on specific pages."
1822
+ msgstr ""
1823
+ "Fixer les Conditions d’affichage afin d’autoriser ou de cacher la publicité "
1824
+ "sur des pages spécifiques."
1825
+
1826
+ #: admin/views/ad-display-metabox.php:8
1827
+ #: admin/views/notices/jqueryui_error.php:2
1828
+ msgid ""
1829
+ "There might be a problem with layouts and scripts in your dashboard. Please "
1830
+ "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1831
+ msgstr ""
1832
+ "Il pourrait y avoir un problème avec les mises en page et les scripts dans "
1833
+ "votre tableau de bord. Veuillez consulter <a href=\"%s\" target=\"_blank\">"
1834
+ "cet article pour en savoir plus</a>."
1835
+
1836
+ #: admin/views/ad-display-metabox.php:66
1837
+ msgid "If you want to display the ad everywhere, don't do anything here. "
1838
+ msgstr "Si vous souhaitez afficher la publicité partout, ne faites rien ici. "
1839
+
1840
+ #: admin/views/ad-display-metabox.php:69 admin/views/ad-visitor-metabox.php:34
1841
+ msgid "New condition"
1842
+ msgstr "Nouvelle condition"
1843
+
1844
+ #: admin/views/ad-display-metabox.php:72 admin/views/ad-visitor-metabox.php:37
1845
+ msgid "-- choose a condition --"
1846
+ msgstr "—Choisissez une condition—"
1847
+
1848
+ #: admin/views/ad-display-metabox.php:77
1849
+ #: admin/views/ad-group-list-form-row.php:52
1850
+ #: admin/views/ad-visitor-metabox.php:42
1851
+ msgid "add"
1852
+ msgstr "ajouter"
1853
+
1854
+ #: admin/views/ad-group-edit.php:40
1855
+ msgid ""
1856
+ "An id-like string with only letters in lower case, numbers, and hyphens."
1857
+ msgstr ""
1858
+ "Une chaîne de caractères (à l’image des identifiants) avec seulement des "
1859
+ "lettres en minuscules, des chiffres et des traits d’Union."
1860
+
1861
+ #: admin/views/ad-group-edit.php:57
1862
+ msgid "Create new Ad Group"
1863
+ msgstr "Créer un nouveau groupe"
1864
+
1865
+ #: admin/views/ad-group-edit.php:59
1866
+ msgid "Update"
1867
+ msgstr "Mettre à jour"
1868
+
1869
+ #: admin/views/ad-group-list-form-row.php:3 admin/views/placements.php:25
1870
+ msgid "Name"
1871
+ msgstr "Nom"
1872
+
1873
+ #: admin/views/ad-group-list-form-row.php:5
1874
+ msgid "Description"
1875
+ msgstr "Description"
1876
+
1877
+ #: admin/views/ad-group-list-form-row.php:7 admin/views/placements.php:24
1878
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:47
1879
+ msgid "Type"
1880
+ msgstr "Type"
1881
+
1882
+ #: admin/views/ad-group-list-form-row.php:16
1883
+ msgid "Number of visible ads"
1884
+ msgstr "Nombre de pubs visibles"
1885
+
1886
+ #: admin/views/ad-group-list-form-row.php:22
1887
+ msgctxt "option to display all ads in an ad groups"
1888
+ msgid "all"
1889
+ msgstr "toutes"
1890
+
1891
+ #: admin/views/ad-group-list-form-row.php:25
1892
+ msgid "Number of ads that are visible at the same time"
1893
+ msgstr "Nombre de pubs qui sont visibles en même temps"
1894
+
1895
+ #: admin/views/ad-group-list-form-row.php:32
1896
+ msgid "weight"
1897
+ msgstr "poids"
1898
+
1899
+ #: admin/views/ad-group-list-header.php:4
1900
+ msgid "Details"
1901
+ msgstr " Détails"
1902
+
1903
+ #: admin/views/ad-group-list-row.php:8 admin/views/ad-group.php:63
1904
+ #: admin/views/ad-info.php:3 admin/views/placements.php:61
1905
+ msgid "shortcode"
1906
+ msgstr "shortcode"
1907
+
1908
+ #: admin/views/ad-group-list-row.php:11 admin/views/ad-group.php:66
1909
+ #: admin/views/placements.php:64
1910
+ msgid "template"
1911
+ msgstr "modèle"
1912
+
1913
+ #: admin/views/ad-group-list-row.php:14
1914
+ msgid ""
1915
+ "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1916
+ "manual</a>."
1917
+ msgstr ""
1918
+ "En savoir plus sur l’utilisation de groupes dans le <a href=\"%s\" "
1919
+ "target=\"_blank\">Manuel</a>."
1920
+
1921
+ #: admin/views/ad-group-list-row.php:19
1922
+ msgid "Type: %s"
1923
+ msgstr "Type: %s"
1924
+
1925
+ #: admin/views/ad-group-list-row.php:20
1926
+ msgid "ID: %s"
1927
+ msgstr "ID: %s"
1928
+
1929
+ #: admin/views/ad-group.php:18
1930
+ msgid "Ad Groups successfully updated"
1931
+ msgstr "Groupes de pubs mis à jour avec succès"
1932
+
1933
+ #: admin/views/ad-group.php:46
1934
+ msgid "Search results for &#8220;%s&#8221;"
1935
+ msgstr "Résultats de recherche pour &#8220;%s&#8221;"
1936
+
1937
+ #: admin/views/ad-group.php:52
1938
+ msgid ""
1939
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
1940
+ "display random ads in the frontend or run split tests, but also just for "
1941
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1942
+ "ad can belong to multiple ad groups."
1943
+ msgstr ""
1944
+ "Les groupes de pubs sont une méthode très flexible pour regrouper les pubs. "
1945
+ "Vous pouvez les utiliser pour afficher des pubs au hasard au niveau du "
1946
+ "Frontend ou effectuer des tests de versions, mais aussi juste à titre "
1947
+ "d’informatif. Non seulement un groupes de pubs peut avoir des pubs multiples,"
1948
+ " mais une pub peut aussi appartenir à plusieurs groupes de pubs."
1949
+
1950
+ #: admin/views/ad-group.php:60
1951
+ msgid "How to display an Ad Group?"
1952
+ msgstr "Comment afficher un groupe de pubs ?"
1953
+
1954
+ #: admin/views/ad-group.php:62
1955
+ msgid ""
1956
+ "Examples on how to display an ad group? Find more help and examples in the "
1957
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
1958
+ msgstr ""
1959
+ "Exemples sur la façon d’afficher un groupe de pubs? Trouver plus d’aide et "
1960
+ "des exemples dans le <a href=\"%s\" target=\"_blank\">Manuel</a>"
1961
+
1962
+ #: admin/views/ad-group.php:64
1963
+ msgid "To display an ad group with the ID 6 in content fields"
1964
+ msgstr "Pour afficher un groupe de pubs avec l’ID 6 dans les champs de contenu"
1965
+
1966
+ #: admin/views/ad-group.php:67
1967
+ msgid "To display an ad group with the ID 6 in template files"
1968
+ msgstr "Pour afficher un groupe de pubs avec l’ID 6 dans les fichiers modèles"
1969
+
1970
+ #: admin/views/ad-group.php:87
1971
+ msgid "Update Groups"
1972
+ msgstr "Mettre à jour les Groupes"
1973
+
1974
+ #: admin/views/ad-info-top.php:54
1975
+ msgid ""
1976
+ "Learn more about your choices to display an ad in the <a href=\"%s\" "
1977
+ "target=\"_blank\">manual</a>."
1978
+ msgstr ""
1979
+ "En savoir plus sur les choix pour afficher une pub dans le <a href=\"%s\" "
1980
+ "target=\"_blank\">Manuel</a>."
1981
+
1982
+ #: admin/views/ad-info.php:2
1983
+ msgid "Ad Id: %s"
1984
+ msgstr "Id de la pub: %s"
1985
+
1986
+ #: admin/views/ad-info.php:5
1987
+ msgid "theme function"
1988
+ msgstr "fonction du thème"
1989
+
1990
+ #: admin/views/ad-info.php:7
1991
+ msgid ""
1992
+ "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1993
+ msgstr ""
1994
+ "Trouver plus d’options d’affichage dans le <a href=\"%s\" target=\"_blank\">"
1995
+ "Manuel</a>."
1996
+
1997
+ #: admin/views/ad-info.php:11
1998
+ msgid "click to change"
1999
+ msgstr "Cliquez pour modifier"
2000
+
2001
+ #: admin/views/ad-info.php:15
2002
+ msgid "Add a description"
2003
+ msgstr "Ajoutez une description"
2004
+
2005
+ #: admin/views/ad-info.php:18
2006
+ msgid "Internal description or your own notes about this ad."
2007
+ msgstr "Description interne ou vos propres notes sur cette pub."
2008
+
2009
+ #: admin/views/ad-list-filters.php:2
2010
+ msgid "all ad types"
2011
+ msgstr "tous les types de pub"
2012
+
2013
+ #: admin/views/ad-list-filters.php:5
2014
+ msgid "all ad sizes"
2015
+ msgstr "toutes les tailles de pub"
2016
+
2017
+ #: admin/views/ad-list-filters.php:8
2018
+ msgid "all ad dates"
2019
+ msgstr "toutes les dates de pub"
2020
+
2021
+ #: admin/views/ad-list-filters.php:16
2022
+ msgid "all ad groups"
2023
+ msgstr "tous les groupes de pubs"
2024
+
2025
+ #: admin/views/ad-main-metabox.php:3
2026
+ msgid "No ad types defined"
2027
+ msgstr "Aucun type de pub définies"
2028
+
2029
+ #: admin/views/ad-output-metabox.php:1
2030
+ msgid "Everything connected to the ads layout and output."
2031
+ msgstr "Tout ce qui est lié à la l’agencement et à la sortie des pubs."
2032
+
2033
+ #: admin/views/ad-output-metabox.php:4
2034
+ msgid "Position"
2035
+ msgstr "Position"
2036
+
2037
+ #: admin/views/ad-output-metabox.php:6
2038
+ msgid "- default -"
2039
+ msgstr "- par défaut -"
2040
+
2041
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:54
2042
+ msgid "default"
2043
+ msgstr "défaut"
2044
+
2045
+ #: admin/views/ad-output-metabox.php:8
2046
+ msgid "left"
2047
+ msgstr "gauche"
2048
+
2049
+ #: admin/views/ad-output-metabox.php:11
2050
+ msgid "center"
2051
+ msgstr "centre"
2052
+
2053
+ #: admin/views/ad-output-metabox.php:14
2054
+ msgid "right"
2055
+ msgstr "droite"
2056
+
2057
+ #: admin/views/ad-output-metabox.php:18
2058
+ msgid ""
2059
+ "Check this if you don't want the following elements to float around the ad. "
2060
+ "(adds a clearfix)"
2061
+ msgstr ""
2062
+ "Cochez cette case si vous ne voulez pas que les éléments suivants flottent "
2063
+ "autour de la pub. (ajoute un clearfix)"
2064
+
2065
+ #: admin/views/ad-output-metabox.php:22
2066
+ msgid "Margin"
2067
+ msgstr "Marge"
2068
+
2069
+ #: admin/views/ad-output-metabox.php:24
2070
+ msgid "top:"
2071
+ msgstr "haut:"
2072
+
2073
+ #: admin/views/ad-output-metabox.php:26
2074
+ msgid "right:"
2075
+ msgstr "droite:"
2076
+
2077
+ #: admin/views/ad-output-metabox.php:28
2078
+ msgid "bottom:"
2079
+ msgstr "bas:"
2080
+
2081
+ #: admin/views/ad-output-metabox.php:30
2082
+ msgid "left:"
2083
+ msgstr "gauche:"
2084
+
2085
+ #: admin/views/ad-output-metabox.php:32
2086
+ msgid "tip: use this to add a margin around the ad"
2087
+ msgstr "Astuce : utilisez cela pour ajouter une marge autour de la pub"
2088
+
2089
+ #: admin/views/ad-output-metabox.php:35
2090
+ msgid "container ID"
2091
+ msgstr "ID de conteneur"
2092
+
2093
+ #: admin/views/ad-output-metabox.php:38
2094
+ msgid "Specify the id of the ad container. Leave blank for random or no id."
2095
+ msgstr ""
2096
+ "Spécifiez l’ID du conteneur de pub. Laissez vide pour aléatoire ou sans "
2097
+ "identité."
2098
+
2099
+ #: admin/views/ad-output-metabox.php:41
2100
+ msgid "container classes"
2101
+ msgstr "classes de conteneur"
2102
+
2103
+ #: admin/views/ad-parameters-size.php:1
2104
+ msgid "size"
2105
+ msgstr "Taille"
2106
+
2107
+ #: admin/views/ad-parameters-size.php:3
2108
+ msgid "width"
2109
+ msgstr "largeur"
2110
+
2111
+ #: admin/views/ad-parameters-size.php:4
2112
+ msgid "height"
2113
+ msgstr "hauteur"
2114
+
2115
+ #: admin/views/ad-submitbox-meta.php:6
2116
+ msgid "Set expiry date"
2117
+ msgstr "Date d’expiration"
2118
+
2119
+ #: admin/views/ad-submitbox-meta.php:16
2120
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2121
+ msgid "%1$s-%2$s"
2122
+ msgstr "%1$s-%2$s"
2123
+
2124
+ #: admin/views/ad-submitbox-meta.php:29
2125
+ msgctxt ""
2126
+ "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
2127
+ msgid "%1$s %2$s, %3$s @ %4$s %5$s"
2128
+ msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
2129
+
2130
+ #: admin/views/ad-visitor-metabox.php:4
2131
+ msgid ""
2132
+ "Display conditions that are based on the user. Use with caution on cached "
2133
+ "websites."
2134
+ msgstr ""
2135
+ "Afficher les conditions qui sont basées sur l’utilisateur. Utilisez avec "
2136
+ "prudence sur les sites Web mis en cache."
2137
+
2138
+ #: admin/views/ad-visitor-metabox.php:28
2139
+ msgid ""
2140
+ "Visitor conditions limit the number of users who can see your ad. There is "
2141
+ "no need to set visitor conditions if you want all users to see the ad."
2142
+ msgstr ""
2143
+ "Les conditions de visiteur limitent le nombre d’utilisateurs qui peuvent "
2144
+ "voir votre pub. Il n’y a pas besoin de définir des conditions de visiteur si "
2145
+ "vous souhaitez que tous les utilisateurs voient cette pub."
2146
+
2147
+ #: admin/views/ad-visitor-metabox.php:30
2148
+ msgid ""
2149
+ "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
2150
+ "Pro</a> if dynamic features get cached."
2151
+ msgstr ""
2152
+ "Consultez la suppression du cache (cache-busting) dans <a href=\"%s\" "
2153
+ "target=\"_blank\">Advanced Ads Pro</a> si les fonctionnalités dynamiques "
2154
+ "sont mises en cache."
2155
+
2156
+ #: admin/views/ad-visitor-metabox.php:47
2157
+ msgid ""
2158
+ "Define the exact browser width for which an ad should be visible using the "
2159
+ "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
2160
+ msgstr ""
2161
+ "Définir la largeur exacte de navigateur pour lequel une pub doit être "
2162
+ "visible à l’aide du <a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
2163
+
2164
+ #: admin/views/ad-visitor-metabox.php:94
2165
+ msgid ""
2166
+ "The visitor conditions below are deprecated. Please use the new version of "
2167
+ "visitor conditions to replace it."
2168
+ msgstr ""
2169
+ "Les conditions des visiteurs ci-dessous sont obsolètes. S’il vous plaît "
2170
+ "utiliser la nouvelle version des conditions des visiteurs pour le remplacer."
2171
+
2172
+ #: admin/views/ad-visitor-metabox.php:100
2173
+ msgid "Display on all devices"
2174
+ msgstr "Afficher sur tous les appareils"
2175
+
2176
+ #: admin/views/ad-visitor-metabox.php:104
2177
+ msgid "only on mobile devices"
2178
+ msgstr "seulement sur les appareils mobiles"
2179
+
2180
+ #: admin/views/ad-visitor-metabox.php:108
2181
+ msgid "not on mobile devices"
2182
+ msgstr "pas sur les appareils mobiles"
2183
+
2184
+ #: admin/views/debug.php:6 admin/views/settings.php:49
2185
+ msgid "Debug Page"
2186
+ msgstr "Page de débogage"
2187
+
2188
+ #: admin/views/debug.php:7
2189
+ msgid "Work in progress"
2190
+ msgstr "Travail en cours"
2191
+
2192
+ #: admin/views/feedback_disable.php:3
2193
+ msgid "Thank you for helping to improve Advanced Ads."
2194
+ msgstr "Merci de nous aider à améliorer Advanced Ads."
2195
+
2196
+ #: admin/views/feedback_disable.php:4
2197
+ msgid ""
2198
+ "Your feedback will motivates me to work harder towards a professional ad "
2199
+ "management solution."
2200
+ msgstr ""
2201
+ "Vos commentaires vont me motiver à travailler plus fort vers une solution de "
2202
+ "gestion professionnelle de pubs."
2203
+
2204
+ #: admin/views/feedback_disable.php:5
2205
+ msgid "Why did you decide to disable Advanced Ads?"
2206
+ msgstr "Pourquoi avez-vous décidé de désactiver Advanced Ads?"
2207
+
2208
+ #: admin/views/feedback_disable.php:7
2209
+ msgid "I stopped showing ads on my site"
2210
+ msgstr "J’ai arrêté la diffusion de pubs sur mon site"
2211
+
2212
+ #: admin/views/feedback_disable.php:8
2213
+ msgid "I miss a feature or <a href=\"%s\">add-on</a>"
2214
+ msgstr "Il manque une fonctionnalité ou un <a href=\"%s\">Add-on</a>"
2215
+
2216
+ #: admin/views/feedback_disable.php:9
2217
+ msgid "I have a technical problem"
2218
+ msgstr "J’ai un problème technique"
2219
+
2220
+ #: admin/views/feedback_disable.php:10
2221
+ msgid "other reason"
2222
+ msgstr "autre raison"
2223
+
2224
+ #: admin/views/feedback_disable.php:12
2225
+ msgid "Please specify, if possible"
2226
+ msgstr "Veuillez préciser, si possible"
2227
+
2228
+ #: admin/views/feedback_disable.php:13
2229
+ msgid "What would be a reason to return to Advanced Ads?"
2230
+ msgstr "Quelle serait une raison de revenir à Advanced Ads?"
2231
+
2232
+ #: admin/views/intro.php:18
2233
+ msgid "5-Star Usability"
2234
+ msgstr "5 étoiles pour la facilité d’utilisation"
2235
+
2236
+ #: admin/views/intro.php:19
2237
+ msgid ""
2238
+ "Advanced Ads is powerful and easy to use, because it is build on WordPress "
2239
+ "standards. If you know how to publish a post then you know how to create an "
2240
+ "ad."
2241
+ msgstr ""
2242
+ "Advanced Ads est puissant et facile à utiliser, car il est construit sur les "
2243
+ "normes et standards de WordPress. Si vous savez comment faire pour publier "
2244
+ "un billet, alors vous savez comment créer une pub."
2245
+
2246
+ #: admin/views/intro.php:23
2247
+ msgid "5-Star Support"
2248
+ msgstr "5 étoiles pour le support"
2249
+
2250
+ #: admin/views/intro.php:24
2251
+ msgid ""
2252
+ "I promise you the best supported ad management plugin for WordPress. Whether "
2253
+ "a pro user or not, you can reach me easily through the support page, in the "
2254
+ "chat on the homepage or replying to a newsletter."
2255
+ msgstr ""
2256
+ "Je vous promets le plugin de gestion de pubs pour WordPress avec le meilleur "
2257
+ "support. Utilisateur pro ou pas, vous pouvez me joindre facilement par le "
2258
+ "biais de la page de support, dans le chat sur la page d’accueil ou en "
2259
+ "réponse à une newsletter."
2260
+
2261
+ #: admin/views/intro.php:28
2262
+ msgid "5-Star Experience"
2263
+ msgstr "5 étoiles pour lexpérience"
2264
+
2265
+ #: admin/views/intro.php:29
2266
+ msgid ""
2267
+ "Advanced Ads was built out of my own experience. I am personally using it to "
2268
+ "serve millions of ad impressions per month and constantly test new ways to "
2269
+ "optimize ad settings."
2270
+ msgstr ""
2271
+ "Advanced Ads a été conçu de ma propre expérience. Je l’utilise "
2272
+ "personnellement pour servir des millions d’impressions de pubs par mois et "
2273
+ "sans cesse tester de nouvelles façons d’optimiser les paramètres des pubs."
2274
+
2275
+ #: admin/views/intro.php:61
2276
+ msgid "Next Steps"
2277
+ msgstr "Étapes suivantes"
2278
+
2279
+ #: admin/views/intro.php:64
2280
+ msgid "Subscribe to the Mailing List"
2281
+ msgstr "Inscription à la liste de diffusion"
2282
+
2283
+ #: admin/views/intro.php:65
2284
+ msgid "Subscribe to the newsletter and instantly"
2285
+ msgstr "S’abonner à la newsletter et instantanément"
2286
+
2287
+ #: admin/views/intro.php:67
2288
+ msgid "get 2 free add-ons."
2289
+ msgstr "obtenez 2 Add-ons gratuits."
2290
+
2291
+ #: admin/views/intro.php:68
2292
+ msgid "reply to the welcome message with a question."
2293
+ msgstr "répondre au message d’accueil par une question."
2294
+
2295
+ #: admin/views/intro.php:69
2296
+ msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
2297
+ msgstr "s’abonner à un groupe dédié pour le tutoriel ou astuces sur AdSense."
2298
+
2299
+ #: admin/views/intro.php:79
2300
+ msgid ""
2301
+ "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a>"
2302
+ " or watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> "
2303
+ "first."
2304
+ msgstr ""
2305
+ "Se lancer en créant une pub <a href=\"%1$s\" target=\"blank\">dès "
2306
+ "maintenant</a> ou regardez en premier le <a href=\"%2$s\" target=\"blank\">"
2307
+ "tutoriel vidéo (03:29 min)</a>."
2308
+
2309
+ #: admin/views/intro.php:82
2310
+ msgid "Display your ad"
2311
+ msgstr "Affichez votre pub"
2312
+
2313
+ #: admin/views/intro.php:83
2314
+ msgid ""
2315
+ "You can display your ad using a shortcode, widget or one of the powerful "
2316
+ "placements. Placements help you to inject ads into the content or place them "
2317
+ "on your site without coding."
2318
+ msgstr ""
2319
+ "Vous pouvez afficher votre pub à l’aide d’un shortcode, d’un widget ou de "
2320
+ "l’un des placements disponibles très efficaces. Les placements vous aideront "
2321
+ "à injecter des pubs dans le contenu ou de les placer sur votre sites et cela "
2322
+ "sans codage."
2323
+
2324
+ #: admin/views/intro.php:85
2325
+ msgid "List of all available placements"
2326
+ msgstr "Liste de tous les placements disponibles"
2327
+
2328
+ #: admin/views/intro.php:86
2329
+ msgid "Create a placement"
2330
+ msgstr "Créer un placement"
2331
+
2332
+ #: admin/views/placements.php:8
2333
+ msgid ""
2334
+ "Couldn’t create the new placement. Please check your form field and whether "
2335
+ "the name is already in use."
2336
+ msgstr ""
2337
+ "Impossible de créer le nouveau placement. S’il vous plaît vérifier votre "
2338
+ "champ de formulaire ou si le nom est déjà utilisé."
2339
+
2340
+ #: admin/views/placements.php:10
2341
+ msgid "Placements updated"
2342
+ msgstr "Mise à jour des placements"
2343
+
2344
+ #: admin/views/placements.php:15
2345
+ msgid ""
2346
+ "Placements are physically places in your theme and posts. You can use them "
2347
+ "if you plan to change ads and ad groups on the same place without the need "
2348
+ "to change your templates."
2349
+ msgstr ""
2350
+ "Les placements sont physiquement positionnés dans votre thème et vos "
2351
+ "articles. Vous pouvez les utiliser si vous envisagez de modifier les pubs et "
2352
+ "les groupes de pubs sur une même position sans avoir besoin de changer vos "
2353
+ "modèles."
2354
+
2355
+ #: admin/views/placements.php:16
2356
+ msgid ""
2357
+ "See also the manual for more information on <a href=\"%s\">placements</a>."
2358
+ msgstr ""
2359
+ "Voir aussi le manuel pour plus d’informations sur les <a href=\"%s\">"
2360
+ "placements</a>."
2361
+
2362
+ #: admin/views/placements.php:26 modules/import-export/views/page.php:26
2363
+ msgid "Options"
2364
+ msgstr "Options"
2365
+
2366
+ #: admin/views/placements.php:44
2367
+ msgid ""
2368
+ "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
2369
+ "check if the responsible add-on is activated."
2370
+ msgstr ""
2371
+ "Type de placement \"%s\" est absent et a été remis à zéro « par défaut ».<br>"
2372
+ "S’il vous plaît, vérifiez si lAdd-on responsable de cela est activé."
2373
+
2374
+ #: admin/views/placements.php:60
2375
+ msgid "show usage"
2376
+ msgstr "montrer son utilisation"
2377
+
2378
+ #: admin/views/placements.php:72
2379
+ msgid "Item"
2380
+ msgstr "élément"
2381
+
2382
+ #: admin/views/placements.php:74 admin/views/placements.php:180
2383
+ msgid "--not selected--"
2384
+ msgstr "--non sélectionné--"
2385
+
2386
+ #: admin/views/placements.php:94
2387
+ msgid "Inject"
2388
+ msgstr "Injecter"
2389
+
2390
+ #: admin/views/placements.php:95
2391
+ msgid "after"
2392
+ msgstr "après"
2393
+
2394
+ #: admin/views/placements.php:95
2395
+ msgid "before"
2396
+ msgstr "avant"
2397
+
2398
+ #: admin/views/placements.php:115
2399
+ msgid "start counting from bottom"
2400
+ msgstr "commencer à compter à partir du bas"
2401
+
2402
+ #: admin/views/placements.php:118
2403
+ msgid "Important Notice"
2404
+ msgstr "Remarque importante"
2405
+
2406
+ #: admin/views/placements.php:118
2407
+ msgid ""
2408
+ "Your server is missing an extension. This might break the content injection."
2409
+ "<br/>Ignore this warning if everything works fine or else ask your hosting "
2410
+ "provider to enable <em>mbstring</em>."
2411
+ msgstr ""
2412
+ "Une extension est manquante sur votre serveur. Cela pourrait casser "
2413
+ "l’injection de contenu.<br>Ignorer cet avertissement si tout fonctionne très "
2414
+ "bien, ou bien demander à votre d’hébergeur d’activer <em>l’extension "
2415
+ "mbstring</em>."
2416
+
2417
+ #: admin/views/placements.php:128
2418
+ msgid "advanced options"
2419
+ msgstr "options avancées"
2420
+
2421
+ #: admin/views/placements.php:137
2422
+ msgctxt "checkbox to remove placement"
2423
+ msgid "delete"
2424
+ msgstr "supprimer"
2425
+
2426
+ #: admin/views/placements.php:143
2427
+ msgid "Save Placements"
2428
+ msgstr "Enregistrer les placements"
2429
+
2430
+ #: admin/views/placements.php:145
2431
+ msgid "Create a new placement"
2432
+ msgstr "Créer un nouveau placement"
2433
+
2434
+ #: admin/views/placements.php:146
2435
+ msgid "New Placement"
2436
+ msgstr "Nouveau Placement"
2437
+
2438
+ #: admin/views/placements.php:153
2439
+ msgid "Choose a placement type"
2440
+ msgstr "Choisissez un type de placement"
2441
+
2442
+ #: admin/views/placements.php:154
2443
+ msgid ""
2444
+ "Placement types define where the ad is going to be displayed. Learn more "
2445
+ "about the different types from the <a href=\"%s\">manual</a>"
2446
+ msgstr ""
2447
+ "Les types de placement défini la où publicité va s’afficher. En savoir plus "
2448
+ "sur les différents types de placement dans <a href=\"%s\">manuelle</a>"
2449
+
2450
+ #: admin/views/placements.php:171
2451
+ msgid "Please select a placement type."
2452
+ msgstr "Veuillez sélectionner un type de placement."
2453
+
2454
+ #: admin/views/placements.php:173
2455
+ msgid "Choose a Name"
2456
+ msgstr "Choisissez un nom"
2457
+
2458
+ #: admin/views/placements.php:174
2459
+ msgid ""
2460
+ "The name of the placement is only visible to you. Tip: choose a descriptive "
2461
+ "one, e.g. <em>Below Post Headline</em>."
2462
+ msgstr ""
2463
+ "Le nom du placement est uniquement visible par vous. Conseil: choisir un "
2464
+ "descriptif, par exemple <em>Sous le titre des articles</em>."
2465
+
2466
+ #: admin/views/placements.php:175
2467
+ msgid "Placement Name"
2468
+ msgstr "Nom de placement"
2469
+
2470
+ #: admin/views/placements.php:176
2471
+ msgid "Please enter a name for your placement."
2472
+ msgstr "Entrez un nom pour votre placement."
2473
+
2474
+ #: admin/views/placements.php:177
2475
+ msgid "Choose the Ad or Group"
2476
+ msgstr "Choisissez la pub ou le groupe"
2477
+
2478
+ #: admin/views/placements.php:178
2479
+ msgid "The ad or group that should be displayed."
2480
+ msgstr "Pub ou groupe qui doit être affichée."
2481
+
2482
+ #: admin/views/placements.php:197
2483
+ msgid "Save New Placement"
2484
+ msgstr "Enregistrez le nouveau placement"
2485
+
2486
+ #: admin/views/post-ad-settings-metabox.php:3
2487
+ msgid "Disable ads on this page"
2488
+ msgstr "Désactiver les pubs sur cette page"
2489
+
2490
+ #: admin/views/setting-license.php:5
2491
+ msgid "Your license expired."
2492
+ msgstr "Votre licence est expirée."
2493
+
2494
+ #: admin/views/setting-license.php:18
2495
+ msgid "(%d days left)"
2496
+ msgstr "(%d jours restants)"
2497
+
2498
+ #: admin/views/setting-license.php:22
2499
+ msgid "License key"
2500
+ msgstr "Clef de la licence"
2501
+
2502
+ #: admin/views/setting-license.php:43
2503
+ msgid "License key invalid"
2504
+ msgstr "Clé de licence invalide"
2505
+
2506
+ #: admin/views/setting-license.php:46
2507
+ msgid "active"
2508
+ msgstr "active"
2509
+
2510
+ #: admin/views/settings-disable-ads.php:3
2511
+ msgid "Disable all ads in frontend"
2512
+ msgstr "Désactiver toutes les pubs sur le Frontend"
2513
+
2514
+ #: admin/views/settings-disable-ads.php:4
2515
+ msgid ""
2516
+ "Use this option to disable all ads in the frontend, but still be able to use "
2517
+ "the plugin."
2518
+ msgstr ""
2519
+ "Utilisez cette option pour désactiver toutes les pubs sur Frontend, mais "
2520
+ "toujours être en mesure d’utiliser le plugin."
2521
+
2522
+ #: admin/views/settings-disable-ads.php:8
2523
+ msgid "Disable ads on 404 error pages"
2524
+ msgstr "Désactiver les pubs sur les pages d’erreur 404"
2525
+
2526
+ #: admin/views/settings-disable-ads.php:12
2527
+ msgid "Disable ads on non-singular pages"
2528
+ msgstr "Désactiver les pubs sur les pages non singulière"
2529
+
2530
+ #: admin/views/settings-disable-ads.php:13
2531
+ msgid ""
2532
+ "e.g. archive pages like categories, tags, authors, front page (if a list)"
2533
+ msgstr ""
2534
+ "par exemple les pages d’archives comme catégories, mots-clés, auteurs, page "
2535
+ "de couverture (si une liste)"
2536
+
2537
+ #: admin/views/settings-disable-ads.php:16
2538
+ msgid "Disable ads on secondary queries"
2539
+ msgstr "Désactiver les pubs sur les requêtes secondaires"
2540
+
2541
+ #: admin/views/settings-disable-ads.php:17
2542
+ msgid ""
2543
+ "Secondary queries are custom queries of posts outside the main query of a "
2544
+ "page. Try this option if you see ads injected on places where they shouldn’t "
2545
+ "appear."
2546
+ msgstr ""
2547
+ "Les requêtes secondaires sont des requêtes personnalisées d’articles à "
2548
+ "l’extérieur de la requête principale d’une page. Essayez cette option si "
2549
+ "vous voyez des pubs injectées à des endroits où elles ne devraient pas "
2550
+ "apparaître."
2551
+
2552
+ #: admin/views/settings.php:36
2553
+ msgid "Save settings on this page"
2554
+ msgstr "Enregistrer les paramètres sur cette page"
2555
+
2556
+ #: admin/views/settings.php:50
2557
+ msgid "Welcome Page"
2558
+ msgstr "Page de Bienvenue"
2559
+
2560
+ #: admin/views/settings.php:51
2561
+ msgid "Advanced Ads on WordPress.org"
2562
+ msgstr "Advanced Ads sur WordPress.org"
2563
+
2564
+ #: admin/views/settings.php:51
2565
+ msgid "Advanced Ads on wp.org"
2566
+ msgstr "Advanced Ads sur wp.org"
2567
+
2568
+ #: admin/views/settings.php:52
2569
+ msgid "the company behind Advanced Ads"
2570
+ msgstr "la compagnie derrière Advanced Ads"
2571
+
2572
+ #: admin/views/support.php:8
2573
+ msgid "Possible Issues"
2574
+ msgstr "Problèmes possibles"
2575
+
2576
+ #: admin/views/support.php:9
2577
+ msgid ""
2578
+ "Please fix the red highlighted issues on this page or try to understand "
2579
+ "their consequences before contacting support."
2580
+ msgstr ""
2581
+ "S’il vous plaît, réglez les problèmes (surligné en rouge) sur cette page ou "
2582
+ "essayer de comprendre leurs conséquences avant de contacter notre assistance."
2583
+
2584
+ #: admin/views/support.php:13
2585
+ msgid ""
2586
+ "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2587
+ "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2588
+ "Please ask your hosting provider for more information."
2589
+ msgstr ""
2590
+ "Votre <strong>version de PHP (%s) est trop ancienne</strong>. Pubs avancés "
2591
+ "est construit pour PHP 5.3 et supérieur. Il pourrait fonctionner, mais mise "
2592
+ "à jour de PHP est vivement recommandé. Demandez à votre hébergeur pour plus "
2593
+ "d’informations."
2594
+
2595
+ #: admin/views/support.php:16
2596
+ msgid ""
2597
+ "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2598
+ "rotation or visitor conditions might not work properly. Use the cache-"
2599
+ "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to "
2600
+ "load ads dynamically."
2601
+ msgstr ""
2602
+ "Votre <strong>site Web utilise le cache</strong>. Quelques fonctionnalités "
2603
+ "dynamiques comme la rotation (alternance) de pubs ou les conditions de "
2604
+ "visiteur ne peuvent pas fonctionner correctement. Utilisez la fonctionnalité "
2605
+ "de suppression de cache (cache-busting) de <a href=\"%s\" target=\"_blank\">"
2606
+ "Advanced Ads Pro</a> pour charger dynamiquement les pubs."
2607
+
2608
+ #: admin/views/support.php:19
2609
+ msgid ""
2610
+ "There is a <strong>new WordPress version available</strong>. Please update."
2611
+ msgstr ""
2612
+ "Il existe une <strong>nouvelle version de WordPress disponible</strong>. "
2613
+ "Veuillez mettre à jour."
2614
+
2615
+ #: admin/views/support.php:22
2616
+ msgid "There are <strong>plugin updates available</strong>. Please update."
2617
+ msgstr ""
2618
+ "Il y a des <strong>mises à jour du plugin disponible</strong>. Veuillez "
2619
+ "mettre à jour."
2620
+
2621
+ #: admin/views/support.php:31
2622
+ msgid ""
2623
+ "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2624
+ "site performance, it is known to alter code, including scripts from ad "
2625
+ "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-"
2626
+ "in support for Autoptimize."
2627
+ msgstr ""
2628
+ "<strong>Autoptimize plugin détecté</strong>. Ce plugin est excellent pour la "
2629
+ "performance du site, mais il est reconnu pour modifier le code, y compris "
2630
+ "les scripts de réseaux publicitaires. <a href=\"%s\" target=\"_blank\">"
2631
+ "Advanced Ads Pro</a> propose le support intégré d’Autoptimize."
2632
+
2633
+ #: admin/views/support.php:34
2634
+ msgid ""
2635
+ "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2636
+ "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2637
+ msgstr ""
2638
+ "Les plugins qui sont connus pour causer des problèmes (partielles): <strong>"
2639
+ "%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">En savoir plus</a>."
2640
+
2641
+ #: admin/views/support.php:38
2642
+ msgid ""
2643
+ "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2644
+ "href=\"%s\">settings</a>."
2645
+ msgstr ""
2646
+ "Les pubs sont désactivées pour toutes ou certaines pages. Voir « pubs "
2647
+ "désactivées » dans les <a href=\"%s\">paramètres</a>."
2648
+
2649
+ #: admin/views/support.php:49
2650
+ msgid "Search"
2651
+ msgstr "Recherche"
2652
+
2653
+ #: admin/views/support.php:50
2654
+ msgid ""
2655
+ "Use the following form to search for solutions in the manual on "
2656
+ "wpadvancedads.com"
2657
+ msgstr ""
2658
+ "Utilisez le formulaire ci-dessous pour rechercher des solutions dans le "
2659
+ "manuel sur wpadvancedads.com"
2660
+
2661
+ #: admin/views/support.php:53
2662
+ msgid "search"
2663
+ msgstr "rechercher"
2664
+
2665
+ #: admin/views/support.php:55
2666
+ msgid "Contact"
2667
+ msgstr "Contact"
2668
+
2669
+ #: admin/views/support.php:56
2670
+ msgid ""
2671
+ "Please search the manual for a solution and take a look at <a href=\"%s\" "
2672
+ "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2673
+ msgstr ""
2674
+ "Veuillez rechercher une solution dans le manuel et jetez un oeil à <a "
2675
+ "href=\"%s\" target=\"_blank\">pubs n’apparaissant-pas?</a> avant de me "
2676
+ "contacter pour de l’aide."
2677
+
2678
+ #: admin/views/support.php:58
2679
+ msgid "Email was successfully sent."
2680
+ msgstr "Votre e-mail a bien été envoyé."
2681
+
2682
+ #: admin/views/support.php:67
2683
+ msgid "your email"
2684
+ msgstr "votre email"
2685
+
2686
+ #: admin/views/support.php:71
2687
+ msgid "your name"
2688
+ msgstr "Votre nom"
2689
+
2690
+ #: admin/views/support.php:75
2691
+ msgid "your message"
2692
+ msgstr "Votre message"
2693
+
2694
+ #: admin/views/support.php:80
2695
+ msgid "send"
2696
+ msgstr "envoyer"
2697
+
2698
+ #: modules/gadsense/main.php:19
2699
+ msgid " at "
2700
+ msgstr "à"
2701
+
2702
+ #: admin/views/notices/adblock.php:3
2703
+ msgid ""
2704
+ "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2705
+ "ad setup."
2706
+ msgstr ""
2707
+ "Veuillez désactiver votre <strong>bloqueur de publicité</strong> pour éviter "
2708
+ "tout problème avec la configuration de pub."
2709
+
2710
+ #: modules/ad-blocker/admin/admin.php:133
2711
+ msgid "The asset folder was rebuilt successfully"
2712
+ msgstr "Le dossier d’éléments (assets) a été reconstruit avec succès"
2713
+
2714
+ #: modules/ad-blocker/admin/admin.php:218
2715
+ msgid "Ad blocker fix"
2716
+ msgstr "Réparation bloqueur de publicité"
2717
+
2718
+ #: modules/ad-blocker/admin/admin.php:257
2719
+ msgid "There is no writable upload folder"
2720
+ msgstr ""
2721
+ "Il n’y a aucun dossier de transfert avec des droits d’écriture (writable)"
2722
+
2723
+ #: modules/ad-blocker/admin/admin.php:286
2724
+ msgid "Unable to rename \"%s\" directory"
2725
+ msgstr "Impossible de renommer le répertoire \"%s\""
2726
+
2727
+ #: modules/ad-blocker/admin/admin.php:302
2728
+ #: modules/ad-blocker/admin/admin.php:315
2729
+ #: modules/ad-blocker/admin/admin.php:332
2730
+ msgid "Unable to copy assets to the \"%s\" directory"
2731
+ msgstr "Impossible de copier des éléments (assets) dans le répertoire \"%s\""
2732
+
2733
+ #: modules/ad-blocker/admin/admin.php:366
2734
+ #: modules/ad-blocker/admin/admin.php:386
2735
+ msgid "We do not have direct write access to the \"%s\" directory"
2736
+ msgstr "Vous n’avez pas de droit direct d’écriture pour le répertoire \"%s\""
2737
+
2738
+ #: modules/ad-blocker/admin/admin.php:453
2739
+ msgid ""
2740
+ "Unable to create \"%s\" directory. Is its parent directory writable by the "
2741
+ "server?"
2742
+ msgstr ""
2743
+ "Impossible de créer le répertoire \"%s\". Son répertoire parent est-il "
2744
+ "modifiable par le serveur ?"
2745
+
2746
+ #: modules/ad-blocker/admin/admin.php:464
2747
+ msgid "Unable to copy files to %s"
2748
+ msgstr "Impossible de copier les fichiers vers %s"
2749
+
2750
+ #: modules/ad-blocker/admin/admin.php:600
2751
+ msgid ""
2752
+ "Prevents ad block software from breaking your website when blocking asset "
2753
+ "files (.js, .css)."
2754
+ msgstr ""
2755
+ "Empêcher le logiciel de blocage de publicités de casser votre site Internet "
2756
+ "lors du blocage des fichiers de composants (.js, .css)."
2757
+
2758
+ #: modules/gadsense/admin/admin.php:26
2759
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:51
2760
+ msgid "Responsive"
2761
+ msgstr "Responsive"
2762
+
2763
+ #: modules/gadsense/admin/admin.php:44
2764
+ msgid "The ad details couldn't be retrieved from the ad code"
2765
+ msgstr ""
2766
+ "Les détails de la pub nont pas pu être récupérés à partir du code de la pub"
2767
+
2768
+ #: modules/gadsense/admin/admin.php:45
2769
+ msgid ""
2770
+ "Warning : The AdSense account from this code does not match the one set with "
2771
+ "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2772
+ "end."
2773
+ msgstr ""
2774
+ "Avertissement : Le compte AdSense à partir de ce code ne correspond pas à "
2775
+ "celui fixé avec le Plugin Advanced Ads. Cette pub pourrait entraîner des "
2776
+ "problèmes lorsqu’elle est utilisée sur le Frontend."
2777
+
2778
+ #: modules/gadsense/admin/admin.php:123 modules/gadsense/admin/admin.php:260
2779
+ msgid "AdSense"
2780
+ msgstr "Adsense"
2781
+
2782
+ #: modules/gadsense/admin/admin.php:131
2783
+ msgid "AdSense ID"
2784
+ msgstr "ID AdSense"
2785
+
2786
+ #: modules/gadsense/admin/admin.php:140
2787
+ msgid "Limit to 3 ads"
2788
+ msgstr "Limiter à 3 pubs"
2789
+
2790
+ #: modules/gadsense/admin/admin.php:149
2791
+ msgid "Activate Page-Level ads"
2792
+ msgstr "Activer les pubs de niveau de Page"
2793
+
2794
+ #: modules/gadsense/admin/admin.php:169
2795
+ msgid ""
2796
+ "Please enter your Publisher ID in order to use AdSense on your page. See the "
2797
+ "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2798
+ msgstr ""
2799
+ "Veuillez entrer votre Référence éditeur (Publisher ID) pour utiliser AdSense "
2800
+ "sur votre page. Voir le <a href=\"%s\" target=\"_blank\">manuel</a> pour "
2801
+ "plus d’informations."
2802
+
2803
+ #: modules/gadsense/admin/admin.php:183
2804
+ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2805
+ msgstr ""
2806
+ "Votre Référence éditeur (Publisher ID) d’ AdSense <em>(pub-xxxxxxxxxxxxxx)"
2807
+ "</em>"
2808
+
2809
+ #: modules/gadsense/admin/admin.php:195
2810
+ msgid "Limit to %d AdSense ads"
2811
+ msgstr "Limiter à %d pubs AdSense"
2812
+
2813
+ #: modules/gadsense/admin/admin.php:203
2814
+ msgid ""
2815
+ "Due to technical restrictions, the limit does not work on placements with "
2816
+ "cache-busting enabled."
2817
+ msgstr ""
2818
+ "En raison de restrictions techniques, la limite ne fonctionne pas sur les "
2819
+ "placements avec la suppression du cache (cache-busting) activé."
2820
+
2821
+ #: modules/gadsense/admin/admin.php:217
2822
+ msgid "Insert Page-Level ads code on all pages."
2823
+ msgstr "Insérez le code des pubs de niveau de page sur toutes les pages."
2824
+
2825
+ #: modules/gadsense/admin/admin.php:219
2826
+ msgid ""
2827
+ "You still need to enable Page-Level ads in your AdSense account. See <a "
2828
+ "href=\"https://support.google.com/adsense/answer/6245304\" target=\"_blank\">"
2829
+ "AdSense Help</a> (requires AdSense-login) for more information"
2830
+ msgstr ""
2831
+ "Vous devez toujours activer les pubs de niveau de page dans votre compte "
2832
+ "Adsense. Consultez l’ <a href=\"https://support.google."
2833
+ "com/adsense/answer/6245304\" target=\"_blank\">Aide d’AdSense</a> (compte "
2834
+ "AdSense obligatoire) pour plus d’informations"
2835
+
2836
+ #: modules/gadsense/admin/admin.php:238
2837
+ #: modules/gadsense/includes/class-ad-type-adsense.php:73
2838
+ msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2839
+ msgstr ""
2840
+ "L’ID de l’éditeur (Publisher ID) a un format incorrect. (doit commencer par "
2841
+ pub- »)"
2842
+
2843
+ #: modules/gadsense/includes/class-ad-type-adsense.php:35
2844
+ msgid "AdSense ad"
2845
+ msgstr "Pub AdSense"
2846
+
2847
+ #: modules/gadsense/includes/class-ad-type-adsense.php:36
2848
+ msgid "Use ads from your Google AdSense account"
2849
+ msgstr "Utiliser les pubs de votre compte Google AdSense"
2850
+
2851
+ #: modules/gadsense/includes/class-ad-type-adsense.php:105
2852
+ msgid "Your AdSense Publisher ID is missing."
2853
+ msgstr "Votre identifiant d’éditeur (Publisher ID) AdSense est manquant."
2854
+
2855
+ #: modules/gadsense/includes/class-gadsense-data.php:37
2856
+ msgid "Auto"
2857
+ msgstr "Auto"
2858
+
2859
+ #: modules/ad-blocker/admin/views/rebuild_form.php:1
2860
+ msgid "Ad blocker file folder"
2861
+ msgstr "Dossier de fichier ad bloquer"
2862
+
2863
+ #: modules/ad-blocker/admin/views/rebuild_form.php:10
2864
+ msgid "Upload folder is not writable"
2865
+ msgstr "Dossier de transfert n’est pas accessible en écriture"
2866
+
2867
+ #: modules/ad-blocker/admin/views/rebuild_form.php:23
2868
+ msgid "Asset path"
2869
+ msgstr "Chemin d’élément (asset)"
2870
+
2871
+ #: modules/ad-blocker/admin/views/rebuild_form.php:27
2872
+ msgid "Asset URL"
2873
+ msgstr "URL de l’actif (asset)"
2874
+
2875
+ #: modules/ad-blocker/admin/views/rebuild_form.php:46
2876
+ msgid "Rebuild asset folder"
2877
+ msgstr "Reconstruire le dossier d’éléments (asset folder)"
2878
+
2879
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:22
2880
+ msgid "Copy&Paste existing ad code"
2881
+ msgstr "Copiez et collez le code existant de la pub"
2882
+
2883
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:27
2884
+ msgid "Ad Slot ID"
2885
+ msgstr "ID de l’emplacement de pub"
2886
+
2887
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:32
2888
+ msgid "Publisher ID: %s"
2889
+ msgstr "ID de l’éditeur (Publisher ID): %s"
2890
+
2891
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:44
2892
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2893
+ msgstr "S’il vous plaît <a href=\"%s\" target=\"_blank\">changez le ici</a>."
2894
+
2895
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:50
2896
+ msgid "Normal"
2897
+ msgstr "Normal"
2898
+
2899
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:59
2900
+ msgid "Resizing"
2901
+ msgstr "Redimensionnement"
2902
+
2903
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:72
2904
+ msgid ""
2905
+ "Copy the ad code from your AdSense account and paste it in the area below"
2906
+ msgstr ""
2907
+ "Copiez le code de pub de votre compte AdSense et collez-le dans la zone ci-"
2908
+ "dessous"
2909
+
2910
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:75
2911
+ msgid "Get details"
2912
+ msgstr "Plus de Détails"
2913
+
2914
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:76
2915
+ msgid "Close"
2916
+ msgstr "Fermer"
2917
+
2918
+ #. Name of the plugin
2919
+ msgid "Advanced Ads"
2920
+ msgstr "Advanced Ads"
2921
+
2922
+ #. Description of the plugin
2923
+ msgid "Manage and optimize your ads in WordPress"
2924
+ msgstr "Gérer et optimiser vos pubs dans Wordpress"
2925
+
2926
+ #. URI of the plugin
2927
+ msgid "https://wpadvancedads.com"
2928
+ msgstr "https://wpadvancedads.com"
2929
+
2930
+ #. Author of the plugin
2931
+ msgid "Thomas Maier"
2932
+ msgstr "Thomas Maier"
2933
+
2934
+ #. Author URI of the plugin
2935
+ msgid "http://webgilde.com"
2936
+ msgstr "http://webgilde.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/advanced-ads-pt_BR.mo CHANGED
Binary file
languages/advanced-ads-pt_BR.po CHANGED
@@ -1,2930 +1,3054 @@
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: Sun May 15 2016 18:10:34 GMT+0200 (CEST)\n"
7
- "Last-Translator: admin <post@webzunft.de>\n"
8
- "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
9
- "Language: Portuguese (Brazil)\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: ../\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Loco-Target-Locale: pt_BR"
24
-
25
- #: ../admin/views/ad-info-bottom.php:2
26
- msgctxt "wizard navigation"
27
- msgid "previous"
28
- msgstr ""
29
-
30
- #: ../admin/views/ad-info-bottom.php:3
31
- msgctxt "wizard navigation"
32
- msgid "save"
33
- msgstr ""
34
-
35
- #: ../admin/views/ad-info-bottom.php:4
36
- msgctxt "wizard navigation"
37
- msgid "next"
38
- msgstr ""
39
-
40
- #: ../admin/views/ad-info-top.php:31 ../admin/views/ad-info-top.php:43
41
- msgid "Start Wizard"
42
- msgstr ""
43
-
44
- #: ../admin/views/ad-info-top.php:32
45
- msgid "Stop Wizard"
46
- msgstr ""
47
-
48
- #: ../admin/views/ad-info-top.php:41
49
- msgid "Welcome to the Wizard"
50
- msgstr ""
51
-
52
- #: ../admin/views/ad-info-top.php:42
53
- msgid ""
54
- "The Wizard helps you to quickly create and publish an ad. Therefore, only "
55
- "the most common options are visible.<br/>You can access all options when "
56
- "<strong>switching off</strong> the Wizard using the <em>Stop Wizard</em> "
57
- "button.<br/>You can <strong>switch on</strong> the Wizard at any time using "
58
- "the <em>Start Wizard</em> button."
59
- msgstr ""
60
-
61
- #: ../admin/views/ad-info-top.php:44
62
- msgid "Stop Wizard and show all options"
63
- msgstr ""
64
-
65
- #: ../classes/ad_type_plain.php:86
66
- msgid "Allow PHP"
67
- msgstr ""
68
-
69
- msgid "Advanced Ads"
70
- msgstr "Anúncios Avançados"
71
-
72
- #. URI of the plugin
73
- msgid "https://wpadvancedads.com"
74
- msgstr "https://wpadvancedads.com"
75
-
76
- #. Description of the plugin
77
- msgid "Manage and optimize your ads in WordPress"
78
- msgstr "Gerenciar e otimizar seus anúncios em WordPress"
79
-
80
- #. Author of the plugin
81
- msgid "Thomas Maier"
82
- msgstr "Thomas Maier"
83
-
84
- #. Author URI of the plugin
85
- msgid "http://webgilde.com"
86
- msgstr "http://webgilde.com"
87
-
88
- #: ../admin/class-advanced-ads-admin.php:215 ../classes/display-conditions.php:
89
- #: 171 ../classes/visitor-conditions.php:214
90
- msgid "or"
91
- msgstr "ou"
92
-
93
- #: ../admin/class-advanced-ads-admin.php:216 ../admin/views/ad-display-metabox.
94
- #: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
95
- #: php:171 ../classes/visitor-conditions.php:214
96
- msgid "and"
97
- msgstr "e"
98
-
99
- #: ../admin/class-advanced-ads-admin.php:217
100
- msgid "After which paragraph?"
101
- msgstr "Após o qual parágrafo?"
102
-
103
- #: ../admin/class-advanced-ads-admin.php:283
104
- msgid "Overview"
105
- msgstr "Visão geral"
106
-
107
- #: ../admin/class-advanced-ads-admin.php:287 ../admin/class-advanced-ads-admin.
108
- #: php:287 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
109
- #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
110
- #: admin/views/placements.php:81 ../admin/views/placements.php:185 ..
111
- #: classes/widget.php:89 ../public/class-advanced-ads.php:590
112
- msgid "Ads"
113
- msgstr "Anúncios"
114
-
115
- #: ../admin/class-advanced-ads-admin.php:293 ../public/class-advanced-ads.php:593
116
- msgid "Add New Ad"
117
- msgstr "Adicionar Novo Anúncio"
118
-
119
- #: ../admin/class-advanced-ads-admin.php:293 ../public/class-advanced-ads.php:592
120
- #: ../public/class-advanced-ads.php:596
121
- msgid "New Ad"
122
- msgstr "Novo Anúncio"
123
-
124
- #: ../admin/class-advanced-ads-admin.php:298 ../admin/includes/class-shortcode-
125
- #: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
126
- #: 178 ../classes/widget.php:82
127
- msgid "Ad Groups"
128
- msgstr "Grupos de Anúncios"
129
-
130
- #: ../admin/class-advanced-ads-admin.php:298 ../public/class-advanced-ads.php:563
131
- msgid "Groups"
132
- msgstr "Grupos"
133
-
134
- #: ../admin/class-advanced-ads-admin.php:303
135
- msgid "Ad Placements"
136
- msgstr "Locais de Anúncio"
137
-
138
- #: ../admin/class-advanced-ads-admin.php:303 ../admin/includes/class-shortcode-
139
- #: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
140
- msgid "Placements"
141
- msgstr "Locais"
142
-
143
- #: ../admin/class-advanced-ads-admin.php:307
144
- msgid "Advanced Ads Settings"
145
- msgstr "Configurações de Anúncios Avançados"
146
-
147
- #: ../admin/class-advanced-ads-admin.php:307 ../admin/class-advanced-ads-admin.
148
- #: php:555 ../admin/views/debug.php:10
149
- msgid "Settings"
150
- msgstr "Configurações"
151
-
152
- #: ../admin/class-advanced-ads-admin.php:310
153
- msgid "Advanced Ads Debugging"
154
- msgstr "Debug de Anúncios Avançados"
155
-
156
- #: ../admin/class-advanced-ads-admin.php:310
157
- msgid "Debug"
158
- msgstr "Debug"
159
-
160
- #: ../admin/class-advanced-ads-admin.php:314 ../admin/class-advanced-ads-admin.
161
- #: php:314
162
- msgid "Advanced Ads Intro"
163
- msgstr "Introdução ao Anúncios Avançados"
164
-
165
- #: ../admin/class-advanced-ads-admin.php:318 ../admin/class-advanced-ads-admin.
166
- #: php:318 ../admin/class-advanced-ads-admin.php:2110
167
- msgid "Support"
168
- msgstr "Suporte"
169
-
170
- #: ../admin/class-advanced-ads-admin.php:430
171
- msgid "Please enter a message"
172
- msgstr "Por favor digite uma mensagem"
173
-
174
- #: ../admin/class-advanced-ads-admin.php:440
175
- #, php-format
176
- msgid "Email could NOT be sent. Please contact us directly at %s."
177
- msgstr "E-mail não pôde ser enviado. Por favor contate-nos diretamente por %s."
178
-
179
- #: ../admin/class-advanced-ads-admin.php:443
180
- msgid "Please enter a valid email address"
181
- msgstr "Por favor digite um endereço de e-mail válido"
182
-
183
- #: ../admin/class-advanced-ads-admin.php:469 ../admin/class-advanced-ads-admin.
184
- #: php:496
185
- msgid "Sorry, you are not allowed to access this feature."
186
- msgstr "Desculpe, você não tem permissão para acessar esta função."
187
-
188
- #: ../admin/class-advanced-ads-admin.php:482
189
- msgid ""
190
- "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
191
- "deleted?"
192
- msgstr "Você está tentando editar um Grupo que não existe. Talvez tenha sido apagado?"
193
-
194
- #: ../admin/class-advanced-ads-admin.php:650
195
- msgid "Ad Type"
196
- msgstr "Tipo de Anúncio"
197
-
198
- #: ../admin/class-advanced-ads-admin.php:656
199
- msgid "Ad Parameters"
200
- msgstr "Parâmetros do Anúncio"
201
-
202
- #: ../admin/class-advanced-ads-admin.php:659
203
- msgid "Layout / Output"
204
- msgstr "Layout / Exibição"
205
-
206
- #: ../admin/class-advanced-ads-admin.php:662
207
- msgid "Display Conditions"
208
- msgstr "Condições de exibição"
209
-
210
- #: ../admin/class-advanced-ads-admin.php:665
211
- msgid "Visitor Conditions"
212
- msgstr "Condições para Visitantes"
213
-
214
- #: ../admin/class-advanced-ads-admin.php:736 ../admin/class-advanced-ads-admin.
215
- #: php:747 ../admin/class-advanced-ads-admin.php:752 ../admin/views/ad-output-
216
- #: metabox.php:50
217
- msgid "Manual"
218
- msgstr "Manual"
219
-
220
- #: ../admin/class-advanced-ads-admin.php:746
221
- msgid "Video"
222
- msgstr "Vídeo"
223
-
224
- #: ../admin/class-advanced-ads-admin.php:924 ../admin/class-advanced-ads-admin.
225
- #: php:925
226
- msgid "Ad updated."
227
- msgstr "Anúncio atualizado."
228
-
229
- #. translators: %s: date and time of the revision
230
- #: ../admin/class-advanced-ads-admin.php:927
231
- #, php-format
232
- msgid "Ad restored to revision from %s"
233
- msgstr "Anúncio restaurado para revisão de %s"
234
-
235
- #: ../admin/class-advanced-ads-admin.php:928
236
- msgid "Ad published."
237
- msgstr "Anúncio publicado."
238
-
239
- #: ../admin/class-advanced-ads-admin.php:929
240
- msgid "Ad saved."
241
- msgstr "Anúncio salvo."
242
-
243
- #: ../admin/class-advanced-ads-admin.php:930
244
- msgid "Ad submitted."
245
- msgstr "Anúncio enviado."
246
-
247
- #: ../admin/class-advanced-ads-admin.php:932
248
- #, php-format
249
- msgid "Ad scheduled for: <strong>%1$s</strong>."
250
- msgstr "Anúncio previsto para: <strong>%1$s</strong>."
251
-
252
- #. translators: Publish box date format, see http://php.net/date
253
- #: ../admin/class-advanced-ads-admin.php:934
254
- msgid "M j, Y @ G:i"
255
- msgstr "M j, Y @ G:i"
256
-
257
- #: ../admin/class-advanced-ads-admin.php:936
258
- msgid "Ad draft updated."
259
- msgstr "Rascunho do Anúncio atualizado."
260
-
261
- #: ../admin/class-advanced-ads-admin.php:955
262
- #, php-format
263
- msgid "%s ad updated."
264
- msgid_plural "%s ads updated."
265
- msgstr[0] "%s anúncio atualizado."
266
- msgstr[1] "%s anúncios atualizados."
267
-
268
- #: ../admin/class-advanced-ads-admin.php:956
269
- #, php-format
270
- msgid "%s ad not updated, somebody is editing it."
271
- msgid_plural "%s ads not updated, somebody is editing them."
272
- msgstr[0] "%s anúncio não atualizado, alguém está editando."
273
- msgstr[1] "%s anúncios não atualizados, alguém está editando-os."
274
-
275
- #: ../admin/class-advanced-ads-admin.php:957
276
- #, php-format
277
- msgid "%s ad permanently deleted."
278
- msgid_plural "%s ads permanently deleted."
279
- msgstr[0] "%s anúncio excluído permanentemente."
280
- msgstr[1] "%s anúncios excluídos permanentemente."
281
-
282
- #: ../admin/class-advanced-ads-admin.php:958
283
- #, php-format
284
- msgid "%s ad moved to the Trash."
285
- msgid_plural "%s ads moved to the Trash."
286
- msgstr[0] "%s anúncio movido para a Lixeira."
287
- msgstr[1] "%s anúncios movidos para a Lixeira."
288
-
289
- #: ../admin/class-advanced-ads-admin.php:959
290
- #, php-format
291
- msgid "%s ad restored from the Trash."
292
- msgid_plural "%s ads restored from the Trash."
293
- msgstr[0] "%s anúncio restaurado a partir da Lixeira."
294
- msgstr[1] "%s anúncios restaurados a partir da Lixeira."
295
-
296
- #: ../admin/class-advanced-ads-admin.php:994 ../admin/views/settings.php:12
297
- msgid "General"
298
- msgstr "Geral"
299
-
300
- #: ../admin/class-advanced-ads-admin.php:1006 ../admin/class-advanced-ads-admin.
301
- #: php:1118
302
- msgid "Licenses"
303
- msgstr "Licenças"
304
-
305
- #: ../admin/class-advanced-ads-admin.php:1017
306
- msgid "Disable ads"
307
- msgstr "Desativar anúncios"
308
-
309
- #: ../admin/class-advanced-ads-admin.php:1025
310
- msgid "Hide ads for logged in users"
311
- msgstr "Não exibir anúncios para usuários logados"
312
-
313
- #: ../admin/class-advanced-ads-admin.php:1033
314
- msgid "Use advanced JavaScript"
315
- msgstr "Usar JavaScript avançado"
316
-
317
- #: ../admin/class-advanced-ads-admin.php:1041
318
- msgid "Unlimited ad injection"
319
- msgstr "Injeção de anúncios ilimitados"
320
-
321
- #: ../admin/class-advanced-ads-admin.php:1049
322
- msgid "Priority of content injection filter"
323
- msgstr "Prioridade de filtro de injeção de conteúdo"
324
-
325
- #: ../admin/class-advanced-ads-admin.php:1057
326
- msgid "Hide ads from bots"
327
- msgstr "Esconder anúncios de robôs (google, yahoo, bing, etc...)"
328
-
329
- #: ../admin/class-advanced-ads-admin.php:1065
330
- msgid "Disable notices"
331
- msgstr "desabilitar notificações"
332
-
333
- #: ../admin/class-advanced-ads-admin.php:1073
334
- msgid "ID prefix"
335
- msgstr "Prefixo ID"
336
-
337
- #: ../admin/class-advanced-ads-admin.php:1081
338
- msgid "Remove Widget ID"
339
- msgstr "Remover ID do Widget"
340
-
341
- #: ../admin/class-advanced-ads-admin.php:1089
342
- msgid "Allow editors to manage ads"
343
- msgstr "Permitir que editores gerenciem anúncios"
344
-
345
- #: ../admin/class-advanced-ads-admin.php:1097
346
- msgid "Ad label"
347
- msgstr "Rótulo do Anúncio"
348
-
349
- #: ../admin/class-advanced-ads-admin.php:1174
350
- msgid "(display to all)"
351
- msgstr "(exibir para todos)"
352
-
353
- #: ../admin/class-advanced-ads-admin.php:1175
354
- msgid "Subscriber"
355
- msgstr "Assinante"
356
-
357
- #: ../admin/class-advanced-ads-admin.php:1176
358
- msgid "Contributor"
359
- msgstr "Contribuidor"
360
-
361
- #: ../admin/class-advanced-ads-admin.php:1177
362
- msgid "Author"
363
- msgstr "Autor"
364
-
365
- #: ../admin/class-advanced-ads-admin.php:1178
366
- msgid "Editor"
367
- msgstr "Editor"
368
-
369
- #: ../admin/class-advanced-ads-admin.php:1179
370
- msgid "Admin"
371
- msgstr "Administrador"
372
-
373
- #: ../admin/class-advanced-ads-admin.php:1187
374
- msgid "Choose the lowest role a user must have in order to not see any ads."
375
- msgstr "Escolha o nível de usuário mais baixo para não ver os anúncios."
376
-
377
- #: ../admin/class-advanced-ads-admin.php:1201
378
- msgid ""
379
- "<strong>notice: </strong>the file is currently enabled by an add-on that "
380
- "needs it."
381
- msgstr ""
382
- "<strong>Aviso:</strong> o arquivo está atualmente habilitado por um add-on "
383
- "que precisa dele."
384
-
385
- #: ../admin/class-advanced-ads-admin.php:1204
386
- #, php-format
387
- msgid ""
388
- "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
389
- " Some features and add-ons might override this setting if they need features "
390
- "from this file."
391
- msgstr ""
392
- "Habilitar funções JavaScript avançadas (<a href=\"%s\" "
393
- "target=\"_blank\">aqui</a>). Algumas funcionalidades e complementos podem "
394
- "substituir essa configuração se eles precisarem de recursos a partir deste "
395
- "arquivo."
396
-
397
- #: ../admin/class-advanced-ads-admin.php:1217
398
- msgid ""
399
- "Some plugins and themes trigger ad injection where it shouldn’t happen. "
400
- "Therefore, Advanced Ads ignores injected placements on non-singular pages "
401
- "and outside the loop. However, this can cause problems with some themes. You "
402
- "can enable this option if you don’t see ads or want to enable ad injections "
403
- "on archive pages AT YOUR OWN RISK."
404
- msgstr ""
405
- "Alguns plugins e temas desencadear injeção de anúncio onde ele não deveria "
406
- "acontecer. Portanto, Anúncios Avançados ignora posicionamentos injetados em "
407
- "páginas não singulares e fora do loop. No entanto, isso pode causar "
408
- "problemas com alguns temas. Você pode ativar essa opção se você não vê "
409
- "anúncios ou deseja ativar injeções de anúncios em páginas de arquivos POR "
410
- "SUA CONTA E RISCO."
411
-
412
- #: ../admin/class-advanced-ads-admin.php:1233
413
- msgid ""
414
- "Please check your post content. A priority of 10 and below might cause "
415
- "issues (wpautop function might run twice)."
416
- msgstr ""
417
- "Por favor, verifique o conteúdo do post. A prioridade de 10 e abaixo pode "
418
- "causar problemas (função wpautop pode ser executado duas vezes)."
419
-
420
- #: ../admin/class-advanced-ads-admin.php:1235
421
- msgid ""
422
- "Play with this value in order to change the priority of the injected ads "
423
- "compared to other auto injected elements in the post content."
424
- msgstr ""
425
- "Jogar com este valor, a fim de alterar a prioridade dos anúncios injetados "
426
- "em comparação com outros elementos injetados automaticamente no conteúdo do "
427
- "post."
428
-
429
- #: ../admin/class-advanced-ads-admin.php:1249
430
- #, php-format
431
- msgid ""
432
- "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
433
- "impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
434
- "Add-On</a>."
435
- msgstr ""
436
- "Ocultar anúncios de rastreadores, robô e agentes de usuário vazio. Também "
437
- "impede contagem de impressões para robôs ao usar o <a href=\"%s\" "
438
- "target=\"_blank\">Add-On Rastreamento</a>."
439
-
440
- #: ../admin/class-advanced-ads-admin.php:1250
441
- msgid ""
442
- "Disabling this option only makes sense if your ads contain content you want "
443
- "to display to bots (like search engines) or your site is cached and bots "
444
- "could create a cached version without the ads."
445
- msgstr ""
446
- "A desativação dessa opção só faz sentido se os seus anúncios contêm conteúdo "
447
- "que você deseja exibir para robôs (como motores de busca) ou o seu site é "
448
- "armazenado em cache e robôs podem criar uma versão em cache sem os anúncios."
449
-
450
- #: ../admin/class-advanced-ads-admin.php:1263
451
- msgid ""
452
- "Disable internal notices like tips, tutorials, email newsletters and update "
453
- "notices. Disabling notices is recommended if you run multiple blogs with "
454
- "Advanced Ads already."
455
- msgstr ""
456
- "Desativar avisos internos, como dicas, tutoriais, boletins de e-mail e "
457
- "avisos de atualização. Desabilitar notificações é recomendado se você já "
458
- "executar vários blogs com Anúncios Avançados."
459
-
460
- #: ../admin/class-advanced-ads-admin.php:1280
461
- msgid ""
462
- "Prefix of class or id attributes in the frontend. Change it if you don’t "
463
- "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
464
- "need to <strong>rewrite css rules afterwards</strong>."
465
- msgstr ""
466
- "Prefixo de classe ou atributos id no editor frontal. Mudá-lo se você não "
467
- "quer <strong>bloqueadores de anúncios</strong> para marcar estes blocos como "
468
- "anúncios. <br/>Talvez seja necessário <strong>reescrever as regras css "
469
- "depois</strong>."
470
-
471
- #: ../admin/class-advanced-ads-admin.php:1301
472
- msgid ""
473
- "Remove the ID attribute from widgets in order to not make them an easy "
474
- "target of ad blockers."
475
- msgstr ""
476
- "Remova o atributo ID de Widgets para não torná-los um alvo fácil de "
477
- "bloqueadores de anúncios."
478
-
479
- #: ../admin/class-advanced-ads-admin.php:1304
480
- msgid ""
481
- "If checked, the Advanced Ads Widget will not work with the fixed option of "
482
- "the <strong>Q2W3 Fixed Widget</strong> plugin."
483
- msgstr ""
484
- "Se marcada, o Widget Anúncios Avançados não funcionará com a opção fixa do "
485
- "plugin <strong>Widget Q2W3 Fixo</strong>."
486
-
487
- #: ../admin/class-advanced-ads-admin.php:1326
488
- msgid "Allow editors to also manage and publish ads."
489
- msgstr "Permite aos editores gerenciar e publicar anúncios também."
490
-
491
- #: ../admin/class-advanced-ads-admin.php:1327
492
- #, php-format
493
- msgid ""
494
- "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
495
- "target=\"_blank\">Advanced Ads Pro</a>."
496
- msgstr ""
497
- "Você pode atribuir diferentes funções de anúncios relacionados em uma base "
498
- "de usuário com <a href=\"%s\" target=\"_blank\">Anúncios Avançados Pro</a>."
499
-
500
- #: ../admin/class-advanced-ads-admin.php:1339 ../public/class-advanced-ads.php:711
501
- msgctxt "label before ads"
502
- msgid "Advertisements"
503
- msgstr "Propagandas"
504
-
505
- #: ../admin/class-advanced-ads-admin.php:1346
506
- msgid "Displayed above ads."
507
- msgstr "Exibido anúncios acima."
508
-
509
- #: ../admin/class-advanced-ads-admin.php:1404
510
- msgid "Ad Details"
511
- msgstr "Detalhes do Anúncio"
512
-
513
- #: ../admin/class-advanced-ads-admin.php:1405
514
- msgid "Ad Planning"
515
- msgstr "Planejamento de Anúncio"
516
-
517
- #: ../admin/class-advanced-ads-admin.php:1540
518
- msgid "Ad Settings"
519
- msgstr "Configurações do Anúncio"
520
-
521
- #: ../admin/class-advanced-ads-admin.php:1619 ../admin/views/overview.php:23
522
- msgid "Ads Dashboard"
523
- msgstr "Painel de Anúncios"
524
-
525
- #: ../admin/class-advanced-ads-admin.php:1631
526
- msgid "From the ad optimization universe"
527
- msgstr "Universo de otimizações de anúncios"
528
-
529
- #: ../admin/class-advanced-ads-admin.php:1640
530
- msgid "Advanced Ads Tutorials"
531
- msgstr "Tutoriais do Anúncios Avançados"
532
-
533
- #: ../admin/class-advanced-ads-admin.php:1651
534
- #, php-format
535
- msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
536
- msgstr "%d anúncios – <a href=\"%s\">gerir</a> - <a href=\"%s\">novos</a>"
537
-
538
- #: ../admin/class-advanced-ads-admin.php:1662
539
- msgid "plugin manual and homepage"
540
- msgstr "manual e página do plugin"
541
-
542
- #: ../admin/class-advanced-ads-admin.php:1669
543
- msgid "Get the tutorial via email"
544
- msgstr "Receba o tutorial por e-mail"
545
-
546
- #: ../admin/class-advanced-ads-admin.php:1676
547
- msgid "Get AdSense tips via email"
548
- msgstr "Receba dicas do AdSense via e-mail"
549
-
550
- #: ../admin/class-advanced-ads-admin.php:1766
551
- #, php-format
552
- msgid "time of %s"
553
- msgstr "tempo de %s"
554
-
555
- #: ../admin/class-advanced-ads-admin.php:1802
556
- msgid "Error while trying to register the license. Please contact support."
557
- msgstr "Erro ao tentar registrar a licença. Entre em contato com o suporte."
558
-
559
- #: ../admin/class-advanced-ads-admin.php:1807 ../admin/views/setting-license.php:37
560
- msgid "Please enter a valid license key"
561
- msgstr "Por favor digite uma chave de licença válida"
562
-
563
- #: ../admin/class-advanced-ads-admin.php:1833
564
- msgid "License couldn’t be activated. Please try again later."
565
- msgstr "Licença não pôde ser ativada. Por favor, tente novamente mais tarde."
566
-
567
- #: ../admin/class-advanced-ads-admin.php:1845
568
- msgid "This is the bundle license key."
569
- msgstr "Esta é a chave de licença do pacote."
570
-
571
- #: ../admin/class-advanced-ads-admin.php:1846
572
- msgid "This is not the correct key for this add-on."
573
- msgstr "Esta não é a chave correta para este add-on."
574
-
575
- #: ../admin/class-advanced-ads-admin.php:1847
576
- msgid "There are no activations left."
577
- msgstr "Não ativações deixadas."
578
-
579
- #: ../admin/class-advanced-ads-admin.php:1856
580
- #, php-format
581
- msgid "License is invalid. Reason: %s"
582
- msgstr "A Licença é inválida. Motivo: %s"
583
-
584
- #: ../admin/class-advanced-ads-admin.php:1910
585
- msgid "Error while trying to disable the license. Please contact support."
586
- msgstr "Erro ao tentar desativar a licença. Entre em contato com o suporte."
587
-
588
- #: ../admin/class-advanced-ads-admin.php:1933 ../admin/class-advanced-ads-admin.
589
- #: php:1950
590
- msgid "License couldn’t be deactivated. Please try again later."
591
- msgstr "Licença não pôde ser desativada. Por favor, tente novamente mais tarde."
592
-
593
- #: ../admin/class-advanced-ads-admin.php:2114
594
- msgid "Add-Ons"
595
- msgstr "Add-Ons"
596
-
597
- #: ../admin/includes/class-ad-groups-list.php:156
598
- msgid "Ad weight"
599
- msgstr "Peso do Anúncio"
600
-
601
- #: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
602
- #: column.php:4
603
- #, php-format
604
- msgid "starts %s"
605
- msgstr "inicia %s"
606
-
607
- #: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
608
- #: column.php:21
609
- #, php-format
610
- msgid "expires %s"
611
- msgstr "expira %s"
612
-
613
- #: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
614
- #: column.php:23
615
- #, php-format
616
- msgid "<strong>expired</strong> %s"
617
- msgstr "<strong>expirado</strong> %s"
618
-
619
- #: ../admin/includes/class-ad-groups-list.php:198
620
- msgid "all published ads are displayed"
621
- msgstr "todos os anúncios publicados estão sendo exibidos"
622
-
623
- #: ../admin/includes/class-ad-groups-list.php:200
624
- #, php-format
625
- msgid "up to %d ads displayed"
626
- msgstr "vá para %d anúncios exibidos"
627
-
628
- #: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
629
- #: form-row.php:37
630
- msgid "No ads assigned"
631
- msgstr "Não há anúncios atribuídos"
632
-
633
- #: ../admin/includes/class-ad-groups-list.php:251
634
- msgid "Random ads"
635
- msgstr "Anúncios aleatórios"
636
-
637
- #: ../admin/includes/class-ad-groups-list.php:252
638
- msgid "Display random ads based on ad weight"
639
- msgstr "Exibir anúncios aleatórios com base no peso anúncio"
640
-
641
- #: ../admin/includes/class-ad-groups-list.php:255
642
- msgid "Ordered ads"
643
- msgstr "Anúncios ordenados"
644
-
645
- #: ../admin/includes/class-ad-groups-list.php:256
646
- msgid "Display ads with the highest ad weight first"
647
- msgstr "Os anúncios gráficos com maior peso em primeiro lugar"
648
-
649
- #: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
650
- #: php:594
651
- msgid "Edit"
652
- msgstr "Editar"
653
-
654
- #: ../admin/includes/class-ad-groups-list.php:276
655
- msgid "Usage"
656
- msgstr "Usar"
657
-
658
- #: ../admin/includes/class-ad-groups-list.php:285
659
- msgid "Delete"
660
- msgstr "Excluir"
661
-
662
- #: ../admin/includes/class-ad-groups-list.php:306
663
- msgid "Invalid Ad Group"
664
- msgstr "Grupo de Anúncios Inválido"
665
-
666
- #: ../admin/includes/class-ad-groups-list.php:311
667
- msgid "You don’t have permission to change the ad groups"
668
- msgstr "Você não tem permissão para alterar os grupos de anúncios"
669
-
670
- #: ../admin/includes/class-notices.php:406
671
- #, php-format
672
- msgid ""
673
- "You don’t seem to have an email address. Please use <a href=\"%s\" "
674
- "target=\"_blank\">this form</a> to sign up."
675
- msgstr ""
676
- "Você não parece ter um endereço de e-mail. Utilize <a href=\"%s\" "
677
- "target=\"_blank\">este formulário</a> para se inscrever."
678
-
679
- #: ../admin/includes/class-notices.php:424
680
- msgid "How embarrassing. The email server seems to be down. Please try again later."
681
- msgstr ""
682
- "Como é embaraçoso. O servidor de e-mail parece ser ruim. Por favor tente de "
683
- "novo mais tarde."
684
-
685
- #: ../admin/includes/class-notices.php:429
686
- #, php-format
687
- msgid ""
688
- "Please check your email (%s) for the confirmation message. If you didn’t "
689
- "receive one or want to use another email address then please use <a "
690
- "href=\"%s\" target=\"_blank\">this form</a> to sign up."
691
- msgstr ""
692
- "Por favor, verifique seu e-mail (%s) para a mensagem de confirmação. Se você "
693
- "não receber uma ou quiser usar outro endereço de e-mail, em seguida, utilize "
694
- "<a href=\"%s\" target=\"_blank\">este formulário</a> para se inscrever."
695
-
696
- #: ../admin/includes/class-overview-widgets.php:45
697
- msgid "Tips and Tutorials"
698
- msgstr "Dicas e Tutoriais"
699
-
700
- #: ../admin/includes/class-overview-widgets.php:47
701
- msgid "Setup and Optimization Help"
702
- msgstr "Ajuda de Configuração e Otimização"
703
-
704
- #: ../admin/includes/class-overview-widgets.php:49
705
- msgid "Manual and Support"
706
- msgstr "Manual e Suporte"
707
-
708
- #: ../admin/includes/class-overview-widgets.php:53
709
- msgid "Advanced Ads Pro"
710
- msgstr "Anúncios Avançados Pro"
711
-
712
- #: ../admin/includes/class-overview-widgets.php:55
713
- msgid "Tracking and Stats"
714
- msgstr "Rastreamento e Estatísticas"
715
-
716
- #: ../admin/includes/class-overview-widgets.php:57
717
- msgid "Responsive and Mobile ads"
718
- msgstr "Anúncios Responsivos e Móveis"
719
-
720
- #: ../admin/includes/class-overview-widgets.php:59
721
- msgid "Geo Targeting"
722
- msgstr "Direcionamento Geográfico"
723
-
724
- #: ../admin/includes/class-overview-widgets.php:61
725
- msgid "Sticky ads"
726
- msgstr "Anúncios destacados"
727
-
728
- #: ../admin/includes/class-overview-widgets.php:63
729
- msgid "PopUps and Layers"
730
- msgstr "PopUps e Camadas"
731
-
732
- #: ../admin/includes/class-overview-widgets.php:65
733
- msgid "Ad Slider"
734
- msgstr "Adicionar Slider"
735
-
736
- #: ../admin/includes/class-overview-widgets.php:83
737
- msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
738
- msgstr "Ganhe 2 <strong>add-ons gratuitos</ strong> para juntar-se à newsletter."
739
-
740
- #: ../admin/includes/class-overview-widgets.php:84
741
- msgid "Join now"
742
- msgstr "Junte-se agora"
743
-
744
- #: ../admin/includes/class-overview-widgets.php:91
745
- msgid ""
746
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
747
- "and Advanced Ads from the dedicated newsletter group."
748
- msgstr ""
749
- "Saiba mais sobre como e <strong>o quanto você pode ganhar com o "
750
- "AdSense</strong> e Anúncios Avançados no grupo de boletim informativo "
751
- "dedicado."
752
-
753
- #: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
754
- #: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
755
- #: admin/views/notices/subscribe.php:3
756
- msgid "Subscribe me now"
757
- msgstr "Inscreva-me agora"
758
-
759
- #: ../admin/includes/class-overview-widgets.php:99
760
- msgid "Get the first steps and more tutorials to your inbox."
761
- msgstr "Obter os primeiros passos e mais tutoriais em sua caixa de entrada."
762
-
763
- #: ../admin/includes/class-overview-widgets.php:100
764
- msgid "Send it now"
765
- msgstr "Enviar agora"
766
-
767
- #: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
768
- msgid "Create your first ad"
769
- msgstr "Crie seu primeiro anúncio"
770
-
771
- #: ../admin/includes/class-overview-widgets.php:126
772
- msgid ""
773
- "Ad Groups contain ads and are currently used to rotate multiple ads on a "
774
- "single spot."
775
- msgstr ""
776
- "Grupos de Anúncios contêm anúncios e são usados atualmente para rodar vários "
777
- "anúncios em um único local."
778
-
779
- #: ../admin/includes/class-overview-widgets.php:128
780
- msgid "Create your first group"
781
- msgstr "Crie seu primeiro Grupo"
782
-
783
- #: ../admin/includes/class-overview-widgets.php:131
784
- msgid "Ad Placements are the best way to manage where to display ads and groups."
785
- msgstr ""
786
- "Locais de anúncios são a melhor maneira de gerenciar onde exibir anúncios e "
787
- "grupos."
788
-
789
- #: ../admin/includes/class-overview-widgets.php:133
790
- msgid "Create your first placement"
791
- msgstr "Crie seu primeiro Local"
792
-
793
- #: ../admin/includes/class-overview-widgets.php:138
794
- msgid "Next steps"
795
- msgstr "Próximos passos"
796
-
797
- #: ../admin/includes/class-overview-widgets.php:150
798
- #, php-format
799
- msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
800
- msgstr "<a href=\"%s\" target=\"_blank\">Manual</a>"
801
-
802
- #: ../admin/includes/class-overview-widgets.php:151
803
- #, php-format
804
- msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
805
- msgstr "<a href=\"%s\" target=\"_blank\">FAQ e Suporte</a>\n"
806
-
807
- #: ../admin/includes/class-overview-widgets.php:152
808
- #, php-format
809
- msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
810
- msgstr "Votar para um <a href=\"%s\" target=\"_blank\">recurso</a>"
811
-
812
- #: ../admin/includes/class-overview-widgets.php:153
813
- #, php-format
814
- msgid ""
815
- "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
816
- "href=\"%s\" target=\"_blank\">wordpress.org</a>"
817
- msgstr ""
818
- "Obrigado ao desenvolvedor com uma &#9733;&#9733;&#9733;&#9733;&#9733; "
819
- "avaliação em <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
820
-
821
- #: ../admin/includes/class-overview-widgets.php:162
822
- msgid ""
823
- "Need help to set up and optimize your ads? Need custom coding on your site? "
824
- "Ask me for a quote."
825
- msgstr ""
826
- "Necessita de ajuda para configurar e otimizar seus anúncios? Precisa de "
827
- "personalizar codificação em seu site? Peça um orçamento."
828
-
829
- #: ../admin/includes/class-overview-widgets.php:163
830
- #, php-format
831
- msgid "Help with ads on %s"
832
- msgstr "Ajuda com anúncios em %s"
833
-
834
- #: ../admin/includes/class-overview-widgets.php:164
835
- msgid "Get an offer"
836
- msgstr "Obter uma oferta"
837
-
838
- #: ../admin/includes/class-overview-widgets.php:172
839
- msgid "Ad management for advanced websites."
840
- msgstr "Gerenciamento de anúncios para sites avançados."
841
-
842
- #: ../admin/includes/class-overview-widgets.php:173
843
- msgid "Cache-busting"
844
- msgstr "Cache arrebentando"
845
-
846
- #: ../admin/includes/class-overview-widgets.php:174
847
- msgid "Advanced visitor conditions"
848
- msgstr "Condições avançadas para visitantes"
849
-
850
- #: ../admin/includes/class-overview-widgets.php:175
851
- msgid "Flash ads with fallback"
852
- msgstr "Anúncios em Flash com fallback"
853
-
854
- #: ../admin/includes/class-overview-widgets.php:177
855
- msgid "Get Pro"
856
- msgstr "Obter Pro"
857
-
858
- #: ../admin/includes/class-overview-widgets.php:185
859
- msgid "Track the impressions of and clicks on your ads."
860
- msgstr "Acompanhe as impressões e cliques em seus anúncios."
861
-
862
- #: ../admin/includes/class-overview-widgets.php:186
863
- msgid "2 methods to count impressions"
864
- msgstr "2 métodos para contar impressões"
865
-
866
- #: ../admin/includes/class-overview-widgets.php:187
867
- msgid "beautiful stats for all or single ads"
868
- msgstr "Status bonito para todos ou anúncios individuais"
869
-
870
- #: ../admin/includes/class-overview-widgets.php:188
871
- msgid "group stats by day, week or month"
872
- msgstr "Estatísticas do grupo por dia, semana ou mês"
873
-
874
- #: ../admin/includes/class-overview-widgets.php:190
875
- msgid "Get the Tracking add-on"
876
- msgstr "Obter o Rastreamento add-on"
877
-
878
- #: ../admin/includes/class-overview-widgets.php:198
879
- msgid "Display ads based on the size of your visitor’s browser or device."
880
- msgstr ""
881
- "Os anúncios gráficos com base no tamanho do navegador ou dispositivo do seu "
882
- "visitante."
883
-
884
- #: ../admin/includes/class-overview-widgets.php:199
885
- msgid "set a range (from … to …) pixels for the browser size"
886
- msgstr "definir um intervalo (de ... para ...) pixels para o tamanho do navegador"
887
-
888
- #: ../admin/includes/class-overview-widgets.php:200
889
- msgid "set custom sizes for AdSense responsive ads"
890
- msgstr "definir tamanhos personalizados para anúncios responsivos do AdSense"
891
-
892
- #: ../admin/includes/class-overview-widgets.php:201
893
- msgid "list all ads by their responsive settings"
894
- msgstr "listar todos os anúncios por suas configurações responsivas"
895
-
896
- #: ../admin/includes/class-overview-widgets.php:203
897
- msgid "Get the Responsive add-on"
898
- msgstr "Obter o Responsive add-on"
899
-
900
- #: ../admin/includes/class-overview-widgets.php:211
901
- msgid "Target visitors by their geo location."
902
- msgstr "Segmentar os visitantes por sua localização geográfica."
903
-
904
- #: ../admin/includes/class-overview-widgets.php:213
905
- msgid "Get the Geo Targeting add-on"
906
- msgstr "Obter o addon de Direcionamento Geográfico"
907
-
908
- #: ../admin/includes/class-overview-widgets.php:221
909
- msgid ""
910
- "Fix ads to the browser while users are scrolling and create best performing "
911
- "anchor ads."
912
- msgstr ""
913
- "Corrigir anúncios para o navegador enquanto os usuários estiverem rolando e "
914
- "criar melhor performance de ancoragem para anúncios."
915
-
916
- #: ../admin/includes/class-overview-widgets.php:222
917
- msgid "position ads that don’t scroll with the screen"
918
- msgstr "Posição de anúncios que não rolam com a tela"
919
-
920
- #: ../admin/includes/class-overview-widgets.php:223
921
- msgid "build anchor ads not only on mobile devices"
922
- msgstr "construir âncora de anúncios só em dispositivos móveis"
923
-
924
- #: ../admin/includes/class-overview-widgets.php:225
925
- msgid "Get the Sticky add-on"
926
- msgstr "Obter Destaque add-on"
927
-
928
- #: ../admin/includes/class-overview-widgets.php:233
929
- msgid "Display content and ads in layers and popups on custom events."
930
- msgstr "Exibir conteúdo e anúncios em camadas e popups sobre eventos personalizados."
931
-
932
- #: ../admin/includes/class-overview-widgets.php:234
933
- msgid "display a popup after a user interaction like scrolling"
934
- msgstr "exibir um pop-up depois de uma interação do usuário como a rolagem"
935
-
936
- #: ../admin/includes/class-overview-widgets.php:235
937
- msgid "optional background overlay"
938
- msgstr "sobreposição de fundo opcional"
939
-
940
- #: ../admin/includes/class-overview-widgets.php:236
941
- msgid "allow users to close the popup"
942
- msgstr "permitir que os usuários fechem o pop-up"
943
-
944
- #: ../admin/includes/class-overview-widgets.php:238
945
- msgid "Get the PopUp and Layer add-on"
946
- msgstr "Obter PopUp e Camada add-on"
947
-
948
- #: ../admin/includes/class-overview-widgets.php:246
949
- msgid "Create a beautiful and simple slider from your ads."
950
- msgstr "Criar um bonito e simples slider para seus anúncios."
951
-
952
- #: ../admin/includes/class-overview-widgets.php:248
953
- msgid "Get the Slider add-on"
954
- msgstr "Obter Slider add-on"
955
-
956
- #: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
957
- msgid "--empty--"
958
- msgstr "--vazio--"
959
-
960
- #: ../admin/includes/notices.php:14
961
- #, php-format
962
- msgid ""
963
- "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
964
- "Steps</a>."
965
- msgstr ""
966
- "Anúncios Avançados instalado com sucesso. Dê uma olhada nos <a "
967
- "href=\"%s\">Primeiros Passos</a>."
968
-
969
- #: ../admin/includes/notices.php:20
970
- msgid ""
971
- "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
972
- "receive the first steps via email?"
973
- msgstr ""
974
- "Obrigado pela ativação de <strong>Anúncios Avançados </strong>. Gostaria de "
975
- "receber os primeiros passos via e-mail?"
976
-
977
- #: ../admin/includes/notices.php:21
978
- msgid "Yes, send it"
979
- msgstr "Sim, envie-me"
980
-
981
- #: ../admin/includes/notices.php:27
982
- msgid ""
983
- "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
984
- "<strong>2 free add-ons</strong> for joining the newsletter."
985
- msgstr ""
986
- "Obrigado por usar o <strong>Anúncios Avançados</strong>. Mantenha-se "
987
- "informado e receba <strong>2 add-ons gratuitos</strong> para juntar-se à "
988
- "newsletter."
989
-
990
- #: ../admin/includes/notices.php:28
991
- msgid "Add me now"
992
- msgstr "Adicione-me agora"
993
-
994
- #: ../admin/includes/notices.php:34
995
- msgid ""
996
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
997
- "and Advanced Ads from my dedicated newsletter."
998
- msgstr ""
999
- "Saiba mais sobre como e <strong>o quanto você pode ganhar com o "
1000
- "AdSense</strong> e Anúncios Avançados através de meu boletim de notícias "
1001
- "dedicado."
1002
-
1003
- #: ../admin/includes/notices.php:61
1004
- msgid ""
1005
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1006
- "missing</strong>."
1007
- msgstr ""
1008
- "Uma ou mais chaves de licença para <strong>Add-ons de Anúncios Avançados são "
1009
- "inválidas ou estão em falta</strong>."
1010
-
1011
- #: ../admin/includes/notices.php:61
1012
- #, php-format
1013
- msgid "Please add valid license keys <a href=\"%s\">here</a>."
1014
- msgstr "Por favor, adicione as chaves de licença válidas <a href=\"%s\">Aqui</a>."
1015
-
1016
- #: ../admin/includes/notices.php:67
1017
- #, php-format
1018
- msgid ""
1019
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1020
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1021
- "before it expires with a significant discount on <a href=\"%s\" "
1022
- "target=\"_blank\">the add-on page</a>."
1023
- msgstr ""
1024
- "Uma ou mais licenças para o seu <strong>Anúncios Avançados add-ons estarão "
1025
- "expirando em breve</strong>. Não arrisque a perder o apoio e atualizações e "
1026
- "renovar sua licença antes que ela expire com um desconto significativo sobre "
1027
- "<a href=\"%s\" target=\"_blank\">a página add-on</a>."
1028
-
1029
- #: ../admin/includes/notices.php:73 ../admin/views/support.php:28
1030
- #, php-format
1031
- msgid ""
1032
- "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1033
- "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1034
- "information."
1035
- msgstr ""
1036
- "<strong>Anúncios Avançados</strong> licença(s) expirada(s). Suporte e "
1037
- "atualizações estão desativados. Por favor, visite <a href=\"%s\">a página de "
1038
- "licença</a> para obter mais informações."
1039
-
1040
- #: ../admin/includes/notices.php:79
1041
- #, php-format
1042
- msgid ""
1043
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
1044
- "image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
1045
- "you! If you need my help then please visit the <a href=\"%1$s\" "
1046
- "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
1047
- "Review</h3><p>If you share my passion and find Advanced Ads useful then "
1048
- "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
1049
- "org</a>.</p><p><em>Thomas</em>"
1050
- msgstr ""
1051
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
1052
- "image\"/> Você está usando <strong>Anúncios Avançados</strong> já há algum "
1053
- "tempo. Obrigado! Se você precisar da minha ajuda, por favor visite a <a "
1054
- "href=\"%1$s\" target=\"_blank\">página de suporte</a> para obter ajuda gratuita. "
1055
- "</p><h3>Agradecemos a sua avaliação</h3> <p>Se você compartilha da minha "
1056
- "paixão e achar Anúncios Avançados útil, por favor, <a href=\"%2$s\" "
1057
- "target=\"_blank\">deixe um comentário e 5 estrelas no wordpress.org</a>.</p> "
1058
- "<p><em>Thomas</em>"
1059
-
1060
- #: ../admin/includes/notices.php:85
1061
- #, php-format
1062
- msgid ""
1063
- "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1064
- "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1065
- "disguise."
1066
- msgstr ""
1067
- "Alguns recursos foram alterados. Por favor <strong>reconstruir a pasta de "
1068
- "recursos</strong> nas <a href=\"%s\">configurações de Anúncios Avançados</a> "
1069
- "para atualizar o disfarce Ad Blocker."
1070
-
1071
- #: ../admin/includes/shortcode-creator-l10n.php:10
1072
- msgctxt "shortcode creator"
1073
- msgid "Add an ad"
1074
- msgstr "Adicionar um anúncio"
1075
-
1076
- #: ../admin/includes/shortcode-creator-l10n.php:11
1077
- msgctxt "shortcode creator"
1078
- msgid "Add shortcode"
1079
- msgstr "Adicionar shortcode"
1080
-
1081
- #: ../admin/includes/shortcode-creator-l10n.php:12
1082
- msgctxt "shortcode creator"
1083
- msgid "Cancel"
1084
- msgstr "Cancelar"
1085
-
1086
- #: ../admin/views/ad-display-metabox.php:6
1087
- msgid "Set Display Conditions to allow or hide the ad on specific pages."
1088
- msgstr ""
1089
- "Definir condições de exibição para permitir ou ocultar o anúncio em páginas "
1090
- "específicas."
1091
-
1092
- #: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
1093
- #: php:2
1094
- #, php-format
1095
- msgid ""
1096
- "There might be a problem with layouts and scripts in your dashboard. Please "
1097
- "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1098
- msgstr ""
1099
- "Pode haver um problema com layouts e scripts em seu painel. Por favor, "
1100
- "verifique <a href=\"%s\" target=\"_blank\">este artigo para saber mais</a>."
1101
-
1102
- #: ../admin/views/ad-display-metabox.php:39
1103
- msgid "If you want to display the ad everywhere, don't do anything here. "
1104
- msgstr "Se você quer exibir o anúncio em todo lugar, não faça nada aqui."
1105
-
1106
- #: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
1107
- #: 34
1108
- msgid "New condition"
1109
- msgstr "Nova condição"
1110
-
1111
- #: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
1112
- #: 37
1113
- msgid "-- choose a condition --"
1114
- msgstr "-- escolha uma condição --"
1115
-
1116
- #: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
1117
- #: 42
1118
- msgid "add"
1119
- msgstr "adicionar"
1120
-
1121
- #: ../admin/views/ad-group-edit.php:14
1122
- msgid "You did not select an item for editing."
1123
- msgstr "Você não selecionou um item para editar"
1124
-
1125
- #: ../admin/views/ad-group-edit.php:33
1126
- msgctxt "Taxonomy Name"
1127
- msgid "Name"
1128
- msgstr "Nome"
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 "Um estilo de Slug, apenas letras, números e hífen."
1138
-
1139
- #: ../admin/views/ad-group-edit.php:45
1140
- msgctxt "Taxonomy Description"
1141
- msgid "Description"
1142
- msgstr "Descrição"
1143
-
1144
- #: ../admin/views/ad-group-edit.php:57
1145
- msgid "Create new Ad Group"
1146
- msgstr "Criar um novo Grupo de Anúncios"
1147
-
1148
- #: ../admin/views/ad-group-edit.php:59
1149
- msgid "Update"
1150
- msgstr "Atualizar"
1151
-
1152
- #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
1153
- msgid "Name"
1154
- msgstr "Nome"
1155
-
1156
- #: ../admin/views/ad-group-list-form-row.php:5
1157
- msgid "Description"
1158
- msgstr "Descrição"
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 anúncios visíveis"
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 anúncios que são visíveis ao mesmo tempo"
1177
-
1178
- #: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
1179
- #: 591
1180
- msgid "Ad"
1181
- msgstr "Anúncios"
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 ../classes/ad_type_group.php:30
1188
- msgid "Ad Group"
1189
- msgstr "Grupo de Anúncios"
1190
-
1191
- #: ../admin/views/ad-group-list-header.php:4
1192
- msgid "Details"
1193
- msgstr "Detalhes"
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:59
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:62
1202
- msgid "template"
1203
- msgstr "template"
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 "Saiba mais sobre como usar grupos no <a href=\"%s\" target=\"_blank\">manual</a>."
1209
-
1210
- #: ../admin/views/ad-group-list-row.php:19
1211
- #, php-format
1212
- msgid "Type: %s"
1213
- msgstr "Tipo: %s"
1214
-
1215
- #: ../admin/views/ad-group-list-row.php:20
1216
- #, php-format
1217
- msgid "ID: %s"
1218
- msgstr "ID: %s"
1219
-
1220
- #: ../admin/views/ad-group.php:18
1221
- msgid "Ad Groups successfully updated"
1222
- msgstr "Grupos de Anúncios atualizados com sucesso"
1223
-
1224
- #: ../admin/views/ad-group.php:46
1225
- #, php-format
1226
- msgid "Search results for &#8220;%s&#8221;"
1227
- msgstr "Resultados da pesquisa para &#8220;%s&#8221;"
1228
-
1229
- #: ../admin/views/ad-group.php:52
1230
- msgid ""
1231
- "Ad Groups are a very flexible method to bundle ads. You can use them to "
1232
- "display random ads in the frontend or run split tests, but also just for "
1233
- "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1234
- "ad can belong to multiple ad groups."
1235
- msgstr ""
1236
- "Grupo de Anúncios são uma forma flexível de agrupar anúncios. Você pode usá-"
1237
- "lo para exibir randomicamente ou em partes, mas também apenas com objetivos "
1238
- "informativos. Um Grupo de Anúncios pode ter vários anúncios, mas anúncios "
1239
- "podem pertencer a vários grupos."
1240
-
1241
- #: ../admin/views/ad-group.php:60
1242
- msgid "How to display an Ad Group?"
1243
- msgstr "Como exibir um Grupo de Anúncios?"
1244
-
1245
- #: ../admin/views/ad-group.php:62
1246
- #, php-format
1247
- msgid ""
1248
- "Examples on how to display an ad group? Find more help and examples in the "
1249
- "<a href=\"%s\" target=\"_blank\">manual</a>"
1250
- msgstr ""
1251
- "Exemplos de como exibir um anúncio? Encontre ajuda no<a href=\"%s\" "
1252
- "target=\"_blank\">manual</a>"
1253
-
1254
- #: ../admin/views/ad-group.php:64
1255
- msgid "To display an ad group with the ID 6 in content fields"
1256
- msgstr "Para exibir um Grupo com ID 6 num campo de conteúdo"
1257
-
1258
- #: ../admin/views/ad-group.php:67
1259
- msgid "To display an ad group with the ID 6 in template files"
1260
- msgstr "Para exibir um Grupo com ID 6 num arquivo de template"
1261
-
1262
- #: ../admin/views/ad-group.php:87
1263
- msgid "Update Groups"
1264
- msgstr "Atualizar Grupos"
1265
-
1266
- #: ../admin/views/ad-info-top.php:4
1267
- #, php-format
1268
- msgid ""
1269
- "Congratulations! Your ad is now visible in the frontend. You can adjust the "
1270
- "placement options <a href=\"%s\">here</a>."
1271
- msgstr ""
1272
- "Parabéns! Seu anúncio agora está visível na parte da frente. Você pode "
1273
- "ajustar as opções de posicionamento <a href=\"%s\">Aqui</a>."
1274
-
1275
- #: ../admin/views/ad-info-top.php:5
1276
- msgid "Where do you want to display the ad?"
1277
- msgstr "Onde você deseja exibir o anúncio?"
1278
-
1279
- #: ../admin/views/ad-info-top.php:6 ../classes/ad_placements.php:46
1280
- msgid "Before Content"
1281
- msgstr "Antes do Conteúdo"
1282
-
1283
- #: ../admin/views/ad-info-top.php:7
1284
- msgid "Content"
1285
- msgstr "Conteúdo"
1286
-
1287
- #: ../admin/views/ad-info-top.php:8 ../classes/ad_placements.php:51
1288
- msgid "After Content"
1289
- msgstr "Depois do Conteúdo"
1290
-
1291
- #: ../admin/views/ad-info-top.php:9
1292
- msgid "Manage Sidebar"
1293
- msgstr "Gerenciar Barra Lateral"
1294
-
1295
- #: ../admin/views/ad-info-top.php:11
1296
- msgid "Show Pro Places"
1297
- msgstr "Mostrar Lugares Pro"
1298
-
1299
- #: ../admin/views/ad-info-top.php:14
1300
- msgid "Show Sticky Places"
1301
- msgstr "Mostrar Lugares Fixos"
1302
-
1303
- #: ../admin/views/ad-info-top.php:17
1304
- msgid "Show PopUp"
1305
- msgstr "Mostrar PopUp"
1306
-
1307
- #: ../admin/views/ad-info-top.php:21
1308
- #, php-format
1309
- msgid "Or use the shortcode %s to insert the ad into the content manually."
1310
- msgstr "Ou usar o shortcode %s para inserir o anúncio no conteúdo manualmente."
1311
-
1312
- #: ../admin/views/ad-info-top.php:22
1313
- #, php-format
1314
- msgid ""
1315
- "Learn more about your choices to display an ad in the <a href=\"%s\" "
1316
- "target=\"_blank\">manual</a>."
1317
- msgstr ""
1318
- "Saiba mais sobre suas escolhas de exibição de um anúncio no <a href=\"%s\" "
1319
- "target=\"_blank\">manual</a>."
1320
-
1321
- #: ../admin/views/ad-info.php:2
1322
- #, php-format
1323
- msgid "Ad Id: %s"
1324
- msgstr "ID do Anúncio: %s"
1325
-
1326
- #: ../admin/views/ad-info.php:5
1327
- msgid "theme function"
1328
- msgstr "função do tema"
1329
-
1330
- #: ../admin/views/ad-info.php:7
1331
- #, php-format
1332
- msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1333
- msgstr "Encontre mais opções de exibição no <a href=\"%s\" target=\"_blank\">manual</a>."
1334
-
1335
- #: ../admin/views/ad-info.php:12
1336
- msgid "click to change"
1337
- msgstr "clique para alterar"
1338
-
1339
- #: ../admin/views/ad-info.php:16
1340
- msgid "Add a description"
1341
- msgstr "Adicionar uma descrição"
1342
-
1343
- #: ../admin/views/ad-info.php:19
1344
- msgid "Internal description or your own notes about this ad."
1345
- msgstr "Descrição interna ou suas próprias notas sobre este anúncio."
1346
-
1347
- #: ../admin/views/ad-list-filters.php:2
1348
- msgid "all ad types"
1349
- msgstr "todos os tipos de anúncios"
1350
-
1351
- #: ../admin/views/ad-list-filters.php:5
1352
- msgid "all ad sizes"
1353
- msgstr "todos os tamanhos de anúncios"
1354
-
1355
- #: ../admin/views/ad-list-filters.php:8
1356
- msgid "all ad dates"
1357
- msgstr "todas as datas de anúncios"
1358
-
1359
- #: ../admin/views/ad-list-filters.php:9
1360
- msgid "expired"
1361
- msgstr "expirado"
1362
-
1363
- #: ../admin/views/ad-list-filters.php:10
1364
- msgid "any expiry date"
1365
- msgstr "qualquer data de expiração"
1366
-
1367
- #: ../admin/views/ad-list-filters.php:11
1368
- msgid "planned"
1369
- msgstr ""
1370
- "\n"
1371
- "planejado"
1372
-
1373
- #: ../admin/views/ad-list-filters.php:14
1374
- msgid "all ad groups"
1375
- msgstr "todos os grupos de anúncios"
1376
-
1377
- #: ../admin/views/ad-main-metabox.php:3
1378
- msgid "No ad types defined"
1379
- msgstr "Nenhum tipo de anúncio definido"
1380
-
1381
- #: ../admin/views/ad-output-metabox.php:1
1382
- msgid "Everything connected to the ads layout and output."
1383
- msgstr "Tudo conectado ao layout dos anúncios e saída para exibição."
1384
-
1385
- #: ../admin/views/ad-output-metabox.php:4
1386
- msgid "Position"
1387
- msgstr "Posição"
1388
-
1389
- #: ../admin/views/ad-output-metabox.php:6
1390
- msgid "- default -"
1391
- msgstr "- padrão -"
1392
-
1393
- #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:52
1394
- msgid "default"
1395
- msgstr "padrão"
1396
-
1397
- #: ../admin/views/ad-output-metabox.php:8
1398
- msgid "left"
1399
- msgstr "esquerda"
1400
-
1401
- #: ../admin/views/ad-output-metabox.php:11
1402
- msgid "center"
1403
- msgstr "centro"
1404
-
1405
- #: ../admin/views/ad-output-metabox.php:14
1406
- msgid "right"
1407
- msgstr "direita"
1408
-
1409
- #: ../admin/views/ad-output-metabox.php:18
1410
- msgid ""
1411
- "Check this if you don't want the following elements to float around the ad. "
1412
- "(adds a clearfix)"
1413
- msgstr "Marque isso se você não quer elementos flutuando no entorno do anúncio."
1414
-
1415
- #: ../admin/views/ad-output-metabox.php:22
1416
- msgid "Margin"
1417
- msgstr "Margem"
1418
-
1419
- #: ../admin/views/ad-output-metabox.php:24
1420
- msgid "top:"
1421
- msgstr "topo:"
1422
-
1423
- #: ../admin/views/ad-output-metabox.php:26
1424
- msgid "right:"
1425
- msgstr "direita:"
1426
-
1427
- #: ../admin/views/ad-output-metabox.php:28
1428
- msgid "bottom:"
1429
- msgstr "abaixo:"
1430
-
1431
- #: ../admin/views/ad-output-metabox.php:30
1432
- msgid "left:"
1433
- msgstr "esquerda:"
1434
-
1435
- #: ../admin/views/ad-output-metabox.php:32
1436
- msgid "tip: use this to add a margin around the ad"
1437
- msgstr "dica: use isso para criar margem em torno do anúncio"
1438
-
1439
- #: ../admin/views/ad-output-metabox.php:35
1440
- msgid "container ID"
1441
- msgstr "ID do recipiente"
1442
-
1443
- #: ../admin/views/ad-output-metabox.php:38
1444
- msgid "Specify the id of the ad container. Leave blank for random or no id."
1445
- msgstr ""
1446
- "Especificar o id do recipiente do anúncio. Deixe em branco para aleatório ou "
1447
- "nenhum id."
1448
-
1449
- #: ../admin/views/ad-output-metabox.php:41
1450
- msgid "container classes"
1451
- msgstr "classes de recipiente"
1452
-
1453
- #: ../admin/views/ad-output-metabox.php:44
1454
- msgid ""
1455
- "Specify one or more classes for the container. Separate multiple classes "
1456
- "with a space"
1457
- msgstr ""
1458
- "Especifique uma ou mais classes para o recipiente. Várias classes separadas "
1459
- "com um espaço"
1460
-
1461
- #: ../admin/views/ad-output-metabox.php:47
1462
- msgid "Enable debug mode"
1463
- msgstr "Habilitar modo de depuração"
1464
-
1465
- #: ../admin/views/ad-parameters-size.php:1
1466
- msgid "size"
1467
- msgstr "tamanho"
1468
-
1469
- #: ../admin/views/ad-parameters-size.php:3
1470
- msgid "width"
1471
- msgstr "largura"
1472
-
1473
- #: ../admin/views/ad-parameters-size.php:4
1474
- msgid "height"
1475
- msgstr "altura"
1476
-
1477
- #: ../admin/views/ad-parameters-size.php:6
1478
- msgid "reserve this space"
1479
- msgstr "reservar este espaço"
1480
-
1481
- #: ../admin/views/ad-submitbox-meta.php:6
1482
- msgid "Set expiry date"
1483
- msgstr "Defina a data de expiração"
1484
-
1485
- #: ../admin/views/ad-submitbox-meta.php:12
1486
- msgid "Month"
1487
- msgstr "Mês"
1488
-
1489
- #: ../admin/views/ad-submitbox-meta.php:16
1490
- #, php-format
1491
- msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1492
- msgid "%1$s-%2$s"
1493
- msgstr "%1$s-%2$s"
1494
-
1495
- #: ../admin/views/ad-submitbox-meta.php:21
1496
- msgid "Day"
1497
- msgstr "Dia"
1498
-
1499
- #: ../admin/views/ad-submitbox-meta.php:22
1500
- msgid "Year"
1501
- msgstr "Ano"
1502
-
1503
- #: ../admin/views/ad-submitbox-meta.php:23
1504
- msgid "Hour"
1505
- msgstr "Hora"
1506
-
1507
- #: ../admin/views/ad-submitbox-meta.php:24
1508
- msgid "Minute"
1509
- msgstr "Minuto"
1510
-
1511
- #: ../admin/views/ad-submitbox-meta.php:29
1512
- #, php-format
1513
- msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1514
- msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1515
- msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
1516
-
1517
- #: ../admin/views/ad-visitor-metabox.php:4
1518
- msgid ""
1519
- "Display conditions that are based on the user. Use with caution on cached "
1520
- "websites."
1521
- msgstr "Exiba condições baseadas no usuário. Use com cautela se usar cache."
1522
-
1523
- #: ../admin/views/ad-visitor-metabox.php:28
1524
- msgid ""
1525
- "Visitor conditions limit the number of users who can see your ad. There is "
1526
- "no need to set visitor conditions if you want all users to see the ad."
1527
- msgstr ""
1528
- "Condições para visitante, limitar o número de usuários que podem ver seu "
1529
- "anúncio. Não há necessidade de estabelecer condições para visitante se você "
1530
- "quiser que todos os usuários vejam o anúncio."
1531
-
1532
- #: ../admin/views/ad-visitor-metabox.php:30
1533
- #, php-format
1534
- msgid ""
1535
- "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
1536
- "if dynamic features get cached."
1537
- msgstr ""
1538
- "Confira em <a href=\"%s\" target=\"_blank\">Anúncios Avançados Pró</a> se "
1539
- "características dinâmicas chegar em cache cache-busting."
1540
-
1541
- #: ../admin/views/ad-visitor-metabox.php:47
1542
- #, php-format
1543
- msgid ""
1544
- "Define the exact browser width for which an ad should be visible using the "
1545
- "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1546
- msgstr ""
1547
- "Definir a largura exata do navegador para que um anúncio seja visível usando "
1548
- "o <a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1549
-
1550
- #: ../admin/views/ad-visitor-metabox.php:92
1551
- msgid ""
1552
- "The visitor conditions below are deprecated. Please use the new version of "
1553
- "visitor conditions to replace it."
1554
- msgstr ""
1555
- "As condições para visitante abaixo estão obsoletas. Utilize a nova versão do "
1556
- "condições para visitante a fim de substituí-lo."
1557
-
1558
- #: ../admin/views/ad-visitor-metabox.php:98
1559
- msgid "Display on all devices"
1560
- msgstr "Exibir em todos os dispositivos"
1561
-
1562
- #: ../admin/views/ad-visitor-metabox.php:102
1563
- msgid "only on mobile devices"
1564
- msgstr "somente em smartphones"
1565
-
1566
- #: ../admin/views/ad-visitor-metabox.php:106
1567
- msgid "not on mobile devices"
1568
- msgstr "menos em smartphones"
1569
-
1570
- #: ../admin/views/debug.php:6 ../admin/views/settings.php:47
1571
- msgid "Debug Page"
1572
- msgstr "Página Debug"
1573
-
1574
- #: ../admin/views/debug.php:7
1575
- msgid "Work in progress"
1576
- msgstr "Trabalho em andamento"
1577
-
1578
- #: ../admin/views/feedback_disable.php:3
1579
- msgid "Thank you for helping to improve Advanced Ads."
1580
- msgstr "Obrigado por ajudar a melhorar Anúncios Avançados."
1581
-
1582
- #: ../admin/views/feedback_disable.php:4
1583
- msgid ""
1584
- "Your feedback will motivates me to work harder towards a professional ad "
1585
- "management solution."
1586
- msgstr ""
1587
- "Os seus comentários vão me motivar a trabalhar mais no sentido de uma "
1588
- "solução de gerenciamento de anúncios profissional."
1589
-
1590
- #: ../admin/views/feedback_disable.php:5
1591
- msgid "Why did you decide to disable Advanced Ads?"
1592
- msgstr "Por que você decidiu desativar Anúncios Avançados?"
1593
-
1594
- #: ../admin/views/feedback_disable.php:7
1595
- msgid "I stopped showing ads on my site"
1596
- msgstr "Eu parei de mostrar anúncios no meu site"
1597
-
1598
- #: ../admin/views/feedback_disable.php:8
1599
- #, php-format
1600
- msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1601
- msgstr "Eu sinto falta de um recurso ou <a href=\"%s\">add-on</a>"
1602
-
1603
- #: ../admin/views/feedback_disable.php:9
1604
- msgid "I have a technical problem"
1605
- msgstr "Eu tenho um problema técnico"
1606
-
1607
- #: ../admin/views/feedback_disable.php:10
1608
- msgid "other reason"
1609
- msgstr "Outra razão"
1610
-
1611
- #: ../admin/views/feedback_disable.php:12
1612
- msgid "Please specify, if possible"
1613
- msgstr "Por favor especifique, se possível"
1614
-
1615
- #: ../admin/views/feedback_disable.php:13
1616
- msgid "What would be a reason to return to Advanced Ads?"
1617
- msgstr "Qual seria uma razão para voltar para Anúncios Avançados?"
1618
-
1619
- #: ../admin/views/intro.php:18
1620
- msgid "5-Star Usability"
1621
- msgstr "Usabilidade 5 Estrelas"
1622
-
1623
- #: ../admin/views/intro.php:19
1624
- msgid ""
1625
- "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1626
- "standards. If you know how to publish a post then you know how to create an "
1627
- "ad."
1628
- msgstr ""
1629
- "Anúncios Avançados é poderoso e fácil de usar, porque está à construir nos "
1630
- "padrões WordPress. Se você sabe como publicar um post, então você sabe como "
1631
- "criar um anúncio."
1632
-
1633
- #: ../admin/views/intro.php:23
1634
- msgid "5-Star Support"
1635
- msgstr "Suporte 5 Estrelas"
1636
-
1637
- #: ../admin/views/intro.php:24
1638
- msgid ""
1639
- "I promise you the best supported ad management plugin for WordPress. Whether "
1640
- "a pro user or not, you can reach me easily through the support page, in the "
1641
- "chat on the homepage or replying to a newsletter."
1642
- msgstr ""
1643
- "Eu prometo a você o plugin de gerenciamento de anúncios e melhor suporte "
1644
- "para WordPress. Seja um usuário profissional ou não, você pode me alcançar "
1645
- "facilmente através da página de suporte, no chat na página inicial ou a "
1646
- "responder a um boletim de notícias."
1647
-
1648
- #: ../admin/views/intro.php:28
1649
- msgid "5-Star Experience"
1650
- msgstr "Experiência 5 Estrelas"
1651
-
1652
- #: ../admin/views/intro.php:29
1653
- msgid ""
1654
- "Advanced Ads was built out of my own experience. I am personally using it to "
1655
- "serve millions of ad impressions per month and constantly test new ways to "
1656
- "optimize ad settings."
1657
- msgstr ""
1658
- "Anúncios Avançados foi construído a partir de minha própria experiência. "
1659
- "Pessoalmente, estou usando-o para servir milhões de impressões de anúncios "
1660
- "por mês e constantemente testar novas maneiras de otimizar as configurações "
1661
- "anúncio."
1662
-
1663
- #: ../admin/views/intro.php:34
1664
- msgid "Welcome to <strong>Advanced Ads</strong>"
1665
- msgstr "Bem Vindo ao <strong>Anúncios Avançados</strong>"
1666
-
1667
- #: ../admin/views/intro.php:36
1668
- msgid "Let me give you an introduction into your future ad management solution."
1669
- msgstr ""
1670
- "Deixe-me dar-lhe uma introdução à sua solução de gerenciamento de anúncios "
1671
- "futuro."
1672
-
1673
- #: ../admin/views/intro.php:61
1674
- msgid "Next Steps"
1675
- msgstr "Próximos Passos"
1676
-
1677
- #: ../admin/views/intro.php:64
1678
- msgid "Subscribe to the Mailing List"
1679
- msgstr "Inscrever-se na Lista de Discussão"
1680
-
1681
- #: ../admin/views/intro.php:65
1682
- msgid "Subscribe to the newsletter and instantly"
1683
- msgstr "Assine a newsletter e instantaneamente"
1684
-
1685
- #: ../admin/views/intro.php:67
1686
- msgid "get 2 free add-ons."
1687
- msgstr "receba 2 add-ons gratuitos."
1688
-
1689
- #: ../admin/views/intro.php:68
1690
- msgid "reply to the welcome message with a question."
1691
- msgstr "responder à mensagem de boas-vindas com uma pergunta."
1692
-
1693
- #: ../admin/views/intro.php:69
1694
- msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1695
- msgstr "inscrever-se a um grupo dedicado para os tutoriais ou dicas do AdSense."
1696
-
1697
- #: ../admin/views/intro.php:79
1698
- #, php-format
1699
- msgid ""
1700
- "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
1701
- "watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
1702
- msgstr ""
1703
- "Comece por criar um anúncio <a href=\"%1$s\" target=\"blank\">agora mesmo</a> ou "
1704
- "assistir ao <a href=\"%2$s\" target=\"blank\">vídeo tutorial (3:29min)</a> "
1705
- "primeiro."
1706
-
1707
- #: ../admin/views/intro.php:82
1708
- msgid "Display your ad"
1709
- msgstr "Exibir seu anúncio"
1710
-
1711
- #: ../admin/views/intro.php:83
1712
- msgid ""
1713
- "You can display your ad using a shortcode, widget or one of the powerful "
1714
- "placements. Placements help you to inject ads into the content or place them "
1715
- "on your site without coding."
1716
- msgstr ""
1717
- "Você pode exibir seu anúncio usando um shortcode, widget ou um dos canais "
1718
- "poderosos. Locais ajuda-o a injetar anúncios no conteúdo ou coloca-os em seu "
1719
- "site sem codificação."
1720
-
1721
- #: ../admin/views/intro.php:85
1722
- msgid "List of all available placements"
1723
- msgstr "Lista de todos os locais disponíveis"
1724
-
1725
- #: ../admin/views/intro.php:86
1726
- msgid "Create a placement"
1727
- msgstr "Criar um novo local"
1728
-
1729
- #: ../admin/views/placements.php:8
1730
- msgid ""
1731
- "Couldn’t create the new placement. Please check your form field and whether "
1732
- "the name is already in use."
1733
- msgstr ""
1734
- "Não foi possível criar um novo local. Por favor, verifique o campo de "
1735
- "formulário e se o nome já está em uso."
1736
-
1737
- #: ../admin/views/placements.php:10
1738
- msgid "Placements updated"
1739
- msgstr "Locais atualizados"
1740
-
1741
- #: ../admin/views/placements.php:15
1742
- msgid ""
1743
- "Placements are physically places in your theme and posts. You can use them "
1744
- "if you plan to change ads and ad groups on the same place without the need "
1745
- "to change your templates."
1746
- msgstr ""
1747
- "Locais são lugares físicos em seu tema e posts. Você pode usá-los se você "
1748
- "pretende mudar anúncios e grupos de anúncios no mesmo lugar, sem a "
1749
- "necessidade de mudar seus templates."
1750
-
1751
- #: ../admin/views/placements.php:16
1752
- #, php-format
1753
- msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1754
- msgstr ""
1755
- "Veja também o manual para obter mais informações sobre <a "
1756
- "href=\"%s\">locais</a>."
1757
-
1758
- #: ../admin/views/placements.php:25
1759
- msgid "Options"
1760
- msgstr "Opções"
1761
-
1762
- #: ../admin/views/placements.php:42
1763
- #, php-format
1764
- msgid ""
1765
- "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1766
- "if the responsible add-on is activated."
1767
- msgstr ""
1768
- "Tipo de local \"%s\" está faltando e foi redefinido para \"padrão\". <br/>Por "
1769
- "favor, verifique se o add-on responsável está ativado."
1770
-
1771
- #: ../admin/views/placements.php:58
1772
- msgid "show usage"
1773
- msgstr "mostrar uso"
1774
-
1775
- #: ../admin/views/placements.php:70
1776
- msgid "Item"
1777
- msgstr "Ítem"
1778
-
1779
- #: ../admin/views/placements.php:72 ../admin/views/placements.php:176
1780
- msgid "--not selected--"
1781
- msgstr "--não selecionado--"
1782
-
1783
- #: ../admin/views/placements.php:92
1784
- msgid "Inject"
1785
- msgstr "Injetar"
1786
-
1787
- #: ../admin/views/placements.php:93
1788
- msgid "after"
1789
- msgstr "depois"
1790
-
1791
- #: ../admin/views/placements.php:93
1792
- msgid "before"
1793
- msgstr "antes"
1794
-
1795
- #: ../admin/views/placements.php:113
1796
- msgid "start counting from bottom"
1797
- msgstr "começar a contar de baixo"
1798
-
1799
- #: ../admin/views/placements.php:116
1800
- msgid "Important Notice"
1801
- msgstr "Notificação Importante"
1802
-
1803
- #: ../admin/views/placements.php:116
1804
- msgid ""
1805
- "Your server is missing an extension. This might break the content injection."
1806
- "<br/>Ignore this warning if everything works fine or else ask your hosting "
1807
- "provider to enable <em>mbstring</em>."
1808
- msgstr ""
1809
- "O servidor está faltando uma extensão. Isso pode quebrar a injeção de "
1810
- "conteúdo. <br/>Ignorar esse aviso se tudo funcionar bem ou então pergunte ao "
1811
- "seu provedor de hospedagem para permitir <em>mbstring</em>."
1812
-
1813
- #: ../admin/views/placements.php:126
1814
- msgid "advanced options"
1815
- msgstr "opções avançadas"
1816
-
1817
- #: ../admin/views/placements.php:134
1818
- msgctxt "checkbox to remove placement"
1819
- msgid "delete"
1820
- msgstr "excluir"
1821
-
1822
- #: ../admin/views/placements.php:140
1823
- msgid "Save Placements"
1824
- msgstr "Salvar Local"
1825
-
1826
- #: ../admin/views/placements.php:142
1827
- msgid "Create a new placement"
1828
- msgstr "Criar um novo Local"
1829
-
1830
- #: ../admin/views/placements.php:143
1831
- msgid "New Placement"
1832
- msgstr "Novo Local"
1833
-
1834
- #: ../admin/views/placements.php:149
1835
- msgid "Choose a placement type"
1836
- msgstr "Escolha um tipo de local"
1837
-
1838
- #: ../admin/views/placements.php:150
1839
- #, php-format
1840
- msgid ""
1841
- "Placement types define where the ad is going to be displayed. Learn more "
1842
- "about the different types from the <a href=\"%s\">manual</a>"
1843
- msgstr ""
1844
- "Defina os tipos de local em que o anúncio será exibido. Saiba mais sobre os "
1845
- "diferentes tipos no <a href=\"%s\">Manual</a>."
1846
-
1847
- #: ../admin/views/placements.php:167
1848
- msgid "Please select a placement type."
1849
- msgstr "Por favor selecione um tipo de local."
1850
-
1851
- #: ../admin/views/placements.php:169
1852
- msgid "Choose a Name"
1853
- msgstr "Escolha um Nome"
1854
-
1855
- #: ../admin/views/placements.php:170
1856
- msgid ""
1857
- "The name of the placement is only visible to you. Tip: choose a descriptive "
1858
- "one, e.g. <em>Below Post Headline</em>."
1859
- msgstr ""
1860
- "O nome do local é visível apenas para você. Dica: escolha um descritivo, por "
1861
- "exemplo; <em>Abaixo da Headline do Post</em>."
1862
-
1863
- #: ../admin/views/placements.php:171
1864
- msgid "Placement Name"
1865
- msgstr "Nome do Local"
1866
-
1867
- #: ../admin/views/placements.php:172
1868
- msgid "Please enter a name for your placement."
1869
- msgstr "Por favor digite um nome para seu local."
1870
-
1871
- #: ../admin/views/placements.php:173
1872
- msgid "Choose the Ad or Group"
1873
- msgstr "Escolha o Anúncio ou Grupo"
1874
-
1875
- #: ../admin/views/placements.php:174
1876
- msgid "The ad or group that should be displayed."
1877
- msgstr "O anúncio ou grupo que deve ser exibido."
1878
-
1879
- #: ../admin/views/placements.php:193
1880
- msgid "Save New Placement"
1881
- msgstr "Salvar Novo Local"
1882
-
1883
- #: ../admin/views/post-ad-settings-metabox.php:3
1884
- msgid "Disable ads on this page"
1885
- msgstr "Desabilitar Anúncios nesta página"
1886
-
1887
- #: ../admin/views/setting-license.php:5
1888
- msgid "Your license expired."
1889
- msgstr "Sua licença expirou."
1890
-
1891
- #: ../admin/views/setting-license.php:6
1892
- #, php-format
1893
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
1894
- msgstr "<a href=\"%s\" target=\"_blank\">Renová-la com um desconto</a>.\n"
1895
-
1896
- #: ../admin/views/setting-license.php:14
1897
- #, php-format
1898
- msgid "(%d days left)"
1899
- msgstr "(%d dias restantes)"
1900
-
1901
- #: ../admin/views/setting-license.php:18
1902
- msgid "License key"
1903
- msgstr "Chave de licença"
1904
-
1905
- #: ../admin/views/setting-license.php:28
1906
- msgid "Deactivate License"
1907
- msgstr "Licença Desativada"
1908
-
1909
- #: ../admin/views/setting-license.php:35
1910
- msgid "Activate License"
1911
- msgstr "Ativar Licença"
1912
-
1913
- #: ../admin/views/setting-license.php:39
1914
- msgid "License key invalid"
1915
- msgstr "Chave de licença inválida"
1916
-
1917
- #: ../admin/views/setting-license.php:42
1918
- msgid "active"
1919
- msgstr "ativa"
1920
-
1921
- #: ../admin/views/settings-disable-ads.php:3
1922
- msgid "Disable all ads in frontend"
1923
- msgstr "Desabilitar todos os anúncios no site"
1924
-
1925
- #: ../admin/views/settings-disable-ads.php:4
1926
- msgid ""
1927
- "Use this option to disable all ads in the frontend, but still be able to use "
1928
- "the plugin."
1929
- msgstr ""
1930
- "Esta opção irá desativar todos os anúncios no site, mas ainda mantém o "
1931
- "funcionamento do plugin."
1932
-
1933
- #: ../admin/views/settings-disable-ads.php:8
1934
- msgid "Disable ads on 404 error pages"
1935
- msgstr "Desabilitar Anúncios na página 404"
1936
-
1937
- #: ../admin/views/settings-disable-ads.php:12
1938
- msgid "Disable ads on non-singular pages"
1939
- msgstr "Desabilitar Anúncios na página de listagem de conteúdo"
1940
-
1941
- #: ../admin/views/settings-disable-ads.php:13
1942
- msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
1943
- msgstr ""
1944
- "Ex: páginas de arquivos, como categorias, tags, autores, primeira página (se "
1945
- "uma lista)"
1946
-
1947
- #: ../admin/views/settings-disable-ads.php:16
1948
- msgid "Disable ads on secondary queries"
1949
- msgstr "Desativar anúncios em consultas secundárias"
1950
-
1951
- #: ../admin/views/settings-disable-ads.php:17
1952
- msgid ""
1953
- "Secondary queries are custom queries of posts outside the main query of a "
1954
- "page. Try this option if you see ads injected on places where they shouldn’t "
1955
- "appear."
1956
- msgstr ""
1957
- "Consultas secundárias são consultas personalizadas de posts fora da consulta "
1958
- "principal de uma página. Experimente esta opção se você ver anúncios "
1959
- "injetados em lugares onde eles não devem aparecer."
1960
-
1961
- #: ../admin/views/settings-disable-ads.php:21
1962
- msgid "Disable ads in Feed"
1963
- msgstr "Desativar anúncios no Feed"
1964
-
1965
- #: ../admin/views/settings.php:36
1966
- msgid "Save settings on this page"
1967
- msgstr "Salve as configurações nesta página"
1968
-
1969
- #: ../admin/views/settings.php:48
1970
- msgid "Welcome Page"
1971
- msgstr "Bem Vindo à Página"
1972
-
1973
- #: ../admin/views/settings.php:49
1974
- msgid "Advanced Ads on WordPress.org"
1975
- msgstr "Anúncios Avançados em WordPress.org"
1976
-
1977
- #: ../admin/views/settings.php:49
1978
- msgid "Advanced Ads on wp.org"
1979
- msgstr "Anúncios Avançados em wp.org"
1980
-
1981
- #: ../admin/views/settings.php:50
1982
- msgid "the company behind Advanced Ads"
1983
- msgstr "a companhia por trás do Anúncios Avançados"
1984
-
1985
- #: ../admin/views/support.php:8
1986
- msgid "Possible Issues"
1987
- msgstr "Possíveis Questões"
1988
-
1989
- #: ../admin/views/support.php:9
1990
- msgid ""
1991
- "Please fix the red highlighted issues on this page or try to understand "
1992
- "their consequences before contacting support."
1993
- msgstr ""
1994
- "Por favor corrija as questões destacadas em vermelho sobre esta página ou "
1995
- "tentar compreender as suas consequências antes de contatar o suporte."
1996
-
1997
- #: ../admin/views/support.php:13
1998
- #, php-format
1999
- msgid ""
2000
- "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2001
- "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2002
- "Please ask your hosting provider for more information."
2003
- msgstr ""
2004
- "Sua <strong>versão do PHP (%s) é muito baixa</strong>. Anúncios Avançados é "
2005
- "construído para PHP 5.3 e superior. Pode funcionar, mas a atualização do PHP "
2006
- altamente recomendada. Por favor, pergunte ao seu provedor de hospedagem "
2007
- "para obter mais informações."
2008
-
2009
- #: ../admin/views/support.php:16
2010
- #, php-format
2011
- msgid ""
2012
- "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2013
- "rotation or visitor conditions might not work properly. Use the cache-"
2014
- "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
2015
- "ads dynamically."
2016
- msgstr ""
2017
- "Seu <strong>site usa o cache</strong>. Algumas características dinâmicas, "
2018
- "como a rotação de anúncios ou condições visitante pode não funcionar "
2019
- "corretamente. Use o recurso de cache-rebentando de <a href=\"%s\" "
2020
- "target=\"_blank\">Anúncios Avançados Pro</a> para carregar anúncios "
2021
- "dinamicamente."
2022
-
2023
- #: ../admin/views/support.php:19
2024
- msgid "There is a <strong>new WordPress version available</strong>. Please update."
2025
- msgstr ""
2026
- " uma <strong>nova versão do WordPress disponível</ strong>. Por favor "
2027
- "atualize."
2028
-
2029
- #: ../admin/views/support.php:22
2030
- msgid "There are <strong>plugin updates available</strong>. Please update."
2031
- msgstr ""
2032
- " atualizações de <strong>plugins disponíveis</strong>. Por favor atualize-"
2033
- "os."
2034
-
2035
- #: ../admin/views/support.php:25
2036
- #, php-format
2037
- msgid ""
2038
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
2039
- "missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
2040
- msgstr ""
2041
- "Uma ou mais chaves de licença para <strong>Anúncios Avançados add-ons são "
2042
- "inválidas ou em falta</strong>. Por favor, adicione as chaves de licença "
2043
- "válidas <a href=\"%s\">aqui</a>."
2044
-
2045
- #: ../admin/views/support.php:31
2046
- #, php-format
2047
- msgid ""
2048
- "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2049
- "site performance, it is known to alter code, including scripts from ad "
2050
- "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
2051
- "support for Autoptimize."
2052
- msgstr ""
2053
- "<strong>Autoptimize plug-in detectado</strong>. Enquanto este plugin é ótimo "
2054
- "para o desempenho do site, ele é conhecido por alterar o código, incluindo "
2055
- "os scripts de redes de anúncios. <a href=\"%s\" target=\"_blank\">Anúncios "
2056
- "Avançados Pro</a> tem uma build-in suporte para Autoptimize."
2057
-
2058
- #: ../admin/views/support.php:34
2059
- #, php-format
2060
- msgid ""
2061
- "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2062
- "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2063
- msgstr ""
2064
- "Plugins que são conhecidos por causar problemas (parciais): "
2065
- "<strong>%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Saiba mais</a>."
2066
-
2067
- #: ../admin/views/support.php:38
2068
- #, php-format
2069
- msgid ""
2070
- "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2071
- "href=\"%s\">settings</a>."
2072
- msgstr ""
2073
- "Os anúncios estão desativados para todas ou algumas páginas. Consulte "
2074
- "\"anúncios desabilitados\" em <a href=\"%s\">configurações</a>."
2075
-
2076
- #: ../admin/views/support.php:49
2077
- msgid "Search"
2078
- msgstr "Pesquisar"
2079
-
2080
- #: ../admin/views/support.php:50
2081
- msgid ""
2082
- "Use the following form to search for solutions in the manual on "
2083
- "wpadvancedads.com"
2084
- msgstr ""
2085
- "Utilize o formulário abaixo para procurar soluções no manual sobre "
2086
- "wpadvancedads.com"
2087
-
2088
- #: ../admin/views/support.php:53
2089
- msgid "search"
2090
- msgstr "pesquisar"
2091
-
2092
- #: ../admin/views/support.php:55
2093
- msgid "Contact"
2094
- msgstr "Contato"
2095
-
2096
- #: ../admin/views/support.php:56
2097
- #, php-format
2098
- msgid ""
2099
- "Please search the manual for a solution and take a look at <a href=\"%s\" "
2100
- "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2101
- msgstr ""
2102
- "Por favor, procure o manual para uma solução e de uma olhada em <a href=\"%s\" "
2103
- "Anúncios target=\"_blank\">Anúncios não aparecendo?</a> antes de entrar em "
2104
- "contato comigo para obter ajuda."
2105
-
2106
- #: ../admin/views/support.php:58
2107
- msgid "Email was successfully sent."
2108
- msgstr "E-mail foi enviado com sucesso."
2109
-
2110
- #: ../admin/views/support.php:67
2111
- msgid "your email"
2112
- msgstr "seu e-mail"
2113
-
2114
- #: ../admin/views/support.php:71
2115
- msgid "your name"
2116
- msgstr "seu nome"
2117
-
2118
- #: ../admin/views/support.php:75
2119
- msgid "your message"
2120
- msgstr "sua mensagem"
2121
-
2122
- #: ../admin/views/support.php:80
2123
- msgid "send"
2124
- msgstr "enviar"
2125
-
2126
- #: ../admin/views/notices/adblock.php:3
2127
- msgid ""
2128
- "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2129
- "ad setup."
2130
- msgstr ""
2131
- "Por favor, desative seu <strong>AdBlocker</strong> para evitar problemas com "
2132
- "a sua configuração de anúncios."
2133
-
2134
- #: ../classes/ad_placements.php:31
2135
- msgid "Manual Placement"
2136
- msgstr "Manual de Locais"
2137
-
2138
- #: ../classes/ad_placements.php:32
2139
- msgid "Manual placement to use as function or shortcode."
2140
- msgstr "Manual de locais para usar como função ou shortcode."
2141
-
2142
- #: ../classes/ad_placements.php:36
2143
- msgid "Header Code"
2144
- msgstr "Código no Cabeçalho"
2145
-
2146
- #: ../classes/ad_placements.php:37
2147
- msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
2148
- msgstr ""
2149
- "Injetado no Cabeçalho (antes de fechar a Tag &lt;/head&gt; muitas vezes não "
2150
- "visível)."
2151
-
2152
- #: ../classes/ad_placements.php:41
2153
- msgid "Footer Code"
2154
- msgstr "Código no Rodapé"
2155
-
2156
- #: ../classes/ad_placements.php:42
2157
- msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
2158
- msgstr "Injetado no Rodapé (antes de fechar a Tag &lt;/body&gt;)."
2159
-
2160
- #: ../classes/ad_placements.php:47
2161
- msgid "Injected before the post content."
2162
- msgstr "Inserido antes do post"
2163
-
2164
- #: ../classes/ad_placements.php:52
2165
- msgid "Injected after the post content."
2166
- msgstr "Inserido depois do post"
2167
-
2168
- #: ../classes/ad_placements.php:56
2169
- msgid "Post Content"
2170
- msgstr "Conteúdo do Post"
2171
-
2172
- #: ../classes/ad_placements.php:57
2173
- msgid ""
2174
- "Injected into the post content. You can choose the paragraph after which the "
2175
- "ad content is displayed."
2176
- msgstr ""
2177
- "Inserido no conteúdo do post. Você pode escolher o parágrafo em que o "
2178
- "anúncio será exibido."
2179
-
2180
- #: ../classes/ad_placements.php:61
2181
- msgid "Sidebar Widget"
2182
- msgstr "Widget da Barra Lateral"
2183
-
2184
- #: ../classes/ad_placements.php:62
2185
- msgid ""
2186
- "Create a sidebar widget with an ad. Can be placed and used like any other "
2187
- "widget."
2188
- msgstr ""
2189
- "Criar um widget na barra lateral com um anúncio. Pode ser colocado e "
2190
- "utilizado como qualquer outro widget."
2191
-
2192
- #: ../classes/ad_placements.php:210
2193
- #, php-format
2194
- msgid "paragraph (%s)"
2195
- msgstr "parágrafo (%s)"
2196
-
2197
- #: ../classes/ad_placements.php:211
2198
- #, php-format
2199
- msgid "paragraph without image (%s)"
2200
- msgstr "parágrafo sem imagem (%s)"
2201
-
2202
- #: ../classes/ad_placements.php:212
2203
- #, php-format
2204
- msgid "headline 2 (%s)"
2205
- msgstr "Título 2 (%s)"
2206
-
2207
- #: ../classes/ad_placements.php:213
2208
- #, php-format
2209
- msgid "headline 3 (%s)"
2210
- msgstr "Título 3 (%s)"
2211
-
2212
- #: ../classes/ad_placements.php:214
2213
- #, php-format
2214
- msgid "headline 4 (%s)"
2215
- msgstr "Título 4 (%s)"
2216
-
2217
- #: ../classes/ad_type_content.php:35
2218
- msgid "Rich Content"
2219
- msgstr "Conteúdo rico"
2220
-
2221
- #: ../classes/ad_type_content.php:36
2222
- msgid ""
2223
- "The full content editor from WordPress with all features like shortcodes, "
2224
- "image upload or styling, but also simple text/html mode for scripts and code."
2225
- msgstr ""
2226
- "O editor de conteúdo do WordPress com todas as suas funcções, como "
2227
- "shortcodes, mas também simples editores de HTML."
2228
-
2229
- #: ../classes/ad_type_group.php:31
2230
- msgid ""
2231
- "Choose an existing ad group. Use this type when you want to assign the same "
2232
- "display and visitor conditions to all ads in that group."
2233
- msgstr ""
2234
- "Escolha um grupo de anúncios existente. Use este tipo quando você deseja "
2235
- "atribuir as mesmas condições de exibição e visitante para todos os anúncios "
2236
- "nesse grupo."
2237
-
2238
- #: ../classes/ad_type_group.php:84
2239
- msgid "ad group"
2240
- msgstr "grupo de anúncios"
2241
-
2242
- #: ../classes/ad_type_image.php:34
2243
- msgid "Image Ad"
2244
- msgstr "Imagem do Anúncio"
2245
-
2246
- #: ../classes/ad_type_image.php:35
2247
- msgid "Ads in various image formats."
2248
- msgstr "Imagem de anúncios em vários formatos."
2249
-
2250
- #: ../classes/ad_type_image.php:55
2251
- msgid "Insert File"
2252
- msgstr "Inserir Arquivo"
2253
-
2254
- #: ../classes/ad_type_image.php:55
2255
- msgid "Insert"
2256
- msgstr "Inserir"
2257
-
2258
- #: ../classes/ad_type_image.php:55
2259
- msgid "select image"
2260
- msgstr "selecionar imagem"
2261
-
2262
- #: ../classes/ad_type_image.php:56
2263
- msgid "edit"
2264
- msgstr "editar"
2265
-
2266
- #: ../classes/ad_type_image.php:65
2267
- msgid "url"
2268
- msgstr "url"
2269
-
2270
- #: ../classes/ad_type_image.php:67
2271
- #, php-format
2272
- msgid ""
2273
- "Pro: Open this url in a new window and track impressions and clicks with the "
2274
- "<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
2275
- msgstr ""
2276
- "Pro: Abra essa url em uma nova janela e rastrear impressões e cliques com o "
2277
- "<a href=\"%s\" target=\"_blank\">Add-on de Rastreamento</a>."
2278
-
2279
- #: ../classes/ad_type_plain.php:31
2280
- msgid "Plain Text and Code"
2281
- msgstr "Texto simples e Código"
2282
-
2283
- #: ../classes/ad_type_plain.php:32
2284
- msgid ""
2285
- "Simple text editor without any filters. You might use it to display "
2286
- "unfiltered content, php code or javascript. Shortcodes and other WordPress "
2287
- "content field magic does not work here."
2288
- msgstr ""
2289
- "Texto simples sem nenhum filtro. Você pode querer isso para exibir conteúdo "
2290
- "sem restrições, código PHP ou JavaScript. Shortcodes a outras funções do WP "
2291
- "não têm efeito aqui."
2292
-
2293
- #: ../classes/ad_type_plain.php:52
2294
- msgid "Insert plain text or code into this field."
2295
- msgstr "Insira o texo ou código no campo."
2296
-
2297
- #: ../classes/ad_type_plain.php:88
2298
- msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2299
- msgstr "Executar código PHP (envolto em <code>&lt;?php ?&gt;</code>)"
2300
-
2301
- #: ../classes/checks.php:223
2302
- #, php-format
2303
- msgid ""
2304
- "Possible conflict between jQueryUI library, used by Advanced Ads and other "
2305
- "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
2306
- "misfortunate formats in forms, but should not damage features."
2307
- msgstr ""
2308
- "Possível conflito entre biblioteca jQueryUI, usado por anúncios avançados e "
2309
- "outras bibliotecas (provavelmente <a href=\"%s\">Twitter Bootstrap</a>). Isso "
2310
- "pode levar a formatos em formas infelizes , mas não deve danificar recursos."
2311
-
2312
- #: ../classes/display-conditions.php:69
2313
- msgid "post type"
2314
- msgstr "tipo de postagem"
2315
-
2316
- #: ../classes/display-conditions.php:70 ../includes/array_ad_conditions.php:40
2317
- msgid "Choose the public post types on which to display the ad."
2318
- msgstr "Escolha o tipo de conteúdo para exibir o anúncio"
2319
-
2320
- #: ../classes/display-conditions.php:76
2321
- msgid "specific pages"
2322
- msgstr "páginas específicas"
2323
-
2324
- #: ../classes/display-conditions.php:77 ../includes/array_ad_conditions.php:58
2325
- msgid ""
2326
- "Choose on which individual posts, pages and public post type pages you want "
2327
- "to display or hide ads."
2328
- msgstr ""
2329
- "Escolha em qual post, página e tipos de conteúdo você quer exibir/esconder "
2330
- "anúncios."
2331
-
2332
- #: ../classes/display-conditions.php:82
2333
- msgid "general conditions"
2334
- msgstr "condições gerais"
2335
-
2336
- #: ../classes/display-conditions.php:88
2337
- msgid "author"
2338
- msgstr "autor"
2339
-
2340
- #: ../classes/display-conditions.php:113
2341
- #, php-format
2342
- msgid "archive: %s"
2343
- msgstr "arquivo: %s"
2344
-
2345
- #: ../classes/display-conditions.php:214 ../classes/display-conditions.php:258 ..
2346
- #: classes/display-conditions.php:346
2347
- msgctxt "Error message shown when no display condition term is selected"
2348
- msgid "Please select some items."
2349
- msgstr "Por favor, selecione alguns itens."
2350
-
2351
- #: ../classes/display-conditions.php:243 ../classes/display-conditions.php:296 ..
2352
- #: classes/display-conditions.php:371
2353
- msgid "show"
2354
- msgstr "mostrar"
2355
-
2356
- #: ../classes/display-conditions.php:244 ../classes/display-conditions.php:297 ..
2357
- #: classes/display-conditions.php:372
2358
- msgid "hide"
2359
- msgstr "esconder"
2360
-
2361
- #: ../classes/display-conditions.php:336
2362
- msgctxt "display the terms search field on ad edit page"
2363
- msgid "add more terms"
2364
- msgstr "adicionar mais termos"
2365
-
2366
- #: ../classes/display-conditions.php:337
2367
- msgid "add more terms"
2368
- msgstr "adicionar mais termos"
2369
-
2370
- #: ../classes/display-conditions.php:339
2371
- msgid "term name or id"
2372
- msgstr "nome ou id do termo"
2373
-
2374
- #: ../classes/display-conditions.php:400
2375
- msgid "title or id"
2376
- msgstr "título ou id"
2377
-
2378
- #: ../classes/display-conditions.php:445 ../includes/array_ad_conditions.php:63
2379
- msgid "Home Page"
2380
- msgstr "Página Inicial"
2381
-
2382
- #: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:64
2383
- msgid "show on Home page"
2384
- msgstr "mostrar na página inicial"
2385
-
2386
- #: ../classes/display-conditions.php:450 ../includes/array_ad_conditions.php:68
2387
- msgid "Singular Pages"
2388
- msgstr "Páginas Simples"
2389
-
2390
- #: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:69
2391
- msgid "show on singular pages/posts"
2392
- msgstr "mostrar no singular páginas/posts"
2393
-
2394
- #: ../classes/display-conditions.php:455 ../includes/array_ad_conditions.php:73
2395
- msgid "Archive Pages"
2396
- msgstr "Páginas de Arquivos"
2397
-
2398
- #: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:74
2399
- msgid "show on any type of archive page (category, tag, author and date)"
2400
- msgstr "mostrar em qualquer tipo de página (categoria, tag, autor e data)"
2401
-
2402
- #: ../classes/display-conditions.php:460 ../includes/array_ad_conditions.php:78
2403
- msgid "Search Results"
2404
- msgstr "Resultados da Pesquisa"
2405
-
2406
- #: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:79
2407
- msgid "show on search result pages"
2408
- msgstr "mostrar nas páginas de resultados de busca"
2409
-
2410
- #: ../classes/display-conditions.php:465 ../includes/array_ad_conditions.php:83
2411
- msgid "404 Page"
2412
- msgstr "Página 404"
2413
-
2414
- #: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:84
2415
- msgid "show on 404 error page"
2416
- msgstr "mostrar na página de erro 404"
2417
-
2418
- #: ../classes/display-conditions.php:470 ../includes/array_ad_conditions.php:88
2419
- msgid "Attachment Pages"
2420
- msgstr "Páginas de Anexos"
2421
-
2422
- #: ../classes/display-conditions.php:471 ../includes/array_ad_conditions.php:89
2423
- msgid "show on attachment pages"
2424
- msgstr "mostrar nas páginas de anexos"
2425
-
2426
- #: ../classes/display-conditions.php:475 ../includes/array_ad_conditions.php:93
2427
- msgid "Secondary Queries"
2428
- msgstr "Consultas Secundárias"
2429
-
2430
- #: ../classes/display-conditions.php:476 ../includes/array_ad_conditions.php:94
2431
- msgid "allow ads in secondary queries"
2432
- msgstr "permitir anúncios em consultas secundárias"
2433
-
2434
- #: ../classes/display-conditions.php:480
2435
- msgid "Feed"
2436
- msgstr "Feed"
2437
-
2438
- #: ../classes/display-conditions.php:481
2439
- msgid "allow ads in Feed"
2440
- msgstr "permitir anúncios no Feed"
2441
-
2442
- #: ../classes/EDD_SL_Plugin_Updater.php:177
2443
- #, php-format
2444
- msgid ""
2445
- "There is a new version of %1$s available. <a target=\"_blank\" "
2446
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
2447
- msgstr ""
2448
- "Há uma nova versão do %1$s disponível. <a target=\"_blank\" class=\"thickbox\" "
2449
- "href=\"%2$s\">Ver detalhes da versão %3$s</a>."
2450
-
2451
- #: ../classes/EDD_SL_Plugin_Updater.php:184
2452
- #, php-format
2453
- msgid ""
2454
- "There is a new version of %1$s available. <a target=\"_blank\" "
2455
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
2456
- "href=\"%4$s\">update now</a>."
2457
- msgstr ""
2458
- " uma nova versão do %1$s disponível. <a target=\"_blank\" class=\"thickbox\" "
2459
- "href=\"%2$s\">Ver detalhes da versão %3$s</a> ou <a href=\"%4$s\">atualizar "
2460
- "agora</a>."
2461
-
2462
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2463
- msgid "You do not have permission to install plugin updates"
2464
- msgstr "Você não tem permissão para instalar atualizações do plugin"
2465
-
2466
- #: ../classes/EDD_SL_Plugin_Updater.php:324
2467
- msgid "Error"
2468
- msgstr "Erro"
2469
-
2470
- #: ../classes/visitor-conditions.php:32
2471
- msgid "mobile device"
2472
- msgstr "dispositivo móvel"
2473
-
2474
- #: ../classes/visitor-conditions.php:33
2475
- msgid "Display ads only on mobile devices or hide them."
2476
- msgstr "Exibir anúncios somente em dispositivos móveis ou ocultá-los."
2477
-
2478
- #: ../classes/visitor-conditions.php:39
2479
- msgid "logged in visitor"
2480
- msgstr "visitante logado"
2481
-
2482
- #: ../classes/visitor-conditions.php:40
2483
- msgid "Whether the visitor has to be logged in or not in order to see the ads."
2484
- msgstr "Se o visitante deve estar logado ou não, para visualizar os anúncios."
2485
-
2486
- #: ../classes/visitor-conditions.php:73
2487
- #, php-format
2488
- msgid ""
2489
- "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2490
- "target=\"_blank\">Responsive add-on</a>"
2491
- msgstr ""
2492
- "Pro: Exibir anúncios por o espaço disponível no dispositivo usando o <a "
2493
- "href=\"%s\" target=\"_blank\">Add-on Responsivo</a>."
2494
-
2495
- #: ../classes/visitor-conditions.php:101
2496
- msgid "is"
2497
- msgstr "está"
2498
-
2499
- #: ../classes/visitor-conditions.php:102
2500
- msgid "is not"
2501
- msgstr "não está"
2502
-
2503
- #: ../classes/visitor-conditions.php:107
2504
- msgid "Manual and Troubleshooting"
2505
- msgstr "Manual e Resolução de Problemas"
2506
-
2507
- #: ../classes/visitor-conditions.php:136
2508
- msgid "equal"
2509
- msgstr "igual"
2510
-
2511
- #: ../classes/visitor-conditions.php:137
2512
- msgid "equal or higher"
2513
- msgstr "igual ou superior"
2514
-
2515
- #: ../classes/visitor-conditions.php:138
2516
- msgid "equal or lower"
2517
- msgstr "igual ou inferior"
2518
-
2519
- #: ../classes/visitor-conditions.php:168
2520
- msgid "contains"
2521
- msgstr "contenha"
2522
-
2523
- #: ../classes/visitor-conditions.php:169
2524
- msgid "starts with"
2525
- msgstr "começa com"
2526
-
2527
- #: ../classes/visitor-conditions.php:170
2528
- msgid "ends with"
2529
- msgstr "termina com"
2530
-
2531
- #: ../classes/visitor-conditions.php:171
2532
- msgid "matches"
2533
- msgstr "corresponde"
2534
-
2535
- #: ../classes/visitor-conditions.php:172
2536
- msgid "matches regex"
2537
- msgstr "corresponda regex"
2538
-
2539
- #: ../classes/visitor-conditions.php:173
2540
- msgid "does not contain"
2541
- msgstr "não contém"
2542
-
2543
- #: ../classes/visitor-conditions.php:174
2544
- msgid "does not start with"
2545
- msgstr "não começa com"
2546
-
2547
- #: ../classes/visitor-conditions.php:175
2548
- msgid "does not end with"
2549
- msgstr "não termina com"
2550
-
2551
- #: ../classes/visitor-conditions.php:176
2552
- msgid "does not match"
2553
- msgstr "não corresponde"
2554
-
2555
- #: ../classes/visitor-conditions.php:177
2556
- msgid "does not match regex"
2557
- msgstr "não corresponde regex"
2558
-
2559
- #: ../classes/widget.php:25
2560
- msgid "Display Ads and Ad Groups."
2561
- msgstr "Exibir Anúncios e Grupos de Anúncios."
2562
-
2563
- #: ../classes/widget.php:67
2564
- msgid "Title:"
2565
- msgstr "Título:"
2566
-
2567
- #: ../includes/array_ad_conditions.php:39
2568
- msgid "Post Types"
2569
- msgstr "Tipo de Post"
2570
-
2571
- #: ../includes/array_ad_conditions.php:45
2572
- msgid "Categories, Tags and Taxonomies"
2573
- msgstr "Categorias, Tags e Taxonomias"
2574
-
2575
- #: ../includes/array_ad_conditions.php:46
2576
- msgid ""
2577
- "Choose terms from public category, tag and other taxonomies a post must "
2578
- "belong to in order to have ads."
2579
- msgstr ""
2580
- "Escolha os termos de categorias, tag e outra taxonomia que um post deve ter "
2581
- "para exibir anúncios."
2582
-
2583
- #: ../includes/array_ad_conditions.php:51
2584
- msgid "Category Archives"
2585
- msgstr "Categorias de Arquivo"
2586
-
2587
- #: ../includes/array_ad_conditions.php:52
2588
- msgid "comma seperated IDs of category archives"
2589
- msgstr "IDs dos arquivos de categorias separados por vírgula"
2590
-
2591
- #: ../includes/array_ad_conditions.php:57
2592
- msgid "Individual Posts, Pages and Public Post Types"
2593
- msgstr "Posts individuais, Páginas e Tipos de Posts Públicos"
2594
-
2595
- #: ../modules/ad-blocker/admin/admin.php:133
2596
- msgid "The asset folder was rebuilt successfully"
2597
- msgstr "A pasta de ativos foi reconstruída com sucesso"
2598
-
2599
- #: ../modules/ad-blocker/admin/admin.php:218
2600
- msgid "Ad blocker fix"
2601
- msgstr "Corrigir bloqueador de anúncio"
2602
-
2603
- #: ../modules/ad-blocker/admin/admin.php:257
2604
- msgid "There is no writable upload folder"
2605
- msgstr "Não existe nenhuma pasta de upload gravável"
2606
-
2607
- #: ../modules/ad-blocker/admin/admin.php:278
2608
- #, php-format
2609
- msgid "Unable to rename \"%s\" directory"
2610
- msgstr "Não foi possível renomear o diretório \"%s\""
2611
-
2612
- #: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
2613
- #: php:307 ../modules/ad-blocker/admin/admin.php:324
2614
- #, php-format
2615
- msgid "Unable to copy assets to the \"%s\" directory"
2616
- msgstr "Não é possível copiar ativos para o diretório \"%s\""
2617
-
2618
- #: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
2619
- #: php:378
2620
- #, php-format
2621
- msgid "We do not have direct write access to the \"%s\" directory"
2622
- msgstr "Nós não temos acesso de gravação direta para o diretório \"%s\""
2623
-
2624
- #: ../modules/ad-blocker/admin/admin.php:445
2625
- #, php-format
2626
- msgid ""
2627
- "Unable to create \"%s\" directory. Is its parent directory writable by the "
2628
- "server?"
2629
- msgstr ""
2630
- "Não é possível criar diretório \"%s\". É seu diretório pai escrito pelo "
2631
- "servidor?"
2632
-
2633
- #: ../modules/ad-blocker/admin/admin.php:456
2634
- #, php-format
2635
- msgid "Unable to copy files to %s"
2636
- msgstr "Não é possível copiar arquivos para %s"
2637
-
2638
- #: ../modules/ad-blocker/admin/admin.php:592
2639
- msgid ""
2640
- "Prevents ad block software from breaking your website when blocking asset "
2641
- "files (.js, .css)."
2642
- msgstr ""
2643
- "Previne software bloqueador de anúncio de quebrar o seu site ao bloquear "
2644
- "arquivos ativos (.js, .css)."
2645
-
2646
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:1
2647
- msgid "Ad blocker file folder"
2648
- msgstr "Pasta de arquivo bloqueador de anúncio"
2649
-
2650
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:10
2651
- msgid "Upload folder is not writable"
2652
- msgstr "Pasta de Upload não é gravável"
2653
-
2654
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:23
2655
- msgid "Asset path"
2656
- msgstr "Caminho de ativos"
2657
-
2658
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:27
2659
- msgid "Asset URL"
2660
- msgstr "URL de Ativos"
2661
-
2662
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:31
2663
- msgid "Rename assets"
2664
- msgstr "Renomear recursos"
2665
-
2666
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:34
2667
- msgid "Check if you want to change the names of the assets"
2668
- msgstr "Verifique se você deseja alterar os nomes dos recursos"
2669
-
2670
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:43
2671
- #, php-format
2672
- msgid ""
2673
- "Please, rebuild the asset folder. All assets will be located in "
2674
- "<strong>%s</strong>"
2675
- msgstr ""
2676
- "Por favor, reconstruir a pasta de recursos. Todos os recursos estão "
2677
- "localizados em <strong>%s</strong>"
2678
-
2679
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:46
2680
- msgid "Rebuild asset folder"
2681
- msgstr "Reconstruir pasta de ativos"
2682
-
2683
- #: ../modules/gadsense/main.php:19
2684
- msgid " at "
2685
- msgstr "às"
2686
-
2687
- #: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
2688
- #: ad-parameters.php:51
2689
- msgid "Responsive"
2690
- msgstr "Responsivo"
2691
-
2692
- #: ../modules/gadsense/admin/admin.php:44
2693
- msgid "The ad details couldn't be retrieved from the ad code"
2694
- msgstr "Os detalhes do anúncio não pôde ser recuperado a partir do código do anúncio"
2695
-
2696
- #: ../modules/gadsense/admin/admin.php:45
2697
- msgid ""
2698
- "Warning : The AdSense account from this code does not match the one set with "
2699
- "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2700
- "end."
2701
- msgstr ""
2702
- "Aviso: A conta do AdSense a partir deste código não corresponde a um "
2703
- "conjunto com o Plugin Anúncios Avançados. Isto pode causar problemas no "
2704
- "anúncio quando usado na extremidade dianteira."
2705
-
2706
- #: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
2707
- msgid "AdSense"
2708
- msgstr "AdSense"
2709
-
2710
- #: ../modules/gadsense/admin/admin.php:131
2711
- msgid "AdSense ID"
2712
- msgstr "ID do AdSense"
2713
-
2714
- #: ../modules/gadsense/admin/admin.php:140
2715
- msgid "Limit to 3 ads"
2716
- msgstr "Limite de 3 anúncios"
2717
-
2718
- #: ../modules/gadsense/admin/admin.php:149
2719
- msgid "Activate Page-Level ads"
2720
- msgstr "Ative Página de Nível de anúncios"
2721
-
2722
- #: ../modules/gadsense/admin/admin.php:169
2723
- #, php-format
2724
- msgid ""
2725
- "Please enter your Publisher ID in order to use AdSense on your page. See the "
2726
- "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2727
- msgstr ""
2728
- "Digite seu ID Publisher, a fim de usar o AdSense em sua página. Veja o <a "
2729
- "href=\"%s\" target=\"_blank\">manual</a> para obter mais informações."
2730
-
2731
- #: ../modules/gadsense/admin/admin.php:183
2732
- msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2733
- msgstr "Seu ID AdSense Publisher <em>(pub-xxxxxxxxxxxxxx)</em>"
2734
-
2735
- #: ../modules/gadsense/admin/admin.php:195
2736
- #, php-format
2737
- msgid "Limit to %d AdSense ads"
2738
- msgstr "Limite de %d anúncios do AdSense"
2739
-
2740
- #: ../modules/gadsense/admin/admin.php:199
2741
- #, php-format
2742
- msgid ""
2743
- "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2744
- "Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
2745
- "this limitation at your own risks."
2746
- msgstr ""
2747
- "Atualmente, o Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms De "
2748
- "Service\">TOS</a> impõe um limite de exibição de %d anúncios por página. Você "
2749
- "pode desativar essa limitação em seus próprios riscos."
2750
-
2751
- #: ../modules/gadsense/admin/admin.php:202
2752
- msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
2753
- msgstr ""
2754
- "Aviso: Anúncios Avançados considera apenas o tipo de anúncio do AdSense para "
2755
- "esse limite."
2756
-
2757
- #: ../modules/gadsense/admin/admin.php:205
2758
- msgid ""
2759
- "Due to technical restrictions, the limit does not work on placements with "
2760
- "cache-busting enabled."
2761
- msgstr ""
2762
- "Devido a restrições técnicas, o limite não funciona em canais com bloqueio "
2763
- "de cache habilitado."
2764
-
2765
- #: ../modules/gadsense/admin/admin.php:219
2766
- msgid "Insert Page-Level ads code on all pages."
2767
- msgstr "Inserir código de Página de Nível de anúncios em todas as páginas."
2768
-
2769
- #: ../modules/gadsense/admin/admin.php:221
2770
- msgid ""
2771
- "You still need to enable Page-Level ads in your AdSense account. See <a "
2772
- "href=\"https://support.google.com/adsense/answer/6245304\" "
2773
- "target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
2774
- "information"
2775
- msgstr ""
2776
- "Você ainda precisa ativar anúncios na Página de Nível em sua conta do "
2777
- "AdSense. Consulte <a href=\"https://support.google."
2778
- "com/adsense/answer/6245304\" target=\"_blank\">Ajuda AdSense</a> (requer "
2779
- "AdSense-login) para mais informações."
2780
-
2781
- #: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
2782
- #: type-adsense.php:73
2783
- msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2784
- msgstr "O ID Publisher tem um formato incorreto. (deve começar com \"pub-\")"
2785
-
2786
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
2787
- msgid "Copy&Paste existing ad code"
2788
- msgstr "Copiar e colar código de anúncio existente"
2789
-
2790
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
2791
- msgid "Ad Slot ID"
2792
- msgstr "ID do Slot de Anúncios"
2793
-
2794
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
2795
- #, php-format
2796
- msgid "Publisher ID: %s"
2797
- msgstr "ID do Publisher: %s"
2798
-
2799
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
2800
- #, php-format
2801
- msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2802
- msgstr "Por favor <a href=\"%s\" target=\"_blank\">mudá-lo aqui</a>."
2803
-
2804
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
2805
- msgid "Normal"
2806
- msgstr "Normal"
2807
-
2808
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
2809
- #, php-format
2810
- msgid ""
2811
- "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2812
- "define the exact creative for each browser width."
2813
- msgstr ""
2814
- "Use o <a href=\"%s\" target=\"_blank\">Responsive add-on </a> a fim de definir a "
2815
- "largura criativa exata para cada navegador."
2816
-
2817
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
2818
- msgid "Resizing"
2819
- msgstr "Redimensionar"
2820
-
2821
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
2822
- msgid "Copy the ad code from your AdSense account and paste it in the area below"
2823
- msgstr "Copie o código de anúncio da sua conta do AdSense e cole-o na área abaixo"
2824
-
2825
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
2826
- msgid "Get details"
2827
- msgstr "Obter detalhes"
2828
-
2829
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
2830
- msgid "Close"
2831
- msgstr "Fechar"
2832
-
2833
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:35
2834
- msgid "AdSense ad"
2835
- msgstr "Anúncio AdSense"
2836
-
2837
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:36
2838
- msgid "Use ads from your Google AdSense account"
2839
- msgstr "Use anúncios de sua conta do Google AdSense"
2840
-
2841
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:105
2842
- msgid "Your AdSense Publisher ID is missing."
2843
- msgstr "O seu ID do AdSense Publisher está faltando."
2844
-
2845
- #: ../modules/gadsense/includes/class-gadsense-data.php:46
2846
- msgid "Auto"
2847
- msgstr "Automático"
2848
-
2849
- #: ../public/class-advanced-ads.php:309
2850
- msgid "Advanced Ads Error following:"
2851
- msgstr "Anúncios Avançados possui os seguintes Erros:"
2852
-
2853
- #: ../public/class-advanced-ads.php:312
2854
- #, php-format
2855
- msgid "Advanced Ads Error: %s"
2856
- msgstr "Aúncios Avançados Erro: %s"
2857
-
2858
- #: ../public/class-advanced-ads.php:553
2859
- msgctxt "ad group general name"
2860
- msgid "Ad Groups"
2861
- msgstr "Grupos de Anúncios"
2862
-
2863
- #: ../public/class-advanced-ads.php:554
2864
- msgctxt "ad group singular name"
2865
- msgid "Ad Group"
2866
- msgstr "Grupo de Anúncios"
2867
-
2868
- #: ../public/class-advanced-ads.php:555
2869
- msgid "Search Ad Groups"
2870
- msgstr "Pesquisar Grupos de Anúncios"
2871
-
2872
- #: ../public/class-advanced-ads.php:556
2873
- msgid "All Ad Groups"
2874
- msgstr "Todos os Grupos de Anúncios"
2875
-
2876
- #: ../public/class-advanced-ads.php:557
2877
- msgid "Parent Ad Groups"
2878
- msgstr "Grupos de Anúncios Pai"
2879
-
2880
- #: ../public/class-advanced-ads.php:558
2881
- msgid "Parent Ad Groups:"
2882
- msgstr "Grupos de Anúncios Pai:"
2883
-
2884
- #: ../public/class-advanced-ads.php:559
2885
- msgid "Edit Ad Group"
2886
- msgstr "Editar Grupo de Anúncios"
2887
-
2888
- #: ../public/class-advanced-ads.php:560
2889
- msgid "Update Ad Group"
2890
- msgstr "Atualizar Grupo de Anúncios"
2891
-
2892
- #: ../public/class-advanced-ads.php:561
2893
- msgid "Add New Ad Group"
2894
- msgstr "Adicionar Novo Grupo de Anúncios"
2895
-
2896
- #: ../public/class-advanced-ads.php:562
2897
- msgid "New Ad Groups Name"
2898
- msgstr "Nome do Novo Grupo de Anúncios"
2899
-
2900
- #: ../public/class-advanced-ads.php:564
2901
- msgid "No Ad Group found"
2902
- msgstr "Nenhum Grupo de Anúncios encontrado"
2903
-
2904
- #: ../public/class-advanced-ads.php:595
2905
- msgid "Edit Ad"
2906
- msgstr "Editar Anúncio"
2907
-
2908
- #: ../public/class-advanced-ads.php:597
2909
- msgid "View"
2910
- msgstr "Visualizar"
2911
-
2912
- #: ../public/class-advanced-ads.php:598
2913
- msgid "View the Ad"
2914
- msgstr "Visualizar o Anúncio"
2915
-
2916
- #: ../public/class-advanced-ads.php:599
2917
- msgid "Search Ads"
2918
- msgstr "Pesquisar Anúncios"
2919
-
2920
- #: ../public/class-advanced-ads.php:600
2921
- msgid "No Ads found"
2922
- msgstr "Nenhum Anúncio encontrado"
2923
-
2924
- #: ../public/class-advanced-ads.php:601
2925
- msgid "No Ads found in Trash"
2926
- msgstr "Nenhum Anúncio encontrado na Lixeira"
2927
-
2928
- #: ../public/class-advanced-ads.php:602
2929
- msgid "Parent Ad"
2930
- msgstr "Anúncio Pai"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2016-11-21 12:17+0000\n"
6
+ "PO-Revision-Date: 2016-11-21 12:17+0000\n"
7
+ "Last-Translator: admin <post@webzunft.de>\n"
8
+ "Language-Team: Portuguese (Brazil)\n"
9
+ "Language: pt-BR\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Loco - https://localise.biz/\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Poedit-Basepath: ../\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Loco-Target-Locale: pt_BR"
24
+
25
+ #: classes/ad-debug.php:33
26
+ msgid "Current query is not identical to main query."
27
+ msgstr ""
28
+
29
+ #: classes/ad-debug.php:40
30
+ msgid "Current post is not identical to main post."
31
+ msgstr ""
32
+
33
+ #: classes/ad-debug.php:43
34
+ msgid "current post"
35
+ msgstr ""
36
+
37
+ #: classes/ad-debug.php:46
38
+ msgid "main post"
39
+ msgstr ""
40
+
41
+ #: classes/ad-debug.php:52
42
+ msgid "The ad is displayed on the page"
43
+ msgstr ""
44
+
45
+ #: classes/ad-debug.php:54
46
+ msgid "The ad is not displayed on the page"
47
+ msgstr ""
48
+
49
+ #: classes/ad-debug.php:62
50
+ msgid "The current URL is HTTPS, but the ad code contains HTTP"
51
+ msgstr ""
52
+
53
+ #: classes/ad-debug.php:99
54
+ msgid "current query"
55
+ msgstr ""
56
+
57
+ #: classes/ad-debug.php:99
58
+ msgid "main query"
59
+ msgstr ""
60
+
61
+ #: classes/ad-debug.php:130
62
+ msgid "Placement"
63
+ msgstr ""
64
+
65
+ #: classes/EDD_SL_Plugin_Updater.php:196
66
+ #, php-format
67
+ msgid ""
68
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
69
+ msgstr ""
70
+
71
+ #: classes/EDD_SL_Plugin_Updater.php:204
72
+ #, php-format
73
+ msgid ""
74
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
75
+ "or %5$supdate now%6$s."
76
+ msgstr ""
77
+
78
+ #: classes/frontend_checks.php:40
79
+ msgid "Ad Health"
80
+ msgstr ""
81
+
82
+ #: classes/frontend_checks.php:47
83
+ msgid "jQuery not in header"
84
+ msgstr ""
85
+
86
+ #: classes/frontend_checks.php:59
87
+ msgid "Ad blocker enabled"
88
+ msgstr ""
89
+
90
+ #: classes/frontend_checks.php:73
91
+ #, php-format
92
+ msgid "<em>%s</em> filter does not exist"
93
+ msgstr ""
94
+
95
+ #: classes/frontend_checks.php:90
96
+ msgid "Ads are disabled on this page"
97
+ msgstr ""
98
+
99
+ #: classes/frontend_checks.php:104
100
+ msgid "Ads are disabled in the content of this page"
101
+ msgstr ""
102
+
103
+ #: classes/frontend_checks.php:117
104
+ msgid "the current post ID is 0 "
105
+ msgstr ""
106
+
107
+ #: classes/frontend_checks.php:132
108
+ msgid "Ads are disabled on 404 pages"
109
+ msgstr ""
110
+
111
+ #: classes/frontend_checks.php:146
112
+ msgid "Ads are disabled on non singular pages"
113
+ msgstr ""
114
+
115
+ #: classes/frontend_checks.php:160
116
+ #: modules/import-export/classes/XmlEncoder.php:61
117
+ #: modules/import-export/classes/XmlEncoder.php:64
118
+ #: modules/import-export/classes/XmlEncoder.php:193
119
+ #: modules/import-export/classes/XmlEncoder.php:196
120
+ #, php-format
121
+ msgid "The %s extension(s) is not loaded"
122
+ msgstr ""
123
+
124
+ #: classes/frontend_checks.php:174
125
+ msgid "Everything is fine"
126
+ msgstr ""
127
+
128
+ #: classes/frontend_checks.php:185
129
+ msgid "debug DFP ads"
130
+ msgstr ""
131
+
132
+ #: classes/frontend_checks.php:196
133
+ msgid "highlight ads"
134
+ msgstr ""
135
+
136
+ #: public/class-advanced-ads.php:721
137
+ msgctxt "label above ads"
138
+ msgid "Advertisements"
139
+ msgstr ""
140
+
141
+ #: admin/includes/class-ad-type.php:491
142
+ #, php-format
143
+ msgid ""
144
+ "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
145
+ msgstr ""
146
+
147
+ #: admin/includes/class-overview-widgets.php:67
148
+ msgid "Selling Ads"
149
+ msgstr ""
150
+
151
+ #: admin/includes/class-overview-widgets.php:258
152
+ msgid ""
153
+ "Let advertisers purchase ad space directly on the frontend of your site."
154
+ msgstr ""
155
+
156
+ #: admin/includes/class-overview-widgets.php:260
157
+ msgid "Get the Selling Ads add-on"
158
+ msgstr ""
159
+
160
+ #: admin/includes/class-settings.php:160
161
+ msgid "Delete data on uninstall"
162
+ msgstr ""
163
+
164
+ #: admin/includes/class-settings.php:423
165
+ msgid "Clean up all data related to Advanced Ads when removing the plugin."
166
+ msgstr ""
167
+
168
+ #: admin/views/ad-display-metabox.php:50
169
+ msgid "Forced to OR."
170
+ msgstr ""
171
+
172
+ #: admin/views/ad-display-metabox.php:51 admin/views/ad-info-top.php:78
173
+ msgid "manual"
174
+ msgstr ""
175
+
176
+ #: admin/views/ad-info-bottom.php:2
177
+ msgctxt "wizard navigation"
178
+ msgid "previous"
179
+ msgstr ""
180
+
181
+ #: admin/views/ad-info-bottom.php:4
182
+ msgctxt "wizard navigation"
183
+ msgid "save"
184
+ msgstr ""
185
+
186
+ #: admin/views/ad-info-bottom.php:5
187
+ msgctxt "wizard navigation"
188
+ msgid "next"
189
+ msgstr ""
190
+
191
+ #: admin/views/ad-info-top.php:8
192
+ msgid "New placement"
193
+ msgstr ""
194
+
195
+ #: admin/views/ad-info-top.php:48
196
+ msgid "Existing placement"
197
+ msgstr ""
198
+
199
+ #: admin/views/ad-info-top.php:64 admin/views/ad-info-top.php:76
200
+ msgid "Start Wizard"
201
+ msgstr ""
202
+
203
+ #: admin/views/ad-info-top.php:65
204
+ msgid "Stop Wizard"
205
+ msgstr ""
206
+
207
+ #: admin/views/ad-info-top.php:74
208
+ msgid "Welcome to the Wizard"
209
+ msgstr ""
210
+
211
+ #: admin/views/ad-info-top.php:75
212
+ msgid ""
213
+ "The Wizard helps you to quickly create and publish an ad. Therefore, only "
214
+ "the most common options are visible."
215
+ msgstr ""
216
+
217
+ #: admin/views/ad-info-top.php:77
218
+ msgid "Stop Wizard and show all options"
219
+ msgstr ""
220
+
221
+ #: admin/views/ad-list-no-ads.php:2
222
+ msgid "Not many ads here yet. Get help from the following resources:"
223
+ msgstr ""
224
+
225
+ #: admin/views/ad-list-no-ads.php:3
226
+ msgid "Watch the “First Ad Tutorial (Video)"
227
+ msgstr ""
228
+
229
+ #: admin/views/ad-list-no-ads.php:4
230
+ msgid "Import Ads (Link)"
231
+ msgstr ""
232
+
233
+ #: admin/views/ad-list-no-ads.php:5
234
+ msgid "Get dummy ad content (Link)"
235
+ msgstr ""
236
+
237
+ #: admin/views/ad-parameters-metabox.php:30
238
+ msgid ""
239
+ "The code of this ad might not work properly with the <em>Content</em> "
240
+ "placement."
241
+ msgstr ""
242
+
243
+ #: admin/views/ad-parameters-metabox.php:31
244
+ #, php-format
245
+ msgid "Reach out to <a href=\"%s\">support</a> to get help."
246
+ msgstr ""
247
+
248
+ #: admin/views/settings.php:48 modules/import-export/main.php:15
249
+ #: modules/import-export/main.php:15
250
+ msgid "Import &amp; Export"
251
+ msgstr ""
252
+
253
+ #: admin/views/support.php:49
254
+ msgid "Ads not showing up"
255
+ msgstr ""
256
+
257
+ #: admin/views/support.php:50
258
+ msgid "Purchase & Licenses"
259
+ msgstr ""
260
+
261
+ #: admin/views/support.php:51
262
+ msgid "General Issues"
263
+ msgstr ""
264
+
265
+ #: admin/views/support.php:52
266
+ msgid "Issues with Add-Ons"
267
+ msgstr ""
268
+
269
+ #: admin/views/support.php:59
270
+ #, php-format
271
+ msgid ""
272
+ "Take a look at more common issues or contact us directly through the <a "
273
+ "href=\"%s\" target=\"_blank\">support page</a>."
274
+ msgstr ""
275
+
276
+ #: modules/marketpress-license/admin.php:36
277
+ msgid "MarketPress Bundle License"
278
+ msgstr ""
279
+
280
+ #: modules/marketpress-license/admin.php:67
281
+ #: modules/marketpress-license/admin.php:70
282
+ msgid ""
283
+ "Enter your key here, if you have purchased the bundle through MarketPress."
284
+ msgstr ""
285
+
286
+ #: modules/marketpress-license/admin.php:72
287
+ msgid ""
288
+ "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
289
+ "."
290
+ msgstr ""
291
+
292
+ #: public/views/ad-debug.php:18
293
+ msgid "Ad debug output"
294
+ msgstr ""
295
+
296
+ #: public/views/ad-debug.php:20
297
+ msgid "Find solutions in the manual"
298
+ msgstr ""
299
+
300
+ #: modules/gadsense/admin/admin.php:199
301
+ msgid ""
302
+ "There is no explicit limit for AdSense ads anymore, but you can still use "
303
+ "this setting to prevent too many AdSense ads to show accidentally on your "
304
+ "site."
305
+ msgstr ""
306
+
307
+ #: modules/import-export/classes/import.php:64
308
+ msgid "Please enter XML content"
309
+ msgstr ""
310
+
311
+ #: modules/import-export/classes/import.php:144
312
+ #: modules/import-export/classes/import.php:560
313
+ #, php-format
314
+ msgid "New attachment created <em>%s</em> %s"
315
+ msgstr ""
316
+
317
+ #: modules/import-export/classes/import.php:176
318
+ #, php-format
319
+ msgid "Failed to import <em>%s</em>"
320
+ msgstr ""
321
+
322
+ #: modules/import-export/classes/import.php:184
323
+ #, php-format
324
+ msgid "New ad created: <em>%s</em> %s"
325
+ msgstr ""
326
+
327
+ #: modules/import-export/classes/import.php:227
328
+ #, php-format
329
+ msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
330
+ msgstr ""
331
+
332
+ #: modules/import-export/classes/import.php:289
333
+ #, php-format
334
+ msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
335
+ msgstr ""
336
+
337
+ #: modules/import-export/classes/import.php:291
338
+ #, php-format
339
+ msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
340
+ msgstr ""
341
+
342
+ #: modules/import-export/classes/import.php:356
343
+ #, php-format
344
+ msgid "Placement <em>%s</em> created"
345
+ msgstr ""
346
+
347
+ #: modules/import-export/classes/import.php:471
348
+ #, php-format
349
+ msgid "Option was updated: <em>%s</em>"
350
+ msgstr ""
351
+
352
+ #: modules/import-export/classes/import.php:474
353
+ #, php-format
354
+ msgid "Option already exists: <em>%s</em>"
355
+ msgstr ""
356
+
357
+ #: modules/import-export/classes/import.php:496
358
+ #, php-format
359
+ msgid "Failed to create import directory <em>%s</em>"
360
+ msgstr ""
361
+
362
+ #: modules/import-export/classes/import.php:501
363
+ #, php-format
364
+ msgid "Import directory is not writable: <em>%s</em>"
365
+ msgstr ""
366
+
367
+ #: modules/import-export/classes/import.php:509
368
+ msgid ""
369
+ "File is empty, uploads are disabled or post_max_size is smaller than "
370
+ "upload_max_filesize in php.ini"
371
+ msgstr ""
372
+
373
+ #: modules/import-export/classes/import.php:519
374
+ #, php-format
375
+ msgid "Failed to upload file, error: <em>%s</em>"
376
+ msgstr ""
377
+
378
+ #: modules/import-export/classes/import.php:524
379
+ msgid "File is empty."
380
+ msgstr ""
381
+
382
+ #: modules/import-export/classes/import.php:529
383
+ #, php-format
384
+ msgid ""
385
+ "The file could not be created: <em>%s</em>. This is probably a permissions "
386
+ "problem"
387
+ msgstr ""
388
+
389
+ #: modules/import-export/classes/import.php:602
390
+ #, php-format
391
+ msgid "Invalid filetype <em>%s</em>"
392
+ msgstr ""
393
+
394
+ #: modules/import-export/classes/import.php:607
395
+ #: modules/import-export/classes/import.php:614
396
+ #: modules/import-export/classes/import.php:622
397
+ #: modules/import-export/classes/import.php:637
398
+ #, php-format
399
+ msgid "Error getting remote image <em>%s</em>"
400
+ msgstr ""
401
+
402
+ #: modules/import-export/classes/import.php:631
403
+ #, php-format
404
+ msgid "Zero size file downloaded <em>%s</em>"
405
+ msgstr ""
406
+
407
+ #: modules/import-export/classes/XmlEncoder.php:75
408
+ msgctxt "import_export"
409
+ msgid "The data must be an array"
410
+ msgstr ""
411
+
412
+ #: modules/import-export/classes/XmlEncoder.php:103
413
+ #, php-format
414
+ msgctxt "import_export"
415
+ msgid "The key %s is not valid"
416
+ msgstr ""
417
+
418
+ #: modules/import-export/classes/XmlEncoder.php:149
419
+ #, php-format
420
+ msgctxt "import_export"
421
+ msgid "An unexpected value could not be serialized: %s"
422
+ msgstr ""
423
+
424
+ #: modules/import-export/classes/XmlEncoder.php:201
425
+ msgctxt "import_export"
426
+ msgid "Invalid XML data, it can not be empty"
427
+ msgstr ""
428
+
429
+ #: modules/import-export/classes/XmlEncoder.php:223
430
+ #, php-format
431
+ msgctxt "import_export"
432
+ msgid "XML error: %s"
433
+ msgstr ""
434
+
435
+ #: modules/import-export/views/page.php:16
436
+ msgid "Export"
437
+ msgstr ""
438
+
439
+ #: modules/import-export/views/page.php:17
440
+ msgid ""
441
+ "When you click the button below Advanced Ads will create an XML file for you "
442
+ "to save to your computer."
443
+ msgstr ""
444
+
445
+ #: modules/import-export/views/page.php:33
446
+ msgid "Import"
447
+ msgstr ""
448
+
449
+ #: modules/import-export/views/page.php:44
450
+ msgid "Choose an XML file"
451
+ msgstr ""
452
+
453
+ #: modules/import-export/views/page.php:45
454
+ msgid "Copy an XML content"
455
+ msgstr ""
456
+
457
+ #: modules/import-export/views/page.php:66
458
+ msgid "Start import"
459
+ msgstr ""
460
+
461
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:56
462
+ #, php-format
463
+ msgid ""
464
+ "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
465
+ "define the exact size for each browser width or choose between horizontal, "
466
+ "vertical, or rectangle formats."
467
+ msgstr ""
468
+
469
+ #: admin/class-advanced-ads-admin.php:167 classes/display-conditions.php:169
470
+ #: classes/visitor-conditions.php:214 admin/views/ad-display-metabox.php:103
471
+ msgid "or"
472
+ msgstr "ou"
473
+
474
+ #: admin/class-advanced-ads-admin.php:168 classes/display-conditions.php:169
475
+ #: classes/visitor-conditions.php:214 admin/views/ad-visitor-metabox.php:68
476
+ msgid "and"
477
+ msgstr "e"
478
+
479
+ #: admin/class-advanced-ads-admin.php:169
480
+ msgid "After which paragraph?"
481
+ msgstr "Após o qual parágrafo?"
482
+
483
+ #: admin/class-advanced-ads-admin.php:278
484
+ #, php-format
485
+ msgid "time of %s"
486
+ msgstr "tempo de %s"
487
+
488
+ #: admin/class-advanced-ads-admin.php:314
489
+ msgid "Error while trying to register the license. Please contact support."
490
+ msgstr "Erro ao tentar registrar a licença. Entre em contato com o suporte."
491
+
492
+ #: admin/class-advanced-ads-admin.php:319 admin/views/setting-license.php:40
493
+ msgid "Please enter a valid license key"
494
+ msgstr "Por favor digite uma chave de licença válida"
495
+
496
+ #: admin/class-advanced-ads-admin.php:350
497
+ #: modules/marketpress-license/main.php:65
498
+ #: modules/marketpress-license/main.php:77
499
+ msgid "License couldn’t be activated. Please try again later."
500
+ msgstr "Licença não pôde ser ativada. Por favor, tente novamente mais tarde."
501
+
502
+ #: admin/class-advanced-ads-admin.php:365
503
+ msgid "This is the bundle license key."
504
+ msgstr "Esta é a chave de licença do pacote."
505
+
506
+ #: admin/class-advanced-ads-admin.php:366
507
+ #: modules/marketpress-license/main.php:136
508
+ msgid "This is not the correct key for this add-on."
509
+ msgstr "Esta não é a chave correta para este add-on."
510
+
511
+ #: admin/class-advanced-ads-admin.php:367
512
+ #: modules/marketpress-license/main.php:134
513
+ msgid "There are no activations left."
514
+ msgstr "Não há ativações deixadas."
515
+
516
+ #: admin/class-advanced-ads-admin.php:436
517
+ msgid "Error while trying to disable the license. Please contact support."
518
+ msgstr "Erro ao tentar desativar a licença. Entre em contato com o suporte."
519
+
520
+ #: admin/class-advanced-ads-admin.php:463
521
+ #: admin/class-advanced-ads-admin.php:481
522
+ msgid "License couldn’t be deactivated. Please try again later."
523
+ msgstr ""
524
+ "Licença não pôde ser desativada. Por favor, tente novamente mais tarde."
525
+
526
+ #: admin/class-advanced-ads-admin.php:647 admin/includes/class-menu.php:87
527
+ #: admin/includes/class-menu.php:87
528
+ msgid "Support"
529
+ msgstr "Suporte"
530
+
531
+ #: admin/class-advanced-ads-admin.php:651
532
+ msgid "Add-Ons"
533
+ msgstr "Add-Ons"
534
+
535
+ #: classes/ad-debug.php:119 classes/ad-debug.php:169 classes/ad-debug.php:171
536
+ #: public/class-advanced-ads.php:598 admin/views/ad-group-list-form-row.php:31
537
+ msgid "Ad"
538
+ msgstr "Anúncios"
539
+
540
+ #: classes/ad-debug.php:123 public/class-advanced-ads.php:561
541
+ msgctxt "ad group singular name"
542
+ msgid "Ad Group"
543
+ msgstr "Grupo de Anúncios"
544
+
545
+ #: classes/ad-debug.php:154 admin/includes/class-meta-box.php:65
546
+ msgid "Display Conditions"
547
+ msgstr "Condições de exibição"
548
+
549
+ #: classes/ad-debug.php:237 admin/includes/class-meta-box.php:68
550
+ msgid "Visitor Conditions"
551
+ msgstr "Condições para Visitantes"
552
+
553
+ #: classes/ad_placements.php:31
554
+ msgid "Manual Placement"
555
+ msgstr "Manual de Locais"
556
+
557
+ #: classes/ad_placements.php:32
558
+ msgid "Manual placement to use as function or shortcode."
559
+ msgstr "Manual de locais para usar como função ou shortcode."
560
+
561
+ #: classes/ad_placements.php:36
562
+ msgid "Header Code"
563
+ msgstr "Código no Cabeçalho"
564
+
565
+ #: classes/ad_placements.php:37
566
+ msgid ""
567
+ "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
568
+ msgstr ""
569
+ "Injetado no Cabeçalho (antes de fechar a Tag &lt;/head&gt; muitas vezes não "
570
+ "visível)."
571
+
572
+ #: classes/ad_placements.php:41
573
+ msgid "Footer Code"
574
+ msgstr "Código no Rodapé"
575
+
576
+ #: classes/ad_placements.php:42
577
+ msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
578
+ msgstr "Injetado no Rodapé (antes de fechar a Tag &lt;/body&gt;)."
579
+
580
+ #: classes/ad_placements.php:46 admin/views/ad-info-top.php:9
581
+ msgid "Before Content"
582
+ msgstr "Antes do Conteúdo"
583
+
584
+ #: classes/ad_placements.php:47
585
+ msgid "Injected before the post content."
586
+ msgstr "Inserido antes do post"
587
+
588
+ #: classes/ad_placements.php:51 admin/views/ad-info-top.php:11
589
+ msgid "After Content"
590
+ msgstr "Depois do Conteúdo"
591
+
592
+ #: classes/ad_placements.php:52
593
+ msgid "Injected after the post content."
594
+ msgstr "Inserido depois do post"
595
+
596
+ #: classes/ad_placements.php:56
597
+ msgid "Post Content"
598
+ msgstr "Conteúdo do Post"
599
+
600
+ #: classes/ad_placements.php:57
601
+ msgid ""
602
+ "Injected into the post content. You can choose the paragraph after which the "
603
+ "ad content is displayed."
604
+ msgstr ""
605
+ "Inserido no conteúdo do post. Você pode escolher o parágrafo em que o "
606
+ "anúncio será exibido."
607
+
608
+ #: classes/ad_placements.php:61
609
+ msgid "Sidebar Widget"
610
+ msgstr "Widget da Barra Lateral"
611
+
612
+ #: classes/ad_placements.php:62
613
+ msgid ""
614
+ "Create a sidebar widget with an ad. Can be placed and used like any other "
615
+ "widget."
616
+ msgstr ""
617
+ "Criar um widget na barra lateral com um anúncio. Pode ser colocado e "
618
+ "utilizado como qualquer outro widget."
619
+
620
+ #: classes/ad_placements.php:214
621
+ #, php-format
622
+ msgid "paragraph (%s)"
623
+ msgstr "parágrafo (%s)"
624
+
625
+ #: classes/ad_placements.php:215
626
+ #, php-format
627
+ msgid "paragraph without image (%s)"
628
+ msgstr "parágrafo sem imagem (%s)"
629
+
630
+ #: classes/ad_placements.php:216
631
+ #, php-format
632
+ msgid "headline 2 (%s)"
633
+ msgstr "Título 2 (%s)"
634
+
635
+ #: classes/ad_placements.php:217
636
+ #, php-format
637
+ msgid "headline 3 (%s)"
638
+ msgstr "Título 3 (%s)"
639
+
640
+ #: classes/ad_placements.php:218
641
+ #, php-format
642
+ msgid "headline 4 (%s)"
643
+ msgstr "Título 4 (%s)"
644
+
645
+ #: classes/ad_type_content.php:35
646
+ msgid "Rich Content"
647
+ msgstr "Conteúdo rico"
648
+
649
+ #: classes/ad_type_content.php:36
650
+ msgid ""
651
+ "The full content editor from WordPress with all features like shortcodes, "
652
+ "image upload or styling, but also simple text/html mode for scripts and code."
653
+ msgstr ""
654
+ "O editor de conteúdo do WordPress com todas as suas funcções, como "
655
+ "shortcodes, mas também simples editores de HTML."
656
+
657
+ #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
658
+ msgid "Ad Group"
659
+ msgstr "Grupo de Anúncios"
660
+
661
+ #: classes/ad_type_group.php:31
662
+ msgid ""
663
+ "Choose an existing ad group. Use this type when you want to assign the same "
664
+ "display and visitor conditions to all ads in that group."
665
+ msgstr ""
666
+ "Escolha um grupo de anúncios existente. Use este tipo quando você deseja "
667
+ "atribuir as mesmas condições de exibição e visitante para todos os anúncios "
668
+ "nesse grupo."
669
+
670
+ #: classes/ad_type_group.php:84
671
+ msgid "ad group"
672
+ msgstr "grupo de anúncios"
673
+
674
+ #: classes/ad_type_plain.php:31
675
+ msgid "Plain Text and Code"
676
+ msgstr "Texto simples e Código"
677
+
678
+ #: classes/ad_type_plain.php:32
679
+ msgid ""
680
+ "Simple text editor without any filters. You might use it to display "
681
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
682
+ "content field magic does not work here."
683
+ msgstr ""
684
+ "Texto simples sem nenhum filtro. Você pode querer isso para exibir conteúdo "
685
+ "sem restrições, código PHP ou JavaScript. Shortcodes a outras funções do WP "
686
+ "não têm efeito aqui."
687
+
688
+ #: classes/ad_type_plain.php:52
689
+ msgid "Insert plain text or code into this field."
690
+ msgstr "Insira o texo ou código no campo."
691
+
692
+ #: classes/ad_type_plain.php:88
693
+ msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
694
+ msgstr "Executar código PHP (envolto em <code>&lt;?php ?&gt;</code>)"
695
+
696
+ #: classes/checks.php:242
697
+ #, php-format
698
+ msgid ""
699
+ "Possible conflict between jQueryUI library, used by Advanced Ads and other "
700
+ "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead "
701
+ "to misfortunate formats in forms, but should not damage features."
702
+ msgstr ""
703
+ "Possível conflito entre biblioteca jQueryUI, usado por anúncios avançados e "
704
+ "outras bibliotecas (provavelmente <a href=\"%s\">Twitter Bootstrap</a>). "
705
+ "Isso pode levar a formatos em formas infelizes , mas não deve danificar "
706
+ "recursos."
707
+
708
+ #: classes/display-conditions.php:69
709
+ msgid "post type"
710
+ msgstr "tipo de postagem"
711
+
712
+ #: classes/display-conditions.php:70
713
+ msgid "Choose the public post types on which to display the ad."
714
+ msgstr "Escolha o tipo de conteúdo para exibir o anúncio"
715
+
716
+ #: classes/display-conditions.php:76
717
+ msgid "specific pages"
718
+ msgstr "páginas específicas"
719
+
720
+ #: classes/display-conditions.php:77
721
+ msgid ""
722
+ "Choose on which individual posts, pages and public post type pages you want "
723
+ "to display or hide ads."
724
+ msgstr ""
725
+ "Escolha em qual post, página e tipos de conteúdo você quer exibir/esconder "
726
+ "anúncios."
727
+
728
+ #: classes/display-conditions.php:82
729
+ msgid "general conditions"
730
+ msgstr "condições gerais"
731
+
732
+ #: classes/display-conditions.php:88
733
+ msgid "author"
734
+ msgstr "autor"
735
+
736
+ #: classes/display-conditions.php:111
737
+ #, php-format
738
+ msgid "archive: %s"
739
+ msgstr "arquivo: %s"
740
+
741
+ #: classes/display-conditions.php:204 classes/display-conditions.php:257
742
+ #: classes/display-conditions.php:310 classes/display-conditions.php:385
743
+ msgid "show"
744
+ msgstr "mostrar"
745
+
746
+ #: classes/display-conditions.php:205 classes/display-conditions.php:258
747
+ #: classes/display-conditions.php:311 classes/display-conditions.php:386
748
+ msgid "hide"
749
+ msgstr "esconder"
750
+
751
+ #: classes/display-conditions.php:228 classes/display-conditions.php:272
752
+ #: classes/display-conditions.php:360
753
+ msgctxt "Error message shown when no display condition term is selected"
754
+ msgid "Please select some items."
755
+ msgstr "Por favor, selecione alguns itens."
756
+
757
+ #: classes/display-conditions.php:350
758
+ msgctxt "display the terms search field on ad edit page"
759
+ msgid "add more terms"
760
+ msgstr "adicionar mais termos"
761
+
762
+ #: classes/display-conditions.php:351
763
+ msgid "add more terms"
764
+ msgstr "adicionar mais termos"
765
+
766
+ #: classes/display-conditions.php:353
767
+ msgid "term name or id"
768
+ msgstr "nome ou id do termo"
769
+
770
+ #: classes/display-conditions.php:414
771
+ msgid "title or id"
772
+ msgstr "título ou id"
773
+
774
+ #: classes/display-conditions.php:459
775
+ msgid "Home Page"
776
+ msgstr "Página Inicial"
777
+
778
+ #: classes/display-conditions.php:460
779
+ msgid "show on Home page"
780
+ msgstr "mostrar na página inicial"
781
+
782
+ #: classes/display-conditions.php:464
783
+ msgid "Singular Pages"
784
+ msgstr "Páginas Simples"
785
+
786
+ #: classes/display-conditions.php:465
787
+ msgid "show on singular pages/posts"
788
+ msgstr "mostrar no singular páginas/posts"
789
+
790
+ #: classes/display-conditions.php:469
791
+ msgid "Archive Pages"
792
+ msgstr "Páginas de Arquivos"
793
+
794
+ #: classes/display-conditions.php:470
795
+ msgid "show on any type of archive page (category, tag, author and date)"
796
+ msgstr "mostrar em qualquer tipo de página (categoria, tag, autor e data)"
797
+
798
+ #: classes/display-conditions.php:474
799
+ msgid "Search Results"
800
+ msgstr "Resultados da Pesquisa"
801
+
802
+ #: classes/display-conditions.php:475
803
+ msgid "show on search result pages"
804
+ msgstr "mostrar nas páginas de resultados de busca"
805
+
806
+ #: classes/display-conditions.php:479
807
+ msgid "404 Page"
808
+ msgstr "Página 404"
809
+
810
+ #: classes/display-conditions.php:480
811
+ msgid "show on 404 error page"
812
+ msgstr "mostrar na página de erro 404"
813
+
814
+ #: classes/display-conditions.php:484
815
+ msgid "Attachment Pages"
816
+ msgstr "Páginas de Anexos"
817
+
818
+ #: classes/display-conditions.php:485
819
+ msgid "show on attachment pages"
820
+ msgstr "mostrar nas páginas de anexos"
821
+
822
+ #: classes/display-conditions.php:489
823
+ msgid "Secondary Queries"
824
+ msgstr "Consultas Secundárias"
825
+
826
+ #: classes/display-conditions.php:490
827
+ msgid "allow ads in secondary queries"
828
+ msgstr "permitir anúncios em consultas secundárias"
829
+
830
+ #: classes/display-conditions.php:494
831
+ msgid "Feed"
832
+ msgstr "Feed"
833
+
834
+ #: classes/display-conditions.php:495
835
+ msgid "allow ads in Feed"
836
+ msgstr "permitir anúncios no Feed"
837
+
838
+ #: classes/EDD_SL_Plugin_Updater.php:358
839
+ msgid "You do not have permission to install plugin updates"
840
+ msgstr "Você não tem permissão para instalar atualizações do plugin"
841
+
842
+ #: classes/EDD_SL_Plugin_Updater.php:358
843
+ msgid "Error"
844
+ msgstr "Erro"
845
+
846
+ #: classes/visitor-conditions.php:32
847
+ msgid "mobile device"
848
+ msgstr "dispositivo móvel"
849
+
850
+ #: classes/visitor-conditions.php:33
851
+ msgid "Display ads only on mobile devices or hide them."
852
+ msgstr "Exibir anúncios somente em dispositivos móveis ou ocultá-los."
853
+
854
+ #: classes/visitor-conditions.php:39
855
+ msgid "logged in visitor"
856
+ msgstr "visitante logado"
857
+
858
+ #: classes/visitor-conditions.php:40
859
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
860
+ msgstr "Se o visitante deve estar logado ou não, para visualizar os anúncios."
861
+
862
+ #: classes/visitor-conditions.php:107
863
+ msgid "Manual and Troubleshooting"
864
+ msgstr "Manual e Resolução de Problemas"
865
+
866
+ #: classes/visitor-conditions.php:136
867
+ msgid "equal"
868
+ msgstr "igual"
869
+
870
+ #: classes/visitor-conditions.php:137
871
+ msgid "equal or higher"
872
+ msgstr "igual ou superior"
873
+
874
+ #: classes/visitor-conditions.php:138
875
+ msgid "equal or lower"
876
+ msgstr "igual ou inferior"
877
+
878
+ #: classes/visitor-conditions.php:168
879
+ msgid "contains"
880
+ msgstr "contenha"
881
+
882
+ #: classes/visitor-conditions.php:169
883
+ msgid "starts with"
884
+ msgstr "começa com"
885
+
886
+ #: classes/visitor-conditions.php:170
887
+ msgid "ends with"
888
+ msgstr "termina com"
889
+
890
+ #: classes/visitor-conditions.php:171
891
+ msgid "matches"
892
+ msgstr "corresponde"
893
+
894
+ #: classes/visitor-conditions.php:172
895
+ msgid "matches regex"
896
+ msgstr "corresponda regex"
897
+
898
+ #: classes/visitor-conditions.php:173
899
+ msgid "does not contain"
900
+ msgstr "não contém"
901
+
902
+ #: classes/visitor-conditions.php:174
903
+ msgid "does not start with"
904
+ msgstr "não começa com"
905
+
906
+ #: classes/visitor-conditions.php:175
907
+ msgid "does not end with"
908
+ msgstr "não termina com"
909
+
910
+ #: classes/visitor-conditions.php:176
911
+ msgid "does not match"
912
+ msgstr "não corresponde"
913
+
914
+ #: classes/visitor-conditions.php:177
915
+ msgid "does not match regex"
916
+ msgstr "não corresponde regex"
917
+
918
+ #: classes/widget.php:22
919
+ msgid "Display Ads and Ad Groups."
920
+ msgstr "Exibir Anúncios e Grupos de Anúncios."
921
+
922
+ #: classes/widget.php:67 admin/includes/class-shortcode-creator.php:75
923
+ msgid "--empty--"
924
+ msgstr "--vazio--"
925
+
926
+ #: classes/widget.php:69 admin/includes/class-menu.php:72
927
+ #: admin/includes/class-shortcode-creator.php:91 admin/views/placements.php:19
928
+ #: modules/import-export/views/page.php:25
929
+ msgid "Placements"
930
+ msgstr "Locais"
931
+
932
+ #: classes/widget.php:76 admin/includes/class-menu.php:67
933
+ #: admin/includes/class-shortcode-creator.php:84 admin/views/placements.php:76
934
+ #: admin/views/placements.php:182
935
+ msgid "Ad Groups"
936
+ msgstr "Grupos de Anúncios"
937
+
938
+ #: classes/widget.php:83 public/class-advanced-ads.php:597
939
+ #: admin/includes/class-menu.php:56 admin/includes/class-menu.php:56
940
+ #: admin/includes/class-shortcode-creator.php:77
941
+ #: admin/views/ad-group-list-form-row.php:28
942
+ #: admin/views/ad-group-list-header.php:5 admin/views/placements.php:83
943
+ #: admin/views/placements.php:189 modules/import-export/views/page.php:23
944
+ msgid "Ads"
945
+ msgstr "Anúncios"
946
+
947
+ #: public/class-advanced-ads.php:316
948
+ msgid "Advanced Ads Error following:"
949
+ msgstr "Anúncios Avançados possui os seguintes Erros:"
950
+
951
+ #: public/class-advanced-ads.php:319
952
+ #, php-format
953
+ msgid "Advanced Ads Error: %s"
954
+ msgstr "Aúncios Avançados Erro: %s"
955
+
956
+ #: public/class-advanced-ads.php:560
957
+ msgctxt "ad group general name"
958
+ msgid "Ad Groups"
959
+ msgstr "Grupos de Anúncios"
960
+
961
+ #: public/class-advanced-ads.php:562
962
+ msgid "Search Ad Groups"
963
+ msgstr "Pesquisar Grupos de Anúncios"
964
+
965
+ #: public/class-advanced-ads.php:563
966
+ msgid "All Ad Groups"
967
+ msgstr "Todos os Grupos de Anúncios"
968
+
969
+ #: public/class-advanced-ads.php:564
970
+ msgid "Parent Ad Groups"
971
+ msgstr "Grupos de Anúncios Pai"
972
+
973
+ #: public/class-advanced-ads.php:565
974
+ msgid "Parent Ad Groups:"
975
+ msgstr "Grupos de Anúncios Pai:"
976
+
977
+ #: public/class-advanced-ads.php:566
978
+ msgid "Edit Ad Group"
979
+ msgstr "Editar Grupo de Anúncios"
980
+
981
+ #: public/class-advanced-ads.php:567
982
+ msgid "Update Ad Group"
983
+ msgstr "Atualizar Grupo de Anúncios"
984
+
985
+ #: public/class-advanced-ads.php:568
986
+ msgid "Add New Ad Group"
987
+ msgstr "Adicionar Novo Grupo de Anúncios"
988
+
989
+ #: public/class-advanced-ads.php:569
990
+ msgid "New Ad Groups Name"
991
+ msgstr "Nome do Novo Grupo de Anúncios"
992
+
993
+ #: public/class-advanced-ads.php:570 admin/includes/class-menu.php:67
994
+ #: modules/import-export/views/page.php:24
995
+ msgid "Groups"
996
+ msgstr "Grupos"
997
+
998
+ #: public/class-advanced-ads.php:571
999
+ msgid "No Ad Group found"
1000
+ msgstr "Nenhum Grupo de Anúncios encontrado"
1001
+
1002
+ #: public/class-advanced-ads.php:599 public/class-advanced-ads.php:603
1003
+ #: admin/includes/class-menu.php:62 admin/views/ad-group-list-form-row.php:45
1004
+ msgid "New Ad"
1005
+ msgstr "Novo Anúncio"
1006
+
1007
+ #: public/class-advanced-ads.php:600 admin/includes/class-menu.php:62
1008
+ msgid "Add New Ad"
1009
+ msgstr "Adicionar Novo Anúncio"
1010
+
1011
+ #: public/class-advanced-ads.php:601
1012
+ #: admin/includes/class-ad-groups-list.php:302
1013
+ #: modules/import-export/classes/import.php:143
1014
+ #: modules/import-export/classes/import.php:183
1015
+ #: modules/import-export/classes/import.php:559
1016
+ msgid "Edit"
1017
+ msgstr "Editar"
1018
+
1019
+ #: public/class-advanced-ads.php:602
1020
+ msgid "Edit Ad"
1021
+ msgstr "Editar Anúncio"
1022
+
1023
+ #: public/class-advanced-ads.php:604
1024
+ msgid "View"
1025
+ msgstr "Visualizar"
1026
+
1027
+ #: public/class-advanced-ads.php:605
1028
+ msgid "View the Ad"
1029
+ msgstr "Visualizar o Anúncio"
1030
+
1031
+ #: public/class-advanced-ads.php:606
1032
+ msgid "Search Ads"
1033
+ msgstr "Pesquisar Anúncios"
1034
+
1035
+ #: public/class-advanced-ads.php:607
1036
+ msgid "No Ads found"
1037
+ msgstr "Nenhum Anúncio encontrado"
1038
+
1039
+ #: public/class-advanced-ads.php:608
1040
+ msgid "No Ads found in Trash"
1041
+ msgstr "Nenhum Anúncio encontrado na Lixeira"
1042
+
1043
+ #: public/class-advanced-ads.php:609
1044
+ msgid "Parent Ad"
1045
+ msgstr "Anúncio Pai"
1046
+
1047
+ #: admin/includes/class-ad-groups-list.php:165
1048
+ msgid "Ad weight"
1049
+ msgstr "Peso do Anúncio"
1050
+
1051
+ #: admin/includes/class-ad-groups-list.php:173
1052
+ #: admin/views/ad-list-timing-column.php:4
1053
+ #, php-format
1054
+ msgid "starts %s"
1055
+ msgstr "inicia %s"
1056
+
1057
+ #: admin/includes/class-ad-groups-list.php:192
1058
+ #: admin/views/ad-list-timing-column.php:21
1059
+ #, php-format
1060
+ msgid "expires %s"
1061
+ msgstr "expira %s"
1062
+
1063
+ #: admin/includes/class-ad-groups-list.php:194
1064
+ #: admin/views/ad-list-timing-column.php:23
1065
+ #, php-format
1066
+ msgid "<strong>expired</strong> %s"
1067
+ msgstr "<strong>expirado</strong> %s"
1068
+
1069
+ #: admin/includes/class-ad-groups-list.php:207
1070
+ msgid "all published ads are displayed"
1071
+ msgstr "todos os anúncios publicados estão sendo exibidos"
1072
+
1073
+ #: admin/includes/class-ad-groups-list.php:209
1074
+ #, php-format
1075
+ msgid "up to %d ads displayed"
1076
+ msgstr "vá para %d anúncios exibidos"
1077
+
1078
+ #: admin/includes/class-ad-groups-list.php:212
1079
+ msgid "No ads assigned"
1080
+ msgstr "Não há anúncios atribuídos"
1081
+
1082
+ #: admin/includes/class-ad-groups-list.php:278
1083
+ msgid "Random ads"
1084
+ msgstr "Anúncios aleatórios"
1085
+
1086
+ #: admin/includes/class-ad-groups-list.php:279
1087
+ msgid "Display random ads based on ad weight"
1088
+ msgstr "Exibir anúncios aleatórios com base no peso anúncio"
1089
+
1090
+ #: admin/includes/class-ad-groups-list.php:282
1091
+ msgid "Ordered ads"
1092
+ msgstr "Anúncios ordenados"
1093
+
1094
+ #: admin/includes/class-ad-groups-list.php:283
1095
+ msgid "Display ads with the highest ad weight first"
1096
+ msgstr "Os anúncios gráficos com maior peso em primeiro lugar"
1097
+
1098
+ #: admin/includes/class-ad-groups-list.php:303
1099
+ msgid "Usage"
1100
+ msgstr "Usar"
1101
+
1102
+ #: admin/includes/class-ad-groups-list.php:333
1103
+ msgid "Invalid Ad Group"
1104
+ msgstr "Grupo de Anúncios Inválido"
1105
+
1106
+ #: admin/includes/class-ad-groups-list.php:338
1107
+ msgid "You don’t have permission to change the ad groups"
1108
+ msgstr "Você não tem permissão para alterar os grupos de anúncios"
1109
+
1110
+ #: admin/includes/class-ad-type.php:79 admin/includes/class-ad-type.php:84
1111
+ msgid "Ad Details"
1112
+ msgstr "Detalhes do Anúncio"
1113
+
1114
+ #: admin/includes/class-ad-type.php:80 admin/includes/class-ad-type.php:85
1115
+ msgid "Ad Planning"
1116
+ msgstr "Planejamento de Anúncio"
1117
+
1118
+ #: admin/includes/class-ad-type.php:182
1119
+ msgid "expired"
1120
+ msgstr "expirado"
1121
+
1122
+ #: admin/includes/class-ad-type.php:183
1123
+ msgid "any expiry date"
1124
+ msgstr "qualquer data de expiração"
1125
+
1126
+ #: admin/includes/class-ad-type.php:184
1127
+ msgid "planned"
1128
+ msgstr ""
1129
+ "\n"
1130
+ "planejado"
1131
+
1132
+ #: admin/includes/class-ad-type.php:487 admin/includes/class-ad-type.php:488
1133
+ msgid "Ad updated."
1134
+ msgstr "Anúncio atualizado."
1135
+
1136
+ #. translators: %s: date and time of the revision
1137
+ #: admin/includes/class-ad-type.php:490
1138
+ #, php-format
1139
+ msgid "Ad restored to revision from %s"
1140
+ msgstr "Anúncio restaurado para revisão de %s"
1141
+
1142
+ #: admin/includes/class-ad-type.php:491
1143
+ msgid "Ad published."
1144
+ msgstr "Anúncio publicado."
1145
+
1146
+ #: admin/includes/class-ad-type.php:492
1147
+ msgid "Ad saved."
1148
+ msgstr "Anúncio salvo."
1149
+
1150
+ #: admin/includes/class-ad-type.php:493
1151
+ msgid "Ad submitted."
1152
+ msgstr "Anúncio enviado."
1153
+
1154
+ #: admin/includes/class-ad-type.php:495
1155
+ #, php-format
1156
+ msgid "Ad scheduled for: <strong>%1$s</strong>."
1157
+ msgstr "Anúncio previsto para: <strong>%1$s</strong>."
1158
+
1159
+ #. translators: Publish box date format, see http://php.net/date
1160
+ #: admin/includes/class-ad-type.php:497
1161
+ msgid "M j, Y @ G:i"
1162
+ msgstr "M j, Y @ G:i"
1163
+
1164
+ #: admin/includes/class-ad-type.php:499
1165
+ msgid "Ad draft updated."
1166
+ msgstr "Rascunho do Anúncio atualizado."
1167
+
1168
+ #: admin/includes/class-menu.php:52
1169
+ msgid "Overview"
1170
+ msgstr "Visão geral"
1171
+
1172
+ #: admin/includes/class-menu.php:72
1173
+ msgid "Ad Placements"
1174
+ msgstr "Locais de Anúncio"
1175
+
1176
+ #: admin/includes/class-menu.php:76
1177
+ msgid "Advanced Ads Settings"
1178
+ msgstr "Configurações de Anúncios Avançados"
1179
+
1180
+ #: admin/includes/class-menu.php:76 admin/views/debug.php:10
1181
+ msgid "Settings"
1182
+ msgstr "Configurações"
1183
+
1184
+ #: admin/includes/class-menu.php:79
1185
+ msgid "Advanced Ads Debugging"
1186
+ msgstr "Debug de Anúncios Avançados"
1187
+
1188
+ #: admin/includes/class-menu.php:79
1189
+ msgid "Debug"
1190
+ msgstr "Debug"
1191
+
1192
+ #: admin/includes/class-menu.php:83 admin/includes/class-menu.php:83
1193
+ msgid "Advanced Ads Intro"
1194
+ msgstr "Introdução ao Anúncios Avançados"
1195
+
1196
+ #: admin/includes/class-menu.php:205 admin/includes/class-menu.php:232
1197
+ msgid "Sorry, you are not allowed to access this feature."
1198
+ msgstr "Desculpe, você não tem permissão para acessar esta função."
1199
+
1200
+ #: admin/includes/class-menu.php:218
1201
+ msgid ""
1202
+ "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1203
+ "deleted?"
1204
+ msgstr ""
1205
+ "Você está tentando editar um Grupo que não existe. Talvez tenha sido apagado?"
1206
+
1207
+ #: admin/includes/class-meta-box.php:53
1208
+ msgid "Ad Type"
1209
+ msgstr "Tipo de Anúncio"
1210
+
1211
+ #: admin/includes/class-meta-box.php:59
1212
+ msgid "Ad Parameters"
1213
+ msgstr "Parâmetros do Anúncio"
1214
+
1215
+ #: admin/includes/class-meta-box.php:62
1216
+ msgid "Layout / Output"
1217
+ msgstr "Layout / Exibição"
1218
+
1219
+ #: admin/includes/class-meta-box.php:125 admin/includes/class-meta-box.php:136
1220
+ #: admin/includes/class-meta-box.php:141 admin/includes/class-settings.php:409
1221
+ #: admin/views/ad-output-metabox.php:51
1222
+ msgid "Manual"
1223
+ msgstr "Manual"
1224
+
1225
+ #: admin/includes/class-meta-box.php:135
1226
+ msgid "Video"
1227
+ msgstr "Vídeo"
1228
+
1229
+ #: admin/includes/class-meta-box.php:196
1230
+ msgid "Ad Settings"
1231
+ msgstr "Configurações do Anúncio"
1232
+
1233
+ #: admin/includes/class-meta-box.php:298 admin/views/overview.php:23
1234
+ msgid "Ads Dashboard"
1235
+ msgstr "Painel de Anúncios"
1236
+
1237
+ #: admin/includes/class-meta-box.php:310
1238
+ msgid "From the ad optimization universe"
1239
+ msgstr "Universo de otimizações de anúncios"
1240
+
1241
+ #: admin/includes/class-meta-box.php:319
1242
+ msgid "Advanced Ads Tutorials"
1243
+ msgstr "Tutoriais do Anúncios Avançados"
1244
+
1245
+ #: admin/includes/class-meta-box.php:330
1246
+ #, php-format
1247
+ msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
1248
+ msgstr "%d anúncios <a href=\"%s\">gerir</a> - <a href=\"%s\">novos</a>"
1249
+
1250
+ #: admin/includes/class-meta-box.php:341
1251
+ msgid "plugin manual and homepage"
1252
+ msgstr "manual e página do plugin"
1253
+
1254
+ #: admin/includes/class-meta-box.php:348
1255
+ msgid "Get the tutorial via email"
1256
+ msgstr "Receba o tutorial por e-mail"
1257
+
1258
+ #: admin/includes/class-meta-box.php:355
1259
+ msgid "Get AdSense tips via email"
1260
+ msgstr "Receba dicas do AdSense via e-mail"
1261
+
1262
+ #: admin/includes/class-notices.php:412
1263
+ #, php-format
1264
+ msgid ""
1265
+ "You don’t seem to have an email address. Please use <a href=\"%s\" "
1266
+ "target=\"_blank\">this form</a> to sign up."
1267
+ msgstr ""
1268
+ "Você não parece ter um endereço de e-mail. Utilize <a href=\"%s\" "
1269
+ "target=\"_blank\">este formulário</a> para se inscrever."
1270
+
1271
+ #: admin/includes/class-notices.php:430
1272
+ msgid ""
1273
+ "How embarrassing. The email server seems to be down. Please try again later."
1274
+ msgstr ""
1275
+ "Como é embaraçoso. O servidor de e-mail parece ser ruim. Por favor tente de "
1276
+ "novo mais tarde."
1277
+
1278
+ #: admin/includes/class-notices.php:435
1279
+ #, php-format
1280
+ msgid ""
1281
+ "Please check your email (%s) for the confirmation message. If you didn’t "
1282
+ "receive one or want to use another email address then please use <a "
1283
+ "href=\"%s\" target=\"_blank\">this form</a> to sign up."
1284
+ msgstr ""
1285
+ "Por favor, verifique seu e-mail (%s) para a mensagem de confirmação. Se você "
1286
+ "não receber uma ou quiser usar outro endereço de e-mail, em seguida, utilize "
1287
+ "<a href=\"%s\" target=\"_blank\">este formulário</a> para se inscrever."
1288
+
1289
+ #: admin/includes/class-overview-widgets.php:45
1290
+ msgid "Tips and Tutorials"
1291
+ msgstr "Dicas e Tutoriais"
1292
+
1293
+ #: admin/includes/class-overview-widgets.php:47
1294
+ msgid "Setup and Optimization Help"
1295
+ msgstr "Ajuda de Configuração e Otimização"
1296
+
1297
+ #: admin/includes/class-overview-widgets.php:49
1298
+ msgid "Manual and Support"
1299
+ msgstr "Manual e Suporte"
1300
+
1301
+ #: admin/includes/class-overview-widgets.php:53
1302
+ msgid "Advanced Ads Pro"
1303
+ msgstr "Anúncios Avançados Pro"
1304
+
1305
+ #: admin/includes/class-overview-widgets.php:55
1306
+ msgid "Tracking and Stats"
1307
+ msgstr "Rastreamento e Estatísticas"
1308
+
1309
+ #: admin/includes/class-overview-widgets.php:57
1310
+ msgid "Responsive and Mobile ads"
1311
+ msgstr "Anúncios Responsivos e Móveis"
1312
+
1313
+ #: admin/includes/class-overview-widgets.php:59
1314
+ msgid "Geo Targeting"
1315
+ msgstr "Direcionamento Geográfico"
1316
+
1317
+ #: admin/includes/class-overview-widgets.php:61
1318
+ msgid "Sticky ads"
1319
+ msgstr "Anúncios destacados"
1320
+
1321
+ #: admin/includes/class-overview-widgets.php:63
1322
+ msgid "PopUps and Layers"
1323
+ msgstr "PopUps e Camadas"
1324
+
1325
+ #: admin/includes/class-overview-widgets.php:65
1326
+ msgid "Ad Slider"
1327
+ msgstr "Adicionar Slider"
1328
+
1329
+ #: admin/includes/class-overview-widgets.php:86
1330
+ msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
1331
+ msgstr ""
1332
+ "Ganhe 2 <strong>add-ons gratuitos</ strong> para juntar-se à newsletter."
1333
+
1334
+ #: admin/includes/class-overview-widgets.php:87
1335
+ msgid "Join now"
1336
+ msgstr "Junte-se agora"
1337
+
1338
+ #: admin/includes/class-overview-widgets.php:94
1339
+ msgid ""
1340
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1341
+ "and Advanced Ads from the dedicated newsletter group."
1342
+ msgstr ""
1343
+ "Saiba mais sobre como e <strong>o quanto você pode ganhar com o "
1344
+ "AdSense</strong> e Anúncios Avançados no grupo de boletim informativo "
1345
+ "dedicado."
1346
+
1347
+ #: admin/includes/class-overview-widgets.php:95 admin/includes/notices.php:30
1348
+ #: admin/views/intro.php:73 admin/views/notices/inline.php:3
1349
+ #: admin/views/notices/subscribe.php:3
1350
+ msgid "Subscribe me now"
1351
+ msgstr "Inscreva-me agora"
1352
+
1353
+ #: admin/includes/class-overview-widgets.php:102
1354
+ msgid "Get the first steps and more tutorials to your inbox."
1355
+ msgstr "Obter os primeiros passos e mais tutoriais em sua caixa de entrada."
1356
+
1357
+ #: admin/includes/class-overview-widgets.php:103
1358
+ msgid "Send it now"
1359
+ msgstr "Enviar agora"
1360
+
1361
+ #: admin/includes/class-overview-widgets.php:126 admin/views/intro.php:78
1362
+ msgid "Create your first ad"
1363
+ msgstr "Crie seu primeiro anúncio"
1364
+
1365
+ #: admin/includes/class-overview-widgets.php:129
1366
+ msgid ""
1367
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
1368
+ "single spot."
1369
+ msgstr ""
1370
+ "Grupos de Anúncios contêm anúncios e são usados atualmente para rodar vários "
1371
+ "anúncios em um único local."
1372
+
1373
+ #: admin/includes/class-overview-widgets.php:131
1374
+ msgid "Create your first group"
1375
+ msgstr "Crie seu primeiro Grupo"
1376
+
1377
+ #: admin/includes/class-overview-widgets.php:134
1378
+ msgid ""
1379
+ "Ad Placements are the best way to manage where to display ads and groups."
1380
+ msgstr ""
1381
+ "Locais de anúncios são a melhor maneira de gerenciar onde exibir anúncios e "
1382
+ "grupos."
1383
+
1384
+ #: admin/includes/class-overview-widgets.php:136
1385
+ msgid "Create your first placement"
1386
+ msgstr "Crie seu primeiro Local"
1387
+
1388
+ #: admin/includes/class-overview-widgets.php:141
1389
+ msgid "Next steps"
1390
+ msgstr "Próximos passos"
1391
+
1392
+ #: admin/includes/class-overview-widgets.php:153
1393
+ #, php-format
1394
+ msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
1395
+ msgstr "<a href=\"%s\" target=\"_blank\">Manual</a>"
1396
+
1397
+ #: admin/includes/class-overview-widgets.php:154
1398
+ #, php-format
1399
+ msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
1400
+ msgstr ""
1401
+ "<a href=\"%s\" target=\"_blank\">FAQ e Suporte</a>\n"
1402
+
1403
+ #: admin/includes/class-overview-widgets.php:155
1404
+ #, php-format
1405
+ msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
1406
+ msgstr "Votar para um <a href=\"%s\" target=\"_blank\">recurso</a>"
1407
+
1408
+ #: admin/includes/class-overview-widgets.php:156
1409
+ #, php-format
1410
+ msgid ""
1411
+ "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
1412
+ "href=\"%s\" target=\"_blank\">wordpress.org</a>"
1413
+ msgstr ""
1414
+ "Obrigado ao desenvolvedor com uma &#9733;&#9733;&#9733;&#9733;&#9733; "
1415
+ "avaliação em <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
1416
+
1417
+ #: admin/includes/class-overview-widgets.php:165
1418
+ msgid ""
1419
+ "Need help to set up and optimize your ads? Need custom coding on your site? "
1420
+ "Ask me for a quote."
1421
+ msgstr ""
1422
+ "Necessita de ajuda para configurar e otimizar seus anúncios? Precisa de "
1423
+ "personalizar codificação em seu site? Peça um orçamento."
1424
+
1425
+ #: admin/includes/class-overview-widgets.php:166
1426
+ #, php-format
1427
+ msgid "Help with ads on %s"
1428
+ msgstr "Ajuda com anúncios em %s"
1429
+
1430
+ #: admin/includes/class-overview-widgets.php:167
1431
+ msgid "Get an offer"
1432
+ msgstr "Obter uma oferta"
1433
+
1434
+ #: admin/includes/class-overview-widgets.php:175
1435
+ msgid "Ad management for advanced websites."
1436
+ msgstr "Gerenciamento de anúncios para sites avançados."
1437
+
1438
+ #: admin/includes/class-overview-widgets.php:176
1439
+ msgid "Cache-busting"
1440
+ msgstr "Cache arrebentando"
1441
+
1442
+ #: admin/includes/class-overview-widgets.php:177
1443
+ msgid "Advanced visitor conditions"
1444
+ msgstr "Condições avançadas para visitantes"
1445
+
1446
+ #: admin/includes/class-overview-widgets.php:178
1447
+ msgid "Flash ads with fallback"
1448
+ msgstr "Anúncios em Flash com fallback"
1449
+
1450
+ #: admin/includes/class-overview-widgets.php:180
1451
+ msgid "Get Pro"
1452
+ msgstr "Obter Pro"
1453
+
1454
+ #: admin/includes/class-overview-widgets.php:188
1455
+ msgid "Track the impressions of and clicks on your ads."
1456
+ msgstr "Acompanhe as impressões e cliques em seus anúncios."
1457
+
1458
+ #: admin/includes/class-overview-widgets.php:189
1459
+ msgid "2 methods to count impressions"
1460
+ msgstr "2 métodos para contar impressões"
1461
+
1462
+ #: admin/includes/class-overview-widgets.php:190
1463
+ msgid "beautiful stats for all or single ads"
1464
+ msgstr "Status bonito para todos ou anúncios individuais"
1465
+
1466
+ #: admin/includes/class-overview-widgets.php:191
1467
+ msgid "group stats by day, week or month"
1468
+ msgstr "Estatísticas do grupo por dia, semana ou mês"
1469
+
1470
+ #: admin/includes/class-overview-widgets.php:193
1471
+ msgid "Get the Tracking add-on"
1472
+ msgstr "Obter o Rastreamento add-on"
1473
+
1474
+ #: admin/includes/class-overview-widgets.php:201
1475
+ msgid "Display ads based on the size of your visitor’s browser or device."
1476
+ msgstr ""
1477
+ "Os anúncios gráficos com base no tamanho do navegador ou dispositivo do seu "
1478
+ "visitante."
1479
+
1480
+ #: admin/includes/class-overview-widgets.php:202
1481
+ msgid "set a range (from … to …) pixels for the browser size"
1482
+ msgstr ""
1483
+ "definir um intervalo (de ... para ...) pixels para o tamanho do navegador"
1484
+
1485
+ #: admin/includes/class-overview-widgets.php:203
1486
+ msgid "set custom sizes for AdSense responsive ads"
1487
+ msgstr "definir tamanhos personalizados para anúncios responsivos do AdSense"
1488
+
1489
+ #: admin/includes/class-overview-widgets.php:204
1490
+ msgid "list all ads by their responsive settings"
1491
+ msgstr "listar todos os anúncios por suas configurações responsivas"
1492
+
1493
+ #: admin/includes/class-overview-widgets.php:206
1494
+ msgid "Get the Responsive add-on"
1495
+ msgstr "Obter o Responsive add-on"
1496
+
1497
+ #: admin/includes/class-overview-widgets.php:214
1498
+ msgid "Target visitors by their geo location."
1499
+ msgstr "Segmentar os visitantes por sua localização geográfica."
1500
+
1501
+ #: admin/includes/class-overview-widgets.php:216
1502
+ msgid "Get the Geo Targeting add-on"
1503
+ msgstr "Obter o addon de Direcionamento Geográfico"
1504
+
1505
+ #: admin/includes/class-overview-widgets.php:224
1506
+ msgid ""
1507
+ "Fix ads to the browser while users are scrolling and create best performing "
1508
+ "anchor ads."
1509
+ msgstr ""
1510
+ "Corrigir anúncios para o navegador enquanto os usuários estiverem rolando e "
1511
+ "criar melhor performance de ancoragem para anúncios."
1512
+
1513
+ #: admin/includes/class-overview-widgets.php:225
1514
+ msgid "position ads that don’t scroll with the screen"
1515
+ msgstr "Posição de anúncios que não rolam com a tela"
1516
+
1517
+ #: admin/includes/class-overview-widgets.php:226
1518
+ msgid "build anchor ads not only on mobile devices"
1519
+ msgstr "construir âncora de anúncios em dispositivos móveis"
1520
+
1521
+ #: admin/includes/class-overview-widgets.php:228
1522
+ msgid "Get the Sticky add-on"
1523
+ msgstr "Obter Destaque add-on"
1524
+
1525
+ #: admin/includes/class-overview-widgets.php:236
1526
+ msgid "Display content and ads in layers and popups on custom events."
1527
+ msgstr ""
1528
+ "Exibir conteúdo e anúncios em camadas e popups sobre eventos personalizados."
1529
+
1530
+ #: admin/includes/class-overview-widgets.php:237
1531
+ msgid "display a popup after a user interaction like scrolling"
1532
+ msgstr "exibir um pop-up depois de uma interação do usuário como a rolagem"
1533
+
1534
+ #: admin/includes/class-overview-widgets.php:238
1535
+ msgid "optional background overlay"
1536
+ msgstr "sobreposição de fundo opcional"
1537
+
1538
+ #: admin/includes/class-overview-widgets.php:239
1539
+ msgid "allow users to close the popup"
1540
+ msgstr "permitir que os usuários fechem o pop-up"
1541
+
1542
+ #: admin/includes/class-overview-widgets.php:241
1543
+ msgid "Get the PopUp and Layer add-on"
1544
+ msgstr "Obter PopUp e Camada add-on"
1545
+
1546
+ #: admin/includes/class-overview-widgets.php:249
1547
+ msgid "Create a beautiful and simple slider from your ads."
1548
+ msgstr "Criar um bonito e simples slider para seus anúncios."
1549
+
1550
+ #: admin/includes/class-overview-widgets.php:251
1551
+ msgid "Get the Slider add-on"
1552
+ msgstr "Obter Slider add-on"
1553
+
1554
+ #: admin/includes/class-settings.php:47 admin/views/settings.php:12
1555
+ msgid "General"
1556
+ msgstr "Geral"
1557
+
1558
+ #: admin/includes/class-settings.php:59 admin/includes/class-settings.php:182
1559
+ msgid "Licenses"
1560
+ msgstr "Licenças"
1561
+
1562
+ #: admin/includes/class-settings.php:70
1563
+ msgid "Disable ads"
1564
+ msgstr "Desativar anúncios"
1565
+
1566
+ #: admin/includes/class-settings.php:78
1567
+ msgid "Hide ads for logged in users"
1568
+ msgstr "Não exibir anúncios para usuários logados"
1569
+
1570
+ #: admin/includes/class-settings.php:86
1571
+ msgid "Use advanced JavaScript"
1572
+ msgstr "Usar JavaScript avançado"
1573
+
1574
+ #: admin/includes/class-settings.php:94
1575
+ msgid "Unlimited ad injection"
1576
+ msgstr "Injeção de anúncios ilimitados"
1577
+
1578
+ #: admin/includes/class-settings.php:102
1579
+ msgid "Priority of content injection filter"
1580
+ msgstr "Prioridade de filtro de injeção de conteúdo"
1581
+
1582
+ #: admin/includes/class-settings.php:110
1583
+ msgid "Hide ads from bots"
1584
+ msgstr "Esconder anúncios de robôs (google, yahoo, bing, etc...)"
1585
+
1586
+ #: admin/includes/class-settings.php:118
1587
+ msgid "Disable notices"
1588
+ msgstr "desabilitar notificações"
1589
+
1590
+ #: admin/includes/class-settings.php:126
1591
+ msgid "ID prefix"
1592
+ msgstr "Prefixo ID"
1593
+
1594
+ #: admin/includes/class-settings.php:134
1595
+ msgid "Remove Widget ID"
1596
+ msgstr "Remover ID do Widget"
1597
+
1598
+ #: admin/includes/class-settings.php:142
1599
+ msgid "Allow editors to manage ads"
1600
+ msgstr "Permitir que editores gerenciem anúncios"
1601
+
1602
+ #: admin/includes/class-settings.php:150
1603
+ msgid "Ad label"
1604
+ msgstr "Rótulo do Anúncio"
1605
+
1606
+ #: admin/includes/class-settings.php:238
1607
+ msgid "(display to all)"
1608
+ msgstr "(exibir para todos)"
1609
+
1610
+ #: admin/includes/class-settings.php:239
1611
+ msgid "Subscriber"
1612
+ msgstr "Assinante"
1613
+
1614
+ #: admin/includes/class-settings.php:240
1615
+ msgid "Contributor"
1616
+ msgstr "Contribuidor"
1617
+
1618
+ #: admin/includes/class-settings.php:241
1619
+ msgid "Author"
1620
+ msgstr "Autor"
1621
+
1622
+ #: admin/includes/class-settings.php:242
1623
+ msgid "Editor"
1624
+ msgstr "Editor"
1625
+
1626
+ #: admin/includes/class-settings.php:243
1627
+ msgid "Admin"
1628
+ msgstr "Administrador"
1629
+
1630
+ #: admin/includes/class-settings.php:251
1631
+ msgid "Choose the lowest role a user must have in order to not see any ads."
1632
+ msgstr "Escolha o nível de usuário mais baixo para não ver os anúncios."
1633
+
1634
+ #: admin/includes/class-settings.php:265
1635
+ msgid ""
1636
+ "<strong>notice: </strong>the file is currently enabled by an add-on that "
1637
+ "needs it."
1638
+ msgstr ""
1639
+ "<strong>Aviso:</strong> o arquivo está atualmente habilitado por um add-on "
1640
+ "que precisa dele."
1641
+
1642
+ #: admin/includes/class-settings.php:268
1643
+ #, php-format
1644
+ msgid ""
1645
+ "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
1646
+ "here</a>). Some features and add-ons might override this setting if they "
1647
+ "need features from this file."
1648
+ msgstr ""
1649
+ "Habilitar funções JavaScript avançadas (<a href=\"%s\" target=\"_blank\">"
1650
+ "aqui</a>). Algumas funcionalidades e complementos podem substituir essa "
1651
+ "configuração se eles precisarem de recursos a partir deste arquivo."
1652
+
1653
+ #: admin/includes/class-settings.php:281
1654
+ msgid ""
1655
+ "Some plugins and themes trigger ad injection where it shouldn’t happen. "
1656
+ "Therefore, Advanced Ads ignores injected placements on non-singular pages "
1657
+ "and outside the loop. However, this can cause problems with some themes. You "
1658
+ "can enable this option if you don’t see ads or want to enable ad injections "
1659
+ "on archive pages AT YOUR OWN RISK."
1660
+ msgstr ""
1661
+ "Alguns plugins e temas desencadear injeção de anúncio onde ele não deveria "
1662
+ "acontecer. Portanto, Anúncios Avançados ignora posicionamentos injetados em "
1663
+ "páginas não singulares e fora do loop. No entanto, isso pode causar "
1664
+ "problemas com alguns temas. Você pode ativar essa opção se você não vê "
1665
+ "anúncios ou deseja ativar injeções de anúncios em páginas de arquivos POR "
1666
+ "SUA CONTA E RISCO."
1667
+
1668
+ #: admin/includes/class-settings.php:297
1669
+ msgid ""
1670
+ "Please check your post content. A priority of 10 and below might cause "
1671
+ "issues (wpautop function might run twice)."
1672
+ msgstr ""
1673
+ "Por favor, verifique o conteúdo do post. A prioridade de 10 e abaixo pode "
1674
+ "causar problemas (função wpautop pode ser executado duas vezes)."
1675
+
1676
+ #: admin/includes/class-settings.php:299
1677
+ msgid ""
1678
+ "Play with this value in order to change the priority of the injected ads "
1679
+ "compared to other auto injected elements in the post content."
1680
+ msgstr ""
1681
+ "Jogar com este valor, a fim de alterar a prioridade dos anúncios injetados "
1682
+ "em comparação com outros elementos injetados automaticamente no conteúdo do "
1683
+ "post."
1684
+
1685
+ #: admin/includes/class-settings.php:313
1686
+ #, php-format
1687
+ msgid ""
1688
+ "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
1689
+ "impressions for bots when using the <a href=\"%s\" target=\"_blank\">"
1690
+ "Tracking Add-On</a>."
1691
+ msgstr ""
1692
+ "Ocultar anúncios de rastreadores, robô e agentes de usuário vazio. Também "
1693
+ "impede contagem de impressões para robôs ao usar o <a href=\"%s\" "
1694
+ "target=\"_blank\">Add-On Rastreamento</a>."
1695
+
1696
+ #: admin/includes/class-settings.php:314
1697
+ msgid ""
1698
+ "Disabling this option only makes sense if your ads contain content you want "
1699
+ "to display to bots (like search engines) or your site is cached and bots "
1700
+ "could create a cached version without the ads."
1701
+ msgstr ""
1702
+ "A desativação dessa opção só faz sentido se os seus anúncios contêm conteúdo "
1703
+ "que você deseja exibir para robôs (como motores de busca) ou o seu site é "
1704
+ "armazenado em cache e robôs podem criar uma versão em cache sem os anúncios."
1705
+
1706
+ #: admin/includes/class-settings.php:327
1707
+ msgid ""
1708
+ "Disable internal notices like tips, tutorials, email newsletters and update "
1709
+ "notices. Disabling notices is recommended if you run multiple blogs with "
1710
+ "Advanced Ads already."
1711
+ msgstr ""
1712
+ "Desativar avisos internos, como dicas, tutoriais, boletins de e-mail e "
1713
+ "avisos de atualização. Desabilitar notificações é recomendado se você "
1714
+ "executar vários blogs com Anúncios Avançados."
1715
+
1716
+ #: admin/includes/class-settings.php:344
1717
+ msgid ""
1718
+ "Prefix of class or id attributes in the frontend. Change it if you don’t "
1719
+ "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
1720
+ "need to <strong>rewrite css rules afterwards</strong>."
1721
+ msgstr ""
1722
+ "Prefixo de classe ou atributos id no editor frontal. Mudá-lo se você não "
1723
+ "quer <strong>bloqueadores de anúncios</strong> para marcar estes blocos como "
1724
+ "anúncios. <br/>Talvez seja necessário <strong>reescrever as regras css "
1725
+ "depois</strong>."
1726
+
1727
+ #: admin/includes/class-settings.php:365
1728
+ msgid ""
1729
+ "Remove the ID attribute from widgets in order to not make them an easy "
1730
+ "target of ad blockers."
1731
+ msgstr ""
1732
+ "Remova o atributo ID de Widgets para não torná-los um alvo fácil de "
1733
+ "bloqueadores de anúncios."
1734
+
1735
+ #: admin/includes/class-settings.php:368
1736
+ msgid ""
1737
+ "If checked, the Advanced Ads Widget will not work with the fixed option of "
1738
+ "the <strong>Q2W3 Fixed Widget</strong> plugin."
1739
+ msgstr ""
1740
+ "Se marcada, o Widget Anúncios Avançados não funcionará com a opção fixa do "
1741
+ "plugin <strong>Widget Q2W3 Fixo</strong>."
1742
+
1743
+ #: admin/includes/class-settings.php:390
1744
+ msgid "Allow editors to also manage and publish ads."
1745
+ msgstr "Permite aos editores gerenciar e publicar anúncios também."
1746
+
1747
+ #: admin/includes/class-settings.php:391
1748
+ #, php-format
1749
+ msgid ""
1750
+ "You can assign different ad-related roles on a user basis with <a "
1751
+ "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1752
+ msgstr ""
1753
+ "Você pode atribuir diferentes funções de anúncios relacionados em uma base "
1754
+ "de usuário com <a href=\"%s\" target=\"_blank\">Anúncios Avançados Pro</a>."
1755
+
1756
+ #: admin/includes/class-settings.php:409
1757
+ msgid "Displayed above ads."
1758
+ msgstr "Exibido anúncios acima."
1759
+
1760
+ #: admin/includes/notices.php:9
1761
+ #, php-format
1762
+ msgid ""
1763
+ "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1764
+ "Steps</a>."
1765
+ msgstr ""
1766
+ "Anúncios Avançados instalado com sucesso. Dê uma olhada nos <a href=\"%s\">"
1767
+ "Primeiros Passos</a>."
1768
+
1769
+ #: admin/includes/notices.php:15
1770
+ msgid ""
1771
+ "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1772
+ "receive the first steps via email?"
1773
+ msgstr ""
1774
+ "Obrigado pela ativação de <strong>Anúncios Avançados </strong>. Gostaria de "
1775
+ "receber os primeiros passos via e-mail?"
1776
+
1777
+ #: admin/includes/notices.php:16
1778
+ msgid "Yes, send it"
1779
+ msgstr "Sim, envie-me"
1780
+
1781
+ #: admin/includes/notices.php:22
1782
+ msgid ""
1783
+ "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1784
+ "<strong>2 free add-ons</strong> for joining the newsletter."
1785
+ msgstr ""
1786
+ "Obrigado por usar o <strong>Anúncios Avançados</strong>. Mantenha-se "
1787
+ "informado e receba <strong>2 add-ons gratuitos</strong> para juntar-se à "
1788
+ "newsletter."
1789
+
1790
+ #: admin/includes/notices.php:23
1791
+ msgid "Add me now"
1792
+ msgstr "Adicione-me agora"
1793
+
1794
+ #: admin/includes/notices.php:29
1795
+ msgid ""
1796
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1797
+ "and Advanced Ads from my dedicated newsletter."
1798
+ msgstr ""
1799
+ "Saiba mais sobre como e <strong>o quanto você pode ganhar com o "
1800
+ "AdSense</strong> e Anúncios Avançados através de meu boletim de notícias "
1801
+ "dedicado."
1802
+
1803
+ #: admin/includes/notices.php:41
1804
+ msgid ""
1805
+ "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1806
+ "missing</strong>."
1807
+ msgstr ""
1808
+ "Uma ou mais chaves de licença para <strong>Add-ons de Anúncios Avançados são "
1809
+ "inválidas ou estão em falta</strong>."
1810
+
1811
+ #: admin/includes/notices.php:41
1812
+ #, php-format
1813
+ msgid "Please add valid license keys <a href=\"%s\">here</a>."
1814
+ msgstr ""
1815
+ "Por favor, adicione as chaves de licença válidas <a href=\"%s\">Aqui</a>."
1816
+
1817
+ #: admin/includes/notices.php:47
1818
+ #, php-format
1819
+ msgid ""
1820
+ "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1821
+ "soon</strong>. Don’t risk to lose support and updates and renew your license "
1822
+ "before it expires with a significant discount on <a href=\"%s\" "
1823
+ "target=\"_blank\">the add-on page</a>."
1824
+ msgstr ""
1825
+ "Uma ou mais licenças para o seu <strong>Anúncios Avançados add-ons estarão "
1826
+ "expirando em breve</strong>. Não arrisque a perder o apoio e atualizações e "
1827
+ "renovar sua licença antes que ela expire com um desconto significativo sobre "
1828
+ "<a href=\"%s\" target=\"_blank\">a página add-on</a>."
1829
+
1830
+ #: admin/includes/notices.php:53
1831
+ #, php-format
1832
+ msgid ""
1833
+ "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1834
+ "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1835
+ "information."
1836
+ msgstr ""
1837
+ "<strong>Anúncios Avançados</strong> licença(s) expirada(s). Suporte e "
1838
+ "atualizações estão desativados. Por favor, visite <a href=\"%s\">a página de "
1839
+ "licença</a> para obter mais informações."
1840
+
1841
+ #: admin/includes/notices.php:59
1842
+ #, php-format
1843
+ msgid ""
1844
+ "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1845
+ "review-image\"/>You are using <strong>Advanced Ads</strong> for some time "
1846
+ "now. Thank you! If you need my help then please visit the <a href=\"%1$s\" "
1847
+ "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
1848
+ "Review</h3><p>If you share my passion and find Advanced Ads useful then "
1849
+ "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
1850
+ "org</a>.</p><p><em>Thomas</em>"
1851
+ msgstr ""
1852
+ "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1853
+ "review-image\"/> Você está usando <strong>Anúncios Avançados</strong> já há "
1854
+ "algum tempo. Obrigado! Se você precisar da minha ajuda, por favor visite a "
1855
+ "<a href=\"%1$s\" target=\"_blank\">página de suporte</a> para obter ajuda "
1856
+ "gratuita. </p><h3>Agradecemos a sua avaliação</h3> <p>Se você compartilha da "
1857
+ "minha paixão e achar Anúncios Avançados útil, por favor, <a href=\"%2$s\" "
1858
+ "target=\"_blank\">deixe um comentário e 5 estrelas no wordpress.org</a>.</p> "
1859
+ "<p><em>Thomas</em>"
1860
+
1861
+ #: admin/includes/notices.php:65
1862
+ #, php-format
1863
+ msgid ""
1864
+ "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1865
+ "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1866
+ "disguise."
1867
+ msgstr ""
1868
+ "Alguns recursos foram alterados. Por favor <strong>reconstruir a pasta de "
1869
+ "recursos</strong> nas <a href=\"%s\">configurações de Anúncios Avançados</a> "
1870
+ "para atualizar o disfarce Ad Blocker."
1871
+
1872
+ #: admin/includes/shortcode-creator-l10n.php:10
1873
+ msgctxt "shortcode creator"
1874
+ msgid "Add an ad"
1875
+ msgstr "Adicionar um anúncio"
1876
+
1877
+ #: admin/includes/shortcode-creator-l10n.php:11
1878
+ msgctxt "shortcode creator"
1879
+ msgid "Add shortcode"
1880
+ msgstr "Adicionar shortcode"
1881
+
1882
+ #: admin/includes/shortcode-creator-l10n.php:12
1883
+ msgctxt "shortcode creator"
1884
+ msgid "Cancel"
1885
+ msgstr "Cancelar"
1886
+
1887
+ #: admin/views/ad-display-metabox.php:6
1888
+ msgid "Set Display Conditions to allow or hide the ad on specific pages."
1889
+ msgstr ""
1890
+ "Definir condições de exibição para permitir ou ocultar o anúncio em páginas "
1891
+ "específicas."
1892
+
1893
+ #: admin/views/ad-display-metabox.php:8
1894
+ #: admin/views/notices/jqueryui_error.php:2
1895
+ #, php-format
1896
+ msgid ""
1897
+ "There might be a problem with layouts and scripts in your dashboard. Please "
1898
+ "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1899
+ msgstr ""
1900
+ "Pode haver um problema com layouts e scripts em seu painel. Por favor, "
1901
+ "verifique <a href=\"%s\" target=\"_blank\">este artigo para saber mais</a>."
1902
+
1903
+ #: admin/views/ad-display-metabox.php:66
1904
+ msgid "If you want to display the ad everywhere, don't do anything here. "
1905
+ msgstr "Se você quer exibir o anúncio em todo lugar, não faça nada aqui."
1906
+
1907
+ #: admin/views/ad-display-metabox.php:69 admin/views/ad-visitor-metabox.php:34
1908
+ msgid "New condition"
1909
+ msgstr "Nova condição"
1910
+
1911
+ #: admin/views/ad-display-metabox.php:72 admin/views/ad-visitor-metabox.php:37
1912
+ msgid "-- choose a condition --"
1913
+ msgstr "-- escolha uma condição --"
1914
+
1915
+ #: admin/views/ad-display-metabox.php:77
1916
+ #: admin/views/ad-group-list-form-row.php:52
1917
+ #: admin/views/ad-visitor-metabox.php:42
1918
+ msgid "add"
1919
+ msgstr "adicionar"
1920
+
1921
+ #: admin/views/ad-group-edit.php:40
1922
+ msgid ""
1923
+ "An id-like string with only letters in lower case, numbers, and hyphens."
1924
+ msgstr "Um estilo de Slug, apenas letras, números e hífen."
1925
+
1926
+ #: admin/views/ad-group-edit.php:57
1927
+ msgid "Create new Ad Group"
1928
+ msgstr "Criar um novo Grupo de Anúncios"
1929
+
1930
+ #: admin/views/ad-group-edit.php:59
1931
+ msgid "Update"
1932
+ msgstr "Atualizar"
1933
+
1934
+ #: admin/views/ad-group-list-form-row.php:3 admin/views/placements.php:25
1935
+ msgid "Name"
1936
+ msgstr "Nome"
1937
+
1938
+ #: admin/views/ad-group-list-form-row.php:5
1939
+ msgid "Description"
1940
+ msgstr "Descrição"
1941
+
1942
+ #: admin/views/ad-group-list-form-row.php:7 admin/views/placements.php:24
1943
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:47
1944
+ msgid "Type"
1945
+ msgstr "Tipo"
1946
+
1947
+ #: admin/views/ad-group-list-form-row.php:16
1948
+ msgid "Number of visible ads"
1949
+ msgstr "Número de anúncios visíveis"
1950
+
1951
+ #: admin/views/ad-group-list-form-row.php:22
1952
+ msgctxt "option to display all ads in an ad groups"
1953
+ msgid "all"
1954
+ msgstr "todos"
1955
+
1956
+ #: admin/views/ad-group-list-form-row.php:25
1957
+ msgid "Number of ads that are visible at the same time"
1958
+ msgstr "Número de anúncios que são visíveis ao mesmo tempo"
1959
+
1960
+ #: admin/views/ad-group-list-form-row.php:32
1961
+ msgid "weight"
1962
+ msgstr "Peso"
1963
+
1964
+ #: admin/views/ad-group-list-header.php:4
1965
+ msgid "Details"
1966
+ msgstr "Detalhes"
1967
+
1968
+ #: admin/views/ad-group-list-row.php:8 admin/views/ad-group.php:63
1969
+ #: admin/views/ad-info.php:3 admin/views/placements.php:61
1970
+ msgid "shortcode"
1971
+ msgstr "shortcode"
1972
+
1973
+ #: admin/views/ad-group-list-row.php:11 admin/views/ad-group.php:66
1974
+ #: admin/views/placements.php:64
1975
+ msgid "template"
1976
+ msgstr "template"
1977
+
1978
+ #: admin/views/ad-group-list-row.php:14
1979
+ #, php-format
1980
+ msgid ""
1981
+ "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1982
+ "manual</a>."
1983
+ msgstr ""
1984
+ "Saiba mais sobre como usar grupos no <a href=\"%s\" target=\"_blank\">"
1985
+ "manual</a>."
1986
+
1987
+ #: admin/views/ad-group-list-row.php:19
1988
+ #, php-format
1989
+ msgid "Type: %s"
1990
+ msgstr "Tipo: %s"
1991
+
1992
+ #: admin/views/ad-group-list-row.php:20
1993
+ #, php-format
1994
+ msgid "ID: %s"
1995
+ msgstr "ID: %s"
1996
+
1997
+ #: admin/views/ad-group.php:18
1998
+ msgid "Ad Groups successfully updated"
1999
+ msgstr "Grupos de Anúncios atualizados com sucesso"
2000
+
2001
+ #: admin/views/ad-group.php:46
2002
+ #, php-format
2003
+ msgid "Search results for &#8220;%s&#8221;"
2004
+ msgstr "Resultados da pesquisa para &#8220;%s&#8221;"
2005
+
2006
+ #: admin/views/ad-group.php:52
2007
+ msgid ""
2008
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
2009
+ "display random ads in the frontend or run split tests, but also just for "
2010
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
2011
+ "ad can belong to multiple ad groups."
2012
+ msgstr ""
2013
+ "Grupo de Anúncios são uma forma flexível de agrupar anúncios. Você pode usá-"
2014
+ "lo para exibir randomicamente ou em partes, mas também apenas com objetivos "
2015
+ "informativos. Um Grupo de Anúncios pode ter vários anúncios, mas anúncios "
2016
+ "podem pertencer a vários grupos."
2017
+
2018
+ #: admin/views/ad-group.php:60
2019
+ msgid "How to display an Ad Group?"
2020
+ msgstr "Como exibir um Grupo de Anúncios?"
2021
+
2022
+ #: admin/views/ad-group.php:62
2023
+ #, php-format
2024
+ msgid ""
2025
+ "Examples on how to display an ad group? Find more help and examples in the "
2026
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
2027
+ msgstr ""
2028
+ "Exemplos de como exibir um anúncio? Encontre ajuda no<a href=\"%s\" "
2029
+ "target=\"_blank\">manual</a>"
2030
+
2031
+ #: admin/views/ad-group.php:64
2032
+ msgid "To display an ad group with the ID 6 in content fields"
2033
+ msgstr "Para exibir um Grupo com ID 6 num campo de conteúdo"
2034
+
2035
+ #: admin/views/ad-group.php:67
2036
+ msgid "To display an ad group with the ID 6 in template files"
2037
+ msgstr "Para exibir um Grupo com ID 6 num arquivo de template"
2038
+
2039
+ #: admin/views/ad-group.php:87
2040
+ msgid "Update Groups"
2041
+ msgstr "Atualizar Grupos"
2042
+
2043
+ #: admin/views/ad-info-top.php:5
2044
+ #, php-format
2045
+ msgid ""
2046
+ "Congratulations! Your ad is now visible in the frontend. You can adjust the "
2047
+ "placement options <a href=\"%s\">here</a>."
2048
+ msgstr ""
2049
+ "Parabéns! Seu anúncio agora está visível na parte da frente. Você pode "
2050
+ "ajustar as opções de posicionamento <a href=\"%s\">Aqui</a>."
2051
+
2052
+ #: admin/views/ad-info-top.php:7
2053
+ msgid "Where do you want to display the ad?"
2054
+ msgstr "Onde você deseja exibir o anúncio?"
2055
+
2056
+ #: admin/views/ad-info-top.php:10
2057
+ msgid "Content"
2058
+ msgstr "Conteúdo"
2059
+
2060
+ #: admin/views/ad-info-top.php:12
2061
+ msgid "Manage Sidebar"
2062
+ msgstr "Gerenciar Barra Lateral"
2063
+
2064
+ #: admin/views/ad-info-top.php:15
2065
+ msgid "Show Pro Places"
2066
+ msgstr "Mostrar Lugares Pro"
2067
+
2068
+ #: admin/views/ad-info-top.php:19
2069
+ msgid "Show Sticky Places"
2070
+ msgstr "Mostrar Lugares Fixos"
2071
+
2072
+ #: admin/views/ad-info-top.php:23
2073
+ msgid "Show PopUp"
2074
+ msgstr "Mostrar PopUp"
2075
+
2076
+ #: admin/views/ad-info-top.php:53
2077
+ #, php-format
2078
+ msgid "Or use the shortcode %s to insert the ad into the content manually."
2079
+ msgstr "Ou usar o shortcode %s para inserir o anúncio no conteúdo manualmente."
2080
+
2081
+ #: admin/views/ad-info-top.php:54
2082
+ #, php-format
2083
+ msgid ""
2084
+ "Learn more about your choices to display an ad in the <a href=\"%s\" "
2085
+ "target=\"_blank\">manual</a>."
2086
+ msgstr ""
2087
+ "Saiba mais sobre suas escolhas de exibição de um anúncio no <a href=\"%s\" "
2088
+ "target=\"_blank\">manual</a>."
2089
+
2090
+ #: admin/views/ad-info.php:2
2091
+ #, php-format
2092
+ msgid "Ad Id: %s"
2093
+ msgstr "ID do Anúncio: %s"
2094
+
2095
+ #: admin/views/ad-info.php:5
2096
+ msgid "theme function"
2097
+ msgstr "função do tema"
2098
+
2099
+ #: admin/views/ad-info.php:7
2100
+ #, php-format
2101
+ msgid ""
2102
+ "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
2103
+ msgstr ""
2104
+ "Encontre mais opções de exibição no <a href=\"%s\" target=\"_blank\">"
2105
+ "manual</a>."
2106
+
2107
+ #: admin/views/ad-info.php:11
2108
+ msgid "click to change"
2109
+ msgstr "clique para alterar"
2110
+
2111
+ #: admin/views/ad-info.php:15
2112
+ msgid "Add a description"
2113
+ msgstr "Adicionar uma descrição"
2114
+
2115
+ #: admin/views/ad-info.php:18
2116
+ msgid "Internal description or your own notes about this ad."
2117
+ msgstr "Descrição interna ou suas próprias notas sobre este anúncio."
2118
+
2119
+ #: admin/views/ad-list-filters.php:2
2120
+ msgid "all ad types"
2121
+ msgstr "todos os tipos de anúncios"
2122
+
2123
+ #: admin/views/ad-list-filters.php:5
2124
+ msgid "all ad sizes"
2125
+ msgstr "todos os tamanhos de anúncios"
2126
+
2127
+ #: admin/views/ad-list-filters.php:8
2128
+ msgid "all ad dates"
2129
+ msgstr "todas as datas de anúncios"
2130
+
2131
+ #: admin/views/ad-list-filters.php:16
2132
+ msgid "all ad groups"
2133
+ msgstr "todos os grupos de anúncios"
2134
+
2135
+ #: admin/views/ad-main-metabox.php:3
2136
+ msgid "No ad types defined"
2137
+ msgstr "Nenhum tipo de anúncio definido"
2138
+
2139
+ #: admin/views/ad-output-metabox.php:1
2140
+ msgid "Everything connected to the ads layout and output."
2141
+ msgstr "Tudo conectado ao layout dos anúncios e saída para exibição."
2142
+
2143
+ #: admin/views/ad-output-metabox.php:4
2144
+ msgid "Position"
2145
+ msgstr "Posição"
2146
+
2147
+ #: admin/views/ad-output-metabox.php:6
2148
+ msgid "- default -"
2149
+ msgstr "- padrão -"
2150
+
2151
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:54
2152
+ msgid "default"
2153
+ msgstr "padrão"
2154
+
2155
+ #: admin/views/ad-output-metabox.php:8
2156
+ msgid "left"
2157
+ msgstr "esquerda"
2158
+
2159
+ #: admin/views/ad-output-metabox.php:11
2160
+ msgid "center"
2161
+ msgstr "centro"
2162
+
2163
+ #: admin/views/ad-output-metabox.php:14
2164
+ msgid "right"
2165
+ msgstr "direita"
2166
+
2167
+ #: admin/views/ad-output-metabox.php:18
2168
+ msgid ""
2169
+ "Check this if you don't want the following elements to float around the ad. "
2170
+ "(adds a clearfix)"
2171
+ msgstr ""
2172
+ "Marque isso se você não quer elementos flutuando no entorno do anúncio."
2173
+
2174
+ #: admin/views/ad-output-metabox.php:22
2175
+ msgid "Margin"
2176
+ msgstr "Margem"
2177
+
2178
+ #: admin/views/ad-output-metabox.php:24
2179
+ msgid "top:"
2180
+ msgstr "topo:"
2181
+
2182
+ #: admin/views/ad-output-metabox.php:26
2183
+ msgid "right:"
2184
+ msgstr "direita:"
2185
+
2186
+ #: admin/views/ad-output-metabox.php:28
2187
+ msgid "bottom:"
2188
+ msgstr "abaixo:"
2189
+
2190
+ #: admin/views/ad-output-metabox.php:30
2191
+ msgid "left:"
2192
+ msgstr "esquerda:"
2193
+
2194
+ #: admin/views/ad-output-metabox.php:32
2195
+ msgid "tip: use this to add a margin around the ad"
2196
+ msgstr "dica: use isso para criar margem em torno do anúncio"
2197
+
2198
+ #: admin/views/ad-output-metabox.php:35
2199
+ msgid "container ID"
2200
+ msgstr "ID do recipiente"
2201
+
2202
+ #: admin/views/ad-output-metabox.php:38
2203
+ msgid "Specify the id of the ad container. Leave blank for random or no id."
2204
+ msgstr ""
2205
+ "Especificar o id do recipiente do anúncio. Deixe em branco para aleatório ou "
2206
+ "nenhum id."
2207
+
2208
+ #: admin/views/ad-output-metabox.php:41
2209
+ msgid "container classes"
2210
+ msgstr "classes de recipiente"
2211
+
2212
+ #: admin/views/ad-output-metabox.php:47
2213
+ msgid "Enable debug mode"
2214
+ msgstr "Habilitar modo de depuração"
2215
+
2216
+ #: admin/views/ad-parameters-size.php:1
2217
+ msgid "size"
2218
+ msgstr "tamanho"
2219
+
2220
+ #: admin/views/ad-parameters-size.php:3
2221
+ msgid "width"
2222
+ msgstr "largura"
2223
+
2224
+ #: admin/views/ad-parameters-size.php:4
2225
+ msgid "height"
2226
+ msgstr "altura"
2227
+
2228
+ #: admin/views/ad-parameters-size.php:6
2229
+ msgid "reserve this space"
2230
+ msgstr "reservar este espaço"
2231
+
2232
+ #: admin/views/ad-submitbox-meta.php:6
2233
+ msgid "Set expiry date"
2234
+ msgstr "Defina a data de expiração"
2235
+
2236
+ #: admin/views/ad-submitbox-meta.php:16
2237
+ #, php-format
2238
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2239
+ msgid "%1$s-%2$s"
2240
+ msgstr "%1$s-%2$s"
2241
+
2242
+ #: admin/views/ad-submitbox-meta.php:29
2243
+ #, php-format
2244
+ msgctxt ""
2245
+ "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
2246
+ msgid "%1$s %2$s, %3$s @ %4$s %5$s"
2247
+ msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
2248
+
2249
+ #: admin/views/ad-visitor-metabox.php:4
2250
+ msgid ""
2251
+ "Display conditions that are based on the user. Use with caution on cached "
2252
+ "websites."
2253
+ msgstr "Exiba condições baseadas no usuário. Use com cautela se usar cache."
2254
+
2255
+ #: admin/views/ad-visitor-metabox.php:28
2256
+ msgid ""
2257
+ "Visitor conditions limit the number of users who can see your ad. There is "
2258
+ "no need to set visitor conditions if you want all users to see the ad."
2259
+ msgstr ""
2260
+ "Condições para visitante, limitar o número de usuários que podem ver seu "
2261
+ "anúncio. Não há necessidade de estabelecer condições para visitante se você "
2262
+ "quiser que todos os usuários vejam o anúncio."
2263
+
2264
+ #: admin/views/ad-visitor-metabox.php:30
2265
+ #, php-format
2266
+ msgid ""
2267
+ "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
2268
+ "Pro</a> if dynamic features get cached."
2269
+ msgstr ""
2270
+ "Confira em <a href=\"%s\" target=\"_blank\">Anúncios Avançados Pró</a> se "
2271
+ "características dinâmicas chegar em cache cache-busting."
2272
+
2273
+ #: admin/views/ad-visitor-metabox.php:47
2274
+ #, php-format
2275
+ msgid ""
2276
+ "Define the exact browser width for which an ad should be visible using the "
2277
+ "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
2278
+ msgstr ""
2279
+ "Definir a largura exata do navegador para que um anúncio seja visível usando "
2280
+ "o <a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
2281
+
2282
+ #: admin/views/ad-visitor-metabox.php:94
2283
+ msgid ""
2284
+ "The visitor conditions below are deprecated. Please use the new version of "
2285
+ "visitor conditions to replace it."
2286
+ msgstr ""
2287
+ "As condições para visitante abaixo estão obsoletas. Utilize a nova versão do "
2288
+ "condições para visitante a fim de substituí-lo."
2289
+
2290
+ #: admin/views/ad-visitor-metabox.php:100
2291
+ msgid "Display on all devices"
2292
+ msgstr "Exibir em todos os dispositivos"
2293
+
2294
+ #: admin/views/ad-visitor-metabox.php:104
2295
+ msgid "only on mobile devices"
2296
+ msgstr "somente em smartphones"
2297
+
2298
+ #: admin/views/ad-visitor-metabox.php:108
2299
+ msgid "not on mobile devices"
2300
+ msgstr "menos em smartphones"
2301
+
2302
+ #: admin/views/debug.php:6 admin/views/settings.php:49
2303
+ msgid "Debug Page"
2304
+ msgstr "Página Debug"
2305
+
2306
+ #: admin/views/debug.php:7
2307
+ msgid "Work in progress"
2308
+ msgstr "Trabalho em andamento"
2309
+
2310
+ #: admin/views/feedback_disable.php:3
2311
+ msgid "Thank you for helping to improve Advanced Ads."
2312
+ msgstr "Obrigado por ajudar a melhorar Anúncios Avançados."
2313
+
2314
+ #: admin/views/feedback_disable.php:4
2315
+ msgid ""
2316
+ "Your feedback will motivates me to work harder towards a professional ad "
2317
+ "management solution."
2318
+ msgstr ""
2319
+ "Os seus comentários vão me motivar a trabalhar mais no sentido de uma "
2320
+ "solução de gerenciamento de anúncios profissional."
2321
+
2322
+ #: admin/views/feedback_disable.php:5
2323
+ msgid "Why did you decide to disable Advanced Ads?"
2324
+ msgstr "Por que você decidiu desativar Anúncios Avançados?"
2325
+
2326
+ #: admin/views/feedback_disable.php:7
2327
+ msgid "I stopped showing ads on my site"
2328
+ msgstr "Eu parei de mostrar anúncios no meu site"
2329
+
2330
+ #: admin/views/feedback_disable.php:8
2331
+ #, php-format
2332
+ msgid "I miss a feature or <a href=\"%s\">add-on</a>"
2333
+ msgstr "Eu sinto falta de um recurso ou <a href=\"%s\">add-on</a>"
2334
+
2335
+ #: admin/views/feedback_disable.php:9
2336
+ msgid "I have a technical problem"
2337
+ msgstr "Eu tenho um problema técnico"
2338
+
2339
+ #: admin/views/feedback_disable.php:10
2340
+ msgid "other reason"
2341
+ msgstr "Outra razão"
2342
+
2343
+ #: admin/views/feedback_disable.php:12
2344
+ msgid "Please specify, if possible"
2345
+ msgstr "Por favor especifique, se possível"
2346
+
2347
+ #: admin/views/feedback_disable.php:13
2348
+ msgid "What would be a reason to return to Advanced Ads?"
2349
+ msgstr "Qual seria uma razão para voltar para Anúncios Avançados?"
2350
+
2351
+ #: admin/views/intro.php:18
2352
+ msgid "5-Star Usability"
2353
+ msgstr "Usabilidade 5 Estrelas"
2354
+
2355
+ #: admin/views/intro.php:19
2356
+ msgid ""
2357
+ "Advanced Ads is powerful and easy to use, because it is build on WordPress "
2358
+ "standards. If you know how to publish a post then you know how to create an "
2359
+ "ad."
2360
+ msgstr ""
2361
+ "Anúncios Avançados é poderoso e fácil de usar, porque está à construir nos "
2362
+ "padrões WordPress. Se você sabe como publicar um post, então você sabe como "
2363
+ "criar um anúncio."
2364
+
2365
+ #: admin/views/intro.php:23
2366
+ msgid "5-Star Support"
2367
+ msgstr "Suporte 5 Estrelas"
2368
+
2369
+ #: admin/views/intro.php:24
2370
+ msgid ""
2371
+ "I promise you the best supported ad management plugin for WordPress. Whether "
2372
+ "a pro user or not, you can reach me easily through the support page, in the "
2373
+ "chat on the homepage or replying to a newsletter."
2374
+ msgstr ""
2375
+ "Eu prometo a você o plugin de gerenciamento de anúncios e melhor suporte "
2376
+ "para WordPress. Seja um usuário profissional ou não, você pode me alcançar "
2377
+ "facilmente através da página de suporte, no chat na página inicial ou a "
2378
+ "responder a um boletim de notícias."
2379
+
2380
+ #: admin/views/intro.php:28
2381
+ msgid "5-Star Experience"
2382
+ msgstr "Experiência 5 Estrelas"
2383
+
2384
+ #: admin/views/intro.php:29
2385
+ msgid ""
2386
+ "Advanced Ads was built out of my own experience. I am personally using it to "
2387
+ "serve millions of ad impressions per month and constantly test new ways to "
2388
+ "optimize ad settings."
2389
+ msgstr ""
2390
+ "Anúncios Avançados foi construído a partir de minha própria experiência. "
2391
+ "Pessoalmente, estou usando-o para servir milhões de impressões de anúncios "
2392
+ "por mês e constantemente testar novas maneiras de otimizar as configurações "
2393
+ "anúncio."
2394
+
2395
+ #: admin/views/intro.php:61
2396
+ msgid "Next Steps"
2397
+ msgstr "Próximos Passos"
2398
+
2399
+ #: admin/views/intro.php:64
2400
+ msgid "Subscribe to the Mailing List"
2401
+ msgstr "Inscrever-se na Lista de Discussão"
2402
+
2403
+ #: admin/views/intro.php:65
2404
+ msgid "Subscribe to the newsletter and instantly"
2405
+ msgstr "Assine a newsletter e instantaneamente"
2406
+
2407
+ #: admin/views/intro.php:67
2408
+ msgid "get 2 free add-ons."
2409
+ msgstr "receba 2 add-ons gratuitos."
2410
+
2411
+ #: admin/views/intro.php:68
2412
+ msgid "reply to the welcome message with a question."
2413
+ msgstr "responder à mensagem de boas-vindas com uma pergunta."
2414
+
2415
+ #: admin/views/intro.php:69
2416
+ msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
2417
+ msgstr ""
2418
+ "inscrever-se a um grupo dedicado para os tutoriais ou dicas do AdSense."
2419
+
2420
+ #: admin/views/intro.php:79
2421
+ #, php-format
2422
+ msgid ""
2423
+ "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a>"
2424
+ " or watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> "
2425
+ "first."
2426
+ msgstr ""
2427
+ "Comece por criar um anúncio <a href=\"%1$s\" target=\"blank\">agora mesmo</a>"
2428
+ " ou assistir ao <a href=\"%2$s\" target=\"blank\">vídeo tutorial (3:29min)"
2429
+ "</a> primeiro."
2430
+
2431
+ #: admin/views/intro.php:82
2432
+ msgid "Display your ad"
2433
+ msgstr "Exibir seu anúncio"
2434
+
2435
+ #: admin/views/intro.php:83
2436
+ msgid ""
2437
+ "You can display your ad using a shortcode, widget or one of the powerful "
2438
+ "placements. Placements help you to inject ads into the content or place them "
2439
+ "on your site without coding."
2440
+ msgstr ""
2441
+ "Você pode exibir seu anúncio usando um shortcode, widget ou um dos canais "
2442
+ "poderosos. Locais ajuda-o a injetar anúncios no conteúdo ou coloca-os em seu "
2443
+ "site sem codificação."
2444
+
2445
+ #: admin/views/intro.php:85
2446
+ msgid "List of all available placements"
2447
+ msgstr "Lista de todos os locais disponíveis"
2448
+
2449
+ #: admin/views/intro.php:86
2450
+ msgid "Create a placement"
2451
+ msgstr "Criar um novo local"
2452
+
2453
+ #: admin/views/placements.php:8
2454
+ msgid ""
2455
+ "Couldn’t create the new placement. Please check your form field and whether "
2456
+ "the name is already in use."
2457
+ msgstr ""
2458
+ "Não foi possível criar um novo local. Por favor, verifique o campo de "
2459
+ "formulário e se o nome está em uso."
2460
+
2461
+ #: admin/views/placements.php:10
2462
+ msgid "Placements updated"
2463
+ msgstr "Locais atualizados"
2464
+
2465
+ #: admin/views/placements.php:15
2466
+ msgid ""
2467
+ "Placements are physically places in your theme and posts. You can use them "
2468
+ "if you plan to change ads and ad groups on the same place without the need "
2469
+ "to change your templates."
2470
+ msgstr ""
2471
+ "Locais são lugares físicos em seu tema e posts. Você pode usá-los se você "
2472
+ "pretende mudar anúncios e grupos de anúncios no mesmo lugar, sem a "
2473
+ "necessidade de mudar seus templates."
2474
+
2475
+ #: admin/views/placements.php:16
2476
+ #, php-format
2477
+ msgid ""
2478
+ "See also the manual for more information on <a href=\"%s\">placements</a>."
2479
+ msgstr ""
2480
+ "Veja também o manual para obter mais informações sobre <a href=\"%s\">"
2481
+ "locais</a>."
2482
+
2483
+ #: admin/views/placements.php:26 modules/import-export/views/page.php:26
2484
+ msgid "Options"
2485
+ msgstr "Opções"
2486
+
2487
+ #: admin/views/placements.php:44
2488
+ #, php-format
2489
+ msgid ""
2490
+ "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
2491
+ "check if the responsible add-on is activated."
2492
+ msgstr ""
2493
+ "Tipo de local \"%s\" está faltando e foi redefinido para \"padrão\". <br/>"
2494
+ "Por favor, verifique se o add-on responsável está ativado."
2495
+
2496
+ #: admin/views/placements.php:60
2497
+ msgid "show usage"
2498
+ msgstr "mostrar uso"
2499
+
2500
+ #: admin/views/placements.php:72
2501
+ msgid "Item"
2502
+ msgstr "Ítem"
2503
+
2504
+ #: admin/views/placements.php:74 admin/views/placements.php:180
2505
+ msgid "--not selected--"
2506
+ msgstr "--não selecionado--"
2507
+
2508
+ #: admin/views/placements.php:94
2509
+ msgid "Inject"
2510
+ msgstr "Injetar"
2511
+
2512
+ #: admin/views/placements.php:95
2513
+ msgid "after"
2514
+ msgstr "depois"
2515
+
2516
+ #: admin/views/placements.php:95
2517
+ msgid "before"
2518
+ msgstr "antes"
2519
+
2520
+ #: admin/views/placements.php:115
2521
+ msgid "start counting from bottom"
2522
+ msgstr "começar a contar de baixo"
2523
+
2524
+ #: admin/views/placements.php:118
2525
+ msgid "Important Notice"
2526
+ msgstr "Notificação Importante"
2527
+
2528
+ #: admin/views/placements.php:118
2529
+ msgid ""
2530
+ "Your server is missing an extension. This might break the content injection."
2531
+ "<br/>Ignore this warning if everything works fine or else ask your hosting "
2532
+ "provider to enable <em>mbstring</em>."
2533
+ msgstr ""
2534
+ "O servidor está faltando uma extensão. Isso pode quebrar a injeção de "
2535
+ "conteúdo. <br/>Ignorar esse aviso se tudo funcionar bem ou então pergunte ao "
2536
+ "seu provedor de hospedagem para permitir <em>mbstring</em>."
2537
+
2538
+ #: admin/views/placements.php:128
2539
+ msgid "advanced options"
2540
+ msgstr "opções avançadas"
2541
+
2542
+ #: admin/views/placements.php:137
2543
+ msgctxt "checkbox to remove placement"
2544
+ msgid "delete"
2545
+ msgstr "excluir"
2546
+
2547
+ #: admin/views/placements.php:143
2548
+ msgid "Save Placements"
2549
+ msgstr "Salvar Local"
2550
+
2551
+ #: admin/views/placements.php:145
2552
+ msgid "Create a new placement"
2553
+ msgstr "Criar um novo Local"
2554
+
2555
+ #: admin/views/placements.php:146
2556
+ msgid "New Placement"
2557
+ msgstr "Novo Local"
2558
+
2559
+ #: admin/views/placements.php:153
2560
+ msgid "Choose a placement type"
2561
+ msgstr "Escolha um tipo de local"
2562
+
2563
+ #: admin/views/placements.php:154
2564
+ #, php-format
2565
+ msgid ""
2566
+ "Placement types define where the ad is going to be displayed. Learn more "
2567
+ "about the different types from the <a href=\"%s\">manual</a>"
2568
+ msgstr ""
2569
+ "Defina os tipos de local em que o anúncio será exibido. Saiba mais sobre os "
2570
+ "diferentes tipos no <a href=\"%s\">Manual</a>."
2571
+
2572
+ #: admin/views/placements.php:171
2573
+ msgid "Please select a placement type."
2574
+ msgstr "Por favor selecione um tipo de local."
2575
+
2576
+ #: admin/views/placements.php:173
2577
+ msgid "Choose a Name"
2578
+ msgstr "Escolha um Nome"
2579
+
2580
+ #: admin/views/placements.php:174
2581
+ msgid ""
2582
+ "The name of the placement is only visible to you. Tip: choose a descriptive "
2583
+ "one, e.g. <em>Below Post Headline</em>."
2584
+ msgstr ""
2585
+ "O nome do local é visível apenas para você. Dica: escolha um descritivo, por "
2586
+ "exemplo; <em>Abaixo da Headline do Post</em>."
2587
+
2588
+ #: admin/views/placements.php:175
2589
+ msgid "Placement Name"
2590
+ msgstr "Nome do Local"
2591
+
2592
+ #: admin/views/placements.php:176
2593
+ msgid "Please enter a name for your placement."
2594
+ msgstr "Por favor digite um nome para seu local."
2595
+
2596
+ #: admin/views/placements.php:177
2597
+ msgid "Choose the Ad or Group"
2598
+ msgstr "Escolha o Anúncio ou Grupo"
2599
+
2600
+ #: admin/views/placements.php:178
2601
+ msgid "The ad or group that should be displayed."
2602
+ msgstr "O anúncio ou grupo que deve ser exibido."
2603
+
2604
+ #: admin/views/placements.php:197
2605
+ msgid "Save New Placement"
2606
+ msgstr "Salvar Novo Local"
2607
+
2608
+ #: admin/views/post-ad-settings-metabox.php:3
2609
+ msgid "Disable ads on this page"
2610
+ msgstr "Desabilitar Anúncios nesta página"
2611
+
2612
+ #: admin/views/setting-license.php:5
2613
+ msgid "Your license expired."
2614
+ msgstr "Sua licença expirou."
2615
+
2616
+ #: admin/views/setting-license.php:6
2617
+ #, php-format
2618
+ msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
2619
+ msgstr ""
2620
+ "<a href=\"%s\" target=\"_blank\">Renová-la com um desconto</a>.\n"
2621
+
2622
+ #: admin/views/setting-license.php:18
2623
+ #, php-format
2624
+ msgid "(%d days left)"
2625
+ msgstr "(%d dias restantes)"
2626
+
2627
+ #: admin/views/setting-license.php:22
2628
+ msgid "License key"
2629
+ msgstr "Chave de licença"
2630
+
2631
+ #: admin/views/setting-license.php:42
2632
+ msgid "License key invalid"
2633
+ msgstr "Chave de licença inválida"
2634
+
2635
+ #: admin/views/setting-license.php:45
2636
+ msgid "active"
2637
+ msgstr "ativa"
2638
+
2639
+ #: admin/views/settings-disable-ads.php:3
2640
+ msgid "Disable all ads in frontend"
2641
+ msgstr "Desabilitar todos os anúncios no site"
2642
+
2643
+ #: admin/views/settings-disable-ads.php:4
2644
+ msgid ""
2645
+ "Use this option to disable all ads in the frontend, but still be able to use "
2646
+ "the plugin."
2647
+ msgstr ""
2648
+ "Esta opção irá desativar todos os anúncios no site, mas ainda mantém o "
2649
+ "funcionamento do plugin."
2650
+
2651
+ #: admin/views/settings-disable-ads.php:8
2652
+ msgid "Disable ads on 404 error pages"
2653
+ msgstr "Desabilitar Anúncios na página 404"
2654
+
2655
+ #: admin/views/settings-disable-ads.php:12
2656
+ msgid "Disable ads on non-singular pages"
2657
+ msgstr "Desabilitar Anúncios na página de listagem de conteúdo"
2658
+
2659
+ #: admin/views/settings-disable-ads.php:13
2660
+ msgid ""
2661
+ "e.g. archive pages like categories, tags, authors, front page (if a list)"
2662
+ msgstr ""
2663
+ "Ex: páginas de arquivos, como categorias, tags, autores, primeira página (se "
2664
+ "uma lista)"
2665
+
2666
+ #: admin/views/settings-disable-ads.php:16
2667
+ msgid "Disable ads on secondary queries"
2668
+ msgstr "Desativar anúncios em consultas secundárias"
2669
+
2670
+ #: admin/views/settings-disable-ads.php:17
2671
+ msgid ""
2672
+ "Secondary queries are custom queries of posts outside the main query of a "
2673
+ "page. Try this option if you see ads injected on places where they shouldn’t "
2674
+ "appear."
2675
+ msgstr ""
2676
+ "Consultas secundárias são consultas personalizadas de posts fora da consulta "
2677
+ "principal de uma página. Experimente esta opção se você ver anúncios "
2678
+ "injetados em lugares onde eles não devem aparecer."
2679
+
2680
+ #: admin/views/settings-disable-ads.php:21
2681
+ msgid "Disable ads in Feed"
2682
+ msgstr "Desativar anúncios no Feed"
2683
+
2684
+ #: admin/views/settings.php:36
2685
+ msgid "Save settings on this page"
2686
+ msgstr "Salve as configurações nesta página"
2687
+
2688
+ #: admin/views/settings.php:50
2689
+ msgid "Welcome Page"
2690
+ msgstr "Bem Vindo à Página"
2691
+
2692
+ #: admin/views/settings.php:51
2693
+ msgid "Advanced Ads on WordPress.org"
2694
+ msgstr "Anúncios Avançados em WordPress.org"
2695
+
2696
+ #: admin/views/settings.php:51
2697
+ msgid "Advanced Ads on wp.org"
2698
+ msgstr "Anúncios Avançados em wp.org"
2699
+
2700
+ #: admin/views/settings.php:52
2701
+ msgid "the company behind Advanced Ads"
2702
+ msgstr "a companhia por trás do Anúncios Avançados"
2703
+
2704
+ #: admin/views/support.php:8
2705
+ msgid ""
2706
+ "Please fix the red highlighted issues on this page or try to understand "
2707
+ "their consequences before contacting support."
2708
+ msgstr ""
2709
+ "Por favor corrija as questões destacadas em vermelho sobre esta página ou "
2710
+ "tentar compreender as suas consequências antes de contatar o suporte."
2711
+
2712
+ #: admin/views/support.php:12
2713
+ #, php-format
2714
+ msgid ""
2715
+ "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2716
+ "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2717
+ "Please ask your hosting provider for more information."
2718
+ msgstr ""
2719
+ "Sua <strong>versão do PHP (%s) é muito baixa</strong>. Anúncios Avançados é "
2720
+ "construído para PHP 5.3 e superior. Pode funcionar, mas a atualização do PHP "
2721
+ "é altamente recomendada. Por favor, pergunte ao seu provedor de hospedagem "
2722
+ "para obter mais informações."
2723
+
2724
+ #: admin/views/support.php:15
2725
+ #, php-format
2726
+ msgid ""
2727
+ "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2728
+ "rotation or visitor conditions might not work properly. Use the cache-"
2729
+ "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to "
2730
+ "load ads dynamically."
2731
+ msgstr ""
2732
+ "Seu <strong>site usa o cache</strong>. Algumas características dinâmicas, "
2733
+ "como a rotação de anúncios ou condições visitante pode não funcionar "
2734
+ "corretamente. Use o recurso de cache-rebentando de <a href=\"%s\" "
2735
+ "target=\"_blank\">Anúncios Avançados Pro</a> para carregar anúncios "
2736
+ "dinamicamente."
2737
+
2738
+ #: admin/views/support.php:18
2739
+ msgid ""
2740
+ "There is a <strong>new WordPress version available</strong>. Please update."
2741
+ msgstr ""
2742
+ "Há uma <strong>nova versão do WordPress disponível</ strong>. Por favor "
2743
+ "atualize."
2744
+
2745
+ #: admin/views/support.php:21
2746
+ msgid "There are <strong>plugin updates available</strong>. Please update."
2747
+ msgstr ""
2748
+ " atualizações de <strong>plugins disponíveis</strong>. Por favor atualize-"
2749
+ "os."
2750
+
2751
+ #: admin/views/support.php:30
2752
+ #, php-format
2753
+ msgid ""
2754
+ "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2755
+ "site performance, it is known to alter code, including scripts from ad "
2756
+ "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-"
2757
+ "in support for Autoptimize."
2758
+ msgstr ""
2759
+ "<strong>Autoptimize plug-in detectado</strong>. Enquanto este plugin é ótimo "
2760
+ "para o desempenho do site, ele é conhecido por alterar o código, incluindo "
2761
+ "os scripts de redes de anúncios. <a href=\"%s\" target=\"_blank\">Anúncios "
2762
+ "Avançados Pro</a> tem uma build-in suporte para Autoptimize."
2763
+
2764
+ #: admin/views/support.php:33
2765
+ #, php-format
2766
+ msgid ""
2767
+ "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2768
+ "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2769
+ msgstr ""
2770
+ "Plugins que são conhecidos por causar problemas (parciais): <strong>"
2771
+ "%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Saiba mais</a>."
2772
+
2773
+ #: admin/views/support.php:36
2774
+ #, php-format
2775
+ msgid ""
2776
+ "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2777
+ "href=\"%s\">settings</a>."
2778
+ msgstr ""
2779
+ "Os anúncios estão desativados para todas ou algumas páginas. Consulte "
2780
+ "\"anúncios desabilitados\" em <a href=\"%s\">configurações</a>."
2781
+
2782
+ #: admin/views/support.php:47
2783
+ msgid "Possible Issues"
2784
+ msgstr "Possíveis Questões"
2785
+
2786
+ #: admin/views/support.php:54
2787
+ msgid ""
2788
+ "Use the following form to search for solutions in the manual on "
2789
+ "wpadvancedads.com"
2790
+ msgstr ""
2791
+ "Utilize o formulário abaixo para procurar soluções no manual sobre "
2792
+ "wpadvancedads.com"
2793
+
2794
+ #: admin/views/support.php:57
2795
+ msgid "search"
2796
+ msgstr "pesquisar"
2797
+
2798
+ #: modules/gadsense/main.php:19
2799
+ msgid " at "
2800
+ msgstr "às"
2801
+
2802
+ #: admin/views/notices/adblock.php:3
2803
+ msgid ""
2804
+ "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2805
+ "ad setup."
2806
+ msgstr ""
2807
+ "Por favor, desative seu <strong>AdBlocker</strong> para evitar problemas com "
2808
+ "a sua configuração de anúncios."
2809
+
2810
+ #: modules/ad-blocker/admin/admin.php:133
2811
+ msgid "The asset folder was rebuilt successfully"
2812
+ msgstr "A pasta de ativos foi reconstruída com sucesso"
2813
+
2814
+ #: modules/ad-blocker/admin/admin.php:218
2815
+ msgid "Ad blocker fix"
2816
+ msgstr "Corrigir bloqueador de anúncio"
2817
+
2818
+ #: modules/ad-blocker/admin/admin.php:257
2819
+ msgid "There is no writable upload folder"
2820
+ msgstr "Não existe nenhuma pasta de upload gravável"
2821
+
2822
+ #: modules/ad-blocker/admin/admin.php:286
2823
+ #, php-format
2824
+ msgid "Unable to rename \"%s\" directory"
2825
+ msgstr "Não foi possível renomear o diretório \"%s\""
2826
+
2827
+ #: modules/ad-blocker/admin/admin.php:302
2828
+ #: modules/ad-blocker/admin/admin.php:315
2829
+ #: modules/ad-blocker/admin/admin.php:332
2830
+ #, php-format
2831
+ msgid "Unable to copy assets to the \"%s\" directory"
2832
+ msgstr "Não é possível copiar ativos para o diretório \"%s\""
2833
+
2834
+ #: modules/ad-blocker/admin/admin.php:366
2835
+ #: modules/ad-blocker/admin/admin.php:386
2836
+ #, php-format
2837
+ msgid "We do not have direct write access to the \"%s\" directory"
2838
+ msgstr "Nós não temos acesso de gravação direta para o diretório \"%s\""
2839
+
2840
+ #: modules/ad-blocker/admin/admin.php:453
2841
+ #, php-format
2842
+ msgid ""
2843
+ "Unable to create \"%s\" directory. Is its parent directory writable by the "
2844
+ "server?"
2845
+ msgstr ""
2846
+ "Não é possível criar diretório \"%s\". É seu diretório pai escrito pelo "
2847
+ "servidor?"
2848
+
2849
+ #: modules/ad-blocker/admin/admin.php:464
2850
+ #, php-format
2851
+ msgid "Unable to copy files to %s"
2852
+ msgstr "Não é possível copiar arquivos para %s"
2853
+
2854
+ #: modules/ad-blocker/admin/admin.php:600
2855
+ msgid ""
2856
+ "Prevents ad block software from breaking your website when blocking asset "
2857
+ "files (.js, .css)."
2858
+ msgstr ""
2859
+ "Previne software bloqueador de anúncio de quebrar o seu site ao bloquear "
2860
+ "arquivos ativos (.js, .css)."
2861
+
2862
+ #: modules/gadsense/admin/admin.php:26
2863
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:51
2864
+ msgid "Responsive"
2865
+ msgstr "Responsivo"
2866
+
2867
+ #: modules/gadsense/admin/admin.php:44
2868
+ msgid "The ad details couldn't be retrieved from the ad code"
2869
+ msgstr ""
2870
+ "Os detalhes do anúncio não pôde ser recuperado a partir do código do anúncio"
2871
+
2872
+ #: modules/gadsense/admin/admin.php:45
2873
+ msgid ""
2874
+ "Warning : The AdSense account from this code does not match the one set with "
2875
+ "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2876
+ "end."
2877
+ msgstr ""
2878
+ "Aviso: A conta do AdSense a partir deste código não corresponde a um "
2879
+ "conjunto com o Plugin Anúncios Avançados. Isto pode causar problemas no "
2880
+ "anúncio quando usado na extremidade dianteira."
2881
+
2882
+ #: modules/gadsense/admin/admin.php:123 modules/gadsense/admin/admin.php:260
2883
+ msgid "AdSense"
2884
+ msgstr "AdSense"
2885
+
2886
+ #: modules/gadsense/admin/admin.php:131
2887
+ msgid "AdSense ID"
2888
+ msgstr "ID do AdSense"
2889
+
2890
+ #: modules/gadsense/admin/admin.php:140
2891
+ msgid "Limit to 3 ads"
2892
+ msgstr "Limite de 3 anúncios"
2893
+
2894
+ #: modules/gadsense/admin/admin.php:149
2895
+ msgid "Activate Page-Level ads"
2896
+ msgstr "Ative Página de Nível de anúncios"
2897
+
2898
+ #: modules/gadsense/admin/admin.php:169
2899
+ #, php-format
2900
+ msgid ""
2901
+ "Please enter your Publisher ID in order to use AdSense on your page. See the "
2902
+ "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2903
+ msgstr ""
2904
+ "Digite seu ID Publisher, a fim de usar o AdSense em sua página. Veja o <a "
2905
+ "href=\"%s\" target=\"_blank\">manual</a> para obter mais informações."
2906
+
2907
+ #: modules/gadsense/admin/admin.php:183
2908
+ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2909
+ msgstr "Seu ID AdSense Publisher <em>(pub-xxxxxxxxxxxxxx)</em>"
2910
+
2911
+ #: modules/gadsense/admin/admin.php:195
2912
+ #, php-format
2913
+ msgid "Limit to %d AdSense ads"
2914
+ msgstr "Limite de %d anúncios do AdSense"
2915
+
2916
+ #: modules/gadsense/admin/admin.php:203
2917
+ msgid ""
2918
+ "Due to technical restrictions, the limit does not work on placements with "
2919
+ "cache-busting enabled."
2920
+ msgstr ""
2921
+ "Devido a restrições técnicas, o limite não funciona em canais com bloqueio "
2922
+ "de cache habilitado."
2923
+
2924
+ #: modules/gadsense/admin/admin.php:217
2925
+ msgid "Insert Page-Level ads code on all pages."
2926
+ msgstr "Inserir código de Página de Nível de anúncios em todas as páginas."
2927
+
2928
+ #: modules/gadsense/admin/admin.php:219
2929
+ msgid ""
2930
+ "You still need to enable Page-Level ads in your AdSense account. See <a "
2931
+ "href=\"https://support.google.com/adsense/answer/6245304\" target=\"_blank\">"
2932
+ "AdSense Help</a> (requires AdSense-login) for more information"
2933
+ msgstr ""
2934
+ "Você ainda precisa ativar anúncios na Página de Nível em sua conta do "
2935
+ "AdSense. Consulte <a href=\"https://support.google."
2936
+ "com/adsense/answer/6245304\" target=\"_blank\">Ajuda AdSense</a> (requer "
2937
+ "AdSense-login) para mais informações."
2938
+
2939
+ #: modules/gadsense/admin/admin.php:238
2940
+ #: modules/gadsense/includes/class-ad-type-adsense.php:73
2941
+ msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2942
+ msgstr "O ID Publisher tem um formato incorreto. (deve começar com \"pub-\")"
2943
+
2944
+ #: modules/gadsense/includes/class-ad-type-adsense.php:35
2945
+ msgid "AdSense ad"
2946
+ msgstr "Anúncio AdSense"
2947
+
2948
+ #: modules/gadsense/includes/class-ad-type-adsense.php:36
2949
+ msgid "Use ads from your Google AdSense account"
2950
+ msgstr "Use anúncios de sua conta do Google AdSense"
2951
+
2952
+ #: modules/gadsense/includes/class-ad-type-adsense.php:105
2953
+ msgid "Your AdSense Publisher ID is missing."
2954
+ msgstr "O seu ID do AdSense Publisher está faltando."
2955
+
2956
+ #: modules/gadsense/includes/class-gadsense-data.php:37
2957
+ msgid "Auto"
2958
+ msgstr "Automático"
2959
+
2960
+ #: modules/ad-blocker/admin/views/rebuild_form.php:1
2961
+ msgid "Ad blocker file folder"
2962
+ msgstr "Pasta de arquivo bloqueador de anúncio"
2963
+
2964
+ #: modules/ad-blocker/admin/views/rebuild_form.php:10
2965
+ msgid "Upload folder is not writable"
2966
+ msgstr "Pasta de Upload não é gravável"
2967
+
2968
+ #: modules/ad-blocker/admin/views/rebuild_form.php:23
2969
+ msgid "Asset path"
2970
+ msgstr "Caminho de ativos"
2971
+
2972
+ #: modules/ad-blocker/admin/views/rebuild_form.php:27
2973
+ msgid "Asset URL"
2974
+ msgstr "URL de Ativos"
2975
+
2976
+ #: modules/ad-blocker/admin/views/rebuild_form.php:31
2977
+ msgid "Rename assets"
2978
+ msgstr "Renomear recursos"
2979
+
2980
+ #: modules/ad-blocker/admin/views/rebuild_form.php:34
2981
+ msgid "Check if you want to change the names of the assets"
2982
+ msgstr "Verifique se você deseja alterar os nomes dos recursos"
2983
+
2984
+ #: modules/ad-blocker/admin/views/rebuild_form.php:43
2985
+ #, php-format
2986
+ msgid ""
2987
+ "Please, rebuild the asset folder. All assets will be located in <strong>"
2988
+ "%s</strong>"
2989
+ msgstr ""
2990
+ "Por favor, reconstruir a pasta de recursos. Todos os recursos estão "
2991
+ "localizados em <strong>%s</strong>"
2992
+
2993
+ #: modules/ad-blocker/admin/views/rebuild_form.php:46
2994
+ msgid "Rebuild asset folder"
2995
+ msgstr "Reconstruir pasta de ativos"
2996
+
2997
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:22
2998
+ msgid "Copy&Paste existing ad code"
2999
+ msgstr "Copiar e colar código de anúncio existente"
3000
+
3001
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:27
3002
+ msgid "Ad Slot ID"
3003
+ msgstr "ID do Slot de Anúncios"
3004
+
3005
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:32
3006
+ #, php-format
3007
+ msgid "Publisher ID: %s"
3008
+ msgstr "ID do Publisher: %s"
3009
+
3010
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:44
3011
+ #, php-format
3012
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
3013
+ msgstr "Por favor <a href=\"%s\" target=\"_blank\">mudá-lo aqui</a>."
3014
+
3015
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:50
3016
+ msgid "Normal"
3017
+ msgstr "Normal"
3018
+
3019
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:59
3020
+ msgid "Resizing"
3021
+ msgstr "Redimensionar"
3022
+
3023
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:72
3024
+ msgid ""
3025
+ "Copy the ad code from your AdSense account and paste it in the area below"
3026
+ msgstr ""
3027
+ "Copie o código de anúncio da sua conta do AdSense e cole-o na área abaixo"
3028
+
3029
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:75
3030
+ msgid "Get details"
3031
+ msgstr "Obter detalhes"
3032
+
3033
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:76
3034
+ msgid "Close"
3035
+ msgstr "Fechar"
3036
+
3037
+ msgid "Advanced Ads"
3038
+ msgstr "Anúncios Avançados"
3039
+
3040
+ #. Description of the plugin
3041
+ msgid "Manage and optimize your ads in WordPress"
3042
+ msgstr "Gerenciar e otimizar seus anúncios em WordPress"
3043
+
3044
+ #. URI of the plugin
3045
+ msgid "https://wpadvancedads.com"
3046
+ msgstr "https://wpadvancedads.com"
3047
+
3048
+ #. Author of the plugin
3049
+ msgid "Thomas Maier"
3050
+ msgstr "Thomas Maier"
3051
+
3052
+ #. Author URI of the plugin
3053
+ msgid "http://webgilde.com"
3054
+ msgstr "http://webgilde.com"
languages/advanced-ads.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Advanved Ads\n"
5
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
6
- "POT-Creation-Date: 2016-10-14 15:19+0000\n"
7
  "POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
@@ -23,12 +23,12 @@ msgstr ""
23
  "X-Poedit-Basepath: ../\n"
24
  "X-Poedit-SearchPath-0: ."
25
 
26
- #: admin/class-advanced-ads-admin.php:167 classes/display-conditions.php:169
27
  #: classes/visitor-conditions.php:214 admin/views/ad-display-metabox.php:103
28
  msgid "or"
29
  msgstr ""
30
 
31
- #: admin/class-advanced-ads-admin.php:168 classes/display-conditions.php:169
32
  #: classes/visitor-conditions.php:214 admin/views/ad-visitor-metabox.php:68
33
  msgid "and"
34
  msgstr ""
@@ -38,6 +38,7 @@ msgid "After which paragraph?"
38
  msgstr ""
39
 
40
  #: admin/class-advanced-ads-admin.php:278
 
41
  msgid "time of %s"
42
  msgstr ""
43
 
@@ -45,48 +46,106 @@ msgstr ""
45
  msgid "Error while trying to register the license. Please contact support."
46
  msgstr ""
47
 
48
- #: admin/class-advanced-ads-admin.php:319 admin/views/setting-license.php:41
49
  msgid "Please enter a valid license key"
50
  msgstr ""
51
 
52
- #: admin/class-advanced-ads-admin.php:350
53
- #: modules/marketpress-license/main.php:65
54
  #: modules/marketpress-license/main.php:77
55
  msgid "License couldn’t be activated. Please try again later."
56
  msgstr ""
57
 
58
- #: admin/class-advanced-ads-admin.php:362
59
  msgid "This is the bundle license key."
60
  msgstr ""
61
 
62
- #: admin/class-advanced-ads-admin.php:363
63
  #: modules/marketpress-license/main.php:136
64
  msgid "This is not the correct key for this add-on."
65
  msgstr ""
66
 
67
- #: admin/class-advanced-ads-admin.php:364
68
  #: modules/marketpress-license/main.php:134
69
  msgid "There are no activations left."
70
  msgstr ""
71
 
72
- #: admin/class-advanced-ads-admin.php:435
73
  msgid "Error while trying to disable the license. Please contact support."
74
  msgstr ""
75
 
76
- #: admin/class-advanced-ads-admin.php:462
77
- #: admin/class-advanced-ads-admin.php:480
78
  msgid "License couldn’t be deactivated. Please try again later."
79
  msgstr ""
80
 
81
- #: admin/class-advanced-ads-admin.php:653 admin/includes/class-menu.php:87
82
  #: admin/includes/class-menu.php:87
83
  msgid "Support"
84
  msgstr ""
85
 
86
- #: admin/class-advanced-ads-admin.php:657
87
  msgid "Add-Ons"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: classes/ad_placements.php:31
91
  msgid "Manual Placement"
92
  msgstr ""
@@ -149,22 +208,27 @@ msgid ""
149
  msgstr ""
150
 
151
  #: classes/ad_placements.php:214
 
152
  msgid "paragraph (%s)"
153
  msgstr ""
154
 
155
  #: classes/ad_placements.php:215
 
156
  msgid "paragraph without image (%s)"
157
  msgstr ""
158
 
159
  #: classes/ad_placements.php:216
 
160
  msgid "headline 2 (%s)"
161
  msgstr ""
162
 
163
  #: classes/ad_placements.php:217
 
164
  msgid "headline 3 (%s)"
165
  msgstr ""
166
 
167
  #: classes/ad_placements.php:218
 
168
  msgid "headline 4 (%s)"
169
  msgstr ""
170
 
@@ -211,7 +275,8 @@ msgstr ""
211
  msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
212
  msgstr ""
213
 
214
- #: classes/checks.php:223
 
215
  msgid ""
216
  "Possible conflict between jQueryUI library, used by Advanced Ads and other "
217
  "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead "
@@ -245,20 +310,21 @@ msgid "author"
245
  msgstr ""
246
 
247
  #: classes/display-conditions.php:111
 
248
  msgid "archive: %s"
249
  msgstr ""
250
 
251
- #: classes/display-conditions.php:204 classes/display-conditions.php:257
252
  #: classes/display-conditions.php:310 classes/display-conditions.php:385
253
  msgid "show"
254
  msgstr ""
255
 
256
- #: classes/display-conditions.php:205 classes/display-conditions.php:258
257
  #: classes/display-conditions.php:311 classes/display-conditions.php:386
258
  msgid "hide"
259
  msgstr ""
260
 
261
- #: classes/display-conditions.php:228 classes/display-conditions.php:272
262
  #: classes/display-conditions.php:360
263
  msgctxt "Error message shown when no display condition term is selected"
264
  msgid "Please select some items."
@@ -345,57 +411,85 @@ msgstr ""
345
  msgid "allow ads in Feed"
346
  msgstr ""
347
 
348
- #: classes/EDD_SL_Plugin_Updater.php:186
 
349
  msgid ""
350
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
351
  msgstr ""
352
 
353
- #: classes/EDD_SL_Plugin_Updater.php:194
 
354
  msgid ""
355
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
356
  "or %5$supdate now%6$s."
357
  msgstr ""
358
 
359
- #: classes/frontend_checks.php:39
 
 
 
 
 
 
 
 
360
  msgid "Ad Health"
361
  msgstr ""
362
 
363
- #: classes/frontend_checks.php:46
364
  msgid "jQuery not in header"
365
  msgstr ""
366
 
367
- #: classes/frontend_checks.php:58
368
  msgid "Ad blocker enabled"
369
  msgstr ""
370
 
371
- #: classes/frontend_checks.php:72
 
372
  msgid "<em>%s</em> filter does not exist"
373
  msgstr ""
374
 
375
- #: classes/frontend_checks.php:88
376
  msgid "Ads are disabled on this page"
377
  msgstr ""
378
 
379
- #: classes/frontend_checks.php:101
380
  msgid "Ads are disabled in the content of this page"
381
  msgstr ""
382
 
383
- #: classes/frontend_checks.php:113
384
  msgid "the current post ID is 0 "
385
  msgstr ""
386
 
387
- #: classes/frontend_checks.php:127
388
  msgid "Ads are disabled on 404 pages"
389
  msgstr ""
390
 
391
- #: classes/frontend_checks.php:140
392
  msgid "Ads are disabled on non singular pages"
393
  msgstr ""
394
 
395
- #: classes/frontend_checks.php:153
 
 
 
 
 
 
 
 
 
396
  msgid "Everything is fine"
397
  msgstr ""
398
 
 
 
 
 
 
 
 
 
399
  #: classes/visitor-conditions.php:32
400
  msgid "mobile device"
401
  msgstr ""
@@ -476,136 +570,128 @@ msgstr ""
476
  msgid "--empty--"
477
  msgstr ""
478
 
479
- #: classes/widget.php:69 admin/includes/class-menu.php:72
480
- #: admin/includes/class-shortcode-creator.php:91 admin/views/placements.php:19
481
  #: modules/import-export/views/page.php:25
482
  msgid "Placements"
483
  msgstr ""
484
 
485
- #: classes/widget.php:76 admin/includes/class-menu.php:67
486
- #: admin/includes/class-shortcode-creator.php:84 admin/views/placements.php:76
487
  #: admin/views/placements.php:182
488
  msgid "Ad Groups"
489
  msgstr ""
490
 
491
- #: classes/widget.php:83 public/class-advanced-ads.php:590
492
- #: admin/includes/class-menu.php:56 admin/includes/class-menu.php:56
493
- #: admin/includes/class-shortcode-creator.php:77
494
- #: admin/views/ad-group-list-form-row.php:28
495
- #: admin/views/ad-group-list-header.php:5 admin/views/placements.php:83
496
  #: admin/views/placements.php:189 modules/import-export/views/page.php:23
497
  msgid "Ads"
498
  msgstr ""
499
 
500
- #: public/class-advanced-ads.php:309
501
  msgid "Advanced Ads Error following:"
502
  msgstr ""
503
 
504
- #: public/class-advanced-ads.php:312
 
505
  msgid "Advanced Ads Error: %s"
506
  msgstr ""
507
 
508
- #: public/class-advanced-ads.php:553
509
  msgctxt "ad group general name"
510
  msgid "Ad Groups"
511
  msgstr ""
512
 
513
- #: public/class-advanced-ads.php:554
514
- msgctxt "ad group singular name"
515
- msgid "Ad Group"
516
- msgstr ""
517
-
518
- #: public/class-advanced-ads.php:555
519
  msgid "Search Ad Groups"
520
  msgstr ""
521
 
522
- #: public/class-advanced-ads.php:556
523
  msgid "All Ad Groups"
524
  msgstr ""
525
 
526
- #: public/class-advanced-ads.php:557
527
  msgid "Parent Ad Groups"
528
  msgstr ""
529
 
530
- #: public/class-advanced-ads.php:558
531
  msgid "Parent Ad Groups:"
532
  msgstr ""
533
 
534
- #: public/class-advanced-ads.php:559
535
  msgid "Edit Ad Group"
536
  msgstr ""
537
 
538
- #: public/class-advanced-ads.php:560
539
  msgid "Update Ad Group"
540
  msgstr ""
541
 
542
- #: public/class-advanced-ads.php:561
543
  msgid "Add New Ad Group"
544
  msgstr ""
545
 
546
- #: public/class-advanced-ads.php:562
547
  msgid "New Ad Groups Name"
548
  msgstr ""
549
 
550
- #: public/class-advanced-ads.php:563 admin/includes/class-menu.php:67
551
  #: modules/import-export/views/page.php:24
552
  msgid "Groups"
553
  msgstr ""
554
 
555
- #: public/class-advanced-ads.php:564
556
  msgid "No Ad Group found"
557
  msgstr ""
558
 
559
- #: public/class-advanced-ads.php:591 admin/views/ad-group-list-form-row.php:31
560
- msgid "Ad"
561
- msgstr ""
562
-
563
- #: public/class-advanced-ads.php:592 public/class-advanced-ads.php:596
564
  #: admin/includes/class-menu.php:62 admin/views/ad-group-list-form-row.php:45
565
  msgid "New Ad"
566
  msgstr ""
567
 
568
- #: public/class-advanced-ads.php:593 admin/includes/class-menu.php:62
569
  msgid "Add New Ad"
570
  msgstr ""
571
 
572
- #: public/class-advanced-ads.php:594
573
- #: admin/includes/class-ad-groups-list.php:302
574
- #: modules/import-export/classes/import.php:143
575
- #: modules/import-export/classes/import.php:183
576
  #: modules/import-export/classes/import.php:559
577
  msgid "Edit"
578
  msgstr ""
579
 
580
- #: public/class-advanced-ads.php:595
581
  msgid "Edit Ad"
582
  msgstr ""
583
 
584
- #: public/class-advanced-ads.php:597
585
  msgid "View"
586
  msgstr ""
587
 
588
- #: public/class-advanced-ads.php:598
589
  msgid "View the Ad"
590
  msgstr ""
591
 
592
- #: public/class-advanced-ads.php:599
593
  msgid "Search Ads"
594
  msgstr ""
595
 
596
- #: public/class-advanced-ads.php:600
597
  msgid "No Ads found"
598
  msgstr ""
599
 
600
- #: public/class-advanced-ads.php:601
601
  msgid "No Ads found in Trash"
602
  msgstr ""
603
 
604
- #: public/class-advanced-ads.php:602
605
  msgid "Parent Ad"
606
  msgstr ""
607
 
608
- #: public/class-advanced-ads.php:714
609
  msgctxt "label above ads"
610
  msgid "Advertisements"
611
  msgstr ""
@@ -614,18 +700,21 @@ msgstr ""
614
  msgid "Ad weight"
615
  msgstr ""
616
 
617
- #: admin/includes/class-ad-groups-list.php:173
618
  #: admin/views/ad-list-timing-column.php:4
 
619
  msgid "starts %s"
620
  msgstr ""
621
 
622
- #: admin/includes/class-ad-groups-list.php:192
623
  #: admin/views/ad-list-timing-column.php:21
 
624
  msgid "expires %s"
625
  msgstr ""
626
 
627
- #: admin/includes/class-ad-groups-list.php:194
628
  #: admin/views/ad-list-timing-column.php:23
 
629
  msgid "<strong>expired</strong> %s"
630
  msgstr ""
631
 
@@ -634,6 +723,7 @@ msgid "all published ads are displayed"
634
  msgstr ""
635
 
636
  #: admin/includes/class-ad-groups-list.php:209
 
637
  msgid "up to %d ads displayed"
638
  msgstr ""
639
 
@@ -695,6 +785,7 @@ msgstr ""
695
 
696
  #. translators: %s: date and time of the revision
697
  #: admin/includes/class-ad-type.php:490
 
698
  msgid "Ad restored to revision from %s"
699
  msgstr ""
700
 
@@ -703,6 +794,7 @@ msgid "Ad published."
703
  msgstr ""
704
 
705
  #: admin/includes/class-ad-type.php:491
 
706
  msgid ""
707
  "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
708
  msgstr ""
@@ -716,6 +808,7 @@ msgid "Ad submitted."
716
  msgstr ""
717
 
718
  #: admin/includes/class-ad-type.php:495
 
719
  msgid "Ad scheduled for: <strong>%1$s</strong>."
720
  msgstr ""
721
 
@@ -756,23 +849,11 @@ msgstr ""
756
  msgid "Advanced Ads Intro"
757
  msgstr ""
758
 
759
- #: admin/includes/class-menu.php:199
760
- msgid "Please enter a message"
761
- msgstr ""
762
-
763
- #: admin/includes/class-menu.php:209
764
- msgid "Email could NOT be sent. Please contact us directly at %s."
765
- msgstr ""
766
-
767
- #: admin/includes/class-menu.php:212
768
- msgid "Please enter a valid email address"
769
- msgstr ""
770
-
771
- #: admin/includes/class-menu.php:238 admin/includes/class-menu.php:265
772
  msgid "Sorry, you are not allowed to access this feature."
773
  msgstr ""
774
 
775
- #: admin/includes/class-menu.php:251
776
  msgid ""
777
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
778
  "deleted?"
@@ -790,16 +871,8 @@ msgstr ""
790
  msgid "Layout / Output"
791
  msgstr ""
792
 
793
- #: admin/includes/class-meta-box.php:65
794
- msgid "Display Conditions"
795
- msgstr ""
796
-
797
- #: admin/includes/class-meta-box.php:68
798
- msgid "Visitor Conditions"
799
- msgstr ""
800
-
801
- #: admin/includes/class-meta-box.php:125 admin/includes/class-meta-box.php:136
802
- #: admin/includes/class-meta-box.php:141 admin/includes/class-settings.php:409
803
  #: admin/views/ad-output-metabox.php:51
804
  msgid "Manual"
805
  msgstr ""
@@ -825,6 +898,7 @@ msgid "Advanced Ads Tutorials"
825
  msgstr ""
826
 
827
  #: admin/includes/class-meta-box.php:330
 
828
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
829
  msgstr ""
830
 
@@ -841,6 +915,7 @@ msgid "Get AdSense tips via email"
841
  msgstr ""
842
 
843
  #: admin/includes/class-notices.php:412
 
844
  msgid ""
845
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
846
  "target=\"_blank\">this form</a> to sign up."
@@ -852,6 +927,7 @@ msgid ""
852
  msgstr ""
853
 
854
  #: admin/includes/class-notices.php:435
 
855
  msgid ""
856
  "Please check your email (%s) for the confirmation message. If you didn’t "
857
  "receive one or want to use another email address then please use <a "
@@ -898,6 +974,10 @@ msgstr ""
898
  msgid "Ad Slider"
899
  msgstr ""
900
 
 
 
 
 
901
  #: admin/includes/class-overview-widgets.php:86
902
  msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
903
  msgstr ""
@@ -912,8 +992,8 @@ msgid ""
912
  "and Advanced Ads from the dedicated newsletter group."
913
  msgstr ""
914
 
915
- #: admin/includes/class-overview-widgets.php:95 admin/includes/notices.php:30
916
- #: admin/views/intro.php:73 admin/views/notices/inline.php:3
917
  #: admin/views/notices/subscribe.php:3
918
  msgid "Subscribe me now"
919
  msgstr ""
@@ -954,18 +1034,22 @@ msgid "Next steps"
954
  msgstr ""
955
 
956
  #: admin/includes/class-overview-widgets.php:153
 
957
  msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
958
  msgstr ""
959
 
960
  #: admin/includes/class-overview-widgets.php:154
 
961
  msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
962
  msgstr ""
963
 
964
  #: admin/includes/class-overview-widgets.php:155
 
965
  msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
966
  msgstr ""
967
 
968
  #: admin/includes/class-overview-widgets.php:156
 
969
  msgid ""
970
  "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
971
  "href=\"%s\" target=\"_blank\">wordpress.org</a>"
@@ -978,6 +1062,7 @@ msgid ""
978
  msgstr ""
979
 
980
  #: admin/includes/class-overview-widgets.php:166
 
981
  msgid "Help with ads on %s"
982
  msgstr ""
983
 
@@ -1100,7 +1185,8 @@ msgid "Get the Slider add-on"
1100
  msgstr ""
1101
 
1102
  #: admin/includes/class-overview-widgets.php:258
1103
- msgid "Let users purchase ads directly in the frontend of your site."
 
1104
  msgstr ""
1105
 
1106
  #: admin/includes/class-overview-widgets.php:260
@@ -1198,6 +1284,7 @@ msgid ""
1198
  msgstr ""
1199
 
1200
  #: admin/includes/class-settings.php:268
 
1201
  msgid ""
1202
  "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
1203
  "here</a>). Some features and add-ons might override this setting if they "
@@ -1226,6 +1313,7 @@ msgid ""
1226
  msgstr ""
1227
 
1228
  #: admin/includes/class-settings.php:313
 
1229
  msgid ""
1230
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
1231
  "impressions for bots when using the <a href=\"%s\" target=\"_blank\">"
@@ -1270,6 +1358,7 @@ msgid "Allow editors to also manage and publish ads."
1270
  msgstr ""
1271
 
1272
  #: admin/includes/class-settings.php:391
 
1273
  msgid ""
1274
  "You can assign different ad-related roles on a user basis with <a "
1275
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
@@ -1284,6 +1373,7 @@ msgid "Clean up all data related to Advanced Ads when removing the plugin."
1284
  msgstr ""
1285
 
1286
  #: admin/includes/notices.php:9
 
1287
  msgid ""
1288
  "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1289
  "Steps</a>."
@@ -1322,10 +1412,12 @@ msgid ""
1322
  msgstr ""
1323
 
1324
  #: admin/includes/notices.php:41
 
1325
  msgid "Please add valid license keys <a href=\"%s\">here</a>."
1326
  msgstr ""
1327
 
1328
  #: admin/includes/notices.php:47
 
1329
  msgid ""
1330
  "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1331
  "soon</strong>. Don’t risk to lose support and updates and renew your license "
@@ -1334,6 +1426,7 @@ msgid ""
1334
  msgstr ""
1335
 
1336
  #: admin/includes/notices.php:53
 
1337
  msgid ""
1338
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1339
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
@@ -1341,6 +1434,7 @@ msgid ""
1341
  msgstr ""
1342
 
1343
  #: admin/includes/notices.php:59
 
1344
  msgid ""
1345
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1346
  "review-image\"/>You are using <strong>Advanced Ads</strong> for some time "
@@ -1352,6 +1446,7 @@ msgid ""
1352
  msgstr ""
1353
 
1354
  #: admin/includes/notices.php:65
 
1355
  msgid ""
1356
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1357
  "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
@@ -1377,8 +1472,9 @@ msgstr ""
1377
  msgid "Set Display Conditions to allow or hide the ad on specific pages."
1378
  msgstr ""
1379
 
1380
- #: admin/views/ad-display-metabox.php:8
1381
  #: admin/views/notices/jqueryui_error.php:2
 
1382
  msgid ""
1383
  "There might be a problem with layouts and scripts in your dashboard. Please "
1384
  "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
@@ -1404,8 +1500,8 @@ msgstr ""
1404
  msgid "-- choose a condition --"
1405
  msgstr ""
1406
 
1407
- #: admin/views/ad-display-metabox.php:77
1408
- #: admin/views/ad-group-list-form-row.php:52
1409
  #: admin/views/ad-visitor-metabox.php:42
1410
  msgid "add"
1411
  msgstr ""
@@ -1431,7 +1527,7 @@ msgstr ""
1431
  msgid "Description"
1432
  msgstr ""
1433
 
1434
- #: admin/views/ad-group-list-form-row.php:7 admin/views/placements.php:24
1435
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:47
1436
  msgid "Type"
1437
  msgstr ""
@@ -1457,27 +1553,30 @@ msgstr ""
1457
  msgid "Details"
1458
  msgstr ""
1459
 
1460
- #: admin/views/ad-group-list-row.php:8 admin/views/ad-group.php:63
1461
  #: admin/views/ad-info.php:3 admin/views/placements.php:61
1462
  msgid "shortcode"
1463
  msgstr ""
1464
 
1465
- #: admin/views/ad-group-list-row.php:11 admin/views/ad-group.php:66
1466
  #: admin/views/placements.php:64
1467
  msgid "template"
1468
  msgstr ""
1469
 
1470
  #: admin/views/ad-group-list-row.php:14
 
1471
  msgid ""
1472
  "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1473
  "manual</a>."
1474
  msgstr ""
1475
 
1476
  #: admin/views/ad-group-list-row.php:19
 
1477
  msgid "Type: %s"
1478
  msgstr ""
1479
 
1480
  #: admin/views/ad-group-list-row.php:20
 
1481
  msgid "ID: %s"
1482
  msgstr ""
1483
 
@@ -1486,6 +1585,7 @@ msgid "Ad Groups successfully updated"
1486
  msgstr ""
1487
 
1488
  #: admin/views/ad-group.php:46
 
1489
  msgid "Search results for &#8220;%s&#8221;"
1490
  msgstr ""
1491
 
@@ -1502,6 +1602,7 @@ msgid "How to display an Ad Group?"
1502
  msgstr ""
1503
 
1504
  #: admin/views/ad-group.php:62
 
1505
  msgid ""
1506
  "Examples on how to display an ad group? Find more help and examples in the "
1507
  "<a href=\"%s\" target=\"_blank\">manual</a>"
@@ -1535,6 +1636,7 @@ msgid "next"
1535
  msgstr ""
1536
 
1537
  #: admin/views/ad-info-top.php:5
 
1538
  msgid ""
1539
  "Congratulations! Your ad is now visible in the frontend. You can adjust the "
1540
  "placement options <a href=\"%s\">here</a>."
@@ -1573,10 +1675,12 @@ msgid "Existing placement"
1573
  msgstr ""
1574
 
1575
  #: admin/views/ad-info-top.php:53
 
1576
  msgid "Or use the shortcode %s to insert the ad into the content manually."
1577
  msgstr ""
1578
 
1579
  #: admin/views/ad-info-top.php:54
 
1580
  msgid ""
1581
  "Learn more about your choices to display an ad in the <a href=\"%s\" "
1582
  "target=\"_blank\">manual</a>."
@@ -1605,6 +1709,7 @@ msgid "Stop Wizard and show all options"
1605
  msgstr ""
1606
 
1607
  #: admin/views/ad-info.php:2
 
1608
  msgid "Ad Id: %s"
1609
  msgstr ""
1610
 
@@ -1613,6 +1718,7 @@ msgid "theme function"
1613
  msgstr ""
1614
 
1615
  #: admin/views/ad-info.php:7
 
1616
  msgid ""
1617
  "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1618
  msgstr ""
@@ -1746,6 +1852,7 @@ msgid ""
1746
  msgstr ""
1747
 
1748
  #: admin/views/ad-parameters-metabox.php:31
 
1749
  msgid "Reach out to <a href=\"%s\">support</a> to get help."
1750
  msgstr ""
1751
 
@@ -1770,11 +1877,13 @@ msgid "Set expiry date"
1770
  msgstr ""
1771
 
1772
  #: admin/views/ad-submitbox-meta.php:16
 
1773
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1774
  msgid "%1$s-%2$s"
1775
  msgstr ""
1776
 
1777
  #: admin/views/ad-submitbox-meta.php:29
 
1778
  msgctxt ""
1779
  "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1780
  msgid "%1$s %2$s, %3$s @ %4$s %5$s"
@@ -1793,12 +1902,14 @@ msgid ""
1793
  msgstr ""
1794
 
1795
  #: admin/views/ad-visitor-metabox.php:30
 
1796
  msgid ""
1797
  "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
1798
  "Pro</a> if dynamic features get cached."
1799
  msgstr ""
1800
 
1801
  #: admin/views/ad-visitor-metabox.php:47
 
1802
  msgid ""
1803
  "Define the exact browser width for which an ad should be visible using the "
1804
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
@@ -1849,6 +1960,7 @@ msgid "I stopped showing ads on my site"
1849
  msgstr ""
1850
 
1851
  #: admin/views/feedback_disable.php:8
 
1852
  msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1853
  msgstr ""
1854
 
@@ -1926,6 +2038,7 @@ msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1926
  msgstr ""
1927
 
1928
  #: admin/views/intro.php:79
 
1929
  msgid ""
1930
  "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a>"
1931
  " or watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> "
@@ -1969,6 +2082,7 @@ msgid ""
1969
  msgstr ""
1970
 
1971
  #: admin/views/placements.php:16
 
1972
  msgid ""
1973
  "See also the manual for more information on <a href=\"%s\">placements</a>."
1974
  msgstr ""
@@ -1978,6 +2092,7 @@ msgid "Options"
1978
  msgstr ""
1979
 
1980
  #: admin/views/placements.php:44
 
1981
  msgid ""
1982
  "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
1983
  "check if the responsible add-on is activated."
@@ -2048,6 +2163,7 @@ msgid "Choose a placement type"
2048
  msgstr ""
2049
 
2050
  #: admin/views/placements.php:154
 
2051
  msgid ""
2052
  "Placement types define where the ad is going to be displayed. Learn more "
2053
  "about the different types from the <a href=\"%s\">manual</a>"
@@ -2096,10 +2212,12 @@ msgid "Your license expired."
2096
  msgstr ""
2097
 
2098
  #: admin/views/setting-license.php:6
 
2099
  msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
2100
  msgstr ""
2101
 
2102
  #: admin/views/setting-license.php:18
 
2103
  msgid "(%d days left)"
2104
  msgstr ""
2105
 
@@ -2107,11 +2225,11 @@ msgstr ""
2107
  msgid "License key"
2108
  msgstr ""
2109
 
2110
- #: admin/views/setting-license.php:43
2111
  msgid "License key invalid"
2112
  msgstr ""
2113
 
2114
- #: admin/views/setting-license.php:46
2115
  msgid "active"
2116
  msgstr ""
2117
 
@@ -2157,7 +2275,7 @@ msgstr ""
2157
  msgid "Save settings on this page"
2158
  msgstr ""
2159
 
2160
- #: admin/views/settings.php:48 modules/import-export/main.php:15
2161
  #: modules/import-export/main.php:15
2162
  msgid "Import &amp; Export"
2163
  msgstr ""
@@ -2179,23 +2297,21 @@ msgid "the company behind Advanced Ads"
2179
  msgstr ""
2180
 
2181
  #: admin/views/support.php:8
2182
- msgid "Possible Issues"
2183
- msgstr ""
2184
-
2185
- #: admin/views/support.php:9
2186
  msgid ""
2187
  "Please fix the red highlighted issues on this page or try to understand "
2188
  "their consequences before contacting support."
2189
  msgstr ""
2190
 
2191
- #: admin/views/support.php:13
 
2192
  msgid ""
2193
  "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2194
  "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2195
  "Please ask your hosting provider for more information."
2196
  msgstr ""
2197
 
2198
- #: admin/views/support.php:16
 
2199
  msgid ""
2200
  "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2201
  "rotation or visitor conditions might not work properly. Use the cache-"
@@ -2203,16 +2319,17 @@ msgid ""
2203
  "load ads dynamically."
2204
  msgstr ""
2205
 
2206
- #: admin/views/support.php:19
2207
  msgid ""
2208
  "There is a <strong>new WordPress version available</strong>. Please update."
2209
  msgstr ""
2210
 
2211
- #: admin/views/support.php:22
2212
  msgid "There are <strong>plugin updates available</strong>. Please update."
2213
  msgstr ""
2214
 
2215
- #: admin/views/support.php:31
 
2216
  msgid ""
2217
  "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2218
  "site performance, it is known to alter code, including scripts from ad "
@@ -2220,60 +2337,55 @@ msgid ""
2220
  "in support for Autoptimize."
2221
  msgstr ""
2222
 
2223
- #: admin/views/support.php:34
 
2224
  msgid ""
2225
  "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2226
  "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2227
  msgstr ""
2228
 
2229
- #: admin/views/support.php:38
 
2230
  msgid ""
2231
  "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2232
  "href=\"%s\">settings</a>."
2233
  msgstr ""
2234
 
 
 
 
 
2235
  #: admin/views/support.php:49
2236
- msgid "Search"
2237
  msgstr ""
2238
 
2239
  #: admin/views/support.php:50
2240
- msgid ""
2241
- "Use the following form to search for solutions in the manual on "
2242
- "wpadvancedads.com"
2243
  msgstr ""
2244
 
2245
- #: admin/views/support.php:53
2246
- msgid "search"
2247
  msgstr ""
2248
 
2249
- #: admin/views/support.php:55
2250
- msgid "Contact"
2251
  msgstr ""
2252
 
2253
- #: admin/views/support.php:56
2254
  msgid ""
2255
- "Please search the manual for a solution and take a look at <a href=\"%s\" "
2256
- "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2257
- msgstr ""
2258
-
2259
- #: admin/views/support.php:58
2260
- msgid "Email was successfully sent."
2261
- msgstr ""
2262
-
2263
- #: admin/views/support.php:67
2264
- msgid "your email"
2265
- msgstr ""
2266
-
2267
- #: admin/views/support.php:71
2268
- msgid "your name"
2269
  msgstr ""
2270
 
2271
- #: admin/views/support.php:75
2272
- msgid "your message"
2273
  msgstr ""
2274
 
2275
- #: admin/views/support.php:80
2276
- msgid "send"
 
 
 
2277
  msgstr ""
2278
 
2279
  #: modules/gadsense/main.php:19
@@ -2284,7 +2396,7 @@ msgstr ""
2284
  msgid "MarketPress Bundle License"
2285
  msgstr ""
2286
 
2287
- #: modules/marketpress-license/admin.php:67
2288
  #: modules/marketpress-license/admin.php:70
2289
  msgid ""
2290
  "Enter your key here, if you have purchased the bundle through MarketPress."
@@ -2296,6 +2408,14 @@ msgid ""
2296
  "."
2297
  msgstr ""
2298
 
 
 
 
 
 
 
 
 
2299
  #: admin/views/notices/adblock.php:3
2300
  msgid ""
2301
  "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
@@ -2315,27 +2435,32 @@ msgid "There is no writable upload folder"
2315
  msgstr ""
2316
 
2317
  #: modules/ad-blocker/admin/admin.php:286
 
2318
  msgid "Unable to rename \"%s\" directory"
2319
  msgstr ""
2320
 
2321
- #: modules/ad-blocker/admin/admin.php:302
2322
- #: modules/ad-blocker/admin/admin.php:315
2323
  #: modules/ad-blocker/admin/admin.php:332
 
2324
  msgid "Unable to copy assets to the \"%s\" directory"
2325
  msgstr ""
2326
 
2327
- #: modules/ad-blocker/admin/admin.php:366
2328
  #: modules/ad-blocker/admin/admin.php:386
 
2329
  msgid "We do not have direct write access to the \"%s\" directory"
2330
  msgstr ""
2331
 
2332
  #: modules/ad-blocker/admin/admin.php:453
 
2333
  msgid ""
2334
  "Unable to create \"%s\" directory. Is its parent directory writable by the "
2335
  "server?"
2336
  msgstr ""
2337
 
2338
  #: modules/ad-blocker/admin/admin.php:464
 
2339
  msgid "Unable to copy files to %s"
2340
  msgstr ""
2341
 
@@ -2345,7 +2470,7 @@ msgid ""
2345
  "files (.js, .css)."
2346
  msgstr ""
2347
 
2348
- #: modules/gadsense/admin/admin.php:26
2349
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:51
2350
  msgid "Responsive"
2351
  msgstr ""
@@ -2378,6 +2503,7 @@ msgid "Activate Page-Level ads"
2378
  msgstr ""
2379
 
2380
  #: modules/gadsense/admin/admin.php:169
 
2381
  msgid ""
2382
  "Please enter your Publisher ID in order to use AdSense on your page. See the "
2383
  "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
@@ -2388,6 +2514,7 @@ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2388
  msgstr ""
2389
 
2390
  #: modules/gadsense/admin/admin.php:195
 
2391
  msgid "Limit to %d AdSense ads"
2392
  msgstr ""
2393
 
@@ -2415,7 +2542,7 @@ msgid ""
2415
  "AdSense Help</a> (requires AdSense-login) for more information"
2416
  msgstr ""
2417
 
2418
- #: modules/gadsense/admin/admin.php:238
2419
  #: modules/gadsense/includes/class-ad-type-adsense.php:73
2420
  msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2421
  msgstr ""
@@ -2440,48 +2567,59 @@ msgstr ""
2440
  msgid "Please enter XML content"
2441
  msgstr ""
2442
 
2443
- #: modules/import-export/classes/import.php:144
2444
  #: modules/import-export/classes/import.php:560
 
2445
  msgid "New attachment created <em>%s</em> %s"
2446
  msgstr ""
2447
 
2448
  #: modules/import-export/classes/import.php:176
 
2449
  msgid "Failed to import <em>%s</em>"
2450
  msgstr ""
2451
 
2452
  #: modules/import-export/classes/import.php:184
 
2453
  msgid "New ad created: <em>%s</em> %s"
2454
  msgstr ""
2455
 
2456
  #: modules/import-export/classes/import.php:227
 
2457
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2458
  msgstr ""
2459
 
2460
  #: modules/import-export/classes/import.php:289
 
2461
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2462
  msgstr ""
2463
 
2464
  #: modules/import-export/classes/import.php:291
 
2465
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2466
  msgstr ""
2467
 
2468
  #: modules/import-export/classes/import.php:356
 
2469
  msgid "Placement <em>%s</em> created"
2470
  msgstr ""
2471
 
2472
  #: modules/import-export/classes/import.php:471
 
2473
  msgid "Option was updated: <em>%s</em>"
2474
  msgstr ""
2475
 
2476
  #: modules/import-export/classes/import.php:474
 
2477
  msgid "Option already exists: <em>%s</em>"
2478
  msgstr ""
2479
 
2480
  #: modules/import-export/classes/import.php:496
 
2481
  msgid "Failed to create import directory <em>%s</em>"
2482
  msgstr ""
2483
 
2484
  #: modules/import-export/classes/import.php:501
 
2485
  msgid "Import directory is not writable: <em>%s</em>"
2486
  msgstr ""
2487
 
@@ -2492,6 +2630,7 @@ msgid ""
2492
  msgstr ""
2493
 
2494
  #: modules/import-export/classes/import.php:519
 
2495
  msgid "Failed to upload file, error: <em>%s</em>"
2496
  msgstr ""
2497
 
@@ -2500,52 +2639,54 @@ msgid "File is empty."
2500
  msgstr ""
2501
 
2502
  #: modules/import-export/classes/import.php:529
 
2503
  msgid ""
2504
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2505
  "problem"
2506
  msgstr ""
2507
 
2508
  #: modules/import-export/classes/import.php:602
 
2509
  msgid "Invalid filetype <em>%s</em>"
2510
  msgstr ""
2511
 
2512
- #: modules/import-export/classes/import.php:607
2513
- #: modules/import-export/classes/import.php:614
2514
- #: modules/import-export/classes/import.php:622
2515
  #: modules/import-export/classes/import.php:637
 
2516
  msgid "Error getting remote image <em>%s</em>"
2517
  msgstr ""
2518
 
2519
  #: modules/import-export/classes/import.php:631
 
2520
  msgid "Zero size file downloaded <em>%s</em>"
2521
  msgstr ""
2522
 
2523
- #: modules/import-export/classes/XmlEncoder.php:61
2524
- #: modules/import-export/classes/XmlEncoder.php:190
2525
- msgid "The %s extension(s) is not loaded"
2526
- msgstr ""
2527
-
2528
- #: modules/import-export/classes/XmlEncoder.php:72
2529
  msgctxt "import_export"
2530
  msgid "The data must be an array"
2531
  msgstr ""
2532
 
2533
- #: modules/import-export/classes/XmlEncoder.php:100
 
2534
  msgctxt "import_export"
2535
  msgid "The key %s is not valid"
2536
  msgstr ""
2537
 
2538
- #: modules/import-export/classes/XmlEncoder.php:146
 
2539
  msgctxt "import_export"
2540
  msgid "An unexpected value could not be serialized: %s"
2541
  msgstr ""
2542
 
2543
- #: modules/import-export/classes/XmlEncoder.php:194
2544
  msgctxt "import_export"
2545
  msgid "Invalid XML data, it can not be empty"
2546
  msgstr ""
2547
 
2548
- #: modules/import-export/classes/XmlEncoder.php:216
 
2549
  msgctxt "import_export"
2550
  msgid "XML error: %s"
2551
  msgstr ""
@@ -2601,6 +2742,7 @@ msgid "Check if you want to change the names of the assets"
2601
  msgstr ""
2602
 
2603
  #: modules/ad-blocker/admin/views/rebuild_form.php:43
 
2604
  msgid ""
2605
  "Please, rebuild the asset folder. All assets will be located in <strong>"
2606
  "%s</strong>"
@@ -2619,10 +2761,12 @@ msgid "Ad Slot ID"
2619
  msgstr ""
2620
 
2621
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:32
 
2622
  msgid "Publisher ID: %s"
2623
  msgstr ""
2624
 
2625
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:44
 
2626
  msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2627
  msgstr ""
2628
 
@@ -2631,6 +2775,7 @@ msgid "Normal"
2631
  msgstr ""
2632
 
2633
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:56
 
2634
  msgid ""
2635
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2636
  "define the exact size for each browser width or choose between horizontal, "
3
  msgstr ""
4
  "Project-Id-Version: Advanved Ads\n"
5
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
6
+ "POT-Creation-Date: 2016-11-21 12:17+0000\n"
7
  "POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
23
  "X-Poedit-Basepath: ../\n"
24
  "X-Poedit-SearchPath-0: ."
25
 
26
+ #: admin/class-advanced-ads-admin.php:167 classes/display-conditions.php:169
27
  #: classes/visitor-conditions.php:214 admin/views/ad-display-metabox.php:103
28
  msgid "or"
29
  msgstr ""
30
 
31
+ #: admin/class-advanced-ads-admin.php:168 classes/display-conditions.php:169
32
  #: classes/visitor-conditions.php:214 admin/views/ad-visitor-metabox.php:68
33
  msgid "and"
34
  msgstr ""
38
  msgstr ""
39
 
40
  #: admin/class-advanced-ads-admin.php:278
41
+ #, php-format
42
  msgid "time of %s"
43
  msgstr ""
44
 
46
  msgid "Error while trying to register the license. Please contact support."
47
  msgstr ""
48
 
49
+ #: admin/class-advanced-ads-admin.php:319 admin/views/setting-license.php:40
50
  msgid "Please enter a valid license key"
51
  msgstr ""
52
 
53
+ #: admin/class-advanced-ads-admin.php:350
54
+ #: modules/marketpress-license/main.php:65
55
  #: modules/marketpress-license/main.php:77
56
  msgid "License couldn’t be activated. Please try again later."
57
  msgstr ""
58
 
59
+ #: admin/class-advanced-ads-admin.php:365
60
  msgid "This is the bundle license key."
61
  msgstr ""
62
 
63
+ #: admin/class-advanced-ads-admin.php:366
64
  #: modules/marketpress-license/main.php:136
65
  msgid "This is not the correct key for this add-on."
66
  msgstr ""
67
 
68
+ #: admin/class-advanced-ads-admin.php:367
69
  #: modules/marketpress-license/main.php:134
70
  msgid "There are no activations left."
71
  msgstr ""
72
 
73
+ #: admin/class-advanced-ads-admin.php:436
74
  msgid "Error while trying to disable the license. Please contact support."
75
  msgstr ""
76
 
77
+ #: admin/class-advanced-ads-admin.php:463
78
+ #: admin/class-advanced-ads-admin.php:481
79
  msgid "License couldn’t be deactivated. Please try again later."
80
  msgstr ""
81
 
82
+ #: admin/class-advanced-ads-admin.php:647 admin/includes/class-menu.php:87
83
  #: admin/includes/class-menu.php:87
84
  msgid "Support"
85
  msgstr ""
86
 
87
+ #: admin/class-advanced-ads-admin.php:651
88
  msgid "Add-Ons"
89
  msgstr ""
90
 
91
+ #: classes/ad-debug.php:33
92
+ msgid "Current query is not identical to main query."
93
+ msgstr ""
94
+
95
+ #: classes/ad-debug.php:40
96
+ msgid "Current post is not identical to main post."
97
+ msgstr ""
98
+
99
+ #: classes/ad-debug.php:43
100
+ msgid "current post"
101
+ msgstr ""
102
+
103
+ #: classes/ad-debug.php:46
104
+ msgid "main post"
105
+ msgstr ""
106
+
107
+ #: classes/ad-debug.php:52
108
+ msgid "The ad is displayed on the page"
109
+ msgstr ""
110
+
111
+ #: classes/ad-debug.php:54
112
+ msgid "The ad is not displayed on the page"
113
+ msgstr ""
114
+
115
+ #: classes/ad-debug.php:62
116
+ msgid "The current URL is HTTPS, but the ad code contains HTTP"
117
+ msgstr ""
118
+
119
+ #: classes/ad-debug.php:99
120
+ msgid "current query"
121
+ msgstr ""
122
+
123
+ #: classes/ad-debug.php:99
124
+ msgid "main query"
125
+ msgstr ""
126
+
127
+ #: classes/ad-debug.php:119 classes/ad-debug.php:169 classes/ad-debug.php:171
128
+ #: public/class-advanced-ads.php:598 admin/views/ad-group-list-form-row.php:31
129
+ msgid "Ad"
130
+ msgstr ""
131
+
132
+ #: classes/ad-debug.php:123 public/class-advanced-ads.php:561
133
+ msgctxt "ad group singular name"
134
+ msgid "Ad Group"
135
+ msgstr ""
136
+
137
+ #: classes/ad-debug.php:130
138
+ msgid "Placement"
139
+ msgstr ""
140
+
141
+ #: classes/ad-debug.php:154 admin/includes/class-meta-box.php:65
142
+ msgid "Display Conditions"
143
+ msgstr ""
144
+
145
+ #: classes/ad-debug.php:237 admin/includes/class-meta-box.php:68
146
+ msgid "Visitor Conditions"
147
+ msgstr ""
148
+
149
  #: classes/ad_placements.php:31
150
  msgid "Manual Placement"
151
  msgstr ""
208
  msgstr ""
209
 
210
  #: classes/ad_placements.php:214
211
+ #, php-format
212
  msgid "paragraph (%s)"
213
  msgstr ""
214
 
215
  #: classes/ad_placements.php:215
216
+ #, php-format
217
  msgid "paragraph without image (%s)"
218
  msgstr ""
219
 
220
  #: classes/ad_placements.php:216
221
+ #, php-format
222
  msgid "headline 2 (%s)"
223
  msgstr ""
224
 
225
  #: classes/ad_placements.php:217
226
+ #, php-format
227
  msgid "headline 3 (%s)"
228
  msgstr ""
229
 
230
  #: classes/ad_placements.php:218
231
+ #, php-format
232
  msgid "headline 4 (%s)"
233
  msgstr ""
234
 
275
  msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
276
  msgstr ""
277
 
278
+ #: classes/checks.php:242
279
+ #, php-format
280
  msgid ""
281
  "Possible conflict between jQueryUI library, used by Advanced Ads and other "
282
  "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead "
310
  msgstr ""
311
 
312
  #: classes/display-conditions.php:111
313
+ #, php-format
314
  msgid "archive: %s"
315
  msgstr ""
316
 
317
+ #: classes/display-conditions.php:204 classes/display-conditions.php:257
318
  #: classes/display-conditions.php:310 classes/display-conditions.php:385
319
  msgid "show"
320
  msgstr ""
321
 
322
+ #: classes/display-conditions.php:205 classes/display-conditions.php:258
323
  #: classes/display-conditions.php:311 classes/display-conditions.php:386
324
  msgid "hide"
325
  msgstr ""
326
 
327
+ #: classes/display-conditions.php:228 classes/display-conditions.php:272
328
  #: classes/display-conditions.php:360
329
  msgctxt "Error message shown when no display condition term is selected"
330
  msgid "Please select some items."
411
  msgid "allow ads in Feed"
412
  msgstr ""
413
 
414
+ #: classes/EDD_SL_Plugin_Updater.php:196
415
+ #, php-format
416
  msgid ""
417
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
418
  msgstr ""
419
 
420
+ #: classes/EDD_SL_Plugin_Updater.php:204
421
+ #, php-format
422
  msgid ""
423
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
424
  "or %5$supdate now%6$s."
425
  msgstr ""
426
 
427
+ #: classes/EDD_SL_Plugin_Updater.php:358
428
+ msgid "You do not have permission to install plugin updates"
429
+ msgstr ""
430
+
431
+ #: classes/EDD_SL_Plugin_Updater.php:358
432
+ msgid "Error"
433
+ msgstr ""
434
+
435
+ #: classes/frontend_checks.php:40
436
  msgid "Ad Health"
437
  msgstr ""
438
 
439
+ #: classes/frontend_checks.php:47
440
  msgid "jQuery not in header"
441
  msgstr ""
442
 
443
+ #: classes/frontend_checks.php:59
444
  msgid "Ad blocker enabled"
445
  msgstr ""
446
 
447
+ #: classes/frontend_checks.php:73
448
+ #, php-format
449
  msgid "<em>%s</em> filter does not exist"
450
  msgstr ""
451
 
452
+ #: classes/frontend_checks.php:90
453
  msgid "Ads are disabled on this page"
454
  msgstr ""
455
 
456
+ #: classes/frontend_checks.php:104
457
  msgid "Ads are disabled in the content of this page"
458
  msgstr ""
459
 
460
+ #: classes/frontend_checks.php:117
461
  msgid "the current post ID is 0 "
462
  msgstr ""
463
 
464
+ #: classes/frontend_checks.php:132
465
  msgid "Ads are disabled on 404 pages"
466
  msgstr ""
467
 
468
+ #: classes/frontend_checks.php:146
469
  msgid "Ads are disabled on non singular pages"
470
  msgstr ""
471
 
472
+ #: classes/frontend_checks.php:160
473
+ #: modules/import-export/classes/XmlEncoder.php:61
474
+ #: modules/import-export/classes/XmlEncoder.php:64
475
+ #: modules/import-export/classes/XmlEncoder.php:193
476
+ #: modules/import-export/classes/XmlEncoder.php:196
477
+ #, php-format
478
+ msgid "The %s extension(s) is not loaded"
479
+ msgstr ""
480
+
481
+ #: classes/frontend_checks.php:174
482
  msgid "Everything is fine"
483
  msgstr ""
484
 
485
+ #: classes/frontend_checks.php:185
486
+ msgid "debug DFP ads"
487
+ msgstr ""
488
+
489
+ #: classes/frontend_checks.php:196
490
+ msgid "highlight ads"
491
+ msgstr ""
492
+
493
  #: classes/visitor-conditions.php:32
494
  msgid "mobile device"
495
  msgstr ""
570
  msgid "--empty--"
571
  msgstr ""
572
 
573
+ #: classes/widget.php:69 admin/includes/class-menu.php:72
574
+ #: admin/includes/class-shortcode-creator.php:91 admin/views/placements.php:19
575
  #: modules/import-export/views/page.php:25
576
  msgid "Placements"
577
  msgstr ""
578
 
579
+ #: classes/widget.php:76 admin/includes/class-menu.php:67
580
+ #: admin/includes/class-shortcode-creator.php:84 admin/views/placements.php:76
581
  #: admin/views/placements.php:182
582
  msgid "Ad Groups"
583
  msgstr ""
584
 
585
+ #: classes/widget.php:83 public/class-advanced-ads.php:597
586
+ #: admin/includes/class-menu.php:56 admin/includes/class-menu.php:56
587
+ #: admin/includes/class-shortcode-creator.php:77
588
+ #: admin/views/ad-group-list-form-row.php:28
589
+ #: admin/views/ad-group-list-header.php:5 admin/views/placements.php:83
590
  #: admin/views/placements.php:189 modules/import-export/views/page.php:23
591
  msgid "Ads"
592
  msgstr ""
593
 
594
+ #: public/class-advanced-ads.php:316
595
  msgid "Advanced Ads Error following:"
596
  msgstr ""
597
 
598
+ #: public/class-advanced-ads.php:319
599
+ #, php-format
600
  msgid "Advanced Ads Error: %s"
601
  msgstr ""
602
 
603
+ #: public/class-advanced-ads.php:560
604
  msgctxt "ad group general name"
605
  msgid "Ad Groups"
606
  msgstr ""
607
 
608
+ #: public/class-advanced-ads.php:562
 
 
 
 
 
609
  msgid "Search Ad Groups"
610
  msgstr ""
611
 
612
+ #: public/class-advanced-ads.php:563
613
  msgid "All Ad Groups"
614
  msgstr ""
615
 
616
+ #: public/class-advanced-ads.php:564
617
  msgid "Parent Ad Groups"
618
  msgstr ""
619
 
620
+ #: public/class-advanced-ads.php:565
621
  msgid "Parent Ad Groups:"
622
  msgstr ""
623
 
624
+ #: public/class-advanced-ads.php:566
625
  msgid "Edit Ad Group"
626
  msgstr ""
627
 
628
+ #: public/class-advanced-ads.php:567
629
  msgid "Update Ad Group"
630
  msgstr ""
631
 
632
+ #: public/class-advanced-ads.php:568
633
  msgid "Add New Ad Group"
634
  msgstr ""
635
 
636
+ #: public/class-advanced-ads.php:569
637
  msgid "New Ad Groups Name"
638
  msgstr ""
639
 
640
+ #: public/class-advanced-ads.php:570 admin/includes/class-menu.php:67
641
  #: modules/import-export/views/page.php:24
642
  msgid "Groups"
643
  msgstr ""
644
 
645
+ #: public/class-advanced-ads.php:571
646
  msgid "No Ad Group found"
647
  msgstr ""
648
 
649
+ #: public/class-advanced-ads.php:599 public/class-advanced-ads.php:603
 
 
 
 
650
  #: admin/includes/class-menu.php:62 admin/views/ad-group-list-form-row.php:45
651
  msgid "New Ad"
652
  msgstr ""
653
 
654
+ #: public/class-advanced-ads.php:600 admin/includes/class-menu.php:62
655
  msgid "Add New Ad"
656
  msgstr ""
657
 
658
+ #: public/class-advanced-ads.php:601
659
+ #: admin/includes/class-ad-groups-list.php:302
660
+ #: modules/import-export/classes/import.php:143
661
+ #: modules/import-export/classes/import.php:183
662
  #: modules/import-export/classes/import.php:559
663
  msgid "Edit"
664
  msgstr ""
665
 
666
+ #: public/class-advanced-ads.php:602
667
  msgid "Edit Ad"
668
  msgstr ""
669
 
670
+ #: public/class-advanced-ads.php:604
671
  msgid "View"
672
  msgstr ""
673
 
674
+ #: public/class-advanced-ads.php:605
675
  msgid "View the Ad"
676
  msgstr ""
677
 
678
+ #: public/class-advanced-ads.php:606
679
  msgid "Search Ads"
680
  msgstr ""
681
 
682
+ #: public/class-advanced-ads.php:607
683
  msgid "No Ads found"
684
  msgstr ""
685
 
686
+ #: public/class-advanced-ads.php:608
687
  msgid "No Ads found in Trash"
688
  msgstr ""
689
 
690
+ #: public/class-advanced-ads.php:609
691
  msgid "Parent Ad"
692
  msgstr ""
693
 
694
+ #: public/class-advanced-ads.php:721
695
  msgctxt "label above ads"
696
  msgid "Advertisements"
697
  msgstr ""
700
  msgid "Ad weight"
701
  msgstr ""
702
 
703
+ #: admin/includes/class-ad-groups-list.php:173
704
  #: admin/views/ad-list-timing-column.php:4
705
+ #, php-format
706
  msgid "starts %s"
707
  msgstr ""
708
 
709
+ #: admin/includes/class-ad-groups-list.php:192
710
  #: admin/views/ad-list-timing-column.php:21
711
+ #, php-format
712
  msgid "expires %s"
713
  msgstr ""
714
 
715
+ #: admin/includes/class-ad-groups-list.php:194
716
  #: admin/views/ad-list-timing-column.php:23
717
+ #, php-format
718
  msgid "<strong>expired</strong> %s"
719
  msgstr ""
720
 
723
  msgstr ""
724
 
725
  #: admin/includes/class-ad-groups-list.php:209
726
+ #, php-format
727
  msgid "up to %d ads displayed"
728
  msgstr ""
729
 
785
 
786
  #. translators: %s: date and time of the revision
787
  #: admin/includes/class-ad-type.php:490
788
+ #, php-format
789
  msgid "Ad restored to revision from %s"
790
  msgstr ""
791
 
794
  msgstr ""
795
 
796
  #: admin/includes/class-ad-type.php:491
797
+ #, php-format
798
  msgid ""
799
  "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
800
  msgstr ""
808
  msgstr ""
809
 
810
  #: admin/includes/class-ad-type.php:495
811
+ #, php-format
812
  msgid "Ad scheduled for: <strong>%1$s</strong>."
813
  msgstr ""
814
 
849
  msgid "Advanced Ads Intro"
850
  msgstr ""
851
 
852
+ #: admin/includes/class-menu.php:205 admin/includes/class-menu.php:232
 
 
 
 
 
 
 
 
 
 
 
 
853
  msgid "Sorry, you are not allowed to access this feature."
854
  msgstr ""
855
 
856
+ #: admin/includes/class-menu.php:218
857
  msgid ""
858
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
859
  "deleted?"
871
  msgid "Layout / Output"
872
  msgstr ""
873
 
874
+ #: admin/includes/class-meta-box.php:125 admin/includes/class-meta-box.php:136
875
+ #: admin/includes/class-meta-box.php:141 admin/includes/class-settings.php:409
 
 
 
 
 
 
 
 
876
  #: admin/views/ad-output-metabox.php:51
877
  msgid "Manual"
878
  msgstr ""
898
  msgstr ""
899
 
900
  #: admin/includes/class-meta-box.php:330
901
+ #, php-format
902
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
903
  msgstr ""
904
 
915
  msgstr ""
916
 
917
  #: admin/includes/class-notices.php:412
918
+ #, php-format
919
  msgid ""
920
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
921
  "target=\"_blank\">this form</a> to sign up."
927
  msgstr ""
928
 
929
  #: admin/includes/class-notices.php:435
930
+ #, php-format
931
  msgid ""
932
  "Please check your email (%s) for the confirmation message. If you didn’t "
933
  "receive one or want to use another email address then please use <a "
974
  msgid "Ad Slider"
975
  msgstr ""
976
 
977
+ #: admin/includes/class-overview-widgets.php:67
978
+ msgid "Selling Ads"
979
+ msgstr ""
980
+
981
  #: admin/includes/class-overview-widgets.php:86
982
  msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
983
  msgstr ""
992
  "and Advanced Ads from the dedicated newsletter group."
993
  msgstr ""
994
 
995
+ #: admin/includes/class-overview-widgets.php:95 admin/includes/notices.php:30
996
+ #: admin/views/intro.php:73 admin/views/notices/inline.php:3
997
  #: admin/views/notices/subscribe.php:3
998
  msgid "Subscribe me now"
999
  msgstr ""
1034
  msgstr ""
1035
 
1036
  #: admin/includes/class-overview-widgets.php:153
1037
+ #, php-format
1038
  msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
1039
  msgstr ""
1040
 
1041
  #: admin/includes/class-overview-widgets.php:154
1042
+ #, php-format
1043
  msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
1044
  msgstr ""
1045
 
1046
  #: admin/includes/class-overview-widgets.php:155
1047
+ #, php-format
1048
  msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
1049
  msgstr ""
1050
 
1051
  #: admin/includes/class-overview-widgets.php:156
1052
+ #, php-format
1053
  msgid ""
1054
  "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
1055
  "href=\"%s\" target=\"_blank\">wordpress.org</a>"
1062
  msgstr ""
1063
 
1064
  #: admin/includes/class-overview-widgets.php:166
1065
+ #, php-format
1066
  msgid "Help with ads on %s"
1067
  msgstr ""
1068
 
1185
  msgstr ""
1186
 
1187
  #: admin/includes/class-overview-widgets.php:258
1188
+ msgid ""
1189
+ "Let advertisers purchase ad space directly on the frontend of your site."
1190
  msgstr ""
1191
 
1192
  #: admin/includes/class-overview-widgets.php:260
1284
  msgstr ""
1285
 
1286
  #: admin/includes/class-settings.php:268
1287
+ #, php-format
1288
  msgid ""
1289
  "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
1290
  "here</a>). Some features and add-ons might override this setting if they "
1313
  msgstr ""
1314
 
1315
  #: admin/includes/class-settings.php:313
1316
+ #, php-format
1317
  msgid ""
1318
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
1319
  "impressions for bots when using the <a href=\"%s\" target=\"_blank\">"
1358
  msgstr ""
1359
 
1360
  #: admin/includes/class-settings.php:391
1361
+ #, php-format
1362
  msgid ""
1363
  "You can assign different ad-related roles on a user basis with <a "
1364
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1373
  msgstr ""
1374
 
1375
  #: admin/includes/notices.php:9
1376
+ #, php-format
1377
  msgid ""
1378
  "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1379
  "Steps</a>."
1412
  msgstr ""
1413
 
1414
  #: admin/includes/notices.php:41
1415
+ #, php-format
1416
  msgid "Please add valid license keys <a href=\"%s\">here</a>."
1417
  msgstr ""
1418
 
1419
  #: admin/includes/notices.php:47
1420
+ #, php-format
1421
  msgid ""
1422
  "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1423
  "soon</strong>. Don’t risk to lose support and updates and renew your license "
1426
  msgstr ""
1427
 
1428
  #: admin/includes/notices.php:53
1429
+ #, php-format
1430
  msgid ""
1431
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1432
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1434
  msgstr ""
1435
 
1436
  #: admin/includes/notices.php:59
1437
+ #, php-format
1438
  msgid ""
1439
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1440
  "review-image\"/>You are using <strong>Advanced Ads</strong> for some time "
1446
  msgstr ""
1447
 
1448
  #: admin/includes/notices.php:65
1449
+ #, php-format
1450
  msgid ""
1451
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1452
  "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1472
  msgid "Set Display Conditions to allow or hide the ad on specific pages."
1473
  msgstr ""
1474
 
1475
+ #: admin/views/ad-display-metabox.php:8
1476
  #: admin/views/notices/jqueryui_error.php:2
1477
+ #, php-format
1478
  msgid ""
1479
  "There might be a problem with layouts and scripts in your dashboard. Please "
1480
  "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1500
  msgid "-- choose a condition --"
1501
  msgstr ""
1502
 
1503
+ #: admin/views/ad-display-metabox.php:77
1504
+ #: admin/views/ad-group-list-form-row.php:52
1505
  #: admin/views/ad-visitor-metabox.php:42
1506
  msgid "add"
1507
  msgstr ""
1527
  msgid "Description"
1528
  msgstr ""
1529
 
1530
+ #: admin/views/ad-group-list-form-row.php:7 admin/views/placements.php:24
1531
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:47
1532
  msgid "Type"
1533
  msgstr ""
1553
  msgid "Details"
1554
  msgstr ""
1555
 
1556
+ #: admin/views/ad-group-list-row.php:8 admin/views/ad-group.php:63
1557
  #: admin/views/ad-info.php:3 admin/views/placements.php:61
1558
  msgid "shortcode"
1559
  msgstr ""
1560
 
1561
+ #: admin/views/ad-group-list-row.php:11 admin/views/ad-group.php:66
1562
  #: admin/views/placements.php:64
1563
  msgid "template"
1564
  msgstr ""
1565
 
1566
  #: admin/views/ad-group-list-row.php:14
1567
+ #, php-format
1568
  msgid ""
1569
  "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1570
  "manual</a>."
1571
  msgstr ""
1572
 
1573
  #: admin/views/ad-group-list-row.php:19
1574
+ #, php-format
1575
  msgid "Type: %s"
1576
  msgstr ""
1577
 
1578
  #: admin/views/ad-group-list-row.php:20
1579
+ #, php-format
1580
  msgid "ID: %s"
1581
  msgstr ""
1582
 
1585
  msgstr ""
1586
 
1587
  #: admin/views/ad-group.php:46
1588
+ #, php-format
1589
  msgid "Search results for &#8220;%s&#8221;"
1590
  msgstr ""
1591
 
1602
  msgstr ""
1603
 
1604
  #: admin/views/ad-group.php:62
1605
+ #, php-format
1606
  msgid ""
1607
  "Examples on how to display an ad group? Find more help and examples in the "
1608
  "<a href=\"%s\" target=\"_blank\">manual</a>"
1636
  msgstr ""
1637
 
1638
  #: admin/views/ad-info-top.php:5
1639
+ #, php-format
1640
  msgid ""
1641
  "Congratulations! Your ad is now visible in the frontend. You can adjust the "
1642
  "placement options <a href=\"%s\">here</a>."
1675
  msgstr ""
1676
 
1677
  #: admin/views/ad-info-top.php:53
1678
+ #, php-format
1679
  msgid "Or use the shortcode %s to insert the ad into the content manually."
1680
  msgstr ""
1681
 
1682
  #: admin/views/ad-info-top.php:54
1683
+ #, php-format
1684
  msgid ""
1685
  "Learn more about your choices to display an ad in the <a href=\"%s\" "
1686
  "target=\"_blank\">manual</a>."
1709
  msgstr ""
1710
 
1711
  #: admin/views/ad-info.php:2
1712
+ #, php-format
1713
  msgid "Ad Id: %s"
1714
  msgstr ""
1715
 
1718
  msgstr ""
1719
 
1720
  #: admin/views/ad-info.php:7
1721
+ #, php-format
1722
  msgid ""
1723
  "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1724
  msgstr ""
1852
  msgstr ""
1853
 
1854
  #: admin/views/ad-parameters-metabox.php:31
1855
+ #, php-format
1856
  msgid "Reach out to <a href=\"%s\">support</a> to get help."
1857
  msgstr ""
1858
 
1877
  msgstr ""
1878
 
1879
  #: admin/views/ad-submitbox-meta.php:16
1880
+ #, php-format
1881
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1882
  msgid "%1$s-%2$s"
1883
  msgstr ""
1884
 
1885
  #: admin/views/ad-submitbox-meta.php:29
1886
+ #, php-format
1887
  msgctxt ""
1888
  "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1889
  msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1902
  msgstr ""
1903
 
1904
  #: admin/views/ad-visitor-metabox.php:30
1905
+ #, php-format
1906
  msgid ""
1907
  "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
1908
  "Pro</a> if dynamic features get cached."
1909
  msgstr ""
1910
 
1911
  #: admin/views/ad-visitor-metabox.php:47
1912
+ #, php-format
1913
  msgid ""
1914
  "Define the exact browser width for which an ad should be visible using the "
1915
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1960
  msgstr ""
1961
 
1962
  #: admin/views/feedback_disable.php:8
1963
+ #, php-format
1964
  msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1965
  msgstr ""
1966
 
2038
  msgstr ""
2039
 
2040
  #: admin/views/intro.php:79
2041
+ #, php-format
2042
  msgid ""
2043
  "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a>"
2044
  " or watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> "
2082
  msgstr ""
2083
 
2084
  #: admin/views/placements.php:16
2085
+ #, php-format
2086
  msgid ""
2087
  "See also the manual for more information on <a href=\"%s\">placements</a>."
2088
  msgstr ""
2092
  msgstr ""
2093
 
2094
  #: admin/views/placements.php:44
2095
+ #, php-format
2096
  msgid ""
2097
  "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
2098
  "check if the responsible add-on is activated."
2163
  msgstr ""
2164
 
2165
  #: admin/views/placements.php:154
2166
+ #, php-format
2167
  msgid ""
2168
  "Placement types define where the ad is going to be displayed. Learn more "
2169
  "about the different types from the <a href=\"%s\">manual</a>"
2212
  msgstr ""
2213
 
2214
  #: admin/views/setting-license.php:6
2215
+ #, php-format
2216
  msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
2217
  msgstr ""
2218
 
2219
  #: admin/views/setting-license.php:18
2220
+ #, php-format
2221
  msgid "(%d days left)"
2222
  msgstr ""
2223
 
2225
  msgid "License key"
2226
  msgstr ""
2227
 
2228
+ #: admin/views/setting-license.php:42
2229
  msgid "License key invalid"
2230
  msgstr ""
2231
 
2232
+ #: admin/views/setting-license.php:45
2233
  msgid "active"
2234
  msgstr ""
2235
 
2275
  msgid "Save settings on this page"
2276
  msgstr ""
2277
 
2278
+ #: admin/views/settings.php:48 modules/import-export/main.php:15
2279
  #: modules/import-export/main.php:15
2280
  msgid "Import &amp; Export"
2281
  msgstr ""
2297
  msgstr ""
2298
 
2299
  #: admin/views/support.php:8
 
 
 
 
2300
  msgid ""
2301
  "Please fix the red highlighted issues on this page or try to understand "
2302
  "their consequences before contacting support."
2303
  msgstr ""
2304
 
2305
+ #: admin/views/support.php:12
2306
+ #, php-format
2307
  msgid ""
2308
  "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2309
  "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2310
  "Please ask your hosting provider for more information."
2311
  msgstr ""
2312
 
2313
+ #: admin/views/support.php:15
2314
+ #, php-format
2315
  msgid ""
2316
  "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2317
  "rotation or visitor conditions might not work properly. Use the cache-"
2319
  "load ads dynamically."
2320
  msgstr ""
2321
 
2322
+ #: admin/views/support.php:18
2323
  msgid ""
2324
  "There is a <strong>new WordPress version available</strong>. Please update."
2325
  msgstr ""
2326
 
2327
+ #: admin/views/support.php:21
2328
  msgid "There are <strong>plugin updates available</strong>. Please update."
2329
  msgstr ""
2330
 
2331
+ #: admin/views/support.php:30
2332
+ #, php-format
2333
  msgid ""
2334
  "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2335
  "site performance, it is known to alter code, including scripts from ad "
2337
  "in support for Autoptimize."
2338
  msgstr ""
2339
 
2340
+ #: admin/views/support.php:33
2341
+ #, php-format
2342
  msgid ""
2343
  "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2344
  "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2345
  msgstr ""
2346
 
2347
+ #: admin/views/support.php:36
2348
+ #, php-format
2349
  msgid ""
2350
  "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2351
  "href=\"%s\">settings</a>."
2352
  msgstr ""
2353
 
2354
+ #: admin/views/support.php:47
2355
+ msgid "Possible Issues"
2356
+ msgstr ""
2357
+
2358
  #: admin/views/support.php:49
2359
+ msgid "Ads not showing up"
2360
  msgstr ""
2361
 
2362
  #: admin/views/support.php:50
2363
+ msgid "Purchase & Licenses"
 
 
2364
  msgstr ""
2365
 
2366
+ #: admin/views/support.php:51
2367
+ msgid "General Issues"
2368
  msgstr ""
2369
 
2370
+ #: admin/views/support.php:52
2371
+ msgid "Issues with Add-Ons"
2372
  msgstr ""
2373
 
2374
+ #: admin/views/support.php:54
2375
  msgid ""
2376
+ "Use the following form to search for solutions in the manual on "
2377
+ "wpadvancedads.com"
 
 
 
 
 
 
 
 
 
 
 
 
2378
  msgstr ""
2379
 
2380
+ #: admin/views/support.php:57
2381
+ msgid "search"
2382
  msgstr ""
2383
 
2384
+ #: admin/views/support.php:59
2385
+ #, php-format
2386
+ msgid ""
2387
+ "Take a look at more common issues or contact us directly through the <a "
2388
+ "href=\"%s\" target=\"_blank\">support page</a>."
2389
  msgstr ""
2390
 
2391
  #: modules/gadsense/main.php:19
2396
  msgid "MarketPress Bundle License"
2397
  msgstr ""
2398
 
2399
+ #: modules/marketpress-license/admin.php:67
2400
  #: modules/marketpress-license/admin.php:70
2401
  msgid ""
2402
  "Enter your key here, if you have purchased the bundle through MarketPress."
2408
  "."
2409
  msgstr ""
2410
 
2411
+ #: public/views/ad-debug.php:18
2412
+ msgid "Ad debug output"
2413
+ msgstr ""
2414
+
2415
+ #: public/views/ad-debug.php:20
2416
+ msgid "Find solutions in the manual"
2417
+ msgstr ""
2418
+
2419
  #: admin/views/notices/adblock.php:3
2420
  msgid ""
2421
  "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2435
  msgstr ""
2436
 
2437
  #: modules/ad-blocker/admin/admin.php:286
2438
+ #, php-format
2439
  msgid "Unable to rename \"%s\" directory"
2440
  msgstr ""
2441
 
2442
+ #: modules/ad-blocker/admin/admin.php:302
2443
+ #: modules/ad-blocker/admin/admin.php:315
2444
  #: modules/ad-blocker/admin/admin.php:332
2445
+ #, php-format
2446
  msgid "Unable to copy assets to the \"%s\" directory"
2447
  msgstr ""
2448
 
2449
+ #: modules/ad-blocker/admin/admin.php:366
2450
  #: modules/ad-blocker/admin/admin.php:386
2451
+ #, php-format
2452
  msgid "We do not have direct write access to the \"%s\" directory"
2453
  msgstr ""
2454
 
2455
  #: modules/ad-blocker/admin/admin.php:453
2456
+ #, php-format
2457
  msgid ""
2458
  "Unable to create \"%s\" directory. Is its parent directory writable by the "
2459
  "server?"
2460
  msgstr ""
2461
 
2462
  #: modules/ad-blocker/admin/admin.php:464
2463
+ #, php-format
2464
  msgid "Unable to copy files to %s"
2465
  msgstr ""
2466
 
2470
  "files (.js, .css)."
2471
  msgstr ""
2472
 
2473
+ #: modules/gadsense/admin/admin.php:26
2474
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:51
2475
  msgid "Responsive"
2476
  msgstr ""
2503
  msgstr ""
2504
 
2505
  #: modules/gadsense/admin/admin.php:169
2506
+ #, php-format
2507
  msgid ""
2508
  "Please enter your Publisher ID in order to use AdSense on your page. See the "
2509
  "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2514
  msgstr ""
2515
 
2516
  #: modules/gadsense/admin/admin.php:195
2517
+ #, php-format
2518
  msgid "Limit to %d AdSense ads"
2519
  msgstr ""
2520
 
2542
  "AdSense Help</a> (requires AdSense-login) for more information"
2543
  msgstr ""
2544
 
2545
+ #: modules/gadsense/admin/admin.php:238
2546
  #: modules/gadsense/includes/class-ad-type-adsense.php:73
2547
  msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2548
  msgstr ""
2567
  msgid "Please enter XML content"
2568
  msgstr ""
2569
 
2570
+ #: modules/import-export/classes/import.php:144
2571
  #: modules/import-export/classes/import.php:560
2572
+ #, php-format
2573
  msgid "New attachment created <em>%s</em> %s"
2574
  msgstr ""
2575
 
2576
  #: modules/import-export/classes/import.php:176
2577
+ #, php-format
2578
  msgid "Failed to import <em>%s</em>"
2579
  msgstr ""
2580
 
2581
  #: modules/import-export/classes/import.php:184
2582
+ #, php-format
2583
  msgid "New ad created: <em>%s</em> %s"
2584
  msgstr ""
2585
 
2586
  #: modules/import-export/classes/import.php:227
2587
+ #, php-format
2588
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2589
  msgstr ""
2590
 
2591
  #: modules/import-export/classes/import.php:289
2592
+ #, php-format
2593
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2594
  msgstr ""
2595
 
2596
  #: modules/import-export/classes/import.php:291
2597
+ #, php-format
2598
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2599
  msgstr ""
2600
 
2601
  #: modules/import-export/classes/import.php:356
2602
+ #, php-format
2603
  msgid "Placement <em>%s</em> created"
2604
  msgstr ""
2605
 
2606
  #: modules/import-export/classes/import.php:471
2607
+ #, php-format
2608
  msgid "Option was updated: <em>%s</em>"
2609
  msgstr ""
2610
 
2611
  #: modules/import-export/classes/import.php:474
2612
+ #, php-format
2613
  msgid "Option already exists: <em>%s</em>"
2614
  msgstr ""
2615
 
2616
  #: modules/import-export/classes/import.php:496
2617
+ #, php-format
2618
  msgid "Failed to create import directory <em>%s</em>"
2619
  msgstr ""
2620
 
2621
  #: modules/import-export/classes/import.php:501
2622
+ #, php-format
2623
  msgid "Import directory is not writable: <em>%s</em>"
2624
  msgstr ""
2625
 
2630
  msgstr ""
2631
 
2632
  #: modules/import-export/classes/import.php:519
2633
+ #, php-format
2634
  msgid "Failed to upload file, error: <em>%s</em>"
2635
  msgstr ""
2636
 
2639
  msgstr ""
2640
 
2641
  #: modules/import-export/classes/import.php:529
2642
+ #, php-format
2643
  msgid ""
2644
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2645
  "problem"
2646
  msgstr ""
2647
 
2648
  #: modules/import-export/classes/import.php:602
2649
+ #, php-format
2650
  msgid "Invalid filetype <em>%s</em>"
2651
  msgstr ""
2652
 
2653
+ #: modules/import-export/classes/import.php:607
2654
+ #: modules/import-export/classes/import.php:614
2655
+ #: modules/import-export/classes/import.php:622
2656
  #: modules/import-export/classes/import.php:637
2657
+ #, php-format
2658
  msgid "Error getting remote image <em>%s</em>"
2659
  msgstr ""
2660
 
2661
  #: modules/import-export/classes/import.php:631
2662
+ #, php-format
2663
  msgid "Zero size file downloaded <em>%s</em>"
2664
  msgstr ""
2665
 
2666
+ #: modules/import-export/classes/XmlEncoder.php:75
 
 
 
 
 
2667
  msgctxt "import_export"
2668
  msgid "The data must be an array"
2669
  msgstr ""
2670
 
2671
+ #: modules/import-export/classes/XmlEncoder.php:103
2672
+ #, php-format
2673
  msgctxt "import_export"
2674
  msgid "The key %s is not valid"
2675
  msgstr ""
2676
 
2677
+ #: modules/import-export/classes/XmlEncoder.php:149
2678
+ #, php-format
2679
  msgctxt "import_export"
2680
  msgid "An unexpected value could not be serialized: %s"
2681
  msgstr ""
2682
 
2683
+ #: modules/import-export/classes/XmlEncoder.php:201
2684
  msgctxt "import_export"
2685
  msgid "Invalid XML data, it can not be empty"
2686
  msgstr ""
2687
 
2688
+ #: modules/import-export/classes/XmlEncoder.php:223
2689
+ #, php-format
2690
  msgctxt "import_export"
2691
  msgid "XML error: %s"
2692
  msgstr ""
2742
  msgstr ""
2743
 
2744
  #: modules/ad-blocker/admin/views/rebuild_form.php:43
2745
+ #, php-format
2746
  msgid ""
2747
  "Please, rebuild the asset folder. All assets will be located in <strong>"
2748
  "%s</strong>"
2761
  msgstr ""
2762
 
2763
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:32
2764
+ #, php-format
2765
  msgid "Publisher ID: %s"
2766
  msgstr ""
2767
 
2768
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:44
2769
+ #, php-format
2770
  msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2771
  msgstr ""
2772
 
2775
  msgstr ""
2776
 
2777
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:56
2778
+ #, php-format
2779
  msgid ""
2780
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2781
  "define the exact size for each browser width or choose between horizontal, "
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id
4
  Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.6.1
7
- Stable tag: 1.7.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -206,6 +206,16 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
206
 
207
  == Changelog ==
208
 
 
 
 
 
 
 
 
 
 
 
209
  = 1.7.10 =
210
 
211
  * highlight ads in the frontend through the "Ad Health" options
4
  Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.6.1
7
+ Stable tag: 1.7.11
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
206
 
207
  == Changelog ==
208
 
209
+ = 1.7.11 =
210
+
211
+ * added filter to change General display conditions set
212
+ * set `ADVANCED_ADS_AD_DEBUG_FOR_ADMIN_ONLY` in order to allow only admins to see ad debug mode
213
+ * introduced `advanced-ads-output-final` filter
214
+ * only check once per day for add-on updates
215
+ * fixed one support link
216
+ * fixed multiple add-on update checks
217
+ * fixed error message when ad group is empty
218
+
219
  = 1.7.10 =
220
 
221
  * highlight ads in the frontend through the "Ad Health" options