Advanced Ads - Version 1.8.1

Version Description

  • added support for new AdSense InFeed and InArticle ad codes
  • create a new ad group on group page
  • add group wrapper even if the group was not edited on the group edit page
  • add the 'advanced-ads-output-wrapper-after-content-group' filter
  • removed unused MarketPress license code
  • removed debug page
  • removed license expires notice
  • updated composer
  • updated translation files
  • fixed issue with inheriting settings of ad group ad type
  • removed PHP notice in Import feature
Download this release

Release Info

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

Code changes from version 1.8 to 1.8.1

Files changed (84) hide show
  1. admin/assets/css/admin.css +4 -1
  2. admin/assets/js/admin-global.js +6 -0
  3. admin/assets/js/admin.js +16 -15
  4. admin/class-advanced-ads-admin.php +1 -1
  5. admin/includes/class-ad-groups-list.php +51 -1
  6. admin/includes/class-ad-type.php +5 -5
  7. admin/includes/class-licenses.php +1 -1
  8. admin/includes/class-menu.php +0 -17
  9. admin/includes/class-notices.php +2 -11
  10. admin/includes/class-settings.php +1 -1
  11. admin/includes/notices.php +0 -6
  12. admin/views/ad-group-edit.php +4 -4
  13. admin/views/ad-group.php +36 -18
  14. admin/views/ad-info-bottom.php +1 -1
  15. admin/views/ad-parameters-size.php +2 -2
  16. admin/views/ad-submitbox-meta.php +5 -5
  17. admin/views/debug.php +0 -13
  18. admin/views/feedback-disable.php +2 -1
  19. admin/views/notices/adblock.php +1 -1
  20. admin/views/placements.php +2 -2
  21. admin/views/setting-license.php +15 -6
  22. admin/views/settings.php +0 -1
  23. advanced-ads.php +2 -2
  24. classes/ad.php +1 -1
  25. classes/ad_ajax_callbacks.php +6 -4
  26. classes/ad_group.php +3 -2
  27. classes/ad_type_dummy.php +4 -5
  28. classes/ad_type_group.php +1 -5
  29. classes/ad_type_image.php +1 -1
  30. classes/filesystem.php +2 -6
  31. classes/frontend_checks.php +1 -1
  32. classes/visitor-conditions.php +2 -2
  33. classes/widget.php +1 -1
  34. composer.lock +12 -5
  35. includes/array_ad_conditions.php +24 -24
  36. languages/advanced-ads-es_ES.mo +0 -0
  37. languages/advanced-ads-es_ES.po +314 -157
  38. languages/advanced-ads-fr_FR.mo +0 -0
  39. languages/advanced-ads-fr_FR.po +311 -151
  40. languages/advanced-ads-it_IT.mo +0 -0
  41. languages/advanced-ads-it_IT.po +308 -144
  42. languages/advanced-ads-nl_NL.mo +0 -0
  43. languages/advanced-ads-nl_NL.po +309 -151
  44. languages/advanced-ads-pt_BR.mo +0 -0
  45. languages/advanced-ads-pt_BR.po +314 -155
  46. languages/advanced-ads-vi.mo +0 -0
  47. languages/advanced-ads-vi.po +314 -156
  48. languages/advanced-ads.pot +309 -145
  49. modules/gadsense/admin/assets/js/new-ad.js +53 -4
  50. modules/gadsense/admin/views/adsense-ad-parameters.php +11 -0
  51. modules/gadsense/includes/class-ad-type-adsense.php +21 -2
  52. modules/import-export/classes/import.php +2 -1
  53. modules/import-export/views/page.php +3 -3
  54. modules/marketpress-license/admin.php +0 -78
  55. modules/marketpress-license/config.php +0 -19
  56. modules/marketpress-license/main.php +0 -176
  57. public/assets/js/advanced.js +1 -1
  58. public/assets/js/advanced.orig.js +16 -4
  59. readme.txt +15 -1
  60. vendor/autoload_52.php +1 -1
  61. vendor/composer/autoload_real_52.php +3 -3
  62. vendor/composer/installed.json +46 -39
  63. vendor/composer/installers/CHANGELOG.md +60 -0
  64. vendor/composer/installers/CONTRIBUTING.md +24 -0
  65. vendor/composer/installers/README.md +15 -21
  66. vendor/composer/installers/composer.json +7 -0
  67. vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php +0 -1
  68. vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php +3 -2
  69. vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php +9 -0
  70. vendor/composer/installers/src/Composer/Installers/Installer.php +8 -0
  71. vendor/composer/installers/src/Composer/Installers/ItopInstaller.php +9 -0
  72. vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php +18 -0
  73. vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php +10 -0
  74. vendor/composer/installers/src/Composer/Installers/MayaInstaller.php +33 -0
  75. vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php +1 -0
  76. vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php +24 -0
  77. vendor/composer/installers/src/Composer/Installers/PortoInstaller.php +9 -0
  78. vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php +49 -0
  79. vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php +49 -0
  80. vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php +18 -2
  81. vendor/composer/installers/tests/Composer/Installers/Test/MayaInstallerTest.php +61 -0
  82. vendor/composer/installers/tests/Composer/Installers/Test/OntoWikiInstallerTest.php +85 -0
  83. vendor/composer/installers/tests/Composer/Installers/Test/SyDESInstallerTest.php +81 -0
  84. vendor/composer/installers/tests/Composer/Installers/Test/VgmcpInstallerTest.php +79 -0
admin/assets/css/admin.css CHANGED
@@ -242,7 +242,7 @@ fieldset.advads-group-add-ad { margin-top: 1em; }
242
  .advads-placements-table { min-width: 80%; border-collapse: collapse; background: #fff; }
243
  .advads-placements-table tbody tr { border-top: 1px solid #ddd; }
244
  .advads-placements-table tbody tr td:first-child { width: 70px; }
245
- /* .advads-placements-table tbody tr td:nth-child(2) { width: 100px; }*/
246
  .advads-placements-table tbody tr td:nth-child(2) { font-size: 1.2em; }
247
  .advads-placements-table tbody tr td:last-child { width: 70px; }
248
  .advads-placements-table th { margin: 0; padding: 10px; text-align: left; vertical-align: top; }
@@ -352,3 +352,6 @@ tr:hover .on-hover { display: block; }
352
 
353
  /* Hide 'New Ad' in menu */
354
  .wp-submenu li a[href="post-new.php?post_type=advanced_ads"] { display:none !important; }
 
 
 
242
  .advads-placements-table { min-width: 80%; border-collapse: collapse; background: #fff; }
243
  .advads-placements-table tbody tr { border-top: 1px solid #ddd; }
244
  .advads-placements-table tbody tr td:first-child { width: 70px; }
245
+ .advads-placements-table tbody tr td:nth-child(2) { width: 140px; }
246
  .advads-placements-table tbody tr td:nth-child(2) { font-size: 1.2em; }
247
  .advads-placements-table tbody tr td:last-child { width: 70px; }
248
  .advads-placements-table th { margin: 0; padding: 10px; text-align: left; vertical-align: top; }
352
 
353
  /* Hide 'New Ad' in menu */
354
  .wp-submenu li a[href="post-new.php?post_type=advanced_ads"] { display:none !important; }
355
+
356
+ /* Filesystem */
357
+ #advanced-ads-rfc-dialog .cancel-button { display: inline; }
admin/assets/js/admin-global.js CHANGED
@@ -73,6 +73,12 @@ jQuery( document ).ready(function () {
73
  // send form or close it
74
  jQuery('#advanced-ads-feedback-content .button').click(function ( e ) {
75
  e.preventDefault();
 
 
 
 
 
 
76
  // set cookie for 30 days
77
  var exdate = new Date();
78
  exdate.setSeconds( exdate.getSeconds() + 2592000 );
73
  // send form or close it
74
  jQuery('#advanced-ads-feedback-content .button').click(function ( e ) {
75
  e.preventDefault();
76
+ // check if "other" text field has content, or show error
77
+ if( 'other' === jQuery( '#advanced-ads-feedback-content input[type="radio"]:checked' ).val() &&
78
+ '' === jQuery( '.advanced_ads_disable_other_text' ).val() ){
79
+ jQuery( '.advanced_ads_disable_other_text' ).css( 'border-color', 'red' ).focus();
80
+ return false;
81
+ }
82
  // set cookie for 30 days
83
  var exdate = new Date();
84
  exdate.setSeconds( exdate.getSeconds() + 2592000 );
admin/assets/js/admin.js CHANGED
@@ -203,6 +203,12 @@ jQuery( document ).ready(function ($) {
203
  $(this).parents('.advads-conditions-table tr').remove();
204
  });
205
 
 
 
 
 
 
 
206
  // display ad groups form
207
  $( '#advads-ad-group-list a.edit, #advads-ad-group-list a.row-title' ).click(function(e){
208
  e.preventDefault();
@@ -312,7 +318,7 @@ jQuery( document ).ready(function ($) {
312
  addon: this.dataset.addon,
313
  pluginname: this.dataset.pluginname,
314
  optionslug: this.dataset.optionslug,
315
- license: $(this).siblings('.advads-license-key').val(),
316
  security: $('#advads-licenses-ajax-referrer').val()
317
  };
318
 
@@ -323,19 +329,20 @@ jQuery( document ).ready(function ($) {
323
  $.post(ajaxurl, query, function (r) {
324
  // remove spinner
325
  $('span.spinner').remove();
 
326
 
327
  if( r === '1' ){
328
- button.siblings('.advads-license-activate-error').remove();
329
- button.siblings('.advads-license-deactivate').show();
330
  button.fadeOut();
331
- button.siblings('.advads-license-activate-active').fadeIn();
332
- button.siblings('input').prop('readonly', 'readonly');
333
  } else if( r === 'ex' ){
334
- button.siblings('.advads-license-activate-error').remove();
335
- button.siblings('.advads-license-expired-error').show();
336
  button.show();
337
  } else {
338
- button.siblings('.advads-license-activate-error').show().text( r );
339
  button.show();
340
  }
341
  });
@@ -547,12 +554,6 @@ jQuery( document ).ready(function ($) {
547
  jQuery( '#advads_xml_content' ).hide();
548
  }
549
  });
550
- // prevent click on "new ad group" button, but show message instead
551
- jQuery( '.advanced-ads_page_advanced-ads-groups .add-new-h2' ).click( function( e ){
552
- e.preventDefault();
553
- jQuery('.advads-create-new-group-text').css({'border': 'solid 1px red', 'padding': '10px', 'font-weight': 'bold'});
554
-
555
- });
556
  });
557
 
558
  /**
@@ -858,7 +859,7 @@ advanced_ads_admin.filesystem = {
858
  this._init = function() {}
859
  var self = this;
860
 
861
- self.$filesystemModal = jQuery( '#request-filesystem-credentials-dialog' );
862
  /**
863
  * Sends saved job.
864
  */
203
  $(this).parents('.advads-conditions-table tr').remove();
204
  });
205
 
206
+ // display new ad group form
207
+ $( '#advads-new-ad-group-link' ).click(function(e){
208
+ e.preventDefault();
209
+ $( '#advads-new-group-form' ).show().find('input[type="text"]').focus();
210
+ });
211
+
212
  // display ad groups form
213
  $( '#advads-ad-group-list a.edit, #advads-ad-group-list a.row-title' ).click(function(e){
214
  e.preventDefault();
318
  addon: this.dataset.addon,
319
  pluginname: this.dataset.pluginname,
320
  optionslug: this.dataset.optionslug,
321
+ license: $(this).parents('td').find('.advads-license-key').val(),
322
  security: $('#advads-licenses-ajax-referrer').val()
323
  };
324
 
329
  $.post(ajaxurl, query, function (r) {
330
  // remove spinner
331
  $('span.spinner').remove();
332
+ var parent = button.parents('td');
333
 
334
  if( r === '1' ){
335
+ parent.find('.advads-license-activate-error').remove();
336
+ parent.find('.advads-license-deactivate').show();
337
  button.fadeOut();
338
+ parent.find('.advads-license-activate-active').fadeIn();
339
+ parent.find('input').prop('readonly', 'readonly');
340
  } else if( r === 'ex' ){
341
+ parent.find('.advads-license-activate-error').remove();
342
+ parent.find('.advads-license-expired-error').show();
343
  button.show();
344
  } else {
345
+ parent.find('.advads-license-activate-error').show().text( r );
346
  button.show();
347
  }
348
  });
554
  jQuery( '#advads_xml_content' ).hide();
555
  }
556
  });
 
 
 
 
 
 
557
  });
558
 
559
  /**
859
  this._init = function() {}
860
  var self = this;
861
 
862
+ self.$filesystemModal = jQuery( '#advanced-ads-rfc-dialog' );
863
  /**
864
  * Sends saved job.
865
  */
admin/class-advanced-ads-admin.php CHANGED
@@ -398,7 +398,7 @@ class Advanced_Ads_Admin {
398
 
399
  $from = isset( $form['advanced_ads_disable_from'] ) ? $form['advanced_ads_disable_from'] : '';
400
  // if an address is given in the form then use that one
401
- if( isset( $form['advanced_ads_disable_reason'] ) && 'technical issue' === $form['advanced_ads_disable_reason']
402
  && isset( $form[ 'advanced_ads_disable_reply' ] ) && !empty( $form[ 'advanced_ads_disable_reply_email' ] ) ){
403
  $from = $current_user->user_nicename . ' <' . trim( $form[ 'advanced_ads_disable_reply_email' ] ) . '>';
404
  $text .= "\n\n REPLY ALLOWED";
398
 
399
  $from = isset( $form['advanced_ads_disable_from'] ) ? $form['advanced_ads_disable_from'] : '';
400
  // if an address is given in the form then use that one
401
+ if( isset( $form['advanced_ads_disable_reason'] ) && in_array( $form['advanced_ads_disable_reason'], array( 'technical issue', 'get help' ) )
402
  && isset( $form[ 'advanced_ads_disable_reply' ] ) && !empty( $form[ 'advanced_ads_disable_reply_email' ] ) ){
403
  $from = $current_user->user_nicename . ' <' . trim( $form[ 'advanced_ads_disable_reply_email' ] ) . '>';
404
  $text .= "\n\n REPLY ALLOWED";
admin/includes/class-ad-groups-list.php CHANGED
@@ -315,7 +315,7 @@ class Advanced_Ads_Groups_List {
315
  'group_id' => $group->id
316
  );
317
  $delete_link = self::group_page_url( $args );
318
- $actions['delete'] = "<a class='delete-tag' href='" . wp_nonce_url( $delete_link, 'delete-tag_' . $group->id ) . "'>" . __( 'Delete' ) . '</a>';
319
  }
320
 
321
  if ( ! count( $actions ) ) { return; }
@@ -326,6 +326,56 @@ class Advanced_Ads_Groups_List {
326
  }
327
  echo '</div>';
328
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
329
 
330
  /**
331
  * bulk update groups
315
  'group_id' => $group->id
316
  );
317
  $delete_link = self::group_page_url( $args );
318
+ $actions['delete'] = "<a class='delete-tag' href='" . wp_nonce_url( $delete_link, 'delete-tag_' . $group->id ) . "'>" . __( 'Delete', 'advanced-ads' ) . '</a>';
319
  }
320
 
321
  if ( ! count( $actions ) ) { return; }
326
  }
327
  echo '</div>';
328
  }
329
+
330
+ /**
331
+ * create a new group
332
+ *
333
+ */
334
+ public function create_group(){
335
+ // check nonce
336
+ if ( ! isset( $_POST['advads-group-add-nonce'] )
337
+ || ! wp_verify_nonce( $_POST['advads-group-add-nonce'], 'add-advads-groups' ) ){
338
+
339
+ return new WP_Error( 'invalid_ad_group', __( 'Invalid Ad Group', 'advanced-ads' ) );
340
+ }
341
+
342
+ // check user rights
343
+ if( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads') ) ) {
344
+ return new WP_Error( 'invalid_ad_group_rights', __( 'You don’t have permission to change the ad groups', 'advanced-ads' ) );
345
+ }
346
+
347
+ if ( isset($_POST['advads-group-name']) && '' !== $_POST['advads-group-name'] ){
348
+
349
+ $title = sanitize_text_field( $_POST['advads-group-name'] );
350
+ $new_group = wp_create_term( $title, Advanced_Ads::AD_GROUP_TAXONOMY );
351
+
352
+ if( is_wp_error($new_group ) ){
353
+ return $new_group;
354
+ }
355
+
356
+ // save default values
357
+ if( is_array( $new_group ) ){
358
+ $group = new Advanced_Ads_Group( $new_group['term_id'] );
359
+
360
+ // allow other add-ons to save their own group attributes
361
+ $atts = apply_filters( 'advanced-ads-group-save-atts', array(
362
+ 'type' => 'default',
363
+ 'ad_count' => 0,
364
+ 'options' => array(),
365
+ ), $group);
366
+
367
+ $group->save( $atts );
368
+ }
369
+
370
+ // reload groups
371
+ $this->load_groups();
372
+
373
+ } else {
374
+ return new WP_Error( 'no_ad_group_created', __( 'No ad group created', 'advanced-ads' ) );
375
+ }
376
+
377
+ return true;
378
+ }
379
 
380
  /**
381
  * bulk update groups
admin/includes/class-ad-type.php CHANGED
@@ -219,11 +219,11 @@ class Advanced_Ads_Admin_Ad_Type {
219
  $post = get_post();
220
 
221
  $messages[Advanced_Ads::POST_TYPE_SLUG] = array(
222
- 'updated' => _n( '%s ad updated.', '%s ads updated.', $counts['updated'] ),
223
- 'locked' => _n( '%s ad not updated, somebody is editing it.', '%s ads not updated, somebody is editing them.', $counts['locked'] ),
224
- 'deleted' => _n( '%s ad permanently deleted.', '%s ads permanently deleted.', $counts['deleted'] ),
225
- 'trashed' => _n( '%s ad moved to the Trash.', '%s ads moved to the Trash.', $counts['trashed'] ),
226
- 'untrashed' => _n( '%s ad restored from the Trash.', '%s ads restored from the Trash.', $counts['untrashed'] ),
227
  );
228
 
229
  return $messages;
219
  $post = get_post();
220
 
221
  $messages[Advanced_Ads::POST_TYPE_SLUG] = array(
222
+ 'updated' => _n( '%s ad updated.', '%s ads updated.', $counts['updated'], 'advanced-ads' ),
223
+ 'locked' => _n( '%s ad not updated, somebody is editing it.', '%s ads not updated, somebody is editing them.', $counts['locked'], 'advanced-ads' ),
224
+ 'deleted' => _n( '%s ad permanently deleted.', '%s ads permanently deleted.', $counts['deleted'], 'advanced-ads' ),
225
+ 'trashed' => _n( '%s ad moved to the Trash.', '%s ads moved to the Trash.', $counts['trashed'], 'advanced-ads' ),
226
+ 'untrashed' => _n( '%s ad restored from the Trash.', '%s ads restored from the Trash.', $counts['untrashed'], 'advanced-ads' ),
227
  );
228
 
229
  return $messages;
admin/includes/class-licenses.php CHANGED
@@ -155,7 +155,7 @@ class Advanced_Ads_Admin_Licenses {
155
  if( isset($errors[ $license_data->error ] ) ) {
156
  return $error;
157
  } else {
158
- return sprintf( __('License is invalid. Reason: %s'), $error);
159
  }
160
  }
161
  } else {
155
  if( isset($errors[ $license_data->error ] ) ) {
156
  return $error;
157
  } else {
158
+ return sprintf( __( 'License is invalid. Reason: %s', 'advanced-ads' ), $error);
159
  }
160
  }
161
  } else {
admin/includes/class-menu.php CHANGED
@@ -78,9 +78,6 @@ class Advanced_Ads_Admin_Menu {
78
  Advanced_Ads_Admin::get_instance()->plugin_screen_hook_suffix = add_submenu_page(
79
  $this->plugin_slug, __( 'Advanced Ads Settings', 'advanced-ads' ), __( 'Settings', 'advanced-ads' ), Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options'), $this->plugin_slug . '-settings', array($this, 'display_plugin_settings_page')
80
  );
81
- add_submenu_page(
82
- 'options.php', __( 'Advanced Ads Debugging', 'advanced-ads' ), __( 'Debug', 'advanced-ads' ), Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options'), $this->plugin_slug . '-debug', array($this, 'display_plugin_debug_page')
83
- );
84
  // add support page
85
  add_submenu_page(
86
  $this->plugin_slug, __( 'Support', 'advanced-ads' ), __( 'Support', 'advanced-ads' ), Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options'), $this->plugin_slug . '-support', array($this, 'display_support_page')
@@ -144,20 +141,6 @@ class Advanced_Ads_Admin_Menu {
144
  include ADVADS_BASE_PATH . 'admin/views/placements.php';
145
  }
146
 
147
- /**
148
- * Render the debug page
149
- *
150
- * @since 1.0.1
151
- */
152
- public function display_plugin_debug_page() {
153
- // load array with ads by condition
154
- $plugin = Advanced_Ads::get_instance();
155
- $plugin_options = $plugin->options();
156
- $ad_placements = Advanced_Ads::get_ad_placements_array(); // -TODO use model
157
-
158
- include ADVADS_BASE_PATH . 'admin/views/debug.php';
159
- }
160
-
161
  /**
162
  * Render the support page
163
  *
78
  Advanced_Ads_Admin::get_instance()->plugin_screen_hook_suffix = add_submenu_page(
79
  $this->plugin_slug, __( 'Advanced Ads Settings', 'advanced-ads' ), __( 'Settings', 'advanced-ads' ), Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options'), $this->plugin_slug . '-settings', array($this, 'display_plugin_settings_page')
80
  );
 
 
 
81
  // add support page
82
  add_submenu_page(
83
  $this->plugin_slug, __( 'Support', 'advanced-ads' ), __( 'Support', 'advanced-ads' ), Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options'), $this->plugin_slug . '-support', array($this, 'display_support_page')
141
  include ADVADS_BASE_PATH . 'admin/views/placements.php';
142
  }
143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  /**
145
  * Render the support page
146
  *
admin/includes/class-notices.php CHANGED
@@ -168,8 +168,8 @@ class Advanced_Ads_Admin_Notices {
168
  if ( ! $this->is_subscribed() && ! in_array( 'nl_free_addons', $queue ) && ! isset( $closed['nl_free_addons'] )) {
169
  $this->notices[] = 'nl_free_addons';
170
  }
171
- // ask for a review after 30 days
172
- if ( 2592000 < ( time() - $activation) && ! in_array( 'review', $queue ) && ! isset( $closed['review'] )) {
173
  $this->notices[] = 'review';
174
  }
175
  }
@@ -195,15 +195,6 @@ class Advanced_Ads_Admin_Notices {
195
  $this->remove_from_queue( 'license_invalid' );
196
  }
197
 
198
- // check expiring licenses
199
- if ( Advanced_Ads_Checks::licenses_expire() ){
200
- if( ! in_array( 'license_expires', $queue )) {
201
- $this->notices[] = 'license_expires';
202
- }
203
- } else {
204
- $this->remove_from_queue( 'license_expires' );
205
- }
206
-
207
  // check expired licenses
208
  if ( Advanced_Ads_Checks::licenses_expired() ){
209
  if( ! in_array( 'license_expired', $queue )) {
168
  if ( ! $this->is_subscribed() && ! in_array( 'nl_free_addons', $queue ) && ! isset( $closed['nl_free_addons'] )) {
169
  $this->notices[] = 'nl_free_addons';
170
  }
171
+ // ask for a review after 5 days
172
+ if ( 432000 < ( time() - $activation) && ! in_array( 'review', $queue ) && ! isset( $closed['review'] )) {
173
  $this->notices[] = 'review';
174
  }
175
  }
195
  $this->remove_from_queue( 'license_invalid' );
196
  }
197
 
 
 
 
 
 
 
 
 
 
198
  // check expired licenses
199
  if ( Advanced_Ads_Checks::licenses_expired() ){
200
  if( ! in_array( 'license_expired', $queue )) {
admin/includes/class-settings.php CHANGED
@@ -436,7 +436,7 @@ class Advanced_Ads_Admin_Settings {
436
  $options = Advanced_Ads::get_instance()->options();
437
 
438
  $enabled = isset( $options['custom-label']['enabled'] );
439
- $label = ! empty ( $options['custom-label']['text'] ) ? esc_html( $options['custom-label']['text'] ) : _x( 'Advertisements', 'label before ads' );
440
  ?>
441
 
442
  <fieldset>
436
  $options = Advanced_Ads::get_instance()->options();
437
 
438
  $enabled = isset( $options['custom-label']['enabled'] );
439
+ $label = ! empty ( $options['custom-label']['text'] ) ? esc_html( $options['custom-label']['text'] ) : _x( 'Advertisements', 'label before ads', 'advanced-ads' );
440
  ?>
441
 
442
  <fieldset>
admin/includes/notices.php CHANGED
@@ -41,12 +41,6 @@ $advanced_ads_admin_notices = apply_filters( 'advanced-ads-notices', array(
41
  'text' => __( 'One or more license keys for <strong>Advanced Ads add-ons are invalid or missing</strong>.', 'advanced-ads' ) . ' ' . sprintf( __( 'Please add valid license keys <a href="%s">here</a>.', 'advanced-ads' ), get_admin_url( 1, 'admin.php?page=advanced-ads-settings#top#licenses' ) ),
42
  'global' => true
43
  ),
44
- // license expires
45
- 'license_expires' => array(
46
- 'type' => 'plugin_error',
47
- 'text' => sprintf( __( 'One or more licenses for your <strong>Advanced Ads add-ons are expiring soon</strong>. Don’t risk to lose support and updates and renew your license before it expires with a significant discount on <a href="%s" target="_blank">the add-on page</a>.', 'advanced-ads' ), admin_url( 'admin.php?page=advanced-ads-settings#top#licenses' ) ),
48
- 'global' => true
49
- ),
50
  // license expired
51
  'license_expired' => array(
52
  'type' => 'plugin_error',
41
  'text' => __( 'One or more license keys for <strong>Advanced Ads add-ons are invalid or missing</strong>.', 'advanced-ads' ) . ' ' . sprintf( __( 'Please add valid license keys <a href="%s">here</a>.', 'advanced-ads' ), get_admin_url( 1, 'admin.php?page=advanced-ads-settings#top#licenses' ) ),
42
  'global' => true
43
  ),
 
 
 
 
 
 
44
  // license expired
45
  'license_expired' => array(
46
  'type' => 'plugin_error',
admin/views/ad-group-edit.php CHANGED
@@ -11,7 +11,7 @@ if ( ! defined( 'ABSPATH' ) ) {
11
 
12
  if ( ! is_int( $group_id ) ) {
13
  ?>
14
- <div id="message" class="updated"><p><strong><?php _e( 'You did not select an item for editing.' ); ?></strong></p></div>
15
  <?php
16
  return;
17
  }
@@ -30,19 +30,19 @@ do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy );
30
  wp_nonce_field( 'update-group_' . $group_id ); ?>
31
  <table class="form-table">
32
  <tr class="form-field form-required">
33
- <th scope="row" valign="top"><label for="name"><?php _ex( 'Name', 'Taxonomy Name' ); ?></label></th>
34
  <td><input name="name" id="name" type="text" value="<?php if ( isset($tag->name) ) { echo esc_attr( $tag->name ); } ?>" size="40" aria-required="true" /></td>
35
  </tr>
36
  <?php if ( ! global_terms_enabled() ) { ?>
37
  <tr class="form-field">
38
- <th scope="row" valign="top"><label for="slug"><?php _ex( 'Slug', 'Taxonomy Slug' ); ?></label></th>
39
  <td><input name="slug" id="slug" type="text" value="<?php if ( isset($tag->slug) ) { echo esc_attr( apply_filters( 'editable_slug', $tag->slug ) ); } ?>" size="40" />
40
  <p class="description"><?php _e( 'An id-like string with only letters in lower case, numbers, and hyphens.', 'advanced-ads' ); ?></p></td>
41
  </tr>
42
  <?php }
43
  $text = (isset($tag->description)) ? $tag->description : ''; ?>
44
  <tr class="form-field">
45
- <th scope="row" valign="top"><label for="description"><?php _ex( 'Description', 'Taxonomy Description' ); ?></label></th>
46
  <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $text; // textarea_escaped ?></textarea></td>
47
  </tr>
48
  <?php
11
 
12
  if ( ! is_int( $group_id ) ) {
13
  ?>
14
+ <div id="message" class="updated"><p><strong><?php _e( 'You did not select an item for editing.', 'advanced-ads' ); ?></strong></p></div>
15
  <?php
16
  return;
17
  }
30
  wp_nonce_field( 'update-group_' . $group_id ); ?>
31
  <table class="form-table">
32
  <tr class="form-field form-required">
33
+ <th scope="row" valign="top"><label for="name"><?php _ex( 'Name', 'Taxonomy Name', 'advanced-ads' ); ?></label></th>
34
  <td><input name="name" id="name" type="text" value="<?php if ( isset($tag->name) ) { echo esc_attr( $tag->name ); } ?>" size="40" aria-required="true" /></td>
35
  </tr>
36
  <?php if ( ! global_terms_enabled() ) { ?>
37
  <tr class="form-field">
38
+ <th scope="row" valign="top"><label for="slug"><?php _ex( 'Slug', 'Taxonomy Slug', 'advanced-ads' ); ?></label></th>
39
  <td><input name="slug" id="slug" type="text" value="<?php if ( isset($tag->slug) ) { echo esc_attr( apply_filters( 'editable_slug', $tag->slug ) ); } ?>" size="40" />
40
  <p class="description"><?php _e( 'An id-like string with only letters in lower case, numbers, and hyphens.', 'advanced-ads' ); ?></p></td>
41
  </tr>
42
  <?php }
43
  $text = (isset($tag->description)) ? $tag->description : ''; ?>
44
  <tr class="form-field">
45
+ <th scope="row" valign="top"><label for="description"><?php _ex( 'Description', 'Taxonomy Description', 'advanced-ads' ); ?></label></th>
46
  <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $text; // textarea_escaped ?></textarea></td>
47
  </tr>
48
  <?php
admin/views/ad-group.php CHANGED
@@ -7,6 +7,17 @@
7
  */
8
  $ad_groups_list = new Advanced_Ads_Groups_List();
9
 
 
 
 
 
 
 
 
 
 
 
 
10
  // save updated groups
11
  if ( isset($_REQUEST['advads-group-update-nonce']) ){
12
  $udpate_result = $ad_groups_list->update_groups();
@@ -40,17 +51,22 @@ if ( isset($_REQUEST['message']) && ( $msg = (int) $_REQUEST['message'] ) || iss
40
  ?>
41
 
42
  <div class="wrap nosubsub">
43
- <h1><?php
44
- echo esc_html( $title );
45
- if ( ! empty($_REQUEST['s']) ) {
46
- printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;', 'advanced-ads' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) );
47
- } else {
48
- echo ' <a href="' . Advanced_Ads_Groups_List::group_page_url( array('action' => 'edit') ) . '" class="add-new-h2">' . $tax->labels->add_new_item . '</a>';
49
- }
50
- ?>
51
- </h1>
 
 
 
 
 
52
  <p><?php _e( 'Ad Groups are a very flexible method to bundle ads. You can use them to display random ads in the frontend or run split tests, but also just for informational purposes. Not only can an Ad Groups have multiple ads, but an ad can belong to multiple ad groups.', 'advanced-ads' ); ?></p>
53
- <p class="advads-create-new-group-text"><?php _e( 'You can create a new group through the <em>Ad Groups</em> widget on the ad edit page.', 'advanced-ads' ); ?> <?php printf(__( 'Find more information about ad groups in the <a href="%s" target="_blank">manual</a>.', 'advanced-ads' ), ADVADS_URL . 'manual/ad-groups/#utm_source=advanced-ads&utm_medium=link&utm_campaign=groups' ); ?></p>
54
  <?php if ( isset($message) ) : ?>
55
  <div id="message" class="updated"><p><?php echo $message; ?></p></div>
56
  <?php
@@ -61,13 +77,13 @@ if ( isset($_REQUEST['message']) && ( $msg = (int) $_REQUEST['message'] ) || iss
61
 
62
  <div id="col-container">
63
  <div class="col-wrap">
64
- <form class="search-form" action="" method="get">
65
- <!--input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" /-->
66
- <input type="hidden" name="page" value="advanced-ads-groups" />
67
- <?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?>
68
-
69
- </form>
70
- <br class="clear" />
71
  <div id="advads-ad-group-list">
72
  <form action="" method="post">
73
  <?php wp_nonce_field( 'update-advads-groups', 'advads-group-update-nonce' ); ?>
@@ -76,7 +92,9 @@ if ( isset($_REQUEST['message']) && ( $msg = (int) $_REQUEST['message'] ) || iss
76
  <?php $ad_groups_list->render_rows(); ?>
77
  </table>
78
  <input type="hidden" name="advads-last-edited-group" id="advads-last-edited-group" value="0"/>
79
- <?php submit_button( __( 'Update Groups', 'advanced-ads' ) ); ?>
 
 
80
  </form>
81
  </div>
82
  </div>
7
  */
8
  $ad_groups_list = new Advanced_Ads_Groups_List();
9
 
10
+ // create new group
11
+ if ( isset($_REQUEST['advads-group-add-nonce']) ){
12
+ $create_result = $ad_groups_list->create_group();
13
+ // display error message
14
+ if ( is_wp_error( $create_result ) ){
15
+ $error_string = $create_result->get_error_message();
16
+ echo '<div id="message" class="error"><p>' . $error_string . '</p></div>';
17
+ } else {
18
+ echo '<div id="message" class="updated"><p>' . __( 'Ad Group successfully created', 'advanced-ads' ) . '</p></div>';
19
+ }
20
+ }
21
  // save updated groups
22
  if ( isset($_REQUEST['advads-group-update-nonce']) ){
23
  $udpate_result = $ad_groups_list->update_groups();
51
  ?>
52
 
53
  <div class="wrap nosubsub">
54
+ <h1 class="wp-heading-inline"><?php
55
+ echo esc_html( $title );
56
+ ?></h1><?php
57
+
58
+ if ( ! empty($_REQUEST['s']) ) {
59
+ printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;', 'advanced-ads' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) );
60
+ } else {
61
+ echo ' <a href="' . Advanced_Ads_Groups_List::group_page_url( array('action' => 'edit') ) . '" id="advads-new-ad-group-link" class="add-new-h2">' . $tax->labels->add_new_item . '</a>';
62
+ }
63
+ ?><form id="advads-new-group-form" action="" method="post" style="display:none;">
64
+ <?php wp_nonce_field( 'add-advads-groups', 'advads-group-add-nonce' ); ?>
65
+ <input type="text" name="advads-group-name" placeholder="<?php _e( 'Group title', 'advanced-ads' ); ?>"/>
66
+ <input class="button button-primary" type="submit" value="<?php _e( 'save', 'advanced-ads' ); ?>"/>
67
+ </form>
68
  <p><?php _e( 'Ad Groups are a very flexible method to bundle ads. You can use them to display random ads in the frontend or run split tests, but also just for informational purposes. Not only can an Ad Groups have multiple ads, but an ad can belong to multiple ad groups.', 'advanced-ads' ); ?></p>
69
+ <p><?php printf(__( 'Find more information about ad groups in the <a href="%s" target="_blank">manual</a>.', 'advanced-ads' ), ADVADS_URL . 'manual/ad-groups/#utm_source=advanced-ads&utm_medium=link&utm_campaign=groups' ); ?></p>
70
  <?php if ( isset($message) ) : ?>
71
  <div id="message" class="updated"><p><?php echo $message; ?></p></div>
72
  <?php
77
 
78
  <div id="col-container">
79
  <div class="col-wrap">
80
+ <div class="tablenav top">
81
+ <form class="search-form" action="" method="get">
82
+ <!--input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" /-->
83
+ <input type="hidden" name="page" value="advanced-ads-groups" />
84
+ <?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?>
85
+ </form>
86
+ </div>
87
  <div id="advads-ad-group-list">
88
  <form action="" method="post">
89
  <?php wp_nonce_field( 'update-advads-groups', 'advads-group-update-nonce' ); ?>
92
  <?php $ad_groups_list->render_rows(); ?>
93
  </table>
94
  <input type="hidden" name="advads-last-edited-group" id="advads-last-edited-group" value="0"/>
95
+ <div class="tablenav bottom">
96
+ <?php submit_button( __( 'Update Groups', 'advanced-ads' ) ); ?>
97
+ </div>
98
  </form>
99
  </div>
100
  </div>
admin/views/ad-info-bottom.php CHANGED
@@ -2,7 +2,7 @@
2
  <button type="button" id="advads-wizard-controls-prev" class="button button-secondary button-large"><span class="dashicons dashicons-controls-back"></span>&nbsp;<?php _ex( 'previous', 'wizard navigation', 'advanced-ads' ); ?></button>
3
  <input type="submit" id="advads-wizard-controls-save" class="button button-primary button-large" value="<?php _ex( 'save', 'wizard navigation', 'advanced-ads' ); ?>"/>
4
  <button type="button" id="advads-wizard-controls-next" class="button button-primary button-large"><?php _ex( 'next', 'wizard navigation', 'advanced-ads' ); ?>&nbsp;<span class="dashicons dashicons-controls-forward"></span></button>
5
- <p><a href="javascript:void(0)" class="advads-stop-wizard"><?php _ex( 'Stop Wizard and show all options', 'advanced-ads' ); ?></a></p>
6
  </div>
7
  <?php // start the wizard if it was never closed
8
  if( $this->start_wizard_automatically() ) : ?>
2
  <button type="button" id="advads-wizard-controls-prev" class="button button-secondary button-large"><span class="dashicons dashicons-controls-back"></span>&nbsp;<?php _ex( 'previous', 'wizard navigation', 'advanced-ads' ); ?></button>
3
  <input type="submit" id="advads-wizard-controls-save" class="button button-primary button-large" value="<?php _ex( 'save', 'wizard navigation', 'advanced-ads' ); ?>"/>
4
  <button type="button" id="advads-wizard-controls-next" class="button button-primary button-large"><?php _ex( 'next', 'wizard navigation', 'advanced-ads' ); ?>&nbsp;<span class="dashicons dashicons-controls-forward"></span></button>
5
+ <p><a href="javascript:void(0)" class="advads-stop-wizard"><?php _e( 'Stop Wizard and show all options', 'advanced-ads' ); ?></a></p>
6
  </div>
7
  <?php // start the wizard if it was never closed
8
  if( $this->start_wizard_automatically() ) : ?>
admin/views/ad-parameters-size.php CHANGED
@@ -1,7 +1,7 @@
1
  <span class="label"><?php _e( 'size', 'advanced-ads' ); ?></span>
2
  <div id="advanced-ads-ad-parameters-size">
3
- <label><?php _e( 'width', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->width) ? $ad->width : 0; ?>" name="advanced_ad[width]">px</label>
4
- <label><?php _e( 'height', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->height) ? $ad->height : 0; ?>" name="advanced_ad[height]">px</label>
5
  <?php
6
  $show_reserve_space = in_array( $type->ID, array( 'plain', 'content', 'group', 'adsense' ) );
7
  $enable_reserve_space = $show_reserve_space && ! empty( $ad->output['add_wrapper_sizes'] ); ?>
1
  <span class="label"><?php _e( 'size', 'advanced-ads' ); ?></span>
2
  <div id="advanced-ads-ad-parameters-size">
3
+ <label><?php _e( 'width', 'advanced-ads' ); ?><input type="number" value="<?php echo isset($ad->width) ? $ad->width : 0; ?>" name="advanced_ad[width]">px</label>
4
+ <label><?php _e( 'height', 'advanced-ads' ); ?><input type="number" value="<?php echo isset($ad->height) ? $ad->height : 0; ?>" name="advanced_ad[height]">px</label>
5
  <?php
6
  $show_reserve_space = in_array( $type->ID, array( 'plain', 'content', 'group', 'adsense' ) );
7
  $enable_reserve_space = $show_reserve_space && ! empty( $ad->output['add_wrapper_sizes'] ); ?>
admin/views/ad-submitbox-meta.php CHANGED
@@ -9,7 +9,7 @@ $TZ = Advanced_Ads_Admin::timezone_get_name( Advanced_Ads_Admin::get_wp_timezone
9
 
10
  <div class="inner" <?php if ( ! $enabled ) : ?>style="display:none;"<?php endif; ?>>
11
  <?php
12
- $month = '<label><span class="screen-reader-text">' . __( 'Month' ) . '</span><select id="advads-exp-mm" name="advanced_ad[expiry_date][month]"' . ">\n";
13
  for ( $i = 1; $i < 13; $i = $i + 1 ) {
14
  $monthnum = zeroise( $i, 2 );
15
  $month .= "\t\t\t" . '<option value="' . $monthnum . '" ' . selected( $curr_month, $monthnum, false ) . '>';
@@ -18,10 +18,10 @@ $TZ = Advanced_Ads_Admin::timezone_get_name( Advanced_Ads_Admin::get_wp_timezone
18
  }
19
  $month .= '</select></label>';
20
 
21
- $day = '<label><span class="screen-reader-text">' . __( 'Day' ) . '</span><input type="text" id="advads-exp-jj" name="advanced_ad[expiry_date][day]" value="' . $curr_day . '" size="2" maxlength="2" autocomplete="off" /></label>';
22
- $year = '<label><span class="screen-reader-text">' . __( 'Year' ) . '</span><input type="text" id="advads-exp-aa" name="advanced_ad[expiry_date][year]" value="' . $curr_year . '" size="4" maxlength="4" autocomplete="off" /></label>';
23
- $hour = '<label><span class="screen-reader-text">' . __( 'Hour' ) . '</span><input type="text" id="advads-exp-hh" name="advanced_ad[expiry_date][hour]" value="' . $curr_hour . '" size="2" maxlength="2" autocomplete="off" /></label>';
24
- $minute = '<label><span class="screen-reader-text">' . __( 'Minute' ) . '</span><input type="text" id="advads-exp-mn" name="advanced_ad[expiry_date][minute]" value="' . $curr_minute . '" size="2" maxlength="2" autocomplete="off" /></label>';
25
 
26
  ?>
27
  <fieldset id="advads-exp-timestampdiv">
9
 
10
  <div class="inner" <?php if ( ! $enabled ) : ?>style="display:none;"<?php endif; ?>>
11
  <?php
12
+ $month = '<label><span class="screen-reader-text">' . __( 'Month', 'advanced-ads' ) . '</span><select id="advads-exp-mm" name="advanced_ad[expiry_date][month]"' . ">\n";
13
  for ( $i = 1; $i < 13; $i = $i + 1 ) {
14
  $monthnum = zeroise( $i, 2 );
15
  $month .= "\t\t\t" . '<option value="' . $monthnum . '" ' . selected( $curr_month, $monthnum, false ) . '>';
18
  }
19
  $month .= '</select></label>';
20
 
21
+ $day = '<label><span class="screen-reader-text">' . __( 'Day', 'advanced-ads' ) . '</span><input type="text" id="advads-exp-jj" name="advanced_ad[expiry_date][day]" value="' . $curr_day . '" size="2" maxlength="2" autocomplete="off" /></label>';
22
+ $year = '<label><span class="screen-reader-text">' . __( 'Year', 'advanced-ads' ) . '</span><input type="text" id="advads-exp-aa" name="advanced_ad[expiry_date][year]" value="' . $curr_year . '" size="4" maxlength="4" autocomplete="off" /></label>';
23
+ $hour = '<label><span class="screen-reader-text">' . __( 'Hour', 'advanced-ads' ) . '</span><input type="text" id="advads-exp-hh" name="advanced_ad[expiry_date][hour]" value="' . $curr_hour . '" size="2" maxlength="2" autocomplete="off" /></label>';
24
+ $minute = '<label><span class="screen-reader-text">' . __( 'Minute', 'advanced-ads' ) . '</span><input type="text" id="advads-exp-mn" name="advanced_ad[expiry_date][minute]" value="' . $curr_minute . '" size="2" maxlength="2" autocomplete="off" /></label>';
25
 
26
  ?>
27
  <fieldset id="advads-exp-timestampdiv">
admin/views/debug.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * the view for the debug page
4
- */
5
- ?><div class="wrap">
6
- <h1><?php _e( 'Debug Page', 'advanced-ads' ); ?></h1>
7
- <p><?php _e( 'Work in progress', 'advanced-ads' ); ?></p>
8
-
9
- <h2><?php _e( 'Settings', 'advanced-ads' ); ?></h2>
10
- <pre><?php print_r( $plugin_options ); ?></pre>
11
-
12
- <?php do_action('advanced-ads-debug-after', $plugin_options); ?>
13
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/views/feedback-disable.php CHANGED
@@ -4,6 +4,7 @@
4
  <p><strong><?php _e('Why did you decide to disable Advanced Ads?', 'advanced-ads'); ?></strong></p>
5
  <ul>
6
  <li><label><input type="radio" name="advanced_ads_disable_reason" value="temporary"/><?php _e('It is only temporary', 'advanced-ads'); ?></label></li>
 
7
  <li class="advanced_ads_disable_technical_issue"><label><input type="radio" name="advanced_ads_disable_reason" value="technical issue"/><?php _e('I have a problem', 'advanced-ads'); ?></label></li>
8
  <li><textarea name="advanced_ads_disable_text[]" placeholder="<?php _e('Please let us know how we can help', 'advanced-ads'); ?>"></textarea></li>
9
  <?php if( $email ) : ?>
@@ -16,7 +17,7 @@
16
  <li><label><input type="radio" name="advanced_ads_disable_reason" value="other plugin"/><?php _e('I switched to another plugin', 'advanced-ads'); ?></label></li>
17
  <li><input type="text" name="advanced_ads_disable_text[]" value="" placeholder="<?php _e('Which one?', 'advanced-ads'); ?>"/></li>
18
  <li><label><input type="radio" name="advanced_ads_disable_reason" value="other"/><?php _e('other reason', 'advanced-ads'); ?></label></li>
19
- <li><textarea name="advanced_ads_disable_text[]" placeholder="<?php _e('Please specify, if possible', 'advanced-ads'); ?>"></textarea></li>
20
  </ul>
21
  <?php if ($from) : ?>
22
  <input type="hidden" name="advanced_ads_disable_from" value="<?php echo $from; ?>"/>
4
  <p><strong><?php _e('Why did you decide to disable Advanced Ads?', 'advanced-ads'); ?></strong></p>
5
  <ul>
6
  <li><label><input type="radio" name="advanced_ads_disable_reason" value="temporary"/><?php _e('It is only temporary', 'advanced-ads'); ?></label></li>
7
+ <li class="advanced_ads_disable_help"><label><input type="radio" name="advanced_ads_disable_reason" value="get help"/><?php _e('I need help to set it up', 'advanced-ads'); ?></label></li>
8
  <li class="advanced_ads_disable_technical_issue"><label><input type="radio" name="advanced_ads_disable_reason" value="technical issue"/><?php _e('I have a problem', 'advanced-ads'); ?></label></li>
9
  <li><textarea name="advanced_ads_disable_text[]" placeholder="<?php _e('Please let us know how we can help', 'advanced-ads'); ?>"></textarea></li>
10
  <?php if( $email ) : ?>
17
  <li><label><input type="radio" name="advanced_ads_disable_reason" value="other plugin"/><?php _e('I switched to another plugin', 'advanced-ads'); ?></label></li>
18
  <li><input type="text" name="advanced_ads_disable_text[]" value="" placeholder="<?php _e('Which one?', 'advanced-ads'); ?>"/></li>
19
  <li><label><input type="radio" name="advanced_ads_disable_reason" value="other"/><?php _e('other reason', 'advanced-ads'); ?></label></li>
20
+ <li><textarea class="advanced_ads_disable_other_text" name="advanced_ads_disable_text[]" placeholder="<?php _e('Please specify', 'advanced-ads'); ?>"></textarea></li>
21
  </ul>
22
  <?php if ($from) : ?>
23
  <input type="hidden" name="advanced_ads_disable_from" value="<?php echo $from; ?>"/>
admin/views/notices/adblock.php CHANGED
@@ -1,5 +1,5 @@
1
  <div class="advads-ad-block-check">
2
- <div class="message error" style="display: none;"><p><?php _e( 'Please disable your <strong>AdBlocker</strong> to prevent problems with your ad setup.', 'advanced-ads' ); ?></p></div>
3
  </div>
4
  <script>
5
  jQuery( document ).ready( function() {
1
  <div class="advads-ad-block-check">
2
+ <div class="message error update-message notice notice-alt notice-error" style="display: none;"><p><?php _e( 'Please disable your <strong>AdBlocker</strong> to prevent problems with your ad setup.', 'advanced-ads' ); ?></p></div>
3
  </div>
4
  <script>
5
  jQuery( document ).ready( function() {
admin/views/placements.php CHANGED
@@ -91,7 +91,7 @@
91
 
92
  Advanced_Ads_Admin_Options::render_option(
93
  'placement-content-injection-index',
94
- _x( 'position', 'advanced-ads' ),
95
  $option_content );
96
 
97
  if( ! function_exists( 'mb_convert_encoding' ) ) : ?>
@@ -116,7 +116,7 @@
116
 
117
  Advanced_Ads_Admin_Options::render_option(
118
  'placement-ad-label',
119
- _x( 'ad label', 'advanced-ads' ),
120
  $option_content );
121
 
122
  endif;
91
 
92
  Advanced_Ads_Admin_Options::render_option(
93
  'placement-content-injection-index',
94
+ __( 'position', 'advanced-ads' ),
95
  $option_content );
96
 
97
  if( ! function_exists( 'mb_convert_encoding' ) ) : ?>
116
 
117
  Advanced_Ads_Admin_Options::render_option(
118
  'placement-ad-label',
119
+ __( 'ad label', 'advanced-ads' ),
120
  $option_content );
121
 
122
  endif;
admin/views/setting-license.php CHANGED
@@ -3,7 +3,16 @@ $errortext = false;
3
  $expires = Advanced_Ads_Admin_Licenses::get_instance()->get_license_expires( $options_slug );
4
  $expired = false;
5
  $expired_error = __( 'Your license expired.', 'advanced-ads' );
6
- $expired_error .= $expired_renew_link = ' ' . sprintf(__( '<a href="%s" target="_blank">Renew it with a discount</a>.', 'advanced-ads' ), ADVADS_URL . 'checkout/?edd_license_key=' . esc_attr($license_key) . '#utm_source=advanced-ads&utm_medium=link&utm_campaign=settings-licenses' );
 
 
 
 
 
 
 
 
 
7
  if( 'lifetime' !== $expires ){
8
  $expires_time = strtotime( $expires );
9
  $days_left = ( $expires_time - time() ) / DAY_IN_SECONDS;
@@ -14,14 +23,14 @@ $expired_error .= $expired_renew_link = ' ' . sprintf(__( '<a href="%s" target="
14
  $plugin_url = isset( $plugin_url ) ? $plugin_url : ADVADS_URL;
15
  $errortext = $expired_error;
16
  $expired = true;
17
- } elseif ( 0 < $days_left && 91 > $days_left ){
18
- $errortext = sprintf( __('(%d days left)', 'advanced-ads' ), $days_left ) . $expired_renew_link;
19
  }
20
  $show_active = ( $license_status !== false && $license_status == 'valid' && ! $expired ) ? true : false;
21
 
22
  ?><input type="text" class="regular-text advads-license-key" placeholder="<?php _e( 'License key', 'advanced-ads' ); ?>"
23
  name="<?php echo ADVADS_SLUG . '-licenses'; ?>[<?php echo $index; ?>]"
24
- value="<?php esc_attr_e($license_key); ?>"
25
  <?php if( $license_status !== false && $license_status == 'valid' && ! $expired ) : ?> readonly="readonly"<?php endif; ?>/>
26
 
27
  <button type="button" class="button-secondary advads-license-deactivate"
@@ -29,13 +38,13 @@ $show_active = ( $license_status !== false && $license_status == 'valid' && ! $e
29
  data-addon="<?php echo $index; ?>"
30
  data-pluginname="<?php echo $plugin_name; ?>"
31
  data-optionslug="<?php echo $options_slug; ?>"
32
- name="advads_license_activate"><?php _e('Deactivate License'); ?></button>
33
 
34
  <button type="button" class="button-primary advads-license-activate"
35
  data-addon="<?php echo $index; ?>"
36
  data-pluginname="<?php echo $plugin_name; ?>"
37
  data-optionslug="<?php echo $options_slug; ?>"
38
- name="advads_license_activate"><?php echo ( $license_status === 'valid' && ! $expired ) ? __('Update License') : __('Activate License'); ?></button><?php
39
  if( '' === trim( $license_key ) ){
40
  $errortext = __('Please enter a valid license key', 'advanced-ads');
41
  } elseif( ! $expired && ! $errortext ){
3
  $expires = Advanced_Ads_Admin_Licenses::get_instance()->get_license_expires( $options_slug );
4
  $expired = false;
5
  $expired_error = __( 'Your license expired.', 'advanced-ads' );
6
+
7
+ ob_start();
8
+ ?><button type="button" class="button-secondary advads-license-activate"
9
+ data-addon="<?php echo $index; ?>"
10
+ data-pluginname="<?php echo $plugin_name; ?>"
11
+ data-optionslug="<?php echo $options_slug; ?>"
12
+ name="advads_license_activate"><?php _e('Update expiry date'); ?></button><?php
13
+ $update_button = ob_get_clean();
14
+
15
+ $expired_error .= $expired_renew_link = ' ' . sprintf(__( 'Click on %2$s if you renewed it or have a subscription or <a href="%1$s" target="_blank">renew your license with a discount</a>.', 'advanced-ads' ), ADVADS_URL . 'checkout/?edd_license_key=' . esc_attr($license_key) . '#utm_source=advanced-ads&utm_medium=link&utm_campaign=settings-licenses', $update_button );
16
  if( 'lifetime' !== $expires ){
17
  $expires_time = strtotime( $expires );
18
  $days_left = ( $expires_time - time() ) / DAY_IN_SECONDS;
23
  $plugin_url = isset( $plugin_url ) ? $plugin_url : ADVADS_URL;
24
  $errortext = $expired_error;
25
  $expired = true;
26
+ } elseif ( 0 < $days_left && 31 > $days_left ){
27
+ $errortext = sprintf( __('(%d days left)', 'advanced-ads' ), $days_left );
28
  }
29
  $show_active = ( $license_status !== false && $license_status == 'valid' && ! $expired ) ? true : false;
30
 
31
  ?><input type="text" class="regular-text advads-license-key" placeholder="<?php _e( 'License key', 'advanced-ads' ); ?>"
32
  name="<?php echo ADVADS_SLUG . '-licenses'; ?>[<?php echo $index; ?>]"
33
+ value="<?php echo esc_attr($license_key); ?>"
34
  <?php if( $license_status !== false && $license_status == 'valid' && ! $expired ) : ?> readonly="readonly"<?php endif; ?>/>
35
 
36
  <button type="button" class="button-secondary advads-license-deactivate"
38
  data-addon="<?php echo $index; ?>"
39
  data-pluginname="<?php echo $plugin_name; ?>"
40
  data-optionslug="<?php echo $options_slug; ?>"
41
+ name="advads_license_activate"><?php _e('Deactivate License', 'advanced-ads' ); ?></button>
42
 
43
  <button type="button" class="button-primary advads-license-activate"
44
  data-addon="<?php echo $index; ?>"
45
  data-pluginname="<?php echo $plugin_name; ?>"
46
  data-optionslug="<?php echo $options_slug; ?>"
47
+ name="advads_license_activate"><?php echo ( $license_status === 'valid' && ! $expired ) ? __('Update License', 'advanced-ads' ) : __('Activate License', 'advanced-ads'); ?></button><?php
48
  if( '' === trim( $license_key ) ){
49
  $errortext = __('Please enter a valid license key', 'advanced-ads');
50
  } elseif( ! $expired && ! $errortext ){
admin/views/settings.php CHANGED
@@ -47,7 +47,6 @@ $setting_tabs = apply_filters('advanced-ads-setting-tabs', array(
47
  <ul>
48
 
49
  <li><a href="<?php echo esc_url( admin_url( 'admin.php?page=advanced-ads-import-export' ) ); ?>"><?php _e( 'Import &amp; Export', 'advanced-ads' ); ?></a></li>
50
- <li><a href="<?php echo esc_url( admin_url( 'admin.php?page=advanced-ads-debug' ) ); ?>"><?php _e( 'Debug Page', 'advanced-ads' ); ?></a></li>
51
  <li><a href="http://wordpress.org/plugins/advanced-ads/" title="<?php _e( 'Advanced Ads on WordPress.org', 'advanced-ads' ); ?>"><?php _e( 'Advanced Ads on wp.org', 'advanced-ads' ); ?></a></li>
52
  <li><a href="http://webgilde.com" title="<?php _e( 'the company behind Advanced Ads', 'advanced-ads' ); ?>"><?php echo 'webgilde GmbH'; ?></a></li>
53
  </ul>
47
  <ul>
48
 
49
  <li><a href="<?php echo esc_url( admin_url( 'admin.php?page=advanced-ads-import-export' ) ); ?>"><?php _e( 'Import &amp; Export', 'advanced-ads' ); ?></a></li>
 
50
  <li><a href="http://wordpress.org/plugins/advanced-ads/" title="<?php _e( 'Advanced Ads on WordPress.org', 'advanced-ads' ); ?>"><?php _e( 'Advanced Ads on wp.org', 'advanced-ads' ); ?></a></li>
51
  <li><a href="http://webgilde.com" title="<?php _e( 'the company behind Advanced Ads', 'advanced-ads' ); ?>"><?php echo 'webgilde GmbH'; ?></a></li>
52
  </ul>
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.8
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.8' );
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.8.1
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
+ define( 'ADVADS_VERSION', '1.8.1' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
classes/ad.php CHANGED
@@ -302,7 +302,7 @@ class Advanced_Ads_Ad {
302
 
303
  // action when output is created
304
  do_action( 'advanced-ads-output', $this, $output, $output_options );
305
-
306
  return apply_filters( 'advanced-ads-output-final', $output, $this, $output_options );
307
  }
308
 
302
 
303
  // action when output is created
304
  do_action( 'advanced-ads-output', $this, $output, $output_options );
305
+
306
  return apply_filters( 'advanced-ads-output-final', $output, $this, $output_options );
307
  }
308
 
classes/ad_ajax_callbacks.php CHANGED
@@ -48,17 +48,19 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
48
  }
49
 
50
  $types = Advanced_Ads::get_instance()->ad_types;
51
- $type = $_REQUEST['ad_type'];
52
  $ad_id = absint( $_REQUEST['ad_id'] );
53
  if ( empty($ad_id) ) { die(); }
54
 
55
  $ad = new Advanced_Ads_Ad( $ad_id );
56
 
57
- if ( ! empty($types[$type]) && method_exists( $types[$type], 'render_parameters' ) ) {
58
- $type = $types[ $type ];
59
  $type->render_parameters( $ad );
60
 
61
- include ADVADS_BASE_PATH . 'admin/views/ad-parameters-size.php';
 
 
62
  }
63
 
64
  die();
48
  }
49
 
50
  $types = Advanced_Ads::get_instance()->ad_types;
51
+ $type_string = $_REQUEST['ad_type'];
52
  $ad_id = absint( $_REQUEST['ad_id'] );
53
  if ( empty($ad_id) ) { die(); }
54
 
55
  $ad = new Advanced_Ads_Ad( $ad_id );
56
 
57
+ if ( ! empty($types[$type_string]) && method_exists( $types[$type_string], 'render_parameters' ) ) {
58
+ $type = $types[ $type_string ];
59
  $type->render_parameters( $ad );
60
 
61
+ if( 'dummy' !== $type_string ) :
62
+ include ADVADS_BASE_PATH . 'admin/views/ad-parameters-size.php';
63
+ endif;
64
  }
65
 
66
  die();
classes/ad_group.php CHANGED
@@ -153,6 +153,8 @@ class Advanced_Ads_Group {
153
  // -TODO should abstract (i.e. only call once per request)
154
  $all_groups = get_option( 'advads-ad-groups', array() );
155
 
 
 
156
  if ( ! isset( $all_groups[ $this->id ] ) || ! is_array( $all_groups[ $this->id ] ) ) { return; }
157
 
158
  if ( isset( $this->ad_args['change-group'] ) ) {
@@ -174,8 +176,6 @@ class Advanced_Ads_Group {
174
  if ( isset( $group_data['options'] ) ) {
175
  $this->options = isset( $group_data['options'] ) ? $group_data['options'] : array();
176
  }
177
-
178
- $this->create_wrapper();
179
  }
180
 
181
  /**
@@ -238,6 +238,7 @@ class Advanced_Ads_Group {
238
  $output_string = '<div' . Advanced_Ads_Utils::build_html_attributes( $this->wrapper ) . '>'
239
  . $this->label
240
  . $output_string
 
241
  . '</div>';
242
  }
243
 
153
  // -TODO should abstract (i.e. only call once per request)
154
  $all_groups = get_option( 'advads-ad-groups', array() );
155
 
156
+ $this->create_wrapper();
157
+
158
  if ( ! isset( $all_groups[ $this->id ] ) || ! is_array( $all_groups[ $this->id ] ) ) { return; }
159
 
160
  if ( isset( $this->ad_args['change-group'] ) ) {
176
  if ( isset( $group_data['options'] ) ) {
177
  $this->options = isset( $group_data['options'] ) ? $group_data['options'] : array();
178
  }
 
 
179
  }
180
 
181
  /**
238
  $output_string = '<div' . Advanced_Ads_Utils::build_html_attributes( $this->wrapper ) . '>'
239
  . $this->label
240
  . $output_string
241
+ . apply_filters( 'advanced-ads-output-wrapper-after-content-group', '', $this )
242
  . '</div>';
243
  }
244
 
classes/ad_type_dummy.php CHANGED
@@ -45,12 +45,11 @@ class Advanced_Ads_Ad_Type_Dummy extends Advanced_Ads_Ad_Type_Abstract{
45
  if( ! defined( 'AAT_VERSION' )) :
46
  $url = ( ! empty( $ad->url ) ) ? esc_url( $ad->url ) : ADVADS_URL;
47
  ?><span class="label"><?php _e( 'url', 'advanced-ads' ); ?></span>
48
- <div><input type="url" name="advanced_ad[url]" id="advads-url" value="<?php echo $url; ?>"/>
49
- <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>', 'advanced-ads' ), ADVADS_URL . 'add-ons/tracking/#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-image-tracking'); ?></p>
50
- <input type="hidden" name="advanced_ad[width]" value="300"/>
51
- <input type="hidden" name="advanced_ad[height]" value="250"/>
52
- </div>
53
  <?php endif;
 
 
 
54
  }
55
 
56
  /**
45
  if( ! defined( 'AAT_VERSION' )) :
46
  $url = ( ! empty( $ad->url ) ) ? esc_url( $ad->url ) : ADVADS_URL;
47
  ?><span class="label"><?php _e( 'url', 'advanced-ads' ); ?></span>
48
+ <div><input type="url" name="advanced_ad[url]" id="advads-url" value="<?php echo $url; ?>"/></div>
 
 
 
 
49
  <?php endif;
50
+
51
+ ?><input type="hidden" name="advanced_ad[width]" value="300"/>
52
+ <input type="hidden" name="advanced_ad[height]" value="250"/><?php
53
  }
54
 
55
  /**
classes/ad_type_group.php CHANGED
@@ -100,12 +100,8 @@ class Advanced_Ads_Ad_Type_Group extends Advanced_Ads_Ad_Type_Abstract{
100
  public function prepare_output($ad){
101
  $group_id = ( isset( $ad->output['group_id'] ) ) ? absint( $ad->output['group_id'] ) : 0;
102
 
103
- $args = array(
104
- 'ad_label' => isset( $ad->args['ad_label'] ) ? $ad->args['ad_label'] : 'default',
105
- );
106
-
107
  if( $group_id ){
108
- return get_ad_group( $group_id, $args );
109
  }
110
  }
111
 
100
  public function prepare_output($ad){
101
  $group_id = ( isset( $ad->output['group_id'] ) ) ? absint( $ad->output['group_id'] ) : 0;
102
 
 
 
 
 
103
  if( $group_id ){
104
+ return get_ad_group( $group_id, $ad->args );
105
  }
106
  }
107
 
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
  <span class="label"><?php _e( 'url', 'advanced-ads' ); ?></span>
66
  <div>
67
- <input type="url" name="advanced_ad[url]" id="advads-url" value="<?php echo $url; ?>"/></p>
68
  <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>', 'advanced-ads' ), ADVADS_URL . 'add-ons/tracking/#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-image-tracking'); ?></p>
69
  </div><hr/><?php
70
  endif;
64
  if( ! defined( 'AAT_VERSION' )) : ?>
65
  <span class="label"><?php _e( 'url', 'advanced-ads' ); ?></span>
66
  <div>
67
+ <input type="url" name="advanced_ad[url]" id="advads-url" value="<?php echo $url; ?>" placeholder="<?php _e( 'Link to target site', 'advanced-ads' ); ?>" /></p>
68
  <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>', 'advanced-ads' ), ADVADS_URL . 'add-ons/tracking/#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-image-tracking'); ?></p>
69
  </div><hr/><?php
70
  endif;
classes/filesystem.php CHANGED
@@ -62,7 +62,7 @@ class Advanced_Ads_Filesystem {
62
  }
63
 
64
  if ( is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->get_error_code() ) {
65
- return new WP_Error( 'fs_error', __( 'Filesystem error.' ), $wp_filesystem->errors);
66
  }
67
 
68
  foreach ( (array) $directories as $dir ) {
@@ -101,10 +101,6 @@ class Advanced_Ads_Filesystem {
101
  * Print the filesystem credentials modal when needed.
102
  */
103
  public function print_request_filesystem_credentials_modal() {
104
- if ( function_exists( 'wp_print_request_filesystem_credentials_modal' ) ) {
105
- return wp_print_request_filesystem_credentials_modal();
106
- }
107
-
108
  $filesystem_method = get_filesystem_method();
109
  ob_start();
110
  $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
@@ -114,7 +110,7 @@ class Advanced_Ads_Filesystem {
114
  return;
115
  }
116
  ?>
117
- <div id="request-filesystem-credentials-dialog" class="notification-dialog-wrap request-filesystem-credentials-dialog">
118
  <div class="notification-dialog-background"></div>
119
  <div class="notification-dialog" role="dialog" aria-labelledby="request-filesystem-credentials-title" tabindex="0">
120
  <div class="request-filesystem-credentials-dialog-content">
62
  }
63
 
64
  if ( is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->get_error_code() ) {
65
+ return new WP_Error( 'fs_error', __( 'Filesystem error.', 'advanced-ads' ), $wp_filesystem->errors);
66
  }
67
 
68
  foreach ( (array) $directories as $dir ) {
101
  * Print the filesystem credentials modal when needed.
102
  */
103
  public function print_request_filesystem_credentials_modal() {
 
 
 
 
104
  $filesystem_method = get_filesystem_method();
105
  ob_start();
106
  $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
110
  return;
111
  }
112
  ?>
113
+ <div id="advanced-ads-rfc-dialog" class="notification-dialog-wrap request-filesystem-credentials-dialog">
114
  <div class="notification-dialog-background"></div>
115
  <div class="notification-dialog" role="dialog" aria-labelledby="request-filesystem-credentials-title" tabindex="0">
116
  <div class="request-filesystem-credentials-dialog-content">
classes/frontend_checks.php CHANGED
@@ -312,7 +312,7 @@ class Advanced_Ads_Frontend_Checks {
312
  function advads_highlight_adsense_quickstart(){
313
  var quickstart_ads = jQuery(document).find('.google-auto-placed');
314
  jQuery( '<p class="advads-quickstart-hint" style="background-color:#0085ba;color:#fff;font-size:0.8em;padding:5px;"><?php
315
- printf(__( 'This ads was automatically placed here by AdSense. <a href="%s" target="_blank" style="color:#fff;border-color:#fff;">Click here to learn more</a>.' ), ADVADS_URL . 'adsense-in-random-positions/#utm_source=advanced-ads&utm_medium=link&utm_campaign=frontend-quickstart-ads' );
316
  ?></p>' ).prependTo( quickstart_ads );
317
  // show quickstart warning in Adhealth Bar if relevant
318
  if( quickstart_ads.length ){
312
  function advads_highlight_adsense_quickstart(){
313
  var quickstart_ads = jQuery(document).find('.google-auto-placed');
314
  jQuery( '<p class="advads-quickstart-hint" style="background-color:#0085ba;color:#fff;font-size:0.8em;padding:5px;"><?php
315
+ printf(__( 'This ads was automatically placed here by AdSense. <a href="%s" target="_blank" style="color:#fff;border-color:#fff;">Click here to learn more</a>.', 'advanced-ads' ), ADVADS_URL . 'adsense-in-random-positions/#utm_source=advanced-ads&utm_medium=link&utm_campaign=frontend-quickstart-ads' );
316
  ?></p>' ).prependTo( quickstart_ads );
317
  // show quickstart warning in Adhealth Bar if relevant
318
  if( quickstart_ads.length ){
classes/visitor-conditions.php CHANGED
@@ -123,8 +123,8 @@ class Advanced_Ads_Visitor_Conditions {
123
 
124
  ?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
125
  <select name="<?php echo $name; ?>[operator]">
126
- <option value="is" <?php selected( 'is', $operator ); ?>><?php _e( 'is' ); ?></option>
127
- <option value="is_not" <?php selected( 'is_not', $operator ); ?>><?php _e( 'is not' ); ?></option>
128
  </select>
129
  <p class="description"><?php echo $type_options[ $options['type'] ]['description'];
130
  if( isset( $type_options[ $options['type'] ]['helplink'] ) ) : ?>
123
 
124
  ?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
125
  <select name="<?php echo $name; ?>[operator]">
126
+ <option value="is" <?php selected( 'is', $operator ); ?>><?php _e( 'is', 'advanced-ads' ); ?></option>
127
+ <option value="is_not" <?php selected( 'is_not', $operator ); ?>><?php _e( 'is not', 'advanced-ads' ); ?></option>
128
  </select>
129
  <p class="description"><?php echo $type_options[ $options['type'] ]['description'];
130
  if( isset( $type_options[ $options['type'] ]['helplink'] ) ) : ?>
classes/widget.php CHANGED
@@ -58,7 +58,7 @@ class Advanced_Ads_Widget extends WP_Widget {
58
  $title = strip_tags( $instance['title'] );
59
  $elementid = $instance['item_id'];
60
 
61
- ?><p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
62
  <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p><?php
63
 
64
  $items = array_merge( self::items_for_select(), self::widget_placements_for_select() );
58
  $title = strip_tags( $instance['title'] );
59
  $elementid = $instance['item_id'];
60
 
61
+ ?><p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'advanced-ads' ); ?></label>
62
  <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p><?php
63
 
64
  $items = array_merge( self::items_for_select(), self::widget_placements_for_select() );
composer.lock CHANGED
@@ -9,16 +9,16 @@
9
  "packages": [
10
  {
11
  "name": "composer/installers",
12
- "version": "v1.2.0",
13
  "source": {
14
  "type": "git",
15
  "url": "https://github.com/composer/installers.git",
16
- "reference": "d78064c68299743e0161004f2de3a0204e33b804"
17
  },
18
  "dist": {
19
  "type": "zip",
20
- "url": "https://api.github.com/repos/composer/installers/zipball/d78064c68299743e0161004f2de3a0204e33b804",
21
- "reference": "d78064c68299743e0161004f2de3a0204e33b804",
22
  "shasum": ""
23
  },
24
  "require": {
@@ -60,12 +60,16 @@
60
  "keywords": [
61
  "Craft",
62
  "Dolibarr",
 
63
  "Hurad",
64
  "ImageCMS",
 
65
  "MODX Evo",
66
  "Mautic",
 
67
  "OXID",
68
  "Plentymarkets",
 
69
  "RadPHP",
70
  "SMF",
71
  "Thelia",
@@ -88,9 +92,11 @@
88
  "fuelphp",
89
  "grav",
90
  "installer",
 
91
  "joomla",
92
  "kohana",
93
  "laravel",
 
94
  "lithium",
95
  "magento",
96
  "mako",
@@ -105,6 +111,7 @@
105
  "roundcube",
106
  "shopware",
107
  "silverstripe",
 
108
  "symfony",
109
  "typo3",
110
  "wordpress",
@@ -112,7 +119,7 @@
112
  "zend",
113
  "zikula"
114
  ],
115
- "time": "2016-08-13 20:53:52"
116
  },
117
  {
118
  "name": "xrstf/composer-php52",
9
  "packages": [
10
  {
11
  "name": "composer/installers",
12
+ "version": "v1.3.0",
13
  "source": {
14
  "type": "git",
15
  "url": "https://github.com/composer/installers.git",
16
+ "reference": "79ad876c7498c0bbfe7eed065b8651c93bfd6045"
17
  },
18
  "dist": {
19
  "type": "zip",
20
+ "url": "https://api.github.com/repos/composer/installers/zipball/79ad876c7498c0bbfe7eed065b8651c93bfd6045",
21
+ "reference": "79ad876c7498c0bbfe7eed065b8651c93bfd6045",
22
  "shasum": ""
23
  },
24
  "require": {
60
  "keywords": [
61
  "Craft",
62
  "Dolibarr",
63
+ "Eliasis",
64
  "Hurad",
65
  "ImageCMS",
66
+ "Kanboard",
67
  "MODX Evo",
68
  "Mautic",
69
+ "Maya",
70
  "OXID",
71
  "Plentymarkets",
72
+ "Porto",
73
  "RadPHP",
74
  "SMF",
75
  "Thelia",
92
  "fuelphp",
93
  "grav",
94
  "installer",
95
+ "itop",
96
  "joomla",
97
  "kohana",
98
  "laravel",
99
+ "lavalite",
100
  "lithium",
101
  "magento",
102
  "mako",
111
  "roundcube",
112
  "shopware",
113
  "silverstripe",
114
+ "sydes",
115
  "symfony",
116
  "typo3",
117
  "wordpress",
119
  "zend",
120
  "zikula"
121
  ],
122
+ "time": "2017-04-24 06:37:16"
123
  },
124
  {
125
  "name": "xrstf/composer-php52",
includes/array_ad_conditions.php CHANGED
@@ -30,68 +30,68 @@ $advanced_ads_slug = Advanced_Ads::get_instance()->get_plugin_slug();
30
 
31
  $advanced_ads_ad_conditions = array(
32
  'enabled' => array( // dummy, to let the validation of the general ad conditions past
33
- // 'label' => __('Post Types', $advanced_ads_slug),
34
- // 'description' => __('Choose the public post types on which to display the ad.', $advanced_ads_slug),
35
  'type' => 'other',
36
  // 'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'post_types')
37
  ),
38
  'posttypes' => array(
39
- 'label' => __( 'Post Types', $advanced_ads_slug ),
40
- 'description' => __( 'Choose the public post types on which to display the ad.', $advanced_ads_slug ),
41
  'type' => 'textvalues',
42
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'post_types')
43
  ),
44
  'categoryids' => array(
45
- 'label' => __( 'Categories, Tags and Taxonomies', $advanced_ads_slug ),
46
- 'description' => __( 'Choose terms from public category, tag and other taxonomies a post must belong to in order to have ads.', $advanced_ads_slug ),
47
  'type' => 'idfield',
48
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'terms')
49
  ),
50
  'categoryarchiveids' => array(
51
- 'label' => __( 'Category Archives', $advanced_ads_slug ),
52
- 'description' => __( 'comma seperated IDs of category archives', $advanced_ads_slug ),
53
  'type' => 'idfield',
54
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'category_archives')
55
  ),
56
  'postids' => array(
57
- 'label' => __( 'Individual Posts, Pages and Public Post Types', $advanced_ads_slug ),
58
- 'description' => __( 'Choose on which individual posts, pages and public post type pages you want to display or hide ads.', $advanced_ads_slug ),
59
  'type' => 'other',
60
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'single_posts')
61
  ),
62
  'is_front_page' => array(
63
- 'label' => __( 'Home Page', $advanced_ads_slug ),
64
- 'description' => __( 'show on Home page', $advanced_ads_slug ),
65
  'type' => 'radio',
66
  ),
67
  'is_singular' => array(
68
- 'label' => __( 'Singular Pages', $advanced_ads_slug ),
69
- 'description' => __( 'show on singular pages/posts', $advanced_ads_slug ),
70
  'type' => 'radio',
71
  ),
72
  'is_archive' => array(
73
- 'label' => __( 'Archive Pages', $advanced_ads_slug ),
74
- 'description' => __( 'show on any type of archive page (category, tag, author and date)', $advanced_ads_slug ),
75
  'type' => 'radio',
76
  ),
77
  'is_search' => array(
78
- 'label' => __( 'Search Results', $advanced_ads_slug ),
79
- 'description' => __( 'show on search result pages', $advanced_ads_slug ),
80
  'type' => 'radio',
81
  ),
82
  'is_404' => array(
83
- 'label' => __( '404 Page', $advanced_ads_slug ),
84
- 'description' => __( 'show on 404 error page', $advanced_ads_slug ),
85
  'type' => 'radio',
86
  ),
87
  'is_attachment' => array(
88
- 'label' => __( 'Attachment Pages', $advanced_ads_slug ),
89
- 'description' => __( 'show on attachment pages', $advanced_ads_slug ),
90
  'type' => 'radio',
91
  ),
92
  'is_main_query' => array(
93
- 'label' => __( 'Secondary Queries', $advanced_ads_slug ),
94
- 'description' => __( 'allow ads in secondary queries', $advanced_ads_slug ),
95
  'type' => 'radio',
96
  )
97
  );
30
 
31
  $advanced_ads_ad_conditions = array(
32
  'enabled' => array( // dummy, to let the validation of the general ad conditions past
33
+ // 'label' => __('Post Types', 'advanced-ads'),
34
+ // 'description' => __('Choose the public post types on which to display the ad.', 'advanced-ads'),
35
  'type' => 'other',
36
  // 'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'post_types')
37
  ),
38
  'posttypes' => array(
39
+ 'label' => __( 'Post Types', 'advanced-ads' ),
40
+ 'description' => __( 'Choose the public post types on which to display the ad.', 'advanced-ads' ),
41
  'type' => 'textvalues',
42
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'post_types')
43
  ),
44
  'categoryids' => array(
45
+ 'label' => __( 'Categories, Tags and Taxonomies', 'advanced-ads' ),
46
+ 'description' => __( 'Choose terms from public category, tag and other taxonomies a post must belong to in order to have ads.', 'advanced-ads' ),
47
  'type' => 'idfield',
48
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'terms')
49
  ),
50
  'categoryarchiveids' => array(
51
+ 'label' => __( 'Category Archives', 'advanced-ads' ),
52
+ 'description' => __( 'comma seperated IDs of category archives', 'advanced-ads' ),
53
  'type' => 'idfield',
54
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'category_archives')
55
  ),
56
  'postids' => array(
57
+ 'label' => __( 'Individual Posts, Pages and Public Post Types', 'advanced-ads' ),
58
+ 'description' => __( 'Choose on which individual posts, pages and public post type pages you want to display or hide ads.', 'advanced-ads' ),
59
  'type' => 'other',
60
  'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'single_posts')
61
  ),
62
  'is_front_page' => array(
63
+ 'label' => __( 'Home Page', 'advanced-ads' ),
64
+ 'description' => __( 'show on Home page', 'advanced-ads' ),
65
  'type' => 'radio',
66
  ),
67
  'is_singular' => array(
68
+ 'label' => __( 'Singular Pages', 'advanced-ads' ),
69
+ 'description' => __( 'show on singular pages/posts', 'advanced-ads' ),
70
  'type' => 'radio',
71
  ),
72
  'is_archive' => array(
73
+ 'label' => __( 'Archive Pages', 'advanced-ads' ),
74
+ 'description' => __( 'show on any type of archive page (category, tag, author and date)', 'advanced-ads' ),
75
  'type' => 'radio',
76
  ),
77
  'is_search' => array(
78
+ 'label' => __( 'Search Results', 'advanced-ads' ),
79
+ 'description' => __( 'show on search result pages', 'advanced-ads' ),
80
  'type' => 'radio',
81
  ),
82
  'is_404' => array(
83
+ 'label' => __( '404 Page', 'advanced-ads' ),
84
+ 'description' => __( 'show on 404 error page', 'advanced-ads' ),
85
  'type' => 'radio',
86
  ),
87
  'is_attachment' => array(
88
+ 'label' => __( 'Attachment Pages', 'advanced-ads' ),
89
+ 'description' => __( 'show on attachment pages', 'advanced-ads' ),
90
  'type' => 'radio',
91
  ),
92
  'is_main_query' => array(
93
+ 'label' => __( 'Secondary Queries', 'advanced-ads' ),
94
+ 'description' => __( 'allow ads in secondary queries', 'advanced-ads' ),
95
  'type' => 'radio',
96
  )
97
  );
languages/advanced-ads-es_ES.mo CHANGED
Binary file
languages/advanced-ads-es_ES.po CHANGED
@@ -2,8 +2,8 @@ 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: 2017-06-22 13:15+0000\n"
6
- "PO-Revision-Date: 2017-06-22 13:15+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Spanish (Spain)\n"
9
  "Language: es-ES\n"
@@ -55,13 +55,6 @@ msgstr ""
55
  msgid "url"
56
  msgstr ""
57
 
58
- #: classes/ad_type_dummy.php:49 classes/ad_type_image.php:68
59
- #, php-format
60
- msgid ""
61
- "Open this url in a new window and track impressions and clicks with the <a "
62
- "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
63
- msgstr ""
64
-
65
  #: classes/ad_type_image.php:34
66
  msgid "Image Ad"
67
  msgstr ""
@@ -86,17 +79,30 @@ msgstr ""
86
  msgid "edit"
87
  msgstr ""
88
 
 
 
 
 
 
 
 
 
 
 
 
89
  #: classes/ad_type_plain.php:87
90
  msgid "Allow PHP"
91
  msgstr ""
92
 
93
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
94
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
 
95
  msgid "is"
96
  msgstr ""
97
 
98
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
99
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
 
100
  msgid "is not"
101
  msgstr ""
102
 
@@ -112,6 +118,10 @@ msgstr ""
112
  msgid "Could not access filesystem."
113
  msgstr ""
114
 
 
 
 
 
115
  #: classes/filesystem.php:72
116
  msgid "Unable to locate WordPress root directory."
117
  msgstr ""
@@ -129,6 +139,14 @@ msgstr ""
129
  msgid "Random AdSense ads"
130
  msgstr ""
131
 
 
 
 
 
 
 
 
 
132
  #: classes/visitor-conditions.php:32
133
  msgid "device"
134
  msgstr ""
@@ -148,6 +166,36 @@ msgid ""
148
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
149
  msgstr ""
150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  #: admin/includes/class-ad-groups-list.php:208
152
  #, php-format
153
  msgid "show %d more ads"
@@ -157,6 +205,49 @@ msgstr ""
157
  msgid "Add some"
158
  msgstr ""
159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  #: admin/includes/class-licenses.php:86
161
  #, php-format
162
  msgid ""
@@ -165,6 +256,11 @@ msgid ""
165
  "this page</a>."
166
  msgstr ""
167
 
 
 
 
 
 
168
  #: admin/includes/class-licenses.php:470
169
  #, php-format
170
  msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
@@ -212,11 +308,16 @@ msgid ""
212
  "limitation and ads might show up again."
213
  msgstr ""
214
 
 
 
 
 
 
215
  #: admin/includes/class-settings.php:473
216
  msgid "Disable shortcode button in visual editor."
217
  msgstr ""
218
 
219
- #: admin/includes/class-shortcode-creator.php:154
220
  #, php-format
221
  msgid ""
222
  "Please, either switch off your ad blocker or disable the shortcode button in "
@@ -252,17 +353,42 @@ msgstr ""
252
  msgid "A page with this ad on it must match all of the following conditions."
253
  msgstr ""
254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  #: admin/views/ad-group-list-form-row.php:57
256
  msgid "Visible ads"
257
  msgstr ""
258
 
259
- #: admin/views/ad-group.php:53
260
- msgid ""
261
- "You can create a new group through the <em>Ad Groups</em> widget on the ad "
262
- "edit page."
 
 
263
  msgstr ""
264
 
265
- #: admin/views/ad-group.php:53
 
 
 
 
266
  #, php-format
267
  msgid ""
268
  "Find more information about ad groups in the <a href=\"%s\" "
@@ -275,6 +401,26 @@ msgid ""
275
  "with a space"
276
  msgstr ""
277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  #: admin/views/ad-visitor-metabox.php:7
279
  msgid ""
280
  "Click on the button below if the ad should NOT be visible to all visitors"
@@ -293,43 +439,51 @@ msgid "It is only temporary"
293
  msgstr ""
294
 
295
  #: admin/views/feedback-disable.php:7
296
- msgid "I have a problem"
297
  msgstr ""
298
 
299
  #: admin/views/feedback-disable.php:8
 
 
 
 
300
  msgid "Please let us know how we can help"
301
  msgstr ""
302
 
303
- #: admin/views/feedback-disable.php:11
304
  #, php-format
305
  msgid "Send me free help to %s"
306
  msgstr ""
307
 
308
- #: admin/views/feedback-disable.php:13
309
  msgid "I miss a feature"
310
  msgstr ""
311
 
312
- #: admin/views/feedback-disable.php:14 admin/views/feedback-disable.php:17
313
  msgid "Which one?"
314
  msgstr ""
315
 
316
- #: admin/views/feedback-disable.php:15
317
  msgid "I don’t use ads on my site"
318
  msgstr ""
319
 
320
- #: admin/views/feedback-disable.php:16
321
  msgid "I switched to another plugin"
322
  msgstr ""
323
 
324
- #: admin/views/feedback-disable.php:24
325
- msgid "Submit & Deactivate"
326
  msgstr ""
327
 
328
  #: admin/views/feedback-disable.php:25
329
- msgid "Only Deactivate"
330
  msgstr ""
331
 
332
  #: admin/views/feedback-disable.php:26
 
 
 
 
333
  msgid "don’t deactivate"
334
  msgstr ""
335
 
@@ -351,6 +505,14 @@ msgstr ""
351
  msgid "template (PHP)"
352
  msgstr ""
353
 
 
 
 
 
 
 
 
 
354
  #: admin/views/placements.php:128
355
  msgid "show all options"
356
  msgstr ""
@@ -362,6 +524,25 @@ msgid ""
362
  "header of your website</a>."
363
  msgstr ""
364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
  #: modules/gadsense/admin/admin.php:219
366
  msgid ""
367
  "You still need to enable Page-Level ads in your AdSense account. See <a "
@@ -386,6 +567,21 @@ msgid ""
386
  "wrapped in text."
387
  msgstr ""
388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  #: modules/ad-blocker/admin/views/setting-use-adblocker.php:4
390
  msgid ""
391
  "The ad block disguise can only be set by the super admin on the main site in "
@@ -414,6 +610,26 @@ msgstr ""
414
  msgid "Link ads (Responsive)"
415
  msgstr ""
416
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
  #: admin/class-advanced-ads-admin.php:190 classes/display-conditions.php:178
418
  #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:114
419
  msgid "or"
@@ -433,8 +649,8 @@ msgstr "Después de que párrafo?"
433
  msgid "time of %s"
434
  msgstr "Tiempo de %s"
435
 
436
- #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:86
437
- #: admin/includes/class-menu.php:86
438
  msgid "Support"
439
  msgstr "Soporte"
440
 
@@ -650,7 +866,7 @@ msgstr ""
650
  msgid "post type"
651
  msgstr "Tipo de entrada"
652
 
653
- #: classes/display-conditions.php:70
654
  msgid "Choose the public post types on which to display the ad."
655
  msgstr "Selecciona los post types públicos en los cuales mostrar el anuncio."
656
 
@@ -658,7 +874,7 @@ msgstr "Selecciona los post types públicos en los cuales mostrar el anuncio."
658
  msgid "specific pages"
659
  msgstr "Páginas específicas"
660
 
661
- #: classes/display-conditions.php:77
662
  msgid ""
663
  "Choose on which individual posts, pages and public post type pages you want "
664
  "to display or hide ads."
@@ -698,61 +914,61 @@ msgstr "Nombre del término o ID"
698
  msgid "title or id"
699
  msgstr "Título o ID"
700
 
701
- #: classes/display-conditions.php:469
702
  msgid "Home Page"
703
  msgstr "Página de Inicio"
704
 
705
- #: classes/display-conditions.php:470
706
  msgid "show on Home page"
707
  msgstr "Mostrar en Página de Inicio"
708
 
709
- #: classes/display-conditions.php:474
710
  msgid "Singular Pages"
711
  msgstr "Páginas Singulares"
712
 
713
- #: classes/display-conditions.php:475
714
  msgid "show on singular pages/posts"
715
  msgstr "Mostrar en páginas/entradas singulares"
716
 
717
- #: classes/display-conditions.php:479
718
  msgid "Archive Pages"
719
  msgstr "Páginas de Archivo"
720
 
721
- #: classes/display-conditions.php:480
722
  msgid "show on any type of archive page (category, tag, author and date)"
723
  msgstr ""
724
  "Mostrar en cualquier tipo de página de archivo (categoría, etiqueta, autor y "
725
  "fecha)"
726
 
727
- #: classes/display-conditions.php:484
728
  msgid "Search Results"
729
  msgstr "Resultados de la Búsqueda"
730
 
731
- #: classes/display-conditions.php:485
732
  msgid "show on search result pages"
733
  msgstr "Mostrar en páginas de resultados de búsquedas"
734
 
735
- #: classes/display-conditions.php:489
736
  msgid "404 Page"
737
  msgstr "Páginas 404"
738
 
739
- #: classes/display-conditions.php:490
740
  msgid "show on 404 error page"
741
  msgstr "Mostrar en páginas de error 404"
742
 
743
- #: classes/display-conditions.php:494
744
  msgid "Attachment Pages"
745
  msgstr "Páginas Adjuntas"
746
 
747
- #: classes/display-conditions.php:495
748
  msgid "show on attachment pages"
749
  msgstr "Mostrar en páginas adjuntas"
750
 
751
- #: classes/display-conditions.php:499
752
  msgid "Secondary Queries"
753
  msgstr "Consultas (Queries) Secundarias "
754
 
755
- #: classes/display-conditions.php:500
756
  msgid "allow ads in secondary queries"
757
  msgstr "Permitir anuncios en consultas (queries) secundarias "
758
 
@@ -1002,9 +1218,9 @@ msgstr "Añadir Nuevo Anuncio"
1002
 
1003
  #: public/class-advanced-ads.php:621
1004
  #: admin/includes/class-ad-groups-list.php:308
1005
- #: modules/import-export/classes/import.php:143
1006
- #: modules/import-export/classes/import.php:183
1007
- #: modules/import-export/classes/import.php:559
1008
  msgid "Edit"
1009
  msgstr "Editar"
1010
 
@@ -1097,10 +1313,12 @@ msgid "Usage"
1097
  msgstr "Uso"
1098
 
1099
  #: admin/includes/class-ad-groups-list.php:339
 
1100
  msgid "Invalid Ad Group"
1101
  msgstr "Grupo de Anuncios Inválido"
1102
 
1103
  #: admin/includes/class-ad-groups-list.php:344
 
1104
  msgid "You don’t have permission to change the ad groups"
1105
  msgstr "No tienes permiso para cambiar los Grupos de Anuncios"
1106
 
@@ -1172,13 +1390,11 @@ msgid "Error while trying to register the license. Please contact support."
1172
  msgstr ""
1173
  "Error al tratar de registrar la licencia. Por favor, contactar a soporte."
1174
 
1175
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:40
1176
  msgid "Please enter a valid license key"
1177
  msgstr "Por favor, ingresa una llave de licencia válida"
1178
 
1179
  #: admin/includes/class-licenses.php:132
1180
- #: modules/marketpress-license/main.php:65
1181
- #: modules/marketpress-license/main.php:77
1182
  msgid "License couldn’t be activated. Please try again later."
1183
  msgstr "La licencia no pudo ser activada. Por favor, intenta de nuevo."
1184
 
@@ -1187,12 +1403,10 @@ msgid "This is the bundle license key."
1187
  msgstr "Ésta es la clave de licencia para todo el paquete."
1188
 
1189
  #: admin/includes/class-licenses.php:148
1190
- #: modules/marketpress-license/main.php:132
1191
  msgid "This is not the correct key for this add-on."
1192
  msgstr "Ésta no es la clave de licencia correcta para este add-on"
1193
 
1194
  #: admin/includes/class-licenses.php:149
1195
- #: modules/marketpress-license/main.php:130
1196
  msgid "There are no activations left."
1197
  msgstr "No existen más activaciones."
1198
 
@@ -1217,23 +1431,15 @@ msgstr "Colocación de Anuncios"
1217
  msgid "Advanced Ads Settings"
1218
  msgstr "Configuraciones de Advanced Ads"
1219
 
1220
- #: admin/includes/class-menu.php:79 admin/views/debug.php:9
1221
  msgid "Settings"
1222
  msgstr "Configuraciones"
1223
 
1224
- #: admin/includes/class-menu.php:82
1225
- msgid "Advanced Ads Debugging"
1226
- msgstr "Depuración de Advanced Ads"
1227
-
1228
- #: admin/includes/class-menu.php:82
1229
- msgid "Debug"
1230
- msgstr "Depuración"
1231
-
1232
- #: admin/includes/class-menu.php:190 admin/includes/class-menu.php:217
1233
  msgid "Sorry, you are not allowed to access this feature."
1234
  msgstr "Lo sentimos, no tienes permiso para acceder a esta función."
1235
 
1236
- #: admin/includes/class-menu.php:203
1237
  msgid ""
1238
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1239
  "deleted?"
@@ -1296,7 +1502,7 @@ msgstr "Obtener el tutorial vía correo electrónico"
1296
  msgid "Get AdSense tips via email"
1297
  msgstr "Obtener tips de AdSense vía correo electrónico"
1298
 
1299
- #: admin/includes/class-notices.php:417
1300
  #, php-format
1301
  msgid ""
1302
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
@@ -1305,14 +1511,14 @@ msgstr ""
1305
  "Parece ser que no tienes una dirección de correo electrónico. Por favor, usa "
1306
  "<a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
1307
 
1308
- #: admin/includes/class-notices.php:435
1309
  msgid ""
1310
  "How embarrassing. The email server seems to be down. Please try again later."
1311
  msgstr ""
1312
  "Esto es penoso. El servidor de correos parece estar caído. Por favor, "
1313
  "inténtalo más tarde."
1314
 
1315
- #: admin/includes/class-notices.php:440
1316
  #, php-format
1317
  msgid ""
1318
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -1856,19 +2062,6 @@ msgstr "Por favor, añade llaves de licencia válidas <a href=\"%s\">aquí</a>."
1856
  #: admin/includes/notices.php:47
1857
  #, php-format
1858
  msgid ""
1859
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1860
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1861
- "before it expires with a significant discount on <a href=\"%s\" "
1862
- "target=\"_blank\">the add-on page</a>."
1863
- msgstr ""
1864
- "Una o más licencias para tus <strong>add-ons de Advanced Ads van a expirar "
1865
- "pronto</strong>. No arriesgues perder soporte y actualizaciones y renueva tu "
1866
- "licencia antes de que expire con un descuento significativo en <a "
1867
- "href=\"%s\" target=\"_blank\">la página de add-ons</a>."
1868
-
1869
- #: admin/includes/notices.php:53
1870
- #, php-format
1871
- msgid ""
1872
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1873
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1874
  "information."
@@ -1877,7 +2070,7 @@ msgstr ""
1877
  "actualizaciones están deshabilitadas. Por favor, visita <a href=\"%s\"> la "
1878
  "página de licencias</a> para más información."
1879
 
1880
- #: admin/includes/notices.php:59
1881
  #, php-format
1882
  msgid ""
1883
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
@@ -1897,7 +2090,7 @@ msgstr ""
1897
  "target=\"_blank\">déja una evaluación de 5-estrellas en wordpress.org</a>."
1898
  "</p><p><em>Thomas</em>"
1899
 
1900
- #: admin/includes/notices.php:65
1901
  #, php-format
1902
  msgid ""
1903
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
@@ -1939,7 +2132,7 @@ msgid "Forced to OR."
1939
  msgstr "Forzado a O."
1940
 
1941
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
1942
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
1943
  msgid "manual"
1944
  msgstr "Manual"
1945
 
@@ -2028,16 +2221,16 @@ msgstr "Tipo: %s"
2028
  msgid "ID: %s"
2029
  msgstr "ID: %s"
2030
 
2031
- #: admin/views/ad-group.php:18
2032
  msgid "Ad Groups successfully updated"
2033
  msgstr "Grupos de Anuncios actualizados exitosamente"
2034
 
2035
- #: admin/views/ad-group.php:46
2036
  #, php-format
2037
  msgid "Search results for &#8220;%s&#8221;"
2038
  msgstr "Resultados de la búsqueda para &#8220;%s&#8221;"
2039
 
2040
- #: admin/views/ad-group.php:52
2041
  msgid ""
2042
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2043
  "display random ads in the frontend or run split tests, but also just for "
@@ -2051,7 +2244,7 @@ msgstr ""
2051
  "tener múltiples anuncios, sino que también, un anuncio puede pertenecer a "
2052
  "múltiples grupos."
2053
 
2054
- #: admin/views/ad-group.php:79
2055
  msgid "Update Groups"
2056
  msgstr "Actualizar Grupos"
2057
 
@@ -2083,6 +2276,10 @@ msgctxt "wizard navigation"
2083
  msgid "next"
2084
  msgstr "Siguiente"
2085
 
 
 
 
 
2086
  #: admin/views/ad-info-top.php:5
2087
  #, php-format
2088
  msgid ""
@@ -2156,10 +2353,6 @@ msgstr ""
2156
  "El Asistente te ayudará a crear y publicar un anuncio fácilmente. Por lo "
2157
  "tanto, solamente las opciones más comunes serán visibles."
2158
 
2159
- #: admin/views/ad-info-top.php:85
2160
- msgid "Stop Wizard and show all options"
2161
- msgstr "Detener el Asistente y mostrar todas las opciones"
2162
-
2163
  #: admin/views/ad-info.php:2
2164
  #, php-format
2165
  msgid "Ad Id: %s"
@@ -2403,26 +2596,14 @@ msgstr "Solamente en dispositivos móviles"
2403
  msgid "not on mobile devices"
2404
  msgstr "No en dispositivos móviles"
2405
 
2406
- #: admin/views/debug.php:6 admin/views/settings.php:50
2407
- msgid "Debug Page"
2408
- msgstr "Página de Depuración"
2409
-
2410
- #: admin/views/debug.php:7
2411
- msgid "Work in progress"
2412
- msgstr "Trabajo en Progreso"
2413
-
2414
  #: admin/views/feedback-disable.php:4
2415
  msgid "Why did you decide to disable Advanced Ads?"
2416
  msgstr "Porqué decidiste deshabilitar Advanced Ads?"
2417
 
2418
- #: admin/views/feedback-disable.php:18
2419
  msgid "other reason"
2420
  msgstr "Otra razón"
2421
 
2422
- #: admin/views/feedback-disable.php:19
2423
- msgid "Please specify, if possible"
2424
- msgstr "Por favor especifica, si es posible"
2425
-
2426
  #: admin/views/placements-content-index.php:1
2427
  msgid "after"
2428
  msgstr "Después"
@@ -2579,25 +2760,20 @@ msgstr "Deshabilitar anuncios en esta página"
2579
  msgid "Your license expired."
2580
  msgstr "Tu licencia expiró."
2581
 
2582
- #: admin/views/setting-license.php:6
2583
- #, php-format
2584
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
2585
- msgstr "<a href=\"%s\" target=\"_blank\">Renuévalo con un descuento</a>."
2586
-
2587
- #: admin/views/setting-license.php:18
2588
  #, php-format
2589
  msgid "(%d days left)"
2590
  msgstr "(%d días restantes)"
2591
 
2592
- #: admin/views/setting-license.php:22
2593
  msgid "License key"
2594
  msgstr "Llave de Licencia"
2595
 
2596
- #: admin/views/setting-license.php:42
2597
  msgid "License key invalid"
2598
  msgstr "Llave de licencia inválida"
2599
 
2600
- #: admin/views/setting-license.php:45
2601
  msgid "active"
2602
  msgstr "Activa"
2603
 
@@ -2655,15 +2831,15 @@ msgstr "Guardar las configuraciones de esta página"
2655
  msgid "Import &amp; Export"
2656
  msgstr "Importar &amp; Exportar"
2657
 
2658
- #: admin/views/settings.php:51
2659
  msgid "Advanced Ads on WordPress.org"
2660
  msgstr "Advanced Ads en WordPress.org"
2661
 
2662
- #: admin/views/settings.php:51
2663
  msgid "Advanced Ads on wp.org"
2664
  msgstr "Advanced Ads en wp.org"
2665
 
2666
- #: admin/views/settings.php:52
2667
  msgid "the company behind Advanced Ads"
2668
  msgstr "la compañía detrás de Advanced Ads"
2669
 
@@ -2791,25 +2967,6 @@ msgstr ""
2791
  msgid " at "
2792
  msgstr "En"
2793
 
2794
- #: modules/marketpress-license/admin.php:36
2795
- msgid "MarketPress Bundle License"
2796
- msgstr "Licencia del paquete de MarketPress"
2797
-
2798
- #: modules/marketpress-license/admin.php:67
2799
- #: modules/marketpress-license/admin.php:70
2800
- msgid ""
2801
- "Enter your key here, if you have purchased the bundle through MarketPress."
2802
- msgstr ""
2803
- "Ingresa tu clave aquí, si has comprado el paquete a través de MarketPress."
2804
-
2805
- #: modules/marketpress-license/admin.php:72
2806
- msgid ""
2807
- "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
2808
- "."
2809
- msgstr ""
2810
- "Dar clic aquí si has comprado una clave de paquete a través de <strong>"
2811
- "MarketPress</strong>."
2812
-
2813
  #: public/views/ad-debug.php:18
2814
  msgid "Ad debug output"
2815
  msgstr "Resultados de la depuración de anuncios"
@@ -2961,7 +3118,7 @@ msgstr "Anuncio de AdSense"
2961
  msgid "Use ads from your Google AdSense account"
2962
  msgstr "Usar anuncios de tu cuenta de Google AdSense"
2963
 
2964
- #: modules/gadsense/includes/class-ad-type-adsense.php:106
2965
  msgid "Your AdSense Publisher ID is missing."
2966
  msgstr "Tu ID de publicador de AdSense no se encuentra."
2967
 
@@ -2973,64 +3130,64 @@ msgstr "Auto"
2973
  msgid "Please enter XML content"
2974
  msgstr "Por favor, ingresa el contenido XML"
2975
 
2976
- #: modules/import-export/classes/import.php:144
2977
- #: modules/import-export/classes/import.php:560
2978
  #, php-format
2979
  msgid "New attachment created <em>%s</em> %s"
2980
  msgstr "Nuevo archivo adjunto creado <em>%s</em> %s"
2981
 
2982
- #: modules/import-export/classes/import.php:176
2983
  #, php-format
2984
  msgid "Failed to import <em>%s</em>"
2985
  msgstr "Error al importar <em>%s</em>"
2986
 
2987
- #: modules/import-export/classes/import.php:184
2988
  #, php-format
2989
  msgid "New ad created: <em>%s</em> %s"
2990
  msgstr "Nuevo anuncio creado: <em>%s</em> %s"
2991
 
2992
- #: modules/import-export/classes/import.php:227
2993
  #, php-format
2994
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2995
  msgstr "Términos asignados: <em>%s</em>, a la entrada: <em>%s</em>"
2996
 
2997
- #: modules/import-export/classes/import.php:289
2998
  #, php-format
2999
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
3000
  msgstr "Nuevo grupo creado, ID: <em>%s</em>, nombre: <em>%s</em>"
3001
 
3002
- #: modules/import-export/classes/import.php:291
3003
  #, php-format
3004
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
3005
  msgstr "Error al importar taxonomía: <em>%s</em>, término: <em>%s</em>"
3006
 
3007
- #: modules/import-export/classes/import.php:356
3008
  #, php-format
3009
  msgid "Placement <em>%s</em> created"
3010
  msgstr "Colocación <em>%s</em> creada"
3011
 
3012
- #: modules/import-export/classes/import.php:471
3013
  #, php-format
3014
  msgid "Option was updated: <em>%s</em>"
3015
  msgstr "La opción fue actualizada: <em>%s</em>"
3016
 
3017
- #: modules/import-export/classes/import.php:474
3018
  #, php-format
3019
  msgid "Option already exists: <em>%s</em>"
3020
  msgstr "La opción ya existe: <em>%s</em>"
3021
 
3022
- #: modules/import-export/classes/import.php:496
3023
  #, php-format
3024
  msgid "Failed to create import directory <em>%s</em>"
3025
  msgstr "Error al crear directorio de importación <em>%s</em>"
3026
 
3027
- #: modules/import-export/classes/import.php:501
3028
  #, php-format
3029
  msgid "Import directory is not writable: <em>%s</em>"
3030
  msgstr ""
3031
  "El directorio de importación no tiene permisos de escritura: <em>%s</em>"
3032
 
3033
- #: modules/import-export/classes/import.php:509
3034
  msgid ""
3035
  "File is empty, uploads are disabled or post_max_size is smaller than "
3036
  "upload_max_filesize in php.ini"
@@ -3038,16 +3195,16 @@ msgstr ""
3038
  "El archivo está vacío, las subidas están deshabitadas o el post_max_size es "
3039
  "más pequeño que el upload_max_filesize en php.ini"
3040
 
3041
- #: modules/import-export/classes/import.php:519
3042
  #, php-format
3043
  msgid "Failed to upload file, error: <em>%s</em>"
3044
  msgstr "Error al subir el archivo: <em>%s</em>"
3045
 
3046
- #: modules/import-export/classes/import.php:524
3047
  msgid "File is empty."
3048
  msgstr "El archivo está vacío."
3049
 
3050
- #: modules/import-export/classes/import.php:529
3051
  #, php-format
3052
  msgid ""
3053
  "The file could not be created: <em>%s</em>. This is probably a permissions "
@@ -3056,20 +3213,20 @@ msgstr ""
3056
  "El archivo no se pudo crear: <em>%s</em>. Probablemente, esto es debido a un "
3057
  "problema de permisos "
3058
 
3059
- #: modules/import-export/classes/import.php:602
3060
  #, php-format
3061
  msgid "Invalid filetype <em>%s</em>"
3062
  msgstr "Tipo de archivo inválido <em>%s</em>"
3063
 
3064
- #: modules/import-export/classes/import.php:607
3065
- #: modules/import-export/classes/import.php:614
3066
- #: modules/import-export/classes/import.php:622
3067
- #: modules/import-export/classes/import.php:637
3068
  #, php-format
3069
  msgid "Error getting remote image <em>%s</em>"
3070
  msgstr "Error obteniendo la imagen remota <em>%s</em>"
3071
 
3072
- #: modules/import-export/classes/import.php:631
3073
  #, php-format
3074
  msgid "Zero size file downloaded <em>%s</em>"
3075
  msgstr "Tamaño de archivo descargado cero <em>%s</em>"
@@ -3197,7 +3354,7 @@ msgstr "Por favor, <a href=\"%s\" target=\"_blank\">cámbialo aquí</a>."
3197
  msgid "Normal"
3198
  msgstr "Normal"
3199
 
3200
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:68
3201
  #, php-format
3202
  msgid ""
3203
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -3208,7 +3365,7 @@ msgstr ""
3208
  "definir el tamaño exacto según el ancho del navegador o elige entre los "
3209
  "formatos horizontales, verticales, o rectangulares."
3210
 
3211
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:71
3212
  msgid "Resizing"
3213
  msgstr "Cambiar el Tamaño"
3214
 
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: 2017-07-11 09:29+0000\n"
6
+ "PO-Revision-Date: 2017-07-11 09:29+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Spanish (Spain)\n"
9
  "Language: es-ES\n"
55
  msgid "url"
56
  msgstr ""
57
 
 
 
 
 
 
 
 
58
  #: classes/ad_type_image.php:34
59
  msgid "Image Ad"
60
  msgstr ""
79
  msgid "edit"
80
  msgstr ""
81
 
82
+ #: classes/ad_type_image.php:67
83
+ msgid "Link to target site"
84
+ msgstr ""
85
+
86
+ #: classes/ad_type_image.php:68
87
+ #, php-format
88
+ msgid ""
89
+ "Open this url in a new window and track impressions and clicks with the <a "
90
+ "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
91
+ msgstr ""
92
+
93
  #: classes/ad_type_plain.php:87
94
  msgid "Allow PHP"
95
  msgstr ""
96
 
97
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
98
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
99
+ #: classes/visitor-conditions.php:126
100
  msgid "is"
101
  msgstr ""
102
 
103
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
104
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
105
+ #: classes/visitor-conditions.php:127
106
  msgid "is not"
107
  msgstr ""
108
 
118
  msgid "Could not access filesystem."
119
  msgstr ""
120
 
121
+ #: classes/filesystem.php:65
122
+ msgid "Filesystem error."
123
+ msgstr ""
124
+
125
  #: classes/filesystem.php:72
126
  msgid "Unable to locate WordPress root directory."
127
  msgstr ""
139
  msgid "Random AdSense ads"
140
  msgstr ""
141
 
142
+ #: classes/frontend_checks.php:315
143
+ #, php-format
144
+ msgid ""
145
+ "This ads was automatically placed here by AdSense. <a href=\"%s\" "
146
+ "target=\"_blank\" style=\"color:#fff;border-color:#fff;\">Click here to "
147
+ "learn more</a>."
148
+ msgstr ""
149
+
150
  #: classes/visitor-conditions.php:32
151
  msgid "device"
152
  msgstr ""
166
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
167
  msgstr ""
168
 
169
+ #: classes/widget.php:61
170
+ msgid "Title:"
171
+ msgstr ""
172
+
173
+ #: includes/array_ad_conditions.php:39
174
+ msgid "Post Types"
175
+ msgstr ""
176
+
177
+ #: includes/array_ad_conditions.php:45
178
+ msgid "Categories, Tags and Taxonomies"
179
+ msgstr ""
180
+
181
+ #: includes/array_ad_conditions.php:46
182
+ msgid ""
183
+ "Choose terms from public category, tag and other taxonomies a post must "
184
+ "belong to in order to have ads."
185
+ msgstr ""
186
+
187
+ #: includes/array_ad_conditions.php:51
188
+ msgid "Category Archives"
189
+ msgstr ""
190
+
191
+ #: includes/array_ad_conditions.php:52
192
+ msgid "comma seperated IDs of category archives"
193
+ msgstr ""
194
+
195
+ #: includes/array_ad_conditions.php:57
196
+ msgid "Individual Posts, Pages and Public Post Types"
197
+ msgstr ""
198
+
199
  #: admin/includes/class-ad-groups-list.php:208
200
  #, php-format
201
  msgid "show %d more ads"
205
  msgid "Add some"
206
  msgstr ""
207
 
208
+ #: admin/includes/class-ad-groups-list.php:318
209
+ msgid "Delete"
210
+ msgstr ""
211
+
212
+ #: admin/includes/class-ad-groups-list.php:374
213
+ msgid "No ad group created"
214
+ msgstr ""
215
+
216
+ #: admin/includes/class-ad-type.php:222
217
+ #, php-format
218
+ msgid "%s ad updated."
219
+ msgid_plural "%s ads updated."
220
+ msgstr[0] ""
221
+ msgstr[1] ""
222
+
223
+ #: admin/includes/class-ad-type.php:223
224
+ #, php-format
225
+ msgid "%s ad not updated, somebody is editing it."
226
+ msgid_plural "%s ads not updated, somebody is editing them."
227
+ msgstr[0] ""
228
+ msgstr[1] ""
229
+
230
+ #: admin/includes/class-ad-type.php:224
231
+ #, php-format
232
+ msgid "%s ad permanently deleted."
233
+ msgid_plural "%s ads permanently deleted."
234
+ msgstr[0] ""
235
+ msgstr[1] ""
236
+
237
+ #: admin/includes/class-ad-type.php:225
238
+ #, php-format
239
+ msgid "%s ad moved to the Trash."
240
+ msgid_plural "%s ads moved to the Trash."
241
+ msgstr[0] ""
242
+ msgstr[1] ""
243
+
244
+ #: admin/includes/class-ad-type.php:226
245
+ #, php-format
246
+ msgid "%s ad restored from the Trash."
247
+ msgid_plural "%s ads restored from the Trash."
248
+ msgstr[0] ""
249
+ msgstr[1] ""
250
+
251
  #: admin/includes/class-licenses.php:86
252
  #, php-format
253
  msgid ""
256
  "this page</a>."
257
  msgstr ""
258
 
259
+ #: admin/includes/class-licenses.php:158
260
+ #, php-format
261
+ msgid "License is invalid. Reason: %s"
262
+ msgstr ""
263
+
264
  #: admin/includes/class-licenses.php:470
265
  #, php-format
266
  msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
308
  "limitation and ads might show up again."
309
  msgstr ""
310
 
311
+ #: admin/includes/class-settings.php:439
312
+ msgctxt "label before ads"
313
+ msgid "Advertisements"
314
+ msgstr ""
315
+
316
  #: admin/includes/class-settings.php:473
317
  msgid "Disable shortcode button in visual editor."
318
  msgstr ""
319
 
320
+ #: admin/includes/class-shortcode-creator.php:155
321
  #, php-format
322
  msgid ""
323
  "Please, either switch off your ad blocker or disable the shortcode button in "
353
  msgid "A page with this ad on it must match all of the following conditions."
354
  msgstr ""
355
 
356
+ #: admin/views/ad-group-edit.php:14
357
+ msgid "You did not select an item for editing."
358
+ msgstr ""
359
+
360
+ #: admin/views/ad-group-edit.php:33
361
+ msgctxt "Taxonomy Name"
362
+ msgid "Name"
363
+ msgstr ""
364
+
365
+ #: admin/views/ad-group-edit.php:38
366
+ msgctxt "Taxonomy Slug"
367
+ msgid "Slug"
368
+ msgstr ""
369
+
370
+ #: admin/views/ad-group-edit.php:45
371
+ msgctxt "Taxonomy Description"
372
+ msgid "Description"
373
+ msgstr ""
374
+
375
  #: admin/views/ad-group-list-form-row.php:57
376
  msgid "Visible ads"
377
  msgstr ""
378
 
379
+ #: admin/views/ad-group.php:18
380
+ msgid "Ad Group successfully created"
381
+ msgstr ""
382
+
383
+ #: admin/views/ad-group.php:65
384
+ msgid "Group title"
385
  msgstr ""
386
 
387
+ #: admin/views/ad-group.php:66
388
+ msgid "save"
389
+ msgstr ""
390
+
391
+ #: admin/views/ad-group.php:69
392
  #, php-format
393
  msgid ""
394
  "Find more information about ad groups in the <a href=\"%s\" "
401
  "with a space"
402
  msgstr ""
403
 
404
+ #: admin/views/ad-submitbox-meta.php:12
405
+ msgid "Month"
406
+ msgstr ""
407
+
408
+ #: admin/views/ad-submitbox-meta.php:21
409
+ msgid "Day"
410
+ msgstr ""
411
+
412
+ #: admin/views/ad-submitbox-meta.php:22
413
+ msgid "Year"
414
+ msgstr ""
415
+
416
+ #: admin/views/ad-submitbox-meta.php:23
417
+ msgid "Hour"
418
+ msgstr ""
419
+
420
+ #: admin/views/ad-submitbox-meta.php:24
421
+ msgid "Minute"
422
+ msgstr ""
423
+
424
  #: admin/views/ad-visitor-metabox.php:7
425
  msgid ""
426
  "Click on the button below if the ad should NOT be visible to all visitors"
439
  msgstr ""
440
 
441
  #: admin/views/feedback-disable.php:7
442
+ msgid "I need help to set it up"
443
  msgstr ""
444
 
445
  #: admin/views/feedback-disable.php:8
446
+ msgid "I have a problem"
447
+ msgstr ""
448
+
449
+ #: admin/views/feedback-disable.php:9
450
  msgid "Please let us know how we can help"
451
  msgstr ""
452
 
453
+ #: admin/views/feedback-disable.php:12
454
  #, php-format
455
  msgid "Send me free help to %s"
456
  msgstr ""
457
 
458
+ #: admin/views/feedback-disable.php:14
459
  msgid "I miss a feature"
460
  msgstr ""
461
 
462
+ #: admin/views/feedback-disable.php:15 admin/views/feedback-disable.php:18
463
  msgid "Which one?"
464
  msgstr ""
465
 
466
+ #: admin/views/feedback-disable.php:16
467
  msgid "I don’t use ads on my site"
468
  msgstr ""
469
 
470
+ #: admin/views/feedback-disable.php:17
471
  msgid "I switched to another plugin"
472
  msgstr ""
473
 
474
+ #: admin/views/feedback-disable.php:20
475
+ msgid "Please specify"
476
  msgstr ""
477
 
478
  #: admin/views/feedback-disable.php:25
479
+ msgid "Submit & Deactivate"
480
  msgstr ""
481
 
482
  #: admin/views/feedback-disable.php:26
483
+ msgid "Only Deactivate"
484
+ msgstr ""
485
+
486
+ #: admin/views/feedback-disable.php:27
487
  msgid "don’t deactivate"
488
  msgstr ""
489
 
505
  msgid "template (PHP)"
506
  msgstr ""
507
 
508
+ #: admin/views/placements.php:94
509
+ msgid "position"
510
+ msgstr ""
511
+
512
+ #: admin/views/placements.php:119
513
+ msgid "ad label"
514
+ msgstr ""
515
+
516
  #: admin/views/placements.php:128
517
  msgid "show all options"
518
  msgstr ""
524
  "header of your website</a>."
525
  msgstr ""
526
 
527
+ #: admin/views/setting-license.php:15
528
+ #, php-format
529
+ msgid ""
530
+ "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
531
+ "target=\"_blank\">renew your license with a discount</a>."
532
+ msgstr ""
533
+
534
+ #: admin/views/setting-license.php:41
535
+ msgid "Deactivate License"
536
+ msgstr ""
537
+
538
+ #: admin/views/setting-license.php:47
539
+ msgid "Update License"
540
+ msgstr ""
541
+
542
+ #: admin/views/setting-license.php:47
543
+ msgid "Activate License"
544
+ msgstr ""
545
+
546
  #: modules/gadsense/admin/admin.php:219
547
  msgid ""
548
  "You still need to enable Page-Level ads in your AdSense account. See <a "
567
  "wrapped in text."
568
  msgstr ""
569
 
570
+ #: modules/import-export/views/page.php:28
571
+ msgid "Download Export File"
572
+ msgstr ""
573
+
574
+ #: modules/import-export/views/page.php:52
575
+ msgid ""
576
+ "Before you can upload your import file, you will need to fix the following "
577
+ "error:"
578
+ msgstr ""
579
+
580
+ #: modules/import-export/views/page.php:57
581
+ #, php-format
582
+ msgid "Maximum size: %s"
583
+ msgstr ""
584
+
585
  #: modules/ad-blocker/admin/views/setting-use-adblocker.php:4
586
  msgid ""
587
  "The ad block disguise can only be set by the super admin on the main site in "
610
  msgid "Link ads (Responsive)"
611
  msgstr ""
612
 
613
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:63
614
+ msgid "InArticle"
615
+ msgstr ""
616
+
617
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
618
+ msgid "InFeed"
619
+ msgstr ""
620
+
621
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:81
622
+ msgid "Tutorial: How to place ads between posts?"
623
+ msgstr ""
624
+
625
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
626
+ msgid "Layout"
627
+ msgstr ""
628
+
629
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:86
630
+ msgid "Layout-Key"
631
+ msgstr ""
632
+
633
  #: admin/class-advanced-ads-admin.php:190 classes/display-conditions.php:178
634
  #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:114
635
  msgid "or"
649
  msgid "time of %s"
650
  msgstr "Tiempo de %s"
651
 
652
+ #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:83
653
+ #: admin/includes/class-menu.php:83
654
  msgid "Support"
655
  msgstr "Soporte"
656
 
866
  msgid "post type"
867
  msgstr "Tipo de entrada"
868
 
869
+ #: classes/display-conditions.php:70 includes/array_ad_conditions.php:40
870
  msgid "Choose the public post types on which to display the ad."
871
  msgstr "Selecciona los post types públicos en los cuales mostrar el anuncio."
872
 
874
  msgid "specific pages"
875
  msgstr "Páginas específicas"
876
 
877
+ #: classes/display-conditions.php:77 includes/array_ad_conditions.php:58
878
  msgid ""
879
  "Choose on which individual posts, pages and public post type pages you want "
880
  "to display or hide ads."
914
  msgid "title or id"
915
  msgstr "Título o ID"
916
 
917
+ #: classes/display-conditions.php:469 includes/array_ad_conditions.php:63
918
  msgid "Home Page"
919
  msgstr "Página de Inicio"
920
 
921
+ #: classes/display-conditions.php:470 includes/array_ad_conditions.php:64
922
  msgid "show on Home page"
923
  msgstr "Mostrar en Página de Inicio"
924
 
925
+ #: classes/display-conditions.php:474 includes/array_ad_conditions.php:68
926
  msgid "Singular Pages"
927
  msgstr "Páginas Singulares"
928
 
929
+ #: classes/display-conditions.php:475 includes/array_ad_conditions.php:69
930
  msgid "show on singular pages/posts"
931
  msgstr "Mostrar en páginas/entradas singulares"
932
 
933
+ #: classes/display-conditions.php:479 includes/array_ad_conditions.php:73
934
  msgid "Archive Pages"
935
  msgstr "Páginas de Archivo"
936
 
937
+ #: classes/display-conditions.php:480 includes/array_ad_conditions.php:74
938
  msgid "show on any type of archive page (category, tag, author and date)"
939
  msgstr ""
940
  "Mostrar en cualquier tipo de página de archivo (categoría, etiqueta, autor y "
941
  "fecha)"
942
 
943
+ #: classes/display-conditions.php:484 includes/array_ad_conditions.php:78
944
  msgid "Search Results"
945
  msgstr "Resultados de la Búsqueda"
946
 
947
+ #: classes/display-conditions.php:485 includes/array_ad_conditions.php:79
948
  msgid "show on search result pages"
949
  msgstr "Mostrar en páginas de resultados de búsquedas"
950
 
951
+ #: classes/display-conditions.php:489 includes/array_ad_conditions.php:83
952
  msgid "404 Page"
953
  msgstr "Páginas 404"
954
 
955
+ #: classes/display-conditions.php:490 includes/array_ad_conditions.php:84
956
  msgid "show on 404 error page"
957
  msgstr "Mostrar en páginas de error 404"
958
 
959
+ #: classes/display-conditions.php:494 includes/array_ad_conditions.php:88
960
  msgid "Attachment Pages"
961
  msgstr "Páginas Adjuntas"
962
 
963
+ #: classes/display-conditions.php:495 includes/array_ad_conditions.php:89
964
  msgid "show on attachment pages"
965
  msgstr "Mostrar en páginas adjuntas"
966
 
967
+ #: classes/display-conditions.php:499 includes/array_ad_conditions.php:93
968
  msgid "Secondary Queries"
969
  msgstr "Consultas (Queries) Secundarias "
970
 
971
+ #: classes/display-conditions.php:500 includes/array_ad_conditions.php:94
972
  msgid "allow ads in secondary queries"
973
  msgstr "Permitir anuncios en consultas (queries) secundarias "
974
 
1218
 
1219
  #: public/class-advanced-ads.php:621
1220
  #: admin/includes/class-ad-groups-list.php:308
1221
+ #: modules/import-export/classes/import.php:144
1222
+ #: modules/import-export/classes/import.php:184
1223
+ #: modules/import-export/classes/import.php:560
1224
  msgid "Edit"
1225
  msgstr "Editar"
1226
 
1313
  msgstr "Uso"
1314
 
1315
  #: admin/includes/class-ad-groups-list.php:339
1316
+ #: admin/includes/class-ad-groups-list.php:389
1317
  msgid "Invalid Ad Group"
1318
  msgstr "Grupo de Anuncios Inválido"
1319
 
1320
  #: admin/includes/class-ad-groups-list.php:344
1321
+ #: admin/includes/class-ad-groups-list.php:394
1322
  msgid "You don’t have permission to change the ad groups"
1323
  msgstr "No tienes permiso para cambiar los Grupos de Anuncios"
1324
 
1390
  msgstr ""
1391
  "Error al tratar de registrar la licencia. Por favor, contactar a soporte."
1392
 
1393
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
1394
  msgid "Please enter a valid license key"
1395
  msgstr "Por favor, ingresa una llave de licencia válida"
1396
 
1397
  #: admin/includes/class-licenses.php:132
 
 
1398
  msgid "License couldn’t be activated. Please try again later."
1399
  msgstr "La licencia no pudo ser activada. Por favor, intenta de nuevo."
1400
 
1403
  msgstr "Ésta es la clave de licencia para todo el paquete."
1404
 
1405
  #: admin/includes/class-licenses.php:148
 
1406
  msgid "This is not the correct key for this add-on."
1407
  msgstr "Ésta no es la clave de licencia correcta para este add-on"
1408
 
1409
  #: admin/includes/class-licenses.php:149
 
1410
  msgid "There are no activations left."
1411
  msgstr "No existen más activaciones."
1412
 
1431
  msgid "Advanced Ads Settings"
1432
  msgstr "Configuraciones de Advanced Ads"
1433
 
1434
+ #: admin/includes/class-menu.php:79
1435
  msgid "Settings"
1436
  msgstr "Configuraciones"
1437
 
1438
+ #: admin/includes/class-menu.php:173 admin/includes/class-menu.php:200
 
 
 
 
 
 
 
 
1439
  msgid "Sorry, you are not allowed to access this feature."
1440
  msgstr "Lo sentimos, no tienes permiso para acceder a esta función."
1441
 
1442
+ #: admin/includes/class-menu.php:186
1443
  msgid ""
1444
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1445
  "deleted?"
1502
  msgid "Get AdSense tips via email"
1503
  msgstr "Obtener tips de AdSense vía correo electrónico"
1504
 
1505
+ #: admin/includes/class-notices.php:408
1506
  #, php-format
1507
  msgid ""
1508
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
1511
  "Parece ser que no tienes una dirección de correo electrónico. Por favor, usa "
1512
  "<a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
1513
 
1514
+ #: admin/includes/class-notices.php:426
1515
  msgid ""
1516
  "How embarrassing. The email server seems to be down. Please try again later."
1517
  msgstr ""
1518
  "Esto es penoso. El servidor de correos parece estar caído. Por favor, "
1519
  "inténtalo más tarde."
1520
 
1521
+ #: admin/includes/class-notices.php:431
1522
  #, php-format
1523
  msgid ""
1524
  "Please check your email (%s) for the confirmation message. If you didn’t "
2062
  #: admin/includes/notices.php:47
2063
  #, php-format
2064
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
2065
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2066
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2067
  "information."
2070
  "actualizaciones están deshabilitadas. Por favor, visita <a href=\"%s\"> la "
2071
  "página de licencias</a> para más información."
2072
 
2073
+ #: admin/includes/notices.php:53
2074
  #, php-format
2075
  msgid ""
2076
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
2090
  "target=\"_blank\">déja una evaluación de 5-estrellas en wordpress.org</a>."
2091
  "</p><p><em>Thomas</em>"
2092
 
2093
+ #: admin/includes/notices.php:59
2094
  #, php-format
2095
  msgid ""
2096
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
2132
  msgstr "Forzado a O."
2133
 
2134
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
2135
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:66
2136
  msgid "manual"
2137
  msgstr "Manual"
2138
 
2221
  msgid "ID: %s"
2222
  msgstr "ID: %s"
2223
 
2224
+ #: admin/views/ad-group.php:29
2225
  msgid "Ad Groups successfully updated"
2226
  msgstr "Grupos de Anuncios actualizados exitosamente"
2227
 
2228
+ #: admin/views/ad-group.php:59
2229
  #, php-format
2230
  msgid "Search results for &#8220;%s&#8221;"
2231
  msgstr "Resultados de la búsqueda para &#8220;%s&#8221;"
2232
 
2233
+ #: admin/views/ad-group.php:68
2234
  msgid ""
2235
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2236
  "display random ads in the frontend or run split tests, but also just for "
2244
  "tener múltiples anuncios, sino que también, un anuncio puede pertenecer a "
2245
  "múltiples grupos."
2246
 
2247
+ #: admin/views/ad-group.php:96
2248
  msgid "Update Groups"
2249
  msgstr "Actualizar Grupos"
2250
 
2276
  msgid "next"
2277
  msgstr "Siguiente"
2278
 
2279
+ #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-top.php:85
2280
+ msgid "Stop Wizard and show all options"
2281
+ msgstr "Detener el Asistente y mostrar todas las opciones"
2282
+
2283
  #: admin/views/ad-info-top.php:5
2284
  #, php-format
2285
  msgid ""
2353
  "El Asistente te ayudará a crear y publicar un anuncio fácilmente. Por lo "
2354
  "tanto, solamente las opciones más comunes serán visibles."
2355
 
 
 
 
 
2356
  #: admin/views/ad-info.php:2
2357
  #, php-format
2358
  msgid "Ad Id: %s"
2596
  msgid "not on mobile devices"
2597
  msgstr "No en dispositivos móviles"
2598
 
 
 
 
 
 
 
 
 
2599
  #: admin/views/feedback-disable.php:4
2600
  msgid "Why did you decide to disable Advanced Ads?"
2601
  msgstr "Porqué decidiste deshabilitar Advanced Ads?"
2602
 
2603
+ #: admin/views/feedback-disable.php:19
2604
  msgid "other reason"
2605
  msgstr "Otra razón"
2606
 
 
 
 
 
2607
  #: admin/views/placements-content-index.php:1
2608
  msgid "after"
2609
  msgstr "Después"
2760
  msgid "Your license expired."
2761
  msgstr "Tu licencia expiró."
2762
 
2763
+ #: admin/views/setting-license.php:27
 
 
 
 
 
2764
  #, php-format
2765
  msgid "(%d days left)"
2766
  msgstr "(%d días restantes)"
2767
 
2768
+ #: admin/views/setting-license.php:31
2769
  msgid "License key"
2770
  msgstr "Llave de Licencia"
2771
 
2772
+ #: admin/views/setting-license.php:51
2773
  msgid "License key invalid"
2774
  msgstr "Llave de licencia inválida"
2775
 
2776
+ #: admin/views/setting-license.php:54
2777
  msgid "active"
2778
  msgstr "Activa"
2779
 
2831
  msgid "Import &amp; Export"
2832
  msgstr "Importar &amp; Exportar"
2833
 
2834
+ #: admin/views/settings.php:50
2835
  msgid "Advanced Ads on WordPress.org"
2836
  msgstr "Advanced Ads en WordPress.org"
2837
 
2838
+ #: admin/views/settings.php:50
2839
  msgid "Advanced Ads on wp.org"
2840
  msgstr "Advanced Ads en wp.org"
2841
 
2842
+ #: admin/views/settings.php:51
2843
  msgid "the company behind Advanced Ads"
2844
  msgstr "la compañía detrás de Advanced Ads"
2845
 
2967
  msgid " at "
2968
  msgstr "En"
2969
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2970
  #: public/views/ad-debug.php:18
2971
  msgid "Ad debug output"
2972
  msgstr "Resultados de la depuración de anuncios"
3118
  msgid "Use ads from your Google AdSense account"
3119
  msgstr "Usar anuncios de tu cuenta de Google AdSense"
3120
 
3121
+ #: modules/gadsense/includes/class-ad-type-adsense.php:108
3122
  msgid "Your AdSense Publisher ID is missing."
3123
  msgstr "Tu ID de publicador de AdSense no se encuentra."
3124
 
3130
  msgid "Please enter XML content"
3131
  msgstr "Por favor, ingresa el contenido XML"
3132
 
3133
+ #: modules/import-export/classes/import.php:145
3134
+ #: modules/import-export/classes/import.php:561
3135
  #, php-format
3136
  msgid "New attachment created <em>%s</em> %s"
3137
  msgstr "Nuevo archivo adjunto creado <em>%s</em> %s"
3138
 
3139
+ #: modules/import-export/classes/import.php:177
3140
  #, php-format
3141
  msgid "Failed to import <em>%s</em>"
3142
  msgstr "Error al importar <em>%s</em>"
3143
 
3144
+ #: modules/import-export/classes/import.php:185
3145
  #, php-format
3146
  msgid "New ad created: <em>%s</em> %s"
3147
  msgstr "Nuevo anuncio creado: <em>%s</em> %s"
3148
 
3149
+ #: modules/import-export/classes/import.php:228
3150
  #, php-format
3151
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
3152
  msgstr "Términos asignados: <em>%s</em>, a la entrada: <em>%s</em>"
3153
 
3154
+ #: modules/import-export/classes/import.php:290
3155
  #, php-format
3156
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
3157
  msgstr "Nuevo grupo creado, ID: <em>%s</em>, nombre: <em>%s</em>"
3158
 
3159
+ #: modules/import-export/classes/import.php:292
3160
  #, php-format
3161
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
3162
  msgstr "Error al importar taxonomía: <em>%s</em>, término: <em>%s</em>"
3163
 
3164
+ #: modules/import-export/classes/import.php:357
3165
  #, php-format
3166
  msgid "Placement <em>%s</em> created"
3167
  msgstr "Colocación <em>%s</em> creada"
3168
 
3169
+ #: modules/import-export/classes/import.php:472
3170
  #, php-format
3171
  msgid "Option was updated: <em>%s</em>"
3172
  msgstr "La opción fue actualizada: <em>%s</em>"
3173
 
3174
+ #: modules/import-export/classes/import.php:475
3175
  #, php-format
3176
  msgid "Option already exists: <em>%s</em>"
3177
  msgstr "La opción ya existe: <em>%s</em>"
3178
 
3179
+ #: modules/import-export/classes/import.php:497
3180
  #, php-format
3181
  msgid "Failed to create import directory <em>%s</em>"
3182
  msgstr "Error al crear directorio de importación <em>%s</em>"
3183
 
3184
+ #: modules/import-export/classes/import.php:502
3185
  #, php-format
3186
  msgid "Import directory is not writable: <em>%s</em>"
3187
  msgstr ""
3188
  "El directorio de importación no tiene permisos de escritura: <em>%s</em>"
3189
 
3190
+ #: modules/import-export/classes/import.php:510
3191
  msgid ""
3192
  "File is empty, uploads are disabled or post_max_size is smaller than "
3193
  "upload_max_filesize in php.ini"
3195
  "El archivo está vacío, las subidas están deshabitadas o el post_max_size es "
3196
  "más pequeño que el upload_max_filesize en php.ini"
3197
 
3198
+ #: modules/import-export/classes/import.php:520
3199
  #, php-format
3200
  msgid "Failed to upload file, error: <em>%s</em>"
3201
  msgstr "Error al subir el archivo: <em>%s</em>"
3202
 
3203
+ #: modules/import-export/classes/import.php:525
3204
  msgid "File is empty."
3205
  msgstr "El archivo está vacío."
3206
 
3207
+ #: modules/import-export/classes/import.php:530
3208
  #, php-format
3209
  msgid ""
3210
  "The file could not be created: <em>%s</em>. This is probably a permissions "
3213
  "El archivo no se pudo crear: <em>%s</em>. Probablemente, esto es debido a un "
3214
  "problema de permisos "
3215
 
3216
+ #: modules/import-export/classes/import.php:603
3217
  #, php-format
3218
  msgid "Invalid filetype <em>%s</em>"
3219
  msgstr "Tipo de archivo inválido <em>%s</em>"
3220
 
3221
+ #: modules/import-export/classes/import.php:608
3222
+ #: modules/import-export/classes/import.php:615
3223
+ #: modules/import-export/classes/import.php:623
3224
+ #: modules/import-export/classes/import.php:638
3225
  #, php-format
3226
  msgid "Error getting remote image <em>%s</em>"
3227
  msgstr "Error obteniendo la imagen remota <em>%s</em>"
3228
 
3229
+ #: modules/import-export/classes/import.php:632
3230
  #, php-format
3231
  msgid "Zero size file downloaded <em>%s</em>"
3232
  msgstr "Tamaño de archivo descargado cero <em>%s</em>"
3354
  msgid "Normal"
3355
  msgstr "Normal"
3356
 
3357
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:70
3358
  #, php-format
3359
  msgid ""
3360
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
3365
  "definir el tamaño exacto según el ancho del navegador o elige entre los "
3366
  "formatos horizontales, verticales, o rectangulares."
3367
 
3368
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:73
3369
  msgid "Resizing"
3370
  msgstr "Cambiar el Tamaño"
3371
 
languages/advanced-ads-fr_FR.mo CHANGED
Binary file
languages/advanced-ads-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ 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: 2017-06-22 13:16+0000\n"
6
- "PO-Revision-Date: 2017-06-22 13:16+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: French (France)\n"
9
  "Language: fr-FR\n"
@@ -108,13 +108,6 @@ msgstr ""
108
  msgid "url"
109
  msgstr ""
110
 
111
- #: classes/ad_type_dummy.php:49 classes/ad_type_image.php:68
112
- #, php-format
113
- msgid ""
114
- "Open this url in a new window and track impressions and clicks with the <a "
115
- "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
116
- msgstr ""
117
-
118
  #: classes/ad_type_group.php:31
119
  msgid ""
120
  "Choose an existing ad group. Use this type when you want to assign the same "
@@ -149,17 +142,30 @@ msgstr ""
149
  msgid "edit"
150
  msgstr ""
151
 
 
 
 
 
 
 
 
 
 
 
 
152
  #: classes/ad_type_plain.php:87
153
  msgid "Allow PHP"
154
  msgstr ""
155
 
156
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
157
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
 
158
  msgid "is"
159
  msgstr ""
160
 
161
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
162
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
 
163
  msgid "is not"
164
  msgstr ""
165
 
@@ -200,6 +206,10 @@ msgstr ""
200
  msgid "Could not access filesystem."
201
  msgstr ""
202
 
 
 
 
 
203
  #: classes/filesystem.php:72
204
  msgid "Unable to locate WordPress root directory."
205
  msgstr ""
@@ -275,6 +285,14 @@ msgstr ""
275
  msgid "highlight ads"
276
  msgstr ""
277
 
 
 
 
 
 
 
 
 
278
  #: classes/visitor-conditions.php:32
279
  msgid "device"
280
  msgstr ""
@@ -294,6 +312,36 @@ msgid ""
294
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
295
  msgstr ""
296
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  #: public/class-advanced-ads.php:754
298
  msgctxt "label above ads"
299
  msgid "Advertisements"
@@ -308,6 +356,49 @@ msgstr ""
308
  msgid "Add some"
309
  msgstr ""
310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  #: admin/includes/class-ad-type.php:518
312
  #, php-format
313
  msgid ""
@@ -323,16 +414,18 @@ msgid ""
323
  msgstr ""
324
 
325
  #: admin/includes/class-licenses.php:132
326
- #: modules/marketpress-license/main.php:65
327
- #: modules/marketpress-license/main.php:77
328
  msgid "License couldn’t be activated. Please try again later."
329
  msgstr ""
330
 
331
  #: admin/includes/class-licenses.php:149
332
- #: modules/marketpress-license/main.php:130
333
  msgid "There are no activations left."
334
  msgstr ""
335
 
 
 
 
 
 
336
  #: admin/includes/class-licenses.php:245 admin/includes/class-licenses.php:263
337
  msgid "License couldn’t be deactivated. Please try again later."
338
  msgstr ""
@@ -409,6 +502,11 @@ msgid ""
409
  "limitation and ads might show up again."
410
  msgstr ""
411
 
 
 
 
 
 
412
  #: admin/includes/class-settings.php:446
413
  msgid "Displayed above ads."
414
  msgstr ""
@@ -421,7 +519,7 @@ msgstr ""
421
  msgid "Disable shortcode button in visual editor."
422
  msgstr ""
423
 
424
- #: admin/includes/class-shortcode-creator.php:154
425
  #, php-format
426
  msgid ""
427
  "Please, either switch off your ad blocker or disable the shortcode button in "
@@ -462,21 +560,46 @@ msgid "Forced to OR."
462
  msgstr ""
463
 
464
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
465
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
466
  msgid "manual"
467
  msgstr ""
468
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
469
  #: admin/views/ad-group-list-form-row.php:57
470
  msgid "Visible ads"
471
  msgstr ""
472
 
473
- #: admin/views/ad-group.php:53
474
- msgid ""
475
- "You can create a new group through the <em>Ad Groups</em> widget on the ad "
476
- "edit page."
 
 
477
  msgstr ""
478
 
479
- #: admin/views/ad-group.php:53
 
 
 
 
480
  #, php-format
481
  msgid ""
482
  "Find more information about ad groups in the <a href=\"%s\" "
@@ -509,6 +632,10 @@ msgctxt "wizard navigation"
509
  msgid "next"
510
  msgstr ""
511
 
 
 
 
 
512
  #: admin/views/ad-info-top.php:5
513
  #, php-format
514
  msgid ""
@@ -567,10 +694,6 @@ msgid ""
567
  "the most common options are visible."
568
  msgstr ""
569
 
570
- #: admin/views/ad-info-top.php:85
571
- msgid "Stop Wizard and show all options"
572
- msgstr ""
573
-
574
  #: admin/views/ad-list-no-ads.php:2
575
  msgid "Not many ads here yet. Get help from the following resources:"
576
  msgstr ""
@@ -601,6 +724,26 @@ msgstr ""
601
  msgid "reserve this space"
602
  msgstr ""
603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
604
  #: admin/views/ad-visitor-metabox.php:7
605
  msgid ""
606
  "Click on the button below if the ad should NOT be visible to all visitors"
@@ -619,43 +762,51 @@ msgid "It is only temporary"
619
  msgstr ""
620
 
621
  #: admin/views/feedback-disable.php:7
622
- msgid "I have a problem"
623
  msgstr ""
624
 
625
  #: admin/views/feedback-disable.php:8
 
 
 
 
626
  msgid "Please let us know how we can help"
627
  msgstr ""
628
 
629
- #: admin/views/feedback-disable.php:11
630
  #, php-format
631
  msgid "Send me free help to %s"
632
  msgstr ""
633
 
634
- #: admin/views/feedback-disable.php:13
635
  msgid "I miss a feature"
636
  msgstr ""
637
 
638
- #: admin/views/feedback-disable.php:14 admin/views/feedback-disable.php:17
639
  msgid "Which one?"
640
  msgstr ""
641
 
642
- #: admin/views/feedback-disable.php:15
643
  msgid "I don’t use ads on my site"
644
  msgstr ""
645
 
646
- #: admin/views/feedback-disable.php:16
647
  msgid "I switched to another plugin"
648
  msgstr ""
649
 
650
- #: admin/views/feedback-disable.php:24
651
- msgid "Submit & Deactivate"
652
  msgstr ""
653
 
654
  #: admin/views/feedback-disable.php:25
655
- msgid "Only Deactivate"
656
  msgstr ""
657
 
658
  #: admin/views/feedback-disable.php:26
 
 
 
 
659
  msgid "don’t deactivate"
660
  msgstr ""
661
 
@@ -677,6 +828,14 @@ msgstr ""
677
  msgid "template (PHP)"
678
  msgstr ""
679
 
 
 
 
 
 
 
 
 
680
  #: admin/views/placements.php:128
681
  msgid "show all options"
682
  msgstr ""
@@ -688,9 +847,23 @@ msgid ""
688
  "header of your website</a>."
689
  msgstr ""
690
 
691
- #: admin/views/setting-license.php:6
692
  #, php-format
693
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
  msgstr ""
695
 
696
  #: admin/views/settings-disable-ads.php:21
@@ -725,22 +898,6 @@ msgid ""
725
  "href=\"%s\" target=\"_blank\">support page</a>."
726
  msgstr ""
727
 
728
- #: modules/marketpress-license/admin.php:36
729
- msgid "MarketPress Bundle License"
730
- msgstr ""
731
-
732
- #: modules/marketpress-license/admin.php:67
733
- #: modules/marketpress-license/admin.php:70
734
- msgid ""
735
- "Enter your key here, if you have purchased the bundle through MarketPress."
736
- msgstr ""
737
-
738
- #: modules/marketpress-license/admin.php:72
739
- msgid ""
740
- "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
741
- "."
742
- msgstr ""
743
-
744
  #: public/views/ad-debug.php:18
745
  msgid "Ad debug output"
746
  msgstr ""
@@ -784,98 +941,98 @@ msgstr ""
784
  msgid "Please enter XML content"
785
  msgstr ""
786
 
787
- #: modules/import-export/classes/import.php:144
788
- #: modules/import-export/classes/import.php:560
789
  #, php-format
790
  msgid "New attachment created <em>%s</em> %s"
791
  msgstr ""
792
 
793
- #: modules/import-export/classes/import.php:176
794
  #, php-format
795
  msgid "Failed to import <em>%s</em>"
796
  msgstr ""
797
 
798
- #: modules/import-export/classes/import.php:184
799
  #, php-format
800
  msgid "New ad created: <em>%s</em> %s"
801
  msgstr ""
802
 
803
- #: modules/import-export/classes/import.php:227
804
  #, php-format
805
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
806
  msgstr ""
807
 
808
- #: modules/import-export/classes/import.php:289
809
  #, php-format
810
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
811
  msgstr ""
812
 
813
- #: modules/import-export/classes/import.php:291
814
  #, php-format
815
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
816
  msgstr ""
817
 
818
- #: modules/import-export/classes/import.php:356
819
  #, php-format
820
  msgid "Placement <em>%s</em> created"
821
  msgstr ""
822
 
823
- #: modules/import-export/classes/import.php:471
824
  #, php-format
825
  msgid "Option was updated: <em>%s</em>"
826
  msgstr ""
827
 
828
- #: modules/import-export/classes/import.php:474
829
  #, php-format
830
  msgid "Option already exists: <em>%s</em>"
831
  msgstr ""
832
 
833
- #: modules/import-export/classes/import.php:496
834
  #, php-format
835
  msgid "Failed to create import directory <em>%s</em>"
836
  msgstr ""
837
 
838
- #: modules/import-export/classes/import.php:501
839
  #, php-format
840
  msgid "Import directory is not writable: <em>%s</em>"
841
  msgstr ""
842
 
843
- #: modules/import-export/classes/import.php:509
844
  msgid ""
845
  "File is empty, uploads are disabled or post_max_size is smaller than "
846
  "upload_max_filesize in php.ini"
847
  msgstr ""
848
 
849
- #: modules/import-export/classes/import.php:519
850
  #, php-format
851
  msgid "Failed to upload file, error: <em>%s</em>"
852
  msgstr ""
853
 
854
- #: modules/import-export/classes/import.php:524
855
  msgid "File is empty."
856
  msgstr ""
857
 
858
- #: modules/import-export/classes/import.php:529
859
  #, php-format
860
  msgid ""
861
  "The file could not be created: <em>%s</em>. This is probably a permissions "
862
  "problem"
863
  msgstr ""
864
 
865
- #: modules/import-export/classes/import.php:602
866
  #, php-format
867
  msgid "Invalid filetype <em>%s</em>"
868
  msgstr ""
869
 
870
- #: modules/import-export/classes/import.php:607
871
- #: modules/import-export/classes/import.php:614
872
- #: modules/import-export/classes/import.php:622
873
- #: modules/import-export/classes/import.php:637
874
  #, php-format
875
  msgid "Error getting remote image <em>%s</em>"
876
  msgstr ""
877
 
878
- #: modules/import-export/classes/import.php:631
879
  #, php-format
880
  msgid "Zero size file downloaded <em>%s</em>"
881
  msgstr ""
@@ -918,6 +1075,10 @@ msgid ""
918
  "to save to your computer."
919
  msgstr ""
920
 
 
 
 
 
921
  #: modules/import-export/views/page.php:33
922
  msgid "Import"
923
  msgstr ""
@@ -930,6 +1091,17 @@ msgstr ""
930
  msgid "Copy an XML content"
931
  msgstr ""
932
 
 
 
 
 
 
 
 
 
 
 
 
933
  #: modules/import-export/views/page.php:66
934
  msgid "Start import"
935
  msgstr ""
@@ -977,7 +1149,15 @@ msgstr ""
977
  msgid "Link ads (Responsive)"
978
  msgstr ""
979
 
980
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:68
 
 
 
 
 
 
 
 
981
  #, php-format
982
  msgid ""
983
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -985,13 +1165,25 @@ msgid ""
985
  "vertical, or rectangle formats."
986
  msgstr ""
987
 
 
 
 
 
 
 
 
 
 
 
 
 
988
  #: admin/class-advanced-ads-admin.php:300
989
  #, php-format
990
  msgid "time of %s"
991
  msgstr "temps de %s"
992
 
993
- #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:86
994
- #: admin/includes/class-menu.php:86
995
  msgid "Support"
996
  msgstr "Support"
997
 
@@ -1156,7 +1348,7 @@ msgstr ""
1156
  msgid "post type"
1157
  msgstr "Type d’article"
1158
 
1159
- #: classes/display-conditions.php:70
1160
  msgid "Choose the public post types on which to display the ad."
1161
  msgstr "Choisir les types d’article public sur lequel afficher la pub."
1162
 
@@ -1164,7 +1356,7 @@ msgstr "Choisir les types d’article public sur lequel afficher la pub."
1164
  msgid "specific pages"
1165
  msgstr "pages spécifiques"
1166
 
1167
- #: classes/display-conditions.php:77
1168
  msgid ""
1169
  "Choose on which individual posts, pages and public post type pages you want "
1170
  "to display or hide ads."
@@ -1200,61 +1392,61 @@ msgstr "ajouter plus de termes"
1200
  msgid "term name or id"
1201
  msgstr "nom du terme ou id"
1202
 
1203
- #: classes/display-conditions.php:469
1204
  msgid "Home Page"
1205
  msgstr "Page d’accueil"
1206
 
1207
- #: classes/display-conditions.php:470
1208
  msgid "show on Home page"
1209
  msgstr "voir sur page d’accueil"
1210
 
1211
- #: classes/display-conditions.php:474
1212
  msgid "Singular Pages"
1213
  msgstr "Pages particulières"
1214
 
1215
- #: classes/display-conditions.php:475
1216
  msgid "show on singular pages/posts"
1217
  msgstr "afficher sur les articles particuliers ou pages particulières"
1218
 
1219
- #: classes/display-conditions.php:479
1220
  msgid "Archive Pages"
1221
  msgstr "Pages d’archive"
1222
 
1223
- #: classes/display-conditions.php:480
1224
  msgid "show on any type of archive page (category, tag, author and date)"
1225
  msgstr ""
1226
  "afficher sur n’importe quel type de page d’archive (catégorie, mot-clé, "
1227
  "auteur et date)"
1228
 
1229
- #: classes/display-conditions.php:484
1230
  msgid "Search Results"
1231
  msgstr "Résultats de recherche"
1232
 
1233
- #: classes/display-conditions.php:485
1234
  msgid "show on search result pages"
1235
  msgstr "montrer sur les pages de résultats de recherche"
1236
 
1237
- #: classes/display-conditions.php:489
1238
  msgid "404 Page"
1239
  msgstr "Page 404"
1240
 
1241
- #: classes/display-conditions.php:490
1242
  msgid "show on 404 error page"
1243
  msgstr "afficher sur la page d’erreur 404"
1244
 
1245
- #: classes/display-conditions.php:494
1246
  msgid "Attachment Pages"
1247
  msgstr "Pages de pièce jointe"
1248
 
1249
- #: classes/display-conditions.php:495
1250
  msgid "show on attachment pages"
1251
  msgstr "afficher sur les pages de pièce jointe"
1252
 
1253
- #: classes/display-conditions.php:499
1254
  msgid "Secondary Queries"
1255
  msgstr "Requêtes secondaires"
1256
 
1257
- #: classes/display-conditions.php:500
1258
  msgid "allow ads in secondary queries"
1259
  msgstr "autoriser les pubs dans les requêtes secondaires"
1260
 
@@ -1421,9 +1613,9 @@ msgstr "Ajouter une nouvelle pub"
1421
 
1422
  #: public/class-advanced-ads.php:621
1423
  #: admin/includes/class-ad-groups-list.php:308
1424
- #: modules/import-export/classes/import.php:143
1425
- #: modules/import-export/classes/import.php:183
1426
- #: modules/import-export/classes/import.php:559
1427
  msgid "Edit"
1428
  msgstr "Éditer"
1429
 
@@ -1511,10 +1703,12 @@ msgid "Usage"
1511
  msgstr "Utilisation"
1512
 
1513
  #: admin/includes/class-ad-groups-list.php:339
 
1514
  msgid "Invalid Ad Group"
1515
  msgstr "Groupe de pubs invalide."
1516
 
1517
  #: admin/includes/class-ad-groups-list.php:344
 
1518
  msgid "You don’t have permission to change the ad groups"
1519
  msgstr "Vous n’avez pas l’autorisation de modifier les groupes de pubs"
1520
 
@@ -1579,7 +1773,7 @@ msgid "Error while trying to register the license. Please contact support."
1579
  msgstr ""
1580
  "Erreur en essayant d’enregistrer la licence. Veuillez contacter le support."
1581
 
1582
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:40
1583
  msgid "Please enter a valid license key"
1584
  msgstr "Veuillez entrer une clé de licence valide"
1585
 
@@ -1588,7 +1782,6 @@ msgid "This is the bundle license key."
1588
  msgstr "Il s’agit de la clé de licence du package (bundle)."
1589
 
1590
  #: admin/includes/class-licenses.php:148
1591
- #: modules/marketpress-license/main.php:132
1592
  msgid "This is not the correct key for this add-on."
1593
  msgstr "Ce n’est pas la clé correcte pour ce module."
1594
 
@@ -1609,23 +1802,15 @@ msgstr "Emplacements de la pub"
1609
  msgid "Advanced Ads Settings"
1610
  msgstr "Réglages d’Advanced Ads"
1611
 
1612
- #: admin/includes/class-menu.php:79 admin/views/debug.php:9
1613
  msgid "Settings"
1614
  msgstr "Réglages"
1615
 
1616
- #: admin/includes/class-menu.php:82
1617
- msgid "Advanced Ads Debugging"
1618
- msgstr "Débogage Advanced Ads"
1619
-
1620
- #: admin/includes/class-menu.php:82
1621
- msgid "Debug"
1622
- msgstr "Débogage"
1623
-
1624
- #: admin/includes/class-menu.php:190 admin/includes/class-menu.php:217
1625
  msgid "Sorry, you are not allowed to access this feature."
1626
  msgstr "Désolé, vous n’êtes pas autorisé à accéder à cette fonctionnalité."
1627
 
1628
- #: admin/includes/class-menu.php:203
1629
  msgid ""
1630
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1631
  "deleted?"
@@ -1684,7 +1869,7 @@ msgstr "Téléchargez le tutoriel par e-mail"
1684
  msgid "Get AdSense tips via email"
1685
  msgstr "Recevez des conseils de Adsense par e-mail"
1686
 
1687
- #: admin/includes/class-notices.php:417
1688
  #, php-format
1689
  msgid ""
1690
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
@@ -1693,14 +1878,14 @@ msgstr ""
1693
  "Vous ne semblez pas avoir une adresse e-mail. Veuillez utiliser <a "
1694
  "href=\"%s\" target=\"_blank\">ce formulaire</a> pour vous inscrire."
1695
 
1696
- #: admin/includes/class-notices.php:435
1697
  msgid ""
1698
  "How embarrassing. The email server seems to be down. Please try again later."
1699
  msgstr ""
1700
  "Quelle honte. Le serveur de messagerie semble être à l’arrêt. Veuillez "
1701
  "réessayer ultérieurement."
1702
 
1703
- #: admin/includes/class-notices.php:440
1704
  #, php-format
1705
  msgid ""
1706
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -2217,19 +2402,6 @@ msgstr ""
2217
  #: admin/includes/notices.php:47
2218
  #, php-format
2219
  msgid ""
2220
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
2221
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
2222
- "before it expires with a significant discount on <a href=\"%s\" "
2223
- "target=\"_blank\">the add-on page</a>."
2224
- msgstr ""
2225
- "Une ou plusieurs licences pour vos <strong>Advanced Ads Add-ons arrivent "
2226
- "bientôt à expiration</strong>. Ne risquez pas de perdre le support et mises "
2227
- "à jour et renouveler votre licence avant sa date d’expiration avec un rabais "
2228
- "significatif sur <a href=\"%s\" target=\"_blank\">la page Add-on</a>."
2229
-
2230
- #: admin/includes/notices.php:53
2231
- #, php-format
2232
- msgid ""
2233
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2234
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2235
  "information."
@@ -2238,7 +2410,7 @@ msgstr ""
2238
  "à jour sont désactivées. S’il vous plaît, visitez <a href=\"%s\">la page de "
2239
  "licence</a> pour plus d’informations."
2240
 
2241
- #: admin/includes/notices.php:59
2242
  #, php-format
2243
  msgid ""
2244
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
@@ -2258,7 +2430,7 @@ msgstr ""
2258
  "href=\"%2$s\" target=\"_blank\">laissez un avis de 5 étoiles sur wordpress."
2259
  "org</a>.</p><p><em>Thomas</em>"
2260
 
2261
- #: admin/includes/notices.php:65
2262
  #, php-format
2263
  msgid ""
2264
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
@@ -2382,16 +2554,16 @@ msgstr "Type: %s"
2382
  msgid "ID: %s"
2383
  msgstr "ID: %s"
2384
 
2385
- #: admin/views/ad-group.php:18
2386
  msgid "Ad Groups successfully updated"
2387
  msgstr "Groupes de pubs mis à jour avec succès"
2388
 
2389
- #: admin/views/ad-group.php:46
2390
  #, php-format
2391
  msgid "Search results for &#8220;%s&#8221;"
2392
  msgstr "Résultats de recherche pour &#8220;%s&#8221;"
2393
 
2394
- #: admin/views/ad-group.php:52
2395
  msgid ""
2396
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2397
  "display random ads in the frontend or run split tests, but also just for "
@@ -2404,7 +2576,7 @@ msgstr ""
2404
  "d’informatif. Non seulement un groupes de pubs peut avoir des pubs multiples,"
2405
  " mais une pub peut aussi appartenir à plusieurs groupes de pubs."
2406
 
2407
- #: admin/views/ad-group.php:79
2408
  msgid "Update Groups"
2409
  msgstr "Mettre à jour les Groupes"
2410
 
@@ -2636,26 +2808,14 @@ msgstr "seulement sur les appareils mobiles"
2636
  msgid "not on mobile devices"
2637
  msgstr "pas sur les appareils mobiles"
2638
 
2639
- #: admin/views/debug.php:6 admin/views/settings.php:50
2640
- msgid "Debug Page"
2641
- msgstr "Page de débogage"
2642
-
2643
- #: admin/views/debug.php:7
2644
- msgid "Work in progress"
2645
- msgstr "Travail en cours"
2646
-
2647
  #: admin/views/feedback-disable.php:4
2648
  msgid "Why did you decide to disable Advanced Ads?"
2649
  msgstr "Pourquoi avez-vous décidé de désactiver Advanced Ads?"
2650
 
2651
- #: admin/views/feedback-disable.php:18
2652
  msgid "other reason"
2653
  msgstr "autre raison"
2654
 
2655
- #: admin/views/feedback-disable.php:19
2656
- msgid "Please specify, if possible"
2657
- msgstr "Veuillez préciser, si possible"
2658
-
2659
  #: admin/views/placements-content-index.php:1
2660
  msgid "after"
2661
  msgstr "après"
@@ -2813,20 +2973,20 @@ msgstr "Désactiver les pubs sur cette page"
2813
  msgid "Your license expired."
2814
  msgstr "Votre licence est expirée."
2815
 
2816
- #: admin/views/setting-license.php:18
2817
  #, php-format
2818
  msgid "(%d days left)"
2819
  msgstr "(%d jours restants)"
2820
 
2821
- #: admin/views/setting-license.php:22
2822
  msgid "License key"
2823
  msgstr "Clef de la licence"
2824
 
2825
- #: admin/views/setting-license.php:42
2826
  msgid "License key invalid"
2827
  msgstr "Clé de licence invalide"
2828
 
2829
- #: admin/views/setting-license.php:45
2830
  msgid "active"
2831
  msgstr "active"
2832
 
@@ -2876,15 +3036,15 @@ msgstr ""
2876
  msgid "Save settings on this page"
2877
  msgstr "Enregistrer les paramètres sur cette page"
2878
 
2879
- #: admin/views/settings.php:51
2880
  msgid "Advanced Ads on WordPress.org"
2881
  msgstr "Advanced Ads sur WordPress.org"
2882
 
2883
- #: admin/views/settings.php:51
2884
  msgid "Advanced Ads on wp.org"
2885
  msgstr "Advanced Ads sur wp.org"
2886
 
2887
- #: admin/views/settings.php:52
2888
  msgid "the company behind Advanced Ads"
2889
  msgstr "la compagnie derrière Advanced Ads"
2890
 
@@ -3123,7 +3283,7 @@ msgstr "Pub AdSense"
3123
  msgid "Use ads from your Google AdSense account"
3124
  msgstr "Utiliser les pubs de votre compte Google AdSense"
3125
 
3126
- #: modules/gadsense/includes/class-ad-type-adsense.php:106
3127
  msgid "Your AdSense Publisher ID is missing."
3128
  msgstr "Votre identifiant d’éditeur (Publisher ID) AdSense est manquant."
3129
 
@@ -3181,7 +3341,7 @@ msgstr "S’il vous plaît <a href=\"%s\" target=\"_blank\">changez le ici</a>."
3181
  msgid "Normal"
3182
  msgstr "Normal"
3183
 
3184
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:71
3185
  msgid "Resizing"
3186
  msgstr "Redimensionnement"
3187
 
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: 2017-07-11 09:29+0000\n"
6
+ "PO-Revision-Date: 2017-07-11 09:29+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: French (France)\n"
9
  "Language: fr-FR\n"
108
  msgid "url"
109
  msgstr ""
110
 
 
 
 
 
 
 
 
111
  #: classes/ad_type_group.php:31
112
  msgid ""
113
  "Choose an existing ad group. Use this type when you want to assign the same "
142
  msgid "edit"
143
  msgstr ""
144
 
145
+ #: classes/ad_type_image.php:67
146
+ msgid "Link to target site"
147
+ msgstr ""
148
+
149
+ #: classes/ad_type_image.php:68
150
+ #, php-format
151
+ msgid ""
152
+ "Open this url in a new window and track impressions and clicks with the <a "
153
+ "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
154
+ msgstr ""
155
+
156
  #: classes/ad_type_plain.php:87
157
  msgid "Allow PHP"
158
  msgstr ""
159
 
160
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
161
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
162
+ #: classes/visitor-conditions.php:126
163
  msgid "is"
164
  msgstr ""
165
 
166
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
167
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
168
+ #: classes/visitor-conditions.php:127
169
  msgid "is not"
170
  msgstr ""
171
 
206
  msgid "Could not access filesystem."
207
  msgstr ""
208
 
209
+ #: classes/filesystem.php:65
210
+ msgid "Filesystem error."
211
+ msgstr ""
212
+
213
  #: classes/filesystem.php:72
214
  msgid "Unable to locate WordPress root directory."
215
  msgstr ""
285
  msgid "highlight ads"
286
  msgstr ""
287
 
288
+ #: classes/frontend_checks.php:315
289
+ #, php-format
290
+ msgid ""
291
+ "This ads was automatically placed here by AdSense. <a href=\"%s\" "
292
+ "target=\"_blank\" style=\"color:#fff;border-color:#fff;\">Click here to "
293
+ "learn more</a>."
294
+ msgstr ""
295
+
296
  #: classes/visitor-conditions.php:32
297
  msgid "device"
298
  msgstr ""
312
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
313
  msgstr ""
314
 
315
+ #: classes/widget.php:61
316
+ msgid "Title:"
317
+ msgstr ""
318
+
319
+ #: includes/array_ad_conditions.php:39
320
+ msgid "Post Types"
321
+ msgstr ""
322
+
323
+ #: includes/array_ad_conditions.php:45
324
+ msgid "Categories, Tags and Taxonomies"
325
+ msgstr ""
326
+
327
+ #: includes/array_ad_conditions.php:46
328
+ msgid ""
329
+ "Choose terms from public category, tag and other taxonomies a post must "
330
+ "belong to in order to have ads."
331
+ msgstr ""
332
+
333
+ #: includes/array_ad_conditions.php:51
334
+ msgid "Category Archives"
335
+ msgstr ""
336
+
337
+ #: includes/array_ad_conditions.php:52
338
+ msgid "comma seperated IDs of category archives"
339
+ msgstr ""
340
+
341
+ #: includes/array_ad_conditions.php:57
342
+ msgid "Individual Posts, Pages and Public Post Types"
343
+ msgstr ""
344
+
345
  #: public/class-advanced-ads.php:754
346
  msgctxt "label above ads"
347
  msgid "Advertisements"
356
  msgid "Add some"
357
  msgstr ""
358
 
359
+ #: admin/includes/class-ad-groups-list.php:318
360
+ msgid "Delete"
361
+ msgstr ""
362
+
363
+ #: admin/includes/class-ad-groups-list.php:374
364
+ msgid "No ad group created"
365
+ msgstr ""
366
+
367
+ #: admin/includes/class-ad-type.php:222
368
+ #, php-format
369
+ msgid "%s ad updated."
370
+ msgid_plural "%s ads updated."
371
+ msgstr[0] ""
372
+ msgstr[1] ""
373
+
374
+ #: admin/includes/class-ad-type.php:223
375
+ #, php-format
376
+ msgid "%s ad not updated, somebody is editing it."
377
+ msgid_plural "%s ads not updated, somebody is editing them."
378
+ msgstr[0] ""
379
+ msgstr[1] ""
380
+
381
+ #: admin/includes/class-ad-type.php:224
382
+ #, php-format
383
+ msgid "%s ad permanently deleted."
384
+ msgid_plural "%s ads permanently deleted."
385
+ msgstr[0] ""
386
+ msgstr[1] ""
387
+
388
+ #: admin/includes/class-ad-type.php:225
389
+ #, php-format
390
+ msgid "%s ad moved to the Trash."
391
+ msgid_plural "%s ads moved to the Trash."
392
+ msgstr[0] ""
393
+ msgstr[1] ""
394
+
395
+ #: admin/includes/class-ad-type.php:226
396
+ #, php-format
397
+ msgid "%s ad restored from the Trash."
398
+ msgid_plural "%s ads restored from the Trash."
399
+ msgstr[0] ""
400
+ msgstr[1] ""
401
+
402
  #: admin/includes/class-ad-type.php:518
403
  #, php-format
404
  msgid ""
414
  msgstr ""
415
 
416
  #: admin/includes/class-licenses.php:132
 
 
417
  msgid "License couldn’t be activated. Please try again later."
418
  msgstr ""
419
 
420
  #: admin/includes/class-licenses.php:149
 
421
  msgid "There are no activations left."
422
  msgstr ""
423
 
424
+ #: admin/includes/class-licenses.php:158
425
+ #, php-format
426
+ msgid "License is invalid. Reason: %s"
427
+ msgstr ""
428
+
429
  #: admin/includes/class-licenses.php:245 admin/includes/class-licenses.php:263
430
  msgid "License couldn’t be deactivated. Please try again later."
431
  msgstr ""
502
  "limitation and ads might show up again."
503
  msgstr ""
504
 
505
+ #: admin/includes/class-settings.php:439
506
+ msgctxt "label before ads"
507
+ msgid "Advertisements"
508
+ msgstr ""
509
+
510
  #: admin/includes/class-settings.php:446
511
  msgid "Displayed above ads."
512
  msgstr ""
519
  msgid "Disable shortcode button in visual editor."
520
  msgstr ""
521
 
522
+ #: admin/includes/class-shortcode-creator.php:155
523
  #, php-format
524
  msgid ""
525
  "Please, either switch off your ad blocker or disable the shortcode button in "
560
  msgstr ""
561
 
562
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
563
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:66
564
  msgid "manual"
565
  msgstr ""
566
 
567
+ #: admin/views/ad-group-edit.php:14
568
+ msgid "You did not select an item for editing."
569
+ msgstr ""
570
+
571
+ #: admin/views/ad-group-edit.php:33
572
+ msgctxt "Taxonomy Name"
573
+ msgid "Name"
574
+ msgstr ""
575
+
576
+ #: admin/views/ad-group-edit.php:38
577
+ msgctxt "Taxonomy Slug"
578
+ msgid "Slug"
579
+ msgstr ""
580
+
581
+ #: admin/views/ad-group-edit.php:45
582
+ msgctxt "Taxonomy Description"
583
+ msgid "Description"
584
+ msgstr ""
585
+
586
  #: admin/views/ad-group-list-form-row.php:57
587
  msgid "Visible ads"
588
  msgstr ""
589
 
590
+ #: admin/views/ad-group.php:18
591
+ msgid "Ad Group successfully created"
592
+ msgstr ""
593
+
594
+ #: admin/views/ad-group.php:65
595
+ msgid "Group title"
596
  msgstr ""
597
 
598
+ #: admin/views/ad-group.php:66
599
+ msgid "save"
600
+ msgstr ""
601
+
602
+ #: admin/views/ad-group.php:69
603
  #, php-format
604
  msgid ""
605
  "Find more information about ad groups in the <a href=\"%s\" "
632
  msgid "next"
633
  msgstr ""
634
 
635
+ #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-top.php:85
636
+ msgid "Stop Wizard and show all options"
637
+ msgstr ""
638
+
639
  #: admin/views/ad-info-top.php:5
640
  #, php-format
641
  msgid ""
694
  "the most common options are visible."
695
  msgstr ""
696
 
 
 
 
 
697
  #: admin/views/ad-list-no-ads.php:2
698
  msgid "Not many ads here yet. Get help from the following resources:"
699
  msgstr ""
724
  msgid "reserve this space"
725
  msgstr ""
726
 
727
+ #: admin/views/ad-submitbox-meta.php:12
728
+ msgid "Month"
729
+ msgstr ""
730
+
731
+ #: admin/views/ad-submitbox-meta.php:21
732
+ msgid "Day"
733
+ msgstr ""
734
+
735
+ #: admin/views/ad-submitbox-meta.php:22
736
+ msgid "Year"
737
+ msgstr ""
738
+
739
+ #: admin/views/ad-submitbox-meta.php:23
740
+ msgid "Hour"
741
+ msgstr ""
742
+
743
+ #: admin/views/ad-submitbox-meta.php:24
744
+ msgid "Minute"
745
+ msgstr ""
746
+
747
  #: admin/views/ad-visitor-metabox.php:7
748
  msgid ""
749
  "Click on the button below if the ad should NOT be visible to all visitors"
762
  msgstr ""
763
 
764
  #: admin/views/feedback-disable.php:7
765
+ msgid "I need help to set it up"
766
  msgstr ""
767
 
768
  #: admin/views/feedback-disable.php:8
769
+ msgid "I have a problem"
770
+ msgstr ""
771
+
772
+ #: admin/views/feedback-disable.php:9
773
  msgid "Please let us know how we can help"
774
  msgstr ""
775
 
776
+ #: admin/views/feedback-disable.php:12
777
  #, php-format
778
  msgid "Send me free help to %s"
779
  msgstr ""
780
 
781
+ #: admin/views/feedback-disable.php:14
782
  msgid "I miss a feature"
783
  msgstr ""
784
 
785
+ #: admin/views/feedback-disable.php:15 admin/views/feedback-disable.php:18
786
  msgid "Which one?"
787
  msgstr ""
788
 
789
+ #: admin/views/feedback-disable.php:16
790
  msgid "I don’t use ads on my site"
791
  msgstr ""
792
 
793
+ #: admin/views/feedback-disable.php:17
794
  msgid "I switched to another plugin"
795
  msgstr ""
796
 
797
+ #: admin/views/feedback-disable.php:20
798
+ msgid "Please specify"
799
  msgstr ""
800
 
801
  #: admin/views/feedback-disable.php:25
802
+ msgid "Submit & Deactivate"
803
  msgstr ""
804
 
805
  #: admin/views/feedback-disable.php:26
806
+ msgid "Only Deactivate"
807
+ msgstr ""
808
+
809
+ #: admin/views/feedback-disable.php:27
810
  msgid "don’t deactivate"
811
  msgstr ""
812
 
828
  msgid "template (PHP)"
829
  msgstr ""
830
 
831
+ #: admin/views/placements.php:94
832
+ msgid "position"
833
+ msgstr ""
834
+
835
+ #: admin/views/placements.php:119
836
+ msgid "ad label"
837
+ msgstr ""
838
+
839
  #: admin/views/placements.php:128
840
  msgid "show all options"
841
  msgstr ""
847
  "header of your website</a>."
848
  msgstr ""
849
 
850
+ #: admin/views/setting-license.php:15
851
  #, php-format
852
+ msgid ""
853
+ "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
854
+ "target=\"_blank\">renew your license with a discount</a>."
855
+ msgstr ""
856
+
857
+ #: admin/views/setting-license.php:41
858
+ msgid "Deactivate License"
859
+ msgstr ""
860
+
861
+ #: admin/views/setting-license.php:47
862
+ msgid "Update License"
863
+ msgstr ""
864
+
865
+ #: admin/views/setting-license.php:47
866
+ msgid "Activate License"
867
  msgstr ""
868
 
869
  #: admin/views/settings-disable-ads.php:21
898
  "href=\"%s\" target=\"_blank\">support page</a>."
899
  msgstr ""
900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
901
  #: public/views/ad-debug.php:18
902
  msgid "Ad debug output"
903
  msgstr ""
941
  msgid "Please enter XML content"
942
  msgstr ""
943
 
944
+ #: modules/import-export/classes/import.php:145
945
+ #: modules/import-export/classes/import.php:561
946
  #, php-format
947
  msgid "New attachment created <em>%s</em> %s"
948
  msgstr ""
949
 
950
+ #: modules/import-export/classes/import.php:177
951
  #, php-format
952
  msgid "Failed to import <em>%s</em>"
953
  msgstr ""
954
 
955
+ #: modules/import-export/classes/import.php:185
956
  #, php-format
957
  msgid "New ad created: <em>%s</em> %s"
958
  msgstr ""
959
 
960
+ #: modules/import-export/classes/import.php:228
961
  #, php-format
962
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
963
  msgstr ""
964
 
965
+ #: modules/import-export/classes/import.php:290
966
  #, php-format
967
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
968
  msgstr ""
969
 
970
+ #: modules/import-export/classes/import.php:292
971
  #, php-format
972
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
973
  msgstr ""
974
 
975
+ #: modules/import-export/classes/import.php:357
976
  #, php-format
977
  msgid "Placement <em>%s</em> created"
978
  msgstr ""
979
 
980
+ #: modules/import-export/classes/import.php:472
981
  #, php-format
982
  msgid "Option was updated: <em>%s</em>"
983
  msgstr ""
984
 
985
+ #: modules/import-export/classes/import.php:475
986
  #, php-format
987
  msgid "Option already exists: <em>%s</em>"
988
  msgstr ""
989
 
990
+ #: modules/import-export/classes/import.php:497
991
  #, php-format
992
  msgid "Failed to create import directory <em>%s</em>"
993
  msgstr ""
994
 
995
+ #: modules/import-export/classes/import.php:502
996
  #, php-format
997
  msgid "Import directory is not writable: <em>%s</em>"
998
  msgstr ""
999
 
1000
+ #: modules/import-export/classes/import.php:510
1001
  msgid ""
1002
  "File is empty, uploads are disabled or post_max_size is smaller than "
1003
  "upload_max_filesize in php.ini"
1004
  msgstr ""
1005
 
1006
+ #: modules/import-export/classes/import.php:520
1007
  #, php-format
1008
  msgid "Failed to upload file, error: <em>%s</em>"
1009
  msgstr ""
1010
 
1011
+ #: modules/import-export/classes/import.php:525
1012
  msgid "File is empty."
1013
  msgstr ""
1014
 
1015
+ #: modules/import-export/classes/import.php:530
1016
  #, php-format
1017
  msgid ""
1018
  "The file could not be created: <em>%s</em>. This is probably a permissions "
1019
  "problem"
1020
  msgstr ""
1021
 
1022
+ #: modules/import-export/classes/import.php:603
1023
  #, php-format
1024
  msgid "Invalid filetype <em>%s</em>"
1025
  msgstr ""
1026
 
1027
+ #: modules/import-export/classes/import.php:608
1028
+ #: modules/import-export/classes/import.php:615
1029
+ #: modules/import-export/classes/import.php:623
1030
+ #: modules/import-export/classes/import.php:638
1031
  #, php-format
1032
  msgid "Error getting remote image <em>%s</em>"
1033
  msgstr ""
1034
 
1035
+ #: modules/import-export/classes/import.php:632
1036
  #, php-format
1037
  msgid "Zero size file downloaded <em>%s</em>"
1038
  msgstr ""
1075
  "to save to your computer."
1076
  msgstr ""
1077
 
1078
+ #: modules/import-export/views/page.php:28
1079
+ msgid "Download Export File"
1080
+ msgstr ""
1081
+
1082
  #: modules/import-export/views/page.php:33
1083
  msgid "Import"
1084
  msgstr ""
1091
  msgid "Copy an XML content"
1092
  msgstr ""
1093
 
1094
+ #: modules/import-export/views/page.php:52
1095
+ msgid ""
1096
+ "Before you can upload your import file, you will need to fix the following "
1097
+ "error:"
1098
+ msgstr ""
1099
+
1100
+ #: modules/import-export/views/page.php:57
1101
+ #, php-format
1102
+ msgid "Maximum size: %s"
1103
+ msgstr ""
1104
+
1105
  #: modules/import-export/views/page.php:66
1106
  msgid "Start import"
1107
  msgstr ""
1149
  msgid "Link ads (Responsive)"
1150
  msgstr ""
1151
 
1152
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:63
1153
+ msgid "InArticle"
1154
+ msgstr ""
1155
+
1156
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
1157
+ msgid "InFeed"
1158
+ msgstr ""
1159
+
1160
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:70
1161
  #, php-format
1162
  msgid ""
1163
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
1165
  "vertical, or rectangle formats."
1166
  msgstr ""
1167
 
1168
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:81
1169
+ msgid "Tutorial: How to place ads between posts?"
1170
+ msgstr ""
1171
+
1172
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
1173
+ msgid "Layout"
1174
+ msgstr ""
1175
+
1176
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:86
1177
+ msgid "Layout-Key"
1178
+ msgstr ""
1179
+
1180
  #: admin/class-advanced-ads-admin.php:300
1181
  #, php-format
1182
  msgid "time of %s"
1183
  msgstr "temps de %s"
1184
 
1185
+ #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:83
1186
+ #: admin/includes/class-menu.php:83
1187
  msgid "Support"
1188
  msgstr "Support"
1189
 
1348
  msgid "post type"
1349
  msgstr "Type d’article"
1350
 
1351
+ #: classes/display-conditions.php:70 includes/array_ad_conditions.php:40
1352
  msgid "Choose the public post types on which to display the ad."
1353
  msgstr "Choisir les types d’article public sur lequel afficher la pub."
1354
 
1356
  msgid "specific pages"
1357
  msgstr "pages spécifiques"
1358
 
1359
+ #: classes/display-conditions.php:77 includes/array_ad_conditions.php:58
1360
  msgid ""
1361
  "Choose on which individual posts, pages and public post type pages you want "
1362
  "to display or hide ads."
1392
  msgid "term name or id"
1393
  msgstr "nom du terme ou id"
1394
 
1395
+ #: classes/display-conditions.php:469 includes/array_ad_conditions.php:63
1396
  msgid "Home Page"
1397
  msgstr "Page d’accueil"
1398
 
1399
+ #: classes/display-conditions.php:470 includes/array_ad_conditions.php:64
1400
  msgid "show on Home page"
1401
  msgstr "voir sur page d’accueil"
1402
 
1403
+ #: classes/display-conditions.php:474 includes/array_ad_conditions.php:68
1404
  msgid "Singular Pages"
1405
  msgstr "Pages particulières"
1406
 
1407
+ #: classes/display-conditions.php:475 includes/array_ad_conditions.php:69
1408
  msgid "show on singular pages/posts"
1409
  msgstr "afficher sur les articles particuliers ou pages particulières"
1410
 
1411
+ #: classes/display-conditions.php:479 includes/array_ad_conditions.php:73
1412
  msgid "Archive Pages"
1413
  msgstr "Pages d’archive"
1414
 
1415
+ #: classes/display-conditions.php:480 includes/array_ad_conditions.php:74
1416
  msgid "show on any type of archive page (category, tag, author and date)"
1417
  msgstr ""
1418
  "afficher sur n’importe quel type de page d’archive (catégorie, mot-clé, "
1419
  "auteur et date)"
1420
 
1421
+ #: classes/display-conditions.php:484 includes/array_ad_conditions.php:78
1422
  msgid "Search Results"
1423
  msgstr "Résultats de recherche"
1424
 
1425
+ #: classes/display-conditions.php:485 includes/array_ad_conditions.php:79
1426
  msgid "show on search result pages"
1427
  msgstr "montrer sur les pages de résultats de recherche"
1428
 
1429
+ #: classes/display-conditions.php:489 includes/array_ad_conditions.php:83
1430
  msgid "404 Page"
1431
  msgstr "Page 404"
1432
 
1433
+ #: classes/display-conditions.php:490 includes/array_ad_conditions.php:84
1434
  msgid "show on 404 error page"
1435
  msgstr "afficher sur la page d’erreur 404"
1436
 
1437
+ #: classes/display-conditions.php:494 includes/array_ad_conditions.php:88
1438
  msgid "Attachment Pages"
1439
  msgstr "Pages de pièce jointe"
1440
 
1441
+ #: classes/display-conditions.php:495 includes/array_ad_conditions.php:89
1442
  msgid "show on attachment pages"
1443
  msgstr "afficher sur les pages de pièce jointe"
1444
 
1445
+ #: classes/display-conditions.php:499 includes/array_ad_conditions.php:93
1446
  msgid "Secondary Queries"
1447
  msgstr "Requêtes secondaires"
1448
 
1449
+ #: classes/display-conditions.php:500 includes/array_ad_conditions.php:94
1450
  msgid "allow ads in secondary queries"
1451
  msgstr "autoriser les pubs dans les requêtes secondaires"
1452
 
1613
 
1614
  #: public/class-advanced-ads.php:621
1615
  #: admin/includes/class-ad-groups-list.php:308
1616
+ #: modules/import-export/classes/import.php:144
1617
+ #: modules/import-export/classes/import.php:184
1618
+ #: modules/import-export/classes/import.php:560
1619
  msgid "Edit"
1620
  msgstr "Éditer"
1621
 
1703
  msgstr "Utilisation"
1704
 
1705
  #: admin/includes/class-ad-groups-list.php:339
1706
+ #: admin/includes/class-ad-groups-list.php:389
1707
  msgid "Invalid Ad Group"
1708
  msgstr "Groupe de pubs invalide."
1709
 
1710
  #: admin/includes/class-ad-groups-list.php:344
1711
+ #: admin/includes/class-ad-groups-list.php:394
1712
  msgid "You don’t have permission to change the ad groups"
1713
  msgstr "Vous n’avez pas l’autorisation de modifier les groupes de pubs"
1714
 
1773
  msgstr ""
1774
  "Erreur en essayant d’enregistrer la licence. Veuillez contacter le support."
1775
 
1776
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
1777
  msgid "Please enter a valid license key"
1778
  msgstr "Veuillez entrer une clé de licence valide"
1779
 
1782
  msgstr "Il s’agit de la clé de licence du package (bundle)."
1783
 
1784
  #: admin/includes/class-licenses.php:148
 
1785
  msgid "This is not the correct key for this add-on."
1786
  msgstr "Ce n’est pas la clé correcte pour ce module."
1787
 
1802
  msgid "Advanced Ads Settings"
1803
  msgstr "Réglages d’Advanced Ads"
1804
 
1805
+ #: admin/includes/class-menu.php:79
1806
  msgid "Settings"
1807
  msgstr "Réglages"
1808
 
1809
+ #: admin/includes/class-menu.php:173 admin/includes/class-menu.php:200
 
 
 
 
 
 
 
 
1810
  msgid "Sorry, you are not allowed to access this feature."
1811
  msgstr "Désolé, vous n’êtes pas autorisé à accéder à cette fonctionnalité."
1812
 
1813
+ #: admin/includes/class-menu.php:186
1814
  msgid ""
1815
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1816
  "deleted?"
1869
  msgid "Get AdSense tips via email"
1870
  msgstr "Recevez des conseils de Adsense par e-mail"
1871
 
1872
+ #: admin/includes/class-notices.php:408
1873
  #, php-format
1874
  msgid ""
1875
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
1878
  "Vous ne semblez pas avoir une adresse e-mail. Veuillez utiliser <a "
1879
  "href=\"%s\" target=\"_blank\">ce formulaire</a> pour vous inscrire."
1880
 
1881
+ #: admin/includes/class-notices.php:426
1882
  msgid ""
1883
  "How embarrassing. The email server seems to be down. Please try again later."
1884
  msgstr ""
1885
  "Quelle honte. Le serveur de messagerie semble être à l’arrêt. Veuillez "
1886
  "réessayer ultérieurement."
1887
 
1888
+ #: admin/includes/class-notices.php:431
1889
  #, php-format
1890
  msgid ""
1891
  "Please check your email (%s) for the confirmation message. If you didn’t "
2402
  #: admin/includes/notices.php:47
2403
  #, php-format
2404
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
2405
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2406
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2407
  "information."
2410
  "à jour sont désactivées. S’il vous plaît, visitez <a href=\"%s\">la page de "
2411
  "licence</a> pour plus d’informations."
2412
 
2413
+ #: admin/includes/notices.php:53
2414
  #, php-format
2415
  msgid ""
2416
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
2430
  "href=\"%2$s\" target=\"_blank\">laissez un avis de 5 étoiles sur wordpress."
2431
  "org</a>.</p><p><em>Thomas</em>"
2432
 
2433
+ #: admin/includes/notices.php:59
2434
  #, php-format
2435
  msgid ""
2436
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
2554
  msgid "ID: %s"
2555
  msgstr "ID: %s"
2556
 
2557
+ #: admin/views/ad-group.php:29
2558
  msgid "Ad Groups successfully updated"
2559
  msgstr "Groupes de pubs mis à jour avec succès"
2560
 
2561
+ #: admin/views/ad-group.php:59
2562
  #, php-format
2563
  msgid "Search results for &#8220;%s&#8221;"
2564
  msgstr "Résultats de recherche pour &#8220;%s&#8221;"
2565
 
2566
+ #: admin/views/ad-group.php:68
2567
  msgid ""
2568
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2569
  "display random ads in the frontend or run split tests, but also just for "
2576
  "d’informatif. Non seulement un groupes de pubs peut avoir des pubs multiples,"
2577
  " mais une pub peut aussi appartenir à plusieurs groupes de pubs."
2578
 
2579
+ #: admin/views/ad-group.php:96
2580
  msgid "Update Groups"
2581
  msgstr "Mettre à jour les Groupes"
2582
 
2808
  msgid "not on mobile devices"
2809
  msgstr "pas sur les appareils mobiles"
2810
 
 
 
 
 
 
 
 
 
2811
  #: admin/views/feedback-disable.php:4
2812
  msgid "Why did you decide to disable Advanced Ads?"
2813
  msgstr "Pourquoi avez-vous décidé de désactiver Advanced Ads?"
2814
 
2815
+ #: admin/views/feedback-disable.php:19
2816
  msgid "other reason"
2817
  msgstr "autre raison"
2818
 
 
 
 
 
2819
  #: admin/views/placements-content-index.php:1
2820
  msgid "after"
2821
  msgstr "après"
2973
  msgid "Your license expired."
2974
  msgstr "Votre licence est expirée."
2975
 
2976
+ #: admin/views/setting-license.php:27
2977
  #, php-format
2978
  msgid "(%d days left)"
2979
  msgstr "(%d jours restants)"
2980
 
2981
+ #: admin/views/setting-license.php:31
2982
  msgid "License key"
2983
  msgstr "Clef de la licence"
2984
 
2985
+ #: admin/views/setting-license.php:51
2986
  msgid "License key invalid"
2987
  msgstr "Clé de licence invalide"
2988
 
2989
+ #: admin/views/setting-license.php:54
2990
  msgid "active"
2991
  msgstr "active"
2992
 
3036
  msgid "Save settings on this page"
3037
  msgstr "Enregistrer les paramètres sur cette page"
3038
 
3039
+ #: admin/views/settings.php:50
3040
  msgid "Advanced Ads on WordPress.org"
3041
  msgstr "Advanced Ads sur WordPress.org"
3042
 
3043
+ #: admin/views/settings.php:50
3044
  msgid "Advanced Ads on wp.org"
3045
  msgstr "Advanced Ads sur wp.org"
3046
 
3047
+ #: admin/views/settings.php:51
3048
  msgid "the company behind Advanced Ads"
3049
  msgstr "la compagnie derrière Advanced Ads"
3050
 
3283
  msgid "Use ads from your Google AdSense account"
3284
  msgstr "Utiliser les pubs de votre compte Google AdSense"
3285
 
3286
+ #: modules/gadsense/includes/class-ad-type-adsense.php:108
3287
  msgid "Your AdSense Publisher ID is missing."
3288
  msgstr "Votre identifiant d’éditeur (Publisher ID) AdSense est manquant."
3289
 
3341
  msgid "Normal"
3342
  msgstr "Normal"
3343
 
3344
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:73
3345
  msgid "Resizing"
3346
  msgstr "Redimensionnement"
3347
 
languages/advanced-ads-it_IT.mo CHANGED
Binary file
languages/advanced-ads-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Advanved Ads\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-22 13:16+0000\n"
6
- "PO-Revision-Date: 2017-06-22 13:16+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Italian\n"
9
  "Language: it-IT\n"
@@ -41,8 +41,8 @@ msgstr ""
41
  msgid "time of %s"
42
  msgstr ""
43
 
44
- #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:86
45
- #: admin/includes/class-menu.php:86
46
  msgid "Support"
47
  msgstr ""
48
 
@@ -191,13 +191,6 @@ msgstr ""
191
  msgid "url"
192
  msgstr ""
193
 
194
- #: classes/ad_type_dummy.php:49 classes/ad_type_image.php:68
195
- #, php-format
196
- msgid ""
197
- "Open this url in a new window and track impressions and clicks with the <a "
198
- "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
199
- msgstr ""
200
-
201
  #: classes/ad_type_group.php:31
202
  msgid ""
203
  "Choose an existing ad group. Use this type when you want to assign the same "
@@ -232,6 +225,17 @@ msgstr ""
232
  msgid "edit"
233
  msgstr ""
234
 
 
 
 
 
 
 
 
 
 
 
 
235
  #: classes/ad_type_plain.php:87
236
  msgid "Allow PHP"
237
  msgstr ""
@@ -267,11 +271,13 @@ msgstr ""
267
 
268
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
269
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
 
270
  msgid "is"
271
  msgstr ""
272
 
273
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
274
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
 
275
  msgid "is not"
276
  msgstr ""
277
 
@@ -302,35 +308,35 @@ msgstr ""
302
  msgid "title or id"
303
  msgstr ""
304
 
305
- #: classes/display-conditions.php:470
306
  msgid "show on Home page"
307
  msgstr ""
308
 
309
- #: classes/display-conditions.php:475
310
  msgid "show on singular pages/posts"
311
  msgstr ""
312
 
313
- #: classes/display-conditions.php:480
314
  msgid "show on any type of archive page (category, tag, author and date)"
315
  msgstr ""
316
 
317
- #: classes/display-conditions.php:485
318
  msgid "show on search result pages"
319
  msgstr ""
320
 
321
- #: classes/display-conditions.php:490
322
  msgid "show on 404 error page"
323
  msgstr ""
324
 
325
- #: classes/display-conditions.php:495
326
  msgid "show on attachment pages"
327
  msgstr ""
328
 
329
- #: classes/display-conditions.php:499
330
  msgid "Secondary Queries"
331
  msgstr ""
332
 
333
- #: classes/display-conditions.php:500
334
  msgid "allow ads in secondary queries"
335
  msgstr ""
336
 
@@ -359,6 +365,10 @@ msgstr ""
359
  msgid "Could not access filesystem."
360
  msgstr ""
361
 
 
 
 
 
362
  #: classes/filesystem.php:72
363
  msgid "Unable to locate WordPress root directory."
364
  msgstr ""
@@ -434,6 +444,14 @@ msgstr ""
434
  msgid "highlight ads"
435
  msgstr ""
436
 
 
 
 
 
 
 
 
 
437
  #: classes/visitor-conditions.php:32
438
  msgid "device"
439
  msgstr ""
@@ -521,6 +539,36 @@ msgstr ""
521
  msgid "does not match regex"
522
  msgstr ""
523
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524
  #: public/class-advanced-ads.php:317
525
  msgid "Advanced Ads Error following:"
526
  msgstr ""
@@ -590,14 +638,24 @@ msgstr ""
590
  msgid "Usage"
591
  msgstr ""
592
 
 
 
 
 
593
  #: admin/includes/class-ad-groups-list.php:339
 
594
  msgid "Invalid Ad Group"
595
  msgstr ""
596
 
597
  #: admin/includes/class-ad-groups-list.php:344
 
598
  msgid "You don’t have permission to change the ad groups"
599
  msgstr ""
600
 
 
 
 
 
601
  #: admin/includes/class-ad-type.php:97 admin/includes/class-ad-type.php:102
602
  msgid "Ad Details"
603
  msgstr ""
@@ -618,6 +676,41 @@ msgstr ""
618
  msgid "planned"
619
  msgstr ""
620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
621
  #: admin/includes/class-ad-type.php:514 admin/includes/class-ad-type.php:515
622
  msgid "Ad updated."
623
  msgstr ""
@@ -672,13 +765,11 @@ msgstr ""
672
  msgid "Error while trying to register the license. Please contact support."
673
  msgstr ""
674
 
675
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:40
676
  msgid "Please enter a valid license key"
677
  msgstr ""
678
 
679
  #: admin/includes/class-licenses.php:132
680
- #: modules/marketpress-license/main.php:65
681
- #: modules/marketpress-license/main.php:77
682
  msgid "License couldn’t be activated. Please try again later."
683
  msgstr ""
684
 
@@ -687,15 +778,18 @@ msgid "This is the bundle license key."
687
  msgstr ""
688
 
689
  #: admin/includes/class-licenses.php:148
690
- #: modules/marketpress-license/main.php:132
691
  msgid "This is not the correct key for this add-on."
692
  msgstr ""
693
 
694
  #: admin/includes/class-licenses.php:149
695
- #: modules/marketpress-license/main.php:130
696
  msgid "There are no activations left."
697
  msgstr ""
698
 
 
 
 
 
 
699
  #: admin/includes/class-licenses.php:218
700
  msgid "Error while trying to disable the license. Please contact support."
701
  msgstr ""
@@ -716,11 +810,11 @@ msgid ""
716
  "."
717
  msgstr ""
718
 
719
- #: admin/includes/class-menu.php:190 admin/includes/class-menu.php:217
720
  msgid "Sorry, you are not allowed to access this feature."
721
  msgstr ""
722
 
723
- #: admin/includes/class-menu.php:203
724
  msgid ""
725
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
726
  "deleted?"
@@ -773,19 +867,19 @@ msgstr ""
773
  msgid "Get AdSense tips via email"
774
  msgstr ""
775
 
776
- #: admin/includes/class-notices.php:417
777
  #, php-format
778
  msgid ""
779
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
780
  "target=\"_blank\">this form</a> to sign up."
781
  msgstr ""
782
 
783
- #: admin/includes/class-notices.php:435
784
  msgid ""
785
  "How embarrassing. The email server seems to be down. Please try again later."
786
  msgstr ""
787
 
788
- #: admin/includes/class-notices.php:440
789
  #, php-format
790
  msgid ""
791
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -1181,6 +1275,11 @@ msgid ""
1181
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1182
  msgstr ""
1183
 
 
 
 
 
 
1184
  #: admin/includes/class-settings.php:446
1185
  msgid "Displayed above ads."
1186
  msgstr ""
@@ -1193,7 +1292,7 @@ msgstr ""
1193
  msgid "Disable shortcode button in visual editor."
1194
  msgstr ""
1195
 
1196
- #: admin/includes/class-shortcode-creator.php:154
1197
  #, php-format
1198
  msgid ""
1199
  "Please, either switch off your ad blocker or disable the shortcode button in "
@@ -1247,21 +1346,12 @@ msgstr ""
1247
  #: admin/includes/notices.php:47
1248
  #, php-format
1249
  msgid ""
1250
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1251
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1252
- "before it expires with a significant discount on <a href=\"%s\" "
1253
- "target=\"_blank\">the add-on page</a>."
1254
- msgstr ""
1255
-
1256
- #: admin/includes/notices.php:53
1257
- #, php-format
1258
- msgid ""
1259
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1260
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1261
  "information."
1262
  msgstr ""
1263
 
1264
- #: admin/includes/notices.php:59
1265
  #, php-format
1266
  msgid ""
1267
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
@@ -1273,7 +1363,7 @@ msgid ""
1273
  "org</a>.</p><p><em>Thomas</em>"
1274
  msgstr ""
1275
 
1276
- #: admin/includes/notices.php:65
1277
  #, php-format
1278
  msgid ""
1279
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
@@ -1331,7 +1421,7 @@ msgid "Forced to OR."
1331
  msgstr ""
1332
 
1333
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
1334
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
1335
  msgid "manual"
1336
  msgstr ""
1337
 
@@ -1348,6 +1438,25 @@ msgstr ""
1348
  msgid "add"
1349
  msgstr ""
1350
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1351
  #: admin/views/ad-group-list-ads.php:3
1352
  msgid "weight"
1353
  msgstr ""
@@ -1387,23 +1496,29 @@ msgid "ID: %s"
1387
  msgstr ""
1388
 
1389
  #: admin/views/ad-group.php:18
 
 
 
 
1390
  msgid "Ad Groups successfully updated"
1391
  msgstr ""
1392
 
1393
- #: admin/views/ad-group.php:53
1394
- msgid ""
1395
- "You can create a new group through the <em>Ad Groups</em> widget on the ad "
1396
- "edit page."
1397
  msgstr ""
1398
 
1399
- #: admin/views/ad-group.php:53
 
 
 
 
1400
  #, php-format
1401
  msgid ""
1402
  "Find more information about ad groups in the <a href=\"%s\" "
1403
  "target=\"_blank\">manual</a>."
1404
  msgstr ""
1405
 
1406
- #: admin/views/ad-group.php:79
1407
  msgid "Update Groups"
1408
  msgstr ""
1409
 
@@ -1433,6 +1548,10 @@ msgctxt "wizard navigation"
1433
  msgid "next"
1434
  msgstr ""
1435
 
 
 
 
 
1436
  #: admin/views/ad-info-top.php:5
1437
  #, php-format
1438
  msgid ""
@@ -1498,10 +1617,6 @@ msgid ""
1498
  "the most common options are visible."
1499
  msgstr ""
1500
 
1501
- #: admin/views/ad-info-top.php:85
1502
- msgid "Stop Wizard and show all options"
1503
- msgstr ""
1504
-
1505
  #: admin/views/ad-info.php:5
1506
  msgid "theme function"
1507
  msgstr ""
@@ -1628,12 +1743,32 @@ msgstr ""
1628
  msgid "Set expiry date"
1629
  msgstr ""
1630
 
 
 
 
 
1631
  #: admin/views/ad-submitbox-meta.php:16
1632
  #, php-format
1633
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1634
  msgid "%1$s-%2$s"
1635
  msgstr ""
1636
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1637
  #: admin/views/ad-submitbox-meta.php:29
1638
  #, php-format
1639
  msgctxt ""
@@ -1689,51 +1824,55 @@ msgid "It is only temporary"
1689
  msgstr ""
1690
 
1691
  #: admin/views/feedback-disable.php:7
1692
- msgid "I have a problem"
1693
  msgstr ""
1694
 
1695
  #: admin/views/feedback-disable.php:8
 
 
 
 
1696
  msgid "Please let us know how we can help"
1697
  msgstr ""
1698
 
1699
- #: admin/views/feedback-disable.php:11
1700
  #, php-format
1701
  msgid "Send me free help to %s"
1702
  msgstr ""
1703
 
1704
- #: admin/views/feedback-disable.php:13
1705
  msgid "I miss a feature"
1706
  msgstr ""
1707
 
1708
- #: admin/views/feedback-disable.php:14 admin/views/feedback-disable.php:17
1709
  msgid "Which one?"
1710
  msgstr ""
1711
 
1712
- #: admin/views/feedback-disable.php:15
1713
  msgid "I don’t use ads on my site"
1714
  msgstr ""
1715
 
1716
- #: admin/views/feedback-disable.php:16
1717
  msgid "I switched to another plugin"
1718
  msgstr ""
1719
 
1720
- #: admin/views/feedback-disable.php:18
1721
  msgid "other reason"
1722
  msgstr ""
1723
 
1724
- #: admin/views/feedback-disable.php:19
1725
- msgid "Please specify, if possible"
1726
  msgstr ""
1727
 
1728
- #: admin/views/feedback-disable.php:24
1729
  msgid "Submit & Deactivate"
1730
  msgstr ""
1731
 
1732
- #: admin/views/feedback-disable.php:25
1733
  msgid "Only Deactivate"
1734
  msgstr ""
1735
 
1736
- #: admin/views/feedback-disable.php:26
1737
  msgid "don’t deactivate"
1738
  msgstr ""
1739
 
@@ -1794,6 +1933,10 @@ msgstr ""
1794
  msgid "template (PHP)"
1795
  msgstr ""
1796
 
 
 
 
 
1797
  #: admin/views/placements.php:98
1798
  msgid "Important Notice"
1799
  msgstr ""
@@ -1805,6 +1948,10 @@ msgid ""
1805
  "provider to enable <em>mbstring</em>."
1806
  msgstr ""
1807
 
 
 
 
 
1808
  #: admin/views/placements.php:128
1809
  msgid "show all options"
1810
  msgstr ""
@@ -1874,25 +2021,39 @@ msgstr ""
1874
  msgid "Your license expired."
1875
  msgstr ""
1876
 
1877
- #: admin/views/setting-license.php:6
1878
  #, php-format
1879
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
 
 
1880
  msgstr ""
1881
 
1882
- #: admin/views/setting-license.php:18
1883
  #, php-format
1884
  msgid "(%d days left)"
1885
  msgstr ""
1886
 
1887
- #: admin/views/setting-license.php:22
1888
  msgid "License key"
1889
  msgstr ""
1890
 
1891
- #: admin/views/setting-license.php:42
 
 
 
 
 
 
 
 
 
 
 
 
1892
  msgid "License key invalid"
1893
  msgstr ""
1894
 
1895
- #: admin/views/setting-license.php:45
1896
  msgid "active"
1897
  msgstr ""
1898
 
@@ -2039,22 +2200,6 @@ msgstr ""
2039
  msgid " at "
2040
  msgstr ""
2041
 
2042
- #: modules/marketpress-license/admin.php:36
2043
- msgid "MarketPress Bundle License"
2044
- msgstr ""
2045
-
2046
- #: modules/marketpress-license/admin.php:67
2047
- #: modules/marketpress-license/admin.php:70
2048
- msgid ""
2049
- "Enter your key here, if you have purchased the bundle through MarketPress."
2050
- msgstr ""
2051
-
2052
- #: modules/marketpress-license/admin.php:72
2053
- msgid ""
2054
- "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
2055
- "."
2056
- msgstr ""
2057
-
2058
  #: public/views/ad-debug.php:18
2059
  msgid "Ad debug output"
2060
  msgstr ""
@@ -2213,7 +2358,7 @@ msgstr ""
2213
  msgid "Use ads from your Google AdSense account"
2214
  msgstr ""
2215
 
2216
- #: modules/gadsense/includes/class-ad-type-adsense.php:106
2217
  msgid "Your AdSense Publisher ID is missing."
2218
  msgstr ""
2219
 
@@ -2225,98 +2370,98 @@ msgstr ""
2225
  msgid "Please enter XML content"
2226
  msgstr ""
2227
 
2228
- #: modules/import-export/classes/import.php:144
2229
- #: modules/import-export/classes/import.php:560
2230
  #, php-format
2231
  msgid "New attachment created <em>%s</em> %s"
2232
  msgstr ""
2233
 
2234
- #: modules/import-export/classes/import.php:176
2235
  #, php-format
2236
  msgid "Failed to import <em>%s</em>"
2237
  msgstr ""
2238
 
2239
- #: modules/import-export/classes/import.php:184
2240
  #, php-format
2241
  msgid "New ad created: <em>%s</em> %s"
2242
  msgstr ""
2243
 
2244
- #: modules/import-export/classes/import.php:227
2245
  #, php-format
2246
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2247
  msgstr ""
2248
 
2249
- #: modules/import-export/classes/import.php:289
2250
  #, php-format
2251
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2252
  msgstr ""
2253
 
2254
- #: modules/import-export/classes/import.php:291
2255
  #, php-format
2256
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2257
  msgstr ""
2258
 
2259
- #: modules/import-export/classes/import.php:356
2260
  #, php-format
2261
  msgid "Placement <em>%s</em> created"
2262
  msgstr ""
2263
 
2264
- #: modules/import-export/classes/import.php:471
2265
  #, php-format
2266
  msgid "Option was updated: <em>%s</em>"
2267
  msgstr ""
2268
 
2269
- #: modules/import-export/classes/import.php:474
2270
  #, php-format
2271
  msgid "Option already exists: <em>%s</em>"
2272
  msgstr ""
2273
 
2274
- #: modules/import-export/classes/import.php:496
2275
  #, php-format
2276
  msgid "Failed to create import directory <em>%s</em>"
2277
  msgstr ""
2278
 
2279
- #: modules/import-export/classes/import.php:501
2280
  #, php-format
2281
  msgid "Import directory is not writable: <em>%s</em>"
2282
  msgstr ""
2283
 
2284
- #: modules/import-export/classes/import.php:509
2285
  msgid ""
2286
  "File is empty, uploads are disabled or post_max_size is smaller than "
2287
  "upload_max_filesize in php.ini"
2288
  msgstr ""
2289
 
2290
- #: modules/import-export/classes/import.php:519
2291
  #, php-format
2292
  msgid "Failed to upload file, error: <em>%s</em>"
2293
  msgstr ""
2294
 
2295
- #: modules/import-export/classes/import.php:524
2296
  msgid "File is empty."
2297
  msgstr ""
2298
 
2299
- #: modules/import-export/classes/import.php:529
2300
  #, php-format
2301
  msgid ""
2302
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2303
  "problem"
2304
  msgstr ""
2305
 
2306
- #: modules/import-export/classes/import.php:602
2307
  #, php-format
2308
  msgid "Invalid filetype <em>%s</em>"
2309
  msgstr ""
2310
 
2311
- #: modules/import-export/classes/import.php:607
2312
- #: modules/import-export/classes/import.php:614
2313
- #: modules/import-export/classes/import.php:622
2314
- #: modules/import-export/classes/import.php:637
2315
  #, php-format
2316
  msgid "Error getting remote image <em>%s</em>"
2317
  msgstr ""
2318
 
2319
- #: modules/import-export/classes/import.php:631
2320
  #, php-format
2321
  msgid "Zero size file downloaded <em>%s</em>"
2322
  msgstr ""
@@ -2359,6 +2504,10 @@ msgid ""
2359
  "to save to your computer."
2360
  msgstr ""
2361
 
 
 
 
 
2362
  #: modules/import-export/views/page.php:33
2363
  msgid "Import"
2364
  msgstr ""
@@ -2371,6 +2520,17 @@ msgstr ""
2371
  msgid "Copy an XML content"
2372
  msgstr ""
2373
 
 
 
 
 
 
 
 
 
 
 
 
2374
  #: modules/import-export/views/page.php:66
2375
  msgid "Start import"
2376
  msgstr ""
@@ -2466,7 +2626,15 @@ msgstr ""
2466
  msgid "Link ads (Responsive)"
2467
  msgstr ""
2468
 
2469
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:68
 
 
 
 
 
 
 
 
2470
  #, php-format
2471
  msgid ""
2472
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -2474,10 +2642,22 @@ msgid ""
2474
  "vertical, or rectangle formats."
2475
  msgstr ""
2476
 
2477
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:71
2478
  msgid "Resizing"
2479
  msgstr ""
2480
 
 
 
 
 
 
 
 
 
 
 
 
 
2481
  #. Description of the plugin
2482
  msgid "Manage and optimize your ads in WordPress"
2483
  msgstr ""
@@ -2581,11 +2761,11 @@ msgstr ""
2581
  msgid "Insert plain text or code into this field."
2582
  msgstr "Inserisci testo semplice o codice in questo campo."
2583
 
2584
- #: classes/display-conditions.php:70
2585
  msgid "Choose the public post types on which to display the ad."
2586
  msgstr "Scegli i tipi di pagina in cui mostrare gli ad."
2587
 
2588
- #: classes/display-conditions.php:77
2589
  msgid ""
2590
  "Choose on which individual posts, pages and public post type pages you want "
2591
  "to display or hide ads."
@@ -2597,27 +2777,27 @@ msgstr ""
2597
  msgid "general conditions"
2598
  msgstr "Altre condizioni"
2599
 
2600
- #: classes/display-conditions.php:469
2601
  msgid "Home Page"
2602
  msgstr "Home Page"
2603
 
2604
- #: classes/display-conditions.php:474
2605
  msgid "Singular Pages"
2606
  msgstr "Pagine singole"
2607
 
2608
- #: classes/display-conditions.php:479
2609
  msgid "Archive Pages"
2610
  msgstr "Pagine Archivio"
2611
 
2612
- #: classes/display-conditions.php:484
2613
  msgid "Search Results"
2614
  msgstr "Risultati Ricerca"
2615
 
2616
- #: classes/display-conditions.php:489
2617
  msgid "404 Page"
2618
  msgstr "Pagina 404"
2619
 
2620
- #: classes/display-conditions.php:494
2621
  msgid "Attachment Pages"
2622
  msgstr "Pagine Allegato"
2623
 
@@ -2712,9 +2892,9 @@ msgstr "Aggiungi nuovo Ad"
2712
 
2713
  #: public/class-advanced-ads.php:621
2714
  #: admin/includes/class-ad-groups-list.php:308
2715
- #: modules/import-export/classes/import.php:143
2716
- #: modules/import-export/classes/import.php:183
2717
- #: modules/import-export/classes/import.php:559
2718
  msgid "Edit"
2719
  msgstr "Modifica"
2720
 
@@ -2762,18 +2942,10 @@ msgstr "Posizionamento"
2762
  msgid "Advanced Ads Settings"
2763
  msgstr "Opzioni"
2764
 
2765
- #: admin/includes/class-menu.php:79 admin/views/debug.php:9
2766
  msgid "Settings"
2767
  msgstr "Opzioni"
2768
 
2769
- #: admin/includes/class-menu.php:82
2770
- msgid "Advanced Ads Debugging"
2771
- msgstr "Debugging"
2772
-
2773
- #: admin/includes/class-menu.php:82
2774
- msgid "Debug"
2775
- msgstr "Debug"
2776
-
2777
  #: admin/includes/class-meta-box.php:53
2778
  msgid "Ad Type"
2779
  msgstr "Tipo Ad"
@@ -2885,12 +3057,12 @@ msgstr "shortcode"
2885
  msgid "template"
2886
  msgstr "template"
2887
 
2888
- #: admin/views/ad-group.php:46
2889
  #, php-format
2890
  msgid "Search results for &#8220;%s&#8221;"
2891
  msgstr "Risultati di ricerca per &#8220;%s&#8221;"
2892
 
2893
- #: admin/views/ad-group.php:52
2894
  msgid ""
2895
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2896
  "display random ads in the frontend or run split tests, but also just for "
@@ -2951,14 +3123,6 @@ msgstr "solo su mobile"
2951
  msgid "not on mobile devices"
2952
  msgstr "solo su apparecchi non mobile"
2953
 
2954
- #: admin/views/debug.php:6 admin/views/settings.php:50
2955
- msgid "Debug Page"
2956
- msgstr "Pagina Debug"
2957
-
2958
- #: admin/views/debug.php:7
2959
- msgid "Work in progress"
2960
- msgstr "Work in progress"
2961
-
2962
  #: admin/views/placements.php:10
2963
  msgid "Placements updated"
2964
  msgstr "Posizionamento aggiornato"
@@ -2993,15 +3157,15 @@ msgstr "Crea un nuovo posizionamento"
2993
  msgid "Save New Placement"
2994
  msgstr "Salva Nuovo Posizionamento"
2995
 
2996
- #: admin/views/settings.php:51
2997
  msgid "Advanced Ads on WordPress.org"
2998
  msgstr "Advanced Ads su WordPress.org"
2999
 
3000
- #: admin/views/settings.php:51
3001
  msgid "Advanced Ads on wp.org"
3002
  msgstr "Advanced Ads su wp.org"
3003
 
3004
- #: admin/views/settings.php:52
3005
  msgid "the company behind Advanced Ads"
3006
  msgstr "la società dietro Advanced Ads"
3007
 
2
  msgstr ""
3
  "Project-Id-Version: Advanved Ads\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-11 09:29+0000\n"
6
+ "PO-Revision-Date: 2017-07-11 09:29+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Italian\n"
9
  "Language: it-IT\n"
41
  msgid "time of %s"
42
  msgstr ""
43
 
44
+ #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:83
45
+ #: admin/includes/class-menu.php:83
46
  msgid "Support"
47
  msgstr ""
48
 
191
  msgid "url"
192
  msgstr ""
193
 
 
 
 
 
 
 
 
194
  #: classes/ad_type_group.php:31
195
  msgid ""
196
  "Choose an existing ad group. Use this type when you want to assign the same "
225
  msgid "edit"
226
  msgstr ""
227
 
228
+ #: classes/ad_type_image.php:67
229
+ msgid "Link to target site"
230
+ msgstr ""
231
+
232
+ #: classes/ad_type_image.php:68
233
+ #, php-format
234
+ msgid ""
235
+ "Open this url in a new window and track impressions and clicks with the <a "
236
+ "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
237
+ msgstr ""
238
+
239
  #: classes/ad_type_plain.php:87
240
  msgid "Allow PHP"
241
  msgstr ""
271
 
272
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
273
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
274
+ #: classes/visitor-conditions.php:126
275
  msgid "is"
276
  msgstr ""
277
 
278
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
279
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
280
+ #: classes/visitor-conditions.php:127
281
  msgid "is not"
282
  msgstr ""
283
 
308
  msgid "title or id"
309
  msgstr ""
310
 
311
+ #: classes/display-conditions.php:470 includes/array_ad_conditions.php:64
312
  msgid "show on Home page"
313
  msgstr ""
314
 
315
+ #: classes/display-conditions.php:475 includes/array_ad_conditions.php:69
316
  msgid "show on singular pages/posts"
317
  msgstr ""
318
 
319
+ #: classes/display-conditions.php:480 includes/array_ad_conditions.php:74
320
  msgid "show on any type of archive page (category, tag, author and date)"
321
  msgstr ""
322
 
323
+ #: classes/display-conditions.php:485 includes/array_ad_conditions.php:79
324
  msgid "show on search result pages"
325
  msgstr ""
326
 
327
+ #: classes/display-conditions.php:490 includes/array_ad_conditions.php:84
328
  msgid "show on 404 error page"
329
  msgstr ""
330
 
331
+ #: classes/display-conditions.php:495 includes/array_ad_conditions.php:89
332
  msgid "show on attachment pages"
333
  msgstr ""
334
 
335
+ #: classes/display-conditions.php:499 includes/array_ad_conditions.php:93
336
  msgid "Secondary Queries"
337
  msgstr ""
338
 
339
+ #: classes/display-conditions.php:500 includes/array_ad_conditions.php:94
340
  msgid "allow ads in secondary queries"
341
  msgstr ""
342
 
365
  msgid "Could not access filesystem."
366
  msgstr ""
367
 
368
+ #: classes/filesystem.php:65
369
+ msgid "Filesystem error."
370
+ msgstr ""
371
+
372
  #: classes/filesystem.php:72
373
  msgid "Unable to locate WordPress root directory."
374
  msgstr ""
444
  msgid "highlight ads"
445
  msgstr ""
446
 
447
+ #: classes/frontend_checks.php:315
448
+ #, php-format
449
+ msgid ""
450
+ "This ads was automatically placed here by AdSense. <a href=\"%s\" "
451
+ "target=\"_blank\" style=\"color:#fff;border-color:#fff;\">Click here to "
452
+ "learn more</a>."
453
+ msgstr ""
454
+
455
  #: classes/visitor-conditions.php:32
456
  msgid "device"
457
  msgstr ""
539
  msgid "does not match regex"
540
  msgstr ""
541
 
542
+ #: classes/widget.php:61
543
+ msgid "Title:"
544
+ msgstr ""
545
+
546
+ #: includes/array_ad_conditions.php:39
547
+ msgid "Post Types"
548
+ msgstr ""
549
+
550
+ #: includes/array_ad_conditions.php:45
551
+ msgid "Categories, Tags and Taxonomies"
552
+ msgstr ""
553
+
554
+ #: includes/array_ad_conditions.php:46
555
+ msgid ""
556
+ "Choose terms from public category, tag and other taxonomies a post must "
557
+ "belong to in order to have ads."
558
+ msgstr ""
559
+
560
+ #: includes/array_ad_conditions.php:51
561
+ msgid "Category Archives"
562
+ msgstr ""
563
+
564
+ #: includes/array_ad_conditions.php:52
565
+ msgid "comma seperated IDs of category archives"
566
+ msgstr ""
567
+
568
+ #: includes/array_ad_conditions.php:57
569
+ msgid "Individual Posts, Pages and Public Post Types"
570
+ msgstr ""
571
+
572
  #: public/class-advanced-ads.php:317
573
  msgid "Advanced Ads Error following:"
574
  msgstr ""
638
  msgid "Usage"
639
  msgstr ""
640
 
641
+ #: admin/includes/class-ad-groups-list.php:318
642
+ msgid "Delete"
643
+ msgstr ""
644
+
645
  #: admin/includes/class-ad-groups-list.php:339
646
+ #: admin/includes/class-ad-groups-list.php:389
647
  msgid "Invalid Ad Group"
648
  msgstr ""
649
 
650
  #: admin/includes/class-ad-groups-list.php:344
651
+ #: admin/includes/class-ad-groups-list.php:394
652
  msgid "You don’t have permission to change the ad groups"
653
  msgstr ""
654
 
655
+ #: admin/includes/class-ad-groups-list.php:374
656
+ msgid "No ad group created"
657
+ msgstr ""
658
+
659
  #: admin/includes/class-ad-type.php:97 admin/includes/class-ad-type.php:102
660
  msgid "Ad Details"
661
  msgstr ""
676
  msgid "planned"
677
  msgstr ""
678
 
679
+ #: admin/includes/class-ad-type.php:222
680
+ #, php-format
681
+ msgid "%s ad updated."
682
+ msgid_plural "%s ads updated."
683
+ msgstr[0] ""
684
+ msgstr[1] ""
685
+
686
+ #: admin/includes/class-ad-type.php:223
687
+ #, php-format
688
+ msgid "%s ad not updated, somebody is editing it."
689
+ msgid_plural "%s ads not updated, somebody is editing them."
690
+ msgstr[0] ""
691
+ msgstr[1] ""
692
+
693
+ #: admin/includes/class-ad-type.php:224
694
+ #, php-format
695
+ msgid "%s ad permanently deleted."
696
+ msgid_plural "%s ads permanently deleted."
697
+ msgstr[0] ""
698
+ msgstr[1] ""
699
+
700
+ #: admin/includes/class-ad-type.php:225
701
+ #, php-format
702
+ msgid "%s ad moved to the Trash."
703
+ msgid_plural "%s ads moved to the Trash."
704
+ msgstr[0] ""
705
+ msgstr[1] ""
706
+
707
+ #: admin/includes/class-ad-type.php:226
708
+ #, php-format
709
+ msgid "%s ad restored from the Trash."
710
+ msgid_plural "%s ads restored from the Trash."
711
+ msgstr[0] ""
712
+ msgstr[1] ""
713
+
714
  #: admin/includes/class-ad-type.php:514 admin/includes/class-ad-type.php:515
715
  msgid "Ad updated."
716
  msgstr ""
765
  msgid "Error while trying to register the license. Please contact support."
766
  msgstr ""
767
 
768
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
769
  msgid "Please enter a valid license key"
770
  msgstr ""
771
 
772
  #: admin/includes/class-licenses.php:132
 
 
773
  msgid "License couldn’t be activated. Please try again later."
774
  msgstr ""
775
 
778
  msgstr ""
779
 
780
  #: admin/includes/class-licenses.php:148
 
781
  msgid "This is not the correct key for this add-on."
782
  msgstr ""
783
 
784
  #: admin/includes/class-licenses.php:149
 
785
  msgid "There are no activations left."
786
  msgstr ""
787
 
788
+ #: admin/includes/class-licenses.php:158
789
+ #, php-format
790
+ msgid "License is invalid. Reason: %s"
791
+ msgstr ""
792
+
793
  #: admin/includes/class-licenses.php:218
794
  msgid "Error while trying to disable the license. Please contact support."
795
  msgstr ""
810
  "."
811
  msgstr ""
812
 
813
+ #: admin/includes/class-menu.php:173 admin/includes/class-menu.php:200
814
  msgid "Sorry, you are not allowed to access this feature."
815
  msgstr ""
816
 
817
+ #: admin/includes/class-menu.php:186
818
  msgid ""
819
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
820
  "deleted?"
867
  msgid "Get AdSense tips via email"
868
  msgstr ""
869
 
870
+ #: admin/includes/class-notices.php:408
871
  #, php-format
872
  msgid ""
873
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
874
  "target=\"_blank\">this form</a> to sign up."
875
  msgstr ""
876
 
877
+ #: admin/includes/class-notices.php:426
878
  msgid ""
879
  "How embarrassing. The email server seems to be down. Please try again later."
880
  msgstr ""
881
 
882
+ #: admin/includes/class-notices.php:431
883
  #, php-format
884
  msgid ""
885
  "Please check your email (%s) for the confirmation message. If you didn’t "
1275
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1276
  msgstr ""
1277
 
1278
+ #: admin/includes/class-settings.php:439
1279
+ msgctxt "label before ads"
1280
+ msgid "Advertisements"
1281
+ msgstr ""
1282
+
1283
  #: admin/includes/class-settings.php:446
1284
  msgid "Displayed above ads."
1285
  msgstr ""
1292
  msgid "Disable shortcode button in visual editor."
1293
  msgstr ""
1294
 
1295
+ #: admin/includes/class-shortcode-creator.php:155
1296
  #, php-format
1297
  msgid ""
1298
  "Please, either switch off your ad blocker or disable the shortcode button in "
1346
  #: admin/includes/notices.php:47
1347
  #, php-format
1348
  msgid ""
 
 
 
 
 
 
 
 
 
1349
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1350
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1351
  "information."
1352
  msgstr ""
1353
 
1354
+ #: admin/includes/notices.php:53
1355
  #, php-format
1356
  msgid ""
1357
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1363
  "org</a>.</p><p><em>Thomas</em>"
1364
  msgstr ""
1365
 
1366
+ #: admin/includes/notices.php:59
1367
  #, php-format
1368
  msgid ""
1369
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1421
  msgstr ""
1422
 
1423
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
1424
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:66
1425
  msgid "manual"
1426
  msgstr ""
1427
 
1438
  msgid "add"
1439
  msgstr ""
1440
 
1441
+ #: admin/views/ad-group-edit.php:14
1442
+ msgid "You did not select an item for editing."
1443
+ msgstr ""
1444
+
1445
+ #: admin/views/ad-group-edit.php:33
1446
+ msgctxt "Taxonomy Name"
1447
+ msgid "Name"
1448
+ msgstr ""
1449
+
1450
+ #: admin/views/ad-group-edit.php:38
1451
+ msgctxt "Taxonomy Slug"
1452
+ msgid "Slug"
1453
+ msgstr ""
1454
+
1455
+ #: admin/views/ad-group-edit.php:45
1456
+ msgctxt "Taxonomy Description"
1457
+ msgid "Description"
1458
+ msgstr ""
1459
+
1460
  #: admin/views/ad-group-list-ads.php:3
1461
  msgid "weight"
1462
  msgstr ""
1496
  msgstr ""
1497
 
1498
  #: admin/views/ad-group.php:18
1499
+ msgid "Ad Group successfully created"
1500
+ msgstr ""
1501
+
1502
+ #: admin/views/ad-group.php:29
1503
  msgid "Ad Groups successfully updated"
1504
  msgstr ""
1505
 
1506
+ #: admin/views/ad-group.php:65
1507
+ msgid "Group title"
 
 
1508
  msgstr ""
1509
 
1510
+ #: admin/views/ad-group.php:66
1511
+ msgid "save"
1512
+ msgstr ""
1513
+
1514
+ #: admin/views/ad-group.php:69
1515
  #, php-format
1516
  msgid ""
1517
  "Find more information about ad groups in the <a href=\"%s\" "
1518
  "target=\"_blank\">manual</a>."
1519
  msgstr ""
1520
 
1521
+ #: admin/views/ad-group.php:96
1522
  msgid "Update Groups"
1523
  msgstr ""
1524
 
1548
  msgid "next"
1549
  msgstr ""
1550
 
1551
+ #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-top.php:85
1552
+ msgid "Stop Wizard and show all options"
1553
+ msgstr ""
1554
+
1555
  #: admin/views/ad-info-top.php:5
1556
  #, php-format
1557
  msgid ""
1617
  "the most common options are visible."
1618
  msgstr ""
1619
 
 
 
 
 
1620
  #: admin/views/ad-info.php:5
1621
  msgid "theme function"
1622
  msgstr ""
1743
  msgid "Set expiry date"
1744
  msgstr ""
1745
 
1746
+ #: admin/views/ad-submitbox-meta.php:12
1747
+ msgid "Month"
1748
+ msgstr ""
1749
+
1750
  #: admin/views/ad-submitbox-meta.php:16
1751
  #, php-format
1752
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1753
  msgid "%1$s-%2$s"
1754
  msgstr ""
1755
 
1756
+ #: admin/views/ad-submitbox-meta.php:21
1757
+ msgid "Day"
1758
+ msgstr ""
1759
+
1760
+ #: admin/views/ad-submitbox-meta.php:22
1761
+ msgid "Year"
1762
+ msgstr ""
1763
+
1764
+ #: admin/views/ad-submitbox-meta.php:23
1765
+ msgid "Hour"
1766
+ msgstr ""
1767
+
1768
+ #: admin/views/ad-submitbox-meta.php:24
1769
+ msgid "Minute"
1770
+ msgstr ""
1771
+
1772
  #: admin/views/ad-submitbox-meta.php:29
1773
  #, php-format
1774
  msgctxt ""
1824
  msgstr ""
1825
 
1826
  #: admin/views/feedback-disable.php:7
1827
+ msgid "I need help to set it up"
1828
  msgstr ""
1829
 
1830
  #: admin/views/feedback-disable.php:8
1831
+ msgid "I have a problem"
1832
+ msgstr ""
1833
+
1834
+ #: admin/views/feedback-disable.php:9
1835
  msgid "Please let us know how we can help"
1836
  msgstr ""
1837
 
1838
+ #: admin/views/feedback-disable.php:12
1839
  #, php-format
1840
  msgid "Send me free help to %s"
1841
  msgstr ""
1842
 
1843
+ #: admin/views/feedback-disable.php:14
1844
  msgid "I miss a feature"
1845
  msgstr ""
1846
 
1847
+ #: admin/views/feedback-disable.php:15 admin/views/feedback-disable.php:18
1848
  msgid "Which one?"
1849
  msgstr ""
1850
 
1851
+ #: admin/views/feedback-disable.php:16
1852
  msgid "I don’t use ads on my site"
1853
  msgstr ""
1854
 
1855
+ #: admin/views/feedback-disable.php:17
1856
  msgid "I switched to another plugin"
1857
  msgstr ""
1858
 
1859
+ #: admin/views/feedback-disable.php:19
1860
  msgid "other reason"
1861
  msgstr ""
1862
 
1863
+ #: admin/views/feedback-disable.php:20
1864
+ msgid "Please specify"
1865
  msgstr ""
1866
 
1867
+ #: admin/views/feedback-disable.php:25
1868
  msgid "Submit & Deactivate"
1869
  msgstr ""
1870
 
1871
+ #: admin/views/feedback-disable.php:26
1872
  msgid "Only Deactivate"
1873
  msgstr ""
1874
 
1875
+ #: admin/views/feedback-disable.php:27
1876
  msgid "don’t deactivate"
1877
  msgstr ""
1878
 
1933
  msgid "template (PHP)"
1934
  msgstr ""
1935
 
1936
+ #: admin/views/placements.php:94
1937
+ msgid "position"
1938
+ msgstr ""
1939
+
1940
  #: admin/views/placements.php:98
1941
  msgid "Important Notice"
1942
  msgstr ""
1948
  "provider to enable <em>mbstring</em>."
1949
  msgstr ""
1950
 
1951
+ #: admin/views/placements.php:119
1952
+ msgid "ad label"
1953
+ msgstr ""
1954
+
1955
  #: admin/views/placements.php:128
1956
  msgid "show all options"
1957
  msgstr ""
2021
  msgid "Your license expired."
2022
  msgstr ""
2023
 
2024
+ #: admin/views/setting-license.php:15
2025
  #, php-format
2026
+ msgid ""
2027
+ "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
2028
+ "target=\"_blank\">renew your license with a discount</a>."
2029
  msgstr ""
2030
 
2031
+ #: admin/views/setting-license.php:27
2032
  #, php-format
2033
  msgid "(%d days left)"
2034
  msgstr ""
2035
 
2036
+ #: admin/views/setting-license.php:31
2037
  msgid "License key"
2038
  msgstr ""
2039
 
2040
+ #: admin/views/setting-license.php:41
2041
+ msgid "Deactivate License"
2042
+ msgstr ""
2043
+
2044
+ #: admin/views/setting-license.php:47
2045
+ msgid "Update License"
2046
+ msgstr ""
2047
+
2048
+ #: admin/views/setting-license.php:47
2049
+ msgid "Activate License"
2050
+ msgstr ""
2051
+
2052
+ #: admin/views/setting-license.php:51
2053
  msgid "License key invalid"
2054
  msgstr ""
2055
 
2056
+ #: admin/views/setting-license.php:54
2057
  msgid "active"
2058
  msgstr ""
2059
 
2200
  msgid " at "
2201
  msgstr ""
2202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2203
  #: public/views/ad-debug.php:18
2204
  msgid "Ad debug output"
2205
  msgstr ""
2358
  msgid "Use ads from your Google AdSense account"
2359
  msgstr ""
2360
 
2361
+ #: modules/gadsense/includes/class-ad-type-adsense.php:108
2362
  msgid "Your AdSense Publisher ID is missing."
2363
  msgstr ""
2364
 
2370
  msgid "Please enter XML content"
2371
  msgstr ""
2372
 
2373
+ #: modules/import-export/classes/import.php:145
2374
+ #: modules/import-export/classes/import.php:561
2375
  #, php-format
2376
  msgid "New attachment created <em>%s</em> %s"
2377
  msgstr ""
2378
 
2379
+ #: modules/import-export/classes/import.php:177
2380
  #, php-format
2381
  msgid "Failed to import <em>%s</em>"
2382
  msgstr ""
2383
 
2384
+ #: modules/import-export/classes/import.php:185
2385
  #, php-format
2386
  msgid "New ad created: <em>%s</em> %s"
2387
  msgstr ""
2388
 
2389
+ #: modules/import-export/classes/import.php:228
2390
  #, php-format
2391
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2392
  msgstr ""
2393
 
2394
+ #: modules/import-export/classes/import.php:290
2395
  #, php-format
2396
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2397
  msgstr ""
2398
 
2399
+ #: modules/import-export/classes/import.php:292
2400
  #, php-format
2401
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2402
  msgstr ""
2403
 
2404
+ #: modules/import-export/classes/import.php:357
2405
  #, php-format
2406
  msgid "Placement <em>%s</em> created"
2407
  msgstr ""
2408
 
2409
+ #: modules/import-export/classes/import.php:472
2410
  #, php-format
2411
  msgid "Option was updated: <em>%s</em>"
2412
  msgstr ""
2413
 
2414
+ #: modules/import-export/classes/import.php:475
2415
  #, php-format
2416
  msgid "Option already exists: <em>%s</em>"
2417
  msgstr ""
2418
 
2419
+ #: modules/import-export/classes/import.php:497
2420
  #, php-format
2421
  msgid "Failed to create import directory <em>%s</em>"
2422
  msgstr ""
2423
 
2424
+ #: modules/import-export/classes/import.php:502
2425
  #, php-format
2426
  msgid "Import directory is not writable: <em>%s</em>"
2427
  msgstr ""
2428
 
2429
+ #: modules/import-export/classes/import.php:510
2430
  msgid ""
2431
  "File is empty, uploads are disabled or post_max_size is smaller than "
2432
  "upload_max_filesize in php.ini"
2433
  msgstr ""
2434
 
2435
+ #: modules/import-export/classes/import.php:520
2436
  #, php-format
2437
  msgid "Failed to upload file, error: <em>%s</em>"
2438
  msgstr ""
2439
 
2440
+ #: modules/import-export/classes/import.php:525
2441
  msgid "File is empty."
2442
  msgstr ""
2443
 
2444
+ #: modules/import-export/classes/import.php:530
2445
  #, php-format
2446
  msgid ""
2447
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2448
  "problem"
2449
  msgstr ""
2450
 
2451
+ #: modules/import-export/classes/import.php:603
2452
  #, php-format
2453
  msgid "Invalid filetype <em>%s</em>"
2454
  msgstr ""
2455
 
2456
+ #: modules/import-export/classes/import.php:608
2457
+ #: modules/import-export/classes/import.php:615
2458
+ #: modules/import-export/classes/import.php:623
2459
+ #: modules/import-export/classes/import.php:638
2460
  #, php-format
2461
  msgid "Error getting remote image <em>%s</em>"
2462
  msgstr ""
2463
 
2464
+ #: modules/import-export/classes/import.php:632
2465
  #, php-format
2466
  msgid "Zero size file downloaded <em>%s</em>"
2467
  msgstr ""
2504
  "to save to your computer."
2505
  msgstr ""
2506
 
2507
+ #: modules/import-export/views/page.php:28
2508
+ msgid "Download Export File"
2509
+ msgstr ""
2510
+
2511
  #: modules/import-export/views/page.php:33
2512
  msgid "Import"
2513
  msgstr ""
2520
  msgid "Copy an XML content"
2521
  msgstr ""
2522
 
2523
+ #: modules/import-export/views/page.php:52
2524
+ msgid ""
2525
+ "Before you can upload your import file, you will need to fix the following "
2526
+ "error:"
2527
+ msgstr ""
2528
+
2529
+ #: modules/import-export/views/page.php:57
2530
+ #, php-format
2531
+ msgid "Maximum size: %s"
2532
+ msgstr ""
2533
+
2534
  #: modules/import-export/views/page.php:66
2535
  msgid "Start import"
2536
  msgstr ""
2626
  msgid "Link ads (Responsive)"
2627
  msgstr ""
2628
 
2629
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:63
2630
+ msgid "InArticle"
2631
+ msgstr ""
2632
+
2633
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
2634
+ msgid "InFeed"
2635
+ msgstr ""
2636
+
2637
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:70
2638
  #, php-format
2639
  msgid ""
2640
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2642
  "vertical, or rectangle formats."
2643
  msgstr ""
2644
 
2645
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:73
2646
  msgid "Resizing"
2647
  msgstr ""
2648
 
2649
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:81
2650
+ msgid "Tutorial: How to place ads between posts?"
2651
+ msgstr ""
2652
+
2653
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
2654
+ msgid "Layout"
2655
+ msgstr ""
2656
+
2657
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:86
2658
+ msgid "Layout-Key"
2659
+ msgstr ""
2660
+
2661
  #. Description of the plugin
2662
  msgid "Manage and optimize your ads in WordPress"
2663
  msgstr ""
2761
  msgid "Insert plain text or code into this field."
2762
  msgstr "Inserisci testo semplice o codice in questo campo."
2763
 
2764
+ #: classes/display-conditions.php:70 includes/array_ad_conditions.php:40
2765
  msgid "Choose the public post types on which to display the ad."
2766
  msgstr "Scegli i tipi di pagina in cui mostrare gli ad."
2767
 
2768
+ #: classes/display-conditions.php:77 includes/array_ad_conditions.php:58
2769
  msgid ""
2770
  "Choose on which individual posts, pages and public post type pages you want "
2771
  "to display or hide ads."
2777
  msgid "general conditions"
2778
  msgstr "Altre condizioni"
2779
 
2780
+ #: classes/display-conditions.php:469 includes/array_ad_conditions.php:63
2781
  msgid "Home Page"
2782
  msgstr "Home Page"
2783
 
2784
+ #: classes/display-conditions.php:474 includes/array_ad_conditions.php:68
2785
  msgid "Singular Pages"
2786
  msgstr "Pagine singole"
2787
 
2788
+ #: classes/display-conditions.php:479 includes/array_ad_conditions.php:73
2789
  msgid "Archive Pages"
2790
  msgstr "Pagine Archivio"
2791
 
2792
+ #: classes/display-conditions.php:484 includes/array_ad_conditions.php:78
2793
  msgid "Search Results"
2794
  msgstr "Risultati Ricerca"
2795
 
2796
+ #: classes/display-conditions.php:489 includes/array_ad_conditions.php:83
2797
  msgid "404 Page"
2798
  msgstr "Pagina 404"
2799
 
2800
+ #: classes/display-conditions.php:494 includes/array_ad_conditions.php:88
2801
  msgid "Attachment Pages"
2802
  msgstr "Pagine Allegato"
2803
 
2892
 
2893
  #: public/class-advanced-ads.php:621
2894
  #: admin/includes/class-ad-groups-list.php:308
2895
+ #: modules/import-export/classes/import.php:144
2896
+ #: modules/import-export/classes/import.php:184
2897
+ #: modules/import-export/classes/import.php:560
2898
  msgid "Edit"
2899
  msgstr "Modifica"
2900
 
2942
  msgid "Advanced Ads Settings"
2943
  msgstr "Opzioni"
2944
 
2945
+ #: admin/includes/class-menu.php:79
2946
  msgid "Settings"
2947
  msgstr "Opzioni"
2948
 
 
 
 
 
 
 
 
 
2949
  #: admin/includes/class-meta-box.php:53
2950
  msgid "Ad Type"
2951
  msgstr "Tipo Ad"
3057
  msgid "template"
3058
  msgstr "template"
3059
 
3060
+ #: admin/views/ad-group.php:59
3061
  #, php-format
3062
  msgid "Search results for &#8220;%s&#8221;"
3063
  msgstr "Risultati di ricerca per &#8220;%s&#8221;"
3064
 
3065
+ #: admin/views/ad-group.php:68
3066
  msgid ""
3067
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
3068
  "display random ads in the frontend or run split tests, but also just for "
3123
  msgid "not on mobile devices"
3124
  msgstr "solo su apparecchi non mobile"
3125
 
 
 
 
 
 
 
 
 
3126
  #: admin/views/placements.php:10
3127
  msgid "Placements updated"
3128
  msgstr "Posizionamento aggiornato"
3157
  msgid "Save New Placement"
3158
  msgstr "Salva Nuovo Posizionamento"
3159
 
3160
+ #: admin/views/settings.php:50
3161
  msgid "Advanced Ads on WordPress.org"
3162
  msgstr "Advanced Ads su WordPress.org"
3163
 
3164
+ #: admin/views/settings.php:50
3165
  msgid "Advanced Ads on wp.org"
3166
  msgstr "Advanced Ads su wp.org"
3167
 
3168
+ #: admin/views/settings.php:51
3169
  msgid "the company behind Advanced Ads"
3170
  msgstr "la società dietro Advanced Ads"
3171
 
languages/advanced-ads-nl_NL.mo CHANGED
Binary file
languages/advanced-ads-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ 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: 2017-06-22 13:16+0000\n"
6
- "PO-Revision-Date: 2017-06-22 13:16+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Dutch\n"
9
  "Language: nl-NL\n"
@@ -127,13 +127,6 @@ msgstr ""
127
  msgid "url"
128
  msgstr ""
129
 
130
- #: classes/ad_type_dummy.php:49 classes/ad_type_image.php:68
131
- #, php-format
132
- msgid ""
133
- "Open this url in a new window and track impressions and clicks with the <a "
134
- "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
135
- msgstr ""
136
-
137
  #: classes/ad_type_group.php:31
138
  msgid ""
139
  "Choose an existing ad group. Use this type when you want to assign the same "
@@ -168,6 +161,17 @@ msgstr ""
168
  msgid "edit"
169
  msgstr ""
170
 
 
 
 
 
 
 
 
 
 
 
 
171
  #: classes/ad_type_plain.php:87
172
  msgid "Allow PHP"
173
  msgstr ""
@@ -240,6 +244,10 @@ msgstr ""
240
  msgid "Could not access filesystem."
241
  msgstr ""
242
 
 
 
 
 
243
  #: classes/filesystem.php:72
244
  msgid "Unable to locate WordPress root directory."
245
  msgstr ""
@@ -315,6 +323,14 @@ msgstr ""
315
  msgid "highlight ads"
316
  msgstr ""
317
 
 
 
 
 
 
 
 
 
318
  #: classes/visitor-conditions.php:32
319
  msgid "device"
320
  msgstr ""
@@ -338,6 +354,36 @@ msgid ""
338
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
339
  msgstr ""
340
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  #: public/class-advanced-ads.php:317
342
  msgid "Advanced Ads Error following:"
343
  msgstr ""
@@ -374,6 +420,14 @@ msgstr ""
374
  msgid "Add some"
375
  msgstr ""
376
 
 
 
 
 
 
 
 
 
377
  #: admin/includes/class-ad-type.php:98 admin/includes/class-ad-type.php:103
378
  msgid "Ad Planning"
379
  msgstr ""
@@ -386,6 +440,41 @@ msgstr ""
386
  msgid "planned"
387
  msgstr ""
388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  #: admin/includes/class-ad-type.php:518
390
  #, php-format
391
  msgid ""
@@ -400,13 +489,11 @@ msgid ""
400
  "this page</a>."
401
  msgstr ""
402
 
403
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:40
404
  msgid "Please enter a valid license key"
405
  msgstr ""
406
 
407
  #: admin/includes/class-licenses.php:132
408
- #: modules/marketpress-license/main.php:65
409
- #: modules/marketpress-license/main.php:77
410
  msgid "License couldn’t be activated. Please try again later."
411
  msgstr ""
412
 
@@ -415,15 +502,18 @@ msgid "This is the bundle license key."
415
  msgstr ""
416
 
417
  #: admin/includes/class-licenses.php:148
418
- #: modules/marketpress-license/main.php:132
419
  msgid "This is not the correct key for this add-on."
420
  msgstr ""
421
 
422
  #: admin/includes/class-licenses.php:149
423
- #: modules/marketpress-license/main.php:130
424
  msgid "There are no activations left."
425
  msgstr ""
426
 
 
 
 
 
 
427
  #: admin/includes/class-licenses.php:218
428
  msgid "Error while trying to disable the license. Please contact support."
429
  msgstr ""
@@ -558,6 +648,11 @@ msgid ""
558
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
559
  msgstr ""
560
 
 
 
 
 
 
561
  #: admin/includes/class-settings.php:446
562
  msgid "Displayed above ads."
563
  msgstr ""
@@ -570,7 +665,7 @@ msgstr ""
570
  msgid "Disable shortcode button in visual editor."
571
  msgstr ""
572
 
573
- #: admin/includes/class-shortcode-creator.php:154
574
  #, php-format
575
  msgid ""
576
  "Please, either switch off your ad blocker or disable the shortcode button in "
@@ -595,7 +690,7 @@ msgstr ""
595
  msgid "Please add valid license keys <a href=\"%s\">here</a>."
596
  msgstr ""
597
 
598
- #: admin/includes/notices.php:59
599
  #, php-format
600
  msgid ""
601
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
@@ -607,7 +702,7 @@ msgid ""
607
  "org</a>.</p><p><em>Thomas</em>"
608
  msgstr ""
609
 
610
- #: admin/includes/notices.php:65
611
  #, php-format
612
  msgid ""
613
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
@@ -665,21 +760,46 @@ msgid "Forced to OR."
665
  msgstr ""
666
 
667
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
668
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
669
  msgid "manual"
670
  msgstr ""
671
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  #: admin/views/ad-group-list-form-row.php:57
673
  msgid "Visible ads"
674
  msgstr ""
675
 
676
- #: admin/views/ad-group.php:53
677
- msgid ""
678
- "You can create a new group through the <em>Ad Groups</em> widget on the ad "
679
- "edit page."
 
 
680
  msgstr ""
681
 
682
- #: admin/views/ad-group.php:53
 
 
 
 
683
  #, php-format
684
  msgid ""
685
  "Find more information about ad groups in the <a href=\"%s\" "
@@ -712,6 +832,10 @@ msgctxt "wizard navigation"
712
  msgid "next"
713
  msgstr ""
714
 
 
 
 
 
715
  #: admin/views/ad-info-top.php:5
716
  #, php-format
717
  msgid ""
@@ -770,10 +894,6 @@ msgid ""
770
  "the most common options are visible."
771
  msgstr ""
772
 
773
- #: admin/views/ad-info-top.php:85
774
- msgid "Stop Wizard and show all options"
775
- msgstr ""
776
-
777
  #: admin/views/ad-list-filters.php:2
778
  msgid "all ad types"
779
  msgstr ""
@@ -832,6 +952,26 @@ msgstr ""
832
  msgid "reserve this space"
833
  msgstr ""
834
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
835
  #: admin/views/ad-submitbox-meta.php:29
836
  #, php-format
837
  msgctxt ""
@@ -868,51 +1008,55 @@ msgid "It is only temporary"
868
  msgstr ""
869
 
870
  #: admin/views/feedback-disable.php:7
871
- msgid "I have a problem"
872
  msgstr ""
873
 
874
  #: admin/views/feedback-disable.php:8
 
 
 
 
875
  msgid "Please let us know how we can help"
876
  msgstr ""
877
 
878
- #: admin/views/feedback-disable.php:11
879
  #, php-format
880
  msgid "Send me free help to %s"
881
  msgstr ""
882
 
883
- #: admin/views/feedback-disable.php:13
884
  msgid "I miss a feature"
885
  msgstr ""
886
 
887
- #: admin/views/feedback-disable.php:14 admin/views/feedback-disable.php:17
888
  msgid "Which one?"
889
  msgstr ""
890
 
891
- #: admin/views/feedback-disable.php:15
892
  msgid "I don’t use ads on my site"
893
  msgstr ""
894
 
895
- #: admin/views/feedback-disable.php:16
896
  msgid "I switched to another plugin"
897
  msgstr ""
898
 
899
- #: admin/views/feedback-disable.php:18
900
  msgid "other reason"
901
  msgstr ""
902
 
903
- #: admin/views/feedback-disable.php:19
904
- msgid "Please specify, if possible"
905
  msgstr ""
906
 
907
- #: admin/views/feedback-disable.php:24
908
  msgid "Submit & Deactivate"
909
  msgstr ""
910
 
911
- #: admin/views/feedback-disable.php:25
912
  msgid "Only Deactivate"
913
  msgstr ""
914
 
915
- #: admin/views/feedback-disable.php:26
916
  msgid "don’t deactivate"
917
  msgstr ""
918
 
@@ -934,6 +1078,10 @@ msgstr ""
934
  msgid "template (PHP)"
935
  msgstr ""
936
 
 
 
 
 
937
  #: admin/views/placements.php:98
938
  msgid "Important Notice"
939
  msgstr ""
@@ -945,6 +1093,10 @@ msgid ""
945
  "provider to enable <em>mbstring</em>."
946
  msgstr ""
947
 
 
 
 
 
948
  #: admin/views/placements.php:128
949
  msgid "show all options"
950
  msgstr ""
@@ -965,12 +1117,26 @@ msgstr ""
965
  msgid "Your license expired."
966
  msgstr ""
967
 
968
- #: admin/views/setting-license.php:6
969
  #, php-format
970
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
971
  msgstr ""
972
 
973
- #: admin/views/setting-license.php:42
974
  msgid "License key invalid"
975
  msgstr ""
976
 
@@ -1065,22 +1231,6 @@ msgid ""
1065
  "href=\"%s\" target=\"_blank\">support page</a>."
1066
  msgstr ""
1067
 
1068
- #: modules/marketpress-license/admin.php:36
1069
- msgid "MarketPress Bundle License"
1070
- msgstr ""
1071
-
1072
- #: modules/marketpress-license/admin.php:67
1073
- #: modules/marketpress-license/admin.php:70
1074
- msgid ""
1075
- "Enter your key here, if you have purchased the bundle through MarketPress."
1076
- msgstr ""
1077
-
1078
- #: modules/marketpress-license/admin.php:72
1079
- msgid ""
1080
- "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
1081
- "."
1082
- msgstr ""
1083
-
1084
  #: public/views/ad-debug.php:18
1085
  msgid "Ad debug output"
1086
  msgstr ""
@@ -1193,98 +1343,98 @@ msgstr ""
1193
  msgid "Please enter XML content"
1194
  msgstr ""
1195
 
1196
- #: modules/import-export/classes/import.php:144
1197
- #: modules/import-export/classes/import.php:560
1198
  #, php-format
1199
  msgid "New attachment created <em>%s</em> %s"
1200
  msgstr ""
1201
 
1202
- #: modules/import-export/classes/import.php:176
1203
  #, php-format
1204
  msgid "Failed to import <em>%s</em>"
1205
  msgstr ""
1206
 
1207
- #: modules/import-export/classes/import.php:184
1208
  #, php-format
1209
  msgid "New ad created: <em>%s</em> %s"
1210
  msgstr ""
1211
 
1212
- #: modules/import-export/classes/import.php:227
1213
  #, php-format
1214
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
1215
  msgstr ""
1216
 
1217
- #: modules/import-export/classes/import.php:289
1218
  #, php-format
1219
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
1220
  msgstr ""
1221
 
1222
- #: modules/import-export/classes/import.php:291
1223
  #, php-format
1224
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
1225
  msgstr ""
1226
 
1227
- #: modules/import-export/classes/import.php:356
1228
  #, php-format
1229
  msgid "Placement <em>%s</em> created"
1230
  msgstr ""
1231
 
1232
- #: modules/import-export/classes/import.php:471
1233
  #, php-format
1234
  msgid "Option was updated: <em>%s</em>"
1235
  msgstr ""
1236
 
1237
- #: modules/import-export/classes/import.php:474
1238
  #, php-format
1239
  msgid "Option already exists: <em>%s</em>"
1240
  msgstr ""
1241
 
1242
- #: modules/import-export/classes/import.php:496
1243
  #, php-format
1244
  msgid "Failed to create import directory <em>%s</em>"
1245
  msgstr ""
1246
 
1247
- #: modules/import-export/classes/import.php:501
1248
  #, php-format
1249
  msgid "Import directory is not writable: <em>%s</em>"
1250
  msgstr ""
1251
 
1252
- #: modules/import-export/classes/import.php:509
1253
  msgid ""
1254
  "File is empty, uploads are disabled or post_max_size is smaller than "
1255
  "upload_max_filesize in php.ini"
1256
  msgstr ""
1257
 
1258
- #: modules/import-export/classes/import.php:519
1259
  #, php-format
1260
  msgid "Failed to upload file, error: <em>%s</em>"
1261
  msgstr ""
1262
 
1263
- #: modules/import-export/classes/import.php:524
1264
  msgid "File is empty."
1265
  msgstr ""
1266
 
1267
- #: modules/import-export/classes/import.php:529
1268
  #, php-format
1269
  msgid ""
1270
  "The file could not be created: <em>%s</em>. This is probably a permissions "
1271
  "problem"
1272
  msgstr ""
1273
 
1274
- #: modules/import-export/classes/import.php:602
1275
  #, php-format
1276
  msgid "Invalid filetype <em>%s</em>"
1277
  msgstr ""
1278
 
1279
- #: modules/import-export/classes/import.php:607
1280
- #: modules/import-export/classes/import.php:614
1281
- #: modules/import-export/classes/import.php:622
1282
- #: modules/import-export/classes/import.php:637
1283
  #, php-format
1284
  msgid "Error getting remote image <em>%s</em>"
1285
  msgstr ""
1286
 
1287
- #: modules/import-export/classes/import.php:631
1288
  #, php-format
1289
  msgid "Zero size file downloaded <em>%s</em>"
1290
  msgstr ""
@@ -1327,6 +1477,10 @@ msgid ""
1327
  "to save to your computer."
1328
  msgstr ""
1329
 
 
 
 
 
1330
  #: modules/import-export/views/page.php:33
1331
  msgid "Import"
1332
  msgstr ""
@@ -1339,6 +1493,17 @@ msgstr ""
1339
  msgid "Copy an XML content"
1340
  msgstr ""
1341
 
 
 
 
 
 
 
 
 
 
 
 
1342
  #: modules/import-export/views/page.php:66
1343
  msgid "Start import"
1344
  msgstr ""
@@ -1412,7 +1577,15 @@ msgstr ""
1412
  msgid "Link ads (Responsive)"
1413
  msgstr ""
1414
 
1415
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:68
 
 
 
 
 
 
 
 
1416
  #, php-format
1417
  msgid ""
1418
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -1420,6 +1593,18 @@ msgid ""
1420
  "vertical, or rectangle formats."
1421
  msgstr ""
1422
 
 
 
 
 
 
 
 
 
 
 
 
 
1423
  #. Name of the plugin
1424
  msgid "Advanced Ads"
1425
  msgstr ""
@@ -1454,8 +1639,8 @@ msgstr ""
1454
  msgid " at "
1455
  msgstr "bij"
1456
 
1457
- #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:86
1458
- #: admin/includes/class-menu.php:86
1459
  msgid "Support"
1460
  msgstr "Ondersteuning"
1461
 
@@ -1589,11 +1774,11 @@ msgstr ""
1589
  "Voer PHP code uit (zorg dat uw code omwikkeld is met <code>&lt;?php ?&gt;"
1590
  "</code>)"
1591
 
1592
- #: classes/display-conditions.php:70
1593
  msgid "Choose the public post types on which to display the ad."
1594
  msgstr "Kies de publieke post types waar u deze advertentie wilt tonen."
1595
 
1596
- #: classes/display-conditions.php:77
1597
  msgid ""
1598
  "Choose on which individual posts, pages and public post type pages you want "
1599
  "to display or hide ads."
@@ -1607,11 +1792,13 @@ msgstr "Andere voorwaarden"
1607
 
1608
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
1609
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
 
1610
  msgid "is"
1611
  msgstr "is"
1612
 
1613
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
1614
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
 
1615
  msgid "is not"
1616
  msgstr "is niet"
1617
 
@@ -1626,59 +1813,59 @@ msgstr ""
1626
  msgid "term name or id"
1627
  msgstr "Term naam of ID"
1628
 
1629
- #: classes/display-conditions.php:469
1630
  msgid "Home Page"
1631
  msgstr "Home pagina"
1632
 
1633
- #: classes/display-conditions.php:470
1634
  msgid "show on Home page"
1635
  msgstr "toon op home pagina"
1636
 
1637
- #: classes/display-conditions.php:474
1638
  msgid "Singular Pages"
1639
  msgstr "Singulaire pagina's"
1640
 
1641
- #: classes/display-conditions.php:475
1642
  msgid "show on singular pages/posts"
1643
  msgstr "toon op singulaire pagina's/berichten"
1644
 
1645
- #: classes/display-conditions.php:479
1646
  msgid "Archive Pages"
1647
  msgstr "Archief pagina's"
1648
 
1649
- #: classes/display-conditions.php:480
1650
  msgid "show on any type of archive page (category, tag, author and date)"
1651
  msgstr "toon op ieder type archief pagina (categorie, tag, auteur en datum)"
1652
 
1653
- #: classes/display-conditions.php:484
1654
  msgid "Search Results"
1655
  msgstr "Zoekresultaten"
1656
 
1657
- #: classes/display-conditions.php:485
1658
  msgid "show on search result pages"
1659
  msgstr "toon op zoekresultaten pagina's"
1660
 
1661
- #: classes/display-conditions.php:489
1662
  msgid "404 Page"
1663
  msgstr "404 pagina"
1664
 
1665
- #: classes/display-conditions.php:490
1666
  msgid "show on 404 error page"
1667
  msgstr "toon op 404 error pagina"
1668
 
1669
- #: classes/display-conditions.php:494
1670
  msgid "Attachment Pages"
1671
  msgstr "Bijlage pagina's"
1672
 
1673
- #: classes/display-conditions.php:495
1674
  msgid "show on attachment pages"
1675
  msgstr "toon op bijlage pagina's"
1676
 
1677
- #: classes/display-conditions.php:499
1678
  msgid "Secondary Queries"
1679
  msgstr "Secundaire queries"
1680
 
1681
- #: classes/display-conditions.php:500
1682
  msgid "allow ads in secondary queries"
1683
  msgstr "sta advertenties toe in secundaire queries"
1684
 
@@ -1839,9 +2026,9 @@ msgstr "Nieuwe advertentie toevoegen"
1839
 
1840
  #: public/class-advanced-ads.php:621
1841
  #: admin/includes/class-ad-groups-list.php:308
1842
- #: modules/import-export/classes/import.php:143
1843
- #: modules/import-export/classes/import.php:183
1844
- #: modules/import-export/classes/import.php:559
1845
  msgid "Edit"
1846
  msgstr "Bewerken"
1847
 
@@ -1911,10 +2098,12 @@ msgid "Usage"
1911
  msgstr "Gebruik"
1912
 
1913
  #: admin/includes/class-ad-groups-list.php:339
 
1914
  msgid "Invalid Ad Group"
1915
  msgstr "Incorrecte advertentiegroep"
1916
 
1917
  #: admin/includes/class-ad-groups-list.php:344
 
1918
  msgid "You don’t have permission to change the ad groups"
1919
  msgstr "U heeft onvoldoende rechten om de advertentiegroepen aan te passen."
1920
 
@@ -1982,26 +2171,16 @@ msgstr "Advertentie plaatsingen"
1982
  msgid "Advanced Ads Settings"
1983
  msgstr "Advanced Ads instellingen"
1984
 
1985
- #: admin/includes/class-menu.php:79 admin/views/debug.php:9
1986
  msgid "Settings"
1987
  msgstr "Instellingen"
1988
 
1989
- #: admin/includes/class-menu.php:82
1990
- msgid "Advanced Ads Debugging"
1991
- msgstr ""
1992
- "Advanced Ads \n"
1993
- "Debugging"
1994
-
1995
- #: admin/includes/class-menu.php:82
1996
- msgid "Debug"
1997
- msgstr "Debug"
1998
-
1999
- #: admin/includes/class-menu.php:190 admin/includes/class-menu.php:217
2000
  msgid "Sorry, you are not allowed to access this feature."
2001
  msgstr ""
2002
  "Sorry, u heeft niet genoeg rechten om deze functionaliteit te gebruiken."
2003
 
2004
- #: admin/includes/class-menu.php:203
2005
  msgid ""
2006
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
2007
  "deleted?"
@@ -2055,7 +2234,7 @@ msgstr "Verkrijg de tutorial via e-mail"
2055
  msgid "Get AdSense tips via email"
2056
  msgstr "Verkrijg AdSense tips via e-mail"
2057
 
2058
- #: admin/includes/class-notices.php:417
2059
  #, php-format
2060
  msgid ""
2061
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
@@ -2064,14 +2243,14 @@ msgstr ""
2064
  "Het lijkt erop dat u geen e-mailadres heeft. Gebruik alstublieft <a "
2065
  "href=\"%s\" target=\"_blank\">dit formulier</a> om u in te schrijven."
2066
 
2067
- #: admin/includes/class-notices.php:435
2068
  msgid ""
2069
  "How embarrassing. The email server seems to be down. Please try again later."
2070
  msgstr ""
2071
  "Het lijkt er op dat de e-mail server offline is. Probeer het later nog eens. "
2072
  "Onze excuses voor het ongemak."
2073
 
2074
- #: admin/includes/class-notices.php:440
2075
  #, php-format
2076
  msgid ""
2077
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -2505,19 +2684,6 @@ msgstr ""
2505
  #: admin/includes/notices.php:47
2506
  #, php-format
2507
  msgid ""
2508
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
2509
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
2510
- "before it expires with a significant discount on <a href=\"%s\" "
2511
- "target=\"_blank\">the add-on page</a>."
2512
- msgstr ""
2513
- "Één of meer <strong>licenties voor Advanced Ads add-ons zullen binnenkort "
2514
- "verlopen</strong>. Voorkom het verlies van updates en ondersteuning en "
2515
- "vernieuw uw licentie voordat deze verloopt en ontvang en flinke korting op "
2516
- "<a href=\"%s\" target=\"_blank\">de add-on pagina</a>."
2517
-
2518
- #: admin/includes/notices.php:53
2519
- #, php-format
2520
- msgid ""
2521
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2522
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2523
  "information."
@@ -2612,18 +2778,18 @@ msgstr "Type: %s"
2612
  msgid "ID: %s"
2613
  msgstr "ID: %s"
2614
 
2615
- #: admin/views/ad-group.php:18
2616
  msgid "Ad Groups successfully updated"
2617
  msgstr "Advertentiegroep succesvol opgeslagen"
2618
 
2619
- #: admin/views/ad-group.php:46
2620
  #, php-format
2621
  msgid "Search results for &#8220;%s&#8221;"
2622
  msgstr ""
2623
  "Zoekresultaten voor \n"
2624
  "&#8220;%s&#8221;"
2625
 
2626
- #: admin/views/ad-group.php:52
2627
  msgid ""
2628
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2629
  "display random ads in the frontend or run split tests, but also just for "
@@ -2636,7 +2802,7 @@ msgstr ""
2636
  " Niet alleen kunnen advertentiegroepen meerdere advertenties bezitten maar "
2637
  "kan een advertentie ook in meerdere advertentiegroepen voor komen."
2638
 
2639
- #: admin/views/ad-group.php:79
2640
  msgid "Update Groups"
2641
  msgstr "Groepen opslaan"
2642
 
@@ -2823,14 +2989,6 @@ msgstr "alleen op mobiele apparaten"
2823
  msgid "not on mobile devices"
2824
  msgstr "niet op mobiele apparaten"
2825
 
2826
- #: admin/views/debug.php:6 admin/views/settings.php:50
2827
- msgid "Debug Page"
2828
- msgstr "Debug Pagina"
2829
-
2830
- #: admin/views/debug.php:7
2831
- msgid "Work in progress"
2832
- msgstr "In ontwikkeling"
2833
-
2834
  #: admin/views/placements-content-index.php:1
2835
  msgid "after"
2836
  msgstr "na"
@@ -2964,16 +3122,16 @@ msgstr "Nieuwe plaatsing opslaan"
2964
  msgid "Disable ads on this page"
2965
  msgstr "Advertenties op deze pagina uitschakelen"
2966
 
2967
- #: admin/views/setting-license.php:18
2968
  #, php-format
2969
  msgid "(%d days left)"
2970
  msgstr "(%d dagen over)"
2971
 
2972
- #: admin/views/setting-license.php:22
2973
  msgid "License key"
2974
  msgstr "Licentiecode"
2975
 
2976
- #: admin/views/setting-license.php:45
2977
  msgid "active"
2978
  msgstr "actief"
2979
 
@@ -3022,15 +3180,15 @@ msgstr ""
3022
  msgid "Save settings on this page"
3023
  msgstr "Instellingen op deze pagina opslaan"
3024
 
3025
- #: admin/views/settings.php:51
3026
  msgid "Advanced Ads on WordPress.org"
3027
  msgstr "Advanced Ads op WordPress.org"
3028
 
3029
- #: admin/views/settings.php:51
3030
  msgid "Advanced Ads on wp.org"
3031
  msgstr "Advanced Ads op wp.org"
3032
 
3033
- #: admin/views/settings.php:52
3034
  msgid "the company behind Advanced Ads"
3035
  msgstr "het bedrijf achter Advanced Ads"
3036
 
@@ -3102,7 +3260,7 @@ msgstr "AdSense advertentie"
3102
  msgid "Use ads from your Google AdSense account"
3103
  msgstr "Gebruik advertenties van uw Google AdSense account"
3104
 
3105
- #: modules/gadsense/includes/class-ad-type-adsense.php:106
3106
  msgid "Your AdSense Publisher ID is missing."
3107
  msgstr "Uw AdSense Publisher ID ontbreekt."
3108
 
@@ -3132,6 +3290,6 @@ msgstr "<a href=\"%s\" target=\"_blank\">Pas het alstublieft hier aan</a>."
3132
  msgid "Normal"
3133
  msgstr "Normaal"
3134
 
3135
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:71
3136
  msgid "Resizing"
3137
  msgstr "Schalen"
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: 2017-07-11 09:29+0000\n"
6
+ "PO-Revision-Date: 2017-07-11 09:29+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Dutch\n"
9
  "Language: nl-NL\n"
127
  msgid "url"
128
  msgstr ""
129
 
 
 
 
 
 
 
 
130
  #: classes/ad_type_group.php:31
131
  msgid ""
132
  "Choose an existing ad group. Use this type when you want to assign the same "
161
  msgid "edit"
162
  msgstr ""
163
 
164
+ #: classes/ad_type_image.php:67
165
+ msgid "Link to target site"
166
+ msgstr ""
167
+
168
+ #: classes/ad_type_image.php:68
169
+ #, php-format
170
+ msgid ""
171
+ "Open this url in a new window and track impressions and clicks with the <a "
172
+ "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
173
+ msgstr ""
174
+
175
  #: classes/ad_type_plain.php:87
176
  msgid "Allow PHP"
177
  msgstr ""
244
  msgid "Could not access filesystem."
245
  msgstr ""
246
 
247
+ #: classes/filesystem.php:65
248
+ msgid "Filesystem error."
249
+ msgstr ""
250
+
251
  #: classes/filesystem.php:72
252
  msgid "Unable to locate WordPress root directory."
253
  msgstr ""
323
  msgid "highlight ads"
324
  msgstr ""
325
 
326
+ #: classes/frontend_checks.php:315
327
+ #, php-format
328
+ msgid ""
329
+ "This ads was automatically placed here by AdSense. <a href=\"%s\" "
330
+ "target=\"_blank\" style=\"color:#fff;border-color:#fff;\">Click here to "
331
+ "learn more</a>."
332
+ msgstr ""
333
+
334
  #: classes/visitor-conditions.php:32
335
  msgid "device"
336
  msgstr ""
354
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
355
  msgstr ""
356
 
357
+ #: classes/widget.php:61
358
+ msgid "Title:"
359
+ msgstr ""
360
+
361
+ #: includes/array_ad_conditions.php:39
362
+ msgid "Post Types"
363
+ msgstr ""
364
+
365
+ #: includes/array_ad_conditions.php:45
366
+ msgid "Categories, Tags and Taxonomies"
367
+ msgstr ""
368
+
369
+ #: includes/array_ad_conditions.php:46
370
+ msgid ""
371
+ "Choose terms from public category, tag and other taxonomies a post must "
372
+ "belong to in order to have ads."
373
+ msgstr ""
374
+
375
+ #: includes/array_ad_conditions.php:51
376
+ msgid "Category Archives"
377
+ msgstr ""
378
+
379
+ #: includes/array_ad_conditions.php:52
380
+ msgid "comma seperated IDs of category archives"
381
+ msgstr ""
382
+
383
+ #: includes/array_ad_conditions.php:57
384
+ msgid "Individual Posts, Pages and Public Post Types"
385
+ msgstr ""
386
+
387
  #: public/class-advanced-ads.php:317
388
  msgid "Advanced Ads Error following:"
389
  msgstr ""
420
  msgid "Add some"
421
  msgstr ""
422
 
423
+ #: admin/includes/class-ad-groups-list.php:318
424
+ msgid "Delete"
425
+ msgstr ""
426
+
427
+ #: admin/includes/class-ad-groups-list.php:374
428
+ msgid "No ad group created"
429
+ msgstr ""
430
+
431
  #: admin/includes/class-ad-type.php:98 admin/includes/class-ad-type.php:103
432
  msgid "Ad Planning"
433
  msgstr ""
440
  msgid "planned"
441
  msgstr ""
442
 
443
+ #: admin/includes/class-ad-type.php:222
444
+ #, php-format
445
+ msgid "%s ad updated."
446
+ msgid_plural "%s ads updated."
447
+ msgstr[0] ""
448
+ msgstr[1] ""
449
+
450
+ #: admin/includes/class-ad-type.php:223
451
+ #, php-format
452
+ msgid "%s ad not updated, somebody is editing it."
453
+ msgid_plural "%s ads not updated, somebody is editing them."
454
+ msgstr[0] ""
455
+ msgstr[1] ""
456
+
457
+ #: admin/includes/class-ad-type.php:224
458
+ #, php-format
459
+ msgid "%s ad permanently deleted."
460
+ msgid_plural "%s ads permanently deleted."
461
+ msgstr[0] ""
462
+ msgstr[1] ""
463
+
464
+ #: admin/includes/class-ad-type.php:225
465
+ #, php-format
466
+ msgid "%s ad moved to the Trash."
467
+ msgid_plural "%s ads moved to the Trash."
468
+ msgstr[0] ""
469
+ msgstr[1] ""
470
+
471
+ #: admin/includes/class-ad-type.php:226
472
+ #, php-format
473
+ msgid "%s ad restored from the Trash."
474
+ msgid_plural "%s ads restored from the Trash."
475
+ msgstr[0] ""
476
+ msgstr[1] ""
477
+
478
  #: admin/includes/class-ad-type.php:518
479
  #, php-format
480
  msgid ""
489
  "this page</a>."
490
  msgstr ""
491
 
492
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
493
  msgid "Please enter a valid license key"
494
  msgstr ""
495
 
496
  #: admin/includes/class-licenses.php:132
 
 
497
  msgid "License couldn’t be activated. Please try again later."
498
  msgstr ""
499
 
502
  msgstr ""
503
 
504
  #: admin/includes/class-licenses.php:148
 
505
  msgid "This is not the correct key for this add-on."
506
  msgstr ""
507
 
508
  #: admin/includes/class-licenses.php:149
 
509
  msgid "There are no activations left."
510
  msgstr ""
511
 
512
+ #: admin/includes/class-licenses.php:158
513
+ #, php-format
514
+ msgid "License is invalid. Reason: %s"
515
+ msgstr ""
516
+
517
  #: admin/includes/class-licenses.php:218
518
  msgid "Error while trying to disable the license. Please contact support."
519
  msgstr ""
648
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
649
  msgstr ""
650
 
651
+ #: admin/includes/class-settings.php:439
652
+ msgctxt "label before ads"
653
+ msgid "Advertisements"
654
+ msgstr ""
655
+
656
  #: admin/includes/class-settings.php:446
657
  msgid "Displayed above ads."
658
  msgstr ""
665
  msgid "Disable shortcode button in visual editor."
666
  msgstr ""
667
 
668
+ #: admin/includes/class-shortcode-creator.php:155
669
  #, php-format
670
  msgid ""
671
  "Please, either switch off your ad blocker or disable the shortcode button in "
690
  msgid "Please add valid license keys <a href=\"%s\">here</a>."
691
  msgstr ""
692
 
693
+ #: admin/includes/notices.php:53
694
  #, php-format
695
  msgid ""
696
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
702
  "org</a>.</p><p><em>Thomas</em>"
703
  msgstr ""
704
 
705
+ #: admin/includes/notices.php:59
706
  #, php-format
707
  msgid ""
708
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
760
  msgstr ""
761
 
762
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
763
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:66
764
  msgid "manual"
765
  msgstr ""
766
 
767
+ #: admin/views/ad-group-edit.php:14
768
+ msgid "You did not select an item for editing."
769
+ msgstr ""
770
+
771
+ #: admin/views/ad-group-edit.php:33
772
+ msgctxt "Taxonomy Name"
773
+ msgid "Name"
774
+ msgstr ""
775
+
776
+ #: admin/views/ad-group-edit.php:38
777
+ msgctxt "Taxonomy Slug"
778
+ msgid "Slug"
779
+ msgstr ""
780
+
781
+ #: admin/views/ad-group-edit.php:45
782
+ msgctxt "Taxonomy Description"
783
+ msgid "Description"
784
+ msgstr ""
785
+
786
  #: admin/views/ad-group-list-form-row.php:57
787
  msgid "Visible ads"
788
  msgstr ""
789
 
790
+ #: admin/views/ad-group.php:18
791
+ msgid "Ad Group successfully created"
792
+ msgstr ""
793
+
794
+ #: admin/views/ad-group.php:65
795
+ msgid "Group title"
796
  msgstr ""
797
 
798
+ #: admin/views/ad-group.php:66
799
+ msgid "save"
800
+ msgstr ""
801
+
802
+ #: admin/views/ad-group.php:69
803
  #, php-format
804
  msgid ""
805
  "Find more information about ad groups in the <a href=\"%s\" "
832
  msgid "next"
833
  msgstr ""
834
 
835
+ #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-top.php:85
836
+ msgid "Stop Wizard and show all options"
837
+ msgstr ""
838
+
839
  #: admin/views/ad-info-top.php:5
840
  #, php-format
841
  msgid ""
894
  "the most common options are visible."
895
  msgstr ""
896
 
 
 
 
 
897
  #: admin/views/ad-list-filters.php:2
898
  msgid "all ad types"
899
  msgstr ""
952
  msgid "reserve this space"
953
  msgstr ""
954
 
955
+ #: admin/views/ad-submitbox-meta.php:12
956
+ msgid "Month"
957
+ msgstr ""
958
+
959
+ #: admin/views/ad-submitbox-meta.php:21
960
+ msgid "Day"
961
+ msgstr ""
962
+
963
+ #: admin/views/ad-submitbox-meta.php:22
964
+ msgid "Year"
965
+ msgstr ""
966
+
967
+ #: admin/views/ad-submitbox-meta.php:23
968
+ msgid "Hour"
969
+ msgstr ""
970
+
971
+ #: admin/views/ad-submitbox-meta.php:24
972
+ msgid "Minute"
973
+ msgstr ""
974
+
975
  #: admin/views/ad-submitbox-meta.php:29
976
  #, php-format
977
  msgctxt ""
1008
  msgstr ""
1009
 
1010
  #: admin/views/feedback-disable.php:7
1011
+ msgid "I need help to set it up"
1012
  msgstr ""
1013
 
1014
  #: admin/views/feedback-disable.php:8
1015
+ msgid "I have a problem"
1016
+ msgstr ""
1017
+
1018
+ #: admin/views/feedback-disable.php:9
1019
  msgid "Please let us know how we can help"
1020
  msgstr ""
1021
 
1022
+ #: admin/views/feedback-disable.php:12
1023
  #, php-format
1024
  msgid "Send me free help to %s"
1025
  msgstr ""
1026
 
1027
+ #: admin/views/feedback-disable.php:14
1028
  msgid "I miss a feature"
1029
  msgstr ""
1030
 
1031
+ #: admin/views/feedback-disable.php:15 admin/views/feedback-disable.php:18
1032
  msgid "Which one?"
1033
  msgstr ""
1034
 
1035
+ #: admin/views/feedback-disable.php:16
1036
  msgid "I don’t use ads on my site"
1037
  msgstr ""
1038
 
1039
+ #: admin/views/feedback-disable.php:17
1040
  msgid "I switched to another plugin"
1041
  msgstr ""
1042
 
1043
+ #: admin/views/feedback-disable.php:19
1044
  msgid "other reason"
1045
  msgstr ""
1046
 
1047
+ #: admin/views/feedback-disable.php:20
1048
+ msgid "Please specify"
1049
  msgstr ""
1050
 
1051
+ #: admin/views/feedback-disable.php:25
1052
  msgid "Submit & Deactivate"
1053
  msgstr ""
1054
 
1055
+ #: admin/views/feedback-disable.php:26
1056
  msgid "Only Deactivate"
1057
  msgstr ""
1058
 
1059
+ #: admin/views/feedback-disable.php:27
1060
  msgid "don’t deactivate"
1061
  msgstr ""
1062
 
1078
  msgid "template (PHP)"
1079
  msgstr ""
1080
 
1081
+ #: admin/views/placements.php:94
1082
+ msgid "position"
1083
+ msgstr ""
1084
+
1085
  #: admin/views/placements.php:98
1086
  msgid "Important Notice"
1087
  msgstr ""
1093
  "provider to enable <em>mbstring</em>."
1094
  msgstr ""
1095
 
1096
+ #: admin/views/placements.php:119
1097
+ msgid "ad label"
1098
+ msgstr ""
1099
+
1100
  #: admin/views/placements.php:128
1101
  msgid "show all options"
1102
  msgstr ""
1117
  msgid "Your license expired."
1118
  msgstr ""
1119
 
1120
+ #: admin/views/setting-license.php:15
1121
  #, php-format
1122
+ msgid ""
1123
+ "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
1124
+ "target=\"_blank\">renew your license with a discount</a>."
1125
+ msgstr ""
1126
+
1127
+ #: admin/views/setting-license.php:41
1128
+ msgid "Deactivate License"
1129
+ msgstr ""
1130
+
1131
+ #: admin/views/setting-license.php:47
1132
+ msgid "Update License"
1133
+ msgstr ""
1134
+
1135
+ #: admin/views/setting-license.php:47
1136
+ msgid "Activate License"
1137
  msgstr ""
1138
 
1139
+ #: admin/views/setting-license.php:51
1140
  msgid "License key invalid"
1141
  msgstr ""
1142
 
1231
  "href=\"%s\" target=\"_blank\">support page</a>."
1232
  msgstr ""
1233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1234
  #: public/views/ad-debug.php:18
1235
  msgid "Ad debug output"
1236
  msgstr ""
1343
  msgid "Please enter XML content"
1344
  msgstr ""
1345
 
1346
+ #: modules/import-export/classes/import.php:145
1347
+ #: modules/import-export/classes/import.php:561
1348
  #, php-format
1349
  msgid "New attachment created <em>%s</em> %s"
1350
  msgstr ""
1351
 
1352
+ #: modules/import-export/classes/import.php:177
1353
  #, php-format
1354
  msgid "Failed to import <em>%s</em>"
1355
  msgstr ""
1356
 
1357
+ #: modules/import-export/classes/import.php:185
1358
  #, php-format
1359
  msgid "New ad created: <em>%s</em> %s"
1360
  msgstr ""
1361
 
1362
+ #: modules/import-export/classes/import.php:228
1363
  #, php-format
1364
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
1365
  msgstr ""
1366
 
1367
+ #: modules/import-export/classes/import.php:290
1368
  #, php-format
1369
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
1370
  msgstr ""
1371
 
1372
+ #: modules/import-export/classes/import.php:292
1373
  #, php-format
1374
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
1375
  msgstr ""
1376
 
1377
+ #: modules/import-export/classes/import.php:357
1378
  #, php-format
1379
  msgid "Placement <em>%s</em> created"
1380
  msgstr ""
1381
 
1382
+ #: modules/import-export/classes/import.php:472
1383
  #, php-format
1384
  msgid "Option was updated: <em>%s</em>"
1385
  msgstr ""
1386
 
1387
+ #: modules/import-export/classes/import.php:475
1388
  #, php-format
1389
  msgid "Option already exists: <em>%s</em>"
1390
  msgstr ""
1391
 
1392
+ #: modules/import-export/classes/import.php:497
1393
  #, php-format
1394
  msgid "Failed to create import directory <em>%s</em>"
1395
  msgstr ""
1396
 
1397
+ #: modules/import-export/classes/import.php:502
1398
  #, php-format
1399
  msgid "Import directory is not writable: <em>%s</em>"
1400
  msgstr ""
1401
 
1402
+ #: modules/import-export/classes/import.php:510
1403
  msgid ""
1404
  "File is empty, uploads are disabled or post_max_size is smaller than "
1405
  "upload_max_filesize in php.ini"
1406
  msgstr ""
1407
 
1408
+ #: modules/import-export/classes/import.php:520
1409
  #, php-format
1410
  msgid "Failed to upload file, error: <em>%s</em>"
1411
  msgstr ""
1412
 
1413
+ #: modules/import-export/classes/import.php:525
1414
  msgid "File is empty."
1415
  msgstr ""
1416
 
1417
+ #: modules/import-export/classes/import.php:530
1418
  #, php-format
1419
  msgid ""
1420
  "The file could not be created: <em>%s</em>. This is probably a permissions "
1421
  "problem"
1422
  msgstr ""
1423
 
1424
+ #: modules/import-export/classes/import.php:603
1425
  #, php-format
1426
  msgid "Invalid filetype <em>%s</em>"
1427
  msgstr ""
1428
 
1429
+ #: modules/import-export/classes/import.php:608
1430
+ #: modules/import-export/classes/import.php:615
1431
+ #: modules/import-export/classes/import.php:623
1432
+ #: modules/import-export/classes/import.php:638
1433
  #, php-format
1434
  msgid "Error getting remote image <em>%s</em>"
1435
  msgstr ""
1436
 
1437
+ #: modules/import-export/classes/import.php:632
1438
  #, php-format
1439
  msgid "Zero size file downloaded <em>%s</em>"
1440
  msgstr ""
1477
  "to save to your computer."
1478
  msgstr ""
1479
 
1480
+ #: modules/import-export/views/page.php:28
1481
+ msgid "Download Export File"
1482
+ msgstr ""
1483
+
1484
  #: modules/import-export/views/page.php:33
1485
  msgid "Import"
1486
  msgstr ""
1493
  msgid "Copy an XML content"
1494
  msgstr ""
1495
 
1496
+ #: modules/import-export/views/page.php:52
1497
+ msgid ""
1498
+ "Before you can upload your import file, you will need to fix the following "
1499
+ "error:"
1500
+ msgstr ""
1501
+
1502
+ #: modules/import-export/views/page.php:57
1503
+ #, php-format
1504
+ msgid "Maximum size: %s"
1505
+ msgstr ""
1506
+
1507
  #: modules/import-export/views/page.php:66
1508
  msgid "Start import"
1509
  msgstr ""
1577
  msgid "Link ads (Responsive)"
1578
  msgstr ""
1579
 
1580
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:63
1581
+ msgid "InArticle"
1582
+ msgstr ""
1583
+
1584
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
1585
+ msgid "InFeed"
1586
+ msgstr ""
1587
+
1588
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:70
1589
  #, php-format
1590
  msgid ""
1591
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
1593
  "vertical, or rectangle formats."
1594
  msgstr ""
1595
 
1596
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:81
1597
+ msgid "Tutorial: How to place ads between posts?"
1598
+ msgstr ""
1599
+
1600
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
1601
+ msgid "Layout"
1602
+ msgstr ""
1603
+
1604
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:86
1605
+ msgid "Layout-Key"
1606
+ msgstr ""
1607
+
1608
  #. Name of the plugin
1609
  msgid "Advanced Ads"
1610
  msgstr ""
1639
  msgid " at "
1640
  msgstr "bij"
1641
 
1642
+ #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:83
1643
+ #: admin/includes/class-menu.php:83
1644
  msgid "Support"
1645
  msgstr "Ondersteuning"
1646
 
1774
  "Voer PHP code uit (zorg dat uw code omwikkeld is met <code>&lt;?php ?&gt;"
1775
  "</code>)"
1776
 
1777
+ #: classes/display-conditions.php:70 includes/array_ad_conditions.php:40
1778
  msgid "Choose the public post types on which to display the ad."
1779
  msgstr "Kies de publieke post types waar u deze advertentie wilt tonen."
1780
 
1781
+ #: classes/display-conditions.php:77 includes/array_ad_conditions.php:58
1782
  msgid ""
1783
  "Choose on which individual posts, pages and public post type pages you want "
1784
  "to display or hide ads."
1792
 
1793
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
1794
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
1795
+ #: classes/visitor-conditions.php:126
1796
  msgid "is"
1797
  msgstr "is"
1798
 
1799
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
1800
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
1801
+ #: classes/visitor-conditions.php:127
1802
  msgid "is not"
1803
  msgstr "is niet"
1804
 
1813
  msgid "term name or id"
1814
  msgstr "Term naam of ID"
1815
 
1816
+ #: classes/display-conditions.php:469 includes/array_ad_conditions.php:63
1817
  msgid "Home Page"
1818
  msgstr "Home pagina"
1819
 
1820
+ #: classes/display-conditions.php:470 includes/array_ad_conditions.php:64
1821
  msgid "show on Home page"
1822
  msgstr "toon op home pagina"
1823
 
1824
+ #: classes/display-conditions.php:474 includes/array_ad_conditions.php:68
1825
  msgid "Singular Pages"
1826
  msgstr "Singulaire pagina's"
1827
 
1828
+ #: classes/display-conditions.php:475 includes/array_ad_conditions.php:69
1829
  msgid "show on singular pages/posts"
1830
  msgstr "toon op singulaire pagina's/berichten"
1831
 
1832
+ #: classes/display-conditions.php:479 includes/array_ad_conditions.php:73
1833
  msgid "Archive Pages"
1834
  msgstr "Archief pagina's"
1835
 
1836
+ #: classes/display-conditions.php:480 includes/array_ad_conditions.php:74
1837
  msgid "show on any type of archive page (category, tag, author and date)"
1838
  msgstr "toon op ieder type archief pagina (categorie, tag, auteur en datum)"
1839
 
1840
+ #: classes/display-conditions.php:484 includes/array_ad_conditions.php:78
1841
  msgid "Search Results"
1842
  msgstr "Zoekresultaten"
1843
 
1844
+ #: classes/display-conditions.php:485 includes/array_ad_conditions.php:79
1845
  msgid "show on search result pages"
1846
  msgstr "toon op zoekresultaten pagina's"
1847
 
1848
+ #: classes/display-conditions.php:489 includes/array_ad_conditions.php:83
1849
  msgid "404 Page"
1850
  msgstr "404 pagina"
1851
 
1852
+ #: classes/display-conditions.php:490 includes/array_ad_conditions.php:84
1853
  msgid "show on 404 error page"
1854
  msgstr "toon op 404 error pagina"
1855
 
1856
+ #: classes/display-conditions.php:494 includes/array_ad_conditions.php:88
1857
  msgid "Attachment Pages"
1858
  msgstr "Bijlage pagina's"
1859
 
1860
+ #: classes/display-conditions.php:495 includes/array_ad_conditions.php:89
1861
  msgid "show on attachment pages"
1862
  msgstr "toon op bijlage pagina's"
1863
 
1864
+ #: classes/display-conditions.php:499 includes/array_ad_conditions.php:93
1865
  msgid "Secondary Queries"
1866
  msgstr "Secundaire queries"
1867
 
1868
+ #: classes/display-conditions.php:500 includes/array_ad_conditions.php:94
1869
  msgid "allow ads in secondary queries"
1870
  msgstr "sta advertenties toe in secundaire queries"
1871
 
2026
 
2027
  #: public/class-advanced-ads.php:621
2028
  #: admin/includes/class-ad-groups-list.php:308
2029
+ #: modules/import-export/classes/import.php:144
2030
+ #: modules/import-export/classes/import.php:184
2031
+ #: modules/import-export/classes/import.php:560
2032
  msgid "Edit"
2033
  msgstr "Bewerken"
2034
 
2098
  msgstr "Gebruik"
2099
 
2100
  #: admin/includes/class-ad-groups-list.php:339
2101
+ #: admin/includes/class-ad-groups-list.php:389
2102
  msgid "Invalid Ad Group"
2103
  msgstr "Incorrecte advertentiegroep"
2104
 
2105
  #: admin/includes/class-ad-groups-list.php:344
2106
+ #: admin/includes/class-ad-groups-list.php:394
2107
  msgid "You don’t have permission to change the ad groups"
2108
  msgstr "U heeft onvoldoende rechten om de advertentiegroepen aan te passen."
2109
 
2171
  msgid "Advanced Ads Settings"
2172
  msgstr "Advanced Ads instellingen"
2173
 
2174
+ #: admin/includes/class-menu.php:79
2175
  msgid "Settings"
2176
  msgstr "Instellingen"
2177
 
2178
+ #: admin/includes/class-menu.php:173 admin/includes/class-menu.php:200
 
 
 
 
 
 
 
 
 
 
2179
  msgid "Sorry, you are not allowed to access this feature."
2180
  msgstr ""
2181
  "Sorry, u heeft niet genoeg rechten om deze functionaliteit te gebruiken."
2182
 
2183
+ #: admin/includes/class-menu.php:186
2184
  msgid ""
2185
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
2186
  "deleted?"
2234
  msgid "Get AdSense tips via email"
2235
  msgstr "Verkrijg AdSense tips via e-mail"
2236
 
2237
+ #: admin/includes/class-notices.php:408
2238
  #, php-format
2239
  msgid ""
2240
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
2243
  "Het lijkt erop dat u geen e-mailadres heeft. Gebruik alstublieft <a "
2244
  "href=\"%s\" target=\"_blank\">dit formulier</a> om u in te schrijven."
2245
 
2246
+ #: admin/includes/class-notices.php:426
2247
  msgid ""
2248
  "How embarrassing. The email server seems to be down. Please try again later."
2249
  msgstr ""
2250
  "Het lijkt er op dat de e-mail server offline is. Probeer het later nog eens. "
2251
  "Onze excuses voor het ongemak."
2252
 
2253
+ #: admin/includes/class-notices.php:431
2254
  #, php-format
2255
  msgid ""
2256
  "Please check your email (%s) for the confirmation message. If you didn’t "
2684
  #: admin/includes/notices.php:47
2685
  #, php-format
2686
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
2687
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2688
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2689
  "information."
2778
  msgid "ID: %s"
2779
  msgstr "ID: %s"
2780
 
2781
+ #: admin/views/ad-group.php:29
2782
  msgid "Ad Groups successfully updated"
2783
  msgstr "Advertentiegroep succesvol opgeslagen"
2784
 
2785
+ #: admin/views/ad-group.php:59
2786
  #, php-format
2787
  msgid "Search results for &#8220;%s&#8221;"
2788
  msgstr ""
2789
  "Zoekresultaten voor \n"
2790
  "&#8220;%s&#8221;"
2791
 
2792
+ #: admin/views/ad-group.php:68
2793
  msgid ""
2794
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2795
  "display random ads in the frontend or run split tests, but also just for "
2802
  " Niet alleen kunnen advertentiegroepen meerdere advertenties bezitten maar "
2803
  "kan een advertentie ook in meerdere advertentiegroepen voor komen."
2804
 
2805
+ #: admin/views/ad-group.php:96
2806
  msgid "Update Groups"
2807
  msgstr "Groepen opslaan"
2808
 
2989
  msgid "not on mobile devices"
2990
  msgstr "niet op mobiele apparaten"
2991
 
 
 
 
 
 
 
 
 
2992
  #: admin/views/placements-content-index.php:1
2993
  msgid "after"
2994
  msgstr "na"
3122
  msgid "Disable ads on this page"
3123
  msgstr "Advertenties op deze pagina uitschakelen"
3124
 
3125
+ #: admin/views/setting-license.php:27
3126
  #, php-format
3127
  msgid "(%d days left)"
3128
  msgstr "(%d dagen over)"
3129
 
3130
+ #: admin/views/setting-license.php:31
3131
  msgid "License key"
3132
  msgstr "Licentiecode"
3133
 
3134
+ #: admin/views/setting-license.php:54
3135
  msgid "active"
3136
  msgstr "actief"
3137
 
3180
  msgid "Save settings on this page"
3181
  msgstr "Instellingen op deze pagina opslaan"
3182
 
3183
+ #: admin/views/settings.php:50
3184
  msgid "Advanced Ads on WordPress.org"
3185
  msgstr "Advanced Ads op WordPress.org"
3186
 
3187
+ #: admin/views/settings.php:50
3188
  msgid "Advanced Ads on wp.org"
3189
  msgstr "Advanced Ads op wp.org"
3190
 
3191
+ #: admin/views/settings.php:51
3192
  msgid "the company behind Advanced Ads"
3193
  msgstr "het bedrijf achter Advanced Ads"
3194
 
3260
  msgid "Use ads from your Google AdSense account"
3261
  msgstr "Gebruik advertenties van uw Google AdSense account"
3262
 
3263
+ #: modules/gadsense/includes/class-ad-type-adsense.php:108
3264
  msgid "Your AdSense Publisher ID is missing."
3265
  msgstr "Uw AdSense Publisher ID ontbreekt."
3266
 
3290
  msgid "Normal"
3291
  msgstr "Normaal"
3292
 
3293
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:73
3294
  msgid "Resizing"
3295
  msgstr "Schalen"
languages/advanced-ads-pt_BR.mo CHANGED
Binary file
languages/advanced-ads-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ 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: 2017-06-22 13:16+0000\n"
6
- "PO-Revision-Date: 2017-06-22 13:16+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt-BR\n"
@@ -85,13 +85,6 @@ msgstr ""
85
  msgid "url"
86
  msgstr ""
87
 
88
- #: classes/ad_type_dummy.php:49 classes/ad_type_image.php:68
89
- #, php-format
90
- msgid ""
91
- "Open this url in a new window and track impressions and clicks with the <a "
92
- "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
93
- msgstr ""
94
-
95
  #: classes/ad_type_image.php:34
96
  msgid "Image Ad"
97
  msgstr ""
@@ -116,17 +109,30 @@ msgstr ""
116
  msgid "edit"
117
  msgstr ""
118
 
 
 
 
 
 
 
 
 
 
 
 
119
  #: classes/ad_type_plain.php:87
120
  msgid "Allow PHP"
121
  msgstr ""
122
 
123
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
124
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
 
125
  msgid "is"
126
  msgstr ""
127
 
128
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
129
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
 
130
  msgid "is not"
131
  msgstr ""
132
 
@@ -155,6 +161,10 @@ msgstr ""
155
  msgid "Could not access filesystem."
156
  msgstr ""
157
 
 
 
 
 
158
  #: classes/filesystem.php:72
159
  msgid "Unable to locate WordPress root directory."
160
  msgstr ""
@@ -230,6 +240,14 @@ msgstr ""
230
  msgid "highlight ads"
231
  msgstr ""
232
 
 
 
 
 
 
 
 
 
233
  #: classes/visitor-conditions.php:32
234
  msgid "device"
235
  msgstr ""
@@ -249,6 +267,36 @@ msgid ""
249
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
250
  msgstr ""
251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  #: public/class-advanced-ads.php:754
253
  msgctxt "label above ads"
254
  msgid "Advertisements"
@@ -263,6 +311,49 @@ msgstr ""
263
  msgid "Add some"
264
  msgstr ""
265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  #: admin/includes/class-ad-type.php:518
267
  #, php-format
268
  msgid ""
@@ -277,6 +368,11 @@ msgid ""
277
  "this page</a>."
278
  msgstr ""
279
 
 
 
 
 
 
280
  #: admin/includes/class-licenses.php:470
281
  #, php-format
282
  msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
@@ -341,6 +437,11 @@ msgid ""
341
  "limitation and ads might show up again."
342
  msgstr ""
343
 
 
 
 
 
 
344
  #: admin/includes/class-settings.php:460
345
  msgid "Clean up all data related to Advanced Ads when removing the plugin."
346
  msgstr ""
@@ -349,7 +450,7 @@ msgstr ""
349
  msgid "Disable shortcode button in visual editor."
350
  msgstr ""
351
 
352
- #: admin/includes/class-shortcode-creator.php:154
353
  #, php-format
354
  msgid ""
355
  "Please, either switch off your ad blocker or disable the shortcode button in "
@@ -390,21 +491,46 @@ msgid "Forced to OR."
390
  msgstr ""
391
 
392
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
393
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
394
  msgid "manual"
395
  msgstr ""
396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
397
  #: admin/views/ad-group-list-form-row.php:57
398
  msgid "Visible ads"
399
  msgstr ""
400
 
401
- #: admin/views/ad-group.php:53
402
- msgid ""
403
- "You can create a new group through the <em>Ad Groups</em> widget on the ad "
404
- "edit page."
 
 
405
  msgstr ""
406
 
407
- #: admin/views/ad-group.php:53
 
 
 
 
408
  #, php-format
409
  msgid ""
410
  "Find more information about ad groups in the <a href=\"%s\" "
@@ -437,6 +563,10 @@ msgctxt "wizard navigation"
437
  msgid "next"
438
  msgstr ""
439
 
 
 
 
 
440
  #: admin/views/ad-info-top.php:8
441
  msgid "New placement"
442
  msgstr ""
@@ -463,10 +593,6 @@ msgid ""
463
  "the most common options are visible."
464
  msgstr ""
465
 
466
- #: admin/views/ad-info-top.php:85
467
- msgid "Stop Wizard and show all options"
468
- msgstr ""
469
-
470
  #: admin/views/ad-list-no-ads.php:2
471
  msgid "Not many ads here yet. Get help from the following resources:"
472
  msgstr ""
@@ -489,6 +615,26 @@ msgid ""
489
  "with a space"
490
  msgstr ""
491
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  #: admin/views/ad-visitor-metabox.php:7
493
  msgid ""
494
  "Click on the button below if the ad should NOT be visible to all visitors"
@@ -507,43 +653,51 @@ msgid "It is only temporary"
507
  msgstr ""
508
 
509
  #: admin/views/feedback-disable.php:7
510
- msgid "I have a problem"
511
  msgstr ""
512
 
513
  #: admin/views/feedback-disable.php:8
 
 
 
 
514
  msgid "Please let us know how we can help"
515
  msgstr ""
516
 
517
- #: admin/views/feedback-disable.php:11
518
  #, php-format
519
  msgid "Send me free help to %s"
520
  msgstr ""
521
 
522
- #: admin/views/feedback-disable.php:13
523
  msgid "I miss a feature"
524
  msgstr ""
525
 
526
- #: admin/views/feedback-disable.php:14 admin/views/feedback-disable.php:17
527
  msgid "Which one?"
528
  msgstr ""
529
 
530
- #: admin/views/feedback-disable.php:15
531
  msgid "I don’t use ads on my site"
532
  msgstr ""
533
 
534
- #: admin/views/feedback-disable.php:16
535
  msgid "I switched to another plugin"
536
  msgstr ""
537
 
538
- #: admin/views/feedback-disable.php:24
539
- msgid "Submit & Deactivate"
540
  msgstr ""
541
 
542
  #: admin/views/feedback-disable.php:25
543
- msgid "Only Deactivate"
544
  msgstr ""
545
 
546
  #: admin/views/feedback-disable.php:26
 
 
 
 
547
  msgid "don’t deactivate"
548
  msgstr ""
549
 
@@ -565,6 +719,14 @@ msgstr ""
565
  msgid "template (PHP)"
566
  msgstr ""
567
 
 
 
 
 
 
 
 
 
568
  #: admin/views/placements.php:128
569
  msgid "show all options"
570
  msgstr ""
@@ -576,6 +738,25 @@ msgid ""
576
  "header of your website</a>."
577
  msgstr ""
578
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
579
  #: admin/views/settings.php:49 modules/import-export/main.php:15
580
  #: modules/import-export/main.php:15
581
  msgid "Import &amp; Export"
@@ -604,22 +785,6 @@ msgid ""
604
  "href=\"%s\" target=\"_blank\">support page</a>."
605
  msgstr ""
606
 
607
- #: modules/marketpress-license/admin.php:36
608
- msgid "MarketPress Bundle License"
609
- msgstr ""
610
-
611
- #: modules/marketpress-license/admin.php:67
612
- #: modules/marketpress-license/admin.php:70
613
- msgid ""
614
- "Enter your key here, if you have purchased the bundle through MarketPress."
615
- msgstr ""
616
-
617
- #: modules/marketpress-license/admin.php:72
618
- msgid ""
619
- "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
620
- "."
621
- msgstr ""
622
-
623
  #: public/views/ad-debug.php:18
624
  msgid "Ad debug output"
625
  msgstr ""
@@ -663,98 +828,98 @@ msgstr ""
663
  msgid "Please enter XML content"
664
  msgstr ""
665
 
666
- #: modules/import-export/classes/import.php:144
667
- #: modules/import-export/classes/import.php:560
668
  #, php-format
669
  msgid "New attachment created <em>%s</em> %s"
670
  msgstr ""
671
 
672
- #: modules/import-export/classes/import.php:176
673
  #, php-format
674
  msgid "Failed to import <em>%s</em>"
675
  msgstr ""
676
 
677
- #: modules/import-export/classes/import.php:184
678
  #, php-format
679
  msgid "New ad created: <em>%s</em> %s"
680
  msgstr ""
681
 
682
- #: modules/import-export/classes/import.php:227
683
  #, php-format
684
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
685
  msgstr ""
686
 
687
- #: modules/import-export/classes/import.php:289
688
  #, php-format
689
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
690
  msgstr ""
691
 
692
- #: modules/import-export/classes/import.php:291
693
  #, php-format
694
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
695
  msgstr ""
696
 
697
- #: modules/import-export/classes/import.php:356
698
  #, php-format
699
  msgid "Placement <em>%s</em> created"
700
  msgstr ""
701
 
702
- #: modules/import-export/classes/import.php:471
703
  #, php-format
704
  msgid "Option was updated: <em>%s</em>"
705
  msgstr ""
706
 
707
- #: modules/import-export/classes/import.php:474
708
  #, php-format
709
  msgid "Option already exists: <em>%s</em>"
710
  msgstr ""
711
 
712
- #: modules/import-export/classes/import.php:496
713
  #, php-format
714
  msgid "Failed to create import directory <em>%s</em>"
715
  msgstr ""
716
 
717
- #: modules/import-export/classes/import.php:501
718
  #, php-format
719
  msgid "Import directory is not writable: <em>%s</em>"
720
  msgstr ""
721
 
722
- #: modules/import-export/classes/import.php:509
723
  msgid ""
724
  "File is empty, uploads are disabled or post_max_size is smaller than "
725
  "upload_max_filesize in php.ini"
726
  msgstr ""
727
 
728
- #: modules/import-export/classes/import.php:519
729
  #, php-format
730
  msgid "Failed to upload file, error: <em>%s</em>"
731
  msgstr ""
732
 
733
- #: modules/import-export/classes/import.php:524
734
  msgid "File is empty."
735
  msgstr ""
736
 
737
- #: modules/import-export/classes/import.php:529
738
  #, php-format
739
  msgid ""
740
  "The file could not be created: <em>%s</em>. This is probably a permissions "
741
  "problem"
742
  msgstr ""
743
 
744
- #: modules/import-export/classes/import.php:602
745
  #, php-format
746
  msgid "Invalid filetype <em>%s</em>"
747
  msgstr ""
748
 
749
- #: modules/import-export/classes/import.php:607
750
- #: modules/import-export/classes/import.php:614
751
- #: modules/import-export/classes/import.php:622
752
- #: modules/import-export/classes/import.php:637
753
  #, php-format
754
  msgid "Error getting remote image <em>%s</em>"
755
  msgstr ""
756
 
757
- #: modules/import-export/classes/import.php:631
758
  #, php-format
759
  msgid "Zero size file downloaded <em>%s</em>"
760
  msgstr ""
@@ -797,6 +962,10 @@ msgid ""
797
  "to save to your computer."
798
  msgstr ""
799
 
 
 
 
 
800
  #: modules/import-export/views/page.php:33
801
  msgid "Import"
802
  msgstr ""
@@ -809,6 +978,17 @@ msgstr ""
809
  msgid "Copy an XML content"
810
  msgstr ""
811
 
 
 
 
 
 
 
 
 
 
 
 
812
  #: modules/import-export/views/page.php:66
813
  msgid "Start import"
814
  msgstr ""
@@ -841,7 +1021,15 @@ msgstr ""
841
  msgid "Link ads (Responsive)"
842
  msgstr ""
843
 
844
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:68
 
 
 
 
 
 
 
 
845
  #, php-format
846
  msgid ""
847
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -849,6 +1037,18 @@ msgid ""
849
  "vertical, or rectangle formats."
850
  msgstr ""
851
 
 
 
 
 
 
 
 
 
 
 
 
 
852
  #: admin/class-advanced-ads-admin.php:190 classes/display-conditions.php:178
853
  #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:114
854
  msgid "or"
@@ -868,8 +1068,8 @@ msgstr "Após o qual parágrafo?"
868
  msgid "time of %s"
869
  msgstr "tempo de %s"
870
 
871
- #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:86
872
- #: admin/includes/class-menu.php:86
873
  msgid "Support"
874
  msgstr "Suporte"
875
 
@@ -1054,7 +1254,7 @@ msgstr ""
1054
  msgid "post type"
1055
  msgstr "tipo de postagem"
1056
 
1057
- #: classes/display-conditions.php:70
1058
  msgid "Choose the public post types on which to display the ad."
1059
  msgstr "Escolha o tipo de conteúdo para exibir o anúncio"
1060
 
@@ -1062,7 +1262,7 @@ msgstr "Escolha o tipo de conteúdo para exibir o anúncio"
1062
  msgid "specific pages"
1063
  msgstr "páginas específicas"
1064
 
1065
- #: classes/display-conditions.php:77
1066
  msgid ""
1067
  "Choose on which individual posts, pages and public post type pages you want "
1068
  "to display or hide ads."
@@ -1102,59 +1302,59 @@ msgstr "nome ou id do termo"
1102
  msgid "title or id"
1103
  msgstr "título ou id"
1104
 
1105
- #: classes/display-conditions.php:469
1106
  msgid "Home Page"
1107
  msgstr "Página Inicial"
1108
 
1109
- #: classes/display-conditions.php:470
1110
  msgid "show on Home page"
1111
  msgstr "mostrar na página inicial"
1112
 
1113
- #: classes/display-conditions.php:474
1114
  msgid "Singular Pages"
1115
  msgstr "Páginas Simples"
1116
 
1117
- #: classes/display-conditions.php:475
1118
  msgid "show on singular pages/posts"
1119
  msgstr "mostrar no singular páginas/posts"
1120
 
1121
- #: classes/display-conditions.php:479
1122
  msgid "Archive Pages"
1123
  msgstr "Páginas de Arquivos"
1124
 
1125
- #: classes/display-conditions.php:480
1126
  msgid "show on any type of archive page (category, tag, author and date)"
1127
  msgstr "mostrar em qualquer tipo de página (categoria, tag, autor e data)"
1128
 
1129
- #: classes/display-conditions.php:484
1130
  msgid "Search Results"
1131
  msgstr "Resultados da Pesquisa"
1132
 
1133
- #: classes/display-conditions.php:485
1134
  msgid "show on search result pages"
1135
  msgstr "mostrar nas páginas de resultados de busca"
1136
 
1137
- #: classes/display-conditions.php:489
1138
  msgid "404 Page"
1139
  msgstr "Página 404"
1140
 
1141
- #: classes/display-conditions.php:490
1142
  msgid "show on 404 error page"
1143
  msgstr "mostrar na página de erro 404"
1144
 
1145
- #: classes/display-conditions.php:494
1146
  msgid "Attachment Pages"
1147
  msgstr "Páginas de Anexos"
1148
 
1149
- #: classes/display-conditions.php:495
1150
  msgid "show on attachment pages"
1151
  msgstr "mostrar nas páginas de anexos"
1152
 
1153
- #: classes/display-conditions.php:499
1154
  msgid "Secondary Queries"
1155
  msgstr "Consultas Secundárias"
1156
 
1157
- #: classes/display-conditions.php:500
1158
  msgid "allow ads in secondary queries"
1159
  msgstr "permitir anúncios em consultas secundárias"
1160
 
@@ -1329,9 +1529,9 @@ msgstr "Adicionar Novo Anúncio"
1329
 
1330
  #: public/class-advanced-ads.php:621
1331
  #: admin/includes/class-ad-groups-list.php:308
1332
- #: modules/import-export/classes/import.php:143
1333
- #: modules/import-export/classes/import.php:183
1334
- #: modules/import-export/classes/import.php:559
1335
  msgid "Edit"
1336
  msgstr "Editar"
1337
 
@@ -1419,10 +1619,12 @@ msgid "Usage"
1419
  msgstr "Usar"
1420
 
1421
  #: admin/includes/class-ad-groups-list.php:339
 
1422
  msgid "Invalid Ad Group"
1423
  msgstr "Grupo de Anúncios Inválido"
1424
 
1425
  #: admin/includes/class-ad-groups-list.php:344
 
1426
  msgid "You don’t have permission to change the ad groups"
1427
  msgstr "Você não tem permissão para alterar os grupos de anúncios"
1428
 
@@ -1488,13 +1690,11 @@ msgstr "Rascunho do Anúncio atualizado."
1488
  msgid "Error while trying to register the license. Please contact support."
1489
  msgstr "Erro ao tentar registrar a licença. Entre em contato com o suporte."
1490
 
1491
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:40
1492
  msgid "Please enter a valid license key"
1493
  msgstr "Por favor digite uma chave de licença válida"
1494
 
1495
  #: admin/includes/class-licenses.php:132
1496
- #: modules/marketpress-license/main.php:65
1497
- #: modules/marketpress-license/main.php:77
1498
  msgid "License couldn’t be activated. Please try again later."
1499
  msgstr "Licença não pôde ser ativada. Por favor, tente novamente mais tarde."
1500
 
@@ -1503,12 +1703,10 @@ msgid "This is the bundle license key."
1503
  msgstr "Esta é a chave de licença do pacote."
1504
 
1505
  #: admin/includes/class-licenses.php:148
1506
- #: modules/marketpress-license/main.php:132
1507
  msgid "This is not the correct key for this add-on."
1508
  msgstr "Esta não é a chave correta para este add-on."
1509
 
1510
  #: admin/includes/class-licenses.php:149
1511
- #: modules/marketpress-license/main.php:130
1512
  msgid "There are no activations left."
1513
  msgstr "Não há ativações deixadas."
1514
 
@@ -1533,23 +1731,15 @@ msgstr "Locais de Anúncio"
1533
  msgid "Advanced Ads Settings"
1534
  msgstr "Configurações de Anúncios Avançados"
1535
 
1536
- #: admin/includes/class-menu.php:79 admin/views/debug.php:9
1537
  msgid "Settings"
1538
  msgstr "Configurações"
1539
 
1540
- #: admin/includes/class-menu.php:82
1541
- msgid "Advanced Ads Debugging"
1542
- msgstr "Debug de Anúncios Avançados"
1543
-
1544
- #: admin/includes/class-menu.php:82
1545
- msgid "Debug"
1546
- msgstr "Debug"
1547
-
1548
- #: admin/includes/class-menu.php:190 admin/includes/class-menu.php:217
1549
  msgid "Sorry, you are not allowed to access this feature."
1550
  msgstr "Desculpe, você não tem permissão para acessar esta função."
1551
 
1552
- #: admin/includes/class-menu.php:203
1553
  msgid ""
1554
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1555
  "deleted?"
@@ -1611,7 +1801,7 @@ msgstr "Receba o tutorial por e-mail"
1611
  msgid "Get AdSense tips via email"
1612
  msgstr "Receba dicas do AdSense via e-mail"
1613
 
1614
- #: admin/includes/class-notices.php:417
1615
  #, php-format
1616
  msgid ""
1617
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
@@ -1620,14 +1810,14 @@ msgstr ""
1620
  "Você não parece ter um endereço de e-mail. Utilize <a href=\"%s\" "
1621
  "target=\"_blank\">este formulário</a> para se inscrever."
1622
 
1623
- #: admin/includes/class-notices.php:435
1624
  msgid ""
1625
  "How embarrassing. The email server seems to be down. Please try again later."
1626
  msgstr ""
1627
  "Como é embaraçoso. O servidor de e-mail parece ser ruim. Por favor tente de "
1628
  "novo mais tarde."
1629
 
1630
- #: admin/includes/class-notices.php:440
1631
  #, php-format
1632
  msgid ""
1633
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -2144,19 +2334,6 @@ msgstr ""
2144
  #: admin/includes/notices.php:47
2145
  #, php-format
2146
  msgid ""
2147
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
2148
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
2149
- "before it expires with a significant discount on <a href=\"%s\" "
2150
- "target=\"_blank\">the add-on page</a>."
2151
- msgstr ""
2152
- "Uma ou mais licenças para o seu <strong>Anúncios Avançados add-ons estarão "
2153
- "expirando em breve</strong>. Não arrisque a perder o apoio e atualizações e "
2154
- "renovar sua licença antes que ela expire com um desconto significativo sobre "
2155
- "<a href=\"%s\" target=\"_blank\">a página add-on</a>."
2156
-
2157
- #: admin/includes/notices.php:53
2158
- #, php-format
2159
- msgid ""
2160
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2161
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2162
  "information."
@@ -2165,7 +2342,7 @@ msgstr ""
2165
  "atualizações estão desativados. Por favor, visite <a href=\"%s\">a página de "
2166
  "licença</a> para obter mais informações."
2167
 
2168
- #: admin/includes/notices.php:59
2169
  #, php-format
2170
  msgid ""
2171
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
@@ -2185,7 +2362,7 @@ msgstr ""
2185
  "target=\"_blank\">deixe um comentário e 5 estrelas no wordpress.org</a>.</p> "
2186
  "<p><em>Thomas</em>"
2187
 
2188
- #: admin/includes/notices.php:65
2189
  #, php-format
2190
  msgid ""
2191
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
@@ -2305,16 +2482,16 @@ msgstr "Tipo: %s"
2305
  msgid "ID: %s"
2306
  msgstr "ID: %s"
2307
 
2308
- #: admin/views/ad-group.php:18
2309
  msgid "Ad Groups successfully updated"
2310
  msgstr "Grupos de Anúncios atualizados com sucesso"
2311
 
2312
- #: admin/views/ad-group.php:46
2313
  #, php-format
2314
  msgid "Search results for &#8220;%s&#8221;"
2315
  msgstr "Resultados da pesquisa para &#8220;%s&#8221;"
2316
 
2317
- #: admin/views/ad-group.php:52
2318
  msgid ""
2319
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2320
  "display random ads in the frontend or run split tests, but also just for "
@@ -2326,7 +2503,7 @@ msgstr ""
2326
  "informativos. Um Grupo de Anúncios pode ter vários anúncios, mas anúncios "
2327
  "podem pertencer a vários grupos."
2328
 
2329
- #: admin/views/ad-group.php:79
2330
  msgid "Update Groups"
2331
  msgstr "Atualizar Grupos"
2332
 
@@ -2596,26 +2773,14 @@ msgstr "somente em smartphones"
2596
  msgid "not on mobile devices"
2597
  msgstr "menos em smartphones"
2598
 
2599
- #: admin/views/debug.php:6 admin/views/settings.php:50
2600
- msgid "Debug Page"
2601
- msgstr "Página Debug"
2602
-
2603
- #: admin/views/debug.php:7
2604
- msgid "Work in progress"
2605
- msgstr "Trabalho em andamento"
2606
-
2607
  #: admin/views/feedback-disable.php:4
2608
  msgid "Why did you decide to disable Advanced Ads?"
2609
  msgstr "Por que você decidiu desativar Anúncios Avançados?"
2610
 
2611
- #: admin/views/feedback-disable.php:18
2612
  msgid "other reason"
2613
  msgstr "Outra razão"
2614
 
2615
- #: admin/views/feedback-disable.php:19
2616
- msgid "Please specify, if possible"
2617
- msgstr "Por favor especifique, se possível"
2618
-
2619
  #: admin/views/placements-content-index.php:1
2620
  msgid "after"
2621
  msgstr "depois"
@@ -2771,26 +2936,20 @@ msgstr "Desabilitar Anúncios nesta página"
2771
  msgid "Your license expired."
2772
  msgstr "Sua licença expirou."
2773
 
2774
- #: admin/views/setting-license.php:6
2775
- #, php-format
2776
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
2777
- msgstr ""
2778
- "<a href=\"%s\" target=\"_blank\">Renová-la com um desconto</a>.\n"
2779
-
2780
- #: admin/views/setting-license.php:18
2781
  #, php-format
2782
  msgid "(%d days left)"
2783
  msgstr "(%d dias restantes)"
2784
 
2785
- #: admin/views/setting-license.php:22
2786
  msgid "License key"
2787
  msgstr "Chave de licença"
2788
 
2789
- #: admin/views/setting-license.php:42
2790
  msgid "License key invalid"
2791
  msgstr "Chave de licença inválida"
2792
 
2793
- #: admin/views/setting-license.php:45
2794
  msgid "active"
2795
  msgstr "ativa"
2796
 
@@ -2843,15 +3002,15 @@ msgstr "Desativar anúncios no Feed"
2843
  msgid "Save settings on this page"
2844
  msgstr "Salve as configurações nesta página"
2845
 
2846
- #: admin/views/settings.php:51
2847
  msgid "Advanced Ads on WordPress.org"
2848
  msgstr "Anúncios Avançados em WordPress.org"
2849
 
2850
- #: admin/views/settings.php:51
2851
  msgid "Advanced Ads on wp.org"
2852
  msgstr "Anúncios Avançados em wp.org"
2853
 
2854
- #: admin/views/settings.php:52
2855
  msgid "the company behind Advanced Ads"
2856
  msgstr "a companhia por trás do Anúncios Avançados"
2857
 
@@ -3084,7 +3243,7 @@ msgstr "Anúncio AdSense"
3084
  msgid "Use ads from your Google AdSense account"
3085
  msgstr "Use anúncios de sua conta do Google AdSense"
3086
 
3087
- #: modules/gadsense/includes/class-ad-type-adsense.php:106
3088
  msgid "Your AdSense Publisher ID is missing."
3089
  msgstr "O seu ID do AdSense Publisher está faltando."
3090
 
@@ -3159,7 +3318,7 @@ msgstr "Por favor <a href=\"%s\" target=\"_blank\">mudá-lo aqui</a>."
3159
  msgid "Normal"
3160
  msgstr "Normal"
3161
 
3162
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:71
3163
  msgid "Resizing"
3164
  msgstr "Redimensionar"
3165
 
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: 2017-07-11 09:29+0000\n"
6
+ "PO-Revision-Date: 2017-07-11 09:29+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt-BR\n"
85
  msgid "url"
86
  msgstr ""
87
 
 
 
 
 
 
 
 
88
  #: classes/ad_type_image.php:34
89
  msgid "Image Ad"
90
  msgstr ""
109
  msgid "edit"
110
  msgstr ""
111
 
112
+ #: classes/ad_type_image.php:67
113
+ msgid "Link to target site"
114
+ msgstr ""
115
+
116
+ #: classes/ad_type_image.php:68
117
+ #, php-format
118
+ msgid ""
119
+ "Open this url in a new window and track impressions and clicks with the <a "
120
+ "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
121
+ msgstr ""
122
+
123
  #: classes/ad_type_plain.php:87
124
  msgid "Allow PHP"
125
  msgstr ""
126
 
127
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
128
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
129
+ #: classes/visitor-conditions.php:126
130
  msgid "is"
131
  msgstr ""
132
 
133
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
134
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
135
+ #: classes/visitor-conditions.php:127
136
  msgid "is not"
137
  msgstr ""
138
 
161
  msgid "Could not access filesystem."
162
  msgstr ""
163
 
164
+ #: classes/filesystem.php:65
165
+ msgid "Filesystem error."
166
+ msgstr ""
167
+
168
  #: classes/filesystem.php:72
169
  msgid "Unable to locate WordPress root directory."
170
  msgstr ""
240
  msgid "highlight ads"
241
  msgstr ""
242
 
243
+ #: classes/frontend_checks.php:315
244
+ #, php-format
245
+ msgid ""
246
+ "This ads was automatically placed here by AdSense. <a href=\"%s\" "
247
+ "target=\"_blank\" style=\"color:#fff;border-color:#fff;\">Click here to "
248
+ "learn more</a>."
249
+ msgstr ""
250
+
251
  #: classes/visitor-conditions.php:32
252
  msgid "device"
253
  msgstr ""
267
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
268
  msgstr ""
269
 
270
+ #: classes/widget.php:61
271
+ msgid "Title:"
272
+ msgstr ""
273
+
274
+ #: includes/array_ad_conditions.php:39
275
+ msgid "Post Types"
276
+ msgstr ""
277
+
278
+ #: includes/array_ad_conditions.php:45
279
+ msgid "Categories, Tags and Taxonomies"
280
+ msgstr ""
281
+
282
+ #: includes/array_ad_conditions.php:46
283
+ msgid ""
284
+ "Choose terms from public category, tag and other taxonomies a post must "
285
+ "belong to in order to have ads."
286
+ msgstr ""
287
+
288
+ #: includes/array_ad_conditions.php:51
289
+ msgid "Category Archives"
290
+ msgstr ""
291
+
292
+ #: includes/array_ad_conditions.php:52
293
+ msgid "comma seperated IDs of category archives"
294
+ msgstr ""
295
+
296
+ #: includes/array_ad_conditions.php:57
297
+ msgid "Individual Posts, Pages and Public Post Types"
298
+ msgstr ""
299
+
300
  #: public/class-advanced-ads.php:754
301
  msgctxt "label above ads"
302
  msgid "Advertisements"
311
  msgid "Add some"
312
  msgstr ""
313
 
314
+ #: admin/includes/class-ad-groups-list.php:318
315
+ msgid "Delete"
316
+ msgstr ""
317
+
318
+ #: admin/includes/class-ad-groups-list.php:374
319
+ msgid "No ad group created"
320
+ msgstr ""
321
+
322
+ #: admin/includes/class-ad-type.php:222
323
+ #, php-format
324
+ msgid "%s ad updated."
325
+ msgid_plural "%s ads updated."
326
+ msgstr[0] ""
327
+ msgstr[1] ""
328
+
329
+ #: admin/includes/class-ad-type.php:223
330
+ #, php-format
331
+ msgid "%s ad not updated, somebody is editing it."
332
+ msgid_plural "%s ads not updated, somebody is editing them."
333
+ msgstr[0] ""
334
+ msgstr[1] ""
335
+
336
+ #: admin/includes/class-ad-type.php:224
337
+ #, php-format
338
+ msgid "%s ad permanently deleted."
339
+ msgid_plural "%s ads permanently deleted."
340
+ msgstr[0] ""
341
+ msgstr[1] ""
342
+
343
+ #: admin/includes/class-ad-type.php:225
344
+ #, php-format
345
+ msgid "%s ad moved to the Trash."
346
+ msgid_plural "%s ads moved to the Trash."
347
+ msgstr[0] ""
348
+ msgstr[1] ""
349
+
350
+ #: admin/includes/class-ad-type.php:226
351
+ #, php-format
352
+ msgid "%s ad restored from the Trash."
353
+ msgid_plural "%s ads restored from the Trash."
354
+ msgstr[0] ""
355
+ msgstr[1] ""
356
+
357
  #: admin/includes/class-ad-type.php:518
358
  #, php-format
359
  msgid ""
368
  "this page</a>."
369
  msgstr ""
370
 
371
+ #: admin/includes/class-licenses.php:158
372
+ #, php-format
373
+ msgid "License is invalid. Reason: %s"
374
+ msgstr ""
375
+
376
  #: admin/includes/class-licenses.php:470
377
  #, php-format
378
  msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
437
  "limitation and ads might show up again."
438
  msgstr ""
439
 
440
+ #: admin/includes/class-settings.php:439
441
+ msgctxt "label before ads"
442
+ msgid "Advertisements"
443
+ msgstr ""
444
+
445
  #: admin/includes/class-settings.php:460
446
  msgid "Clean up all data related to Advanced Ads when removing the plugin."
447
  msgstr ""
450
  msgid "Disable shortcode button in visual editor."
451
  msgstr ""
452
 
453
+ #: admin/includes/class-shortcode-creator.php:155
454
  #, php-format
455
  msgid ""
456
  "Please, either switch off your ad blocker or disable the shortcode button in "
491
  msgstr ""
492
 
493
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
494
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:66
495
  msgid "manual"
496
  msgstr ""
497
 
498
+ #: admin/views/ad-group-edit.php:14
499
+ msgid "You did not select an item for editing."
500
+ msgstr ""
501
+
502
+ #: admin/views/ad-group-edit.php:33
503
+ msgctxt "Taxonomy Name"
504
+ msgid "Name"
505
+ msgstr ""
506
+
507
+ #: admin/views/ad-group-edit.php:38
508
+ msgctxt "Taxonomy Slug"
509
+ msgid "Slug"
510
+ msgstr ""
511
+
512
+ #: admin/views/ad-group-edit.php:45
513
+ msgctxt "Taxonomy Description"
514
+ msgid "Description"
515
+ msgstr ""
516
+
517
  #: admin/views/ad-group-list-form-row.php:57
518
  msgid "Visible ads"
519
  msgstr ""
520
 
521
+ #: admin/views/ad-group.php:18
522
+ msgid "Ad Group successfully created"
523
+ msgstr ""
524
+
525
+ #: admin/views/ad-group.php:65
526
+ msgid "Group title"
527
  msgstr ""
528
 
529
+ #: admin/views/ad-group.php:66
530
+ msgid "save"
531
+ msgstr ""
532
+
533
+ #: admin/views/ad-group.php:69
534
  #, php-format
535
  msgid ""
536
  "Find more information about ad groups in the <a href=\"%s\" "
563
  msgid "next"
564
  msgstr ""
565
 
566
+ #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-top.php:85
567
+ msgid "Stop Wizard and show all options"
568
+ msgstr ""
569
+
570
  #: admin/views/ad-info-top.php:8
571
  msgid "New placement"
572
  msgstr ""
593
  "the most common options are visible."
594
  msgstr ""
595
 
 
 
 
 
596
  #: admin/views/ad-list-no-ads.php:2
597
  msgid "Not many ads here yet. Get help from the following resources:"
598
  msgstr ""
615
  "with a space"
616
  msgstr ""
617
 
618
+ #: admin/views/ad-submitbox-meta.php:12
619
+ msgid "Month"
620
+ msgstr ""
621
+
622
+ #: admin/views/ad-submitbox-meta.php:21
623
+ msgid "Day"
624
+ msgstr ""
625
+
626
+ #: admin/views/ad-submitbox-meta.php:22
627
+ msgid "Year"
628
+ msgstr ""
629
+
630
+ #: admin/views/ad-submitbox-meta.php:23
631
+ msgid "Hour"
632
+ msgstr ""
633
+
634
+ #: admin/views/ad-submitbox-meta.php:24
635
+ msgid "Minute"
636
+ msgstr ""
637
+
638
  #: admin/views/ad-visitor-metabox.php:7
639
  msgid ""
640
  "Click on the button below if the ad should NOT be visible to all visitors"
653
  msgstr ""
654
 
655
  #: admin/views/feedback-disable.php:7
656
+ msgid "I need help to set it up"
657
  msgstr ""
658
 
659
  #: admin/views/feedback-disable.php:8
660
+ msgid "I have a problem"
661
+ msgstr ""
662
+
663
+ #: admin/views/feedback-disable.php:9
664
  msgid "Please let us know how we can help"
665
  msgstr ""
666
 
667
+ #: admin/views/feedback-disable.php:12
668
  #, php-format
669
  msgid "Send me free help to %s"
670
  msgstr ""
671
 
672
+ #: admin/views/feedback-disable.php:14
673
  msgid "I miss a feature"
674
  msgstr ""
675
 
676
+ #: admin/views/feedback-disable.php:15 admin/views/feedback-disable.php:18
677
  msgid "Which one?"
678
  msgstr ""
679
 
680
+ #: admin/views/feedback-disable.php:16
681
  msgid "I don’t use ads on my site"
682
  msgstr ""
683
 
684
+ #: admin/views/feedback-disable.php:17
685
  msgid "I switched to another plugin"
686
  msgstr ""
687
 
688
+ #: admin/views/feedback-disable.php:20
689
+ msgid "Please specify"
690
  msgstr ""
691
 
692
  #: admin/views/feedback-disable.php:25
693
+ msgid "Submit & Deactivate"
694
  msgstr ""
695
 
696
  #: admin/views/feedback-disable.php:26
697
+ msgid "Only Deactivate"
698
+ msgstr ""
699
+
700
+ #: admin/views/feedback-disable.php:27
701
  msgid "don’t deactivate"
702
  msgstr ""
703
 
719
  msgid "template (PHP)"
720
  msgstr ""
721
 
722
+ #: admin/views/placements.php:94
723
+ msgid "position"
724
+ msgstr ""
725
+
726
+ #: admin/views/placements.php:119
727
+ msgid "ad label"
728
+ msgstr ""
729
+
730
  #: admin/views/placements.php:128
731
  msgid "show all options"
732
  msgstr ""
738
  "header of your website</a>."
739
  msgstr ""
740
 
741
+ #: admin/views/setting-license.php:15
742
+ #, php-format
743
+ msgid ""
744
+ "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
745
+ "target=\"_blank\">renew your license with a discount</a>."
746
+ msgstr ""
747
+
748
+ #: admin/views/setting-license.php:41
749
+ msgid "Deactivate License"
750
+ msgstr ""
751
+
752
+ #: admin/views/setting-license.php:47
753
+ msgid "Update License"
754
+ msgstr ""
755
+
756
+ #: admin/views/setting-license.php:47
757
+ msgid "Activate License"
758
+ msgstr ""
759
+
760
  #: admin/views/settings.php:49 modules/import-export/main.php:15
761
  #: modules/import-export/main.php:15
762
  msgid "Import &amp; Export"
785
  "href=\"%s\" target=\"_blank\">support page</a>."
786
  msgstr ""
787
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
788
  #: public/views/ad-debug.php:18
789
  msgid "Ad debug output"
790
  msgstr ""
828
  msgid "Please enter XML content"
829
  msgstr ""
830
 
831
+ #: modules/import-export/classes/import.php:145
832
+ #: modules/import-export/classes/import.php:561
833
  #, php-format
834
  msgid "New attachment created <em>%s</em> %s"
835
  msgstr ""
836
 
837
+ #: modules/import-export/classes/import.php:177
838
  #, php-format
839
  msgid "Failed to import <em>%s</em>"
840
  msgstr ""
841
 
842
+ #: modules/import-export/classes/import.php:185
843
  #, php-format
844
  msgid "New ad created: <em>%s</em> %s"
845
  msgstr ""
846
 
847
+ #: modules/import-export/classes/import.php:228
848
  #, php-format
849
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
850
  msgstr ""
851
 
852
+ #: modules/import-export/classes/import.php:290
853
  #, php-format
854
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
855
  msgstr ""
856
 
857
+ #: modules/import-export/classes/import.php:292
858
  #, php-format
859
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
860
  msgstr ""
861
 
862
+ #: modules/import-export/classes/import.php:357
863
  #, php-format
864
  msgid "Placement <em>%s</em> created"
865
  msgstr ""
866
 
867
+ #: modules/import-export/classes/import.php:472
868
  #, php-format
869
  msgid "Option was updated: <em>%s</em>"
870
  msgstr ""
871
 
872
+ #: modules/import-export/classes/import.php:475
873
  #, php-format
874
  msgid "Option already exists: <em>%s</em>"
875
  msgstr ""
876
 
877
+ #: modules/import-export/classes/import.php:497
878
  #, php-format
879
  msgid "Failed to create import directory <em>%s</em>"
880
  msgstr ""
881
 
882
+ #: modules/import-export/classes/import.php:502
883
  #, php-format
884
  msgid "Import directory is not writable: <em>%s</em>"
885
  msgstr ""
886
 
887
+ #: modules/import-export/classes/import.php:510
888
  msgid ""
889
  "File is empty, uploads are disabled or post_max_size is smaller than "
890
  "upload_max_filesize in php.ini"
891
  msgstr ""
892
 
893
+ #: modules/import-export/classes/import.php:520
894
  #, php-format
895
  msgid "Failed to upload file, error: <em>%s</em>"
896
  msgstr ""
897
 
898
+ #: modules/import-export/classes/import.php:525
899
  msgid "File is empty."
900
  msgstr ""
901
 
902
+ #: modules/import-export/classes/import.php:530
903
  #, php-format
904
  msgid ""
905
  "The file could not be created: <em>%s</em>. This is probably a permissions "
906
  "problem"
907
  msgstr ""
908
 
909
+ #: modules/import-export/classes/import.php:603
910
  #, php-format
911
  msgid "Invalid filetype <em>%s</em>"
912
  msgstr ""
913
 
914
+ #: modules/import-export/classes/import.php:608
915
+ #: modules/import-export/classes/import.php:615
916
+ #: modules/import-export/classes/import.php:623
917
+ #: modules/import-export/classes/import.php:638
918
  #, php-format
919
  msgid "Error getting remote image <em>%s</em>"
920
  msgstr ""
921
 
922
+ #: modules/import-export/classes/import.php:632
923
  #, php-format
924
  msgid "Zero size file downloaded <em>%s</em>"
925
  msgstr ""
962
  "to save to your computer."
963
  msgstr ""
964
 
965
+ #: modules/import-export/views/page.php:28
966
+ msgid "Download Export File"
967
+ msgstr ""
968
+
969
  #: modules/import-export/views/page.php:33
970
  msgid "Import"
971
  msgstr ""
978
  msgid "Copy an XML content"
979
  msgstr ""
980
 
981
+ #: modules/import-export/views/page.php:52
982
+ msgid ""
983
+ "Before you can upload your import file, you will need to fix the following "
984
+ "error:"
985
+ msgstr ""
986
+
987
+ #: modules/import-export/views/page.php:57
988
+ #, php-format
989
+ msgid "Maximum size: %s"
990
+ msgstr ""
991
+
992
  #: modules/import-export/views/page.php:66
993
  msgid "Start import"
994
  msgstr ""
1021
  msgid "Link ads (Responsive)"
1022
  msgstr ""
1023
 
1024
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:63
1025
+ msgid "InArticle"
1026
+ msgstr ""
1027
+
1028
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
1029
+ msgid "InFeed"
1030
+ msgstr ""
1031
+
1032
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:70
1033
  #, php-format
1034
  msgid ""
1035
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
1037
  "vertical, or rectangle formats."
1038
  msgstr ""
1039
 
1040
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:81
1041
+ msgid "Tutorial: How to place ads between posts?"
1042
+ msgstr ""
1043
+
1044
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
1045
+ msgid "Layout"
1046
+ msgstr ""
1047
+
1048
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:86
1049
+ msgid "Layout-Key"
1050
+ msgstr ""
1051
+
1052
  #: admin/class-advanced-ads-admin.php:190 classes/display-conditions.php:178
1053
  #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:114
1054
  msgid "or"
1068
  msgid "time of %s"
1069
  msgstr "tempo de %s"
1070
 
1071
+ #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:83
1072
+ #: admin/includes/class-menu.php:83
1073
  msgid "Support"
1074
  msgstr "Suporte"
1075
 
1254
  msgid "post type"
1255
  msgstr "tipo de postagem"
1256
 
1257
+ #: classes/display-conditions.php:70 includes/array_ad_conditions.php:40
1258
  msgid "Choose the public post types on which to display the ad."
1259
  msgstr "Escolha o tipo de conteúdo para exibir o anúncio"
1260
 
1262
  msgid "specific pages"
1263
  msgstr "páginas específicas"
1264
 
1265
+ #: classes/display-conditions.php:77 includes/array_ad_conditions.php:58
1266
  msgid ""
1267
  "Choose on which individual posts, pages and public post type pages you want "
1268
  "to display or hide ads."
1302
  msgid "title or id"
1303
  msgstr "título ou id"
1304
 
1305
+ #: classes/display-conditions.php:469 includes/array_ad_conditions.php:63
1306
  msgid "Home Page"
1307
  msgstr "Página Inicial"
1308
 
1309
+ #: classes/display-conditions.php:470 includes/array_ad_conditions.php:64
1310
  msgid "show on Home page"
1311
  msgstr "mostrar na página inicial"
1312
 
1313
+ #: classes/display-conditions.php:474 includes/array_ad_conditions.php:68
1314
  msgid "Singular Pages"
1315
  msgstr "Páginas Simples"
1316
 
1317
+ #: classes/display-conditions.php:475 includes/array_ad_conditions.php:69
1318
  msgid "show on singular pages/posts"
1319
  msgstr "mostrar no singular páginas/posts"
1320
 
1321
+ #: classes/display-conditions.php:479 includes/array_ad_conditions.php:73
1322
  msgid "Archive Pages"
1323
  msgstr "Páginas de Arquivos"
1324
 
1325
+ #: classes/display-conditions.php:480 includes/array_ad_conditions.php:74
1326
  msgid "show on any type of archive page (category, tag, author and date)"
1327
  msgstr "mostrar em qualquer tipo de página (categoria, tag, autor e data)"
1328
 
1329
+ #: classes/display-conditions.php:484 includes/array_ad_conditions.php:78
1330
  msgid "Search Results"
1331
  msgstr "Resultados da Pesquisa"
1332
 
1333
+ #: classes/display-conditions.php:485 includes/array_ad_conditions.php:79
1334
  msgid "show on search result pages"
1335
  msgstr "mostrar nas páginas de resultados de busca"
1336
 
1337
+ #: classes/display-conditions.php:489 includes/array_ad_conditions.php:83
1338
  msgid "404 Page"
1339
  msgstr "Página 404"
1340
 
1341
+ #: classes/display-conditions.php:490 includes/array_ad_conditions.php:84
1342
  msgid "show on 404 error page"
1343
  msgstr "mostrar na página de erro 404"
1344
 
1345
+ #: classes/display-conditions.php:494 includes/array_ad_conditions.php:88
1346
  msgid "Attachment Pages"
1347
  msgstr "Páginas de Anexos"
1348
 
1349
+ #: classes/display-conditions.php:495 includes/array_ad_conditions.php:89
1350
  msgid "show on attachment pages"
1351
  msgstr "mostrar nas páginas de anexos"
1352
 
1353
+ #: classes/display-conditions.php:499 includes/array_ad_conditions.php:93
1354
  msgid "Secondary Queries"
1355
  msgstr "Consultas Secundárias"
1356
 
1357
+ #: classes/display-conditions.php:500 includes/array_ad_conditions.php:94
1358
  msgid "allow ads in secondary queries"
1359
  msgstr "permitir anúncios em consultas secundárias"
1360
 
1529
 
1530
  #: public/class-advanced-ads.php:621
1531
  #: admin/includes/class-ad-groups-list.php:308
1532
+ #: modules/import-export/classes/import.php:144
1533
+ #: modules/import-export/classes/import.php:184
1534
+ #: modules/import-export/classes/import.php:560
1535
  msgid "Edit"
1536
  msgstr "Editar"
1537
 
1619
  msgstr "Usar"
1620
 
1621
  #: admin/includes/class-ad-groups-list.php:339
1622
+ #: admin/includes/class-ad-groups-list.php:389
1623
  msgid "Invalid Ad Group"
1624
  msgstr "Grupo de Anúncios Inválido"
1625
 
1626
  #: admin/includes/class-ad-groups-list.php:344
1627
+ #: admin/includes/class-ad-groups-list.php:394
1628
  msgid "You don’t have permission to change the ad groups"
1629
  msgstr "Você não tem permissão para alterar os grupos de anúncios"
1630
 
1690
  msgid "Error while trying to register the license. Please contact support."
1691
  msgstr "Erro ao tentar registrar a licença. Entre em contato com o suporte."
1692
 
1693
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
1694
  msgid "Please enter a valid license key"
1695
  msgstr "Por favor digite uma chave de licença válida"
1696
 
1697
  #: admin/includes/class-licenses.php:132
 
 
1698
  msgid "License couldn’t be activated. Please try again later."
1699
  msgstr "Licença não pôde ser ativada. Por favor, tente novamente mais tarde."
1700
 
1703
  msgstr "Esta é a chave de licença do pacote."
1704
 
1705
  #: admin/includes/class-licenses.php:148
 
1706
  msgid "This is not the correct key for this add-on."
1707
  msgstr "Esta não é a chave correta para este add-on."
1708
 
1709
  #: admin/includes/class-licenses.php:149
 
1710
  msgid "There are no activations left."
1711
  msgstr "Não há ativações deixadas."
1712
 
1731
  msgid "Advanced Ads Settings"
1732
  msgstr "Configurações de Anúncios Avançados"
1733
 
1734
+ #: admin/includes/class-menu.php:79
1735
  msgid "Settings"
1736
  msgstr "Configurações"
1737
 
1738
+ #: admin/includes/class-menu.php:173 admin/includes/class-menu.php:200
 
 
 
 
 
 
 
 
1739
  msgid "Sorry, you are not allowed to access this feature."
1740
  msgstr "Desculpe, você não tem permissão para acessar esta função."
1741
 
1742
+ #: admin/includes/class-menu.php:186
1743
  msgid ""
1744
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1745
  "deleted?"
1801
  msgid "Get AdSense tips via email"
1802
  msgstr "Receba dicas do AdSense via e-mail"
1803
 
1804
+ #: admin/includes/class-notices.php:408
1805
  #, php-format
1806
  msgid ""
1807
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
1810
  "Você não parece ter um endereço de e-mail. Utilize <a href=\"%s\" "
1811
  "target=\"_blank\">este formulário</a> para se inscrever."
1812
 
1813
+ #: admin/includes/class-notices.php:426
1814
  msgid ""
1815
  "How embarrassing. The email server seems to be down. Please try again later."
1816
  msgstr ""
1817
  "Como é embaraçoso. O servidor de e-mail parece ser ruim. Por favor tente de "
1818
  "novo mais tarde."
1819
 
1820
+ #: admin/includes/class-notices.php:431
1821
  #, php-format
1822
  msgid ""
1823
  "Please check your email (%s) for the confirmation message. If you didn’t "
2334
  #: admin/includes/notices.php:47
2335
  #, php-format
2336
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
2337
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2338
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2339
  "information."
2342
  "atualizações estão desativados. Por favor, visite <a href=\"%s\">a página de "
2343
  "licença</a> para obter mais informações."
2344
 
2345
+ #: admin/includes/notices.php:53
2346
  #, php-format
2347
  msgid ""
2348
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
2362
  "target=\"_blank\">deixe um comentário e 5 estrelas no wordpress.org</a>.</p> "
2363
  "<p><em>Thomas</em>"
2364
 
2365
+ #: admin/includes/notices.php:59
2366
  #, php-format
2367
  msgid ""
2368
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
2482
  msgid "ID: %s"
2483
  msgstr "ID: %s"
2484
 
2485
+ #: admin/views/ad-group.php:29
2486
  msgid "Ad Groups successfully updated"
2487
  msgstr "Grupos de Anúncios atualizados com sucesso"
2488
 
2489
+ #: admin/views/ad-group.php:59
2490
  #, php-format
2491
  msgid "Search results for &#8220;%s&#8221;"
2492
  msgstr "Resultados da pesquisa para &#8220;%s&#8221;"
2493
 
2494
+ #: admin/views/ad-group.php:68
2495
  msgid ""
2496
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2497
  "display random ads in the frontend or run split tests, but also just for "
2503
  "informativos. Um Grupo de Anúncios pode ter vários anúncios, mas anúncios "
2504
  "podem pertencer a vários grupos."
2505
 
2506
+ #: admin/views/ad-group.php:96
2507
  msgid "Update Groups"
2508
  msgstr "Atualizar Grupos"
2509
 
2773
  msgid "not on mobile devices"
2774
  msgstr "menos em smartphones"
2775
 
 
 
 
 
 
 
 
 
2776
  #: admin/views/feedback-disable.php:4
2777
  msgid "Why did you decide to disable Advanced Ads?"
2778
  msgstr "Por que você decidiu desativar Anúncios Avançados?"
2779
 
2780
+ #: admin/views/feedback-disable.php:19
2781
  msgid "other reason"
2782
  msgstr "Outra razão"
2783
 
 
 
 
 
2784
  #: admin/views/placements-content-index.php:1
2785
  msgid "after"
2786
  msgstr "depois"
2936
  msgid "Your license expired."
2937
  msgstr "Sua licença expirou."
2938
 
2939
+ #: admin/views/setting-license.php:27
 
 
 
 
 
 
2940
  #, php-format
2941
  msgid "(%d days left)"
2942
  msgstr "(%d dias restantes)"
2943
 
2944
+ #: admin/views/setting-license.php:31
2945
  msgid "License key"
2946
  msgstr "Chave de licença"
2947
 
2948
+ #: admin/views/setting-license.php:51
2949
  msgid "License key invalid"
2950
  msgstr "Chave de licença inválida"
2951
 
2952
+ #: admin/views/setting-license.php:54
2953
  msgid "active"
2954
  msgstr "ativa"
2955
 
3002
  msgid "Save settings on this page"
3003
  msgstr "Salve as configurações nesta página"
3004
 
3005
+ #: admin/views/settings.php:50
3006
  msgid "Advanced Ads on WordPress.org"
3007
  msgstr "Anúncios Avançados em WordPress.org"
3008
 
3009
+ #: admin/views/settings.php:50
3010
  msgid "Advanced Ads on wp.org"
3011
  msgstr "Anúncios Avançados em wp.org"
3012
 
3013
+ #: admin/views/settings.php:51
3014
  msgid "the company behind Advanced Ads"
3015
  msgstr "a companhia por trás do Anúncios Avançados"
3016
 
3243
  msgid "Use ads from your Google AdSense account"
3244
  msgstr "Use anúncios de sua conta do Google AdSense"
3245
 
3246
+ #: modules/gadsense/includes/class-ad-type-adsense.php:108
3247
  msgid "Your AdSense Publisher ID is missing."
3248
  msgstr "O seu ID do AdSense Publisher está faltando."
3249
 
3318
  msgid "Normal"
3319
  msgstr "Normal"
3320
 
3321
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:73
3322
  msgid "Resizing"
3323
  msgstr "Redimensionar"
3324
 
languages/advanced-ads-vi.mo CHANGED
Binary file
languages/advanced-ads-vi.po CHANGED
@@ -2,8 +2,8 @@ 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: 2017-06-22 13:17+0000\n"
6
- "PO-Revision-Date: 2017-06-22 13:17+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Vietnamese\n"
9
  "Language: vi\n"
@@ -43,13 +43,6 @@ msgstr ""
43
  msgid "url"
44
  msgstr ""
45
 
46
- #: classes/ad_type_dummy.php:49 classes/ad_type_image.php:68
47
- #, php-format
48
- msgid ""
49
- "Open this url in a new window and track impressions and clicks with the <a "
50
- "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
51
- msgstr ""
52
-
53
  #: classes/ad_type_image.php:34
54
  msgid "Image Ad"
55
  msgstr ""
@@ -74,6 +67,17 @@ msgstr ""
74
  msgid "edit"
75
  msgstr ""
76
 
 
 
 
 
 
 
 
 
 
 
 
77
  #: classes/ad_type_plain.php:87
78
  msgid "Allow PHP"
79
  msgstr ""
@@ -90,6 +94,10 @@ msgstr ""
90
  msgid "Could not access filesystem."
91
  msgstr ""
92
 
 
 
 
 
93
  #: classes/filesystem.php:72
94
  msgid "Unable to locate WordPress root directory."
95
  msgstr ""
@@ -107,6 +115,14 @@ msgstr ""
107
  msgid "Random AdSense ads"
108
  msgstr ""
109
 
 
 
 
 
 
 
 
 
110
  #: classes/visitor-conditions.php:98
111
  #, php-format
112
  msgid ""
@@ -114,6 +130,36 @@ msgid ""
114
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
115
  msgstr ""
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  #: admin/includes/class-ad-groups-list.php:208
118
  #, php-format
119
  msgid "show %d more ads"
@@ -123,6 +169,54 @@ msgstr ""
123
  msgid "Add some"
124
  msgstr ""
125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  #: admin/includes/class-licenses.php:470
127
  #, php-format
128
  msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
@@ -160,11 +254,16 @@ msgid ""
160
  "limitation and ads might show up again."
161
  msgstr ""
162
 
 
 
 
 
 
163
  #: admin/includes/class-settings.php:473
164
  msgid "Disable shortcode button in visual editor."
165
  msgstr ""
166
 
167
- #: admin/includes/class-shortcode-creator.php:154
168
  #, php-format
169
  msgid ""
170
  "Please, either switch off your ad blocker or disable the shortcode button in "
@@ -188,17 +287,42 @@ msgstr ""
188
  msgid "Hide the ad on some pages"
189
  msgstr ""
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  #: admin/views/ad-group-list-form-row.php:57
192
  msgid "Visible ads"
193
  msgstr ""
194
 
195
- #: admin/views/ad-group.php:53
196
- msgid ""
197
- "You can create a new group through the <em>Ad Groups</em> widget on the ad "
198
- "edit page."
 
 
199
  msgstr ""
200
 
201
- #: admin/views/ad-group.php:53
 
 
 
 
202
  #, php-format
203
  msgid ""
204
  "Find more information about ad groups in the <a href=\"%s\" "
@@ -211,6 +335,26 @@ msgid ""
211
  "with a space"
212
  msgstr ""
213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  #: admin/views/ad-visitor-metabox.php:7
215
  msgid ""
216
  "Click on the button below if the ad should NOT be visible to all visitors"
@@ -225,43 +369,51 @@ msgid "It is only temporary"
225
  msgstr ""
226
 
227
  #: admin/views/feedback-disable.php:7
228
- msgid "I have a problem"
229
  msgstr ""
230
 
231
  #: admin/views/feedback-disable.php:8
 
 
 
 
232
  msgid "Please let us know how we can help"
233
  msgstr ""
234
 
235
- #: admin/views/feedback-disable.php:11
236
  #, php-format
237
  msgid "Send me free help to %s"
238
  msgstr ""
239
 
240
- #: admin/views/feedback-disable.php:13
241
  msgid "I miss a feature"
242
  msgstr ""
243
 
244
- #: admin/views/feedback-disable.php:14 admin/views/feedback-disable.php:17
245
  msgid "Which one?"
246
  msgstr ""
247
 
248
- #: admin/views/feedback-disable.php:15
249
  msgid "I don’t use ads on my site"
250
  msgstr ""
251
 
252
- #: admin/views/feedback-disable.php:16
253
  msgid "I switched to another plugin"
254
  msgstr ""
255
 
256
- #: admin/views/feedback-disable.php:24
257
- msgid "Submit & Deactivate"
258
  msgstr ""
259
 
260
  #: admin/views/feedback-disable.php:25
261
- msgid "Only Deactivate"
262
  msgstr ""
263
 
264
  #: admin/views/feedback-disable.php:26
 
 
 
 
265
  msgid "don’t deactivate"
266
  msgstr ""
267
 
@@ -283,6 +435,14 @@ msgstr ""
283
  msgid "template (PHP)"
284
  msgstr ""
285
 
 
 
 
 
 
 
 
 
286
  #: admin/views/placements.php:128
287
  msgid "show all options"
288
  msgstr ""
@@ -294,6 +454,25 @@ msgid ""
294
  "header of your website</a>."
295
  msgstr ""
296
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  #: modules/gadsense/admin/admin.php:219
298
  msgid ""
299
  "You still need to enable Page-Level ads in your AdSense account. See <a "
@@ -318,6 +497,21 @@ msgid ""
318
  "wrapped in text."
319
  msgstr ""
320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  #: modules/ad-blocker/admin/views/setting-use-adblocker.php:4
322
  msgid ""
323
  "The ad block disguise can only be set by the super admin on the main site in "
@@ -346,6 +540,26 @@ msgstr ""
346
  msgid "Link ads (Responsive)"
347
  msgstr ""
348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  #: admin/class-advanced-ads-admin.php:190 classes/display-conditions.php:178
350
  #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:114
351
  msgid "or"
@@ -365,8 +579,8 @@ msgstr "Sau đoạn nào?"
365
  msgid "time of %s"
366
  msgstr "thời gian %s"
367
 
368
- #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:86
369
- #: admin/includes/class-menu.php:86
370
  msgid "Support"
371
  msgstr "Hỗ trợ"
372
 
@@ -592,7 +806,7 @@ msgstr ""
592
  msgid "post type"
593
  msgstr "loại bài viết"
594
 
595
- #: classes/display-conditions.php:70
596
  msgid "Choose the public post types on which to display the ad."
597
  msgstr "Chọn loại bài viết đã xuất bản để hiển thị quảng cáo."
598
 
@@ -600,7 +814,7 @@ msgstr "Chọn loại bài viết đã xuất bản để hiển thị quảng c
600
  msgid "specific pages"
601
  msgstr "trang cụ thể"
602
 
603
- #: classes/display-conditions.php:77
604
  msgid ""
605
  "Choose on which individual posts, pages and public post type pages you want "
606
  "to display or hide ads."
@@ -623,11 +837,13 @@ msgstr "Lưu trữ: %s"
623
 
624
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
625
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
 
626
  msgid "is"
627
  msgstr "là"
628
 
629
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
630
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
 
631
  msgid "is not"
632
  msgstr "không là"
633
 
@@ -650,60 +866,60 @@ msgstr "tên điều kiện hoặc id"
650
  msgid "title or id"
651
  msgstr "tiêu đề hoặc id"
652
 
653
- #: classes/display-conditions.php:469
654
  msgid "Home Page"
655
  msgstr "Trang chủ"
656
 
657
- #: classes/display-conditions.php:470
658
  msgid "show on Home page"
659
  msgstr "Hiển thị trên trang chủ"
660
 
661
- #: classes/display-conditions.php:474
662
  msgid "Singular Pages"
663
  msgstr "Từ trang"
664
 
665
- #: classes/display-conditions.php:475
666
  msgid "show on singular pages/posts"
667
  msgstr "Hiển thị trên từng trang/bài viết"
668
 
669
- #: classes/display-conditions.php:479
670
  msgid "Archive Pages"
671
  msgstr "Lưu trữ"
672
 
673
- #: classes/display-conditions.php:480
674
  msgid "show on any type of archive page (category, tag, author and date)"
675
  msgstr ""
676
  "Hiển thị trên tất cả các trang lưu trữ (danh mục, từ khóa, tác giả và ngày)"
677
 
678
- #: classes/display-conditions.php:484
679
  msgid "Search Results"
680
  msgstr "Kết quả tìm kiếm"
681
 
682
- #: classes/display-conditions.php:485
683
  msgid "show on search result pages"
684
  msgstr "Hiển thị trên trang tìm kiếm"
685
 
686
- #: classes/display-conditions.php:489
687
  msgid "404 Page"
688
  msgstr "404: Trang không tồn tại"
689
 
690
- #: classes/display-conditions.php:490
691
  msgid "show on 404 error page"
692
  msgstr "hiển trị trên trang 404: Trang không tồn tại"
693
 
694
- #: classes/display-conditions.php:494
695
  msgid "Attachment Pages"
696
  msgstr "Trang có dữ liệu đính kèm"
697
 
698
- #: classes/display-conditions.php:495
699
  msgid "show on attachment pages"
700
  msgstr "Hiển thị ở trang có dữ liệu đính kèm"
701
 
702
- #: classes/display-conditions.php:499
703
  msgid "Secondary Queries"
704
  msgstr "Các truy xuất thứ hai"
705
 
706
- #: classes/display-conditions.php:500
707
  msgid "allow ads in secondary queries"
708
  msgstr "Cho hiển thị quảng cáo ở các truy xuất thứ hai"
709
 
@@ -963,9 +1179,9 @@ msgstr "Thêm quảng cáo mới"
963
 
964
  #: public/class-advanced-ads.php:621
965
  #: admin/includes/class-ad-groups-list.php:308
966
- #: modules/import-export/classes/import.php:143
967
- #: modules/import-export/classes/import.php:183
968
- #: modules/import-export/classes/import.php:559
969
  msgid "Edit"
970
  msgstr "Sửa"
971
 
@@ -1058,10 +1274,12 @@ msgid "Usage"
1058
  msgstr "Sử dụng"
1059
 
1060
  #: admin/includes/class-ad-groups-list.php:339
 
1061
  msgid "Invalid Ad Group"
1062
  msgstr "Nhóm không hợp lệ"
1063
 
1064
  #: admin/includes/class-ad-groups-list.php:344
 
1065
  msgid "You don’t have permission to change the ad groups"
1066
  msgstr "Bạn không có quyền đổi nhóm quảng cáo"
1067
 
@@ -1144,13 +1362,11 @@ msgstr ""
1144
  msgid "Error while trying to register the license. Please contact support."
1145
  msgstr "Lỗi trong khi cố gắng để đăng ký bản quyền. Vui lòng liên hệ hỗ trợ."
1146
 
1147
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:40
1148
  msgid "Please enter a valid license key"
1149
  msgstr "Vui lòng nhập một mã kích hoạt hợp lệ"
1150
 
1151
  #: admin/includes/class-licenses.php:132
1152
- #: modules/marketpress-license/main.php:65
1153
- #: modules/marketpress-license/main.php:77
1154
  msgid "License couldn’t be activated. Please try again later."
1155
  msgstr "Bản quyền không thể được kích hoạt. Vui lòng thử lại sau."
1156
 
@@ -1159,12 +1375,10 @@ msgid "This is the bundle license key."
1159
  msgstr "Đây là bản quyền của một nhóm sản phẩm."
1160
 
1161
  #: admin/includes/class-licenses.php:148
1162
- #: modules/marketpress-license/main.php:132
1163
  msgid "This is not the correct key for this add-on."
1164
  msgstr "Mã kích hoạt không đúng với plugin này."
1165
 
1166
  #: admin/includes/class-licenses.php:149
1167
- #: modules/marketpress-license/main.php:130
1168
  msgid "There are no activations left."
1169
  msgstr "Đã hết bản quyền."
1170
 
@@ -1188,23 +1402,15 @@ msgstr "Đặt quảng cáo"
1188
  msgid "Advanced Ads Settings"
1189
  msgstr "Cài đặt Advanced Ads"
1190
 
1191
- #: admin/includes/class-menu.php:79 admin/views/debug.php:9
1192
  msgid "Settings"
1193
  msgstr "Cài đặt"
1194
 
1195
- #: admin/includes/class-menu.php:82
1196
- msgid "Advanced Ads Debugging"
1197
- msgstr "Kiểm tra (Debug) Advanced Ads"
1198
-
1199
- #: admin/includes/class-menu.php:82
1200
- msgid "Debug"
1201
- msgstr "Kiểm tra"
1202
-
1203
- #: admin/includes/class-menu.php:190 admin/includes/class-menu.php:217
1204
  msgid "Sorry, you are not allowed to access this feature."
1205
  msgstr "Xin lỗi, bạn không có quyền truy cập tính năng này."
1206
 
1207
- #: admin/includes/class-menu.php:203
1208
  msgid ""
1209
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1210
  "deleted?"
@@ -1265,7 +1471,7 @@ msgstr "Nhận hướng dẫn vào email"
1265
  msgid "Get AdSense tips via email"
1266
  msgstr "Nhận hướng dẫn quảng cáo AdSense vào email"
1267
 
1268
- #: admin/includes/class-notices.php:417
1269
  #, php-format
1270
  msgid ""
1271
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
@@ -1274,13 +1480,13 @@ msgstr ""
1274
  "Bạn không có email. Sử dụng <a href=\"%s\" target=\"_blank\">mẫu này</a> để "
1275
  "đăng ký."
1276
 
1277
- #: admin/includes/class-notices.php:435
1278
  msgid ""
1279
  "How embarrassing. The email server seems to be down. Please try again later."
1280
  msgstr ""
1281
  "Thật đáng ngại. Máy chủ email có vẻ là đang có vấn đề. Vui lòng thử lại sau."
1282
 
1283
- #: admin/includes/class-notices.php:440
1284
  #, php-format
1285
  msgid ""
1286
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -1830,18 +2036,6 @@ msgstr "Vui lòng điền mã bản quyền <a href=\"%s\">tại đây</a>."
1830
  #: admin/includes/notices.php:47
1831
  #, php-format
1832
  msgid ""
1833
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1834
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1835
- "before it expires with a significant discount on <a href=\"%s\" "
1836
- "target=\"_blank\">the add-on page</a>."
1837
- msgstr ""
1838
- "Một hoặc nhiều bản quyền <strong> Advanced Ads và plugin sắp hết hạn </ "
1839
- "strong>. Hãy cập nhật và gia hạn trước khi bản quyền hết hạn, bạn sẽ được "
1840
- "giảm giá đáng kể trên <a href=\"%s\" target=\"_blank\"> trang plugin </a>."
1841
-
1842
- #: admin/includes/notices.php:53
1843
- #, php-format
1844
- msgid ""
1845
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1846
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1847
  "information."
@@ -1850,7 +2044,7 @@ msgstr ""
1850
  "trợ và cập nhật. Hãy truy cập <a href=\"%s\"> trang bản quyền</a> để xem "
1851
  "thêm."
1852
 
1853
- #: admin/includes/notices.php:59
1854
  #, php-format
1855
  msgid ""
1856
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
@@ -1869,7 +2063,7 @@ msgstr ""
1869
  "Ads hữu ích, hãy <a href=\"%2$s\" target=\"_blank\"> đánh giá 5 sao trên "
1870
  "wordpress.org </a>. </ p > <p> <em> Thomas </ em>"
1871
 
1872
- #: admin/includes/notices.php:65
1873
  #, php-format
1874
  msgid ""
1875
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
@@ -1925,7 +2119,7 @@ msgid "Forced to OR."
1925
  msgstr "Buộc phải Hoặc."
1926
 
1927
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
1928
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
1929
  msgid "manual"
1930
  msgstr "hướng dẫn"
1931
 
@@ -2015,16 +2209,16 @@ msgstr "Loại: %s"
2015
  msgid "ID: %s"
2016
  msgstr "ID: %s"
2017
 
2018
- #: admin/views/ad-group.php:18
2019
  msgid "Ad Groups successfully updated"
2020
  msgstr "Nhóm quảng cáo đã được cập nhật"
2021
 
2022
- #: admin/views/ad-group.php:46
2023
  #, php-format
2024
  msgid "Search results for &#8220;%s&#8221;"
2025
  msgstr "Kết quả tìm kiếm &#8220;%s&#8221;"
2026
 
2027
- #: admin/views/ad-group.php:52
2028
  msgid ""
2029
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2030
  "display random ads in the frontend or run split tests, but also just for "
@@ -2036,7 +2230,7 @@ msgstr ""
2036
  "thử nghiệm, nhưng cũng chỉ cho mục đích thông tin. Một nhóm có thể bao gồm "
2037
  "nhiều quảng cáo và một quảng cáo cũng có thể nằm ở nhiều nhóm."
2038
 
2039
- #: admin/views/ad-group.php:79
2040
  msgid "Update Groups"
2041
  msgstr "Cập nhật Nhóm"
2042
 
@@ -2068,6 +2262,10 @@ msgctxt "wizard navigation"
2068
  msgid "next"
2069
  msgstr "tiếp"
2070
 
 
 
 
 
2071
  #: admin/views/ad-info-top.php:5
2072
  #, php-format
2073
  msgid ""
@@ -2139,10 +2337,6 @@ msgstr ""
2139
  "Wizard giúp bạn nhanh chóng tạo và xuất bản quảng cáo. Do đó, chỉ có những "
2140
  "lựa chọn phổ biến nhất là nhìn thấy được."
2141
 
2142
- #: admin/views/ad-info-top.php:85
2143
- msgid "Stop Wizard and show all options"
2144
- msgstr "Dừng Wizard và hiển thị tất cả tùy chọn"
2145
-
2146
  #: admin/views/ad-info.php:2
2147
  #, php-format
2148
  msgid "Ad Id: %s"
@@ -2389,26 +2583,14 @@ msgstr "chỉ trên các thiết bị di động"
2389
  msgid "not on mobile devices"
2390
  msgstr "không phải trên thiết bị di động"
2391
 
2392
- #: admin/views/debug.php:6 admin/views/settings.php:50
2393
- msgid "Debug Page"
2394
- msgstr "Kiểm tra lỗi trang"
2395
-
2396
- #: admin/views/debug.php:7
2397
- msgid "Work in progress"
2398
- msgstr "Đang làm việc"
2399
-
2400
  #: admin/views/feedback-disable.php:4
2401
  msgid "Why did you decide to disable Advanced Ads?"
2402
  msgstr "Tại sao bạn lại quyết định vô hiệu hóa Advanced Ads?"
2403
 
2404
- #: admin/views/feedback-disable.php:18
2405
  msgid "other reason"
2406
  msgstr "Lý do khác"
2407
 
2408
- #: admin/views/feedback-disable.php:19
2409
- msgid "Please specify, if possible"
2410
- msgstr "Hãy ghi rõ, nếu có thể"
2411
-
2412
  #: admin/views/placements-content-index.php:1
2413
  msgid "after"
2414
  msgstr "sau"
@@ -2564,25 +2746,20 @@ msgstr "Ẩn trên trang này"
2564
  msgid "Your license expired."
2565
  msgstr "Bản quyền đã hết hạn."
2566
 
2567
- #: admin/views/setting-license.php:6
2568
- #, php-format
2569
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
2570
- msgstr "<a href=\"%s\" target=\"_blank\">Gia hạn với mức giá chiết khấu</a>."
2571
-
2572
- #: admin/views/setting-license.php:18
2573
  #, php-format
2574
  msgid "(%d days left)"
2575
  msgstr "(còn lại %d ngày)"
2576
 
2577
- #: admin/views/setting-license.php:22
2578
  msgid "License key"
2579
  msgstr "Key bản quyền"
2580
 
2581
- #: admin/views/setting-license.php:42
2582
  msgid "License key invalid"
2583
  msgstr "Key bản quyền không hợp lệ"
2584
 
2585
- #: admin/views/setting-license.php:45
2586
  msgid "active"
2587
  msgstr "kích hoạt"
2588
 
@@ -2639,15 +2816,15 @@ msgstr "Lưu các thiết lập trên trang này"
2639
  msgid "Import &amp; Export"
2640
  msgstr "Nhập &amp; Xuất"
2641
 
2642
- #: admin/views/settings.php:51
2643
  msgid "Advanced Ads on WordPress.org"
2644
  msgstr "Advanced Ads trên WordPress.org"
2645
 
2646
- #: admin/views/settings.php:51
2647
  msgid "Advanced Ads on wp.org"
2648
  msgstr "Advanced Ads trên wp.org"
2649
 
2650
- #: admin/views/settings.php:52
2651
  msgid "the company behind Advanced Ads"
2652
  msgstr "Công ty sản xuất Advanced Ads"
2653
 
@@ -2769,25 +2946,6 @@ msgstr ""
2769
  msgid " at "
2770
  msgstr "tại"
2771
 
2772
- #: modules/marketpress-license/admin.php:36
2773
- msgid "MarketPress Bundle License"
2774
- msgstr "Bản quyền MarketPress Bundle"
2775
-
2776
- #: modules/marketpress-license/admin.php:67
2777
- #: modules/marketpress-license/admin.php:70
2778
- msgid ""
2779
- "Enter your key here, if you have purchased the bundle through MarketPress."
2780
- msgstr ""
2781
- "Nhập Key bản quyền của bạn ở đây, nếu bạn đã mua các gói thông qua "
2782
- "MarketPress."
2783
-
2784
- #: modules/marketpress-license/admin.php:72
2785
- msgid ""
2786
- "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
2787
- "."
2788
- msgstr ""
2789
- "Click vào đây nếu bạn mua một Bundle Key qua <strong>MarketPress</ strong>."
2790
-
2791
  #: public/views/ad-debug.php:18
2792
  msgid "Ad debug output"
2793
  msgstr "Kiểm tra lỗi quảng cáo"
@@ -2936,7 +3094,7 @@ msgstr "Quảng cáo Adsense"
2936
  msgid "Use ads from your Google AdSense account"
2937
  msgstr "Sử dụng quảng cáo từ tài khoản Google AdSense của bạn"
2938
 
2939
- #: modules/gadsense/includes/class-ad-type-adsense.php:106
2940
  msgid "Your AdSense Publisher ID is missing."
2941
  msgstr "ID nhà xuất bản AdSense của bạn thiếu."
2942
 
@@ -2948,63 +3106,63 @@ msgstr "Tự động"
2948
  msgid "Please enter XML content"
2949
  msgstr "Vui lòng nhập nội dung XML"
2950
 
2951
- #: modules/import-export/classes/import.php:144
2952
- #: modules/import-export/classes/import.php:560
2953
  #, php-format
2954
  msgid "New attachment created <em>%s</em> %s"
2955
  msgstr "Đã tạo đính kèm mới <em>%s</em> %s"
2956
 
2957
- #: modules/import-export/classes/import.php:176
2958
  #, php-format
2959
  msgid "Failed to import <em>%s</em>"
2960
  msgstr "Không thể nhập vào <em>%s</em>"
2961
 
2962
- #: modules/import-export/classes/import.php:184
2963
  #, php-format
2964
  msgid "New ad created: <em>%s</em> %s"
2965
  msgstr "Quảng cáo mới đã tạo: <em>%s</em> %s"
2966
 
2967
- #: modules/import-export/classes/import.php:227
2968
  #, php-format
2969
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2970
  msgstr "Phân bổ Term: <em>%s</em>,cho bài viết: <em>%s</em>"
2971
 
2972
- #: modules/import-export/classes/import.php:289
2973
  #, php-format
2974
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2975
  msgstr "Nhóm quảng cáo mới đã tạo, id: <em>%s</em>, tên: <em>%s</em>"
2976
 
2977
- #: modules/import-export/classes/import.php:291
2978
  #, php-format
2979
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2980
  msgstr "Không thể nhập vào taxonomy: <em>%s</em>, term: <em>%s</em>"
2981
 
2982
- #: modules/import-export/classes/import.php:356
2983
  #, php-format
2984
  msgid "Placement <em>%s</em> created"
2985
  msgstr "Vị trí quảng cáo <em>%s</em> được tạo"
2986
 
2987
- #: modules/import-export/classes/import.php:471
2988
  #, php-format
2989
  msgid "Option was updated: <em>%s</em>"
2990
  msgstr "Cài đặt đã được cập nhật: <em>%s</em>"
2991
 
2992
- #: modules/import-export/classes/import.php:474
2993
  #, php-format
2994
  msgid "Option already exists: <em>%s</em>"
2995
  msgstr "Cài đặt đã có sẵn: <em>%s</em>"
2996
 
2997
- #: modules/import-export/classes/import.php:496
2998
  #, php-format
2999
  msgid "Failed to create import directory <em>%s</em>"
3000
  msgstr "Không thể tạo thư mục nhập vào <em>%s</em>"
3001
 
3002
- #: modules/import-export/classes/import.php:501
3003
  #, php-format
3004
  msgid "Import directory is not writable: <em>%s</em>"
3005
  msgstr "Thưc mục nhập vào không thể lưu dữ liệu: <em>%s</em>"
3006
 
3007
- #: modules/import-export/classes/import.php:509
3008
  msgid ""
3009
  "File is empty, uploads are disabled or post_max_size is smaller than "
3010
  "upload_max_filesize in php.ini"
@@ -3012,16 +3170,16 @@ msgstr ""
3012
  "File là trống rỗng, upload lên bị khóa hoặc post_max_size nhỏ hơn "
3013
  "upload_max_filesize trong php.ini"
3014
 
3015
- #: modules/import-export/classes/import.php:519
3016
  #, php-format
3017
  msgid "Failed to upload file, error: <em>%s</em>"
3018
  msgstr "Không thể tải lên các tập tin, báo lỗi: <em>%s</em>"
3019
 
3020
- #: modules/import-export/classes/import.php:524
3021
  msgid "File is empty."
3022
  msgstr "File trống"
3023
 
3024
- #: modules/import-export/classes/import.php:529
3025
  #, php-format
3026
  msgid ""
3027
  "The file could not be created: <em>%s</em>. This is probably a permissions "
@@ -3030,20 +3188,20 @@ msgstr ""
3030
  "Các tập tin không thể được tạo ra: <em>%s </ em>. Đây có lẽ là một vấn đề "
3031
  "quyền"
3032
 
3033
- #: modules/import-export/classes/import.php:602
3034
  #, php-format
3035
  msgid "Invalid filetype <em>%s</em>"
3036
  msgstr "Loại file không phù hợp <em>%s</em>"
3037
 
3038
- #: modules/import-export/classes/import.php:607
3039
- #: modules/import-export/classes/import.php:614
3040
- #: modules/import-export/classes/import.php:622
3041
- #: modules/import-export/classes/import.php:637
3042
  #, php-format
3043
  msgid "Error getting remote image <em>%s</em>"
3044
  msgstr "Lỗi nhận hình ảnh từ xa <em>%s </ em>"
3045
 
3046
- #: modules/import-export/classes/import.php:631
3047
  #, php-format
3048
  msgid "Zero size file downloaded <em>%s</em>"
3049
  msgstr "File dữ liệu bằng 0 được tải <em>%s</em>"
@@ -3171,7 +3329,7 @@ msgstr "Vui long <a href=\"%s\" target=\"_blank\">thay đổi tại đây</a>."
3171
  msgid "Normal"
3172
  msgstr "Thông thường"
3173
 
3174
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:68
3175
  #, php-format
3176
  msgid ""
3177
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -3182,7 +3340,7 @@ msgstr ""
3182
  "kích thước chính xác cho chiều rộng trình duyệt hoặc chọn giữa chiều dọc, "
3183
  "ngang hoặc hình chữ nhật."
3184
 
3185
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:71
3186
  msgid "Resizing"
3187
  msgstr "Thay đổi kích thước"
3188
 
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: 2017-07-11 09:29+0000\n"
6
+ "PO-Revision-Date: 2017-07-11 09:29+0000\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: Vietnamese\n"
9
  "Language: vi\n"
43
  msgid "url"
44
  msgstr ""
45
 
 
 
 
 
 
 
 
46
  #: classes/ad_type_image.php:34
47
  msgid "Image Ad"
48
  msgstr ""
67
  msgid "edit"
68
  msgstr ""
69
 
70
+ #: classes/ad_type_image.php:67
71
+ msgid "Link to target site"
72
+ msgstr ""
73
+
74
+ #: classes/ad_type_image.php:68
75
+ #, php-format
76
+ msgid ""
77
+ "Open this url in a new window and track impressions and clicks with the <a "
78
+ "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
79
+ msgstr ""
80
+
81
  #: classes/ad_type_plain.php:87
82
  msgid "Allow PHP"
83
  msgstr ""
94
  msgid "Could not access filesystem."
95
  msgstr ""
96
 
97
+ #: classes/filesystem.php:65
98
+ msgid "Filesystem error."
99
+ msgstr ""
100
+
101
  #: classes/filesystem.php:72
102
  msgid "Unable to locate WordPress root directory."
103
  msgstr ""
115
  msgid "Random AdSense ads"
116
  msgstr ""
117
 
118
+ #: classes/frontend_checks.php:315
119
+ #, php-format
120
+ msgid ""
121
+ "This ads was automatically placed here by AdSense. <a href=\"%s\" "
122
+ "target=\"_blank\" style=\"color:#fff;border-color:#fff;\">Click here to "
123
+ "learn more</a>."
124
+ msgstr ""
125
+
126
  #: classes/visitor-conditions.php:98
127
  #, php-format
128
  msgid ""
130
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
131
  msgstr ""
132
 
133
+ #: classes/widget.php:61
134
+ msgid "Title:"
135
+ msgstr ""
136
+
137
+ #: includes/array_ad_conditions.php:39
138
+ msgid "Post Types"
139
+ msgstr ""
140
+
141
+ #: includes/array_ad_conditions.php:45
142
+ msgid "Categories, Tags and Taxonomies"
143
+ msgstr ""
144
+
145
+ #: includes/array_ad_conditions.php:46
146
+ msgid ""
147
+ "Choose terms from public category, tag and other taxonomies a post must "
148
+ "belong to in order to have ads."
149
+ msgstr ""
150
+
151
+ #: includes/array_ad_conditions.php:51
152
+ msgid "Category Archives"
153
+ msgstr ""
154
+
155
+ #: includes/array_ad_conditions.php:52
156
+ msgid "comma seperated IDs of category archives"
157
+ msgstr ""
158
+
159
+ #: includes/array_ad_conditions.php:57
160
+ msgid "Individual Posts, Pages and Public Post Types"
161
+ msgstr ""
162
+
163
  #: admin/includes/class-ad-groups-list.php:208
164
  #, php-format
165
  msgid "show %d more ads"
169
  msgid "Add some"
170
  msgstr ""
171
 
172
+ #: admin/includes/class-ad-groups-list.php:318
173
+ msgid "Delete"
174
+ msgstr ""
175
+
176
+ #: admin/includes/class-ad-groups-list.php:374
177
+ msgid "No ad group created"
178
+ msgstr ""
179
+
180
+ #: admin/includes/class-ad-type.php:222
181
+ #, php-format
182
+ msgid "%s ad updated."
183
+ msgid_plural "%s ads updated."
184
+ msgstr[0] ""
185
+ msgstr[1] ""
186
+
187
+ #: admin/includes/class-ad-type.php:223
188
+ #, php-format
189
+ msgid "%s ad not updated, somebody is editing it."
190
+ msgid_plural "%s ads not updated, somebody is editing them."
191
+ msgstr[0] ""
192
+ msgstr[1] ""
193
+
194
+ #: admin/includes/class-ad-type.php:224
195
+ #, php-format
196
+ msgid "%s ad permanently deleted."
197
+ msgid_plural "%s ads permanently deleted."
198
+ msgstr[0] ""
199
+ msgstr[1] ""
200
+
201
+ #: admin/includes/class-ad-type.php:225
202
+ #, php-format
203
+ msgid "%s ad moved to the Trash."
204
+ msgid_plural "%s ads moved to the Trash."
205
+ msgstr[0] ""
206
+ msgstr[1] ""
207
+
208
+ #: admin/includes/class-ad-type.php:226
209
+ #, php-format
210
+ msgid "%s ad restored from the Trash."
211
+ msgid_plural "%s ads restored from the Trash."
212
+ msgstr[0] ""
213
+ msgstr[1] ""
214
+
215
+ #: admin/includes/class-licenses.php:158
216
+ #, php-format
217
+ msgid "License is invalid. Reason: %s"
218
+ msgstr ""
219
+
220
  #: admin/includes/class-licenses.php:470
221
  #, php-format
222
  msgid "Download failed. <a href=\"%s\">Click here to try another method</a>."
254
  "limitation and ads might show up again."
255
  msgstr ""
256
 
257
+ #: admin/includes/class-settings.php:439
258
+ msgctxt "label before ads"
259
+ msgid "Advertisements"
260
+ msgstr ""
261
+
262
  #: admin/includes/class-settings.php:473
263
  msgid "Disable shortcode button in visual editor."
264
  msgstr ""
265
 
266
+ #: admin/includes/class-shortcode-creator.php:155
267
  #, php-format
268
  msgid ""
269
  "Please, either switch off your ad blocker or disable the shortcode button in "
287
  msgid "Hide the ad on some pages"
288
  msgstr ""
289
 
290
+ #: admin/views/ad-group-edit.php:14
291
+ msgid "You did not select an item for editing."
292
+ msgstr ""
293
+
294
+ #: admin/views/ad-group-edit.php:33
295
+ msgctxt "Taxonomy Name"
296
+ msgid "Name"
297
+ msgstr ""
298
+
299
+ #: admin/views/ad-group-edit.php:38
300
+ msgctxt "Taxonomy Slug"
301
+ msgid "Slug"
302
+ msgstr ""
303
+
304
+ #: admin/views/ad-group-edit.php:45
305
+ msgctxt "Taxonomy Description"
306
+ msgid "Description"
307
+ msgstr ""
308
+
309
  #: admin/views/ad-group-list-form-row.php:57
310
  msgid "Visible ads"
311
  msgstr ""
312
 
313
+ #: admin/views/ad-group.php:18
314
+ msgid "Ad Group successfully created"
315
+ msgstr ""
316
+
317
+ #: admin/views/ad-group.php:65
318
+ msgid "Group title"
319
  msgstr ""
320
 
321
+ #: admin/views/ad-group.php:66
322
+ msgid "save"
323
+ msgstr ""
324
+
325
+ #: admin/views/ad-group.php:69
326
  #, php-format
327
  msgid ""
328
  "Find more information about ad groups in the <a href=\"%s\" "
335
  "with a space"
336
  msgstr ""
337
 
338
+ #: admin/views/ad-submitbox-meta.php:12
339
+ msgid "Month"
340
+ msgstr ""
341
+
342
+ #: admin/views/ad-submitbox-meta.php:21
343
+ msgid "Day"
344
+ msgstr ""
345
+
346
+ #: admin/views/ad-submitbox-meta.php:22
347
+ msgid "Year"
348
+ msgstr ""
349
+
350
+ #: admin/views/ad-submitbox-meta.php:23
351
+ msgid "Hour"
352
+ msgstr ""
353
+
354
+ #: admin/views/ad-submitbox-meta.php:24
355
+ msgid "Minute"
356
+ msgstr ""
357
+
358
  #: admin/views/ad-visitor-metabox.php:7
359
  msgid ""
360
  "Click on the button below if the ad should NOT be visible to all visitors"
369
  msgstr ""
370
 
371
  #: admin/views/feedback-disable.php:7
372
+ msgid "I need help to set it up"
373
  msgstr ""
374
 
375
  #: admin/views/feedback-disable.php:8
376
+ msgid "I have a problem"
377
+ msgstr ""
378
+
379
+ #: admin/views/feedback-disable.php:9
380
  msgid "Please let us know how we can help"
381
  msgstr ""
382
 
383
+ #: admin/views/feedback-disable.php:12
384
  #, php-format
385
  msgid "Send me free help to %s"
386
  msgstr ""
387
 
388
+ #: admin/views/feedback-disable.php:14
389
  msgid "I miss a feature"
390
  msgstr ""
391
 
392
+ #: admin/views/feedback-disable.php:15 admin/views/feedback-disable.php:18
393
  msgid "Which one?"
394
  msgstr ""
395
 
396
+ #: admin/views/feedback-disable.php:16
397
  msgid "I don’t use ads on my site"
398
  msgstr ""
399
 
400
+ #: admin/views/feedback-disable.php:17
401
  msgid "I switched to another plugin"
402
  msgstr ""
403
 
404
+ #: admin/views/feedback-disable.php:20
405
+ msgid "Please specify"
406
  msgstr ""
407
 
408
  #: admin/views/feedback-disable.php:25
409
+ msgid "Submit & Deactivate"
410
  msgstr ""
411
 
412
  #: admin/views/feedback-disable.php:26
413
+ msgid "Only Deactivate"
414
+ msgstr ""
415
+
416
+ #: admin/views/feedback-disable.php:27
417
  msgid "don’t deactivate"
418
  msgstr ""
419
 
435
  msgid "template (PHP)"
436
  msgstr ""
437
 
438
+ #: admin/views/placements.php:94
439
+ msgid "position"
440
+ msgstr ""
441
+
442
+ #: admin/views/placements.php:119
443
+ msgid "ad label"
444
+ msgstr ""
445
+
446
  #: admin/views/placements.php:128
447
  msgid "show all options"
448
  msgstr ""
454
  "header of your website</a>."
455
  msgstr ""
456
 
457
+ #: admin/views/setting-license.php:15
458
+ #, php-format
459
+ msgid ""
460
+ "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
461
+ "target=\"_blank\">renew your license with a discount</a>."
462
+ msgstr ""
463
+
464
+ #: admin/views/setting-license.php:41
465
+ msgid "Deactivate License"
466
+ msgstr ""
467
+
468
+ #: admin/views/setting-license.php:47
469
+ msgid "Update License"
470
+ msgstr ""
471
+
472
+ #: admin/views/setting-license.php:47
473
+ msgid "Activate License"
474
+ msgstr ""
475
+
476
  #: modules/gadsense/admin/admin.php:219
477
  msgid ""
478
  "You still need to enable Page-Level ads in your AdSense account. See <a "
497
  "wrapped in text."
498
  msgstr ""
499
 
500
+ #: modules/import-export/views/page.php:28
501
+ msgid "Download Export File"
502
+ msgstr ""
503
+
504
+ #: modules/import-export/views/page.php:52
505
+ msgid ""
506
+ "Before you can upload your import file, you will need to fix the following "
507
+ "error:"
508
+ msgstr ""
509
+
510
+ #: modules/import-export/views/page.php:57
511
+ #, php-format
512
+ msgid "Maximum size: %s"
513
+ msgstr ""
514
+
515
  #: modules/ad-blocker/admin/views/setting-use-adblocker.php:4
516
  msgid ""
517
  "The ad block disguise can only be set by the super admin on the main site in "
540
  msgid "Link ads (Responsive)"
541
  msgstr ""
542
 
543
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:63
544
+ msgid "InArticle"
545
+ msgstr ""
546
+
547
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
548
+ msgid "InFeed"
549
+ msgstr ""
550
+
551
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:81
552
+ msgid "Tutorial: How to place ads between posts?"
553
+ msgstr ""
554
+
555
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
556
+ msgid "Layout"
557
+ msgstr ""
558
+
559
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:86
560
+ msgid "Layout-Key"
561
+ msgstr ""
562
+
563
  #: admin/class-advanced-ads-admin.php:190 classes/display-conditions.php:178
564
  #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:114
565
  msgid "or"
579
  msgid "time of %s"
580
  msgstr "thời gian %s"
581
 
582
+ #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:83
583
+ #: admin/includes/class-menu.php:83
584
  msgid "Support"
585
  msgstr "Hỗ trợ"
586
 
806
  msgid "post type"
807
  msgstr "loại bài viết"
808
 
809
+ #: classes/display-conditions.php:70 includes/array_ad_conditions.php:40
810
  msgid "Choose the public post types on which to display the ad."
811
  msgstr "Chọn loại bài viết đã xuất bản để hiển thị quảng cáo."
812
 
814
  msgid "specific pages"
815
  msgstr "trang cụ thể"
816
 
817
+ #: classes/display-conditions.php:77 includes/array_ad_conditions.php:58
818
  msgid ""
819
  "Choose on which individual posts, pages and public post type pages you want "
820
  "to display or hide ads."
837
 
838
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
839
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
840
+ #: classes/visitor-conditions.php:126
841
  msgid "is"
842
  msgstr "là"
843
 
844
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
845
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
846
+ #: classes/visitor-conditions.php:127
847
  msgid "is not"
848
  msgstr "không là"
849
 
866
  msgid "title or id"
867
  msgstr "tiêu đề hoặc id"
868
 
869
+ #: classes/display-conditions.php:469 includes/array_ad_conditions.php:63
870
  msgid "Home Page"
871
  msgstr "Trang chủ"
872
 
873
+ #: classes/display-conditions.php:470 includes/array_ad_conditions.php:64
874
  msgid "show on Home page"
875
  msgstr "Hiển thị trên trang chủ"
876
 
877
+ #: classes/display-conditions.php:474 includes/array_ad_conditions.php:68
878
  msgid "Singular Pages"
879
  msgstr "Từ trang"
880
 
881
+ #: classes/display-conditions.php:475 includes/array_ad_conditions.php:69
882
  msgid "show on singular pages/posts"
883
  msgstr "Hiển thị trên từng trang/bài viết"
884
 
885
+ #: classes/display-conditions.php:479 includes/array_ad_conditions.php:73
886
  msgid "Archive Pages"
887
  msgstr "Lưu trữ"
888
 
889
+ #: classes/display-conditions.php:480 includes/array_ad_conditions.php:74
890
  msgid "show on any type of archive page (category, tag, author and date)"
891
  msgstr ""
892
  "Hiển thị trên tất cả các trang lưu trữ (danh mục, từ khóa, tác giả và ngày)"
893
 
894
+ #: classes/display-conditions.php:484 includes/array_ad_conditions.php:78
895
  msgid "Search Results"
896
  msgstr "Kết quả tìm kiếm"
897
 
898
+ #: classes/display-conditions.php:485 includes/array_ad_conditions.php:79
899
  msgid "show on search result pages"
900
  msgstr "Hiển thị trên trang tìm kiếm"
901
 
902
+ #: classes/display-conditions.php:489 includes/array_ad_conditions.php:83
903
  msgid "404 Page"
904
  msgstr "404: Trang không tồn tại"
905
 
906
+ #: classes/display-conditions.php:490 includes/array_ad_conditions.php:84
907
  msgid "show on 404 error page"
908
  msgstr "hiển trị trên trang 404: Trang không tồn tại"
909
 
910
+ #: classes/display-conditions.php:494 includes/array_ad_conditions.php:88
911
  msgid "Attachment Pages"
912
  msgstr "Trang có dữ liệu đính kèm"
913
 
914
+ #: classes/display-conditions.php:495 includes/array_ad_conditions.php:89
915
  msgid "show on attachment pages"
916
  msgstr "Hiển thị ở trang có dữ liệu đính kèm"
917
 
918
+ #: classes/display-conditions.php:499 includes/array_ad_conditions.php:93
919
  msgid "Secondary Queries"
920
  msgstr "Các truy xuất thứ hai"
921
 
922
+ #: classes/display-conditions.php:500 includes/array_ad_conditions.php:94
923
  msgid "allow ads in secondary queries"
924
  msgstr "Cho hiển thị quảng cáo ở các truy xuất thứ hai"
925
 
1179
 
1180
  #: public/class-advanced-ads.php:621
1181
  #: admin/includes/class-ad-groups-list.php:308
1182
+ #: modules/import-export/classes/import.php:144
1183
+ #: modules/import-export/classes/import.php:184
1184
+ #: modules/import-export/classes/import.php:560
1185
  msgid "Edit"
1186
  msgstr "Sửa"
1187
 
1274
  msgstr "Sử dụng"
1275
 
1276
  #: admin/includes/class-ad-groups-list.php:339
1277
+ #: admin/includes/class-ad-groups-list.php:389
1278
  msgid "Invalid Ad Group"
1279
  msgstr "Nhóm không hợp lệ"
1280
 
1281
  #: admin/includes/class-ad-groups-list.php:344
1282
+ #: admin/includes/class-ad-groups-list.php:394
1283
  msgid "You don’t have permission to change the ad groups"
1284
  msgstr "Bạn không có quyền đổi nhóm quảng cáo"
1285
 
1362
  msgid "Error while trying to register the license. Please contact support."
1363
  msgstr "Lỗi trong khi cố gắng để đăng ký bản quyền. Vui lòng liên hệ hỗ trợ."
1364
 
1365
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
1366
  msgid "Please enter a valid license key"
1367
  msgstr "Vui lòng nhập một mã kích hoạt hợp lệ"
1368
 
1369
  #: admin/includes/class-licenses.php:132
 
 
1370
  msgid "License couldn’t be activated. Please try again later."
1371
  msgstr "Bản quyền không thể được kích hoạt. Vui lòng thử lại sau."
1372
 
1375
  msgstr "Đây là bản quyền của một nhóm sản phẩm."
1376
 
1377
  #: admin/includes/class-licenses.php:148
 
1378
  msgid "This is not the correct key for this add-on."
1379
  msgstr "Mã kích hoạt không đúng với plugin này."
1380
 
1381
  #: admin/includes/class-licenses.php:149
 
1382
  msgid "There are no activations left."
1383
  msgstr "Đã hết bản quyền."
1384
 
1402
  msgid "Advanced Ads Settings"
1403
  msgstr "Cài đặt Advanced Ads"
1404
 
1405
+ #: admin/includes/class-menu.php:79
1406
  msgid "Settings"
1407
  msgstr "Cài đặt"
1408
 
1409
+ #: admin/includes/class-menu.php:173 admin/includes/class-menu.php:200
 
 
 
 
 
 
 
 
1410
  msgid "Sorry, you are not allowed to access this feature."
1411
  msgstr "Xin lỗi, bạn không có quyền truy cập tính năng này."
1412
 
1413
+ #: admin/includes/class-menu.php:186
1414
  msgid ""
1415
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1416
  "deleted?"
1471
  msgid "Get AdSense tips via email"
1472
  msgstr "Nhận hướng dẫn quảng cáo AdSense vào email"
1473
 
1474
+ #: admin/includes/class-notices.php:408
1475
  #, php-format
1476
  msgid ""
1477
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
1480
  "Bạn không có email. Sử dụng <a href=\"%s\" target=\"_blank\">mẫu này</a> để "
1481
  "đăng ký."
1482
 
1483
+ #: admin/includes/class-notices.php:426
1484
  msgid ""
1485
  "How embarrassing. The email server seems to be down. Please try again later."
1486
  msgstr ""
1487
  "Thật đáng ngại. Máy chủ email có vẻ là đang có vấn đề. Vui lòng thử lại sau."
1488
 
1489
+ #: admin/includes/class-notices.php:431
1490
  #, php-format
1491
  msgid ""
1492
  "Please check your email (%s) for the confirmation message. If you didn’t "
2036
  #: admin/includes/notices.php:47
2037
  #, php-format
2038
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
2039
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
2040
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
2041
  "information."
2044
  "trợ và cập nhật. Hãy truy cập <a href=\"%s\"> trang bản quyền</a> để xem "
2045
  "thêm."
2046
 
2047
+ #: admin/includes/notices.php:53
2048
  #, php-format
2049
  msgid ""
2050
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
2063
  "Ads hữu ích, hãy <a href=\"%2$s\" target=\"_blank\"> đánh giá 5 sao trên "
2064
  "wordpress.org </a>. </ p > <p> <em> Thomas </ em>"
2065
 
2066
+ #: admin/includes/notices.php:59
2067
  #, php-format
2068
  msgid ""
2069
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
2119
  msgstr "Buộc phải Hoặc."
2120
 
2121
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
2122
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:66
2123
  msgid "manual"
2124
  msgstr "hướng dẫn"
2125
 
2209
  msgid "ID: %s"
2210
  msgstr "ID: %s"
2211
 
2212
+ #: admin/views/ad-group.php:29
2213
  msgid "Ad Groups successfully updated"
2214
  msgstr "Nhóm quảng cáo đã được cập nhật"
2215
 
2216
+ #: admin/views/ad-group.php:59
2217
  #, php-format
2218
  msgid "Search results for &#8220;%s&#8221;"
2219
  msgstr "Kết quả tìm kiếm &#8220;%s&#8221;"
2220
 
2221
+ #: admin/views/ad-group.php:68
2222
  msgid ""
2223
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
2224
  "display random ads in the frontend or run split tests, but also just for "
2230
  "thử nghiệm, nhưng cũng chỉ cho mục đích thông tin. Một nhóm có thể bao gồm "
2231
  "nhiều quảng cáo và một quảng cáo cũng có thể nằm ở nhiều nhóm."
2232
 
2233
+ #: admin/views/ad-group.php:96
2234
  msgid "Update Groups"
2235
  msgstr "Cập nhật Nhóm"
2236
 
2262
  msgid "next"
2263
  msgstr "tiếp"
2264
 
2265
+ #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-top.php:85
2266
+ msgid "Stop Wizard and show all options"
2267
+ msgstr "Dừng Wizard và hiển thị tất cả tùy chọn"
2268
+
2269
  #: admin/views/ad-info-top.php:5
2270
  #, php-format
2271
  msgid ""
2337
  "Wizard giúp bạn nhanh chóng tạo và xuất bản quảng cáo. Do đó, chỉ có những "
2338
  "lựa chọn phổ biến nhất là nhìn thấy được."
2339
 
 
 
 
 
2340
  #: admin/views/ad-info.php:2
2341
  #, php-format
2342
  msgid "Ad Id: %s"
2583
  msgid "not on mobile devices"
2584
  msgstr "không phải trên thiết bị di động"
2585
 
 
 
 
 
 
 
 
 
2586
  #: admin/views/feedback-disable.php:4
2587
  msgid "Why did you decide to disable Advanced Ads?"
2588
  msgstr "Tại sao bạn lại quyết định vô hiệu hóa Advanced Ads?"
2589
 
2590
+ #: admin/views/feedback-disable.php:19
2591
  msgid "other reason"
2592
  msgstr "Lý do khác"
2593
 
 
 
 
 
2594
  #: admin/views/placements-content-index.php:1
2595
  msgid "after"
2596
  msgstr "sau"
2746
  msgid "Your license expired."
2747
  msgstr "Bản quyền đã hết hạn."
2748
 
2749
+ #: admin/views/setting-license.php:27
 
 
 
 
 
2750
  #, php-format
2751
  msgid "(%d days left)"
2752
  msgstr "(còn lại %d ngày)"
2753
 
2754
+ #: admin/views/setting-license.php:31
2755
  msgid "License key"
2756
  msgstr "Key bản quyền"
2757
 
2758
+ #: admin/views/setting-license.php:51
2759
  msgid "License key invalid"
2760
  msgstr "Key bản quyền không hợp lệ"
2761
 
2762
+ #: admin/views/setting-license.php:54
2763
  msgid "active"
2764
  msgstr "kích hoạt"
2765
 
2816
  msgid "Import &amp; Export"
2817
  msgstr "Nhập &amp; Xuất"
2818
 
2819
+ #: admin/views/settings.php:50
2820
  msgid "Advanced Ads on WordPress.org"
2821
  msgstr "Advanced Ads trên WordPress.org"
2822
 
2823
+ #: admin/views/settings.php:50
2824
  msgid "Advanced Ads on wp.org"
2825
  msgstr "Advanced Ads trên wp.org"
2826
 
2827
+ #: admin/views/settings.php:51
2828
  msgid "the company behind Advanced Ads"
2829
  msgstr "Công ty sản xuất Advanced Ads"
2830
 
2946
  msgid " at "
2947
  msgstr "tại"
2948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2949
  #: public/views/ad-debug.php:18
2950
  msgid "Ad debug output"
2951
  msgstr "Kiểm tra lỗi quảng cáo"
3094
  msgid "Use ads from your Google AdSense account"
3095
  msgstr "Sử dụng quảng cáo từ tài khoản Google AdSense của bạn"
3096
 
3097
+ #: modules/gadsense/includes/class-ad-type-adsense.php:108
3098
  msgid "Your AdSense Publisher ID is missing."
3099
  msgstr "ID nhà xuất bản AdSense của bạn thiếu."
3100
 
3106
  msgid "Please enter XML content"
3107
  msgstr "Vui lòng nhập nội dung XML"
3108
 
3109
+ #: modules/import-export/classes/import.php:145
3110
+ #: modules/import-export/classes/import.php:561
3111
  #, php-format
3112
  msgid "New attachment created <em>%s</em> %s"
3113
  msgstr "Đã tạo đính kèm mới <em>%s</em> %s"
3114
 
3115
+ #: modules/import-export/classes/import.php:177
3116
  #, php-format
3117
  msgid "Failed to import <em>%s</em>"
3118
  msgstr "Không thể nhập vào <em>%s</em>"
3119
 
3120
+ #: modules/import-export/classes/import.php:185
3121
  #, php-format
3122
  msgid "New ad created: <em>%s</em> %s"
3123
  msgstr "Quảng cáo mới đã tạo: <em>%s</em> %s"
3124
 
3125
+ #: modules/import-export/classes/import.php:228
3126
  #, php-format
3127
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
3128
  msgstr "Phân bổ Term: <em>%s</em>,cho bài viết: <em>%s</em>"
3129
 
3130
+ #: modules/import-export/classes/import.php:290
3131
  #, php-format
3132
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
3133
  msgstr "Nhóm quảng cáo mới đã tạo, id: <em>%s</em>, tên: <em>%s</em>"
3134
 
3135
+ #: modules/import-export/classes/import.php:292
3136
  #, php-format
3137
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
3138
  msgstr "Không thể nhập vào taxonomy: <em>%s</em>, term: <em>%s</em>"
3139
 
3140
+ #: modules/import-export/classes/import.php:357
3141
  #, php-format
3142
  msgid "Placement <em>%s</em> created"
3143
  msgstr "Vị trí quảng cáo <em>%s</em> được tạo"
3144
 
3145
+ #: modules/import-export/classes/import.php:472
3146
  #, php-format
3147
  msgid "Option was updated: <em>%s</em>"
3148
  msgstr "Cài đặt đã được cập nhật: <em>%s</em>"
3149
 
3150
+ #: modules/import-export/classes/import.php:475
3151
  #, php-format
3152
  msgid "Option already exists: <em>%s</em>"
3153
  msgstr "Cài đặt đã có sẵn: <em>%s</em>"
3154
 
3155
+ #: modules/import-export/classes/import.php:497
3156
  #, php-format
3157
  msgid "Failed to create import directory <em>%s</em>"
3158
  msgstr "Không thể tạo thư mục nhập vào <em>%s</em>"
3159
 
3160
+ #: modules/import-export/classes/import.php:502
3161
  #, php-format
3162
  msgid "Import directory is not writable: <em>%s</em>"
3163
  msgstr "Thưc mục nhập vào không thể lưu dữ liệu: <em>%s</em>"
3164
 
3165
+ #: modules/import-export/classes/import.php:510
3166
  msgid ""
3167
  "File is empty, uploads are disabled or post_max_size is smaller than "
3168
  "upload_max_filesize in php.ini"
3170
  "File là trống rỗng, upload lên bị khóa hoặc post_max_size nhỏ hơn "
3171
  "upload_max_filesize trong php.ini"
3172
 
3173
+ #: modules/import-export/classes/import.php:520
3174
  #, php-format
3175
  msgid "Failed to upload file, error: <em>%s</em>"
3176
  msgstr "Không thể tải lên các tập tin, báo lỗi: <em>%s</em>"
3177
 
3178
+ #: modules/import-export/classes/import.php:525
3179
  msgid "File is empty."
3180
  msgstr "File trống"
3181
 
3182
+ #: modules/import-export/classes/import.php:530
3183
  #, php-format
3184
  msgid ""
3185
  "The file could not be created: <em>%s</em>. This is probably a permissions "
3188
  "Các tập tin không thể được tạo ra: <em>%s </ em>. Đây có lẽ là một vấn đề "
3189
  "quyền"
3190
 
3191
+ #: modules/import-export/classes/import.php:603
3192
  #, php-format
3193
  msgid "Invalid filetype <em>%s</em>"
3194
  msgstr "Loại file không phù hợp <em>%s</em>"
3195
 
3196
+ #: modules/import-export/classes/import.php:608
3197
+ #: modules/import-export/classes/import.php:615
3198
+ #: modules/import-export/classes/import.php:623
3199
+ #: modules/import-export/classes/import.php:638
3200
  #, php-format
3201
  msgid "Error getting remote image <em>%s</em>"
3202
  msgstr "Lỗi nhận hình ảnh từ xa <em>%s </ em>"
3203
 
3204
+ #: modules/import-export/classes/import.php:632
3205
  #, php-format
3206
  msgid "Zero size file downloaded <em>%s</em>"
3207
  msgstr "File dữ liệu bằng 0 được tải <em>%s</em>"
3329
  msgid "Normal"
3330
  msgstr "Thông thường"
3331
 
3332
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:70
3333
  #, php-format
3334
  msgid ""
3335
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
3340
  "kích thước chính xác cho chiều rộng trình duyệt hoặc chọn giữa chiều dọc, "
3341
  "ngang hoặc hình chữ nhật."
3342
 
3343
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:73
3344
  msgid "Resizing"
3345
  msgstr "Thay đổi kích thước"
3346
 
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: 2017-06-22 13:15+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"
@@ -42,8 +42,8 @@ msgstr ""
42
  msgid "time of %s"
43
  msgstr ""
44
 
45
- #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:86
46
- #: admin/includes/class-menu.php:86
47
  msgid "Support"
48
  msgstr ""
49
 
@@ -228,13 +228,6 @@ msgstr ""
228
  msgid "url"
229
  msgstr ""
230
 
231
- #: classes/ad_type_dummy.php:49 classes/ad_type_image.php:68
232
- #, php-format
233
- msgid ""
234
- "Open this url in a new window and track impressions and clicks with the <a "
235
- "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
236
- msgstr ""
237
-
238
  #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
239
  msgid "Ad Group"
240
  msgstr ""
@@ -273,6 +266,17 @@ msgstr ""
273
  msgid "edit"
274
  msgstr ""
275
 
 
 
 
 
 
 
 
 
 
 
 
276
  #: classes/ad_type_plain.php:31
277
  msgid "Plain Text and Code"
278
  msgstr ""
@@ -308,7 +312,7 @@ msgstr ""
308
  msgid "post type"
309
  msgstr ""
310
 
311
- #: classes/display-conditions.php:70
312
  msgid "Choose the public post types on which to display the ad."
313
  msgstr ""
314
 
@@ -316,7 +320,7 @@ msgstr ""
316
  msgid "specific pages"
317
  msgstr ""
318
 
319
- #: classes/display-conditions.php:77
320
  msgid ""
321
  "Choose on which individual posts, pages and public post type pages you want "
322
  "to display or hide ads."
@@ -337,11 +341,13 @@ msgstr ""
337
 
338
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
339
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
 
340
  msgid "is"
341
  msgstr ""
342
 
343
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
344
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
 
345
  msgid "is not"
346
  msgstr ""
347
 
@@ -372,59 +378,59 @@ msgstr ""
372
  msgid "title or id"
373
  msgstr ""
374
 
375
- #: classes/display-conditions.php:469
376
  msgid "Home Page"
377
  msgstr ""
378
 
379
- #: classes/display-conditions.php:470
380
  msgid "show on Home page"
381
  msgstr ""
382
 
383
- #: classes/display-conditions.php:474
384
  msgid "Singular Pages"
385
  msgstr ""
386
 
387
- #: classes/display-conditions.php:475
388
  msgid "show on singular pages/posts"
389
  msgstr ""
390
 
391
- #: classes/display-conditions.php:479
392
  msgid "Archive Pages"
393
  msgstr ""
394
 
395
- #: classes/display-conditions.php:480
396
  msgid "show on any type of archive page (category, tag, author and date)"
397
  msgstr ""
398
 
399
- #: classes/display-conditions.php:484
400
  msgid "Search Results"
401
  msgstr ""
402
 
403
- #: classes/display-conditions.php:485
404
  msgid "show on search result pages"
405
  msgstr ""
406
 
407
- #: classes/display-conditions.php:489
408
  msgid "404 Page"
409
  msgstr ""
410
 
411
- #: classes/display-conditions.php:490
412
  msgid "show on 404 error page"
413
  msgstr ""
414
 
415
- #: classes/display-conditions.php:494
416
  msgid "Attachment Pages"
417
  msgstr ""
418
 
419
- #: classes/display-conditions.php:495
420
  msgid "show on attachment pages"
421
  msgstr ""
422
 
423
- #: classes/display-conditions.php:499
424
  msgid "Secondary Queries"
425
  msgstr ""
426
 
427
- #: classes/display-conditions.php:500
428
  msgid "allow ads in secondary queries"
429
  msgstr ""
430
 
@@ -453,6 +459,10 @@ msgstr ""
453
  msgid "Could not access filesystem."
454
  msgstr ""
455
 
 
 
 
 
456
  #: classes/filesystem.php:72
457
  msgid "Unable to locate WordPress root directory."
458
  msgstr ""
@@ -528,6 +538,14 @@ msgstr ""
528
  msgid "highlight ads"
529
  msgstr ""
530
 
 
 
 
 
 
 
 
 
531
  #: classes/visitor-conditions.php:32
532
  msgid "device"
533
  msgstr ""
@@ -619,6 +637,10 @@ msgstr ""
619
  msgid "Display Ads and Ad Groups."
620
  msgstr ""
621
 
 
 
 
 
622
  #: classes/widget.php:67 admin/includes/class-shortcode-creator.php:82
623
  msgid "--empty--"
624
  msgstr ""
@@ -644,6 +666,32 @@ msgstr ""
644
  msgid "Ads"
645
  msgstr ""
646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
647
  #: public/class-advanced-ads.php:317
648
  msgid "Advanced Ads Error following:"
649
  msgstr ""
@@ -710,9 +758,9 @@ msgstr ""
710
 
711
  #: public/class-advanced-ads.php:621
712
  #: admin/includes/class-ad-groups-list.php:308
713
- #: modules/import-export/classes/import.php:143
714
- #: modules/import-export/classes/import.php:183
715
- #: modules/import-export/classes/import.php:559
716
  msgid "Edit"
717
  msgstr ""
718
 
@@ -813,14 +861,24 @@ msgstr ""
813
  msgid "Usage"
814
  msgstr ""
815
 
 
 
 
 
816
  #: admin/includes/class-ad-groups-list.php:339
 
817
  msgid "Invalid Ad Group"
818
  msgstr ""
819
 
820
  #: admin/includes/class-ad-groups-list.php:344
 
821
  msgid "You don’t have permission to change the ad groups"
822
  msgstr ""
823
 
 
 
 
 
824
  #: admin/includes/class-ad-type.php:97 admin/includes/class-ad-type.php:102
825
  msgid "Ad Details"
826
  msgstr ""
@@ -841,6 +899,41 @@ msgstr ""
841
  msgid "planned"
842
  msgstr ""
843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
844
  #: admin/includes/class-ad-type.php:514 admin/includes/class-ad-type.php:515
845
  msgid "Ad updated."
846
  msgstr ""
@@ -895,13 +988,11 @@ msgstr ""
895
  msgid "Error while trying to register the license. Please contact support."
896
  msgstr ""
897
 
898
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:40
899
  msgid "Please enter a valid license key"
900
  msgstr ""
901
 
902
  #: admin/includes/class-licenses.php:132
903
- #: modules/marketpress-license/main.php:65
904
- #: modules/marketpress-license/main.php:77
905
  msgid "License couldn’t be activated. Please try again later."
906
  msgstr ""
907
 
@@ -910,15 +1001,18 @@ msgid "This is the bundle license key."
910
  msgstr ""
911
 
912
  #: admin/includes/class-licenses.php:148
913
- #: modules/marketpress-license/main.php:132
914
  msgid "This is not the correct key for this add-on."
915
  msgstr ""
916
 
917
  #: admin/includes/class-licenses.php:149
918
- #: modules/marketpress-license/main.php:130
919
  msgid "There are no activations left."
920
  msgstr ""
921
 
 
 
 
 
 
922
  #: admin/includes/class-licenses.php:218
923
  msgid "Error while trying to disable the license. Please contact support."
924
  msgstr ""
@@ -951,23 +1045,15 @@ msgstr ""
951
  msgid "Advanced Ads Settings"
952
  msgstr ""
953
 
954
- #: admin/includes/class-menu.php:79 admin/views/debug.php:9
955
  msgid "Settings"
956
  msgstr ""
957
 
958
- #: admin/includes/class-menu.php:82
959
- msgid "Advanced Ads Debugging"
960
- msgstr ""
961
-
962
- #: admin/includes/class-menu.php:82
963
- msgid "Debug"
964
- msgstr ""
965
-
966
- #: admin/includes/class-menu.php:190 admin/includes/class-menu.php:217
967
  msgid "Sorry, you are not allowed to access this feature."
968
  msgstr ""
969
 
970
- #: admin/includes/class-menu.php:203
971
  msgid ""
972
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
973
  "deleted?"
@@ -1028,19 +1114,19 @@ msgstr ""
1028
  msgid "Get AdSense tips via email"
1029
  msgstr ""
1030
 
1031
- #: admin/includes/class-notices.php:417
1032
  #, php-format
1033
  msgid ""
1034
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
1035
  "target=\"_blank\">this form</a> to sign up."
1036
  msgstr ""
1037
 
1038
- #: admin/includes/class-notices.php:435
1039
  msgid ""
1040
  "How embarrassing. The email server seems to be down. Please try again later."
1041
  msgstr ""
1042
 
1043
- #: admin/includes/class-notices.php:440
1044
  #, php-format
1045
  msgid ""
1046
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -1503,6 +1589,11 @@ msgid ""
1503
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1504
  msgstr ""
1505
 
 
 
 
 
 
1506
  #: admin/includes/class-settings.php:446
1507
  msgid "Displayed above ads."
1508
  msgstr ""
@@ -1515,7 +1606,7 @@ msgstr ""
1515
  msgid "Disable shortcode button in visual editor."
1516
  msgstr ""
1517
 
1518
- #: admin/includes/class-shortcode-creator.php:154
1519
  #, php-format
1520
  msgid ""
1521
  "Please, either switch off your ad blocker or disable the shortcode button in "
@@ -1569,21 +1660,12 @@ msgstr ""
1569
  #: admin/includes/notices.php:47
1570
  #, php-format
1571
  msgid ""
1572
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1573
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
1574
- "before it expires with a significant discount on <a href=\"%s\" "
1575
- "target=\"_blank\">the add-on page</a>."
1576
- msgstr ""
1577
-
1578
- #: admin/includes/notices.php:53
1579
- #, php-format
1580
- msgid ""
1581
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1582
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1583
  "information."
1584
  msgstr ""
1585
 
1586
- #: admin/includes/notices.php:59
1587
  #, php-format
1588
  msgid ""
1589
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
@@ -1595,7 +1677,7 @@ msgid ""
1595
  "org</a>.</p><p><em>Thomas</em>"
1596
  msgstr ""
1597
 
1598
- #: admin/includes/notices.php:65
1599
  #, php-format
1600
  msgid ""
1601
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
@@ -1653,7 +1735,7 @@ msgid "Forced to OR."
1653
  msgstr ""
1654
 
1655
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
1656
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
1657
  msgid "manual"
1658
  msgstr ""
1659
 
@@ -1674,11 +1756,30 @@ msgstr ""
1674
  msgid "add"
1675
  msgstr ""
1676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1677
  #: admin/views/ad-group-edit.php:40
1678
  msgid ""
1679
  "An id-like string with only letters in lower case, numbers, and hyphens."
1680
  msgstr ""
1681
 
 
 
 
 
 
1682
  #: admin/views/ad-group-edit.php:57
1683
  msgid "Create new Ad Group"
1684
  msgstr ""
@@ -1744,15 +1845,27 @@ msgid "ID: %s"
1744
  msgstr ""
1745
 
1746
  #: admin/views/ad-group.php:18
 
 
 
 
1747
  msgid "Ad Groups successfully updated"
1748
  msgstr ""
1749
 
1750
- #: admin/views/ad-group.php:46
1751
  #, php-format
1752
  msgid "Search results for &#8220;%s&#8221;"
1753
  msgstr ""
1754
 
1755
- #: admin/views/ad-group.php:52
 
 
 
 
 
 
 
 
1756
  msgid ""
1757
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
1758
  "display random ads in the frontend or run split tests, but also just for "
@@ -1760,20 +1873,14 @@ msgid ""
1760
  "ad can belong to multiple ad groups."
1761
  msgstr ""
1762
 
1763
- #: admin/views/ad-group.php:53
1764
- msgid ""
1765
- "You can create a new group through the <em>Ad Groups</em> widget on the ad "
1766
- "edit page."
1767
- msgstr ""
1768
-
1769
- #: admin/views/ad-group.php:53
1770
  #, php-format
1771
  msgid ""
1772
  "Find more information about ad groups in the <a href=\"%s\" "
1773
  "target=\"_blank\">manual</a>."
1774
  msgstr ""
1775
 
1776
- #: admin/views/ad-group.php:79
1777
  msgid "Update Groups"
1778
  msgstr ""
1779
 
@@ -1803,6 +1910,10 @@ msgctxt "wizard navigation"
1803
  msgid "next"
1804
  msgstr ""
1805
 
 
 
 
 
1806
  #: admin/views/ad-info-top.php:5
1807
  #, php-format
1808
  msgid ""
@@ -1868,10 +1979,6 @@ msgid ""
1868
  "the most common options are visible."
1869
  msgstr ""
1870
 
1871
- #: admin/views/ad-info-top.php:85
1872
- msgid "Stop Wizard and show all options"
1873
- msgstr ""
1874
-
1875
  #: admin/views/ad-info.php:2
1876
  #, php-format
1877
  msgid "Ad Id: %s"
@@ -2046,12 +2153,32 @@ msgstr ""
2046
  msgid "Set expiry date"
2047
  msgstr ""
2048
 
 
 
 
 
2049
  #: admin/views/ad-submitbox-meta.php:16
2050
  #, php-format
2051
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2052
  msgid "%1$s-%2$s"
2053
  msgstr ""
2054
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2055
  #: admin/views/ad-submitbox-meta.php:29
2056
  #, php-format
2057
  msgctxt ""
@@ -2116,14 +2243,6 @@ msgstr ""
2116
  msgid "not on mobile devices"
2117
  msgstr ""
2118
 
2119
- #: admin/views/debug.php:6 admin/views/settings.php:50
2120
- msgid "Debug Page"
2121
- msgstr ""
2122
-
2123
- #: admin/views/debug.php:7
2124
- msgid "Work in progress"
2125
- msgstr ""
2126
-
2127
  #: admin/views/feedback-disable.php:4
2128
  msgid "Why did you decide to disable Advanced Ads?"
2129
  msgstr ""
@@ -2133,51 +2252,55 @@ msgid "It is only temporary"
2133
  msgstr ""
2134
 
2135
  #: admin/views/feedback-disable.php:7
2136
- msgid "I have a problem"
2137
  msgstr ""
2138
 
2139
  #: admin/views/feedback-disable.php:8
 
 
 
 
2140
  msgid "Please let us know how we can help"
2141
  msgstr ""
2142
 
2143
- #: admin/views/feedback-disable.php:11
2144
  #, php-format
2145
  msgid "Send me free help to %s"
2146
  msgstr ""
2147
 
2148
- #: admin/views/feedback-disable.php:13
2149
  msgid "I miss a feature"
2150
  msgstr ""
2151
 
2152
- #: admin/views/feedback-disable.php:14 admin/views/feedback-disable.php:17
2153
  msgid "Which one?"
2154
  msgstr ""
2155
 
2156
- #: admin/views/feedback-disable.php:15
2157
  msgid "I don’t use ads on my site"
2158
  msgstr ""
2159
 
2160
- #: admin/views/feedback-disable.php:16
2161
  msgid "I switched to another plugin"
2162
  msgstr ""
2163
 
2164
- #: admin/views/feedback-disable.php:18
2165
  msgid "other reason"
2166
  msgstr ""
2167
 
2168
- #: admin/views/feedback-disable.php:19
2169
- msgid "Please specify, if possible"
2170
  msgstr ""
2171
 
2172
- #: admin/views/feedback-disable.php:24
2173
  msgid "Submit & Deactivate"
2174
  msgstr ""
2175
 
2176
- #: admin/views/feedback-disable.php:25
2177
  msgid "Only Deactivate"
2178
  msgstr ""
2179
 
2180
- #: admin/views/feedback-disable.php:26
2181
  msgid "don’t deactivate"
2182
  msgstr ""
2183
 
@@ -2257,6 +2380,10 @@ msgstr ""
2257
  msgid "Item"
2258
  msgstr ""
2259
 
 
 
 
 
2260
  #: admin/views/placements.php:98
2261
  msgid "Important Notice"
2262
  msgstr ""
@@ -2268,6 +2395,10 @@ msgid ""
2268
  "provider to enable <em>mbstring</em>."
2269
  msgstr ""
2270
 
 
 
 
 
2271
  #: admin/views/placements.php:128
2272
  msgid "show all options"
2273
  msgstr ""
@@ -2349,25 +2480,39 @@ msgstr ""
2349
  msgid "Your license expired."
2350
  msgstr ""
2351
 
2352
- #: admin/views/setting-license.php:6
2353
  #, php-format
2354
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
 
 
2355
  msgstr ""
2356
 
2357
- #: admin/views/setting-license.php:18
2358
  #, php-format
2359
  msgid "(%d days left)"
2360
  msgstr ""
2361
 
2362
- #: admin/views/setting-license.php:22
2363
  msgid "License key"
2364
  msgstr ""
2365
 
2366
- #: admin/views/setting-license.php:42
 
 
 
 
 
 
 
 
 
 
 
 
2367
  msgid "License key invalid"
2368
  msgstr ""
2369
 
2370
- #: admin/views/setting-license.php:45
2371
  msgid "active"
2372
  msgstr ""
2373
 
@@ -2418,15 +2563,15 @@ msgstr ""
2418
  msgid "Import &amp; Export"
2419
  msgstr ""
2420
 
2421
- #: admin/views/settings.php:51
2422
  msgid "Advanced Ads on WordPress.org"
2423
  msgstr ""
2424
 
2425
- #: admin/views/settings.php:51
2426
  msgid "Advanced Ads on wp.org"
2427
  msgstr ""
2428
 
2429
- #: admin/views/settings.php:52
2430
  msgid "the company behind Advanced Ads"
2431
  msgstr ""
2432
 
@@ -2526,22 +2671,6 @@ msgstr ""
2526
  msgid " at "
2527
  msgstr ""
2528
 
2529
- #: modules/marketpress-license/admin.php:36
2530
- msgid "MarketPress Bundle License"
2531
- msgstr ""
2532
-
2533
- #: modules/marketpress-license/admin.php:67
2534
- #: modules/marketpress-license/admin.php:70
2535
- msgid ""
2536
- "Enter your key here, if you have purchased the bundle through MarketPress."
2537
- msgstr ""
2538
-
2539
- #: modules/marketpress-license/admin.php:72
2540
- msgid ""
2541
- "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
2542
- "."
2543
- msgstr ""
2544
-
2545
  #: public/views/ad-debug.php:18
2546
  msgid "Ad debug output"
2547
  msgstr ""
@@ -2700,7 +2829,7 @@ msgstr ""
2700
  msgid "Use ads from your Google AdSense account"
2701
  msgstr ""
2702
 
2703
- #: modules/gadsense/includes/class-ad-type-adsense.php:106
2704
  msgid "Your AdSense Publisher ID is missing."
2705
  msgstr ""
2706
 
@@ -2712,98 +2841,98 @@ msgstr ""
2712
  msgid "Please enter XML content"
2713
  msgstr ""
2714
 
2715
- #: modules/import-export/classes/import.php:144
2716
- #: modules/import-export/classes/import.php:560
2717
  #, php-format
2718
  msgid "New attachment created <em>%s</em> %s"
2719
  msgstr ""
2720
 
2721
- #: modules/import-export/classes/import.php:176
2722
  #, php-format
2723
  msgid "Failed to import <em>%s</em>"
2724
  msgstr ""
2725
 
2726
- #: modules/import-export/classes/import.php:184
2727
  #, php-format
2728
  msgid "New ad created: <em>%s</em> %s"
2729
  msgstr ""
2730
 
2731
- #: modules/import-export/classes/import.php:227
2732
  #, php-format
2733
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2734
  msgstr ""
2735
 
2736
- #: modules/import-export/classes/import.php:289
2737
  #, php-format
2738
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2739
  msgstr ""
2740
 
2741
- #: modules/import-export/classes/import.php:291
2742
  #, php-format
2743
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2744
  msgstr ""
2745
 
2746
- #: modules/import-export/classes/import.php:356
2747
  #, php-format
2748
  msgid "Placement <em>%s</em> created"
2749
  msgstr ""
2750
 
2751
- #: modules/import-export/classes/import.php:471
2752
  #, php-format
2753
  msgid "Option was updated: <em>%s</em>"
2754
  msgstr ""
2755
 
2756
- #: modules/import-export/classes/import.php:474
2757
  #, php-format
2758
  msgid "Option already exists: <em>%s</em>"
2759
  msgstr ""
2760
 
2761
- #: modules/import-export/classes/import.php:496
2762
  #, php-format
2763
  msgid "Failed to create import directory <em>%s</em>"
2764
  msgstr ""
2765
 
2766
- #: modules/import-export/classes/import.php:501
2767
  #, php-format
2768
  msgid "Import directory is not writable: <em>%s</em>"
2769
  msgstr ""
2770
 
2771
- #: modules/import-export/classes/import.php:509
2772
  msgid ""
2773
  "File is empty, uploads are disabled or post_max_size is smaller than "
2774
  "upload_max_filesize in php.ini"
2775
  msgstr ""
2776
 
2777
- #: modules/import-export/classes/import.php:519
2778
  #, php-format
2779
  msgid "Failed to upload file, error: <em>%s</em>"
2780
  msgstr ""
2781
 
2782
- #: modules/import-export/classes/import.php:524
2783
  msgid "File is empty."
2784
  msgstr ""
2785
 
2786
- #: modules/import-export/classes/import.php:529
2787
  #, php-format
2788
  msgid ""
2789
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2790
  "problem"
2791
  msgstr ""
2792
 
2793
- #: modules/import-export/classes/import.php:602
2794
  #, php-format
2795
  msgid "Invalid filetype <em>%s</em>"
2796
  msgstr ""
2797
 
2798
- #: modules/import-export/classes/import.php:607
2799
- #: modules/import-export/classes/import.php:614
2800
- #: modules/import-export/classes/import.php:622
2801
- #: modules/import-export/classes/import.php:637
2802
  #, php-format
2803
  msgid "Error getting remote image <em>%s</em>"
2804
  msgstr ""
2805
 
2806
- #: modules/import-export/classes/import.php:631
2807
  #, php-format
2808
  msgid "Zero size file downloaded <em>%s</em>"
2809
  msgstr ""
@@ -2846,6 +2975,10 @@ msgid ""
2846
  "to save to your computer."
2847
  msgstr ""
2848
 
 
 
 
 
2849
  #: modules/import-export/views/page.php:33
2850
  msgid "Import"
2851
  msgstr ""
@@ -2858,6 +2991,17 @@ msgstr ""
2858
  msgid "Copy an XML content"
2859
  msgstr ""
2860
 
 
 
 
 
 
 
 
 
 
 
 
2861
  #: modules/import-export/views/page.php:66
2862
  msgid "Start import"
2863
  msgstr ""
@@ -2953,7 +3097,15 @@ msgstr ""
2953
  msgid "Link ads (Responsive)"
2954
  msgstr ""
2955
 
2956
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:68
 
 
 
 
 
 
 
 
2957
  #, php-format
2958
  msgid ""
2959
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -2961,10 +3113,22 @@ msgid ""
2961
  "vertical, or rectangle formats."
2962
  msgstr ""
2963
 
2964
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:71
2965
  msgid "Resizing"
2966
  msgstr ""
2967
 
 
 
 
 
 
 
 
 
 
 
 
 
2968
  #. Name of the plugin
2969
  msgid "Advanced Ads"
2970
  msgstr ""
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: 2017-07-11 09:26+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"
42
  msgid "time of %s"
43
  msgstr ""
44
 
45
+ #: admin/class-advanced-ads-admin.php:341 admin/includes/class-menu.php:83
46
+ #: admin/includes/class-menu.php:83
47
  msgid "Support"
48
  msgstr ""
49
 
228
  msgid "url"
229
  msgstr ""
230
 
 
 
 
 
 
 
 
231
  #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
232
  msgid "Ad Group"
233
  msgstr ""
266
  msgid "edit"
267
  msgstr ""
268
 
269
+ #: classes/ad_type_image.php:67
270
+ msgid "Link to target site"
271
+ msgstr ""
272
+
273
+ #: classes/ad_type_image.php:68
274
+ #, php-format
275
+ msgid ""
276
+ "Open this url in a new window and track impressions and clicks with the <a "
277
+ "href=\"%s\" target=\"_blank\">Tracking add-on</a>"
278
+ msgstr ""
279
+
280
  #: classes/ad_type_plain.php:31
281
  msgid "Plain Text and Code"
282
  msgstr ""
312
  msgid "post type"
313
  msgstr ""
314
 
315
+ #: classes/display-conditions.php:70 includes/array_ad_conditions.php:40
316
  msgid "Choose the public post types on which to display the ad."
317
  msgstr ""
318
 
320
  msgid "specific pages"
321
  msgstr ""
322
 
323
+ #: classes/display-conditions.php:77 includes/array_ad_conditions.php:58
324
  msgid ""
325
  "Choose on which individual posts, pages and public post type pages you want "
326
  "to display or hide ads."
341
 
342
  #: classes/display-conditions.php:213 classes/display-conditions.php:266
343
  #: classes/display-conditions.php:321 classes/display-conditions.php:395
344
+ #: classes/visitor-conditions.php:126
345
  msgid "is"
346
  msgstr ""
347
 
348
  #: classes/display-conditions.php:214 classes/display-conditions.php:267
349
  #: classes/display-conditions.php:322 classes/display-conditions.php:396
350
+ #: classes/visitor-conditions.php:127
351
  msgid "is not"
352
  msgstr ""
353
 
378
  msgid "title or id"
379
  msgstr ""
380
 
381
+ #: classes/display-conditions.php:469 includes/array_ad_conditions.php:63
382
  msgid "Home Page"
383
  msgstr ""
384
 
385
+ #: classes/display-conditions.php:470 includes/array_ad_conditions.php:64
386
  msgid "show on Home page"
387
  msgstr ""
388
 
389
+ #: classes/display-conditions.php:474 includes/array_ad_conditions.php:68
390
  msgid "Singular Pages"
391
  msgstr ""
392
 
393
+ #: classes/display-conditions.php:475 includes/array_ad_conditions.php:69
394
  msgid "show on singular pages/posts"
395
  msgstr ""
396
 
397
+ #: classes/display-conditions.php:479 includes/array_ad_conditions.php:73
398
  msgid "Archive Pages"
399
  msgstr ""
400
 
401
+ #: classes/display-conditions.php:480 includes/array_ad_conditions.php:74
402
  msgid "show on any type of archive page (category, tag, author and date)"
403
  msgstr ""
404
 
405
+ #: classes/display-conditions.php:484 includes/array_ad_conditions.php:78
406
  msgid "Search Results"
407
  msgstr ""
408
 
409
+ #: classes/display-conditions.php:485 includes/array_ad_conditions.php:79
410
  msgid "show on search result pages"
411
  msgstr ""
412
 
413
+ #: classes/display-conditions.php:489 includes/array_ad_conditions.php:83
414
  msgid "404 Page"
415
  msgstr ""
416
 
417
+ #: classes/display-conditions.php:490 includes/array_ad_conditions.php:84
418
  msgid "show on 404 error page"
419
  msgstr ""
420
 
421
+ #: classes/display-conditions.php:494 includes/array_ad_conditions.php:88
422
  msgid "Attachment Pages"
423
  msgstr ""
424
 
425
+ #: classes/display-conditions.php:495 includes/array_ad_conditions.php:89
426
  msgid "show on attachment pages"
427
  msgstr ""
428
 
429
+ #: classes/display-conditions.php:499 includes/array_ad_conditions.php:93
430
  msgid "Secondary Queries"
431
  msgstr ""
432
 
433
+ #: classes/display-conditions.php:500 includes/array_ad_conditions.php:94
434
  msgid "allow ads in secondary queries"
435
  msgstr ""
436
 
459
  msgid "Could not access filesystem."
460
  msgstr ""
461
 
462
+ #: classes/filesystem.php:65
463
+ msgid "Filesystem error."
464
+ msgstr ""
465
+
466
  #: classes/filesystem.php:72
467
  msgid "Unable to locate WordPress root directory."
468
  msgstr ""
538
  msgid "highlight ads"
539
  msgstr ""
540
 
541
+ #: classes/frontend_checks.php:315
542
+ #, php-format
543
+ msgid ""
544
+ "This ads was automatically placed here by AdSense. <a href=\"%s\" "
545
+ "target=\"_blank\" style=\"color:#fff;border-color:#fff;\">Click here to "
546
+ "learn more</a>."
547
+ msgstr ""
548
+
549
  #: classes/visitor-conditions.php:32
550
  msgid "device"
551
  msgstr ""
637
  msgid "Display Ads and Ad Groups."
638
  msgstr ""
639
 
640
+ #: classes/widget.php:61
641
+ msgid "Title:"
642
+ msgstr ""
643
+
644
  #: classes/widget.php:67 admin/includes/class-shortcode-creator.php:82
645
  msgid "--empty--"
646
  msgstr ""
666
  msgid "Ads"
667
  msgstr ""
668
 
669
+ #: includes/array_ad_conditions.php:39
670
+ msgid "Post Types"
671
+ msgstr ""
672
+
673
+ #: includes/array_ad_conditions.php:45
674
+ msgid "Categories, Tags and Taxonomies"
675
+ msgstr ""
676
+
677
+ #: includes/array_ad_conditions.php:46
678
+ msgid ""
679
+ "Choose terms from public category, tag and other taxonomies a post must "
680
+ "belong to in order to have ads."
681
+ msgstr ""
682
+
683
+ #: includes/array_ad_conditions.php:51
684
+ msgid "Category Archives"
685
+ msgstr ""
686
+
687
+ #: includes/array_ad_conditions.php:52
688
+ msgid "comma seperated IDs of category archives"
689
+ msgstr ""
690
+
691
+ #: includes/array_ad_conditions.php:57
692
+ msgid "Individual Posts, Pages and Public Post Types"
693
+ msgstr ""
694
+
695
  #: public/class-advanced-ads.php:317
696
  msgid "Advanced Ads Error following:"
697
  msgstr ""
758
 
759
  #: public/class-advanced-ads.php:621
760
  #: admin/includes/class-ad-groups-list.php:308
761
+ #: modules/import-export/classes/import.php:144
762
+ #: modules/import-export/classes/import.php:184
763
+ #: modules/import-export/classes/import.php:560
764
  msgid "Edit"
765
  msgstr ""
766
 
861
  msgid "Usage"
862
  msgstr ""
863
 
864
+ #: admin/includes/class-ad-groups-list.php:318
865
+ msgid "Delete"
866
+ msgstr ""
867
+
868
  #: admin/includes/class-ad-groups-list.php:339
869
+ #: admin/includes/class-ad-groups-list.php:389
870
  msgid "Invalid Ad Group"
871
  msgstr ""
872
 
873
  #: admin/includes/class-ad-groups-list.php:344
874
+ #: admin/includes/class-ad-groups-list.php:394
875
  msgid "You don’t have permission to change the ad groups"
876
  msgstr ""
877
 
878
+ #: admin/includes/class-ad-groups-list.php:374
879
+ msgid "No ad group created"
880
+ msgstr ""
881
+
882
  #: admin/includes/class-ad-type.php:97 admin/includes/class-ad-type.php:102
883
  msgid "Ad Details"
884
  msgstr ""
899
  msgid "planned"
900
  msgstr ""
901
 
902
+ #: admin/includes/class-ad-type.php:222
903
+ #, php-format
904
+ msgid "%s ad updated."
905
+ msgid_plural "%s ads updated."
906
+ msgstr[0] ""
907
+ msgstr[1] ""
908
+
909
+ #: admin/includes/class-ad-type.php:223
910
+ #, php-format
911
+ msgid "%s ad not updated, somebody is editing it."
912
+ msgid_plural "%s ads not updated, somebody is editing them."
913
+ msgstr[0] ""
914
+ msgstr[1] ""
915
+
916
+ #: admin/includes/class-ad-type.php:224
917
+ #, php-format
918
+ msgid "%s ad permanently deleted."
919
+ msgid_plural "%s ads permanently deleted."
920
+ msgstr[0] ""
921
+ msgstr[1] ""
922
+
923
+ #: admin/includes/class-ad-type.php:225
924
+ #, php-format
925
+ msgid "%s ad moved to the Trash."
926
+ msgid_plural "%s ads moved to the Trash."
927
+ msgstr[0] ""
928
+ msgstr[1] ""
929
+
930
+ #: admin/includes/class-ad-type.php:226
931
+ #, php-format
932
+ msgid "%s ad restored from the Trash."
933
+ msgid_plural "%s ads restored from the Trash."
934
+ msgstr[0] ""
935
+ msgstr[1] ""
936
+
937
  #: admin/includes/class-ad-type.php:514 admin/includes/class-ad-type.php:515
938
  msgid "Ad updated."
939
  msgstr ""
988
  msgid "Error while trying to register the license. Please contact support."
989
  msgstr ""
990
 
991
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
992
  msgid "Please enter a valid license key"
993
  msgstr ""
994
 
995
  #: admin/includes/class-licenses.php:132
 
 
996
  msgid "License couldn’t be activated. Please try again later."
997
  msgstr ""
998
 
1001
  msgstr ""
1002
 
1003
  #: admin/includes/class-licenses.php:148
 
1004
  msgid "This is not the correct key for this add-on."
1005
  msgstr ""
1006
 
1007
  #: admin/includes/class-licenses.php:149
 
1008
  msgid "There are no activations left."
1009
  msgstr ""
1010
 
1011
+ #: admin/includes/class-licenses.php:158
1012
+ #, php-format
1013
+ msgid "License is invalid. Reason: %s"
1014
+ msgstr ""
1015
+
1016
  #: admin/includes/class-licenses.php:218
1017
  msgid "Error while trying to disable the license. Please contact support."
1018
  msgstr ""
1045
  msgid "Advanced Ads Settings"
1046
  msgstr ""
1047
 
1048
+ #: admin/includes/class-menu.php:79
1049
  msgid "Settings"
1050
  msgstr ""
1051
 
1052
+ #: admin/includes/class-menu.php:173 admin/includes/class-menu.php:200
 
 
 
 
 
 
 
 
1053
  msgid "Sorry, you are not allowed to access this feature."
1054
  msgstr ""
1055
 
1056
+ #: admin/includes/class-menu.php:186
1057
  msgid ""
1058
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
1059
  "deleted?"
1114
  msgid "Get AdSense tips via email"
1115
  msgstr ""
1116
 
1117
+ #: admin/includes/class-notices.php:408
1118
  #, php-format
1119
  msgid ""
1120
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
1121
  "target=\"_blank\">this form</a> to sign up."
1122
  msgstr ""
1123
 
1124
+ #: admin/includes/class-notices.php:426
1125
  msgid ""
1126
  "How embarrassing. The email server seems to be down. Please try again later."
1127
  msgstr ""
1128
 
1129
+ #: admin/includes/class-notices.php:431
1130
  #, php-format
1131
  msgid ""
1132
  "Please check your email (%s) for the confirmation message. If you didn’t "
1589
  "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1590
  msgstr ""
1591
 
1592
+ #: admin/includes/class-settings.php:439
1593
+ msgctxt "label before ads"
1594
+ msgid "Advertisements"
1595
+ msgstr ""
1596
+
1597
  #: admin/includes/class-settings.php:446
1598
  msgid "Displayed above ads."
1599
  msgstr ""
1606
  msgid "Disable shortcode button in visual editor."
1607
  msgstr ""
1608
 
1609
+ #: admin/includes/class-shortcode-creator.php:155
1610
  #, php-format
1611
  msgid ""
1612
  "Please, either switch off your ad blocker or disable the shortcode button in "
1660
  #: admin/includes/notices.php:47
1661
  #, php-format
1662
  msgid ""
 
 
 
 
 
 
 
 
 
1663
  "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1664
  "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1665
  "information."
1666
  msgstr ""
1667
 
1668
+ #: admin/includes/notices.php:53
1669
  #, php-format
1670
  msgid ""
1671
  "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1677
  "org</a>.</p><p><em>Thomas</em>"
1678
  msgstr ""
1679
 
1680
+ #: admin/includes/notices.php:59
1681
  #, php-format
1682
  msgid ""
1683
  "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1735
  msgstr ""
1736
 
1737
  #: admin/views/ad-display-metabox.php:60 admin/views/ad-info-top.php:86
1738
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:66
1739
  msgid "manual"
1740
  msgstr ""
1741
 
1756
  msgid "add"
1757
  msgstr ""
1758
 
1759
+ #: admin/views/ad-group-edit.php:14
1760
+ msgid "You did not select an item for editing."
1761
+ msgstr ""
1762
+
1763
+ #: admin/views/ad-group-edit.php:33
1764
+ msgctxt "Taxonomy Name"
1765
+ msgid "Name"
1766
+ msgstr ""
1767
+
1768
+ #: admin/views/ad-group-edit.php:38
1769
+ msgctxt "Taxonomy Slug"
1770
+ msgid "Slug"
1771
+ msgstr ""
1772
+
1773
  #: admin/views/ad-group-edit.php:40
1774
  msgid ""
1775
  "An id-like string with only letters in lower case, numbers, and hyphens."
1776
  msgstr ""
1777
 
1778
+ #: admin/views/ad-group-edit.php:45
1779
+ msgctxt "Taxonomy Description"
1780
+ msgid "Description"
1781
+ msgstr ""
1782
+
1783
  #: admin/views/ad-group-edit.php:57
1784
  msgid "Create new Ad Group"
1785
  msgstr ""
1845
  msgstr ""
1846
 
1847
  #: admin/views/ad-group.php:18
1848
+ msgid "Ad Group successfully created"
1849
+ msgstr ""
1850
+
1851
+ #: admin/views/ad-group.php:29
1852
  msgid "Ad Groups successfully updated"
1853
  msgstr ""
1854
 
1855
+ #: admin/views/ad-group.php:59
1856
  #, php-format
1857
  msgid "Search results for &#8220;%s&#8221;"
1858
  msgstr ""
1859
 
1860
+ #: admin/views/ad-group.php:65
1861
+ msgid "Group title"
1862
+ msgstr ""
1863
+
1864
+ #: admin/views/ad-group.php:66
1865
+ msgid "save"
1866
+ msgstr ""
1867
+
1868
+ #: admin/views/ad-group.php:68
1869
  msgid ""
1870
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
1871
  "display random ads in the frontend or run split tests, but also just for "
1873
  "ad can belong to multiple ad groups."
1874
  msgstr ""
1875
 
1876
+ #: admin/views/ad-group.php:69
 
 
 
 
 
 
1877
  #, php-format
1878
  msgid ""
1879
  "Find more information about ad groups in the <a href=\"%s\" "
1880
  "target=\"_blank\">manual</a>."
1881
  msgstr ""
1882
 
1883
+ #: admin/views/ad-group.php:96
1884
  msgid "Update Groups"
1885
  msgstr ""
1886
 
1910
  msgid "next"
1911
  msgstr ""
1912
 
1913
+ #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-top.php:85
1914
+ msgid "Stop Wizard and show all options"
1915
+ msgstr ""
1916
+
1917
  #: admin/views/ad-info-top.php:5
1918
  #, php-format
1919
  msgid ""
1979
  "the most common options are visible."
1980
  msgstr ""
1981
 
 
 
 
 
1982
  #: admin/views/ad-info.php:2
1983
  #, php-format
1984
  msgid "Ad Id: %s"
2153
  msgid "Set expiry date"
2154
  msgstr ""
2155
 
2156
+ #: admin/views/ad-submitbox-meta.php:12
2157
+ msgid "Month"
2158
+ msgstr ""
2159
+
2160
  #: admin/views/ad-submitbox-meta.php:16
2161
  #, php-format
2162
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2163
  msgid "%1$s-%2$s"
2164
  msgstr ""
2165
 
2166
+ #: admin/views/ad-submitbox-meta.php:21
2167
+ msgid "Day"
2168
+ msgstr ""
2169
+
2170
+ #: admin/views/ad-submitbox-meta.php:22
2171
+ msgid "Year"
2172
+ msgstr ""
2173
+
2174
+ #: admin/views/ad-submitbox-meta.php:23
2175
+ msgid "Hour"
2176
+ msgstr ""
2177
+
2178
+ #: admin/views/ad-submitbox-meta.php:24
2179
+ msgid "Minute"
2180
+ msgstr ""
2181
+
2182
  #: admin/views/ad-submitbox-meta.php:29
2183
  #, php-format
2184
  msgctxt ""
2243
  msgid "not on mobile devices"
2244
  msgstr ""
2245
 
 
 
 
 
 
 
 
 
2246
  #: admin/views/feedback-disable.php:4
2247
  msgid "Why did you decide to disable Advanced Ads?"
2248
  msgstr ""
2252
  msgstr ""
2253
 
2254
  #: admin/views/feedback-disable.php:7
2255
+ msgid "I need help to set it up"
2256
  msgstr ""
2257
 
2258
  #: admin/views/feedback-disable.php:8
2259
+ msgid "I have a problem"
2260
+ msgstr ""
2261
+
2262
+ #: admin/views/feedback-disable.php:9
2263
  msgid "Please let us know how we can help"
2264
  msgstr ""
2265
 
2266
+ #: admin/views/feedback-disable.php:12
2267
  #, php-format
2268
  msgid "Send me free help to %s"
2269
  msgstr ""
2270
 
2271
+ #: admin/views/feedback-disable.php:14
2272
  msgid "I miss a feature"
2273
  msgstr ""
2274
 
2275
+ #: admin/views/feedback-disable.php:15 admin/views/feedback-disable.php:18
2276
  msgid "Which one?"
2277
  msgstr ""
2278
 
2279
+ #: admin/views/feedback-disable.php:16
2280
  msgid "I don’t use ads on my site"
2281
  msgstr ""
2282
 
2283
+ #: admin/views/feedback-disable.php:17
2284
  msgid "I switched to another plugin"
2285
  msgstr ""
2286
 
2287
+ #: admin/views/feedback-disable.php:19
2288
  msgid "other reason"
2289
  msgstr ""
2290
 
2291
+ #: admin/views/feedback-disable.php:20
2292
+ msgid "Please specify"
2293
  msgstr ""
2294
 
2295
+ #: admin/views/feedback-disable.php:25
2296
  msgid "Submit & Deactivate"
2297
  msgstr ""
2298
 
2299
+ #: admin/views/feedback-disable.php:26
2300
  msgid "Only Deactivate"
2301
  msgstr ""
2302
 
2303
+ #: admin/views/feedback-disable.php:27
2304
  msgid "don’t deactivate"
2305
  msgstr ""
2306
 
2380
  msgid "Item"
2381
  msgstr ""
2382
 
2383
+ #: admin/views/placements.php:94
2384
+ msgid "position"
2385
+ msgstr ""
2386
+
2387
  #: admin/views/placements.php:98
2388
  msgid "Important Notice"
2389
  msgstr ""
2395
  "provider to enable <em>mbstring</em>."
2396
  msgstr ""
2397
 
2398
+ #: admin/views/placements.php:119
2399
+ msgid "ad label"
2400
+ msgstr ""
2401
+
2402
  #: admin/views/placements.php:128
2403
  msgid "show all options"
2404
  msgstr ""
2480
  msgid "Your license expired."
2481
  msgstr ""
2482
 
2483
+ #: admin/views/setting-license.php:15
2484
  #, php-format
2485
+ msgid ""
2486
+ "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
2487
+ "target=\"_blank\">renew your license with a discount</a>."
2488
  msgstr ""
2489
 
2490
+ #: admin/views/setting-license.php:27
2491
  #, php-format
2492
  msgid "(%d days left)"
2493
  msgstr ""
2494
 
2495
+ #: admin/views/setting-license.php:31
2496
  msgid "License key"
2497
  msgstr ""
2498
 
2499
+ #: admin/views/setting-license.php:41
2500
+ msgid "Deactivate License"
2501
+ msgstr ""
2502
+
2503
+ #: admin/views/setting-license.php:47
2504
+ msgid "Update License"
2505
+ msgstr ""
2506
+
2507
+ #: admin/views/setting-license.php:47
2508
+ msgid "Activate License"
2509
+ msgstr ""
2510
+
2511
+ #: admin/views/setting-license.php:51
2512
  msgid "License key invalid"
2513
  msgstr ""
2514
 
2515
+ #: admin/views/setting-license.php:54
2516
  msgid "active"
2517
  msgstr ""
2518
 
2563
  msgid "Import &amp; Export"
2564
  msgstr ""
2565
 
2566
+ #: admin/views/settings.php:50
2567
  msgid "Advanced Ads on WordPress.org"
2568
  msgstr ""
2569
 
2570
+ #: admin/views/settings.php:50
2571
  msgid "Advanced Ads on wp.org"
2572
  msgstr ""
2573
 
2574
+ #: admin/views/settings.php:51
2575
  msgid "the company behind Advanced Ads"
2576
  msgstr ""
2577
 
2671
  msgid " at "
2672
  msgstr ""
2673
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2674
  #: public/views/ad-debug.php:18
2675
  msgid "Ad debug output"
2676
  msgstr ""
2829
  msgid "Use ads from your Google AdSense account"
2830
  msgstr ""
2831
 
2832
+ #: modules/gadsense/includes/class-ad-type-adsense.php:108
2833
  msgid "Your AdSense Publisher ID is missing."
2834
  msgstr ""
2835
 
2841
  msgid "Please enter XML content"
2842
  msgstr ""
2843
 
2844
+ #: modules/import-export/classes/import.php:145
2845
+ #: modules/import-export/classes/import.php:561
2846
  #, php-format
2847
  msgid "New attachment created <em>%s</em> %s"
2848
  msgstr ""
2849
 
2850
+ #: modules/import-export/classes/import.php:177
2851
  #, php-format
2852
  msgid "Failed to import <em>%s</em>"
2853
  msgstr ""
2854
 
2855
+ #: modules/import-export/classes/import.php:185
2856
  #, php-format
2857
  msgid "New ad created: <em>%s</em> %s"
2858
  msgstr ""
2859
 
2860
+ #: modules/import-export/classes/import.php:228
2861
  #, php-format
2862
  msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2863
  msgstr ""
2864
 
2865
+ #: modules/import-export/classes/import.php:290
2866
  #, php-format
2867
  msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2868
  msgstr ""
2869
 
2870
+ #: modules/import-export/classes/import.php:292
2871
  #, php-format
2872
  msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2873
  msgstr ""
2874
 
2875
+ #: modules/import-export/classes/import.php:357
2876
  #, php-format
2877
  msgid "Placement <em>%s</em> created"
2878
  msgstr ""
2879
 
2880
+ #: modules/import-export/classes/import.php:472
2881
  #, php-format
2882
  msgid "Option was updated: <em>%s</em>"
2883
  msgstr ""
2884
 
2885
+ #: modules/import-export/classes/import.php:475
2886
  #, php-format
2887
  msgid "Option already exists: <em>%s</em>"
2888
  msgstr ""
2889
 
2890
+ #: modules/import-export/classes/import.php:497
2891
  #, php-format
2892
  msgid "Failed to create import directory <em>%s</em>"
2893
  msgstr ""
2894
 
2895
+ #: modules/import-export/classes/import.php:502
2896
  #, php-format
2897
  msgid "Import directory is not writable: <em>%s</em>"
2898
  msgstr ""
2899
 
2900
+ #: modules/import-export/classes/import.php:510
2901
  msgid ""
2902
  "File is empty, uploads are disabled or post_max_size is smaller than "
2903
  "upload_max_filesize in php.ini"
2904
  msgstr ""
2905
 
2906
+ #: modules/import-export/classes/import.php:520
2907
  #, php-format
2908
  msgid "Failed to upload file, error: <em>%s</em>"
2909
  msgstr ""
2910
 
2911
+ #: modules/import-export/classes/import.php:525
2912
  msgid "File is empty."
2913
  msgstr ""
2914
 
2915
+ #: modules/import-export/classes/import.php:530
2916
  #, php-format
2917
  msgid ""
2918
  "The file could not be created: <em>%s</em>. This is probably a permissions "
2919
  "problem"
2920
  msgstr ""
2921
 
2922
+ #: modules/import-export/classes/import.php:603
2923
  #, php-format
2924
  msgid "Invalid filetype <em>%s</em>"
2925
  msgstr ""
2926
 
2927
+ #: modules/import-export/classes/import.php:608
2928
+ #: modules/import-export/classes/import.php:615
2929
+ #: modules/import-export/classes/import.php:623
2930
+ #: modules/import-export/classes/import.php:638
2931
  #, php-format
2932
  msgid "Error getting remote image <em>%s</em>"
2933
  msgstr ""
2934
 
2935
+ #: modules/import-export/classes/import.php:632
2936
  #, php-format
2937
  msgid "Zero size file downloaded <em>%s</em>"
2938
  msgstr ""
2975
  "to save to your computer."
2976
  msgstr ""
2977
 
2978
+ #: modules/import-export/views/page.php:28
2979
+ msgid "Download Export File"
2980
+ msgstr ""
2981
+
2982
  #: modules/import-export/views/page.php:33
2983
  msgid "Import"
2984
  msgstr ""
2991
  msgid "Copy an XML content"
2992
  msgstr ""
2993
 
2994
+ #: modules/import-export/views/page.php:52
2995
+ msgid ""
2996
+ "Before you can upload your import file, you will need to fix the following "
2997
+ "error:"
2998
+ msgstr ""
2999
+
3000
+ #: modules/import-export/views/page.php:57
3001
+ #, php-format
3002
+ msgid "Maximum size: %s"
3003
+ msgstr ""
3004
+
3005
  #: modules/import-export/views/page.php:66
3006
  msgid "Start import"
3007
  msgstr ""
3097
  msgid "Link ads (Responsive)"
3098
  msgstr ""
3099
 
3100
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:63
3101
+ msgid "InArticle"
3102
+ msgstr ""
3103
+
3104
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:64
3105
+ msgid "InFeed"
3106
+ msgstr ""
3107
+
3108
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:70
3109
  #, php-format
3110
  msgid ""
3111
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
3113
  "vertical, or rectangle formats."
3114
  msgstr ""
3115
 
3116
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:73
3117
  msgid "Resizing"
3118
  msgstr ""
3119
 
3120
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:81
3121
+ msgid "Tutorial: How to place ads between posts?"
3122
+ msgstr ""
3123
+
3124
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:82
3125
+ msgid "Layout"
3126
+ msgstr ""
3127
+
3128
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:86
3129
+ msgid "Layout-Key"
3130
+ msgstr ""
3131
+
3132
  #. Name of the plugin
3133
  msgid "Advanced Ads"
3134
  msgstr ""
modules/gadsense/admin/assets/js/new-ad.js CHANGED
@@ -61,18 +61,20 @@
61
  if (undefined !== theAd.slotId && '' != theAd.pubId) {
62
  theAd.display = adByGoogle.css( 'display' );
63
  theAd.format = adByGoogle.attr( 'data-ad-format' );
 
 
64
  theAd.style = adByGoogle.attr( 'style' );
65
 
 
66
  if ('undefined' == typeof(theAd.format) && -1 != theAd.style.indexOf( 'width' )) {
67
- /* normal ad */
68
  theAd.type = 'normal';
69
  theAd.width = adByGoogle.css( 'width' ).replace( 'px', '' );
70
  theAd.height = adByGoogle.css( 'height' ).replace( 'px', '' );
71
  return theAd;
72
  }
73
 
 
74
  if ('undefined' != typeof(theAd.format) && 'auto' == theAd.format) {
75
- /* Responsive ad, auto resize */
76
  theAd.type = 'responsive';
77
  return theAd;
78
  }
@@ -93,11 +95,24 @@
93
  return theAd;
94
  }
95
 
 
96
  if ('undefined' != typeof(theAd.format) && 'autorelaxed' == theAd.format) {
97
- /* Responsive Matched Content */
98
  theAd.type = 'matched-content';
99
  return theAd;
100
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  }
102
  return false;
103
  }
@@ -136,6 +151,18 @@
136
  $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[width]"]' ).val( '' );
137
  $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[height]"]' ).val( '' );
138
  }
 
 
 
 
 
 
 
 
 
 
 
 
139
  var storedPubId = gadsenseData.pubId;
140
  if ('' !== storedPubId && theAd.pubId != storedPubId) {
141
  $( '#adsense-ad-param-error' ).text( gadsenseData.msg.pubIdMismatch );
@@ -162,6 +189,10 @@
162
  if (0 == resize) { resize = 'auto'; }
163
  adContent.resize = resize;
164
  }
 
 
 
 
165
  if ('undefined' != typeof(adContent.resize) && 'auto' != adContent.resize) {
166
  $( document ).trigger( 'gadsenseFormatAdResponsive', [adContent] );
167
  }
@@ -174,15 +205,33 @@
174
 
175
  function advads_update_adsense_type(){
176
  var type = $( '#unit-type' ).val();
 
 
 
 
 
177
  if ( 'responsive' == type || 'link-responsive' == type || 'matched-content' == type ) {
178
  $( '#advanced-ads-ad-parameters-size' ).css( 'display', 'none' );
179
  $( '#advanced-ads-ad-parameters-size' ).prev('.label').css( 'display', 'none' );
180
  $( '#advanced-ads-ad-parameters-size' ).next('.hr').css( 'display', 'none' );
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  } else if ( 'normal' == type || 'link' == type ) {
182
  $( '#advanced-ads-ad-parameters-size' ).css( 'display', 'block' );
183
  $( '#advanced-ads-ad-parameters-size' ).prev('.label').css( 'display', 'block' );
184
  $( '#advanced-ads-ad-parameters-size' ).next('.hr').css( 'display', 'block' );
185
- }
186
  $( document ).trigger( 'gadsenseUnitChanged' );
187
  window.gadsenseFormatAdContent();
188
 
61
  if (undefined !== theAd.slotId && '' != theAd.pubId) {
62
  theAd.display = adByGoogle.css( 'display' );
63
  theAd.format = adByGoogle.attr( 'data-ad-format' );
64
+ theAd.layout = adByGoogle.attr( 'data-ad-layout' ); // for InFeed and InArticle
65
+ theAd.layout_key = adByGoogle.attr( 'data-ad-layout-key' ); // for InFeed
66
  theAd.style = adByGoogle.attr( 'style' );
67
 
68
+ /* normal ad */
69
  if ('undefined' == typeof(theAd.format) && -1 != theAd.style.indexOf( 'width' )) {
 
70
  theAd.type = 'normal';
71
  theAd.width = adByGoogle.css( 'width' ).replace( 'px', '' );
72
  theAd.height = adByGoogle.css( 'height' ).replace( 'px', '' );
73
  return theAd;
74
  }
75
 
76
+ /* Responsive ad, auto resize */
77
  if ('undefined' != typeof(theAd.format) && 'auto' == theAd.format) {
 
78
  theAd.type = 'responsive';
79
  return theAd;
80
  }
95
  return theAd;
96
  }
97
 
98
+ /* Responsive Matched Content */
99
  if ('undefined' != typeof(theAd.format) && 'autorelaxed' == theAd.format) {
 
100
  theAd.type = 'matched-content';
101
  return theAd;
102
  }
103
+
104
+ /* InArticle & InFeed ads */
105
+ if ('undefined' != typeof(theAd.format) && 'fluid' == theAd.format) {
106
+
107
+ // InFeed
108
+ if('undefined' != typeof(theAd.layout) && 'in-article' == theAd.layout){
109
+ theAd.type = 'in-article';
110
+ } else {
111
+ // InArticle
112
+ theAd.type = 'in-feed';
113
+ }
114
+ return theAd;
115
+ }
116
  }
117
  return false;
118
  }
151
  $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[width]"]' ).val( '' );
152
  $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[height]"]' ).val( '' );
153
  }
154
+ if ('in-article' == theAd.type) {
155
+ $( '#unit-type' ).val( 'in-article' );
156
+ $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[width]"]' ).val( '' );
157
+ $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[height]"]' ).val( '' );
158
+ }
159
+ if ('in-feed' == theAd.type) {
160
+ $( '#unit-type' ).val( 'in-feed' );
161
+ $( '#ad-layout' ).val( theAd.layout );
162
+ $( '#ad-layout-key' ).val( theAd.layout_key );
163
+ $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[width]"]' ).val( '' );
164
+ $( '#advanced-ads-ad-parameters-size input[name="advanced_ad[height]"]' ).val( '' );
165
+ }
166
  var storedPubId = gadsenseData.pubId;
167
  if ('' !== storedPubId && theAd.pubId != storedPubId) {
168
  $( '#adsense-ad-param-error' ).text( gadsenseData.msg.pubIdMismatch );
189
  if (0 == resize) { resize = 'auto'; }
190
  adContent.resize = resize;
191
  }
192
+ if ('in-feed' == unitType) {
193
+ adContent.layout = $( '#ad-parameters-box #ad-layout' ).val();
194
+ adContent.layout_key = $( '#ad-parameters-box #ad-layout-key' ).val();
195
+ }
196
  if ('undefined' != typeof(adContent.resize) && 'auto' != adContent.resize) {
197
  $( document ).trigger( 'gadsenseFormatAdResponsive', [adContent] );
198
  }
205
 
206
  function advads_update_adsense_type(){
207
  var type = $( '#unit-type' ).val();
208
+ $( '.advads-adsense-layout' ).hide();
209
+ $( '.advads-adsense-layout' ).next('div').hide();
210
+ $( '.advads-adsense-layout-key' ).hide();
211
+ $( '.advads-adsense-layout-key' ).next('div').hide();
212
+ $( '#advads-adsense-infeed-tutorial' ).hide();
213
  if ( 'responsive' == type || 'link-responsive' == type || 'matched-content' == type ) {
214
  $( '#advanced-ads-ad-parameters-size' ).css( 'display', 'none' );
215
  $( '#advanced-ads-ad-parameters-size' ).prev('.label').css( 'display', 'none' );
216
  $( '#advanced-ads-ad-parameters-size' ).next('.hr').css( 'display', 'none' );
217
+ } else if ( 'in-feed' == type ) {
218
+ $( '.advads-adsense-layout' ).css( 'display', 'block' );
219
+ $( '.advads-adsense-layout' ).next('div').css( 'display', 'block' );
220
+ $( '.advads-adsense-layout-key' ).css( 'display', 'block' );
221
+ $( '.advads-adsense-layout-key' ).next('div').css( 'display', 'block' );
222
+ $( '#advanced-ads-ad-parameters-size' ).css( 'display', 'none' );
223
+ $( '#advanced-ads-ad-parameters-size' ).prev('.label').css( 'display', 'none' );
224
+ $( '#advanced-ads-ad-parameters-size' ).next('.hr').css( 'display', 'none' );
225
+ $( '#advads-adsense-infeed-tutorial' ).show();
226
+ } else if ( 'in-article' == type ) {
227
+ $( '#advanced-ads-ad-parameters-size' ).css( 'display', 'none' );
228
+ $( '#advanced-ads-ad-parameters-size' ).prev('.label').css( 'display', 'none' );
229
+ $( '#advanced-ads-ad-parameters-size' ).next('.hr').css( 'display', 'none' );
230
  } else if ( 'normal' == type || 'link' == type ) {
231
  $( '#advanced-ads-ad-parameters-size' ).css( 'display', 'block' );
232
  $( '#advanced-ads-ad-parameters-size' ).prev('.label').css( 'display', 'block' );
233
  $( '#advanced-ads-ad-parameters-size' ).next('.hr').css( 'display', 'block' );
234
+ }
235
  $( document ).trigger( 'gadsenseUnitChanged' );
236
  window.gadsenseFormatAdContent();
237
 
modules/gadsense/admin/views/adsense-ad-parameters.php CHANGED
@@ -60,6 +60,8 @@ if( $pub_id_errors ) : ?>
60
  <option value="matched-content" <?php selected( $unit_type, 'matched-content' ); ?>><?php _e( 'Responsive (Matched Content)', 'advanced-ads' ); ?></option>
61
  <option value="link" <?php selected( $unit_type, 'link' ); ?>><?php _e( 'Link ads', 'advanced-ads' ); ?></option>
62
  <option value="link-responsive" <?php selected( $unit_type, 'link-responsive' ); ?>><?php _e( 'Link ads (Responsive)', 'advanced-ads' ); ?></option>
 
 
63
  </select>
64
  <a href="<?php echo ADVADS_URL . 'manual/adsense-ads/#adsense-ad-types'; ?>" target="_blank"><?php _e( 'manual', 'advanced-ads' ); ?></a>
65
  </div>
@@ -76,5 +78,14 @@ if( $pub_id_errors ) : ?>
76
  <?php endforeach; ?>
77
  </select>
78
  </div>
 
 
 
 
 
 
 
 
 
79
  <hr/>
80
  <?php do_action( 'advanced-ads-gadsense-extra-ad-param', $extra_params, $content );
60
  <option value="matched-content" <?php selected( $unit_type, 'matched-content' ); ?>><?php _e( 'Responsive (Matched Content)', 'advanced-ads' ); ?></option>
61
  <option value="link" <?php selected( $unit_type, 'link' ); ?>><?php _e( 'Link ads', 'advanced-ads' ); ?></option>
62
  <option value="link-responsive" <?php selected( $unit_type, 'link-responsive' ); ?>><?php _e( 'Link ads (Responsive)', 'advanced-ads' ); ?></option>
63
+ <option value="in-article" <?php selected( $unit_type, 'in-article' ); ?>><?php _e( 'InArticle', 'advanced-ads' ); ?></option>
64
+ <option value="in-feed" <?php selected( $unit_type, 'in-feed' ); ?>><?php _e( 'InFeed', 'advanced-ads' ); ?></option>
65
  </select>
66
  <a href="<?php echo ADVADS_URL . 'manual/adsense-ads/#adsense-ad-types'; ?>" target="_blank"><?php _e( 'manual', 'advanced-ads' ); ?></a>
67
  </div>
78
  <?php endforeach; ?>
79
  </select>
80
  </div>
81
+ <p id="advads-adsense-infeed-tutorial" <?php if ( 'in-feed' !== $unit_type ) { echo 'style="display: none;"'; } ?>><a href="<?php echo ADVADS_URL . 'insert-ads-between-posts-wordpress/#utm_source=advanced-ads&utm_medium=link&utm_campaign=adsense-between-posts'; ?>" target="_blank"><?php _e( 'Tutorial: How to place ads between posts?', 'advanced-ads' ); ?></a></p>
82
+ <label class="label advads-adsense-layout" <?php if ( 'in-feed' !== $unit_type ) { echo 'style="display: none;"'; } ?> id="advads-adsense-layout"><?php _e( 'Layout', 'advanced-ads' ); ?></label>
83
+ <div <?php if ( 'in-feed' !== $unit_type ) { echo 'style="display: none;"'; } ?>>
84
+ <input name="ad-layout" id="ad-layout" value="<?php echo isset( $layout ) ? $layout : ''; ?>"/>
85
+ </div>
86
+ <label class="label advads-adsense-layout-key" <?php if ( 'in-feed' !== $unit_type ) { echo 'style="display: none;"'; } ?> id="advads-adsense-layout-key"><?php _e( 'Layout-Key', 'advanced-ads' ); ?></label>
87
+ <div <?php if ( 'in-feed' !== $unit_type ) { echo 'style="display: none;"'; } ?>>
88
+ <input name="ad-layout-key" id="ad-layout-key" value="<?php echo isset( $layout_key ) ? $layout_key : ''; ?>"/>
89
+ </div>
90
  <hr/>
91
  <?php do_action( 'advanced-ads-gadsense-extra-ad-param', $extra_params, $content );
modules/gadsense/includes/class-ad-type-adsense.php CHANGED
@@ -84,6 +84,8 @@ class Advanced_Ads_Ad_Type_Adsense extends Advanced_Ads_Ad_Type_Abstract {
84
  $content->json = $json_content;
85
  $unit_type = $content->unitType;
86
  $unit_code = $content->slotId;
 
 
87
 
88
  if ( 'responsive' != $content->unitType && 'link-responsive' != $content->unitType && 'matched-content' != $content->unitType ) {
89
  // Normal ad unit
@@ -180,7 +182,8 @@ class Advanced_Ads_Ad_Type_Adsense extends Advanced_Ads_Ad_Type_Abstract {
180
 
181
  $output = '';
182
 
183
- if ( 'responsive' != $content->unitType && 'link-responsive' != $content->unitType && 'matched-content' != $content->unitType ) {
 
184
  $output .= '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>' . "\n";
185
  $output .= '<ins class="adsbygoogle" ';
186
  $output .= 'style="display:inline-block;width:' . $ad->width . 'px;height:' . $ad->height . 'px;" ' . "\n";
@@ -220,6 +223,7 @@ class Advanced_Ads_Ad_Type_Adsense extends Advanced_Ads_Ad_Type_Abstract {
220
 
221
  protected function append_defaut_responsive_content(&$output, $pub_id, $content) {
222
  $format = '';
 
223
  switch( $content->unitType ){
224
  case 'matched-content' :
225
  $format = 'autorelaxed';
@@ -227,15 +231,30 @@ class Advanced_Ads_Ad_Type_Adsense extends Advanced_Ads_Ad_Type_Abstract {
227
  case 'link-responsive' :
228
  $format = 'link';
229
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  default :
231
  $format = 'auto';
232
  }
233
 
234
  $output .= '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>' . "\n";
235
  $output .= '<ins class="adsbygoogle" ';
236
- $output .= 'style="display:block;" ';
237
  $output .= 'data-ad-client="ca-' . $pub_id . '" ' . "\n";
238
  $output .= 'data-ad-slot="' . $content->slotId . '" ' . "\n";
 
 
239
  $output .= 'data-ad-format="';
240
  $output .= $format;
241
  $output .= '"></ins>' . "\n";
84
  $content->json = $json_content;
85
  $unit_type = $content->unitType;
86
  $unit_code = $content->slotId;
87
+ $layout = isset( $content->layout ) ? $content->layout : '';
88
+ $layout_key = isset( $content->layout_key ) ? $content->layout_key : '';
89
 
90
  if ( 'responsive' != $content->unitType && 'link-responsive' != $content->unitType && 'matched-content' != $content->unitType ) {
91
  // Normal ad unit
182
 
183
  $output = '';
184
 
185
+ // build static normal content ads first
186
+ if ( ! in_array( $content->unitType, array( 'responsive', 'link-responsive', 'matched-content', 'in-article', 'in-feed' ) ) ) {
187
  $output .= '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>' . "\n";
188
  $output .= '<ins class="adsbygoogle" ';
189
  $output .= 'style="display:inline-block;width:' . $ad->width . 'px;height:' . $ad->height . 'px;" ' . "\n";
223
 
224
  protected function append_defaut_responsive_content(&$output, $pub_id, $content) {
225
  $format = '';
226
+ $style = 'display:block;';
227
  switch( $content->unitType ){
228
  case 'matched-content' :
229
  $format = 'autorelaxed';
231
  case 'link-responsive' :
232
  $format = 'link';
233
  break;
234
+ case 'in-feed' :
235
+ $format = 'fluid';
236
+ $layout = $content->layout;
237
+ $layout_key = $content->layout_key;
238
+ break;
239
+ case 'in-article' :
240
+ $format = 'fluid';
241
+ $layout = 'in-article';
242
+ $style = 'display:block; text-align:center;';
243
+ break;
244
+ case 'link-responsive' :
245
+ $format = 'link';
246
+ break;
247
  default :
248
  $format = 'auto';
249
  }
250
 
251
  $output .= '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>' . "\n";
252
  $output .= '<ins class="adsbygoogle" ';
253
+ $output .= 'style="'. $style .'" ';
254
  $output .= 'data-ad-client="ca-' . $pub_id . '" ' . "\n";
255
  $output .= 'data-ad-slot="' . $content->slotId . '" ' . "\n";
256
+ $output .= isset( $layout ) ? 'data-ad-layout="' . $layout . '"' . "\n" : '';
257
+ $output .= isset( $layout_key ) ? 'data-ad-layout-key="' . $layout_key . '"' . "\n" : '';
258
  $output .= 'data-ad-format="';
259
  $output .= $format;
260
  $output .= '"></ins>' . "\n";
modules/import-export/classes/import.php CHANGED
@@ -69,7 +69,8 @@ class Advanced_Ads_Import {
69
  break;
70
  case 'xml_file':
71
  if ( $this->handle_upload() ) {
72
- $this->import( file_get_contents( $this->import_id ) );
 
73
  @unlink( $this->import_id );
74
  }
75
  break;
69
  break;
70
  case 'xml_file':
71
  if ( $this->handle_upload() ) {
72
+ $content = file_get_contents( $this->import_id );
73
+ $this->import( $content );
74
  @unlink( $this->import_id );
75
  }
76
  break;
modules/import-export/views/page.php CHANGED
@@ -25,7 +25,7 @@ class_exists( 'Advanced_Ads', false ) || exit();
25
  <p><label><input type="checkbox" name="content[]" value="placements" checked="checked" /> <?php _e( 'Placements', 'advanced-ads' ); ?></label></p>
26
  <p><label><input type="checkbox" name="content[]" value="options" checked="checked" /> <?php _e( 'Options', 'advanced-ads' ); ?></label></p>
27
  </fieldset>
28
- <?php submit_button( __( 'Download Export File' ) ); ?>
29
  </form>
30
 
31
 
@@ -49,12 +49,12 @@ class_exists( 'Advanced_Ads', false ) || exit();
49
  <?php
50
  if ( ! empty( $upload_dir['error'] ) ) : ?>
51
  <p class="advads-error-message">
52
- <?php _e( 'Before you can upload your import file, you will need to fix the following error:' ); ?>
53
  <strong><?php echo $upload_dir['error']; ?>guu</strong>
54
  </p>
55
  <?php else: ?>
56
  <p>
57
- <input type="file" id="upload" name="import" size="25" /> (<?php printf( __( 'Maximum size: %s' ), $size ); ?>)
58
  <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
59
  </p>
60
  <?php endif; ?>
25
  <p><label><input type="checkbox" name="content[]" value="placements" checked="checked" /> <?php _e( 'Placements', 'advanced-ads' ); ?></label></p>
26
  <p><label><input type="checkbox" name="content[]" value="options" checked="checked" /> <?php _e( 'Options', 'advanced-ads' ); ?></label></p>
27
  </fieldset>
28
+ <?php submit_button( __( 'Download Export File', 'advanced-ads' ) ); ?>
29
  </form>
30
 
31
 
49
  <?php
50
  if ( ! empty( $upload_dir['error'] ) ) : ?>
51
  <p class="advads-error-message">
52
+ <?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'advanced-ads' ); ?>
53
  <strong><?php echo $upload_dir['error']; ?>guu</strong>
54
  </p>
55
  <?php else: ?>
56
  <p>
57
+ <input type="file" id="upload" name="import" size="25" /> (<?php printf( __( 'Maximum size: %s', 'advanced-ads' ), $size ); ?>)
58
  <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
59
  </p>
60
  <?php endif; ?>
modules/marketpress-license/admin.php DELETED
@@ -1,78 +0,0 @@
1
- <?php
2
-
3
- /**
4
- * Module Name: MarketPress License
5
- * Description: Advanced Ads - License Management by MarketPress GmbH - admin.php
6
- * Author: MarketPress
7
- * Version: 1.0
8
- * License: GPLv3
9
- * Author URI: https://marketpress.com
10
- */
11
-
12
- if ( ! defined( 'ABSPATH' ) ) {
13
- exit; // Exit if accessed directly
14
- }
15
-
16
- if ( class_exists( 'Advanced_Ads', false ) ) {
17
-
18
- add_action( 'admin_init', 'marketpress_advanced_ads_license_settings_field', 20 );
19
-
20
- /**
21
- * Add settings section
22
- *
23
- * @wp-hook admin_init
24
- * @return void
25
- */
26
- function marketpress_advanced_ads_license_settings_field() {
27
-
28
- $add_ons = apply_filters( 'advanced-ads-add-ons', array() );
29
-
30
- if ( count( $add_ons ) >= 1 ) {
31
-
32
- register_setting( 'marketpress-advanced-ads', 'marketpress-advanced-ads' );
33
- register_setting( 'marketpress-advanced-ads-license', 'marketpress-advanced-ads-license' );
34
-
35
- add_settings_field(
36
- 'marketpress-license', __( 'MarketPress Bundle License', 'advanced-ads' ), 'render_settings_marketpress_license_callback', 'advanced-ads-settings-license-page', 'advanced_ads_settings_license_section'
37
- );
38
-
39
- }
40
-
41
- }
42
-
43
- /**
44
- * Render MarketPress License settings field
45
- *
46
- * @add_settings_field
47
- * @return void
48
- */
49
- function render_settings_marketpress_license_callback() {
50
-
51
- ?><style>
52
- div#licenses table tr:first-of-type td span.advads-license-activate-error a { display: none; }
53
- </style>
54
- <?php
55
- $licenses = get_option( ADVADS_SLUG . '-licenses', array() );
56
- $license_key = isset( $licenses[ 'marketpress-advanced-ads' ] ) ? $licenses[ 'marketpress-advanced-ads' ] : '';
57
- $license_status = get_option( 'marketpress-advanced-ads-license-status', false );
58
-
59
- $index = 'marketpress-advanced-ads';
60
- $plugin_name = 'MarketPress Advanced Ads';
61
- $options_slug = 'marketpress-advanced-ads';
62
- $plugin_url = 'https://marketpress.com/shop/plugins/advanced-ads';
63
-
64
- // template in main plugin
65
- include ADVADS_BASE_PATH . 'admin/views/setting-license.php';
66
-
67
- ?><p class="description"><?php echo __( 'Enter your key here, if you have purchased the bundle through MarketPress.', 'advanced-ads' ); ?></p><?php
68
- if( $license_key === '' ) :
69
- ?></td>
70
- <p class="description"><?php echo __( 'Enter your key here, if you have purchased the bundle through MarketPress.', 'advanced-ads' ); ?></p>
71
- <td>
72
- <a class="advads-licenses-marketpress-show" href="javascript:void(0)"><?php echo __( 'Click here if you purchased a Bundle key through <strong>MarketPress</strong>.', 'advanced-ads' ); ?></a>
73
- <script>jQuery('.advads-licenses-marketpress-show').parents('td').prev('td').hide().prev('th').css('text-indent', '-9999px'); jQuery('.advads-licenses-marketpress-show').click(function(){ jQuery(this).parents('td').hide().prev('td').show().prev('th').css('text-indent', '0').show(); });</script>
74
- <?php endif;
75
-
76
- }
77
-
78
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/marketpress-license/config.php DELETED
@@ -1,19 +0,0 @@
1
- <?php
2
- /**
3
- * Module Name: MarketPress License
4
- * Description: Advanced Ads - License Management by MarketPress GmbH - config.php
5
- * Author: MarketPress
6
- * Version: 1.0
7
- * License: GPLv3
8
- * Author URI: https://marketpress.com
9
- */
10
-
11
- if ( ! defined( 'ABSPATH' ) ) {
12
- exit; // Exit if accessed directly
13
- }
14
-
15
- // module configuration
16
-
17
- return array(
18
- 'textdomain' => 'marketpress-license',
19
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/marketpress-license/main.php DELETED
@@ -1,176 +0,0 @@
1
- <?php
2
- /**
3
- * Module Name: MarketPress License
4
- * Description: Advanced Ads - License Management by MarketPress GmbH - main.php
5
- * Author: MarketPress
6
- * Version: 1.0
7
- * License: GPLv3
8
- * Author URI: https://marketpress.com
9
- */
10
-
11
- if ( ! defined( 'ABSPATH' ) ) {
12
- exit; // Exit if accessed directly
13
- }
14
-
15
- if ( class_exists( 'Advanced_Ads', false ) ) {
16
-
17
- add_action( 'init', 'marketpress_advanced_ads_init' );
18
-
19
- /**
20
- * Init module
21
- *
22
- * @wp-hook init
23
- * @return void
24
- */
25
- function marketpress_advanced_ads_init() {
26
-
27
- // Actions and Filters
28
-
29
- // Activate, deactivate MarketPress Bundle License
30
- add_filter( 'advanced_ads_license_marketpress-advanced-ads', 'marketpress_advanced_license_manager', 10, 5 );
31
-
32
- }
33
-
34
- /**
35
- * License Management for MarketPress bundle
36
- *
37
- * @wp-hook advanced_ads_license_marketpress-advanced-ads
38
- *
39
- * @param Mixed $return_value
40
- * @param String $method_name
41
- * @param String $plugin_name
42
- * @param String $options_slug
43
- * @param String $license_key
44
- *
45
- * @return Mixed
46
- */
47
- function marketpress_advanced_license_manager ( $return_value, $method_name, $plugin_name, $options_slug, $license_key ) {
48
-
49
- // Remove class from method name
50
- $method_name = str_replace( 'Advanced_Ads_Admin_Licenses::', '', $method_name );
51
-
52
- switch ( $method_name ) {
53
-
54
- case 'activate_license':
55
-
56
- // Licence Management by MarketPress for
57
-
58
- $url_key_check = 'http://marketpress.com/mp-key/' . $license_key . '/advanced-ads/' . sanitize_title_with_dashes( network_site_url() );
59
- $remote = wp_remote_get( $url_key_check);
60
- $response = json_decode( wp_remote_retrieve_body( $remote ) );
61
-
62
- // If the remote is not reachable or any other errors occured
63
- // Same check as Advanced Ads does
64
- if ( is_wp_error( $remote ) ) {
65
- return __( 'License couldn’t be activated. Please try again later.', 'advanced-ads' );
66
- }
67
-
68
- // Status is true
69
- if ( $response->status == 'true' ) {
70
-
71
- // New request to get expires date
72
- $url_version_check = 'http://marketpress.com/mp-version/' . $license_key . '/advanced-ads/' . sanitize_title_with_dashes( network_site_url() );
73
-
74
- $remote_version = wp_remote_get( $url_version_check );
75
-
76
- if ( is_wp_error( $remote_version ) ) {
77
- return __( 'License couldn’t be activated. Please try again later.', 'advanced-ads' );
78
- }
79
-
80
- // Resonse status is always true, because it was before true
81
- $response_version = json_decode( wp_remote_retrieve_body( $remote_version ) );
82
-
83
- // Expires date
84
- $expires_date = $response_version->access_expires;
85
-
86
- // Update options
87
- update_option( 'marketpress-advanced-ads-license-status', 'valid', false );
88
- update_option( 'marketpress-advanced-ads-license-expires', $expires_date , false );
89
-
90
- // Get licenses
91
- if ( is_multisite() ) {
92
- global $current_site;
93
- $licenses = get_blog_option( $current_site->blog_id, ADVADS_SLUG . '-licenses', array() );
94
-
95
- } else {
96
- $licenses = get_option( ADVADS_SLUG . '-licenses', array() );
97
- }
98
-
99
- // Save license
100
- $licenses[ 'marketpress-advanced-ads' ] = $license_key;
101
-
102
- // Now activate every module!
103
- $add_ons = apply_filters( 'advanced-ads-add-ons', array() );
104
-
105
- foreach ( $add_ons as $key => $add_on ) {
106
-
107
- update_option( $add_on[ 'options_slug' ] . '-license-status', 'valid', false );
108
- update_option( $add_on[ 'options_slug' ] . '-license-expires', $expires_date , false );
109
- $licenses[ $key ] = $license_key;
110
- }
111
-
112
- // Save licenses
113
- if ( is_multisite() ) {
114
- update_blog_option( $current_site->blog_id, ADVADS_SLUG . '-licenses', $licenses );
115
- } else {
116
- update_option( ADVADS_SLUG . '-licenses', $licenses );
117
- }
118
-
119
- Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue( 'license_expires' );
120
- Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue( 'license_expired' );
121
- Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue( 'license_invalid' );
122
-
123
- return 1;
124
-
125
- } else {
126
-
127
- update_option( 'marketpress-advanced-ads-license-status', 'invalid', false );
128
-
129
- if ( $response->status == 'urllimit' ) {
130
- return __( 'There are no activations left.', 'advanced-ads' );
131
- } else {
132
- return __( 'This is not the correct key for this add-on.', 'advanced-ads' );
133
- }
134
-
135
- }
136
-
137
- break;
138
-
139
- case 'deactivate_license':
140
-
141
- delete_option( 'marketpress-advanced-ads-license-status' );
142
- delete_option( 'marketpress-advanced-ads-license-expires' );
143
- Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue( 'license_expires' );
144
-
145
- // Get licenses
146
- if ( is_multisite() ) {
147
- global $current_site;
148
- $licenses = get_blog_option( $current_site->blog_id, ADVADS_SLUG . '-licenses', array() );
149
-
150
- } else {
151
- $licenses = get_option( ADVADS_SLUG . '-licenses', array() );
152
- }
153
-
154
- $marketpress_key = $licenses[ 'marketpress-advanced-ads' ];
155
-
156
- // Now deactivate every module!
157
- $add_ons = apply_filters( 'advanced-ads-add-ons', array() );
158
-
159
- foreach ( $add_ons as $key => $add_on ) {
160
-
161
- if ( $licenses[ $key] == $marketpress_key ) {
162
- delete_option( $add_on[ 'options_slug' ] . '-license-status' );
163
- delete_option( $add_on[ 'options_slug' ] . '-license-expires' );
164
- Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue( 'license_expires' );
165
- }
166
-
167
- }
168
-
169
- return 1;
170
- break;
171
-
172
- }
173
-
174
- }
175
-
176
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/assets/js/advanced.js CHANGED
@@ -1 +1 @@
1
- advads={supports_localstorage:function(){"use strict";try{return!(!window||void 0===window.localStorage)&&(window.localStorage.setItem("x","x"),window.localStorage.removeItem("x"),!0)}catch(a){return!1}},max_per_session:function(a,b){var c=1;if(void 0!==b&&0!==parseInt(b)||(b=1),this.cookie_exists(a)){if(this.get_cookie(a)>=b)return!0;c+=parseInt(this.get_cookie(a))}return this.set_cookie(a,c),!1},count_up:function(a,b){var c=1;this.cookie_exists(a)&&(c+=parseInt(this.get_cookie(a))),this.set_cookie(a,c)},set_cookie_exists:function(a){return!!get_cookie(a)||(set_cookie(a,"",0),!1)},get_cookie:function(a){var b,c,d,e=document.cookie.split(";");for(b=0;b<e.length;b++)if(c=e[b].substr(0,e[b].indexOf("=")),d=e[b].substr(e[b].indexOf("=")+1),(c=c.replace(/^\s+|\s+$/g,""))===a)return unescape(d)},set_cookie:function(a,b,c,d,e,f){var g=24*c*60*60;this.set_cookie_sec(a,b,g,d,e,f)},set_cookie_sec:function(a,b,c,d,e,f){var g=new Date;g.setSeconds(g.getSeconds()+parseInt(c)),document.cookie=a+"="+escape(b)+(null==c?"":"; expires="+g.toUTCString())+(null==d?"; path=/":"; path="+d)+(null==e?"":"; domain="+e)+(null==f?"":"; secure")},cookie_exists:function(a){var b=this.get_cookie(a);return null!==b&&""!==b&&void 0!==b},move:function(a,b,c){var d=jQuery(a);if(void 0===c&&(c={}),void 0===c.css&&(c.css={}),void 0===c.method&&(c.method="prependTo"),""===b&&void 0!==c.target)switch(c.target){case"wrapper":var e="left";void 0!==c.offset&&(e=c.offset),b=this.find_wrapper(a,e)}switch(void 0===c.moveintohidden&&(b=jQuery(b).filter(":visible")),c.method){case"insertBefore":d.insertBefore(b);break;case"insertAfter":d.insertAfter(b);break;case"appendTo":d.appendTo(b);break;case"prependTo":d.prependTo(b);break;default:d.prependTo(b)}},fix_element:function(a,b){var c=jQuery(a),d=c.parent();"static"!==d.css("position")&&""!==d.css("position")||d.css("position","relative"),void 0!==b&&b.is_invisible&&c.show();var e=parseInt(c.offset().top),f=parseInt(c.offset().left);void 0!==b&&b.is_invisible&&c.hide(),c.css("position","fixed").css("top",e+"px").css("left",f+"px").css("right","")},find_wrapper:function(a,b){var c;return jQuery("body").children().each(function(d,e){if(e.id!==a.substring(1)){var f=jQuery(e);if("right"===b&&f.offset().left+jQuery(f).width()<jQuery(window).width()||"left"===b&&f.offset().left>0)return"static"!==f.css("position")&&""!==f.css("position")||f.css("position","relative"),c=e,!1}}),c},center_fixed_element:function(a){var b=jQuery(a),c=jQuery(window).width()/2-parseInt(b.css("width"))/2;b.css("left",c+"px")},center_vertically:function(a){var b=jQuery(a),c=jQuery(window).height()/2-parseInt(b.css("height"))/2;b.css("top",c+"px")},close:function(a){jQuery(a).remove()}},jQuery(document).ready(function(){if(advads.supports_localstorage()&&localStorage.getItem("advads_frontend_picker")){var a,b=jQuery("<div id='advads-picker-overlay'>"),c=[document.body,document.documentElement,document];b.css({position:"absolute",border:"solid 2px #428bca",backgroundColor:"rgba(66,139,202,0.5)",boxSizing:"border-box",zIndex:1e6,pointerEvents:"none"}).prependTo("body"),jQuery(document).mousemove(function(d){if(d.target!==a){if(~c.indexOf(d.target))return a=null,void b.hide();var e=jQuery(d.target),f=e.offset(),g=e.outerWidth(),h=e.outerHeight();a=d.target,b.css({top:f.top,left:f.left,width:g,height:h}).show(),console.log(jQuery(a).getPath())}}),jQuery(document).click(function(b){var c=jQuery(a).getPath();localStorage.setItem("advads_frontend_element",c),window.location=localStorage.getItem("advads_prev_url")})}}),jQuery.fn.extend({getPath:function(a,b){if(void 0===a&&(a=""),void 0===b&&(b=0),this.is("html"))return"html > "+a;if(3===b)return a;var c=this.get(0).nodeName.toLowerCase(),d=this.attr("id"),e=this.attr("class");return b+=1,void 0===d||/\d/.test(d)?void 0!==e&&(e=e.split(/[\s\n]+/),e=jQuery.grep(e,function(a,b){return!/\d/.test(a)}),e.length&&(c+="."+e.slice(0,2).join("."))):c+="#"+d,this.siblings(c).length&&(c+=":eq("+this.siblings(c).addBack().not("#advads-picker-overlay").index(this)+")"),""===a?this.parent().getPath(c,b):this.parent().getPath(c+" > "+a,b)}});
1
+ advads={supports_localstorage:function(){"use strict";try{if(!window||window.localStorage===undefined){return false}window.localStorage.setItem("x","x");window.localStorage.removeItem("x");return true}catch(e){return false}},max_per_session:function(name,max){var num=1;if(max===undefined||parseInt(max)===0){max=1}if(this.cookie_exists(name)){if(this.get_cookie(name)>=max){return true}num=num+parseInt(this.get_cookie(name))}this.set_cookie(name,num);return false},count_up:function(name,exdays){var num=1;if(this.cookie_exists(name)){num=num+parseInt(this.get_cookie(name))}this.set_cookie(name,num)},set_cookie_exists:function(name){if(get_cookie(name)){return true}set_cookie(name,"",0);return false},get_cookie:function(name){var i,x,y,ADVcookies=document.cookie.split(";");for(i=0;i<ADVcookies.length;i++){x=ADVcookies[i].substr(0,ADVcookies[i].indexOf("="));y=ADVcookies[i].substr(ADVcookies[i].indexOf("=")+1);x=x.replace(/^\s+|\s+$/g,"");if(x===name){return unescape(y)}}},set_cookie:function(name,value,exdays,path,domain,secure){var expiry=exdays*24*60*60;this.set_cookie_sec(name,value,expiry,path,domain,secure)},set_cookie_sec:function(name,value,expiry,path,domain,secure){var exdate=new Date;exdate.setSeconds(exdate.getSeconds()+parseInt(expiry));document.cookie=name+"="+escape(value)+(expiry==null?"":"; expires="+exdate.toUTCString())+(path==null?"; path=/":"; path="+path)+(domain==null?"":"; domain="+domain)+(secure==null?"":"; secure")},cookie_exists:function(name){var c_value=this.get_cookie(name);if(c_value!==null&&c_value!==""&&c_value!==undefined){return true}return false},move:function(element,target,options){var el=jQuery(element);if(typeof options==="undefined"){options={}}if(typeof options.css==="undefined"){options.css={}}if(typeof options.method==="undefined"){options.method="prependTo"}if(target===""&&typeof options.target!=="undefined"){switch(options.target){case"wrapper":var offset="left";if(typeof options.offset!=="undefined"){offset=options.offset}target=this.find_wrapper(element,offset);break}}if(typeof options.moveintohidden==="undefined"){target=jQuery(target).filter(":visible")}switch(options.method){case"insertBefore":el.insertBefore(target);break;case"insertAfter":el.insertAfter(target);break;case"appendTo":el.appendTo(target);break;case"prependTo":el.prependTo(target);break;default:el.prependTo(target)}},set_parent_relative:function(element){var el=jQuery(element);var parent=el.parent();if(parent.css("position")==="static"||parent.css("position")===""){parent.css("position","relative")}},fix_element:function(element,options){this.set_parent_relative(element);var el=jQuery(element);if(typeof options!=="undefined"&&options.is_invisible){el.show()}var topoffset=parseInt(el.offset().top);var leftoffset=parseInt(el.offset().left);if(typeof options!=="undefined"&&options.is_invisible){el.hide()}el.css("position","fixed").css("top",topoffset+"px").css("left",leftoffset+"px").css("right","")},find_wrapper:function(element,offset){var returnValue;jQuery("body").children().each(function(key,value){if(value.id!==element.substring(1)){var checkedelement=jQuery(value);if(offset==="right"&&checkedelement.offset().left+jQuery(checkedelement).width()<jQuery(window).width()||offset==="left"&&checkedelement.offset().left>0){if(checkedelement.css("position")==="static"||checkedelement.css("position")===""){checkedelement.css("position","relative")}returnValue=value;return false}}});return returnValue},center_fixed_element:function(element){var el=jQuery(element);var left=jQuery(window).width()/2-parseInt(el.css("width"))/2;el.css("left",left+"px")},center_vertically:function(element){var el=jQuery(element);var left=jQuery(window).height()/2-parseInt(el.css("height"))/2;el.css("top",left+"px")},close:function(element){var wrapper=jQuery(element);wrapper.remove()}};jQuery(document).ready(function(){if(advads.supports_localstorage()&&localStorage.getItem("advads_frontend_picker")){var advads_picker_cur,advads_picker_overlay=jQuery("<div id='advads-picker-overlay'>"),advads_picker_no=[document.body,document.documentElement,document];advads_picker_overlay.css({position:"absolute",border:"solid 2px #428bca",backgroundColor:"rgba(66,139,202,0.5)",boxSizing:"border-box",zIndex:1e6,pointerEvents:"none"}).prependTo("body");jQuery(document).mousemove(function(e){if(e.target===advads_picker_cur){return}if(~advads_picker_no.indexOf(e.target)){advads_picker_cur=null;advads_picker_overlay.hide();return}var target=jQuery(e.target),offset=target.offset(),width=target.outerWidth(),height=target.outerHeight();advads_picker_cur=e.target;advads_picker_overlay.css({top:offset.top,left:offset.left,width:width,height:height}).show();console.log(jQuery(advads_picker_cur).getPath())});jQuery(document).click(function(e){var path=jQuery(advads_picker_cur).getPath();localStorage.setItem("advads_frontend_element",path);window.location=localStorage.getItem("advads_prev_url")})}});jQuery.fn.extend({getPath:function(path,depth){if(typeof path==="undefined")path="";if(typeof depth==="undefined")depth=0;if(this.is("html")){return"html > "+path}else if(3===depth){return path}var cur=this.get(0).nodeName.toLowerCase();var el_id=this.attr("id"),el_class=this.attr("class");depth=depth+1;if(typeof el_id!=="undefined"&&!/\d/.test(el_id)){cur+="#"+el_id}else if(typeof el_class!=="undefined"){el_class=el_class.split(/[\s\n]+/);el_class=jQuery.grep(el_class,function(element,index){return!/\d/.test(element)});if(el_class.length){cur+="."+el_class.slice(0,2).join(".")}}if(this.siblings(cur).length){cur+=":eq("+this.siblings(cur).addBack().not("#advads-picker-overlay").index(this)+")"}if(path===""){return this.parent().getPath(cur,depth)}else{return this.parent().getPath(cur+" > "+path,depth)}}});
public/assets/js/advanced.orig.js CHANGED
@@ -194,20 +194,32 @@ advads = {
194
  el.prependTo(target);
195
  }
196
  },
 
197
  /**
198
- * make an absolute position element fixed at the current position
199
- * hint: use only after DOM is fully loaded in order to fix a wrong position
200
  *
201
  * @param {str} element selector
202
- * @param {obj} options
203
  */
204
- fix_element: function( element, options ){
205
  var el = jQuery(element);
206
  // give "position" style to parent element, if missing
207
  var parent = el.parent();
208
  if(parent.css('position') === 'static' || parent.css('position') === ''){
209
  parent.css('position', 'relative');
210
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
211
 
212
  // fix element at current position
213
  // get position for hidden elements by showing them for a very short time
194
  el.prependTo(target);
195
  }
196
  },
197
+
198
  /**
199
+ * Set 'relative' position for a parent element.
 
200
  *
201
  * @param {str} element selector
 
202
  */
203
+ set_parent_relative: function( element ) {
204
  var el = jQuery(element);
205
  // give "position" style to parent element, if missing
206
  var parent = el.parent();
207
  if(parent.css('position') === 'static' || parent.css('position') === ''){
208
  parent.css('position', 'relative');
209
  }
210
+ },
211
+
212
+ /**
213
+ * make an absolute position element fixed at the current position
214
+ * hint: use only after DOM is fully loaded in order to fix a wrong position
215
+ *
216
+ * @param {str} element selector
217
+ * @param {obj} options
218
+ */
219
+ fix_element: function( element, options ){
220
+ this.set_parent_relative( element );
221
+
222
+ var el = jQuery(element);
223
 
224
  // fix element at current position
225
  // get position for hidden elements by showing them for a very short time
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: 4.2
6
  Tested up to: 4.8
7
- Stable tag: 1.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -211,6 +211,20 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
211
 
212
  == Changelog ==
213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  = 1.8 =
215
 
216
  This release is even larger under the hood than the following list. Please make sure to also update all [your add-ons](https://wpadvancedads.com/add-ons/) and let us know directly about any issues [here](https://wpadvancedads.com/support/).
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: 4.2
6
  Tested up to: 4.8
7
+ Stable tag: 1.8.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
211
 
212
  == Changelog ==
213
 
214
+ = 1.8.1 =
215
+
216
+ * added support for new AdSense InFeed and InArticle ad codes
217
+ * create a new ad group on group page
218
+ * add group wrapper even if the group was not edited on the group edit page
219
+ * add the 'advanced-ads-output-wrapper-after-content-group' filter
220
+ * removed unused MarketPress license code
221
+ * removed debug page
222
+ * removed license expires notice
223
+ * updated composer
224
+ * updated translation files
225
+ * fixed issue with inheriting settings of ad group ad type
226
+ * removed PHP notice in Import feature
227
+
228
  = 1.8 =
229
 
230
  This release is even larger under the hood than the following list. Please make sure to also update all [your add-ons](https://wpadvancedads.com/add-ons/) and let us know directly about any issues [here](https://wpadvancedads.com/support/).
vendor/autoload_52.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
- return ComposerAutoloaderInita6ec8fd5f8230729f5d4d3dda40c7a77::getLoader();
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
+ return ComposerAutoloaderInit210b51f50203b825a36f8d8aa905493d::getLoader();
vendor/composer/autoload_real_52.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
- class ComposerAutoloaderInita6ec8fd5f8230729f5d4d3dda40c7a77 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
@@ -19,9 +19,9 @@ class ComposerAutoloaderInita6ec8fd5f8230729f5d4d3dda40c7a77 {
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInita6ec8fd5f8230729f5d4d3dda40c7a77', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInita6ec8fd5f8230729f5d4d3dda40c7a77', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
+ class ComposerAutoloaderInit210b51f50203b825a36f8d8aa905493d {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit210b51f50203b825a36f8d8aa905493d', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit210b51f50203b825a36f8d8aa905493d', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);
vendor/composer/installed.json CHANGED
@@ -1,17 +1,50 @@
1
  [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  {
3
  "name": "composer/installers",
4
- "version": "v1.2.0",
5
- "version_normalized": "1.2.0.0",
6
  "source": {
7
  "type": "git",
8
  "url": "https://github.com/composer/installers.git",
9
- "reference": "d78064c68299743e0161004f2de3a0204e33b804"
10
  },
11
  "dist": {
12
  "type": "zip",
13
- "url": "https://api.github.com/repos/composer/installers/zipball/d78064c68299743e0161004f2de3a0204e33b804",
14
- "reference": "d78064c68299743e0161004f2de3a0204e33b804",
15
  "shasum": ""
16
  },
17
  "require": {
@@ -25,7 +58,7 @@
25
  "composer/composer": "1.0.*@dev",
26
  "phpunit/phpunit": "4.1.*"
27
  },
28
- "time": "2016-08-13 20:53:52",
29
  "type": "composer-plugin",
30
  "extra": {
31
  "class": "Composer\\Installers\\Plugin",
@@ -55,12 +88,16 @@
55
  "keywords": [
56
  "Craft",
57
  "Dolibarr",
 
58
  "Hurad",
59
  "ImageCMS",
 
60
  "MODX Evo",
61
  "Mautic",
 
62
  "OXID",
63
  "Plentymarkets",
 
64
  "RadPHP",
65
  "SMF",
66
  "Thelia",
@@ -83,9 +120,11 @@
83
  "fuelphp",
84
  "grav",
85
  "installer",
 
86
  "joomla",
87
  "kohana",
88
  "laravel",
 
89
  "lithium",
90
  "magento",
91
  "mako",
@@ -100,6 +139,7 @@
100
  "roundcube",
101
  "shopware",
102
  "silverstripe",
 
103
  "symfony",
104
  "typo3",
105
  "wordpress",
@@ -107,38 +147,5 @@
107
  "zend",
108
  "zikula"
109
  ]
110
- },
111
- {
112
- "name": "xrstf/composer-php52",
113
- "version": "v1.0.20",
114
- "version_normalized": "1.0.20.0",
115
- "source": {
116
- "type": "git",
117
- "url": "https://github.com/composer-php52/composer-php52.git",
118
- "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8"
119
- },
120
- "dist": {
121
- "type": "zip",
122
- "url": "https://api.github.com/repos/composer-php52/composer-php52/zipball/bd41459d5e27df8d33057842b32377c39e97a5a8",
123
- "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8",
124
- "shasum": ""
125
- },
126
- "time": "2016-04-16 21:52:24",
127
- "type": "library",
128
- "extra": {
129
- "branch-alias": {
130
- "dev-default": "1.x-dev"
131
- }
132
- },
133
- "installation-source": "dist",
134
- "autoload": {
135
- "psr-0": {
136
- "xrstf\\Composer52": "lib/"
137
- }
138
- },
139
- "notification-url": "https://packagist.org/downloads/",
140
- "license": [
141
- "MIT"
142
- ]
143
  }
144
  ]
1
  [
2
+ {
3
+ "name": "xrstf/composer-php52",
4
+ "version": "v1.0.20",
5
+ "version_normalized": "1.0.20.0",
6
+ "source": {
7
+ "type": "git",
8
+ "url": "https://github.com/composer-php52/composer-php52.git",
9
+ "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8"
10
+ },
11
+ "dist": {
12
+ "type": "zip",
13
+ "url": "https://api.github.com/repos/composer-php52/composer-php52/zipball/bd41459d5e27df8d33057842b32377c39e97a5a8",
14
+ "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8",
15
+ "shasum": ""
16
+ },
17
+ "time": "2016-04-16 21:52:24",
18
+ "type": "library",
19
+ "extra": {
20
+ "branch-alias": {
21
+ "dev-default": "1.x-dev"
22
+ }
23
+ },
24
+ "installation-source": "dist",
25
+ "autoload": {
26
+ "psr-0": {
27
+ "xrstf\\Composer52": "lib/"
28
+ }
29
+ },
30
+ "notification-url": "https://packagist.org/downloads/",
31
+ "license": [
32
+ "MIT"
33
+ ]
34
+ },
35
  {
36
  "name": "composer/installers",
37
+ "version": "v1.3.0",
38
+ "version_normalized": "1.3.0.0",
39
  "source": {
40
  "type": "git",
41
  "url": "https://github.com/composer/installers.git",
42
+ "reference": "79ad876c7498c0bbfe7eed065b8651c93bfd6045"
43
  },
44
  "dist": {
45
  "type": "zip",
46
+ "url": "https://api.github.com/repos/composer/installers/zipball/79ad876c7498c0bbfe7eed065b8651c93bfd6045",
47
+ "reference": "79ad876c7498c0bbfe7eed065b8651c93bfd6045",
48
  "shasum": ""
49
  },
50
  "require": {
58
  "composer/composer": "1.0.*@dev",
59
  "phpunit/phpunit": "4.1.*"
60
  },
61
+ "time": "2017-04-24 06:37:16",
62
  "type": "composer-plugin",
63
  "extra": {
64
  "class": "Composer\\Installers\\Plugin",
88
  "keywords": [
89
  "Craft",
90
  "Dolibarr",
91
+ "Eliasis",
92
  "Hurad",
93
  "ImageCMS",
94
+ "Kanboard",
95
  "MODX Evo",
96
  "Mautic",
97
+ "Maya",
98
  "OXID",
99
  "Plentymarkets",
100
+ "Porto",
101
  "RadPHP",
102
  "SMF",
103
  "Thelia",
120
  "fuelphp",
121
  "grav",
122
  "installer",
123
+ "itop",
124
  "joomla",
125
  "kohana",
126
  "laravel",
127
+ "lavalite",
128
  "lithium",
129
  "magento",
130
  "mako",
139
  "roundcube",
140
  "shopware",
141
  "silverstripe",
142
+ "sydes",
143
  "symfony",
144
  "typo3",
145
  "wordpress",
147
  "zend",
148
  "zikula"
149
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  }
151
  ]
vendor/composer/installers/CHANGELOG.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Change Log
2
+
3
+ ## v1.3.0 - 2017-04-24
4
+ ### Added
5
+ * Kanboard plugins installer.
6
+ * Porto-SAP installer.
7
+ * Add `core` to concrete5 installer.
8
+ * Support Moodle "search" plugin type.
9
+ * SyDES installer.
10
+ * iTop installer.
11
+ * Lavalite installer.
12
+ * Module type for Eliasis.
13
+ * Vgmcp installer.
14
+ * OntoWiki installer.
15
+ * The requirements for contributing (CONTRIBUTING.md).
16
+
17
+ ### Changed
18
+ * Concrete5: block & theme install location updates.
19
+
20
+ ## v1.2.0 - 2016-08-13
21
+ ### Added
22
+ * Installer for Attogram.
23
+ * Installer for Cockpit.
24
+ * Installer for Plentymarkets.
25
+ * Installer for ReIndex.
26
+ * Installer for Vanilla.
27
+ * Installer for YAWIK.
28
+ * Added missing environments for new Shopware (5.2) Plugin System.
29
+
30
+ ## v1.1.0 - 2016-07-05
31
+ ### Added
32
+ * Installer for ReIndex.
33
+ * Installer for RadPHP.
34
+ * Installer for Decibel.
35
+ * Installer for Phifty.
36
+ * Installer for ExpressionEngine.
37
+
38
+ ### Changed
39
+ * New paths for new Bitrix CMS. Old paths is deprecated.
40
+
41
+ ### Deprecated
42
+ * Old paths in Bitrix CMS Installer is deprecated.
43
+
44
+ ## v1.0.25 - 2016-04-13
45
+ ### Removed
46
+ * Revert TYPO3 installer deletion.
47
+
48
+ ## v1.0.24 - 2016-04-05
49
+ ### Added
50
+ * Installer for ImageCMS.
51
+ * Installer for Mautic.
52
+ * New types in the Kirby installer: `kirby-plugin` and `kirby-field`.
53
+ * New types in the Drupal installer: `custom-theme` and `custom-module`.
54
+
55
+ ### Changed
56
+ * Switch to PSR-4.
57
+ * Update Bitrix Installer: configuration for setting custom path to directory with kernel.
58
+
59
+ ### Removed
60
+ * Remove TYPO3 Extension installers.
vendor/composer/installers/CONTRIBUTING.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributing
2
+
3
+ If you would like to help, please take a look at the list of
4
+ [issues](https://github.com/composer/installers/issues).
5
+
6
+ ## Pull requests
7
+
8
+ * [Fork and clone](https://help.github.com/articles/fork-a-repo).
9
+ * Run the command `php composer.phar install` to install the dependencies.
10
+ This will also install the dev dependencies. See [Composer](https://getcomposer.org/doc/03-cli.md#install).
11
+ * Use the command `phpunit` to run the tests. See [PHPUnit](http://phpunit.de).
12
+ * Create a branch, commit, push and send us a
13
+ [pull request](https://help.github.com/articles/using-pull-requests).
14
+
15
+ To ensure a consistent code base, you should make sure the code follows the
16
+ coding standards [PSR-1](http://www.php-fig.org/psr/psr-1/) and
17
+ [PSR-2](http://www.php-fig.org/psr/psr-2/).
18
+
19
+ ### Create a new Installer
20
+
21
+ * Create class extends `Composer\Installers\BaseInstaller` with your Installer.
22
+ * Create unit tests as a separate class or as part of a `Composer\Installers\Test\InstallerTest`.
23
+ * Add information about your Installer in `README.md` in section "Current Supported Package Types".
24
+ * Run the tests.
vendor/composer/installers/README.md CHANGED
@@ -6,11 +6,11 @@ This is for PHP package authors to require in their `composer.json`. It will
6
  install their package to the correct location based on the specified package
7
  type.
8
 
9
- The goal of `installers` is to be a simple package type to install path map.
10
  Users can also customize the install path per package and package authors can
11
  modify the package name upon installing.
12
 
13
- `installers` isn't intended on replacing all custom installers. If your
14
  package requires special installation handling then by all means, create a
15
  custom installer to handle it.
16
 
@@ -25,7 +25,7 @@ is not needed to install packages with these frameworks:
25
  * Yii
26
  * Yii2
27
 
28
- **Current Supported Package Types**:
29
 
30
  > Stable types are marked as **bold**, this means that installation paths
31
  > for those type will not be changed. Any adjustment for those types would
@@ -45,7 +45,7 @@ is not needed to install packages with these frameworks:
45
  | CCFramework | `ccframework-ship`<br>`ccframework-theme`
46
  | Cockpit | `cockpit-module`
47
  | CodeIgniter | `codeigniter-library`<br>`codeigniter-third-party`<br>`codeigniter-module`
48
- | concrete5 | `concrete5-block`<br>`concrete5-package`<br>`concrete5-theme`<br>`concrete5-update`
49
  | Craft | `craft-plugin`
50
  | Croogo | `croogo-plugin`<br>`croogo-theme`
51
  | Decibel | `decibel-app`
@@ -53,24 +53,30 @@ is not needed to install packages with these frameworks:
53
  | Dolibarr | `dolibarr-module`
54
  | Drupal | <b>`drupal-core`<br>`drupal-module`<br>`drupal-theme`</b><br>`drupal-library`<br>`drupal-profile`<br>`drupal-drush`
55
  | Elgg | `elgg-plugin`
 
56
  | ExpressionEngine 3 | `ee3-addon`<br>`ee3-theme`
57
  | FuelPHP v1.x | `fuel-module`<br>`fuel-package`<br/>`fuel-theme`
58
  | FuelPHP v2.x | `fuelphp-component`
59
  | Grav | `grav-plugin`<br>`grav-theme`
60
  | Hurad | `hurad-plugin`<br>`hurad-theme`
61
  | ImageCMS | `imagecms-template`<br>`imagecms-module`<br>`imagecms-library`
 
62
  | Joomla | `joomla-component`<br>`joomla-module`<br>`joomla-template`<br>`joomla-plugin`<br>`joomla-library`
 
63
  | Kirby | **`kirby-plugin`**<br>`kirby-field`<br>`kirby-tag`
64
  | KodiCMS | `kodicms-plugin`<br>`kodicms-media`
65
  | Kohana | **`kohana-module`**
66
  | Laravel | `laravel-library`
 
67
  | Lithium | **`lithium-library`<br>`lithium-source`**
68
  | Magento | `magento-library`<br>`magento-skin`<br>`magento-theme`
69
  | Mako | `mako-package`
70
  | Mautic | `mautic-plugin`<br>`mautic-theme`
 
71
  | MODX Evo | `modxevo-snippet`<br>`modxevo-plugin`<br>`modxevo-module`<br>`modxevo-template`<br>`modxevo-lib`
72
  | MediaWiki | `mediawiki-extension`
73
  | October | **`october-module`<br>`october-plugin`<br>`october-theme`**
 
74
  | OXID | `oxid-module`<br>`oxid-theme`<br>`oxid-out`
75
  | MODULEWork | `modulework-module`
76
  | Moodle | `moodle-*` (Please [check source](https://raw.githubusercontent.com/composer/installers/master/src/Composer/Installers/MoodleInstaller.php) for all supported types)
@@ -80,6 +86,7 @@ is not needed to install packages with these frameworks:
80
  | Plentymarkets | `plentymarkets-plugin`
81
  | PPI | **`ppi-module`**
82
  | Puppet | `puppet-module`
 
83
  | RadPHP | `radphp-bundle`
84
  | REDAXO | `redaxo-addon`
85
  | ReIndex | **`reindex-plugin`** <br> **`reindex-theme`**
@@ -87,11 +94,13 @@ is not needed to install packages with these frameworks:
87
  | shopware | `shopware-backend-plugin`<br/>`shopware-core-plugin`<br/>`shopware-frontend-plugin`<br/>`shopware-theme`<br/>`shopware-plugin`<br/>`shopware-frontend-theme`
88
  | SilverStripe | `silverstripe-module`<br>`silverstripe-theme`
89
  | SMF | `smf-module`<br>`smf-theme`
 
90
  | symfony1 | **`symfony1-plugin`**
91
  | Tusk | `tusk-task`<br>`tusk-command`<br>`tusk-asset`
92
  | TYPO3 Flow | `typo3-flow-package`<br>`typo3-flow-framework`<br>`typo3-flow-plugin`<br>`typo3-flow-site`<br>`typo3-flow-boilerplate`<br>`typo3-flow-build`
93
  | TYPO3 CMS | `typo3-cms-extension` (Deprecated in this package, use the [TYPO3 CMS Installers](https://packagist.org/packages/typo3/cms-composer-installers) instead)
94
  | Vanilla | `vanilla-plugin`<br>`vanilla-theme`
 
95
  | Wolf CMS | `wolfcms-plugin`
96
  | WordPress | <b>`wordpress-plugin`<br>`wordpress-theme`</b><br>`wordpress-muplugin`
97
  | YAWIK | `yawik-module`
@@ -190,30 +199,15 @@ will allow this:
190
  Please note the name entered into `installer-name` will be the final and will
191
  not be inflected.
192
 
193
- ## Contribute!
194
 
195
- * [Fork and clone](https://help.github.com/articles/fork-a-repo).
196
- * Run the command `php composer.phar install` to install the dependencies.
197
- This will also install the dev dependencies. See [Composer](https://getcomposer.org/doc/03-cli.md#install).
198
- * Use the command `phpunit` to run the tests. See [PHPUnit](http://phpunit.de).
199
- * Create a branch, commit, push and send us a
200
- [pull request](https://help.github.com/articles/using-pull-requests).
201
-
202
- To ensure a consistent code base, you should make sure the code follows the
203
- [Coding Standards](http://symfony.com/doc/2.0/contributing/code/standards.html)
204
- which we borrowed from Symfony.
205
-
206
- If you would like to help, please take a look at the list of
207
- [issues](https://github.com/composer/installers/issues).
208
-
209
- ### Should we allow dynamic package types or paths? No.
210
  What are they? The ability for a package author to determine where a package
211
  will be installed either through setting the path directly in their
212
  `composer.json` or through a dynamic package type: `"type":
213
  "framework-install-here"`.
214
 
215
  It has been proposed many times. Even implemented once early on and then
216
- removed. `installers` won't do this because it would allow a single package
217
  author to wipe out entire folders without the user's consent. That user would
218
  then come here to yell at us.
219
 
6
  install their package to the correct location based on the specified package
7
  type.
8
 
9
+ The goal of Installers is to be a simple package type to install path map.
10
  Users can also customize the install path per package and package authors can
11
  modify the package name upon installing.
12
 
13
+ Installers isn't intended on replacing all custom installers. If your
14
  package requires special installation handling then by all means, create a
15
  custom installer to handle it.
16
 
25
  * Yii
26
  * Yii2
27
 
28
+ ## Current Supported Package Types
29
 
30
  > Stable types are marked as **bold**, this means that installation paths
31
  > for those type will not be changed. Any adjustment for those types would
45
  | CCFramework | `ccframework-ship`<br>`ccframework-theme`
46
  | Cockpit | `cockpit-module`
47
  | CodeIgniter | `codeigniter-library`<br>`codeigniter-third-party`<br>`codeigniter-module`
48
+ | concrete5 | `concrete5-core`<br>`concrete5-package`<br>`concrete5-theme`<br>`concrete5-block`<br>`concrete5-update`
49
  | Craft | `craft-plugin`
50
  | Croogo | `croogo-plugin`<br>`croogo-theme`
51
  | Decibel | `decibel-app`
53
  | Dolibarr | `dolibarr-module`
54
  | Drupal | <b>`drupal-core`<br>`drupal-module`<br>`drupal-theme`</b><br>`drupal-library`<br>`drupal-profile`<br>`drupal-drush`
55
  | Elgg | `elgg-plugin`
56
+ | Eliasis | `eliasis-module`
57
  | ExpressionEngine 3 | `ee3-addon`<br>`ee3-theme`
58
  | FuelPHP v1.x | `fuel-module`<br>`fuel-package`<br/>`fuel-theme`
59
  | FuelPHP v2.x | `fuelphp-component`
60
  | Grav | `grav-plugin`<br>`grav-theme`
61
  | Hurad | `hurad-plugin`<br>`hurad-theme`
62
  | ImageCMS | `imagecms-template`<br>`imagecms-module`<br>`imagecms-library`
63
+ | iTop | `itop-extension`
64
  | Joomla | `joomla-component`<br>`joomla-module`<br>`joomla-template`<br>`joomla-plugin`<br>`joomla-library`
65
+ | Kanboard | `kanboard-plugin`
66
  | Kirby | **`kirby-plugin`**<br>`kirby-field`<br>`kirby-tag`
67
  | KodiCMS | `kodicms-plugin`<br>`kodicms-media`
68
  | Kohana | **`kohana-module`**
69
  | Laravel | `laravel-library`
70
+ | Lavalite | `lavalite-theme`<br>`lavalite-package`
71
  | Lithium | **`lithium-library`<br>`lithium-source`**
72
  | Magento | `magento-library`<br>`magento-skin`<br>`magento-theme`
73
  | Mako | `mako-package`
74
  | Mautic | `mautic-plugin`<br>`mautic-theme`
75
+ | Maya | `maya-module`
76
  | MODX Evo | `modxevo-snippet`<br>`modxevo-plugin`<br>`modxevo-module`<br>`modxevo-template`<br>`modxevo-lib`
77
  | MediaWiki | `mediawiki-extension`
78
  | October | **`october-module`<br>`october-plugin`<br>`october-theme`**
79
+ | OntoWiki | `ontowiki-extension`<br>`ontowiki-theme`<br>`ontowiki-translation`
80
  | OXID | `oxid-module`<br>`oxid-theme`<br>`oxid-out`
81
  | MODULEWork | `modulework-module`
82
  | Moodle | `moodle-*` (Please [check source](https://raw.githubusercontent.com/composer/installers/master/src/Composer/Installers/MoodleInstaller.php) for all supported types)
86
  | Plentymarkets | `plentymarkets-plugin`
87
  | PPI | **`ppi-module`**
88
  | Puppet | `puppet-module`
89
+ | Porto | `porto-container`
90
  | RadPHP | `radphp-bundle`
91
  | REDAXO | `redaxo-addon`
92
  | ReIndex | **`reindex-plugin`** <br> **`reindex-theme`**
94
  | shopware | `shopware-backend-plugin`<br/>`shopware-core-plugin`<br/>`shopware-frontend-plugin`<br/>`shopware-theme`<br/>`shopware-plugin`<br/>`shopware-frontend-theme`
95
  | SilverStripe | `silverstripe-module`<br>`silverstripe-theme`
96
  | SMF | `smf-module`<br>`smf-theme`
97
+ | SyDES | `sydes-module`<br>`sydes-theme`
98
  | symfony1 | **`symfony1-plugin`**
99
  | Tusk | `tusk-task`<br>`tusk-command`<br>`tusk-asset`
100
  | TYPO3 Flow | `typo3-flow-package`<br>`typo3-flow-framework`<br>`typo3-flow-plugin`<br>`typo3-flow-site`<br>`typo3-flow-boilerplate`<br>`typo3-flow-build`
101
  | TYPO3 CMS | `typo3-cms-extension` (Deprecated in this package, use the [TYPO3 CMS Installers](https://packagist.org/packages/typo3/cms-composer-installers) instead)
102
  | Vanilla | `vanilla-plugin`<br>`vanilla-theme`
103
+ | Vgmcp | `vgmcp-bundle`<br>`vgmcp-theme`
104
  | Wolf CMS | `wolfcms-plugin`
105
  | WordPress | <b>`wordpress-plugin`<br>`wordpress-theme`</b><br>`wordpress-muplugin`
106
  | YAWIK | `yawik-module`
199
  Please note the name entered into `installer-name` will be the final and will
200
  not be inflected.
201
 
202
+ ## Should we allow dynamic package types or paths? No.
203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  What are they? The ability for a package author to determine where a package
205
  will be installed either through setting the path directly in their
206
  `composer.json` or through a dynamic package type: `"type":
207
  "framework-install-here"`.
208
 
209
  It has been proposed many times. Even implemented once early on and then
210
+ removed. Installers won't do this because it would allow a single package
211
  author to wipe out entire folders without the user's consent. That user would
212
  then come here to yell at us.
213
 
vendor/composer/installers/composer.json CHANGED
@@ -21,18 +21,23 @@
21
  "Dolibarr",
22
  "Drupal",
23
  "Elgg",
 
24
  "ExpressionEngine",
25
  "FuelPHP",
26
  "Grav",
27
  "Hurad",
28
  "ImageCMS",
 
29
  "Joomla",
 
30
  "Kohana",
31
  "Laravel",
 
32
  "Lithium",
33
  "Magento",
34
  "Mako",
35
  "Mautic",
 
36
  "MODX Evo",
37
  "MediaWiki",
38
  "OXID",
@@ -43,12 +48,14 @@
43
  "Plentymarkets",
44
  "PPI",
45
  "Puppet",
 
46
  "RadPHP",
47
  "ReIndex",
48
  "Roundcube",
49
  "shopware",
50
  "SilverStripe",
51
  "SMF",
 
52
  "symfony",
53
  "Thelia",
54
  "TYPO3",
21
  "Dolibarr",
22
  "Drupal",
23
  "Elgg",
24
+ "Eliasis",
25
  "ExpressionEngine",
26
  "FuelPHP",
27
  "Grav",
28
  "Hurad",
29
  "ImageCMS",
30
+ "iTop",
31
  "Joomla",
32
+ "Kanboard",
33
  "Kohana",
34
  "Laravel",
35
+ "Lavalite",
36
  "Lithium",
37
  "Magento",
38
  "Mako",
39
  "Mautic",
40
+ "Maya",
41
  "MODX Evo",
42
  "MediaWiki",
43
  "OXID",
48
  "Plentymarkets",
49
  "PPI",
50
  "Puppet",
51
+ "Porto",
52
  "RadPHP",
53
  "ReIndex",
54
  "Roundcube",
55
  "shopware",
56
  "SilverStripe",
57
  "SMF",
58
+ "SyDES",
59
  "symfony",
60
  "Thelia",
61
  "TYPO3",
vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php CHANGED
@@ -75,7 +75,6 @@ class CakePHPInstaller extends BaseInstaller
75
  $installed = new $constraintClass('=', $package->getVersion());
76
  if ($cake3->matches($installed)) {
77
  return true;
78
- break;
79
  }
80
  }
81
  }
75
  $installed = new $constraintClass('=', $package->getVersion());
76
  if ($cake3->matches($installed)) {
77
  return true;
 
78
  }
79
  }
80
  }
vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php CHANGED
@@ -4,9 +4,10 @@ namespace Composer\Installers;
4
  class Concrete5Installer extends BaseInstaller
5
  {
6
  protected $locations = array(
7
- 'block' => 'blocks/{$name}/',
 
8
  'package' => 'packages/{$name}/',
9
- 'theme' => 'themes/{$name}/',
10
  'update' => 'updates/{$name}/',
11
  );
12
  }
4
  class Concrete5Installer extends BaseInstaller
5
  {
6
  protected $locations = array(
7
+ 'core' => 'concrete/',
8
+ 'block' => 'application/blocks/{$name}/',
9
  'package' => 'packages/{$name}/',
10
+ 'theme' => 'application/themes/{$name}/',
11
  'update' => 'updates/{$name}/',
12
  );
13
  }
vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class EliasisInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/'
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/Installer.php CHANGED
@@ -34,6 +34,7 @@ class Installer extends LibraryInstaller
34
  'decibel' => 'DecibelInstaller',
35
  'drupal' => 'DrupalInstaller',
36
  'elgg' => 'ElggInstaller',
 
37
  'ee3' => 'ExpressionEngineInstaller',
38
  'ee2' => 'ExpressionEngineInstaller',
39
  'fuel' => 'FuelInstaller',
@@ -41,14 +42,18 @@ class Installer extends LibraryInstaller
41
  'grav' => 'GravInstaller',
42
  'hurad' => 'HuradInstaller',
43
  'imagecms' => 'ImageCMSInstaller',
 
44
  'joomla' => 'JoomlaInstaller',
 
45
  'kirby' => 'KirbyInstaller',
46
  'kodicms' => 'KodiCMSInstaller',
47
  'kohana' => 'KohanaInstaller',
48
  'laravel' => 'LaravelInstaller',
 
49
  'lithium' => 'LithiumInstaller',
50
  'magento' => 'MagentoInstaller',
51
  'mako' => 'MakoInstaller',
 
52
  'mautic' => 'MauticInstaller',
53
  'mediawiki' => 'MediaWikiInstaller',
54
  'microweber' => 'MicroweberInstaller',
@@ -56,6 +61,7 @@ class Installer extends LibraryInstaller
56
  'modxevo' => 'MODXEvoInstaller',
57
  'moodle' => 'MoodleInstaller',
58
  'october' => 'OctoberInstaller',
 
59
  'oxid' => 'OxidInstaller',
60
  'phpbb' => 'PhpBBInstaller',
61
  'pimcore' => 'PimcoreInstaller',
@@ -65,12 +71,14 @@ class Installer extends LibraryInstaller
65
  'puppet' => 'PuppetInstaller',
66
  'radphp' => 'RadPHPInstaller',
67
  'phifty' => 'PhiftyInstaller',
 
68
  'redaxo' => 'RedaxoInstaller',
69
  'reindex' => 'ReIndexInstaller',
70
  'roundcube' => 'RoundcubeInstaller',
71
  'shopware' => 'ShopwareInstaller',
72
  'silverstripe' => 'SilverStripeInstaller',
73
  'smf' => 'SMFInstaller',
 
74
  'symfony1' => 'Symfony1Installer',
75
  'thelia' => 'TheliaInstaller',
76
  'tusk' => 'TuskInstaller',
34
  'decibel' => 'DecibelInstaller',
35
  'drupal' => 'DrupalInstaller',
36
  'elgg' => 'ElggInstaller',
37
+ 'eliasis' => 'EliasisInstaller',
38
  'ee3' => 'ExpressionEngineInstaller',
39
  'ee2' => 'ExpressionEngineInstaller',
40
  'fuel' => 'FuelInstaller',
42
  'grav' => 'GravInstaller',
43
  'hurad' => 'HuradInstaller',
44
  'imagecms' => 'ImageCMSInstaller',
45
+ 'itop' => 'ItopInstaller',
46
  'joomla' => 'JoomlaInstaller',
47
+ 'kanboard' => 'KanboardInstaller',
48
  'kirby' => 'KirbyInstaller',
49
  'kodicms' => 'KodiCMSInstaller',
50
  'kohana' => 'KohanaInstaller',
51
  'laravel' => 'LaravelInstaller',
52
+ 'lavalite' => 'LavaLiteInstaller',
53
  'lithium' => 'LithiumInstaller',
54
  'magento' => 'MagentoInstaller',
55
  'mako' => 'MakoInstaller',
56
+ 'maya' => 'MayaInstaller',
57
  'mautic' => 'MauticInstaller',
58
  'mediawiki' => 'MediaWikiInstaller',
59
  'microweber' => 'MicroweberInstaller',
61
  'modxevo' => 'MODXEvoInstaller',
62
  'moodle' => 'MoodleInstaller',
63
  'october' => 'OctoberInstaller',
64
+ 'ontowiki' => 'OntoWikiInstaller',
65
  'oxid' => 'OxidInstaller',
66
  'phpbb' => 'PhpBBInstaller',
67
  'pimcore' => 'PimcoreInstaller',
71
  'puppet' => 'PuppetInstaller',
72
  'radphp' => 'RadPHPInstaller',
73
  'phifty' => 'PhiftyInstaller',
74
+ 'porto' => 'PortoInstaller',
75
  'redaxo' => 'RedaxoInstaller',
76
  'reindex' => 'ReIndexInstaller',
77
  'roundcube' => 'RoundcubeInstaller',
78
  'shopware' => 'ShopwareInstaller',
79
  'silverstripe' => 'SilverStripeInstaller',
80
  'smf' => 'SMFInstaller',
81
+ 'sydes' => 'SyDESInstaller',
82
  'symfony1' => 'Symfony1Installer',
83
  'thelia' => 'TheliaInstaller',
84
  'tusk' => 'TuskInstaller',
vendor/composer/installers/src/Composer/Installers/ItopInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ItopInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'extension' => 'extensions/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ *
6
+ * Installer for kanboard plugins
7
+ *
8
+ * kanboard.net
9
+ *
10
+ * Class KanboardInstaller
11
+ * @package Composer\Installers
12
+ */
13
+ class KanboardInstaller extends BaseInstaller
14
+ {
15
+ protected $locations = array(
16
+ 'plugin' => 'plugins/{$name}/',
17
+ );
18
+ }
vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class LavaLiteInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'package' => 'packages/{$name}/',
8
+ 'theme' => 'public/themes/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/MayaInstaller.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MayaInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ );
9
+
10
+ /**
11
+ * Format package name.
12
+ *
13
+ * For package type maya-module, cut off a trailing '-module' if present.
14
+ *
15
+ */
16
+ public function inflectPackageVars($vars)
17
+ {
18
+ if ($vars['type'] === 'maya-module') {
19
+ return $this->inflectModuleVars($vars);
20
+ }
21
+
22
+ return $vars;
23
+ }
24
+
25
+ protected function inflectModuleVars($vars)
26
+ {
27
+ $vars['name'] = preg_replace('/-module$/', '', $vars['name']);
28
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
29
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
30
+
31
+ return $vars;
32
+ }
33
+ }
vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php CHANGED
@@ -45,6 +45,7 @@ class MoodleInstaller extends BaseInstaller
45
  'report' => 'report/{$name}/',
46
  'repository' => 'repository/{$name}/',
47
  'scormreport' => 'mod/scorm/report/{$name}/',
 
48
  'theme' => 'theme/{$name}/',
49
  'tinymce' => 'lib/editor/tinymce/plugins/{$name}/',
50
  'profilefield' => 'user/profile/field/{$name}/',
45
  'report' => 'report/{$name}/',
46
  'repository' => 'repository/{$name}/',
47
  'scormreport' => 'mod/scorm/report/{$name}/',
48
+ 'search' => 'search/engine/{$name}/',
49
  'theme' => 'theme/{$name}/',
50
  'tinymce' => 'lib/editor/tinymce/plugins/{$name}/',
51
  'profilefield' => 'user/profile/field/{$name}/',
vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class OntoWikiInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'extension' => 'extensions/{$name}/',
8
+ 'theme' => 'extensions/themes/{$name}/',
9
+ 'translation' => 'extensions/translations/{$name}/',
10
+ );
11
+
12
+ /**
13
+ * Format package name to lower case and remove ".ontowiki" suffix
14
+ */
15
+ public function inflectPackageVars($vars)
16
+ {
17
+ $vars['name'] = strtolower($vars['name']);
18
+ $vars['name'] = preg_replace('/.ontowiki$/', '', $vars['name']);
19
+ $vars['name'] = preg_replace('/-theme$/', '', $vars['name']);
20
+ $vars['name'] = preg_replace('/-translation$/', '', $vars['name']);
21
+
22
+ return $vars;
23
+ }
24
+ }
vendor/composer/installers/src/Composer/Installers/PortoInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PortoInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'container' => 'app/Containers/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class SyDESInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'app/modules/{$name}/',
8
+ 'theme' => 'themes/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format module name.
13
+ *
14
+ * Strip `sydes-` prefix and a trailing '-theme' or '-module' from package name if present.
15
+ *
16
+ * @param array @vars
17
+ *
18
+ * @return array
19
+ */
20
+ public function inflectPackageVars($vars)
21
+ {
22
+ if ($vars['type'] == 'sydes-module') {
23
+ return $this->inflectModuleVars($vars);
24
+ }
25
+
26
+ if ($vars['type'] === 'sydes-theme') {
27
+ return $this->inflectThemeVars($vars);
28
+ }
29
+
30
+ return $vars;
31
+ }
32
+
33
+ public function inflectModuleVars($vars)
34
+ {
35
+ $vars['name'] = preg_replace('/(^sydes-|-module$)/i', '', $vars['name']);
36
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
37
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
38
+
39
+ return $vars;
40
+ }
41
+
42
+ protected function inflectThemeVars($vars)
43
+ {
44
+ $vars['name'] = preg_replace('/(^sydes-|-theme$)/', '', $vars['name']);
45
+ $vars['name'] = strtolower($vars['name']);
46
+
47
+ return $vars;
48
+ }
49
+ }
vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class VgmcpInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'bundle' => 'src/{$vendor}/{$name}/',
8
+ 'theme' => 'themes/{$name}/'
9
+ );
10
+
11
+ /**
12
+ * Format package name.
13
+ *
14
+ * For package type vgmcp-bundle, cut off a trailing '-bundle' if present.
15
+ *
16
+ * For package type vgmcp-theme, cut off a trailing '-theme' if present.
17
+ *
18
+ */
19
+ public function inflectPackageVars($vars)
20
+ {
21
+ if ($vars['type'] === 'vgmcp-bundle') {
22
+ return $this->inflectPluginVars($vars);
23
+ }
24
+
25
+ if ($vars['type'] === 'vgmcp-theme') {
26
+ return $this->inflectThemeVars($vars);
27
+ }
28
+
29
+ return $vars;
30
+ }
31
+
32
+ protected function inflectPluginVars($vars)
33
+ {
34
+ $vars['name'] = preg_replace('/-bundle$/', '', $vars['name']);
35
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
36
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
37
+
38
+ return $vars;
39
+ }
40
+
41
+ protected function inflectThemeVars($vars)
42
+ {
43
+ $vars['name'] = preg_replace('/-theme$/', '', $vars['name']);
44
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
45
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
46
+
47
+ return $vars;
48
+ }
49
+ }
vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php CHANGED
@@ -108,6 +108,7 @@ class InstallerTest extends TestCase
108
  array('concrete5-block', true),
109
  array('concrete5-package', true),
110
  array('concrete5-theme', true),
 
111
  array('concrete5-update', true),
112
  array('craft-plugin', true),
113
  array('croogo-plugin', true),
@@ -122,6 +123,7 @@ class InstallerTest extends TestCase
122
  array('ee2-theme', true),
123
  array('ee2-addon', true),
124
  array('elgg-plugin', true),
 
125
  array('fuel-module', true),
126
  array('fuel-package', true),
127
  array('fuel-theme', true),
@@ -131,10 +133,14 @@ class InstallerTest extends TestCase
131
  array('imagecms-template', true),
132
  array('imagecms-module', true),
133
  array('imagecms-library', true),
 
134
  array('joomla-library', true),
 
135
  array('kirby-plugin', true),
136
  array('kohana-module', true),
137
  array('laravel-library', true),
 
 
138
  array('lithium-library', true),
139
  array('magento-library', true),
140
  array('mako-package', true),
@@ -158,6 +164,7 @@ class InstallerTest extends TestCase
158
  array('prestashop-module', true),
159
  array('prestashop-theme', true),
160
  array('puppet-module', true),
 
161
  array('radphp-bundle', true),
162
  array('redaxo-addon', true),
163
  array('redaxo-bestyle-plugin', true),
@@ -174,6 +181,8 @@ class InstallerTest extends TestCase
174
  array('silverstripe-theme', true),
175
  array('smf-module', true),
176
  array('smf-theme', true),
 
 
177
  array('symfony1-plugin', true),
178
  array('thelia-module', true),
179
  array('thelia-frontoffice-template', true),
@@ -241,9 +250,10 @@ class InstallerTest extends TestCase
241
  array('cockpit-module', 'cockpit/modules/addons/My_module/', 'piotr-cz/cockpit-my_module'),
242
  array('codeigniter-library', 'application/libraries/my_package/', 'shama/my_package'),
243
  array('codeigniter-module', 'application/modules/my_package/', 'shama/my_package'),
244
- array('concrete5-block', 'blocks/concrete5_block/', 'remo/concrete5_block'),
245
  array('concrete5-package', 'packages/concrete5_package/', 'remo/concrete5_package'),
246
- array('concrete5-theme', 'themes/concrete5_theme/', 'remo/concrete5_theme'),
 
247
  array('concrete5-update', 'updates/concrete5/', 'concrete5/concrete5'),
248
  array('craft-plugin', 'craft/plugins/my_plugin/', 'mdcpepper/my_plugin'),
249
  array('croogo-plugin', 'Plugin/Sitemaps/', 'fahad19/sitemaps'),
@@ -257,6 +267,7 @@ class InstallerTest extends TestCase
257
  array('drupal-profile', 'profiles/my_module/', 'shama/my_module'),
258
  array('drupal-drush', 'drush/my_module/', 'shama/my_module'),
259
  array('elgg-plugin', 'mod/sample_plugin/', 'test/sample_plugin'),
 
260
  array('ee3-addon', 'system/user/addons/ee_theme/', 'author/ee_theme'),
261
  array('ee3-theme', 'themes/user/ee_package/', 'author/ee_package'),
262
  array('ee2-addon', 'system/expressionengine/third_party/ee_theme/', 'author/ee_theme'),
@@ -270,10 +281,14 @@ class InstallerTest extends TestCase
270
  array('imagecms-template', 'templates/my_template/', 'shama/my_template'),
271
  array('imagecms-module', 'application/modules/my_module/', 'shama/my_module'),
272
  array('imagecms-library', 'application/libraries/my_library/', 'shama/my_library'),
 
273
  array('joomla-plugin', 'plugins/my_plugin/', 'shama/my_plugin'),
 
274
  array('kirby-plugin', 'site/plugins/my_plugin/', 'shama/my_plugin'),
275
  array('kohana-module', 'modules/my_package/', 'shama/my_package'),
276
  array('laravel-library', 'libraries/my_package/', 'shama/my_package'),
 
 
277
  array('lithium-library', 'libraries/li3_test/', 'user/li3_test'),
278
  array('magento-library', 'lib/foo/', 'test/foo'),
279
  array('modxevo-snippet', 'assets/snippets/my_snippet/', 'shama/my_snippet'),
@@ -304,6 +319,7 @@ class InstallerTest extends TestCase
304
  array('plentymarkets-plugin', 'HelloWorld/', 'plugin-hello-world'),
305
  array('ppi-module', 'modules/foo/', 'test/foo'),
306
  array('puppet-module', 'modules/puppet-name/', 'puppet/puppet-name'),
 
307
  array('radphp-bundle', 'src/Migration/', 'atkrad/migration'),
308
  array('redaxo-addon', 'redaxo/include/addons/my_plugin/', 'shama/my_plugin'),
309
  array('redaxo-bestyle-plugin', 'redaxo/include/addons/be_style/plugins/my_plugin/', 'shama/my_plugin'),
108
  array('concrete5-block', true),
109
  array('concrete5-package', true),
110
  array('concrete5-theme', true),
111
+ array('concrete5-core', true),
112
  array('concrete5-update', true),
113
  array('craft-plugin', true),
114
  array('croogo-plugin', true),
123
  array('ee2-theme', true),
124
  array('ee2-addon', true),
125
  array('elgg-plugin', true),
126
+ array('eliasis-module', true),
127
  array('fuel-module', true),
128
  array('fuel-package', true),
129
  array('fuel-theme', true),
133
  array('imagecms-template', true),
134
  array('imagecms-module', true),
135
  array('imagecms-library', true),
136
+ array('itop-extension', true),
137
  array('joomla-library', true),
138
+ array('kanboard-plugin', true),
139
  array('kirby-plugin', true),
140
  array('kohana-module', true),
141
  array('laravel-library', true),
142
+ array('lavalite-theme', true),
143
+ array('lavalite-package', true),
144
  array('lithium-library', true),
145
  array('magento-library', true),
146
  array('mako-package', true),
164
  array('prestashop-module', true),
165
  array('prestashop-theme', true),
166
  array('puppet-module', true),
167
+ array('porto-container', true),
168
  array('radphp-bundle', true),
169
  array('redaxo-addon', true),
170
  array('redaxo-bestyle-plugin', true),
181
  array('silverstripe-theme', true),
182
  array('smf-module', true),
183
  array('smf-theme', true),
184
+ array('sydes-module', true),
185
+ array('sydes-theme', true),
186
  array('symfony1-plugin', true),
187
  array('thelia-module', true),
188
  array('thelia-frontoffice-template', true),
250
  array('cockpit-module', 'cockpit/modules/addons/My_module/', 'piotr-cz/cockpit-my_module'),
251
  array('codeigniter-library', 'application/libraries/my_package/', 'shama/my_package'),
252
  array('codeigniter-module', 'application/modules/my_package/', 'shama/my_package'),
253
+ array('concrete5-block', 'application/blocks/concrete5_block/', 'remo/concrete5_block'),
254
  array('concrete5-package', 'packages/concrete5_package/', 'remo/concrete5_package'),
255
+ array('concrete5-theme', 'application/themes/concrete5_theme/', 'remo/concrete5_theme'),
256
+ array('concrete5-core', 'concrete/', 'concrete5/core'),
257
  array('concrete5-update', 'updates/concrete5/', 'concrete5/concrete5'),
258
  array('craft-plugin', 'craft/plugins/my_plugin/', 'mdcpepper/my_plugin'),
259
  array('croogo-plugin', 'Plugin/Sitemaps/', 'fahad19/sitemaps'),
267
  array('drupal-profile', 'profiles/my_module/', 'shama/my_module'),
268
  array('drupal-drush', 'drush/my_module/', 'shama/my_module'),
269
  array('elgg-plugin', 'mod/sample_plugin/', 'test/sample_plugin'),
270
+ array('eliasis-module', 'modules/my_module/', 'shama/my_module'),
271
  array('ee3-addon', 'system/user/addons/ee_theme/', 'author/ee_theme'),
272
  array('ee3-theme', 'themes/user/ee_package/', 'author/ee_package'),
273
  array('ee2-addon', 'system/expressionengine/third_party/ee_theme/', 'author/ee_theme'),
281
  array('imagecms-template', 'templates/my_template/', 'shama/my_template'),
282
  array('imagecms-module', 'application/modules/my_module/', 'shama/my_module'),
283
  array('imagecms-library', 'application/libraries/my_library/', 'shama/my_library'),
284
+ array('itop-extension', 'extensions/my_extension/', 'shama/my_extension'),
285
  array('joomla-plugin', 'plugins/my_plugin/', 'shama/my_plugin'),
286
+ array('kanboard-plugin', 'plugins/my_plugin/', 'shama/my_plugin'),
287
  array('kirby-plugin', 'site/plugins/my_plugin/', 'shama/my_plugin'),
288
  array('kohana-module', 'modules/my_package/', 'shama/my_package'),
289
  array('laravel-library', 'libraries/my_package/', 'shama/my_package'),
290
+ array('lavalite-theme', 'public/themes/my_theme/', 'shama/my_theme'),
291
+ array('lavalite-package', 'packages/my_package/', 'shama/my_package'),
292
  array('lithium-library', 'libraries/li3_test/', 'user/li3_test'),
293
  array('magento-library', 'lib/foo/', 'test/foo'),
294
  array('modxevo-snippet', 'assets/snippets/my_snippet/', 'shama/my_snippet'),
319
  array('plentymarkets-plugin', 'HelloWorld/', 'plugin-hello-world'),
320
  array('ppi-module', 'modules/foo/', 'test/foo'),
321
  array('puppet-module', 'modules/puppet-name/', 'puppet/puppet-name'),
322
+ array('porto-container', 'app/Containers/container-name/', 'test/container-name'),
323
  array('radphp-bundle', 'src/Migration/', 'atkrad/migration'),
324
  array('redaxo-addon', 'redaxo/include/addons/my_plugin/', 'shama/my_plugin'),
325
  array('redaxo-bestyle-plugin', 'redaxo/include/addons/be_style/plugins/my_plugin/', 'shama/my_plugin'),
vendor/composer/installers/tests/Composer/Installers/Test/MayaInstallerTest.php ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\MayaInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+
8
+ class MayaInstallerTest extends \PHPUnit_Framework_TestCase
9
+ {
10
+ /**
11
+ * @var MayaInstaller
12
+ */
13
+ private $installer;
14
+
15
+ public function setUp()
16
+ {
17
+ $this->installer = new MayaInstaller(
18
+ new Package('NyanCat', '4.2', '4.2'),
19
+ new Composer()
20
+ );
21
+ }
22
+
23
+ /**
24
+ * @dataProvider packageNameInflectionProvider
25
+ */
26
+ public function testInflectPackageVars($type, $name, $expected)
27
+ {
28
+ $this->assertEquals(
29
+ array('name' => $expected, 'type' => $type),
30
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type))
31
+ );
32
+ }
33
+
34
+ public function packageNameInflectionProvider()
35
+ {
36
+ return array(
37
+ // Should keep module name StudlyCase
38
+ array(
39
+ 'maya-module',
40
+ 'user-profile',
41
+ 'UserProfile'
42
+ ),
43
+ array(
44
+ 'maya-module',
45
+ 'maya-module',
46
+ 'Maya'
47
+ ),
48
+ array(
49
+ 'maya-module',
50
+ 'blog',
51
+ 'Blog'
52
+ ),
53
+ // tests that exactly one '-module' is cut off
54
+ array(
55
+ 'maya-module',
56
+ 'some-module-module',
57
+ 'SomeModule',
58
+ ),
59
+ );
60
+ }
61
+ }
vendor/composer/installers/tests/Composer/Installers/Test/OntoWikiInstallerTest.php ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\OntoWikiInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+
8
+ /**
9
+ * Test for the OntoWikiInstaller
10
+ * code was taken from DokuWikiInstaller
11
+ */
12
+ class OntoWikiInstallerTest extends \PHPUnit_Framework_TestCase
13
+ {
14
+ /**
15
+ * @var OntoWikiInstaller
16
+ */
17
+ private $installer;
18
+
19
+ public function setUp()
20
+ {
21
+ $this->installer = new OntoWikiInstaller();
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ $this->installer->inflectPackageVars(array('name' => $name, 'type'=>$type)),
31
+ array('name' => $expected, 'type'=>$type)
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ array(
39
+ 'ontowiki-extension',
40
+ 'CSVImport.ontowiki',
41
+ 'csvimport',
42
+ ),
43
+ array(
44
+ 'ontowiki-extension',
45
+ 'csvimport',
46
+ 'csvimport',
47
+ ),
48
+ array(
49
+ 'ontowiki-extension',
50
+ 'some_ontowiki_extension',
51
+ 'some_ontowiki_extension',
52
+ ),
53
+ array(
54
+ 'ontowiki-extension',
55
+ 'some_ontowiki_extension.ontowiki',
56
+ 'some_ontowiki_extension',
57
+ ),
58
+ array(
59
+ 'ontowiki-translation',
60
+ 'de-translation.ontowiki',
61
+ 'de',
62
+ ),
63
+ array(
64
+ 'ontowiki-translation',
65
+ 'en-US-translation.ontowiki',
66
+ 'en-us',
67
+ ),
68
+ array(
69
+ 'ontowiki-translation',
70
+ 'en-US-translation',
71
+ 'en-us',
72
+ ),
73
+ array(
74
+ 'ontowiki-theme',
75
+ 'blue-theme.ontowiki',
76
+ 'blue',
77
+ ),
78
+ array(
79
+ 'ontowiki-theme',
80
+ 'blue-theme',
81
+ 'blue',
82
+ ),
83
+ );
84
+ }
85
+ }
vendor/composer/installers/tests/Composer/Installers/Test/SyDESInstallerTest.php ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\SyDESInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+
8
+ class SyDESInstallerTest extends \PHPUnit_Framework_TestCase
9
+ {
10
+ /**
11
+ * @var SyDESInstaller
12
+ */
13
+ private $installer;
14
+
15
+ public function setUp()
16
+ {
17
+ $this->installer = new SyDESInstaller(
18
+ new Package('NyanCat', '4.2', '4.2'),
19
+ new Composer()
20
+ );
21
+ }
22
+
23
+ /**
24
+ * @dataProvider packageNameInflectionProvider
25
+ */
26
+ public function testInflectPackageVars($type, $name, $expected)
27
+ {
28
+ $this->assertEquals(
29
+ array('name' => $expected, 'type' => $type),
30
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type))
31
+ );
32
+ }
33
+
34
+ public function packageNameInflectionProvider()
35
+ {
36
+ return array(
37
+ // modules
38
+ array(
39
+ 'sydes-module',
40
+ 'name',
41
+ 'Name'
42
+ ),
43
+ array(
44
+ 'sydes-module',
45
+ 'sample-name',
46
+ 'SampleName'
47
+ ),
48
+ array(
49
+ 'sydes-module',
50
+ 'sydes-name',
51
+ 'Name'
52
+ ),
53
+ array(
54
+ 'sydes-module',
55
+ 'sample-name-module',
56
+ 'SampleName',
57
+ ),
58
+ array(
59
+ 'sydes-module',
60
+ 'sydes-sample-name-module',
61
+ 'SampleName'
62
+ ),
63
+ // themes
64
+ array(
65
+ 'sydes-theme',
66
+ 'some-theme-theme',
67
+ 'some-theme',
68
+ ),
69
+ array(
70
+ 'sydes-theme',
71
+ 'sydes-sometheme',
72
+ 'sometheme',
73
+ ),
74
+ array(
75
+ 'sydes-theme',
76
+ 'Sample-Name',
77
+ 'sample-name'
78
+ ),
79
+ );
80
+ }
81
+ }
vendor/composer/installers/tests/Composer/Installers/Test/VgmcpInstallerTest.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\VgmcpInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+
8
+ class VgmcpInstallerTest extends \PHPUnit_Framework_TestCase
9
+ {
10
+ /**
11
+ * @var VgmcpInstaller
12
+ */
13
+ private $installer;
14
+
15
+ public function setUp()
16
+ {
17
+ $this->installer = new VgmcpInstaller(
18
+ new Package('NyanCat', '4.2', '4.2'),
19
+ new Composer()
20
+ );
21
+ }
22
+
23
+ /**
24
+ * @dataProvider packageNameInflectionProvider
25
+ */
26
+ public function testInflectPackageVars($type, $name, $expected)
27
+ {
28
+ $this->assertEquals(
29
+ array('name' => $expected, 'type' => $type),
30
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type))
31
+ );
32
+ }
33
+
34
+ public function packageNameInflectionProvider()
35
+ {
36
+ return array(
37
+ // Should keep bundle name StudlyCase
38
+ array(
39
+ 'vgmcp-bundle',
40
+ 'user-profile',
41
+ 'UserProfile'
42
+ ),
43
+ array(
44
+ 'vgmcp-bundle',
45
+ 'vgmcp-bundle',
46
+ 'Vgmcp'
47
+ ),
48
+ array(
49
+ 'vgmcp-bundle',
50
+ 'blog',
51
+ 'Blog'
52
+ ),
53
+ // tests that exactly one '-bundle' is cut off
54
+ array(
55
+ 'vgmcp-bundle',
56
+ 'some-bundle-bundle',
57
+ 'SomeBundle',
58
+ ),
59
+ // tests that exactly one '-theme' is cut off
60
+ array(
61
+ 'vgmcp-theme',
62
+ 'some-theme-theme',
63
+ 'SomeTheme',
64
+ ),
65
+ // tests that names without '-theme' suffix stay valid
66
+ array(
67
+ 'vgmcp-theme',
68
+ 'someothertheme',
69
+ 'Someothertheme',
70
+ ),
71
+ // Should keep theme name StudlyCase
72
+ array(
73
+ 'vgmcp-theme',
74
+ 'adminlte-advanced',
75
+ 'AdminlteAdvanced'
76
+ ),
77
+ );
78
+ }
79
+ }