AdRotate Banner Manager - Version 5.8.21

Version Description

Enjoy this update with the latest tweaks and improvements for AdRotate for WordPress!

Download this release

Release Info

Developer adegans
Plugin Icon 128x128 AdRotate Banner Manager
Version 5.8.21
Comparing to
See all releases

Code changes from version 5.8.20 to 5.8.21

adrotate-functions.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
@@ -23,6 +23,19 @@ function adrotate_is_networked() {
23
  return false;
24
  }
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  /*-------------------------------------------------------------
27
  Name: adrotate_is_human
28
  Purpose: Check if visitor is a bot
@@ -344,9 +357,9 @@ function adrotate_evaluate_ad($ad_id) {
344
  // Determine error states
345
  if(
346
  strlen($bannercode) < 1 // AdCode empty
347
- OR (!preg_match_all('/<(a|embed|iframe)[^>](.*?)>/i', $bannercode, $things) AND $ad->tracker == 'Y') // Clicktracking active but no valid link/tag present
348
- OR (preg_match_all("/(%image%|%asset%)/i", $bannercode, $things) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
349
- OR (!preg_match_all("/(%image%|%asset%)/i", $bannercode, $things) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
350
  OR (($ad->image == '' AND $ad->imagetype != '') OR ($ad->image != '' AND $ad->imagetype == '')) // Image and Imagetype mismatch
351
  OR $schedules == 0 // No Schedules for this ad
352
  ) {
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
23
  return false;
24
  }
25
 
26
+ /*-------------------------------------------------------------
27
+ Name: adrotate_is_classicpress
28
+ Purpose: Check if ClassicPress is a thing
29
+ Since: 5.8.21
30
+ -------------------------------------------------------------*/
31
+ function adrotate_is_classicpress() {
32
+ if(function_exists('classicpress_version')) {
33
+ return true;
34
+ } else {
35
+ return false;
36
+ }
37
+ }
38
+
39
  /*-------------------------------------------------------------
40
  Name: adrotate_is_human
41
  Purpose: Check if visitor is a bot
357
  // Determine error states
358
  if(
359
  strlen($bannercode) < 1 // AdCode empty
360
+ OR ((!preg_match_all('/<(a)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($ad->bannercode, ENT_QUOTES)), $things) OR preg_match_all('/<(ins|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($ad->bannercode, ENT_QUOTES)), $things)) AND $ad->tracker == 'Y') // Stats active but no valid link/tag present
361
+ OR (preg_match_all("/(%asset%)/i", $bannercode, $things) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
362
+ OR (!preg_match_all("/(%asset%)/i", $bannercode, $things) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
363
  OR (($ad->image == '' AND $ad->imagetype != '') OR ($ad->image != '' AND $ad->imagetype == '')) // Image and Imagetype mismatch
364
  OR $schedules == 0 // No Schedules for this ad
365
  ) {
adrotate-manage-publisher.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
@@ -68,10 +68,10 @@ function adrotate_generate_input() {
68
  $wpdb->update($wpdb->prefix.'adrotate', array('title' => $portability['title'], 'bannercode' => $portability['bannercode'], 'thetime' => $portability['thetime'], 'updated' => current_time('timestamp'), 'author' => $portability['author'], 'imagetype' => $portability['imagetype'], 'image' => $portability['image'], 'tracker' => $portability['tracker'], 'show_everyone' => $portability['show_everyone'], 'desktop' => $portability['desktop'], 'mobile' => $portability['mobile'], 'tablet' => $portability['tablet'], 'os_ios' => $portability['os_ios'], 'os_android' => $portability['os_android'], 'os_other' => $portability['os_other'], 'weight' => $portability['weight'], 'autodelete' => $portability['autodelete'], 'budget' => $portability['budget'], 'crate' => $portability['crate'], 'irate' => $portability['irate'], 'state_req' => $portability['state_req'], 'cities' => $portability['cities'], 'states' => $portability['states'], 'countries' => $portability['countries']), array('id' => $id));
69
  }
70
 
71
- adrotate_return('adrotate-ads', 226, array('view' => 'edit', 'ad'=> $id));
72
  exit;
73
  } else {
74
- adrotate_return('adrotate-ads', 500);
75
  }
76
  } else {
77
  adrotate_nonce_error();
@@ -232,10 +232,10 @@ function adrotate_insert_input() {
232
  adrotate_prepare_evaluate_ads(false);
233
  }
234
 
235
- adrotate_return('adrotate-ads', 200);
236
  exit;
237
  } else {
238
- adrotate_return('adrotate-ads', 500);
239
  }
240
  } else {
241
  adrotate_nonce_error();
@@ -582,7 +582,7 @@ function adrotate_request_action() {
582
  }
583
 
584
  if($banner_ids != '') {
585
- $return = 'adrotate-ads';
586
  if($action == 'export') {
587
  if(current_user_can('adrotate_ad_manage')) {
588
  adrotate_export($banner_ids);
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
68
  $wpdb->update($wpdb->prefix.'adrotate', array('title' => $portability['title'], 'bannercode' => $portability['bannercode'], 'thetime' => $portability['thetime'], 'updated' => current_time('timestamp'), 'author' => $portability['author'], 'imagetype' => $portability['imagetype'], 'image' => $portability['image'], 'tracker' => $portability['tracker'], 'show_everyone' => $portability['show_everyone'], 'desktop' => $portability['desktop'], 'mobile' => $portability['mobile'], 'tablet' => $portability['tablet'], 'os_ios' => $portability['os_ios'], 'os_android' => $portability['os_android'], 'os_other' => $portability['os_other'], 'weight' => $portability['weight'], 'autodelete' => $portability['autodelete'], 'budget' => $portability['budget'], 'crate' => $portability['crate'], 'irate' => $portability['irate'], 'state_req' => $portability['state_req'], 'cities' => $portability['cities'], 'states' => $portability['states'], 'countries' => $portability['countries']), array('id' => $id));
69
  }
70
 
71
+ adrotate_return('adrotate', 226, array('view' => 'edit', 'ad'=> $id));
72
  exit;
73
  } else {
74
+ adrotate_return('adrotate', 500);
75
  }
76
  } else {
77
  adrotate_nonce_error();
232
  adrotate_prepare_evaluate_ads(false);
233
  }
234
 
235
+ adrotate_return('adrotate', 200);
236
  exit;
237
  } else {
238
+ adrotate_return('adrotate', 500);
239
  }
240
  } else {
241
  adrotate_nonce_error();
582
  }
583
 
584
  if($banner_ids != '') {
585
+ $return = 'adrotate';
586
  if($action == 'export') {
587
  if(current_user_can('adrotate_ad_manage')) {
588
  adrotate_export($banner_ids);
adrotate-output.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
@@ -394,7 +394,7 @@ function adrotate_preview($banner_id) {
394
  Purpose: Prepare the output for viewing
395
  Since: 3.0
396
  -------------------------------------------------------------*/
397
- function adrotate_ad_output($id, $group = 0, $name, $bannercode, $tracker, $image) {
398
  global $blog_id, $adrotate_config;
399
 
400
  $banner_output = $bannercode;
@@ -618,14 +618,14 @@ function adrotate_dashboard_error() {
618
 
619
  if($adrotate_notifications['notification_dash'] == "Y") {
620
  if($status['expired'] > 0 AND $adrotate_notifications['notification_dash_expired'] == "Y") {
621
- $error['advert_expired'] = sprintf(_n('One advert is expired.', '%1$s adverts expired!', $status['expired'], 'adrotate'), $status['expired']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate').'</a>!';
622
  }
623
  if($status['expiressoon'] > 0 AND $adrotate_notifications['notification_dash_soon'] == "Y") {
624
- $error['advert_soon'] = sprintf(_n('One advert expires soon.', '%1$s adverts are almost expiring!', $status['expiressoon'], 'adrotate'), $status['expiressoon']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate').'</a>!';
625
  }
626
  }
627
  if($status['error'] > 0) {
628
- $error['advert_config'] = sprintf(_n('One advert with configuration errors.', '%1$s adverts have configuration errors!', $status['error'], 'adrotate'), $status['error']).' <a href="'.admin_url('admin.php?page=adrotate-ads').'">'.__('Check adverts', 'adrotate').'</a>!';
629
  }
630
 
631
  // Caching
@@ -687,7 +687,12 @@ function adrotate_notifications_dashboard() {
687
  if($getpro_banner < current_time('timestamp')) {
688
  echo '<div class="ajdg-notification notice">';
689
  echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
690
- echo ' <div class="ajdg-notification-message">Hello <strong>'.$displayname.'</strong>. Have you considered upgrading to <strong>AdRotate Professional</strong> yet?<br />Get extra features like Geo Targeting, Scheduling, mobile adverts, access to premium support and much more starting at only &euro;39 EUR.<br />Use coupon code <strong>getadrotatepro</strong> and get a 10% discount on any <strong>AdRotate Professional</strong> license! Thank you for your consideration!</div>';
 
 
 
 
 
691
  echo ' <div class="ajdg-notification-cta">';
692
  echo ' <a href="'.admin_url('admin.php?page=adrotate-pro').'" class="ajdg-notification-act button-primary">Get AdRotate Pro</a>';
693
  echo ' <a href="'.admin_url('admin.php?page=adrotate').'&hide=0" class="ajdg-notification-dismiss">Maybe later</a>';
@@ -796,8 +801,7 @@ function adrotate_help_info() {
796
  '<p>AdRotate is one of the most popular WordPress plugins for Advertising and is a household name for many companies and websites around the world. AdRotate would not be possible without your support and my life would definitely not be what it is today without your help!</p><p><em>- Arnan</em></p>'.
797
 
798
  '<p>Visit <a href="https://ajdg.solutions/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">ajdg.solutions</a> website for more plugins and services related to WordPress and WooCommerce.<br />'.
799
- 'If you are curious who makes AdRotate please take a look at <a href="http://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">arnan.me</a>, my profile website.<br />'.
800
- 'Or, if you want to have a chat, have questions about my plugins or what I do, feel free to send a message through <a href="https://t.me/arnandegans" target="_blank">Telegram</a>, <a href="https://www.twitter.com/arnandegans/" target="_blank">Twitter</a> or <a href="https://linkedin.com/in/arnandegans/" target="_blank">LinkedIn</a>.</p>'
801
  )
802
  );
803
  $screen->add_help_tab(array(
@@ -807,8 +811,7 @@ function adrotate_help_info() {
807
  '<p>Everyone needs a little help sometimes. I have created guides and manuals for all popular AdRotate features. You can also find many answers on on the Support Forum.<br />'.
808
  'All the relevant links to getting help and the Professional Services I offer can be found below, and on the <a href="'.admin_url('admin.php?page=adrotate-support').'">Support dashboard</a>.</p>'.
809
 
810
- '<p>Take a look at the <a href="https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">AdRotate Manuals</a> and the <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">Support Forum</a>.<br />'.
811
- 'Or if you are not in the mood for the forums, you cna ask your question via <a href="https://t.me/arnandegans" target="_blank">Telegram</a>.</p>'.
812
  '<p>Also check out these <a href="https://ajdg.solutions/recommended-products/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">products and services</a> I love and recommend, if you are in the market for better hosting, a new domain name or SSL certificates and similar products.</p>'
813
  )
814
  );
@@ -834,21 +837,34 @@ function adrotate_action_links($links) {
834
  Since: 3.7
835
  -------------------------------------------------------------*/
836
  function adrotate_credits() {
837
- echo '<table class="widefat" style="margin-top: .5em">';
838
 
839
  echo '<thead>';
840
  echo '<tr valign="top">';
841
  echo ' <th width="35%"><strong>'.__('Need help fast? Or do you have a question?', 'adrotate').'</strong></th>';
842
  echo ' <th width="35%"><strong>'.__('Help AdRotate Grow', 'adrotate').'</strong></th>';
843
- echo ' <th><strong>'.__('More features with AdRotate Pro', 'adrotate').'</strong></th>';
844
  echo '</tr>';
845
  echo '</thead>';
846
 
847
  echo '<tbody>';
848
  echo '<tr>';
849
- echo '<td><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=credits" title="Getting help with AdRotate"><img src="'.plugins_url('/images/icon-support.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a>If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=credits" target="_blank"><strong>AdRotate support forum</strong></a> or by sending a <a href="https://t.me/arnandegans" target="_blank"><strong>message through Telegram</strong></a>. Usually I answer questions the same day, often with a solution in the first answer.</td>';
850
- echo '<td><a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" title="Review AdRotate for WordPress"><img src="'.plugins_url('/images/icon-contact.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a>'.__("Many users only think to review AdRotate when something goes wrong while thousands of people happily use AdRotate.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
851
- echo '<td><a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=credits" title="Upgrade to AdRotate Pro"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" alt="AdRotate Pro for WordPress" width="60" height="60" align="left" style="padding:5px;" /></a>'.__('Get more advanced features such as Geo Targeting, scheduling and much more with AdRotate Pro.', 'adrotate').' '.__('Get access to premium support and free updates for one year!', 'adrotate').' <strong>So why wait? <a href="'.admin_url('admin.php?page=adrotate-pro').'" title="Get AdRotate Pro for WordPress">'.__('Upgrade today', 'adrotate').' &raquo;</a></strong></td>';
 
 
 
 
 
 
 
 
 
 
 
 
 
852
 
853
  echo '</tr>';
854
  echo '</tbody>';
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
394
  Purpose: Prepare the output for viewing
395
  Since: 3.0
396
  -------------------------------------------------------------*/
397
+ function adrotate_ad_output($id, $group, $name, $bannercode, $tracker, $image) {
398
  global $blog_id, $adrotate_config;
399
 
400
  $banner_output = $bannercode;
618
 
619
  if($adrotate_notifications['notification_dash'] == "Y") {
620
  if($status['expired'] > 0 AND $adrotate_notifications['notification_dash_expired'] == "Y") {
621
+ $error['advert_expired'] = sprintf(_n('One advert is expired.', '%1$s adverts expired!', $status['expired'], 'adrotate'), $status['expired']).' <a href="'.admin_url('admin.php?page=adrotate').'">'.__('Check adverts', 'adrotate').'</a>!';
622
  }
623
  if($status['expiressoon'] > 0 AND $adrotate_notifications['notification_dash_soon'] == "Y") {
624
+ $error['advert_soon'] = sprintf(_n('One advert expires soon.', '%1$s adverts are almost expiring!', $status['expiressoon'], 'adrotate'), $status['expiressoon']).' <a href="'.admin_url('admin.php?page=adrotate').'">'.__('Check adverts', 'adrotate').'</a>!';
625
  }
626
  }
627
  if($status['error'] > 0) {
628
+ $error['advert_config'] = sprintf(_n('One advert with configuration errors.', '%1$s adverts have configuration errors!', $status['error'], 'adrotate'), $status['error']).' <a href="'.admin_url('admin.php?page=adrotate').'">'.__('Check adverts', 'adrotate').'</a>!';
629
  }
630
 
631
  // Caching
687
  if($getpro_banner < current_time('timestamp')) {
688
  echo '<div class="ajdg-notification notice">';
689
  echo ' <div class="ajdg-notification-logo" style="background-image: url(\''.plugins_url('/images/notification.png', __FILE__).'\');"><span></span></div>';
690
+ echo ' <div class="ajdg-notification-message">Hello <strong>'.$displayname.'</strong>. Have you considered upgrading to <strong>AdRotate Professional</strong> yet?<br />Get extra features like Geo Targeting, Scheduling, mobile adverts, access to premium support and much more starting at only &euro;39 EUR.<br />';
691
+ if(adrotate_is_classicpress()) {
692
+ echo ' Use coupon code <strong>GOTCLASSICPRESS</strong> and get a 20% special ClassicPress discount on any <strong>AdRotate Professional</strong> license! Thank you for your consideration!</div>';
693
+ } else {
694
+ echo ' Use coupon code <strong>GETADROTATEPRO</strong> and get a 10% discount on any <strong>AdRotate Professional</strong> license! Thank you for your consideration!</div>';
695
+ }
696
  echo ' <div class="ajdg-notification-cta">';
697
  echo ' <a href="'.admin_url('admin.php?page=adrotate-pro').'" class="ajdg-notification-act button-primary">Get AdRotate Pro</a>';
698
  echo ' <a href="'.admin_url('admin.php?page=adrotate').'&hide=0" class="ajdg-notification-dismiss">Maybe later</a>';
801
  '<p>AdRotate is one of the most popular WordPress plugins for Advertising and is a household name for many companies and websites around the world. AdRotate would not be possible without your support and my life would definitely not be what it is today without your help!</p><p><em>- Arnan</em></p>'.
802
 
803
  '<p>Visit <a href="https://ajdg.solutions/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">ajdg.solutions</a> website for more plugins and services related to WordPress and WooCommerce.<br />'.
804
+ 'If you are curious who makes AdRotate please take a look at <a href="http://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">arnan.me</a>, my profile website.</p>'
 
805
  )
806
  );
807
  $screen->add_help_tab(array(
811
  '<p>Everyone needs a little help sometimes. I have created guides and manuals for all popular AdRotate features. You can also find many answers on on the Support Forum.<br />'.
812
  'All the relevant links to getting help and the Professional Services I offer can be found below, and on the <a href="'.admin_url('admin.php?page=adrotate-support').'">Support dashboard</a>.</p>'.
813
 
814
+ '<p>Take a look at the <a href="https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">AdRotate Manuals</a> and the <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">Support Forum</a>.</p>'.
 
815
  '<p>Also check out these <a href="https://ajdg.solutions/recommended-products/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">products and services</a> I love and recommend, if you are in the market for better hosting, a new domain name or SSL certificates and similar products.</p>'
816
  )
817
  );
837
  Since: 3.7
838
  -------------------------------------------------------------*/
839
  function adrotate_credits() {
840
+ echo '<table class="widefat" style="margin-top: 2em">';
841
 
842
  echo '<thead>';
843
  echo '<tr valign="top">';
844
  echo ' <th width="35%"><strong>'.__('Need help fast? Or do you have a question?', 'adrotate').'</strong></th>';
845
  echo ' <th width="35%"><strong>'.__('Help AdRotate Grow', 'adrotate').'</strong></th>';
846
+ echo ' <th><strong>'.__('Get more features with AdRotate Pro', 'adrotate').'</strong></th>';
847
  echo '</tr>';
848
  echo '</thead>';
849
 
850
  echo '<tbody>';
851
  echo '<tr>';
852
+ echo '<td><a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=credits" title="Getting help with AdRotate"><img src="'.plugins_url('/images/icon-support.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a><p>'.__('If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the AdRotate support forum. Usually I answer questions the same day, often with a solution in the first answer.').'</p>
853
+ <p><center><a href="https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=manuals_link" target="_blank" class="button-primary">'.__('AdRotate Manuals').'</a> <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=forums_link" target="_blank" class="button-primary">'.__('Support Forums').'</a></center></p>
854
+ <p>'.__('When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise.').'</p></td>';
855
+
856
+ echo '<td><a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" title="Review AdRotate for WordPress"><img src="'.plugins_url('/images/icon-contact.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a><p>'.__('Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development.').'</p>
857
+ <p><center><a href="https://twitter.com/intent/tweet?hashtags=wordpress%2Cplugin%2Cadvertising%2Cadrotate&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20for%20WordPress%20by%20@arnandegans.%20Check%20it%20out.&url=https%3A%2F%2Fwordpress.org/plugins/adrotate/" target="_blank" class="button-primary goosebox"><i class="icn-t"></i>'.__('Post Tweet').'</a> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadrotate%2F&hashtag=#adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>'.__('Share on Facebook').'</a> <a class="button-primary" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">'.__('Write review on WordPress.org').'</a></center></p>
858
+ <p><em>- '.__('Thank you very much for your help and support!').'</em></p></td>';
859
+
860
+
861
+ // echo '<td><a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" title="Review AdRotate for WordPress"><img src="'.plugins_url('/images/icon-contact.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a>'.__("Many users only think to review AdRotate when something goes wrong while thousands of people happily use AdRotate.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
862
+
863
+ echo '<td><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=buy_pro" target="_blank"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" class="alignleft pro-image" /></a><p>'.__('AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!', 'adrotate').' <a href="https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=credits" target="_blank">'.__('Compare Licenses', 'adrotate').' &raquo;</a></p>
864
+ <p><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=single" target="_blank"><strong>'.__('Single License', 'adrotate').' (&euro; 39.00)</strong></a><br /><em>'.__('Use on ONE WordPress installation.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=credits&pk_content=single" target="_blank">'.__('Buy now', 'adrotate').' &raquo;</a></em></p>
865
+ <p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=multi" target="_blank"><strong>'.__('Multi License', 'adrotate').' (&euro; 99.00)</strong></a><br /><em>'.__('Use on up to FIVE WordPress installations.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=credits&pk_content=multi" target="_blank">'.__('Buy now', 'adrotate').' &raquo;</a></em></p></td>';
866
+
867
+ // echo '<td><a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=credits" title="Upgrade to AdRotate Pro"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" alt="AdRotate Pro for WordPress" width="60" height="60" align="left" style="padding:5px;" /></a>'.__('Get more advanced features such as Geo Targeting, scheduling and much more with AdRotate Pro.', 'adrotate').' '.__('Get access to premium support and free updates for one year!', 'adrotate').' <strong>So why wait? <a href="'.admin_url('admin.php?page=adrotate-pro').'" title="Get AdRotate Pro for WordPress">'.__('Upgrade today', 'adrotate').' &raquo;</a></strong></td>';
868
 
869
  echo '</tr>';
870
  echo '</tbody>';
adrotate-portability.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
@@ -75,11 +75,11 @@ function adrotate_export_ads($ids) {
75
 
76
  fclose($fp);
77
 
78
- adrotate_return('adrotate-ads', 215, array('file' => $filename));
79
  exit;
80
  }
81
  } else {
82
- adrotate_return('adrotate-ads', 509);
83
  }
84
  }
85
 
@@ -114,11 +114,11 @@ function adrotate_portable_hash($action, $data, $what = 'advert') {
114
  } else if($data['meta']['type'] == 'schedule') {
115
  // maybe
116
  } else {
117
- adrotate_return('adrotate-ads', 514);
118
  }
119
  }
120
  }
121
- adrotate_return('adrotate-ads', 513);
122
  }
123
 
124
  }
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
75
 
76
  fclose($fp);
77
 
78
+ adrotate_return('adrotate', 215, array('file' => $filename));
79
  exit;
80
  }
81
  } else {
82
+ adrotate_return('adrotate', 509);
83
  }
84
  }
85
 
114
  } else if($data['meta']['type'] == 'schedule') {
115
  // maybe
116
  } else {
117
+ adrotate_return('adrotate', 514);
118
  }
119
  }
120
  }
121
+ adrotate_return('adrotate', 513);
122
  }
123
 
124
  }
adrotate-setup.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
adrotate-statistics.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
@@ -177,7 +177,7 @@ function adrotate_stats_nav($type, $id, $month, $year) {
177
  Return: $output
178
  Since: 3.8
179
  -------------------------------------------------------------*/
180
- function adrotate_stats_graph($type, $archive = false, $id, $chartid, $start, $end, $height = 300) {
181
  global $wpdb;
182
 
183
  $table = 'adrotate_stats';
@@ -218,7 +218,7 @@ function adrotate_stats_graph($type, $archive = false, $id, $chartid, $start, $e
218
  $impressions = trim($impressions, ",");
219
 
220
  $output = '';
221
- $output .= '<div id="chart-'.$chartid.'" style="height:'.$height.'px; width:100%;"></div>';
222
  $output .= adrotate_draw_graph($chartid, $dates, $clicks, $impressions);
223
  unset($stats, $graph, $dates, $clicks, $impressions);
224
  } else {
@@ -423,36 +423,34 @@ function adrotate_archive_stats($id) {
423
  function adrotate_count_impression($ad, $group = 0, $blog_id = 0) {
424
  global $wpdb, $adrotate_config;
425
 
426
- if(($adrotate_config['enable_loggedin_impressions'] == 'Y' AND is_user_logged_in()) OR !is_user_logged_in()) {
427
- $now = current_time('timestamp');
428
- $today = adrotate_date_start('day');
429
- $remote_ip = adrotate_get_remote_ip();
430
-
431
- if($blog_id > 0 AND adrotate_is_networked()) {
432
- $current_blog = $wpdb->blogid;
433
- switch_to_blog($blog_id);
434
- }
435
 
436
- $impression_timer = $now - $adrotate_config['impression_timer'];
 
 
 
437
 
438
- if($remote_ip != "unknown" AND !empty($remote_ip)) {
439
- $saved_timer = $wpdb->get_var($wpdb->prepare("SELECT `timer` FROM `{$wpdb->prefix}adrotate_tracker` WHERE `ipaddress` = '%s' AND `stat` = 'i' AND `bannerid` = %d ORDER BY `timer` DESC LIMIT 1;", $remote_ip, $ad));
440
- if($saved_timer < $impression_timer AND adrotate_is_human()) {
441
- $stats = $wpdb->get_var($wpdb->prepare("SELECT `id` FROM `{$wpdb->prefix}adrotate_stats` WHERE `ad` = %d AND `group` = %d AND `thetime` = {$today};", $ad, $group));
442
- if($stats > 0) {
443
- $wpdb->query("UPDATE `{$wpdb->prefix}adrotate_stats` SET `impressions` = `impressions` + 1 WHERE `id` = {$stats};");
444
- } else {
445
- $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'thetime' => $today, 'clicks' => 0, 'impressions' => 1));
446
- }
447
 
448
- $wpdb->insert($wpdb->prefix."adrotate_tracker", array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'i'));
 
 
 
 
 
 
 
449
  }
450
- }
451
 
452
- if($blog_id > 0 AND adrotate_is_networked()) {
453
- switch_to_blog($current_blog);
454
  }
455
  }
 
 
 
 
456
  }
457
 
458
  /*-------------------------------------------------------------
@@ -503,29 +501,27 @@ function adrotate_click_callback() {
503
  switch_to_blog($blog_id);
504
  }
505
 
506
- if(($adrotate_config['enable_loggedin_clicks'] == 'Y' AND is_user_logged_in()) OR !is_user_logged_in()) {
507
- $remote_ip = adrotate_get_remote_ip();
508
-
509
- if(adrotate_is_human() AND $remote_ip != "unknown" AND !empty($remote_ip)) {
510
- $now = current_time('timestamp');
511
- $today = adrotate_date_start('day');
512
- $click_timer = $now - $adrotate_config['click_timer'];
513
 
514
- $saved_timer = $wpdb->get_var($wpdb->prepare("SELECT `timer` FROM `{$wpdb->prefix}adrotate_tracker` WHERE `ipaddress` = '%s' AND `stat` = 'c' AND `bannerid` = %d ORDER BY `timer` DESC LIMIT 1;", $remote_ip, $ad));
515
- if($saved_timer < $click_timer) {
516
- $stats = $wpdb->get_var($wpdb->prepare("SELECT `id` FROM `{$wpdb->prefix}adrotate_stats` WHERE `ad` = %d AND `group` = %d AND `thetime` = {$today};", $ad, $group));
517
- if($stats > 0) {
518
- $wpdb->query("UPDATE `{$wpdb->prefix}adrotate_stats` SET `clicks` = `clicks` + 1 WHERE `id` = {$stats};");
519
- } else {
520
- $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'thetime' => $today, 'clicks' => 1, 'impressions' => 1));
521
- }
522
 
523
- $wpdb->insert($wpdb->prefix.'adrotate_tracker', array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'c'));
 
 
 
 
 
 
524
  }
525
 
526
- // Advertising budget
527
- $wpdb->query("UPDATE `{$wpdb->prefix}adrotate` SET `budget` = `budget` - `crate` WHERE `id` = {$ad} AND `crate` > 0;");
528
  }
 
 
 
529
  }
530
 
531
  if($blog_id > 0 AND adrotate_is_networked()) {
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  /*-------------------------------------------------------------
177
  Return: $output
178
  Since: 3.8
179
  -------------------------------------------------------------*/
180
+ function adrotate_stats_graph($type, $archive, $id, $chartid, $start, $end) {
181
  global $wpdb;
182
 
183
  $table = 'adrotate_stats';
218
  $impressions = trim($impressions, ",");
219
 
220
  $output = '';
221
+ $output .= '<div id="chart-'.$chartid.'" style="height:300px; width:100%;"></div>';
222
  $output .= adrotate_draw_graph($chartid, $dates, $clicks, $impressions);
223
  unset($stats, $graph, $dates, $clicks, $impressions);
224
  } else {
423
  function adrotate_count_impression($ad, $group = 0, $blog_id = 0) {
424
  global $wpdb, $adrotate_config;
425
 
426
+ $now = current_time('timestamp');
427
+ $today = adrotate_date_start('day');
428
+ $remote_ip = adrotate_get_remote_ip();
 
 
 
 
 
 
429
 
430
+ if($blog_id > 0 AND adrotate_is_networked()) {
431
+ $current_blog = $wpdb->blogid;
432
+ switch_to_blog($blog_id);
433
+ }
434
 
435
+ $impression_timer = $now - $adrotate_config['impression_timer'];
 
 
 
 
 
 
 
 
436
 
437
+ if($remote_ip != "unknown" AND !empty($remote_ip)) {
438
+ $saved_timer = $wpdb->get_var($wpdb->prepare("SELECT `timer` FROM `{$wpdb->prefix}adrotate_tracker` WHERE `ipaddress` = '%s' AND `stat` = 'i' AND `bannerid` = %d ORDER BY `timer` DESC LIMIT 1;", $remote_ip, $ad));
439
+ if($saved_timer < $impression_timer AND adrotate_is_human()) {
440
+ $stats = $wpdb->get_var($wpdb->prepare("SELECT `id` FROM `{$wpdb->prefix}adrotate_stats` WHERE `ad` = %d AND `group` = %d AND `thetime` = {$today};", $ad, $group));
441
+ if($stats > 0) {
442
+ $wpdb->query("UPDATE `{$wpdb->prefix}adrotate_stats` SET `impressions` = `impressions` + 1 WHERE `id` = {$stats};");
443
+ } else {
444
+ $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'thetime' => $today, 'clicks' => 0, 'impressions' => 1));
445
  }
 
446
 
447
+ $wpdb->insert($wpdb->prefix."adrotate_tracker", array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'i'));
 
448
  }
449
  }
450
+
451
+ if($blog_id > 0 AND adrotate_is_networked()) {
452
+ switch_to_blog($current_blog);
453
+ }
454
  }
455
 
456
  /*-------------------------------------------------------------
501
  switch_to_blog($blog_id);
502
  }
503
 
504
+ $remote_ip = adrotate_get_remote_ip();
 
 
 
 
 
 
505
 
506
+ if(adrotate_is_human() AND $remote_ip != "unknown" AND !empty($remote_ip)) {
507
+ $now = current_time('timestamp');
508
+ $today = adrotate_date_start('day');
509
+ $click_timer = $now - $adrotate_config['click_timer'];
 
 
 
 
510
 
511
+ $saved_timer = $wpdb->get_var($wpdb->prepare("SELECT `timer` FROM `{$wpdb->prefix}adrotate_tracker` WHERE `ipaddress` = '%s' AND `stat` = 'c' AND `bannerid` = %d ORDER BY `timer` DESC LIMIT 1;", $remote_ip, $ad));
512
+ if($saved_timer < $click_timer) {
513
+ $stats = $wpdb->get_var($wpdb->prepare("SELECT `id` FROM `{$wpdb->prefix}adrotate_stats` WHERE `ad` = %d AND `group` = %d AND `thetime` = {$today};", $ad, $group));
514
+ if($stats > 0) {
515
+ $wpdb->query("UPDATE `{$wpdb->prefix}adrotate_stats` SET `clicks` = `clicks` + 1 WHERE `id` = {$stats};");
516
+ } else {
517
+ $wpdb->insert($wpdb->prefix.'adrotate_stats', array('ad' => $ad, 'group' => $group, 'thetime' => $today, 'clicks' => 1, 'impressions' => 1));
518
  }
519
 
520
+ $wpdb->insert($wpdb->prefix.'adrotate_tracker', array('ipaddress' => $remote_ip, 'timer' => $now, 'bannerid' => $ad, 'stat' => 'c'));
 
521
  }
522
+
523
+ // Advertising budget
524
+ $wpdb->query("UPDATE `{$wpdb->prefix}adrotate` SET `budget` = `budget` - `crate` WHERE `id` = {$ad} AND `crate` > 0;");
525
  }
526
 
527
  if($blog_id > 0 AND adrotate_is_networked()) {
adrotate.php CHANGED
@@ -3,10 +3,10 @@
3
  Plugin Name: AdRotate
4
  Plugin URI: https://ajdg.solutions/product/adrotate-banner-manager/?pk_campaign=adrotatefree&pk_keyword=plugin_info
5
  Author: Arnan de Gans
6
- Author URI: http://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=plugin_info
7
  Description: Monetize your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
- Version: 5.8.20
10
  License: GPLv3
11
  */
12
 
@@ -21,7 +21,7 @@ License: GPLv3
21
  ------------------------------------------------------------------------------------ */
22
 
23
  /*--- AdRotate values ---------------------------------------*/
24
- define("ADROTATE_DISPLAY", '5.8.20');
25
  define("ADROTATE_VERSION", 399);
26
  define("ADROTATE_DB_VERSION", 66);
27
  $plugin_folder = plugin_dir_path(__FILE__);
@@ -101,47 +101,26 @@ if(is_admin()) {
101
  function adrotate_dashboard() {
102
  $adrotate_page = $adrotate_pro = $adrotate_adverts = $adrotate_groups = $adrotate_settings = '';
103
 
104
- add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_info', plugins_url('/images/icon-menu.png', __FILE__), '25.8');
105
- $adrotate_page = add_submenu_page('adrotate', 'AdRotate · '.__('General Info', 'adrotate'), __('General Info', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_info');
106
- $adrotate_pro = add_submenu_page('adrotate', 'AdRotate · '.__('Get AdRotate Pro', 'adrotate'), __('Get AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
107
- $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Adverts', 'adrotate'), __('Manage Adverts', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
108
  $adrotate_groups = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
109
  $adrotate_schedules = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
110
  $adrotate_media = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
111
  $adrotate_statistics = add_submenu_page('adrotate', 'AdRotate · '.__('Statistics', 'adrotate'), __('Statistics', 'adrotate'), 'adrotate_ad_manage', 'adrotate-statistics', 'adrotate_statistics');
 
112
  $adrotate_support = add_submenu_page('adrotate', 'AdRotate · '.__('Support', 'adrotate'), __('Support', 'adrotate'), 'manage_options', 'adrotate-support', 'adrotate_support');
113
  $adrotate_settings = add_submenu_page('adrotate', 'AdRotate · '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
114
 
115
  // Add help tabs
116
- add_action('load-'.$adrotate_page, 'adrotate_help_info');
117
- add_action('load-'.$adrotate_pro, 'adrotate_help_info');
118
  add_action('load-'.$adrotate_adverts, 'adrotate_help_info');
119
  add_action('load-'.$adrotate_groups, 'adrotate_help_info');
120
  add_action('load-'.$adrotate_schedules, 'adrotate_help_info');
121
  add_action('load-'.$adrotate_media, 'adrotate_help_info');
122
  add_action('load-'.$adrotate_statistics, 'adrotate_help_info');
 
123
  add_action('load-'.$adrotate_settings, 'adrotate_help_info');
124
  }
125
 
126
- /*-------------------------------------------------------------
127
- Name: adrotate_info
128
- Purpose: Admin general info page
129
- -------------------------------------------------------------*/
130
- function adrotate_info() {
131
- global $wpdb;
132
- ?>
133
- <div class="wrap">
134
- <h1><?php _e('AdRotate Info', 'adrotate'); ?></h1>
135
-
136
- <br class="clear" />
137
-
138
- <?php include("dashboard/info.php"); ?>
139
-
140
- <br class="clear" />
141
- </div>
142
- <?php
143
- }
144
-
145
  /*-------------------------------------------------------------
146
  Name: adrotate_pro
147
  Purpose: AdRotate Pro Sales
@@ -253,9 +232,10 @@ function adrotate_manage() {
253
 
254
  <div class="tablenav">
255
  <div class="alignleft actions">
256
- <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-ads');?>"><?php _e('Manage', 'adrotate'); ?></a>
257
- &nbsp;|&nbsp;<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=generator');?>"><?php _e('Advert Generator', 'adrotate'); ?></a>
258
- &nbsp;|&nbsp;<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=addnew');?>"><?php _e('New Advert', 'adrotate'); ?></a>
 
259
  </div>
260
  </div>
261
 
@@ -324,8 +304,9 @@ function adrotate_manage_group() {
324
 
325
  <div class="tablenav">
326
  <div class="alignleft actions">
327
- <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=manage');?>"><?php _e('Manage', 'adrotate'); ?></a> |
328
- <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=addnew');?>"><?php _e('Add New', 'adrotate'); ?></a>
 
329
  </div>
330
  </div>
331
 
3
  Plugin Name: AdRotate
4
  Plugin URI: https://ajdg.solutions/product/adrotate-banner-manager/?pk_campaign=adrotatefree&pk_keyword=plugin_info
5
  Author: Arnan de Gans
6
+ Author URI: https://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=plugin_info
7
  Description: Monetize your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
+ Version: 5.8.21
10
  License: GPLv3
11
  */
12
 
21
  ------------------------------------------------------------------------------------ */
22
 
23
  /*--- AdRotate values ---------------------------------------*/
24
+ define("ADROTATE_DISPLAY", '5.8.21');
25
  define("ADROTATE_VERSION", 399);
26
  define("ADROTATE_DB_VERSION", 66);
27
  $plugin_folder = plugin_dir_path(__FILE__);
101
  function adrotate_dashboard() {
102
  $adrotate_page = $adrotate_pro = $adrotate_adverts = $adrotate_groups = $adrotate_settings = '';
103
 
104
+ add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_manage', plugins_url('/images/icon-menu.png', __FILE__), '25.8');
105
+ $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Adverts', 'adrotate'), __('Manage Adverts', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_manage');
 
 
106
  $adrotate_groups = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
107
  $adrotate_schedules = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
108
  $adrotate_media = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
109
  $adrotate_statistics = add_submenu_page('adrotate', 'AdRotate · '.__('Statistics', 'adrotate'), __('Statistics', 'adrotate'), 'adrotate_ad_manage', 'adrotate-statistics', 'adrotate_statistics');
110
+ $adrotate_pro = add_submenu_page('adrotate', 'AdRotate · '.__('Get AdRotate Pro', 'adrotate'), __('Get AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
111
  $adrotate_support = add_submenu_page('adrotate', 'AdRotate · '.__('Support', 'adrotate'), __('Support', 'adrotate'), 'manage_options', 'adrotate-support', 'adrotate_support');
112
  $adrotate_settings = add_submenu_page('adrotate', 'AdRotate · '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
113
 
114
  // Add help tabs
 
 
115
  add_action('load-'.$adrotate_adverts, 'adrotate_help_info');
116
  add_action('load-'.$adrotate_groups, 'adrotate_help_info');
117
  add_action('load-'.$adrotate_schedules, 'adrotate_help_info');
118
  add_action('load-'.$adrotate_media, 'adrotate_help_info');
119
  add_action('load-'.$adrotate_statistics, 'adrotate_help_info');
120
+ add_action('load-'.$adrotate_pro, 'adrotate_help_info');
121
  add_action('load-'.$adrotate_settings, 'adrotate_help_info');
122
  }
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  /*-------------------------------------------------------------
125
  Name: adrotate_pro
126
  Purpose: AdRotate Pro Sales
232
 
233
  <div class="tablenav">
234
  <div class="alignleft actions">
235
+ <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate');?>"><?php _e('Manage', 'adrotate'); ?></a>
236
+ &nbsp;|&nbsp;<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=generator');?>"><?php _e('Advert Generator', 'adrotate'); ?></a>
237
+ &nbsp;|&nbsp;<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=addnew');?>"><?php _e('New Advert', 'adrotate'); ?></a>
238
+ &nbsp;|&nbsp;<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-pro');?>"><?php _e('Get AdRotate Pro', 'adrotate'); ?></a>
239
  </div>
240
  </div>
241
 
304
 
305
  <div class="tablenav">
306
  <div class="alignleft actions">
307
+ <a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=manage');?>"><?php _e('Manage', 'adrotate'); ?></a>
308
+ &nbsp;|&nbsp;<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=addnew');?>"><?php _e('Add New', 'adrotate'); ?></a>
309
+ &nbsp;|&nbsp;<a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-pro');?>"><?php _e('Get AdRotate Pro', 'adrotate'); ?></a>
310
  </div>
311
  </div>
312
 
dashboard/info.php DELETED
@@ -1,132 +0,0 @@
1
- <?php
2
- /* ------------------------------------------------------------------------------------
3
- * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2020 Arnan de Gans. All Rights Reserved.
5
- * ADROTATE is a registered trademark of Arnan de Gans.
6
-
7
- * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
- * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from its use.
10
- ------------------------------------------------------------------------------------ */
11
-
12
- $banners = $groups = 0;
13
- $banners = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE `type` != 'empty' AND `type` != 'a_empty';");
14
- $groups = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '';");
15
- $data = get_option("adrotate_advert_status");
16
- ?>
17
- <div id="dashboard-widgets-wrap">
18
- <div id="dashboard-widgets" class="metabox-holder">
19
- <div id="left-column" class="ajdg-postbox-container">
20
-
21
- <div class="ajdg-postbox">
22
- <h2 class="ajdg-postbox-title"><?php _e('At a Glance', 'adrotate'); ?></h2>
23
- <div id="currently" class="ajdg-postbox-content">
24
- <table width="100%">
25
- <thead>
26
- <tr class="first">
27
- <td width="50%"><strong><?php _e('Your setup', 'adrotate'); ?></strong></td>
28
- <td width="50%"><strong><?php _e('Adverts that need you', 'adrotate'); ?></strong></td>
29
- </tr>
30
- </thead>
31
-
32
- <tbody>
33
- <tr class="first">
34
- <td class="first b"><a href="admin.php?page=adrotate-ads"><?php echo $banners; ?> <?php _e('Adverts', 'adrotate'); ?></a></td>
35
- <td class="b"><a href="admin.php?page=adrotate-ads"><?php echo $data['expiressoon'] + $data['expired']; ?> <?php _e('(Almost) Expired', 'adrotate'); ?></a></td>
36
- </tr>
37
- <tr>
38
- <td class="first b"><a href="admin.php?page=adrotate-groups"><?php echo $groups; ?> <?php _e('Groups', 'adrotate'); ?></a></td>
39
- <td class="b"><a href="admin.php?page=adrotate-ads"><?php echo $data['error']; ?> <?php _e('Have errors', 'adrotate'); ?></a></td>
40
- </tr>
41
- </tbody>
42
- </table>
43
- </div>
44
- </div>
45
-
46
- <div class="ajdg-postbox">
47
- <h2 class="ajdg-postbox-title">Your help is important</h2>
48
- <div id="services" class="ajdg-postbox-content">
49
- <p>Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development. Thank you for your consideration and support!</p>
50
-
51
- <p><a href="https://twitter.com/intent/tweet?hashtags=wordpress%2Cplugin%2Cadvertising%2Cadrotate&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20for%20WordPress%20by%20@arnandegans.%20Check%20it%20out.&url=https%3A%2F%2Fwordpress.org/plugins/adrotate/" target="_blank" class="button-primary goosebox"><i class="icn-t"></i>Post Tweet</a> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadrotate%2F&hashtag=#adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>Share on Facebook</a> <a class="button-primary" href="https://ajdg.solutions/go/donate/adrotatefree" target="_blank">Donate via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">Write review on WordPress.org</a></p>
52
- </div>
53
- </div>
54
-
55
- <div class="ajdg-postbox">
56
- <h2 class="ajdg-postbox-title">News & Updates</h2>
57
- <div id="news" class="ajdg-postbox-content">
58
- <p><a href="http://ajdg.solutions/feed/" target="_blank" title="Subscribe to the AJdG Solutions RSS feed!" class="button-primary"><i class="icn-rss"></i>Subscribe via RSS feed</a> <em>No account required!</em></p>
59
-
60
- <?php wp_widget_rss_output(array(
61
- 'url' => 'http://ajdg.solutions/feed/',
62
- 'items' => 4,
63
- 'show_summary' => 1,
64
- 'show_author' => 0,
65
- 'show_date' => 1)
66
- ); ?>
67
- </div>
68
- </div>
69
-
70
- </div>
71
- <div id="right-column" class="ajdg-postbox-container">
72
-
73
- <div class="ajdg-postbox">
74
- <h2 class="ajdg-postbox-title">Get more features with AdRotate Professional</h2>
75
- <div id="get-pro" class="ajdg-postbox-content">
76
- <p><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=buy_pro" target="_blank"><img src="<?php echo plugins_url('/images/logo-60x60.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!', 'adrotate'); ?></p>
77
- <a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=buy_pro"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
78
- <p><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=single" target="_blank"><strong><?php _e('Single License', 'adrotate'); ?> (&euro; 39.00)</strong></a><br /><em><?php _e('Use on ONE WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></em></p>
79
- <p><a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=duo" target="_blank"><strong><?php _e('Duo License', 'adrotate'); ?> (&euro; 49.00)</strong></a><br /><em><?php _e('Use on TWO WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1126&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></em></p>
80
- <p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=multi" target="_blank"><strong><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</strong></a><br /><em><?php _e('Use on up to FIVE WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></em></p>
81
- <p><a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=developer" target="_blank"><strong><?php _e('Developer License', 'adrotate'); ?> (&euro; 199.00)</strong></a><br /><em><?php _e('Use on up to a HUNDRED WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/?add-to-cart=1130&pk_campaign=adrotatefree&pk_keyword=info_page&pk_content=developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></em></p>
82
- </div>
83
- </div>
84
-
85
- <div class="ajdg-postbox">
86
- <h2 class="ajdg-postbox-title">Other plugins and services by Arnan</h2>
87
- <div id="empty" class="ajdg-postbox-content">
88
- <p>Check out these and more services in more details on my website. I also make more plugins. If you like AdRotate - Maybe you like some of those as well. Take a look at the <a href="https://ajdg.solutions/plugins/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">plugins</a> and overall <a href="https://ajdg.solutions/pricing/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">pricing</a> page for more.</p>
89
- <table width="100%">
90
- <tr>
91
- <td width="33%">
92
- <div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
93
- <a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/offers/html5-service.jpg", dirname(__FILE__)); ?>" alt="HTML5 Advert setup" width="228" height="120"></div></a>
94
- <a href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title">HTML5 Advert setup</div></a>
95
- <div class="sub_title">Professional service</div>
96
- <div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/adrotate-html5-setup-service/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">Learn more</a></div>
97
- <hr>
98
- <div class="description">Did you get a HTML5 advert and can’t get it to work in AdRotate? I’ll install and configure it for you.</div>
99
- </div>
100
- </td>
101
- <td width="33%">
102
- <div class="ajdg-sales-widget" style="display: inline-block; margin-right:2%;">
103
- <a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/offers/wordpress-maintenance.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance" width="228" height="120"></div></a>
104
- <a href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title">Maintenance</div></a>
105
- <div class="sub_title">Professional service</div>
106
- <div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/wordpress-maintenance-and-updates/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">Get started</a></div>
107
- <hr>
108
- <div class="description">Get all the latest updates for WordPress and plugins. Maintenance, delete spam and clean up files.</div>
109
- </div>
110
- </td>
111
- <td>
112
- <div class="ajdg-sales-widget" style="display: inline-block;">
113
- <a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/offers/single-page-checkout.jpg", dirname(__FILE__)); ?>" alt="WooCommerce Single Page Checkout" width="228" height="120"></div></a>
114
- <a href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank"><div class="title">Single Page Checkout</div></a>
115
- <div class="sub_title">WooCommerce Plugin</div>
116
- <div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/product/woocommerce-single-page-checkout/?pk_campaign=adrotatefree&pk_keyword=info_page" target="_blank">View product page</a></div>
117
- <hr>
118
- <div class="description">Merge your cart and checkout pages into one single page in seconds with no setup required at all.</div>
119
- </div>
120
- </td>
121
- </tr>
122
- </table>
123
- <p>If you're in need of adverts, faster hosting, SSL certificates or similar services, check out the <a rel="nofollow" href="https://ajdg.solutions/recommended-products/?pk_campaign=adrotatefree&pk_keyword=info_page">recommended products page</a> for some great offers.</p>
124
- </div>
125
- </div>
126
-
127
- </div>
128
- </div>
129
- </div>
130
-
131
- <div class="clear"></div>
132
- <p><?php echo adrotate_trademark(); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/publisher/adverts-disabled.php CHANGED
@@ -6,10 +6,10 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <form name="disabled_banners" id="post" method="post" action="admin.php?page=adrotate-ads">
13
  <?php wp_nonce_field('adrotate_bulk_ads_disable','adrotate_nonce'); ?>
14
 
15
  <h3><?php _e('Disabled Adverts', 'adrotate'); ?></h3>
@@ -58,7 +58,7 @@
58
  <th class="check-column"><input type="checkbox" name="disabledbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
59
  <td><center><?php echo $banner['id'];?></center></td>
60
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
61
- <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?> - <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></td>
62
  <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?>
63
  <td><center><?php echo $stats['impressions']; ?></center></td>
64
  <td><center><?php echo $stats['clicks']; ?></center></td>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+ <form name="disabled_banners" id="post" method="post" action="admin.php?page=adrotate">
13
  <?php wp_nonce_field('adrotate_bulk_ads_disable','adrotate_nonce'); ?>
14
 
15
  <h3><?php _e('Disabled Adverts', 'adrotate'); ?></h3>
58
  <th class="check-column"><input type="checkbox" name="disabledbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
59
  <td><center><?php echo $banner['id'];?></center></td>
60
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
61
+ <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?> - <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></td>
62
  <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?>
63
  <td><center><?php echo $stats['impressions']; ?></center></td>
64
  <td><center><?php echo $stats['clicks']; ?></center></td>
dashboard/publisher/adverts-edit.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  if(!$ad_edit_id) {
@@ -49,23 +49,20 @@ if($edit_banner) {
49
  if(strlen($edit_banner->bannercode) < 1 AND $edit_banner->type != 'empty')
50
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
51
 
52
- if(!preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image != '')
53
  echo '<div class="error"><p>'. __('You did not use %asset% in your AdCode but did select a file to use!', 'adrotate').'</p></div>';
54
 
55
- if(preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image == '')
56
  echo '<div class="error"><p>'. __('You did use %asset% in your AdCode but did not select a file to use!', 'adrotate').'</p></div>';
57
 
58
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
59
  echo '<div class="error"><p>'. __('There is a problem saving the image. Please re-set your image and re-save the ad!', 'adrotate').'</p></div>';
60
 
61
- if(!preg_match_all('/<(a|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) AND $edit_banner->tracker == 'Y')
62
- echo '<div class="error"><p>'. __("Tracking is enabled but no valid link/tag was found in the adcode!", 'adrotate').'</p></div>';
63
 
64
  // Ad Notices
65
  $adstate = adrotate_evaluate_ad($edit_banner->id);
66
- if($edit_banner->type == 'error' AND $adstate == 'active')
67
- echo '<div class="error"><p>'. __('AdRotate cannot find an error but the advert is marked erroneous, try re-saving the ad!', 'adrotate').'</p></div>';
68
-
69
  if($adstate == 'expired')
70
  echo '<div class="error"><p>'. __('This advert is expired and currently not shown on your website!', 'adrotate').'</p></div>';
71
 
@@ -77,6 +74,13 @@ if($edit_banner) {
77
 
78
  if($edit_banner->type == 'disabled')
79
  echo '<div class="updated"><p>'. __('This advert has been disabled and does not rotate on your site!', 'adrotate').'</p></div>';
 
 
 
 
 
 
 
80
  }
81
  }
82
 
@@ -93,7 +97,7 @@ if($edit_banner) {
93
  }
94
  ?>
95
 
96
- <form method="post" action="admin.php?page=adrotate-ads">
97
  <?php wp_nonce_field('adrotate_save_ad','adrotate_nonce'); ?>
98
  <input type="hidden" name="adrotate_username" value="<?php echo $userdata->user_login;?>" />
99
  <input type="hidden" name="adrotate_id" value="<?php echo $edit_banner->id;?>" />
@@ -125,11 +129,11 @@ if($edit_banner) {
125
  <td width="35%" rowspan="2">
126
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
127
  <p><em><?php _e('Click any of the examples to use it.', 'adrotate'); ?></em></p>
128
- <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://ajdg.solutions/&quot;&gt;&lt;img src=&quot;%asset%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="https://ajdg.solutions/"&gt;&lt;img src="%asset%" /&gt;&lt;/a&gt;</a></em></p>
129
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;iframe src=&quot;%asset%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;');return false;">&lt;iframe src=&quot;%asset%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;</a></em></p>
130
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.arnan.me/&quot;&gt;Visit arnan.me&lt;/a&gt;');return false;">&lt;a href="http://www.arnan.me/"&gt;Visit arnan.me&lt;/a&gt;</a></em></p>
131
- <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://ajdg.solutions/&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;%asset%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="https://ajdg.solutions/" target=&quot;_blank&quot;&gt;&lt;img src="%asset%" /&gt;&lt;/a&gt;</a></em></p>
132
- <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://ajdg.solutions/?timestamp=%random%&quot;&gt;&lt;img src=&quot;%asset%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="https://ajdg.solutions/?timestamp=%random%"&gt;&lt;img src="%asset%" /&gt;&lt;/a&gt;</a></em></p>
133
  </td>
134
  </tr>
135
  <tr>
@@ -173,8 +177,8 @@ if($edit_banner) {
173
  <tr>
174
  <th width="15%" valign="top"><?php _e('Statistics', 'adrotate'); ?></th>
175
  <td colspan="3">
176
- <label for="adrotate_tracker"><input tabindex="6" type="checkbox" name="adrotate_tracker" id="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable click and impression tracking for this advert.', 'adrotate'); ?></label><br />
177
- <em><?php _e('Note: Clicktracking does not work for Javascript adverts such as those provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not always supported.', 'adrotate'); ?></em>
178
  </td>
179
  </tr>
180
  <?php } ?>
@@ -247,7 +251,7 @@ if($edit_banner) {
247
 
248
  <p class="submit">
249
  <input tabindex="16" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
250
- <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
251
  </p>
252
 
253
  <?php if($groups) { ?>
@@ -290,7 +294,7 @@ if($edit_banner) {
290
 
291
  <p class="submit">
292
  <input tabindex="17" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
293
- <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
294
  </p>
295
  <?php } ?>
296
 
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  if(!$ad_edit_id) {
49
  if(strlen($edit_banner->bannercode) < 1 AND $edit_banner->type != 'empty')
50
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
51
 
52
+ if(!preg_match("/(%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image != '')
53
  echo '<div class="error"><p>'. __('You did not use %asset% in your AdCode but did select a file to use!', 'adrotate').'</p></div>';
54
 
55
+ if(preg_match("/(%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image == '')
56
  echo '<div class="error"><p>'. __('You did use %asset% in your AdCode but did not select a file to use!', 'adrotate').'</p></div>';
57
 
58
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
59
  echo '<div class="error"><p>'. __('There is a problem saving the image. Please re-set your image and re-save the ad!', 'adrotate').'</p></div>';
60
 
61
+ if((!preg_match_all('/<(a)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) OR preg_match_all('/<(ins|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things)) AND $edit_banner->tracker == 'Y')
62
+ echo '<div class="error"><p>'. __("This kind of advert can not have statistics enabled in AdRotate. Impression counting is available in AdRotate Pro.", 'adrotate').'</p></div>';
63
 
64
  // Ad Notices
65
  $adstate = adrotate_evaluate_ad($edit_banner->id);
 
 
 
66
  if($adstate == 'expired')
67
  echo '<div class="error"><p>'. __('This advert is expired and currently not shown on your website!', 'adrotate').'</p></div>';
68
 
74
 
75
  if($edit_banner->type == 'disabled')
76
  echo '<div class="updated"><p>'. __('This advert has been disabled and does not rotate on your site!', 'adrotate').'</p></div>';
77
+
78
+ if($edit_banner->type == 'error' AND $adstate == 'active')
79
+ echo '<div class="error"><p>'. __('AdRotate cannot find an error but the advert is marked erroneous, try re-saving the ad!', 'adrotate').'</p></div>';
80
+
81
+ // Legacy support
82
+ if(preg_match("/(%image%)/i", $edit_banner->bannercode, $things))
83
+ echo '<div class="error"><p>'. __('This advert still uses the %image% tag. Please change it to %asset%!', 'adrotate').'</p></div>';
84
  }
85
  }
86
 
97
  }
98
  ?>
99
 
100
+ <form method="post" action="admin.php?page=adrotate">
101
  <?php wp_nonce_field('adrotate_save_ad','adrotate_nonce'); ?>
102
  <input type="hidden" name="adrotate_username" value="<?php echo $userdata->user_login;?>" />
103
  <input type="hidden" name="adrotate_id" value="<?php echo $edit_banner->id;?>" />
129
  <td width="35%" rowspan="2">
130
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
131
  <p><em><?php _e('Click any of the examples to use it.', 'adrotate'); ?></em></p>
132
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://www.ajdg.net/&quot;&gt;&lt;img src=&quot;%asset%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="https://www.ajdg.net/"&gt;&lt;img src="%asset%" /&gt;&lt;/a&gt;</a></em></p>
133
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;iframe src=&quot;%asset%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;');return false;">&lt;iframe src=&quot;%asset%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;</a></em></p>
134
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.arnan.me/&quot;&gt;Visit arnan.me&lt;/a&gt;');return false;">&lt;a href="http://www.arnan.me/"&gt;Visit arnan.me&lt;/a&gt;</a></em></p>
135
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://www.ajdg.net/&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;%asset%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="https://www.ajdg.net/" target=&quot;_blank&quot;&gt;&lt;img src="%asset%" /&gt;&lt;/a&gt;</a></em></p>
136
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://www.ajdg.net/?timestamp=%random%&quot;&gt;&lt;img src=&quot;%asset%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="https://www.ajdg.net/?timestamp=%random%"&gt;&lt;img src="%asset%" /&gt;&lt;/a&gt;</a></em></p>
137
  </td>
138
  </tr>
139
  <tr>
177
  <tr>
178
  <th width="15%" valign="top"><?php _e('Statistics', 'adrotate'); ?></th>
179
  <td colspan="3">
180
+ <label for="adrotate_tracker"><input tabindex="6" type="checkbox" name="adrotate_tracker" id="adrotate_tracker" <?php if($edit_banner->tracker == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Count clicks and impressions.', 'adrotate'); ?></label><br />
181
+ <em><?php _e('Click counting does not work for Javascript/html5 adverts such as those provided by Google AdSense/DFP/DoubleClick.', 'adrotate'); ?></em>
182
  </td>
183
  </tr>
184
  <?php } ?>
251
 
252
  <p class="submit">
253
  <input tabindex="16" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
254
+ <a href="admin.php?page=adrotate&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
255
  </p>
256
 
257
  <?php if($groups) { ?>
294
 
295
  <p class="submit">
296
  <input tabindex="17" type="submit" name="adrotate_ad_submit" class="button-primary" value="<?php _e('Save Advert', 'adrotate'); ?>" />
297
+ <a href="admin.php?page=adrotate&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
298
  </p>
299
  <?php } ?>
300
 
dashboard/publisher/adverts-error.php CHANGED
@@ -6,12 +6,12 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Adverts that need attention', 'adrotate'); ?></h3>
13
 
14
- <form name="errorbanners" id="post" method="post" action="admin.php?page=adrotate-ads">
15
  <?php wp_nonce_field('adrotate_bulk_ads_error','adrotate_nonce'); ?>
16
  <div class="tablenav">
17
  <div class="alignleft actions">
@@ -53,7 +53,7 @@
53
  <tr id='adrotateindex' class='<?php echo $class; ?>'>
54
  <th class="check-column"><input type="checkbox" name="errorbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
55
  <td><center><?php echo $banner['id'];?></center></td>
56
- <td><strong><a class="row-title" href="<?php echo admin_url("/admin.php?page=adrotate-ads&view=edit&ad=".$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y' AND $banner['type'] != 'error') { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
57
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
58
  </tr>
59
  <?php } ?>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Adverts that need attention', 'adrotate'); ?></h3>
13
 
14
+ <form name="errorbanners" id="post" method="post" action="admin.php?page=adrotate">
15
  <?php wp_nonce_field('adrotate_bulk_ads_error','adrotate_nonce'); ?>
16
  <div class="tablenav">
17
  <div class="alignleft actions">
53
  <tr id='adrotateindex' class='<?php echo $class; ?>'>
54
  <th class="check-column"><input type="checkbox" name="errorbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
55
  <td><center><?php echo $banner['id'];?></center></td>
56
+ <td><strong><a class="row-title" href="<?php echo admin_url("/admin.php?page=adrotate&view=edit&ad=".$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y' AND $banner['type'] != 'error') { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
57
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
58
  </tr>
59
  <?php } ?>
dashboard/publisher/adverts-generator.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  if(!$ad_edit_id) {
@@ -29,7 +29,7 @@ if($edit_banner) {
29
  wp_enqueue_script('uploader-hook', plugins_url().'/adrotate-pro/library/uploader-hook.js', array('jquery'));
30
  ?>
31
 
32
- <form method="post" action="admin.php?page=adrotate-ads">
33
  <?php wp_nonce_field('adrotate_generate_ad','adrotate_nonce'); ?>
34
  <input type="hidden" name="adrotate_id" value="<?php echo $edit_banner->id;?>" />
35
 
@@ -145,7 +145,7 @@ if($edit_banner) {
145
 
146
  <p class="submit">
147
  <input tabindex="8" type="submit" name="adrotate_generate_submit" class="button-primary" value="<?php _e('Generate and Configure Advert', 'adrotate'); ?>" />
148
- <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a> <?php _e('Always test your adverts before activating them.', 'adrotate'); ?>
149
  </p>
150
 
151
  <p><em><strong><?php _e('CAUTION:', 'adrotate'); ?></strong> <?php _e('While the Code Generator has been tested and works, code generation, as always, is a interpretation of user input. If you provide the correct bits and pieces, a working advert may be generated. If you leave fields empty or insert the wrong info you probably end up with a broken advert.', 'adrotate'); ?><br /><strong><?php _e('NOTE:', 'adrotate'); ?></strong> <?php _e('If you insert an Advert Hash, all other fields are ignored.', 'adrotate'); ?></em></p>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  if(!$ad_edit_id) {
29
  wp_enqueue_script('uploader-hook', plugins_url().'/adrotate-pro/library/uploader-hook.js', array('jquery'));
30
  ?>
31
 
32
+ <form method="post" action="admin.php?page=adrotate">
33
  <?php wp_nonce_field('adrotate_generate_ad','adrotate_nonce'); ?>
34
  <input type="hidden" name="adrotate_id" value="<?php echo $edit_banner->id;?>" />
35
 
145
 
146
  <p class="submit">
147
  <input tabindex="8" type="submit" name="adrotate_generate_submit" class="button-primary" value="<?php _e('Generate and Configure Advert', 'adrotate'); ?>" />
148
+ <a href="admin.php?page=adrotate&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a> <?php _e('Always test your adverts before activating them.', 'adrotate'); ?>
149
  </p>
150
 
151
  <p><em><strong><?php _e('CAUTION:', 'adrotate'); ?></strong> <?php _e('While the Code Generator has been tested and works, code generation, as always, is a interpretation of user input. If you provide the correct bits and pieces, a working advert may be generated. If you leave fields empty or insert the wrong info you probably end up with a broken advert.', 'adrotate'); ?><br /><strong><?php _e('NOTE:', 'adrotate'); ?></strong> <?php _e('If you insert an Advert Hash, all other fields are ignored.', 'adrotate'); ?></em></p>
dashboard/publisher/adverts-main.php CHANGED
@@ -6,12 +6,12 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Active Adverts', 'adrotate'); ?></h3>
13
 
14
- <form name="banners" id="post" method="post" action="admin.php?page=adrotate-ads">
15
  <?php wp_nonce_field('adrotate_bulk_ads_active','adrotate_nonce'); ?>
16
 
17
  <div class="tablenav top">
@@ -66,7 +66,7 @@
66
  <th class="check-column"><input type="checkbox" name="bannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
67
  <td><center><?php echo $banner['id'];?></center></td>
68
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
69
- <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-ads&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
70
  <?php if($adrotate_config['stats'] == 1) { ?>
71
  <?php if($banner['tracker'] == "Y") { ?>
72
  <td><center><?php echo $stats['impressions']; ?></center></td>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Active Adverts', 'adrotate'); ?></h3>
13
 
14
+ <form name="banners" id="post" method="post" action="admin.php?page=adrotate">
15
  <?php wp_nonce_field('adrotate_bulk_ads_active','adrotate_nonce'); ?>
16
 
17
  <div class="tablenav top">
66
  <th class="check-column"><input type="checkbox" name="bannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
67
  <td><center><?php echo $banner['id'];?></center></td>
68
  <td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
69
+ <td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(html_entity_decode($banner['title']));?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
70
  <?php if($adrotate_config['stats'] == 1) { ?>
71
  <?php if($banner['tracker'] == "Y") { ?>
72
  <td><center><?php echo $stats['impressions']; ?></center></td>
dashboard/publisher/groups-edit.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <?php if(!$group_edit_id) {
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <?php if(!$group_edit_id) {
dashboard/publisher/groups-main.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Manage Groups', 'adrotate'); ?></h3>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h3><?php _e('Manage Groups', 'adrotate'); ?></h3>
dashboard/publisher/media.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
 
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
 
dashboard/publisher/schedules-main.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h2><?php _e('Manage Schedules', 'adrotate'); ?></h2>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <h2><?php _e('Manage Schedules', 'adrotate'); ?></h2>
dashboard/publisher/statistics-advert.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $banner = $wpdb->get_row("SELECT `title`, `tracker`, `type` FROM `{$wpdb->prefix}adrotate` WHERE `id` = '{$id}';");
@@ -106,5 +106,4 @@ $ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month
106
 
107
  <p><center>
108
  <em><small><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('All statistics are indicative. They do not nessesarily reflect results counted by other parties.', 'adrotate'); ?></small></em>
109
- <br /><?php _e('Get more features with AdRotate Pro', 'adrotate'); ?> - <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!
110
  </center></p>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $banner = $wpdb->get_row("SELECT `title`, `tracker`, `type` FROM `{$wpdb->prefix}adrotate` WHERE `id` = '{$id}';");
106
 
107
  <p><center>
108
  <em><small><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('All statistics are indicative. They do not nessesarily reflect results counted by other parties.', 'adrotate'); ?></small></em>
 
109
  </center></p>
dashboard/publisher/statistics-group.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $title = $wpdb->get_var("SELECT `name` FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = {$id};");
@@ -110,5 +110,4 @@ $ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month
110
 
111
  <p><center>
112
  <em><small><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('All statistics are indicative. They do not nessesarily reflect results counted by other parties.', 'adrotate'); ?></small></em>
113
- <br /><?php _e('Get more features with AdRotate Pro', 'adrotate'); ?> - <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!
114
  </center></p>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $title = $wpdb->get_var("SELECT `name` FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = {$id};");
110
 
111
  <p><center>
112
  <em><small><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('All statistics are indicative. They do not nessesarily reflect results counted by other parties.', 'adrotate'); ?></small></em>
 
113
  </center></p>
dashboard/publisher/statistics-main.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $stats = adrotate_prepare_fullreport();
@@ -80,5 +80,4 @@ $ctr_graph_month = adrotate_ctr($stats_graph_month['clicks'], $stats_graph_month
80
 
81
  <p><center>
82
  <em><small><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('All statistics are indicative. They do not nessesarily reflect results counted by other parties.', 'adrotate'); ?></small></em>
83
- <br /><?php _e('Get more features with AdRotate Pro', 'adrotate'); ?> - <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade now', 'adrotate'); ?></a>!
84
  </center></p>
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $stats = adrotate_prepare_fullreport();
80
 
81
  <p><center>
82
  <em><small><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('All statistics are indicative. They do not nessesarily reflect results counted by other parties.', 'adrotate'); ?></small></em>
 
83
  </center></p>
dashboard/settings/maintenance.php CHANGED
@@ -19,7 +19,7 @@
19
  <tr>
20
  <th valign="top"><?php _e('Check adverts', 'adrotate'); ?></th>
21
  <td>
22
- <input type="submit" id="post-role-submit" name="adrotate_evaluate_submit" value="<?php _e('Check all adverts for configuration errors', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to check all adverts for errors.', 'adrotate'); ?>\n\n<?php _e('This might take a few seconds!', 'adrotate'); ?>\n\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')" />
23
  <br /><br />
24
  <span class="description"><?php _e('Apply all evaluation rules to all adverts to see if any error slipped in.', 'adrotate'); ?></span>
25
  </td>
@@ -27,7 +27,7 @@
27
  <tr>
28
  <th valign="top"><?php _e('Clean-up Database and Files', 'adrotate'); ?></th>
29
  <td>
30
- <input type="submit" id="post-role-submit" name="adrotate_cleanup_submit" value="<?php _e('Clean-up database and old files', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to do maintenance on your setup of AdRotate.', 'adrotate'); ?>\n\n<?php _e('This optionally may delete old statistics and tries to delete old export files.', 'adrotate'); ?>\n\n<?php _e('Are you sure you want to continue?', 'adrotate'); ?>\n<?php _e('THIS ACTION CAN NOT BE UNDONE!', 'adrotate'); ?>')" />
31
  <br /><br />
32
  <input type="checkbox" name="adrotate_db_cleanup_db" value="0" checked disabled /> <?php _e('Basic database maintenance.', 'adrotate'); ?><br />
33
  <label for="adrotate_db_cleanup_statistics"><input type="checkbox" name="adrotate_db_cleanup_statistics" id="adrotate_db_cleanup_statistics" value="1" /> <?php _e('Delete stats older than 365 days.', 'adrotate'); ?></label><br />
19
  <tr>
20
  <th valign="top"><?php _e('Check adverts', 'adrotate'); ?></th>
21
  <td>
22
+ <input type="submit" id="post-role-submit" name="adrotate_evaluate_submit" value="<?php _e('Check for errors', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to check all adverts for errors.', 'adrotate'); ?>\n\n<?php _e('This might take a few seconds!', 'adrotate'); ?>\n\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')" />
23
  <br /><br />
24
  <span class="description"><?php _e('Apply all evaluation rules to all adverts to see if any error slipped in.', 'adrotate'); ?></span>
25
  </td>
27
  <tr>
28
  <th valign="top"><?php _e('Clean-up Database and Files', 'adrotate'); ?></th>
29
  <td>
30
+ <input type="submit" id="post-role-submit" name="adrotate_cleanup_submit" value="<?php _e('Run Clean-up', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to do maintenance on your setup of AdRotate.', 'adrotate'); ?>\n\n<?php _e('This optionally may delete old statistics and tries to delete old export files.', 'adrotate'); ?>\n\n<?php _e('Are you sure you want to continue?', 'adrotate'); ?>\n<?php _e('THIS ACTION CAN NOT BE UNDONE!', 'adrotate'); ?>')" />
31
  <br /><br />
32
  <input type="checkbox" name="adrotate_db_cleanup_db" value="0" checked disabled /> <?php _e('Basic database maintenance.', 'adrotate'); ?><br />
33
  <label for="adrotate_db_cleanup_statistics"><input type="checkbox" name="adrotate_db_cleanup_statistics" id="adrotate_db_cleanup_statistics" value="1" /> <?php _e('Delete stats older than 365 days.', 'adrotate'); ?></label><br />
dashboard/settings/misc.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=misc">
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=misc">
dashboard/settings/notifications.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
 
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
 
dashboard/settings/statistics.php CHANGED
@@ -45,8 +45,14 @@
45
  </table>
46
 
47
  <h3><?php _e('AdRotate Statistics', 'adrotate'); ?></h3></td>
48
- <span class="description"><?php _e('The settings below are for the internal tracker and have no effect when using Google Analytics or Matomo.', 'adrotate'); ?></span>
49
  <table class="form-table">
 
 
 
 
 
 
50
  <tr>
51
  <th valign="top"><?php _e('Logged in impressions', 'adrotate'); ?></th>
52
  <td>
45
  </table>
46
 
47
  <h3><?php _e('AdRotate Statistics', 'adrotate'); ?></h3></td>
48
+ <span class="description"><?php _e('The settings below are for the local tracker and have no effect when using Google Analytics or Matomo.', 'adrotate'); ?></span>
49
  <table class="form-table">
50
+ <tr>
51
+ <th valign="top"><?php _e('Admin stats', 'adrotate'); ?></th>
52
+ <td>
53
+ <input type="checkbox" name="adrotate_enable_admin_stats_disabled" checked="checked" disabled /> <?php _e('Track statistics from admin users.', 'adrotate'); ?>
54
+ </td>
55
+ </tr>
56
  <tr>
57
  <th valign="top"><?php _e('Logged in impressions', 'adrotate'); ?></th>
58
  <td>
dashboard/support.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
- * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $banners = $groups = $schedules = $queued = $unpaid = 0;
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
8
  * By using this code you agree to indemnify Arnan de Gans from any
9
+ * liability that might arise from its use.
10
  ------------------------------------------------------------------------------------ */
11
 
12
  $banners = $groups = $schedules = $queued = $unpaid = 0;
images/adrotate-product.png DELETED
Binary file
language/adrotate-de_DE.mo CHANGED
Binary file
language/adrotate-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-05-19 12:25-0500\n"
6
- "PO-Revision-Date: 2021-05-19 12:27-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: de\n"
@@ -17,31 +17,31 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:784
21
  msgid "Advert saved"
22
- msgstr "Anzeige gespeichert"
23
 
24
- #: adrotate-functions.php:788
25
  msgid "Group saved"
26
  msgstr "Gruppe gespeichert"
27
 
28
- #: adrotate-functions.php:792
29
  msgid "Banner image saved"
30
  msgstr "Banner-Bild gespeichert"
31
 
32
- #: adrotate-functions.php:796
33
  msgid "Ad(s) deleted"
34
  msgstr "Anzeige (n) gelöscht"
35
 
36
- #: adrotate-functions.php:800
37
  msgid "Group deleted"
38
  msgstr "Gruppe gelöscht"
39
 
40
- #: adrotate-functions.php:804
41
  msgid "Asset(s) deleted"
42
  msgstr "Assets gelöscht"
43
 
44
- #: adrotate-functions.php:808
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
@@ -49,31 +49,31 @@ msgstr ""
49
  "Beim Löschen der Datei oder des Ordners ist etwas schief gelaufen. Stellen "
50
  "Sie sicher, dass Ihre Berechtigungen in Ordnung sind."
51
 
52
- #: adrotate-functions.php:812
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Anzeige(n) Statistik-Reset"
55
 
56
- #: adrotate-functions.php:816
57
  msgid "Advert(s) renewed"
58
  msgstr "Anzeige(e) erneuert"
59
 
60
- #: adrotate-functions.php:820
61
  msgid "Advert(s) deactivated"
62
  msgstr "Anzeigen deaktiviert"
63
 
64
- #: adrotate-functions.php:824
65
  msgid "Advert(s) activated"
66
  msgstr "Anzeige(n) aktiviert"
67
 
68
- #: adrotate-functions.php:828
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Gruppe einschließlich der darin gelöschten Anzeigen"
71
 
72
- #: adrotate-functions.php:832
73
  msgid "Export created"
74
  msgstr "Export erstellt"
75
 
76
- #: adrotate-functions.php:836
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
@@ -82,32 +82,32 @@ msgstr ""
82
  "Anzeige unten. Vergessen Sie nicht, alle Einstellungen zu überprüfen und die "
83
  "Anzeige zu planen."
84
 
85
- #: adrotate-functions.php:841
86
  msgid "Settings saved"
87
  msgstr "Einstellungen gespeichert"
88
 
89
- #: adrotate-functions.php:845
90
  msgid "Database optimized"
91
  msgstr "Datenbank optimiert"
92
 
93
- #: adrotate-functions.php:849
94
  msgid "Database repaired"
95
  msgstr "Datenbank repariert"
96
 
97
- #: adrotate-functions.php:853
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr ""
100
  "Anzeigen wurden überprüft und Zustände korrigiert, wo es erforderlich war"
101
 
102
- #: adrotate-functions.php:857
103
  msgid "Cleanup complete"
104
  msgstr "Bereinigung abgeschlossen"
105
 
106
- #: adrotate-functions.php:862
107
  msgid "Action prohibited"
108
  msgstr "Aktion nicht zulässig"
109
 
110
- #: adrotate-functions.php:866
111
  msgid ""
112
  "The advert was saved but has an issue which might prevent it from working "
113
  "properly. Review the colored advert."
@@ -116,23 +116,23 @@ msgstr ""
116
  "möglicherweise nicht ordnungsgemäß funktionieren könnte. Überprüfen Sie die "
117
  "farbige Anzeige."
118
 
119
- #: adrotate-functions.php:870
120
  msgid "No data found in selected time period"
121
  msgstr "Keine Daten im ausgewählten Zeitraum gefunden"
122
 
123
- #: adrotate-functions.php:874
124
  msgid "Database can only be optimized or cleaned once every hour"
125
  msgstr "Datenbank kann nur einmal pro Stunde optimiert oder gereinigt werden"
126
 
127
- #: adrotate-functions.php:878
128
  msgid "Form can not be (partially) empty!"
129
  msgstr "Formular kann nicht (teilweise) leer sein!"
130
 
131
- #: adrotate-functions.php:882
132
  msgid "No adverts found."
133
  msgstr "Keine Anzeigen gefunden."
134
 
135
- #: adrotate-functions.php:886
136
  msgid ""
137
  "The advert hash is not usable or is missing required data. Please copy the "
138
  "hash correctly and try again."
@@ -140,7 +140,7 @@ msgstr ""
140
  "Der Anzeigenhash ist nicht verwendbar oder enthält keine erforderlichen "
141
  "Daten. Kopieren Sie den Hash richtig, und versuchen Sie es erneut."
142
 
143
- #: adrotate-functions.php:890
144
  msgid ""
145
  "The advert hash can not be used on the same site as it originated from or is "
146
  "not a valid hash for importing."
@@ -148,7 +148,7 @@ msgstr ""
148
  "Der Anzeigenhash kann nicht auf derselben Website verwendet werden, von der "
149
  "er stammt, oder es handelt sich nicht um einen gültigen Hash für den Import."
150
 
151
- #: adrotate-functions.php:894
152
  msgid "Unexpected error"
153
  msgstr "Unerwarteter Fehler"
154
 
@@ -323,11 +323,11 @@ msgstr ""
323
  msgid "Installation instructions"
324
  msgstr "Installationsanweisungen"
325
 
326
- #: adrotate-output.php:730
327
  msgid "your attention:"
328
  msgstr "Ihre Aufmerksamkeit:"
329
 
330
- #: adrotate-output.php:761
331
  msgid ""
332
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
333
  "menu. If you need help getting started take a look at the"
@@ -336,66 +336,125 @@ msgstr ""
336
  "AdRotate zu tun hat, befindet sich in diesem Menü. Wenn Sie Hilfe bei den "
337
  "ersten"
338
 
339
- #: adrotate-output.php:761
340
  msgid "manuals"
341
  msgstr "Handbücher"
342
 
343
- #: adrotate-output.php:761
344
  msgid "and"
345
  msgstr "und"
346
 
347
- #: adrotate-output.php:761
348
  msgid "forums"
349
  msgstr "Forum"
350
 
351
- #: adrotate-output.php:841
352
  msgid "Need help fast? Or do you have a question?"
353
  msgstr "Benötigen Sie schnell Hilfe? Oder haben Sie eine Frage?"
354
 
355
- #: adrotate-output.php:842
356
  msgid "Help AdRotate Grow"
357
  msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
358
 
359
- #: adrotate-output.php:843
360
- msgid "More features with AdRotate Pro"
361
- msgstr "Weitere Funktionen mit AdRotate Pro"
362
 
363
- #: adrotate-output.php:850
364
  msgid ""
365
- "Many users only think to review AdRotate when something goes wrong while "
366
- "thousands of people happily use AdRotate."
 
367
  msgstr ""
368
- "Viele Anwender denken nur dann darüber nach AdRotate zu bewerten, wenn etwas "
369
- "schief geht, während Tausende andere AdRotate zufrieden verwenden."
 
 
370
 
371
- #: adrotate-output.php:850
372
- msgid "If you find AdRotate useful please leave your"
373
- msgstr "Wenn Sie AdRotate nützlich finden, verlassen Sie bitte Ihre"
374
 
375
- #: adrotate-output.php:850
376
- msgid "rating"
377
- msgstr "Bewertung"
378
 
379
- #: adrotate-output.php:850
380
- msgid "on WordPress.org to help AdRotate grow in a positive way"
381
- msgstr "auf WordPress.org, damit AdRotate sich weiter positiv entwickelt"
382
-
383
- #: adrotate-output.php:851
384
  msgid ""
385
- "Get more advanced features such as Geo Targeting, scheduling and much more "
386
- "with AdRotate Pro."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgstr ""
388
- "Mit AdRotate Pro erhalten Sie erweiterte Funktionen wie Geo Targeting, "
389
- "Terminplanung und vieles mehr."
 
 
390
 
391
- #: adrotate-output.php:851
392
- msgid "Get access to premium support and free updates for one year!"
393
- msgstr ""
394
- "Erhalten Sie Zugang zu Premium-Support und kostenlosen Updates für ein Jahr!"
395
 
396
- #: adrotate-output.php:851 dashboard/publisher/groups-edit.php:155
397
- msgid "Upgrade today"
398
- msgstr "Noch heute Upgraden"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
 
400
  #: adrotate-statistics.php:155
401
  msgid "January"
@@ -507,74 +566,66 @@ msgstr "ID:"
507
  msgid "Fill in the ID of the type you want to display!"
508
  msgstr "Geben Sie die ID des Typs an, den Sie anzeigen möchten!"
509
 
510
- #: adrotate.php:105
511
- msgid "General Info"
512
- msgstr "Allgemeine Info"
513
-
514
- #: adrotate.php:106
515
- msgid "Get AdRotate Pro"
516
- msgstr "AdRotate Pro"
517
-
518
- #: adrotate.php:107 adrotate.php:196
519
  msgid "Manage Adverts"
520
  msgstr "Anzeigen verwalten"
521
 
522
- #: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
523
  msgid "Manage Groups"
524
  msgstr "Gruppen verwalten"
525
 
526
- #: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
527
  msgid "Manage Schedules"
528
  msgstr "Zeiträume verwalten"
529
 
530
- #: adrotate.php:110
531
  msgid "Manage Media"
532
  msgstr "Medien verwalten"
533
 
534
- #: adrotate.php:111 adrotate.php:522 dashboard/adrotatepro.php:98
535
- #: dashboard/publisher/adverts-edit.php:174
536
  #: dashboard/publisher/statistics-main.php:23
537
  #: dashboard/settings/statistics.php:17
538
  msgid "Statistics"
539
  msgstr "Auswertungen"
540
 
541
- #: adrotate.php:112
 
 
 
 
542
  msgid "Support"
543
  msgstr "Support"
544
 
545
- #: adrotate.php:113
546
  msgid "Settings"
547
  msgstr "Einstellungen"
548
 
549
- #: adrotate.php:134
550
- msgid "AdRotate Info"
551
- msgstr "AdRotate Info"
552
-
553
- #: adrotate.php:152
554
  msgid "Get AdRotate Professional"
555
  msgstr "AdRotate Professional kaufen"
556
 
557
- #: adrotate.php:256 adrotate.php:327
558
  msgid "Manage"
559
  msgstr "Verwalten"
560
 
561
- #: adrotate.php:257
562
  msgid "Advert Generator"
563
  msgstr "Anzeige generator"
564
 
565
- #: adrotate.php:258 dashboard/publisher/adverts-edit.php:104
566
  msgid "New Advert"
567
  msgstr "Neue Anzeige"
568
 
569
- #: adrotate.php:328
570
  msgid "Add New"
571
  msgstr "Neu hinzufügen"
572
 
573
- #: adrotate.php:395
574
  msgid "Manage Media and Assets"
575
  msgstr "Verwalten von Medien und Ressourcen"
576
 
577
- #: adrotate.php:399
578
  msgid ""
579
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
580
  "if you have HTML5 adverts containing multiple files."
@@ -583,44 +634,39 @@ msgstr ""
583
  "Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
584
  "mehrere Dateien enthalten."
585
 
586
- #: adrotate.php:441
587
  msgid "Advert Statistics"
588
  msgstr "Statistiken zur Anzeige"
589
 
590
- #: adrotate.php:484
591
  msgid "AdRotate Support"
592
  msgstr "AdRotate-Unterstützung"
593
 
594
- #: adrotate.php:515
595
  msgid "AdRotate Settings"
596
  msgstr "AdRotate Einstellungen"
597
 
598
- #: adrotate.php:520 dashboard/publisher/statistics-main.php:28
599
  msgid "General"
600
  msgstr "Allgemein"
601
 
602
- #: adrotate.php:521 dashboard/settings/notifications.php:18
603
  msgid "Notifications"
604
  msgstr "Benachrichtigungen"
605
 
606
- #: adrotate.php:523 dashboard/publisher/groups-edit.php:205
607
- #: dashboard/settings/advertisers.php:38
608
  msgid "Geo Targeting"
609
  msgstr "Geo Targeting"
610
 
611
- #: adrotate.php:524
612
- msgid "Advertisers"
613
- msgstr "Inserenten"
614
-
615
- #: adrotate.php:525 dashboard/settings/roles.php:17
616
  msgid "Access Roles"
617
  msgstr "Zugriffsrollen"
618
 
619
- #: adrotate.php:526 dashboard/settings/misc.php:16
620
  msgid "Miscellaneous"
621
  msgstr "Sonstiges"
622
 
623
- #: adrotate.php:527 dashboard/settings/maintenance.php:16
624
  msgid "Maintenance"
625
  msgstr "Wartung"
626
 
@@ -759,85 +805,6 @@ msgstr ""
759
  "Fehler auftauchen oder wenn Werbekunden neue Inserate erstellen. Verpassen "
760
  "Sie nie wieder ein Ablaufdatum."
761
 
762
- #: dashboard/info.php:22
763
- msgid "At a Glance"
764
- msgstr "Auf einen Blick"
765
-
766
- #: dashboard/info.php:27
767
- msgid "Your setup"
768
- msgstr "Ihre Konfiguration"
769
-
770
- #: dashboard/info.php:28
771
- msgid "Adverts that need you"
772
- msgstr "Achten Sie auf folgende Anzeigen"
773
-
774
- #: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:261
775
- #: dashboard/publisher/groups-main.php:34
776
- #: dashboard/publisher/schedules-main.php:34
777
- #: dashboard/publisher/statistics-main.php:35
778
- msgid "Adverts"
779
- msgstr "Werbung"
780
-
781
- #: dashboard/info.php:35
782
- msgid "(Almost) Expired"
783
- msgstr "(Fast) Abgelaufen"
784
-
785
- #: dashboard/info.php:38
786
- msgid "Groups"
787
- msgstr "Gruppen"
788
-
789
- #: dashboard/info.php:39
790
- msgid "Have errors"
791
- msgstr "Fehler enthalten"
792
-
793
- #: dashboard/info.php:76
794
- msgid ""
795
- "AdRotate Professional has a lot more functions for even better advertising "
796
- "management. Check out the feature comparison tab on any of the product pages "
797
- "to see what AdRotate Pro has to offer for you!"
798
- msgstr ""
799
- "AdRotate Professional bietet viel mehr Funktionen für ein noch besseres "
800
- "Werbemanagement. Sehen Sie sich die Registerkarte Funktionsvergleich auf "
801
- "einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
802
- "hat!"
803
-
804
- #: dashboard/info.php:78
805
- msgid "Single License"
806
- msgstr "Einzellizenz"
807
-
808
- #: dashboard/info.php:78
809
- msgid "Use on ONE WordPress installation."
810
- msgstr "Für eine Wordpress-Installation."
811
-
812
- #: dashboard/info.php:78 dashboard/info.php:79 dashboard/info.php:80
813
- #: dashboard/info.php:81
814
- msgid "Buy now"
815
- msgstr "Jetzt kaufen"
816
-
817
- #: dashboard/info.php:79
818
- msgid "Duo License"
819
- msgstr "Duo Lizenz"
820
-
821
- #: dashboard/info.php:79
822
- msgid "Use on TWO WordPress installations."
823
- msgstr "Für eine Wordpress-Installation."
824
-
825
- #: dashboard/info.php:80
826
- msgid "Multi License"
827
- msgstr "Multi-Lizenz"
828
-
829
- #: dashboard/info.php:80
830
- msgid "Use on up to FIVE WordPress installations."
831
- msgstr "Für bis zu fünf Wordpress-Installationen."
832
-
833
- #: dashboard/info.php:81
834
- msgid "Developer License"
835
- msgstr "Entwickler-Lizenz"
836
-
837
- #: dashboard/info.php:81
838
- msgid "Use on up to a HUNDRED WordPress installations and/or networks."
839
- msgstr "Für bis zu fünf Wordpress-Installationen."
840
-
841
  #: dashboard/publisher/adverts-disabled.php:15
842
  msgid "Disabled Adverts"
843
  msgstr "Deaktivierte Anzeigen"
@@ -851,7 +818,7 @@ msgid "Bulk Actions"
851
  msgstr "Bulk-Aktionen"
852
 
853
  #: dashboard/publisher/adverts-disabled.php:21
854
- #: dashboard/publisher/adverts-edit.php:182
855
  msgid "Activate"
856
  msgstr "Aktivieren"
857
 
@@ -877,7 +844,7 @@ msgid "Go"
877
  msgstr "Los"
878
 
879
  #: dashboard/publisher/adverts-disabled.php:35
880
- #: dashboard/publisher/adverts-edit.php:259
881
  #: dashboard/publisher/adverts-error.php:39
882
  #: dashboard/publisher/adverts-main.php:39
883
  #: dashboard/publisher/groups-edit.php:350
@@ -894,8 +861,8 @@ msgid "Start / End"
894
  msgstr "Start / Ende"
895
 
896
  #: dashboard/publisher/adverts-disabled.php:37
897
- #: dashboard/publisher/adverts-edit.php:112
898
- #: dashboard/publisher/adverts-edit.php:260
899
  #: dashboard/publisher/adverts-error.php:40
900
  #: dashboard/publisher/adverts-main.php:41
901
  #: dashboard/publisher/groups-edit.php:65
@@ -997,87 +964,97 @@ msgstr ""
997
  "ein und speichern Sie die Anzeige erneut!"
998
 
999
  #: dashboard/publisher/adverts-edit.php:62
1000
- msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1001
- msgstr "Track ist aktiviert, aber es gibt keinen gültige Link/Tag im Adcode!"
1002
-
1003
- #: dashboard/publisher/adverts-edit.php:67
1004
  msgid ""
1005
- "AdRotate cannot find an error but the advert is marked erroneous, try re-"
1006
- "saving the ad!"
1007
  msgstr ""
1008
- "AdRotate kann keinen Fehler finden, aber die Anzeige ist als fehlerhaft "
1009
- "markiert, versuchen Sie, die Anzeige erneut zu speichern!"
1010
 
1011
- #: dashboard/publisher/adverts-edit.php:70
1012
  msgid "This advert is expired and currently not shown on your website!"
1013
  msgstr ""
1014
  "Diese Anzeige ist abgelaufen und wird derzeit nicht auf Ihrer Website "
1015
  "angezeigt!"
1016
 
1017
- #: dashboard/publisher/adverts-edit.php:73
1018
  msgid "The advert will expire in less than 2 days!"
1019
  msgstr "Die Anzeige läuft in weniger als 2 Tagen ab!"
1020
 
1021
- #: dashboard/publisher/adverts-edit.php:76
1022
  msgid "This advert will expire in less than 7 days!"
1023
  msgstr "Diese Anzeige läuft in weniger als 7 Tage ab!"
1024
 
1025
- #: dashboard/publisher/adverts-edit.php:79
1026
  msgid "This advert has been disabled and does not rotate on your site!"
1027
  msgstr ""
1028
  "Diese Anzeige wurde deaktiviert und rotiert nicht mehr auf Ihrer Website!"
1029
 
1030
- #: dashboard/publisher/adverts-edit.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
  msgid "Edit Advert"
1032
  msgstr "Anzeige bearbeiten"
1033
 
1034
- #: dashboard/publisher/adverts-edit.php:121
1035
  msgid "AdCode"
1036
  msgstr "AdCode"
1037
 
1038
- #: dashboard/publisher/adverts-edit.php:126
1039
  msgid "Basic Examples:"
1040
  msgstr "Basic-Beispiele:"
1041
 
1042
- #: dashboard/publisher/adverts-edit.php:127
1043
  msgid "Click any of the examples to use it."
1044
  msgstr "Klicken Sie auf eines der Beispiele, um es zu verwenden."
1045
 
1046
- #: dashboard/publisher/adverts-edit.php:136
1047
  msgid "Useful tags"
1048
  msgstr "Nützliche Tags"
1049
 
1050
- #: dashboard/publisher/adverts-edit.php:138
1051
  msgid "Insert the advert ID Number."
1052
  msgstr "Fügen Sie die Anzeige ID-Nummer ein."
1053
 
1054
- #: dashboard/publisher/adverts-edit.php:138
1055
  msgid "Use this tag when selecting a image below."
1056
  msgstr "Verwenden Sie dieses Tag, wenn Sie ein Bild unten auswählen."
1057
 
1058
- #: dashboard/publisher/adverts-edit.php:138
1059
  msgid "Insert the advert name."
1060
  msgstr "Fügen Sie den Anzeige - Namen ein."
1061
 
1062
- #: dashboard/publisher/adverts-edit.php:138
1063
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1064
  msgstr ""
1065
  "Fügen Sie eine zufällige Zeichenfolge ein. Nützlich für Anzeigen vom Typ DFP/"
1066
  "DoubleClick."
1067
 
1068
- #: dashboard/publisher/adverts-edit.php:138
1069
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1070
  msgstr ""
1071
  "Fügen Sie das &lt;a&gt;-Tag hinzu, um die Anzeige in einem neuen Fenster zu "
1072
  "öffnen."
1073
 
1074
- #: dashboard/publisher/adverts-edit.php:138
1075
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1076
  msgstr ""
1077
  "Fügen Sie in den <a>tag rel=\"nofollow\" ein, damit Crawler diesen Link "
1078
  "ignorieren."
1079
 
1080
- #: dashboard/publisher/adverts-edit.php:139
1081
  msgid ""
1082
  "Place the cursor where you want to add a tag and click to add it to your "
1083
  "AdCode."
@@ -1085,11 +1062,11 @@ msgstr ""
1085
  "Platzieren Sie den Cursor in Ihrem AdCode an der Stelle, wo Sie diese Tags "
1086
  "hinzufügen möchten und klicken Sie dann."
1087
 
1088
- #: dashboard/publisher/adverts-edit.php:144
1089
  msgid "Preview"
1090
  msgstr "Vorschau"
1091
 
1092
- #: dashboard/publisher/adverts-edit.php:147
1093
  msgid ""
1094
  "Note: While this preview is an accurate one, it might look different then it "
1095
  "does on the website."
@@ -1097,42 +1074,42 @@ msgstr ""
1097
  "Hinweis: Auch wenn die Vorschau korrekt aussieht, könnte es auf der Website "
1098
  "anders aussehen."
1099
 
1100
- #: dashboard/publisher/adverts-edit.php:148
1101
  msgid ""
1102
  "This is because of CSS differences. Your themes CSS file is not active here!"
1103
  msgstr ""
1104
  "Dies hat mit Unterschieden hinsichtlich CSS zu tun. Ihre theme-CSS-Datei ist "
1105
  "hier nicht aktiv!"
1106
 
1107
- #: dashboard/publisher/adverts-edit.php:153
1108
  msgid "Banner asset"
1109
  msgstr "Banner anzeigen"
1110
 
1111
- #: dashboard/publisher/adverts-edit.php:155
1112
  msgid "WordPress media:"
1113
  msgstr "WordPress-Medien:"
1114
 
1115
- #: dashboard/publisher/adverts-edit.php:155
1116
  msgid "Select Banner"
1117
  msgstr "Banner wählen"
1118
 
1119
- #: dashboard/publisher/adverts-edit.php:157
1120
  msgid "- OR -"
1121
  msgstr "ODER"
1122
 
1123
- #: dashboard/publisher/adverts-edit.php:158
1124
  msgid "Banner folder:"
1125
  msgstr "Banner-Ordner:"
1126
 
1127
- #: dashboard/publisher/adverts-edit.php:159
1128
  msgid "No image selected"
1129
  msgstr "Kein Bild ausgewählt"
1130
 
1131
- #: dashboard/publisher/adverts-edit.php:169
1132
  msgid "Use %asset% in the adcode instead of the file path."
1133
  msgstr "Verwenden Sie %asset% im Adcode statt des Dateipfades."
1134
 
1135
- #: dashboard/publisher/adverts-edit.php:169
1136
  msgid ""
1137
  "Use either the text field or the dropdown. If the textfield has content that "
1138
  "field has priority."
@@ -1140,29 +1117,27 @@ msgstr ""
1140
  "Verwenden Sie das Textfeld oder die Dropdown-Liste. Wenndas Textfeld "
1141
  "gefüllt ist, hat das Feld Priorität."
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:176
1144
- msgid "Enable click and impression tracking for this advert."
1145
- msgstr "Klick und eindrücke Verfolgung für diese Anzeige aktivieren."
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:177
1148
  msgid ""
1149
- "Note: Clicktracking does not work for Javascript adverts such as those "
1150
- "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1151
- "always supported."
1152
  msgstr ""
1153
- "Hinweis: Clicktracking funktioniert nicht für Javascript Anzeigen wie "
1154
- "beispielsweise von Google AdSense/DFP/DoubleClick. HTML5/Flash-Anzeigen "
1155
- "werden nicht immer unterstützt."
1156
 
1157
- #: dashboard/publisher/adverts-edit.php:185
1158
  msgid "Enabled, this ad will be visible"
1159
  msgstr "Aktiviert, wird diese Anzeige sichtbar"
1160
 
1161
- #: dashboard/publisher/adverts-edit.php:186
1162
  msgid "Disabled, do not show this advert anywhere"
1163
  msgstr "Deaktiviert, zeigen Sie diese Anzeige nirgendwo an"
1164
 
1165
- #: dashboard/publisher/adverts-edit.php:192
1166
  msgid ""
1167
  "Target your audience with Geo Targeting and easily select which devices and "
1168
  "mobile operating systems the advert should show on with AdRotate Pro!"
@@ -1171,20 +1146,17 @@ msgstr ""
1171
  "aus, welche Geräte und mobilen Betriebssysteme die Anzeige mit AdRotate Pro "
1172
  "anzeigen soll!"
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:192
1175
- #: dashboard/publisher/adverts-edit.php:230
1176
  #: dashboard/publisher/groups-edit.php:227
1177
- #: dashboard/publisher/statistics-advert.php:109
1178
- #: dashboard/publisher/statistics-group.php:113
1179
- #: dashboard/publisher/statistics-main.php:83
1180
  msgid "Upgrade now"
1181
  msgstr "Jetzt upgraden"
1182
 
1183
- #: dashboard/publisher/adverts-edit.php:194
1184
  msgid "Schedule your advert"
1185
  msgstr "Planen Sie Ihre Anzeige"
1186
 
1187
- #: dashboard/publisher/adverts-edit.php:195
1188
  msgid ""
1189
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1190
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
@@ -1195,36 +1167,36 @@ msgstr ""
1195
  "ist, müssen 12 Stunden hinzugefügt werden. 2PM ist 14:00 Uhr. 6AM ist 06:00 "
1196
  "Uhr."
1197
 
1198
- #: dashboard/publisher/adverts-edit.php:199
1199
  msgid "Start date"
1200
  msgstr "Startdatum"
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:203
1203
  msgid "End date"
1204
  msgstr "Enddatum"
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:209
1207
  msgid "Start time"
1208
  msgstr "Startzeit"
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:214
1211
  msgid "End time"
1212
  msgstr "Endzeit"
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:222
1215
  msgid "Maximum Clicks"
1216
  msgstr "Maximale Klicks"
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:223
1219
- #: dashboard/publisher/adverts-edit.php:225
1220
  msgid "Leave empty or 0 to skip this."
1221
  msgstr "Leer lassen oder 0, um dies zu überspringen."
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:224
1224
  msgid "Maximum Impressions"
1225
  msgstr "Maximale Impressionen"
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:230
1228
  msgid ""
1229
  "Plan ahead and create multiple and more advanced schedules for each advert "
1230
  "with AdRotate Pro."
@@ -1232,19 +1204,19 @@ msgstr ""
1232
  "Planen Sie im Voraus und erstellen Sie mehrere und erweiterte Zeitpläne für "
1233
  "jede Anzeige mit AdRotate Pro."
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:232
1236
  #: dashboard/publisher/groups-edit.php:157
1237
  #: dashboard/publisher/groups-edit.php:302
1238
  msgid "Usage"
1239
  msgstr "Verwendung"
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:236
1242
  #: dashboard/publisher/groups-edit.php:161
1243
  #: dashboard/publisher/groups-edit.php:306
1244
  msgid "Widget"
1245
  msgstr "Widget"
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:237
1248
  msgid ""
1249
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1250
  "and select the advert or the group the advert is in."
@@ -1252,25 +1224,25 @@ msgstr ""
1252
  "Ziehen Sie das AdRotate Widget in die Seitenleiste, wo Sie Ihre Anzeige "
1253
  "platzieren möchten und wählen Sie ein Anzeige oder eine Gruppe mit Anzeigen."
1254
 
1255
- #: dashboard/publisher/adverts-edit.php:240
1256
  #: dashboard/publisher/groups-edit.php:165
1257
  #: dashboard/publisher/groups-edit.php:310
1258
  msgid "In a post or page"
1259
  msgstr "In einem Beitrag oder eine Seite"
1260
 
1261
- #: dashboard/publisher/adverts-edit.php:242
1262
  #: dashboard/publisher/groups-edit.php:167
1263
  #: dashboard/publisher/groups-edit.php:312
1264
  msgid "Directly in a theme"
1265
  msgstr "Direkt im theme"
1266
 
1267
- #: dashboard/publisher/adverts-edit.php:249
1268
- #: dashboard/publisher/adverts-edit.php:292
1269
  msgid "Save Advert"
1270
  msgstr "Anzeige speichern"
1271
 
1272
- #: dashboard/publisher/adverts-edit.php:250
1273
- #: dashboard/publisher/adverts-edit.php:293
1274
  #: dashboard/publisher/adverts-generator.php:148
1275
  #: dashboard/publisher/groups-edit.php:175
1276
  #: dashboard/publisher/groups-edit.php:320
@@ -1278,58 +1250,65 @@ msgstr "Anzeige speichern"
1278
  msgid "Cancel"
1279
  msgstr "Abbrechen"
1280
 
1281
- #: dashboard/publisher/adverts-edit.php:254
1282
  msgid "Select Groups"
1283
  msgstr "Gruppen auswählen"
1284
 
1285
- #: dashboard/publisher/adverts-edit.php:270
 
 
 
 
 
 
 
1286
  #: dashboard/publisher/groups-main.php:60
1287
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1288
  msgid "Default"
1289
  msgstr "Standard"
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:271
1292
  #: dashboard/publisher/groups-main.php:61
1293
  msgid "Dynamic"
1294
  msgstr "Dynamisch"
1295
 
1296
- #: dashboard/publisher/adverts-edit.php:271
1297
  #: dashboard/publisher/groups-main.php:61
1298
  msgid "second rotation"
1299
  msgstr "Zweite rotation"
1300
 
1301
- #: dashboard/publisher/adverts-edit.php:272
1302
  #: dashboard/publisher/groups-main.php:62
1303
  msgid "Block"
1304
  msgstr "Block"
1305
 
1306
- #: dashboard/publisher/adverts-edit.php:272
1307
  #: dashboard/publisher/groups-main.php:62
1308
  msgid "grid"
1309
  msgstr "Raster"
1310
 
1311
- #: dashboard/publisher/adverts-edit.php:273
1312
  #: dashboard/publisher/groups-edit.php:234
1313
  #: dashboard/publisher/groups-main.php:63
1314
  msgid "Post Injection"
1315
  msgstr "Post Injection"
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:274
1318
  msgid "Geolocation"
1319
  msgstr "Geolokalisierung"
1320
 
1321
- #: dashboard/publisher/adverts-edit.php:281
1322
  #: dashboard/publisher/groups-edit.php:74
1323
  #: dashboard/publisher/groups-main.php:70
1324
  msgid "Mode"
1325
  msgstr "Modus"
1326
 
1327
- #: dashboard/publisher/adverts-edit.php:298
1328
  #: dashboard/publisher/adverts-generator.php:131
1329
  msgid "Portability"
1330
  msgstr "Portabilität"
1331
 
1332
- #: dashboard/publisher/adverts-edit.php:299
1333
  msgid ""
1334
  "This long code is your advert. It includes all settings from above except "
1335
  "the schedule and group selection. You can import this hash into another "
@@ -1346,7 +1325,7 @@ msgstr ""
1346
  "Sie können den Hash in das Feld \"Anzeigenhash\" im Anzeigengenerator eines "
1347
  "anderen AdRotate-Setups einfügen."
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:303
1350
  #: dashboard/publisher/adverts-generator.php:137
1351
  msgid "Advert hash"
1352
  msgstr "Advert Hash"
@@ -1749,6 +1728,10 @@ msgstr ""
1749
  msgid "Get access to all features in AdRotate Pro."
1750
  msgstr "Erhalten Sie Zugriff auf alle Funktionen in AdRotate Pro."
1751
 
 
 
 
 
1752
  #: dashboard/publisher/groups-edit.php:162
1753
  #: dashboard/publisher/groups-edit.php:307
1754
  msgid ""
@@ -2207,12 +2190,6 @@ msgstr ""
2207
  "Alle Statistiken sind Richtwerte. Sie haben nicht unbedingt Auswirkungen auf "
2208
  "andere Bereiche."
2209
 
2210
- #: dashboard/publisher/statistics-advert.php:109
2211
- #: dashboard/publisher/statistics-group.php:113
2212
- #: dashboard/publisher/statistics-main.php:83
2213
- msgid "Get more features with AdRotate Pro"
2214
- msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
2215
-
2216
  #: dashboard/publisher/statistics-group.php:46
2217
  msgid "Statistics for group"
2218
  msgstr "Statistiken für Gruppe"
@@ -2221,73 +2198,6 @@ msgstr "Statistiken für Gruppe"
2221
  msgid "Adverts counting stats"
2222
  msgstr "Anzeigen - Statistik"
2223
 
2224
- #: dashboard/settings/advertisers.php:16
2225
- msgid "Advertisers - Available in AdRotate Pro"
2226
- msgstr "Inserenten - verfügbar in AdRotate Pro"
2227
-
2228
- #: dashboard/settings/advertisers.php:17
2229
- msgid "Enable advertisers so they can review and manage their own ads."
2230
- msgstr ""
2231
- "Inserenten aktiviert, damit diese ihre eigenen Anzeigen verwalten und prüfen "
2232
- "können."
2233
-
2234
- #: dashboard/settings/advertisers.php:20
2235
- msgid "Enable Advertisers"
2236
- msgstr "Bearbeitung durch Inserenten aktivieren"
2237
-
2238
- #: dashboard/settings/advertisers.php:22
2239
- msgid "Allow adverts to be coupled to users (Advertisers)."
2240
- msgstr "Erlaube es Anzeigen Nutzern (Werbekunden) zuzuordnen."
2241
-
2242
- #: dashboard/settings/advertisers.php:26
2243
- msgid "Edit/update adverts"
2244
- msgstr "Anzeigen bearbeiten oder aktualisieren"
2245
-
2246
- #: dashboard/settings/advertisers.php:28
2247
- msgid "Allow advertisers to add new or edit their adverts."
2248
- msgstr "Erlaube Inserenten, neue hinzufügen oder ihre Anzeigen zubearbeiten."
2249
-
2250
- #: dashboard/settings/advertisers.php:32
2251
- msgid "Mobile adverts"
2252
- msgstr "Mobile Anzeigen"
2253
-
2254
- #: dashboard/settings/advertisers.php:34
2255
- msgid "Allow advertisers to specify on which devices their ads will show."
2256
- msgstr ""
2257
- "Erlaube Inserenten die Option, anzugeben, auf welchen Geräten ihre Anzeigen "
2258
- "gezeigt werden."
2259
-
2260
- #: dashboard/settings/advertisers.php:40
2261
- msgid ""
2262
- "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2263
- "be enabled, too."
2264
- msgstr ""
2265
- "Erlaube Inserenten die Option, wo ihre Anzeigen gezeigt werden soll. Geo-"
2266
- "Targeting muss ebenfalls aktiviert sein."
2267
-
2268
- #: dashboard/settings/advertisers.php:44
2269
- msgid "Advertiser role"
2270
- msgstr "Inserenten-Rolle"
2271
-
2272
- #: dashboard/settings/advertisers.php:46
2273
- msgid "Create a seperate user role for your advertisers."
2274
- msgstr "Erstellen Sie eine separate Benutzerrolle für Ihre Anzeigenkunden."
2275
-
2276
- #: dashboard/settings/advertisers.php:47
2277
- msgid ""
2278
- "Don't forget to give these users access to their advertiser dashboard via "
2279
- "the Roles tab."
2280
- msgstr ""
2281
- "Vergessen Sie nicht, Benutzern Zugriff auf ihr Inserenten-Dashboard über die "
2282
- "Registerkarte \"Rollen\" zu geben."
2283
-
2284
- #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2285
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:47
2286
- #: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
2287
- #: dashboard/settings/statistics.php:79
2288
- msgid "Update Options"
2289
- msgstr "Einstellungen aktualisieren"
2290
-
2291
  #: dashboard/settings/general.php:17
2292
  msgid "General Settings"
2293
  msgstr "Allgemeine Einstellungen"
@@ -2301,84 +2211,113 @@ msgid "Some options are only available in AdRotate Pro!"
2301
  msgstr "Einige Optionen sind nur verfügbar in AdRotate Pro!"
2302
 
2303
  #: dashboard/settings/general.php:21
2304
- msgid "Shortcode in widgets"
2305
- msgstr "Shortcode in Text-widgets"
2306
 
2307
  #: dashboard/settings/general.php:22
2308
  msgid ""
2309
- "Enable this option to if your theme does not support shortcodes in the "
2310
- "WordPress text widget."
2311
  msgstr ""
2312
- "Aktivieren Sie diese Option, wenn Ihr theme keine Shortcodes im Text-Widget "
2313
- "von WordPress unterstützt."
2314
 
2315
- #: dashboard/settings/general.php:25
2316
- msgid "Disable live preview"
2317
- msgstr "Live-Vorschau deaktivieren"
 
 
 
 
 
2318
 
2319
- #: dashboard/settings/general.php:26
 
 
 
 
2320
  msgid ""
2321
- "Enable this option if you have faulty adverts that overflow their designated "
2322
- "area while creating/editing adverts."
2323
  msgstr ""
2324
- "Aktivieren Sie diese Option, wenn Sie fehlerhafte Anzeigen haben, die über "
2325
- "den gewählten Bereich beim Erstellen/Bearbeiten der Anzeigen reichen."
 
 
 
 
2326
 
2327
- #: dashboard/settings/general.php:29
2328
- msgid "Disable dynamic mode"
2329
- msgstr "Dynamischen Modus deaktivieren"
 
 
 
 
2330
 
2331
  #: dashboard/settings/general.php:30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2332
  msgid ""
2333
- "Enable this option to disable dynamic mode in groups for mobile devices if "
2334
- "you notice skipping or jumpy content."
2335
  msgstr ""
2336
- "Aktivieren Sie diese Option, um den dynamischen Modus bei Gruppen für "
2337
- "Mobilgeräte zu deaktivieren, falls der Inhalt nicht korrekt angezeigt wird."
2338
 
2339
- #: dashboard/settings/general.php:33
2340
  msgid "Load jQuery"
2341
  msgstr "Laden von jQuery"
2342
 
2343
- #: dashboard/settings/general.php:34
2344
  msgid ""
2345
- "Enable this option if your theme does not load jQuery. jQuery is required "
2346
- "for dynamic groups, statistics and some other features."
2347
  msgstr ""
2348
- "Aktivieren Sie diese Option, wenn in Ihrem theme jQuery nicht geladen wird. "
2349
- "jQuery ist erforderlich für dynamische Gruppen, Statistik und einige andere "
2350
- "Features."
2351
 
2352
- #: dashboard/settings/general.php:37
2353
  msgid "Load scripts in footer?"
2354
  msgstr "Skripte in Fußzeile laden ?"
2355
 
2356
- #: dashboard/settings/general.php:38
2357
- msgid ""
2358
- "Enable this option if you want to load all AdRotate Javascripts in the "
2359
- "footer of your site."
2360
- msgstr ""
2361
- "Aktivieren Sie diese Option, wenn Sie alle AdRotate Javascripts in der "
2362
- "Fußzeile Ihrer Website laden möchten."
2363
 
2364
- #: dashboard/settings/general.php:41
2365
  msgid "Adblock disguise"
2366
  msgstr "Verhindern von Adblock"
2367
 
2368
- #: dashboard/settings/general.php:43
2369
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2370
  msgstr ""
2371
  "Lassen Sie dies leer, um das zu deaktivieren. Verwenden Sie nur "
2372
  "Kleinbuchstaben. Zum Beispiel:"
2373
 
2374
- #: dashboard/settings/general.php:44
2375
  msgid ""
2376
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2377
  msgstr ""
2378
  "Um die Funktion von Adblock Plugins zu verhindern, sollten Sie shortcodes "
2379
  "verwenden."
2380
 
2381
- #: dashboard/settings/general.php:44
2382
  msgid ""
2383
  "To also apply this feature to widgets, use a text widget with a shortcode "
2384
  "instead of the AdRotate widget."
@@ -2386,7 +2325,7 @@ msgstr ""
2386
  "Um auch dieses Feature auf Widgets anzuwenden, verwenden Sie eine Text-"
2387
  "Widget mit einem shortcode statt AdRotate-Widget."
2388
 
2389
- #: dashboard/settings/general.php:44
2390
  msgid ""
2391
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2392
  "feature will have little effect!"
@@ -2394,24 +2333,24 @@ msgstr ""
2394
  "Vermeiden Sie offensichtliche Keywords oder Dateinamen in Ihrer Werbung, "
2395
  "sonst wird dieses Feature nur geringe Auswirkungen haben!"
2396
 
2397
- #: dashboard/settings/general.php:49
2398
  msgid "Banner Folder"
2399
  msgstr "Banner-Ordner"
2400
 
2401
- #: dashboard/settings/general.php:50
2402
  msgid "Set a folder where your banner images will be stored."
2403
  msgstr ""
2404
  "Legen Sie einen Ordner fest, in dem Ihre Bannerbilder gespeichert werden."
2405
 
2406
- #: dashboard/settings/general.php:53
2407
  msgid "Folder name"
2408
  msgstr "Ordnername"
2409
 
2410
- #: dashboard/settings/general.php:55
2411
  msgid "(Default: banners)."
2412
  msgstr "(Standard: Banner)."
2413
 
2414
- #: dashboard/settings/general.php:56
2415
  msgid ""
2416
  "To try and trick ad blockers you could set the folder to something crazy "
2417
  "like:"
@@ -2419,7 +2358,7 @@ msgstr ""
2419
  "Um Ad-Blocker zu zu irritieren, können Sie den Ordner auf etwas verrücktes "
2420
  "einstellen wie:"
2421
 
2422
- #: dashboard/settings/general.php:57
2423
  msgid ""
2424
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2425
  "will show errors when the folder is missing."
@@ -2427,26 +2366,26 @@ msgstr ""
2427
  "Dieser Ordner wird nicht automatisch erstellt, wenn er nicht vorhanden ist. "
2428
  "AdRotate wird einen Fehler anzeigen, wenn der Ordner nicht vorhanden ist."
2429
 
2430
- #: dashboard/settings/general.php:62
2431
  msgid "Bot filter"
2432
  msgstr "Bot-filter"
2433
 
2434
- #: dashboard/settings/general.php:63
2435
  msgid "The bot filter is used for the AdRotate stats tracker."
2436
  msgstr "Der Bot-Filter wird für den AdRotate Statistik-Tracker verwendet."
2437
 
2438
- #: dashboard/settings/general.php:66
2439
  msgid "User-Agent Filter"
2440
  msgstr "Benutzer-Agent-Filter"
2441
 
2442
- #: dashboard/settings/general.php:69
2443
  msgid ""
2444
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2445
  msgstr ""
2446
  "Eine kommagetrennte Liste von Schlüsselwörtern. Bots/Crawler/Benutzer-Agents "
2447
  "herausfiltern."
2448
 
2449
- #: dashboard/settings/general.php:70
2450
  msgid ""
2451
  "Keep in mind that this might give false positives. The word 'fire' also "
2452
  "matches 'firefox', but not vice-versa. So be careful!"
@@ -2455,7 +2394,7 @@ msgstr ""
2455
  "'Fire' findet auch 'Firefox', aber nicht umgekehrt. Also seien Sie "
2456
  "vorsichtig!"
2457
 
2458
- #: dashboard/settings/general.php:71
2459
  msgid ""
2460
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2461
  "characters are stripped out."
@@ -2463,7 +2402,7 @@ msgstr ""
2463
  "Nur Wörter mit alphanumerischen Zeichen und [-_] sind zulässig. Alle anderen "
2464
  "Zeichen werden entfernt."
2465
 
2466
- #: dashboard/settings/general.php:72
2467
  msgid ""
2468
  "Additionally to the list specified here, empty User-Agents are blocked as "
2469
  "well."
@@ -2471,14 +2410,20 @@ msgstr ""
2471
  "Zusätzlich zu der hier angegebenen Liste werden leere User-Agents ebenfalls "
2472
  "blockiert."
2473
 
2474
- #: dashboard/settings/general.php:72
2475
  msgid "Learn more about"
2476
  msgstr "Mehr über"
2477
 
2478
- #: dashboard/settings/general.php:72
2479
  msgid "user-agents"
2480
  msgstr "Benutzer-agents"
2481
 
 
 
 
 
 
 
2482
  #: dashboard/settings/geotargeting.php:17
2483
  msgid "Geo Targeting - Available in AdRotate Pro"
2484
  msgstr "Geo-Targeting - verfügbar in AdRotate Pro"
@@ -2592,8 +2537,8 @@ msgstr ""
2592
  "ist, nicht mehr reagiert oder schwerfällig ist."
2593
 
2594
  #: dashboard/settings/maintenance.php:22
2595
- msgid "Check all adverts for configuration errors"
2596
- msgstr "Überprüfen Sie alle Anzeigen auf Konfigurationsfehler"
2597
 
2598
  #: dashboard/settings/maintenance.php:22
2599
  msgid "You are about to check all adverts for errors."
@@ -2615,8 +2560,8 @@ msgid "Clean-up Database and Files"
2615
  msgstr "Datenbank aufräumen"
2616
 
2617
  #: dashboard/settings/maintenance.php:30
2618
- msgid "Clean-up database and old files"
2619
- msgstr "Datenbank aufräumen"
2620
 
2621
  #: dashboard/settings/maintenance.php:30
2622
  msgid "You are about to do maintenance on your setup of AdRotate."
@@ -3160,55 +3105,63 @@ msgstr "AdRotate-Statistiken"
3160
 
3161
  #: dashboard/settings/statistics.php:48
3162
  msgid ""
3163
- "The settings below are for the internal tracker and have no effect when "
3164
- "using Google Analytics or Matomo."
3165
  msgstr ""
3166
- "Die folgenden Einstellungen gelten für den internen Tracker und haben keine "
3167
  "Auswirkungen bei der Verwendung von Google Analytics oder Matomo."
3168
 
3169
  #: dashboard/settings/statistics.php:51
 
 
 
 
 
 
 
 
3170
  msgid "Logged in impressions"
3171
  msgstr "Impressions"
3172
 
3173
- #: dashboard/settings/statistics.php:53
3174
  msgid "Track impressions from logged in users."
3175
  msgstr "Track impressions von angemeldeten Nutzern."
3176
 
3177
- #: dashboard/settings/statistics.php:57
3178
  msgid "Logged in clicks"
3179
  msgstr "Clicks"
3180
 
3181
- #: dashboard/settings/statistics.php:59
3182
  msgid "Track clicks from logged in users."
3183
  msgstr "Track Klicks von angemeldeten Nutzern."
3184
 
3185
- #: dashboard/settings/statistics.php:63
3186
  msgid "Impression timer"
3187
  msgstr "Impression-Timer"
3188
 
3189
- #: dashboard/settings/statistics.php:65 dashboard/settings/statistics.php:72
3190
  msgid "Seconds."
3191
  msgstr "Sekunden."
3192
 
3193
- #: dashboard/settings/statistics.php:66
3194
  msgid "Default: 60."
3195
  msgstr "Standard: 60."
3196
 
3197
- #: dashboard/settings/statistics.php:66
3198
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3199
  msgstr ""
3200
  "Diese Zahl darf nicht leer sein, entweder weniger als 10 oder mehr als 3600 "
3201
  "(1 Stunde)."
3202
 
3203
- #: dashboard/settings/statistics.php:70
3204
  msgid "Click timer"
3205
  msgstr "Klicken Sie auf Zeitgeber"
3206
 
3207
- #: dashboard/settings/statistics.php:73
3208
  msgid "Default: 86400."
3209
  msgstr "Standard: 86400."
3210
 
3211
- #: dashboard/settings/statistics.php:73
3212
  msgid ""
3213
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3214
  msgstr ""
@@ -3282,6 +3235,157 @@ msgstr "Hilfe erhalten"
3282
  msgid "Premium Support is available in AdRotate Pro!"
3283
  msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
3284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3285
  #~ msgid "Get started today"
3286
  #~ msgstr "Starte heute"
3287
 
@@ -3632,9 +3736,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
3632
  #~ msgid "News & Updates"
3633
  #~ msgstr "Neuigkeiten & Updates"
3634
 
3635
- #~ msgid "Support Forums"
3636
- #~ msgstr "Support-Foren"
3637
-
3638
  #~ msgid ""
3639
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3640
  #~ "Chances are your question has already been asked and answered!"
@@ -5049,51 +5150,9 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
5049
  #~ "Inserenten aktivieren, damit diese ihre eigenen Anzeigen verwalten und "
5050
  #~ "prüfen können."
5051
 
5052
- #~ msgid "Duplicate adverts"
5053
- #~ msgstr "Doppelte Werbung"
5054
-
5055
- #~ msgid ""
5056
- #~ "Enable this option to prevent adverts in groups that are in Default or "
5057
- #~ "Block mode from showing multiple times on the same pageload."
5058
- #~ msgstr ""
5059
- #~ "Aktivieren Sie diese Option, um zu verhindern, dass Anzeigen in Gruppen, "
5060
- #~ "die sich im Standard- oder Blockmodus befinden, mehrmals auf demselben "
5061
- #~ "Seitenladen angezeigt werden."
5062
-
5063
- #~ msgid ""
5064
- #~ "If you still notice double adverts from groups placed on a page, start "
5065
- #~ "with carefully looking at your setup to make sure you did not cause this "
5066
- #~ "yourself."
5067
- #~ msgstr ""
5068
- #~ "Wenn Sie immer noch doppelte Anzeigen von Gruppen bemerken, die auf einer "
5069
- #~ "Seite platziert sind, beginnen Sie mit einem sorgfältigen Betrachten "
5070
- #~ "Ihres Setups, um sicherzustellen, dass Sie dies nicht selbst verursacht "
5071
- #~ "haben."
5072
-
5073
- #~ msgid "On some servers $_SESSION is disabled."
5074
- #~ msgstr "Auf einigen Servern ist _SESSION deaktiviert."
5075
-
5076
- #~ msgid ""
5077
- #~ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. "
5078
- #~ "However, most people will not need this extra plugin!"
5079
- #~ msgstr ""
5080
- #~ "Ein Plugin namens \"WP Session Manager\" von Eric Mann kann dies beheben. "
5081
- #~ "Jedoch, die meisten Menschen werden dieses zusätzliche Plugin nicht "
5082
- #~ "brauchen!"
5083
-
5084
- #~ msgid ""
5085
- #~ "Enable this option to if your theme does not support shortcodes in the "
5086
- #~ "WordPress text widget. (This does not always work!)"
5087
- #~ msgstr ""
5088
- #~ "Aktivieren Sie diese Option, wenn Ihr theme keine Shortcodes im Text-"
5089
- #~ "Widget von WordPress unterstützt. (Dies funktioniert nicht immer!)"
5090
-
5091
  #~ msgid "Live preview"
5092
  #~ msgstr "Live-Vorschau"
5093
 
5094
- #~ msgid "Dynamic mode"
5095
- #~ msgstr "Dynamischer Modus"
5096
-
5097
  #~ msgid ""
5098
  #~ "The bot filter is used for Geo Targeting and the AdRotate stats tracker."
5099
  #~ msgstr "Der Bot-Filter wird für den AdRotate Statistik-Tracker verwendet."
@@ -5223,9 +5282,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
5223
  #~ "Deaktivieren Sie vorübergehend die Verschlüsselung auf der redirect Url. "
5224
  #~ "Nur für AdRotate Internal Tracker."
5225
 
5226
- #~ msgid "Check adverts for errors"
5227
- #~ msgstr "Anzeigen auf Fehler prüfen"
5228
-
5229
  #~ msgid "Send email notifications"
5230
  #~ msgstr "E-Mail Benachrichtigungen senden"
5231
 
@@ -5755,9 +5811,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
5755
  #~ msgid "Choose adverts"
5756
  #~ msgstr "Wählen Sie Anzeigen"
5757
 
5758
- #~ msgid "Admin Bar"
5759
- #~ msgstr "Admin-Leiste"
5760
-
5761
  #~ msgid "Enable the AdRotate Quickmenu in the Admin Bar"
5762
  #~ msgstr "Aktivieren der AdRotate Quickmenu in der Admin-Bar"
5763
 
@@ -5809,14 +5862,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
5809
  #~ msgid "Useful links to learn more about AdRotate"
5810
  #~ msgstr "Nützliche Links, um mehr über AdRotate zu lernen"
5811
 
5812
- #~ msgid "AdRotate manuals"
5813
- #~ msgstr "AdRotate Handbücher"
5814
-
5815
- #, fuzzy
5816
- #~| msgid "Follow Arnan on Facebook"
5817
- #~ msgid "Follow me on Facebook"
5818
- #~ msgstr "Arnan auf Facebook folgen"
5819
-
5820
  #~ msgid "Brought to you by"
5821
  #~ msgstr "Mit freundlicher Empfehlung von"
5822
 
@@ -6406,9 +6451,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
6406
  #~ msgid "ticket support"
6407
  #~ msgstr "Support-Ticket"
6408
 
6409
- #~ msgid "Post Ticket"
6410
- #~ msgstr "Post-Ticket"
6411
-
6412
  #~ msgid "Register License"
6413
  #~ msgstr "Lizenz registrieren"
6414
 
@@ -6732,10 +6774,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
6732
  #~ msgid "Enable stats"
6733
  #~ msgstr "Statistiques activés"
6734
 
6735
- #, fuzzy
6736
- #~ msgid "Track clicks and impressions."
6737
- #~ msgstr "Suivi des clicks et des impressions."
6738
-
6739
  #, fuzzy
6740
  #~ msgid ""
6741
  #~ "There is a problem saving the image specification. Please reset your "
@@ -6841,14 +6879,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
6841
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
6842
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
6843
 
6844
- #, fuzzy
6845
- #~ msgid ""
6846
- #~ "Note: Clicktracking does generally not work for Javascript adverts such "
6847
- #~ "as those provided by Google AdSense."
6848
- #~ msgstr ""
6849
- #~ "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
6850
- #~ "publicités en Javascript telles que celles fournies par Google AdSense."
6851
-
6852
  #, fuzzy
6853
  #~ msgid ""
6854
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
@@ -7094,9 +7124,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
7094
  #~ msgstr ""
7095
  #~ "Nutzen Sie <b>getadrotatepro</b> for 10% off on any AdRotate license!"
7096
 
7097
- #~ msgid "Thank you for your purchase!"
7098
- #~ msgstr "Vielen Dank für Ihren Einkauf!"
7099
-
7100
  #~ msgid "More information..."
7101
  #~ msgstr "Mehr Informationen..."
7102
 
@@ -7183,9 +7210,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
7183
  #~ msgid "Not sure which license is for you?"
7184
  #~ msgstr "Nicht sicher, welche Lizenz Sie haben?"
7185
 
7186
- #~ msgid "Compare Licenses"
7187
- #~ msgstr "Lizenzen vergleichen"
7188
-
7189
  #~ msgid ""
7190
  #~ "You did not use %image% in your AdCode. The responsive checkbox will be "
7191
  #~ "ineffective."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-31 02:05-0500\n"
6
+ "PO-Revision-Date: 2021-08-31 02:05-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: de\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:797
21
  msgid "Advert saved"
22
+ msgstr "Werbeanzeige gespeichert"
23
 
24
+ #: adrotate-functions.php:801
25
  msgid "Group saved"
26
  msgstr "Gruppe gespeichert"
27
 
28
+ #: adrotate-functions.php:805
29
  msgid "Banner image saved"
30
  msgstr "Banner-Bild gespeichert"
31
 
32
+ #: adrotate-functions.php:809
33
  msgid "Ad(s) deleted"
34
  msgstr "Anzeige (n) gelöscht"
35
 
36
+ #: adrotate-functions.php:813
37
  msgid "Group deleted"
38
  msgstr "Gruppe gelöscht"
39
 
40
+ #: adrotate-functions.php:817
41
  msgid "Asset(s) deleted"
42
  msgstr "Assets gelöscht"
43
 
44
+ #: adrotate-functions.php:821
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
49
  "Beim Löschen der Datei oder des Ordners ist etwas schief gelaufen. Stellen "
50
  "Sie sicher, dass Ihre Berechtigungen in Ordnung sind."
51
 
52
+ #: adrotate-functions.php:825
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Anzeige(n) Statistik-Reset"
55
 
56
+ #: adrotate-functions.php:829
57
  msgid "Advert(s) renewed"
58
  msgstr "Anzeige(e) erneuert"
59
 
60
+ #: adrotate-functions.php:833
61
  msgid "Advert(s) deactivated"
62
  msgstr "Anzeigen deaktiviert"
63
 
64
+ #: adrotate-functions.php:837
65
  msgid "Advert(s) activated"
66
  msgstr "Anzeige(n) aktiviert"
67
 
68
+ #: adrotate-functions.php:841
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Gruppe einschließlich der darin gelöschten Anzeigen"
71
 
72
+ #: adrotate-functions.php:845
73
  msgid "Export created"
74
  msgstr "Export erstellt"
75
 
76
+ #: adrotate-functions.php:849
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
82
  "Anzeige unten. Vergessen Sie nicht, alle Einstellungen zu überprüfen und die "
83
  "Anzeige zu planen."
84
 
85
+ #: adrotate-functions.php:854
86
  msgid "Settings saved"
87
  msgstr "Einstellungen gespeichert"
88
 
89
+ #: adrotate-functions.php:858
90
  msgid "Database optimized"
91
  msgstr "Datenbank optimiert"
92
 
93
+ #: adrotate-functions.php:862
94
  msgid "Database repaired"
95
  msgstr "Datenbank repariert"
96
 
97
+ #: adrotate-functions.php:866
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr ""
100
  "Anzeigen wurden überprüft und Zustände korrigiert, wo es erforderlich war"
101
 
102
+ #: adrotate-functions.php:870
103
  msgid "Cleanup complete"
104
  msgstr "Bereinigung abgeschlossen"
105
 
106
+ #: adrotate-functions.php:875
107
  msgid "Action prohibited"
108
  msgstr "Aktion nicht zulässig"
109
 
110
+ #: adrotate-functions.php:879
111
  msgid ""
112
  "The advert was saved but has an issue which might prevent it from working "
113
  "properly. Review the colored advert."
116
  "möglicherweise nicht ordnungsgemäß funktionieren könnte. Überprüfen Sie die "
117
  "farbige Anzeige."
118
 
119
+ #: adrotate-functions.php:883
120
  msgid "No data found in selected time period"
121
  msgstr "Keine Daten im ausgewählten Zeitraum gefunden"
122
 
123
+ #: adrotate-functions.php:887
124
  msgid "Database can only be optimized or cleaned once every hour"
125
  msgstr "Datenbank kann nur einmal pro Stunde optimiert oder gereinigt werden"
126
 
127
+ #: adrotate-functions.php:891
128
  msgid "Form can not be (partially) empty!"
129
  msgstr "Formular kann nicht (teilweise) leer sein!"
130
 
131
+ #: adrotate-functions.php:895
132
  msgid "No adverts found."
133
  msgstr "Keine Anzeigen gefunden."
134
 
135
+ #: adrotate-functions.php:899
136
  msgid ""
137
  "The advert hash is not usable or is missing required data. Please copy the "
138
  "hash correctly and try again."
140
  "Der Anzeigenhash ist nicht verwendbar oder enthält keine erforderlichen "
141
  "Daten. Kopieren Sie den Hash richtig, und versuchen Sie es erneut."
142
 
143
+ #: adrotate-functions.php:903
144
  msgid ""
145
  "The advert hash can not be used on the same site as it originated from or is "
146
  "not a valid hash for importing."
148
  "Der Anzeigenhash kann nicht auf derselben Website verwendet werden, von der "
149
  "er stammt, oder es handelt sich nicht um einen gültigen Hash für den Import."
150
 
151
+ #: adrotate-functions.php:907
152
  msgid "Unexpected error"
153
  msgstr "Unerwarteter Fehler"
154
 
323
  msgid "Installation instructions"
324
  msgstr "Installationsanweisungen"
325
 
326
+ #: adrotate-output.php:735
327
  msgid "your attention:"
328
  msgstr "Ihre Aufmerksamkeit:"
329
 
330
+ #: adrotate-output.php:766
331
  msgid ""
332
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
333
  "menu. If you need help getting started take a look at the"
336
  "AdRotate zu tun hat, befindet sich in diesem Menü. Wenn Sie Hilfe bei den "
337
  "ersten"
338
 
339
+ #: adrotate-output.php:766
340
  msgid "manuals"
341
  msgstr "Handbücher"
342
 
343
+ #: adrotate-output.php:766
344
  msgid "and"
345
  msgstr "und"
346
 
347
+ #: adrotate-output.php:766
348
  msgid "forums"
349
  msgstr "Forum"
350
 
351
+ #: adrotate-output.php:844
352
  msgid "Need help fast? Or do you have a question?"
353
  msgstr "Benötigen Sie schnell Hilfe? Oder haben Sie eine Frage?"
354
 
355
+ #: adrotate-output.php:845
356
  msgid "Help AdRotate Grow"
357
  msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
358
 
359
+ #: adrotate-output.php:846
360
+ msgid "Get more features with AdRotate Pro"
361
+ msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
362
 
363
+ #: adrotate-output.php:852
364
  msgid ""
365
+ "If you need help, or have questions about AdRotate, the best and fastest way "
366
+ "to get your answer is via the AdRotate support forum. Usually I answer "
367
+ "questions the same day, often with a solution in the first answer."
368
  msgstr ""
369
+ "Wenn Sie Hilfe benötigen oder Fragen zu AdRotate haben, erhalten Sie Am "
370
+ "besten und schnellsten Ihre Antwort über das AdRotate-Supportforum. "
371
+ "Normalerweise beantworte ich Fragen noch am selben Tag, oft mit einer Lösung "
372
+ "in der ersten Antwort."
373
 
374
+ #: adrotate-output.php:853
375
+ msgid "AdRotate Manuals"
376
+ msgstr "AdRotate-Handbücher"
377
 
378
+ #: adrotate-output.php:853
379
+ msgid "Support Forums"
380
+ msgstr "Support-Foren"
381
 
382
+ #: adrotate-output.php:854
 
 
 
 
383
  msgid ""
384
+ "When posting on the forum, please include a brief description of the "
385
+ "problem, include any errors or symptoms. Often it helps if you try to "
386
+ "explain what you are trying to do. Providing some extra information always "
387
+ "helps with gettng a better answer or advise."
388
+ msgstr ""
389
+ "Wenn Sie im Forum posten, fügen Sie bitte eine kurze Beschreibung des "
390
+ "Problems bei, fügen Sie Fehler oder Symptome bei. Oft hilft es, wenn du "
391
+ "versuchst zu erklären, was du zu tun versuchst. Die Bereitstellung einiger "
392
+ "zusätzlicher Informationen hilft immer, eine bessere Antwort oder Beratung "
393
+ "zu erhalten."
394
+
395
+ #: adrotate-output.php:856
396
+ msgid ""
397
+ "Consider writing a review, sharing AdRotate in Social media or making a "
398
+ "donation if you like the plugin or if you find it useful. Writing a review "
399
+ "and sharing AdRotate on social media costs you nothing but doing so is super "
400
+ "helpful as promotion which helps to ensure future development."
401
+ msgstr ""
402
+ "Erwägen Sie, eine Bewertung zu schreiben, AdRotate in sozialen Medien zu "
403
+ "teilen oder eine Spende zu tätigen, wenn Ihnen das Plugin gefällt oder wenn "
404
+ "Sie es nützlich finden. Das Schreiben einer Rezension und das Teilen von "
405
+ "AdRotate in sozialen Medien kostet Sie nichts, aber dies ist sehr hilfreich, "
406
+ "da die Werbung dazu beiträgt, die zukünftige Entwicklung sicherzustellen."
407
+
408
+ #: adrotate-output.php:857
409
+ msgid "Post Tweet"
410
+ msgstr "Tweet posten"
411
+
412
+ #: adrotate-output.php:857
413
+ msgid "Share on Facebook"
414
+ msgstr "Auf Facebook teilen"
415
+
416
+ #: adrotate-output.php:857
417
+ msgid "Write review on WordPress.org"
418
+ msgstr "Schreiben Sie eine Bewertung über WordPress.org"
419
+
420
+ #: adrotate-output.php:858
421
+ msgid "Thank you very much for your help and support!"
422
+ msgstr "Vielen Dank für Ihre Hilfe und Unterstützung!"
423
+
424
+ #: adrotate-output.php:863
425
+ msgid ""
426
+ "AdRotate Professional has a lot more functions for even better advertising "
427
+ "management. Check out the feature comparison tab on any of the product pages "
428
+ "to see what AdRotate Pro has to offer for you!"
429
  msgstr ""
430
+ "AdRotate Professional bietet viel mehr Funktionen für ein noch besseres "
431
+ "Werbemanagement. Sehen Sie sich die Registerkarte Funktionsvergleich auf "
432
+ "einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
433
+ "hat!"
434
 
435
+ #: adrotate-output.php:863
436
+ msgid "Compare Licenses"
437
+ msgstr "Lizenzen vergleichen"
 
438
 
439
+ #: adrotate-output.php:864
440
+ msgid "Single License"
441
+ msgstr "Einzellizenz"
442
+
443
+ #: adrotate-output.php:864
444
+ msgid "Use on ONE WordPress installation."
445
+ msgstr "Für eine Wordpress-Installation."
446
+
447
+ #: adrotate-output.php:864 adrotate-output.php:865
448
+ msgid "Buy now"
449
+ msgstr "Jetzt kaufen"
450
+
451
+ #: adrotate-output.php:865
452
+ msgid "Multi License"
453
+ msgstr "Multi-Lizenz"
454
+
455
+ #: adrotate-output.php:865
456
+ msgid "Use on up to FIVE WordPress installations."
457
+ msgstr "Für bis zu fünf Wordpress-Installationen."
458
 
459
  #: adrotate-statistics.php:155
460
  msgid "January"
566
  msgid "Fill in the ID of the type you want to display!"
567
  msgstr "Geben Sie die ID des Typs an, den Sie anzeigen möchten!"
568
 
569
+ #: adrotate.php:105 adrotate.php:175
 
 
 
 
 
 
 
 
570
  msgid "Manage Adverts"
571
  msgstr "Anzeigen verwalten"
572
 
573
+ #: adrotate.php:106 adrotate.php:301 dashboard/publisher/groups-main.php:12
574
  msgid "Manage Groups"
575
  msgstr "Gruppen verwalten"
576
 
577
+ #: adrotate.php:107 adrotate.php:339 dashboard/publisher/schedules-main.php:12
578
  msgid "Manage Schedules"
579
  msgstr "Zeiträume verwalten"
580
 
581
+ #: adrotate.php:108
582
  msgid "Manage Media"
583
  msgstr "Medien verwalten"
584
 
585
+ #: adrotate.php:109 adrotate.php:503 dashboard/adrotatepro.php:98
586
+ #: dashboard/publisher/adverts-edit.php:178
587
  #: dashboard/publisher/statistics-main.php:23
588
  #: dashboard/settings/statistics.php:17
589
  msgid "Statistics"
590
  msgstr "Auswertungen"
591
 
592
+ #: adrotate.php:110 adrotate.php:238 adrotate.php:309
593
+ msgid "Get AdRotate Pro"
594
+ msgstr "AdRotate Pro"
595
+
596
+ #: adrotate.php:111
597
  msgid "Support"
598
  msgstr "Support"
599
 
600
+ #: adrotate.php:112
601
  msgid "Settings"
602
  msgstr "Einstellungen"
603
 
604
+ #: adrotate.php:131
 
 
 
 
605
  msgid "Get AdRotate Professional"
606
  msgstr "AdRotate Professional kaufen"
607
 
608
+ #: adrotate.php:235 adrotate.php:307
609
  msgid "Manage"
610
  msgstr "Verwalten"
611
 
612
+ #: adrotate.php:236
613
  msgid "Advert Generator"
614
  msgstr "Anzeige generator"
615
 
616
+ #: adrotate.php:237 dashboard/publisher/adverts-edit.php:108
617
  msgid "New Advert"
618
  msgstr "Neue Anzeige"
619
 
620
+ #: adrotate.php:308
621
  msgid "Add New"
622
  msgstr "Neu hinzufügen"
623
 
624
+ #: adrotate.php:376
625
  msgid "Manage Media and Assets"
626
  msgstr "Verwalten von Medien und Ressourcen"
627
 
628
+ #: adrotate.php:380
629
  msgid ""
630
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
631
  "if you have HTML5 adverts containing multiple files."
634
  "Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
635
  "mehrere Dateien enthalten."
636
 
637
+ #: adrotate.php:422
638
  msgid "Advert Statistics"
639
  msgstr "Statistiken zur Anzeige"
640
 
641
+ #: adrotate.php:465
642
  msgid "AdRotate Support"
643
  msgstr "AdRotate-Unterstützung"
644
 
645
+ #: adrotate.php:496
646
  msgid "AdRotate Settings"
647
  msgstr "AdRotate Einstellungen"
648
 
649
+ #: adrotate.php:501 dashboard/publisher/statistics-main.php:28
650
  msgid "General"
651
  msgstr "Allgemein"
652
 
653
+ #: adrotate.php:502 dashboard/settings/notifications.php:18
654
  msgid "Notifications"
655
  msgstr "Benachrichtigungen"
656
 
657
+ #: adrotate.php:504 dashboard/publisher/groups-edit.php:205
 
658
  msgid "Geo Targeting"
659
  msgstr "Geo Targeting"
660
 
661
+ #: adrotate.php:505 dashboard/settings/roles.php:17
 
 
 
 
662
  msgid "Access Roles"
663
  msgstr "Zugriffsrollen"
664
 
665
+ #: adrotate.php:506 dashboard/settings/misc.php:16
666
  msgid "Miscellaneous"
667
  msgstr "Sonstiges"
668
 
669
+ #: adrotate.php:507 dashboard/settings/maintenance.php:16
670
  msgid "Maintenance"
671
  msgstr "Wartung"
672
 
805
  "Fehler auftauchen oder wenn Werbekunden neue Inserate erstellen. Verpassen "
806
  "Sie nie wieder ein Ablaufdatum."
807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
  #: dashboard/publisher/adverts-disabled.php:15
809
  msgid "Disabled Adverts"
810
  msgstr "Deaktivierte Anzeigen"
818
  msgstr "Bulk-Aktionen"
819
 
820
  #: dashboard/publisher/adverts-disabled.php:21
821
+ #: dashboard/publisher/adverts-edit.php:186
822
  msgid "Activate"
823
  msgstr "Aktivieren"
824
 
844
  msgstr "Los"
845
 
846
  #: dashboard/publisher/adverts-disabled.php:35
847
+ #: dashboard/publisher/adverts-edit.php:263
848
  #: dashboard/publisher/adverts-error.php:39
849
  #: dashboard/publisher/adverts-main.php:39
850
  #: dashboard/publisher/groups-edit.php:350
861
  msgstr "Start / Ende"
862
 
863
  #: dashboard/publisher/adverts-disabled.php:37
864
+ #: dashboard/publisher/adverts-edit.php:116
865
+ #: dashboard/publisher/adverts-edit.php:264
866
  #: dashboard/publisher/adverts-error.php:40
867
  #: dashboard/publisher/adverts-main.php:41
868
  #: dashboard/publisher/groups-edit.php:65
964
  "ein und speichern Sie die Anzeige erneut!"
965
 
966
  #: dashboard/publisher/adverts-edit.php:62
 
 
 
 
967
  msgid ""
968
+ "This kind of advert can not have statistics enabled in AdRotate. Impression "
969
+ "counting is available in AdRotate Pro."
970
  msgstr ""
971
+ "Für diese Art von Werbung können statistiken in AdRotate nicht aktiviert "
972
+ "sein. Die Impressionszählung ist in AdRotate Pro verfügbar."
973
 
974
+ #: dashboard/publisher/adverts-edit.php:67
975
  msgid "This advert is expired and currently not shown on your website!"
976
  msgstr ""
977
  "Diese Anzeige ist abgelaufen und wird derzeit nicht auf Ihrer Website "
978
  "angezeigt!"
979
 
980
+ #: dashboard/publisher/adverts-edit.php:70
981
  msgid "The advert will expire in less than 2 days!"
982
  msgstr "Die Anzeige läuft in weniger als 2 Tagen ab!"
983
 
984
+ #: dashboard/publisher/adverts-edit.php:73
985
  msgid "This advert will expire in less than 7 days!"
986
  msgstr "Diese Anzeige läuft in weniger als 7 Tage ab!"
987
 
988
+ #: dashboard/publisher/adverts-edit.php:76
989
  msgid "This advert has been disabled and does not rotate on your site!"
990
  msgstr ""
991
  "Diese Anzeige wurde deaktiviert und rotiert nicht mehr auf Ihrer Website!"
992
 
993
+ #: dashboard/publisher/adverts-edit.php:79
994
+ msgid ""
995
+ "AdRotate cannot find an error but the advert is marked erroneous, try re-"
996
+ "saving the ad!"
997
+ msgstr ""
998
+ "AdRotate kann keinen Fehler finden, aber die Anzeige ist als fehlerhaft "
999
+ "markiert, versuchen Sie, die Anzeige erneut zu speichern!"
1000
+
1001
+ #: dashboard/publisher/adverts-edit.php:83
1002
+ msgid "This advert still uses the %image% tag. Please change it to %asset%!"
1003
+ msgstr ""
1004
+ "Diese Anzeige verwendet weiterhin die %image% taG. Bitte ändern Sie es in "
1005
+ "%asset%!"
1006
+
1007
+ #: dashboard/publisher/adverts-edit.php:110
1008
  msgid "Edit Advert"
1009
  msgstr "Anzeige bearbeiten"
1010
 
1011
+ #: dashboard/publisher/adverts-edit.php:125
1012
  msgid "AdCode"
1013
  msgstr "AdCode"
1014
 
1015
+ #: dashboard/publisher/adverts-edit.php:130
1016
  msgid "Basic Examples:"
1017
  msgstr "Basic-Beispiele:"
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:131
1020
  msgid "Click any of the examples to use it."
1021
  msgstr "Klicken Sie auf eines der Beispiele, um es zu verwenden."
1022
 
1023
+ #: dashboard/publisher/adverts-edit.php:140
1024
  msgid "Useful tags"
1025
  msgstr "Nützliche Tags"
1026
 
1027
+ #: dashboard/publisher/adverts-edit.php:142
1028
  msgid "Insert the advert ID Number."
1029
  msgstr "Fügen Sie die Anzeige ID-Nummer ein."
1030
 
1031
+ #: dashboard/publisher/adverts-edit.php:142
1032
  msgid "Use this tag when selecting a image below."
1033
  msgstr "Verwenden Sie dieses Tag, wenn Sie ein Bild unten auswählen."
1034
 
1035
+ #: dashboard/publisher/adverts-edit.php:142
1036
  msgid "Insert the advert name."
1037
  msgstr "Fügen Sie den Anzeige - Namen ein."
1038
 
1039
+ #: dashboard/publisher/adverts-edit.php:142
1040
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1041
  msgstr ""
1042
  "Fügen Sie eine zufällige Zeichenfolge ein. Nützlich für Anzeigen vom Typ DFP/"
1043
  "DoubleClick."
1044
 
1045
+ #: dashboard/publisher/adverts-edit.php:142
1046
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1047
  msgstr ""
1048
  "Fügen Sie das &lt;a&gt;-Tag hinzu, um die Anzeige in einem neuen Fenster zu "
1049
  "öffnen."
1050
 
1051
+ #: dashboard/publisher/adverts-edit.php:142
1052
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1053
  msgstr ""
1054
  "Fügen Sie in den <a>tag rel=\"nofollow\" ein, damit Crawler diesen Link "
1055
  "ignorieren."
1056
 
1057
+ #: dashboard/publisher/adverts-edit.php:143
1058
  msgid ""
1059
  "Place the cursor where you want to add a tag and click to add it to your "
1060
  "AdCode."
1062
  "Platzieren Sie den Cursor in Ihrem AdCode an der Stelle, wo Sie diese Tags "
1063
  "hinzufügen möchten und klicken Sie dann."
1064
 
1065
+ #: dashboard/publisher/adverts-edit.php:148
1066
  msgid "Preview"
1067
  msgstr "Vorschau"
1068
 
1069
+ #: dashboard/publisher/adverts-edit.php:151
1070
  msgid ""
1071
  "Note: While this preview is an accurate one, it might look different then it "
1072
  "does on the website."
1074
  "Hinweis: Auch wenn die Vorschau korrekt aussieht, könnte es auf der Website "
1075
  "anders aussehen."
1076
 
1077
+ #: dashboard/publisher/adverts-edit.php:152
1078
  msgid ""
1079
  "This is because of CSS differences. Your themes CSS file is not active here!"
1080
  msgstr ""
1081
  "Dies hat mit Unterschieden hinsichtlich CSS zu tun. Ihre theme-CSS-Datei ist "
1082
  "hier nicht aktiv!"
1083
 
1084
+ #: dashboard/publisher/adverts-edit.php:157
1085
  msgid "Banner asset"
1086
  msgstr "Banner anzeigen"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:159
1089
  msgid "WordPress media:"
1090
  msgstr "WordPress-Medien:"
1091
 
1092
+ #: dashboard/publisher/adverts-edit.php:159
1093
  msgid "Select Banner"
1094
  msgstr "Banner wählen"
1095
 
1096
+ #: dashboard/publisher/adverts-edit.php:161
1097
  msgid "- OR -"
1098
  msgstr "ODER"
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:162
1101
  msgid "Banner folder:"
1102
  msgstr "Banner-Ordner:"
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:163
1105
  msgid "No image selected"
1106
  msgstr "Kein Bild ausgewählt"
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:173
1109
  msgid "Use %asset% in the adcode instead of the file path."
1110
  msgstr "Verwenden Sie %asset% im Adcode statt des Dateipfades."
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:173
1113
  msgid ""
1114
  "Use either the text field or the dropdown. If the textfield has content that "
1115
  "field has priority."
1117
  "Verwenden Sie das Textfeld oder die Dropdown-Liste. Wenndas Textfeld "
1118
  "gefüllt ist, hat das Feld Priorität."
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:180
1121
+ msgid "Count clicks and impressions."
1122
+ msgstr "Zählen Sie Klicks und Impressionen."
1123
 
1124
+ #: dashboard/publisher/adverts-edit.php:181
1125
  msgid ""
1126
+ "Click counting does not work for Javascript/html5 adverts such as those "
1127
+ "provided by Google AdSense/DFP/DoubleClick."
 
1128
  msgstr ""
1129
+ "Die Klickzählung funktioniert nicht für Javascript/html5-Anzeigen, wie sie "
1130
+ "von Google AdSense/DFP/DoubleClick bereitgestellt werden."
 
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:189
1133
  msgid "Enabled, this ad will be visible"
1134
  msgstr "Aktiviert, wird diese Anzeige sichtbar"
1135
 
1136
+ #: dashboard/publisher/adverts-edit.php:190
1137
  msgid "Disabled, do not show this advert anywhere"
1138
  msgstr "Deaktiviert, zeigen Sie diese Anzeige nirgendwo an"
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:196
1141
  msgid ""
1142
  "Target your audience with Geo Targeting and easily select which devices and "
1143
  "mobile operating systems the advert should show on with AdRotate Pro!"
1146
  "aus, welche Geräte und mobilen Betriebssysteme die Anzeige mit AdRotate Pro "
1147
  "anzeigen soll!"
1148
 
1149
+ #: dashboard/publisher/adverts-edit.php:196
1150
+ #: dashboard/publisher/adverts-edit.php:234
1151
  #: dashboard/publisher/groups-edit.php:227
 
 
 
1152
  msgid "Upgrade now"
1153
  msgstr "Jetzt upgraden"
1154
 
1155
+ #: dashboard/publisher/adverts-edit.php:198
1156
  msgid "Schedule your advert"
1157
  msgstr "Planen Sie Ihre Anzeige"
1158
 
1159
+ #: dashboard/publisher/adverts-edit.php:199
1160
  msgid ""
1161
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1162
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1167
  "ist, müssen 12 Stunden hinzugefügt werden. 2PM ist 14:00 Uhr. 6AM ist 06:00 "
1168
  "Uhr."
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:203
1171
  msgid "Start date"
1172
  msgstr "Startdatum"
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:207
1175
  msgid "End date"
1176
  msgstr "Enddatum"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:213
1179
  msgid "Start time"
1180
  msgstr "Startzeit"
1181
 
1182
+ #: dashboard/publisher/adverts-edit.php:218
1183
  msgid "End time"
1184
  msgstr "Endzeit"
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:226
1187
  msgid "Maximum Clicks"
1188
  msgstr "Maximale Klicks"
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:227
1191
+ #: dashboard/publisher/adverts-edit.php:229
1192
  msgid "Leave empty or 0 to skip this."
1193
  msgstr "Leer lassen oder 0, um dies zu überspringen."
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:228
1196
  msgid "Maximum Impressions"
1197
  msgstr "Maximale Impressionen"
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:234
1200
  msgid ""
1201
  "Plan ahead and create multiple and more advanced schedules for each advert "
1202
  "with AdRotate Pro."
1204
  "Planen Sie im Voraus und erstellen Sie mehrere und erweiterte Zeitpläne für "
1205
  "jede Anzeige mit AdRotate Pro."
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:236
1208
  #: dashboard/publisher/groups-edit.php:157
1209
  #: dashboard/publisher/groups-edit.php:302
1210
  msgid "Usage"
1211
  msgstr "Verwendung"
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:240
1214
  #: dashboard/publisher/groups-edit.php:161
1215
  #: dashboard/publisher/groups-edit.php:306
1216
  msgid "Widget"
1217
  msgstr "Widget"
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:241
1220
  msgid ""
1221
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1222
  "and select the advert or the group the advert is in."
1224
  "Ziehen Sie das AdRotate Widget in die Seitenleiste, wo Sie Ihre Anzeige "
1225
  "platzieren möchten und wählen Sie ein Anzeige oder eine Gruppe mit Anzeigen."
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:244
1228
  #: dashboard/publisher/groups-edit.php:165
1229
  #: dashboard/publisher/groups-edit.php:310
1230
  msgid "In a post or page"
1231
  msgstr "In einem Beitrag oder eine Seite"
1232
 
1233
+ #: dashboard/publisher/adverts-edit.php:246
1234
  #: dashboard/publisher/groups-edit.php:167
1235
  #: dashboard/publisher/groups-edit.php:312
1236
  msgid "Directly in a theme"
1237
  msgstr "Direkt im theme"
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:253
1240
+ #: dashboard/publisher/adverts-edit.php:296
1241
  msgid "Save Advert"
1242
  msgstr "Anzeige speichern"
1243
 
1244
+ #: dashboard/publisher/adverts-edit.php:254
1245
+ #: dashboard/publisher/adverts-edit.php:297
1246
  #: dashboard/publisher/adverts-generator.php:148
1247
  #: dashboard/publisher/groups-edit.php:175
1248
  #: dashboard/publisher/groups-edit.php:320
1250
  msgid "Cancel"
1251
  msgstr "Abbrechen"
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:258
1254
  msgid "Select Groups"
1255
  msgstr "Gruppen auswählen"
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:265
1258
+ #: dashboard/publisher/groups-main.php:34
1259
+ #: dashboard/publisher/schedules-main.php:34
1260
+ #: dashboard/publisher/statistics-main.php:35
1261
+ msgid "Adverts"
1262
+ msgstr "Werbung"
1263
+
1264
+ #: dashboard/publisher/adverts-edit.php:274
1265
  #: dashboard/publisher/groups-main.php:60
1266
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1267
  msgid "Default"
1268
  msgstr "Standard"
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:275
1271
  #: dashboard/publisher/groups-main.php:61
1272
  msgid "Dynamic"
1273
  msgstr "Dynamisch"
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:275
1276
  #: dashboard/publisher/groups-main.php:61
1277
  msgid "second rotation"
1278
  msgstr "Zweite rotation"
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:276
1281
  #: dashboard/publisher/groups-main.php:62
1282
  msgid "Block"
1283
  msgstr "Block"
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:276
1286
  #: dashboard/publisher/groups-main.php:62
1287
  msgid "grid"
1288
  msgstr "Raster"
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:277
1291
  #: dashboard/publisher/groups-edit.php:234
1292
  #: dashboard/publisher/groups-main.php:63
1293
  msgid "Post Injection"
1294
  msgstr "Post Injection"
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:278
1297
  msgid "Geolocation"
1298
  msgstr "Geolokalisierung"
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:285
1301
  #: dashboard/publisher/groups-edit.php:74
1302
  #: dashboard/publisher/groups-main.php:70
1303
  msgid "Mode"
1304
  msgstr "Modus"
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:302
1307
  #: dashboard/publisher/adverts-generator.php:131
1308
  msgid "Portability"
1309
  msgstr "Portabilität"
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:303
1312
  msgid ""
1313
  "This long code is your advert. It includes all settings from above except "
1314
  "the schedule and group selection. You can import this hash into another "
1325
  "Sie können den Hash in das Feld \"Anzeigenhash\" im Anzeigengenerator eines "
1326
  "anderen AdRotate-Setups einfügen."
1327
 
1328
+ #: dashboard/publisher/adverts-edit.php:307
1329
  #: dashboard/publisher/adverts-generator.php:137
1330
  msgid "Advert hash"
1331
  msgstr "Advert Hash"
1728
  msgid "Get access to all features in AdRotate Pro."
1729
  msgstr "Erhalten Sie Zugriff auf alle Funktionen in AdRotate Pro."
1730
 
1731
+ #: dashboard/publisher/groups-edit.php:155
1732
+ msgid "Upgrade today"
1733
+ msgstr "Noch heute Upgraden"
1734
+
1735
  #: dashboard/publisher/groups-edit.php:162
1736
  #: dashboard/publisher/groups-edit.php:307
1737
  msgid ""
2190
  "Alle Statistiken sind Richtwerte. Sie haben nicht unbedingt Auswirkungen auf "
2191
  "andere Bereiche."
2192
 
 
 
 
 
 
 
2193
  #: dashboard/publisher/statistics-group.php:46
2194
  msgid "Statistics for group"
2195
  msgstr "Statistiken für Gruppe"
2198
  msgid "Adverts counting stats"
2199
  msgstr "Anzeigen - Statistik"
2200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2201
  #: dashboard/settings/general.php:17
2202
  msgid "General Settings"
2203
  msgstr "Allgemeine Einstellungen"
2211
  msgstr "Einige Optionen sind nur verfügbar in AdRotate Pro!"
2212
 
2213
  #: dashboard/settings/general.php:21
2214
+ msgid "Duplicate adverts"
2215
+ msgstr "Doppelte Werbung"
2216
 
2217
  #: dashboard/settings/general.php:22
2218
  msgid ""
2219
+ "Try and prevent adverts in groups that are in Default or Block mode from "
2220
+ "showing multiple times on the same page load."
2221
  msgstr ""
2222
+ "Verhindern Sie, dass Anzeigen in Gruppen, die sich im Standard- oder "
2223
+ "Blockmodus befinden, mehrmals auf derselben Seite geladen werden."
2224
 
2225
+ #: dashboard/settings/general.php:23
2226
+ msgid ""
2227
+ "If you still notice double adverts from groups placed on a page, start with "
2228
+ "carefully looking at your setup to make sure you did not cause this yourself."
2229
+ msgstr ""
2230
+ "Wenn Sie immer noch doppelte Anzeigen von Gruppen bemerken, die auf einer "
2231
+ "Seite platziert sind, beginnen Sie mit einem sorgfältigen Betrachten Ihres "
2232
+ "Setups, um sicherzustellen, dass Sie dies nicht selbst verursacht haben."
2233
 
2234
+ #: dashboard/settings/general.php:23
2235
+ msgid "On some servers $_SESSION is disabled."
2236
+ msgstr "Auf einigen Servern ist _SESSION deaktiviert."
2237
+
2238
+ #: dashboard/settings/general.php:23
2239
  msgid ""
2240
+ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. However, "
2241
+ "most people will not need this extra plugin!"
2242
  msgstr ""
2243
+ "Ein Plugin namens \"WP Session Manager\" von Eric Mann kann dies beheben. "
2244
+ "Jedoch, die meisten Menschen werden dieses zusätzliche Plugin nicht brauchen!"
2245
+
2246
+ #: dashboard/settings/general.php:26
2247
+ msgid "Shortcode in widgets"
2248
+ msgstr "Shortcode in Text-widgets"
2249
 
2250
+ #: dashboard/settings/general.php:27
2251
+ msgid ""
2252
+ "Try and activate shortcodes in text widgets if your theme does not add "
2253
+ "support for it by itself. (This does not always work!)"
2254
+ msgstr ""
2255
+ "Versuchen Sie, Shortcodes in Text-Widgets zu aktivieren, wenn Ihr Design "
2256
+ "selbst keine Unterstützung dafür bietet. (Das funktioniert nicht immer!)"
2257
 
2258
  #: dashboard/settings/general.php:30
2259
+ msgid "Advert live preview"
2260
+ msgstr "Live-Vorschau der Werbeanzeige"
2261
+
2262
+ #: dashboard/settings/general.php:31
2263
+ msgid ""
2264
+ "Disable live previews for adverts if you have faulty adverts that overflow "
2265
+ "their designated area while creating/editing adverts."
2266
+ msgstr ""
2267
+ "Deaktivieren Sie live Vorschauen für Werbeanzeigen, wenn Sie fehlerhafte "
2268
+ "Anzeigen haben, die beim Erstellen/Bearbeiten von Anzeigen den dafür "
2269
+ "vorgesehenen Bereich überlaufen."
2270
+
2271
+ #: dashboard/settings/general.php:34
2272
+ msgid "Dynamic mode on mobile"
2273
+ msgstr "Dynamischer Modus auf Mobilgeräten"
2274
+
2275
+ #: dashboard/settings/general.php:35
2276
  msgid ""
2277
+ "Disable dynamic mode in groups for mobile devices if you notice skipping or "
2278
+ "jumpy content."
2279
  msgstr ""
2280
+ "Deaktivieren Sie den dynamischen Modus in Gruppen für mobile Geräte, wenn "
2281
+ "Sie überspringende oder sprunghafte Inhalte bemerken."
2282
 
2283
+ #: dashboard/settings/general.php:38
2284
  msgid "Load jQuery"
2285
  msgstr "Laden von jQuery"
2286
 
2287
+ #: dashboard/settings/general.php:39
2288
  msgid ""
2289
+ "Load jQuery if your theme does not load it already. jQuery is required for "
2290
+ "dynamic groups, statistics and some other features."
2291
  msgstr ""
2292
+ "Laden Sie jQuery, wenn Ihr Theme es noch nicht lädt. jQuery ist für "
2293
+ "dynamische Gruppen, Statistiken und einige andere Funktionen erforderlich."
 
2294
 
2295
+ #: dashboard/settings/general.php:42
2296
  msgid "Load scripts in footer?"
2297
  msgstr "Skripte in Fußzeile laden ?"
2298
 
2299
+ #: dashboard/settings/general.php:43
2300
+ msgid "Load all AdRotate Javascripts in the footer of your site."
2301
+ msgstr "Laden Sie alle AdRotate Javascripts in die Fußzeile Ihrer Website."
 
 
 
 
2302
 
2303
+ #: dashboard/settings/general.php:46
2304
  msgid "Adblock disguise"
2305
  msgstr "Verhindern von Adblock"
2306
 
2307
+ #: dashboard/settings/general.php:48
2308
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2309
  msgstr ""
2310
  "Lassen Sie dies leer, um das zu deaktivieren. Verwenden Sie nur "
2311
  "Kleinbuchstaben. Zum Beispiel:"
2312
 
2313
+ #: dashboard/settings/general.php:49
2314
  msgid ""
2315
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2316
  msgstr ""
2317
  "Um die Funktion von Adblock Plugins zu verhindern, sollten Sie shortcodes "
2318
  "verwenden."
2319
 
2320
+ #: dashboard/settings/general.php:49
2321
  msgid ""
2322
  "To also apply this feature to widgets, use a text widget with a shortcode "
2323
  "instead of the AdRotate widget."
2325
  "Um auch dieses Feature auf Widgets anzuwenden, verwenden Sie eine Text-"
2326
  "Widget mit einem shortcode statt AdRotate-Widget."
2327
 
2328
+ #: dashboard/settings/general.php:49
2329
  msgid ""
2330
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2331
  "feature will have little effect!"
2333
  "Vermeiden Sie offensichtliche Keywords oder Dateinamen in Ihrer Werbung, "
2334
  "sonst wird dieses Feature nur geringe Auswirkungen haben!"
2335
 
2336
+ #: dashboard/settings/general.php:54
2337
  msgid "Banner Folder"
2338
  msgstr "Banner-Ordner"
2339
 
2340
+ #: dashboard/settings/general.php:55
2341
  msgid "Set a folder where your banner images will be stored."
2342
  msgstr ""
2343
  "Legen Sie einen Ordner fest, in dem Ihre Bannerbilder gespeichert werden."
2344
 
2345
+ #: dashboard/settings/general.php:58
2346
  msgid "Folder name"
2347
  msgstr "Ordnername"
2348
 
2349
+ #: dashboard/settings/general.php:60
2350
  msgid "(Default: banners)."
2351
  msgstr "(Standard: Banner)."
2352
 
2353
+ #: dashboard/settings/general.php:61
2354
  msgid ""
2355
  "To try and trick ad blockers you could set the folder to something crazy "
2356
  "like:"
2358
  "Um Ad-Blocker zu zu irritieren, können Sie den Ordner auf etwas verrücktes "
2359
  "einstellen wie:"
2360
 
2361
+ #: dashboard/settings/general.php:62
2362
  msgid ""
2363
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2364
  "will show errors when the folder is missing."
2366
  "Dieser Ordner wird nicht automatisch erstellt, wenn er nicht vorhanden ist. "
2367
  "AdRotate wird einen Fehler anzeigen, wenn der Ordner nicht vorhanden ist."
2368
 
2369
+ #: dashboard/settings/general.php:67
2370
  msgid "Bot filter"
2371
  msgstr "Bot-filter"
2372
 
2373
+ #: dashboard/settings/general.php:68
2374
  msgid "The bot filter is used for the AdRotate stats tracker."
2375
  msgstr "Der Bot-Filter wird für den AdRotate Statistik-Tracker verwendet."
2376
 
2377
+ #: dashboard/settings/general.php:71
2378
  msgid "User-Agent Filter"
2379
  msgstr "Benutzer-Agent-Filter"
2380
 
2381
+ #: dashboard/settings/general.php:74
2382
  msgid ""
2383
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2384
  msgstr ""
2385
  "Eine kommagetrennte Liste von Schlüsselwörtern. Bots/Crawler/Benutzer-Agents "
2386
  "herausfiltern."
2387
 
2388
+ #: dashboard/settings/general.php:75
2389
  msgid ""
2390
  "Keep in mind that this might give false positives. The word 'fire' also "
2391
  "matches 'firefox', but not vice-versa. So be careful!"
2394
  "'Fire' findet auch 'Firefox', aber nicht umgekehrt. Also seien Sie "
2395
  "vorsichtig!"
2396
 
2397
+ #: dashboard/settings/general.php:76
2398
  msgid ""
2399
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2400
  "characters are stripped out."
2402
  "Nur Wörter mit alphanumerischen Zeichen und [-_] sind zulässig. Alle anderen "
2403
  "Zeichen werden entfernt."
2404
 
2405
+ #: dashboard/settings/general.php:77
2406
  msgid ""
2407
  "Additionally to the list specified here, empty User-Agents are blocked as "
2408
  "well."
2410
  "Zusätzlich zu der hier angegebenen Liste werden leere User-Agents ebenfalls "
2411
  "blockiert."
2412
 
2413
+ #: dashboard/settings/general.php:77
2414
  msgid "Learn more about"
2415
  msgstr "Mehr über"
2416
 
2417
+ #: dashboard/settings/general.php:77
2418
  msgid "user-agents"
2419
  msgstr "Benutzer-agents"
2420
 
2421
+ #: dashboard/settings/general.php:83 dashboard/settings/maintenance.php:107
2422
+ #: dashboard/settings/misc.php:47 dashboard/settings/notifications.php:72
2423
+ #: dashboard/settings/roles.php:55 dashboard/settings/statistics.php:85
2424
+ msgid "Update Options"
2425
+ msgstr "Einstellungen aktualisieren"
2426
+
2427
  #: dashboard/settings/geotargeting.php:17
2428
  msgid "Geo Targeting - Available in AdRotate Pro"
2429
  msgstr "Geo-Targeting - verfügbar in AdRotate Pro"
2537
  "ist, nicht mehr reagiert oder schwerfällig ist."
2538
 
2539
  #: dashboard/settings/maintenance.php:22
2540
+ msgid "Check for errors"
2541
+ msgstr "Auf Fehler prüfen"
2542
 
2543
  #: dashboard/settings/maintenance.php:22
2544
  msgid "You are about to check all adverts for errors."
2560
  msgstr "Datenbank aufräumen"
2561
 
2562
  #: dashboard/settings/maintenance.php:30
2563
+ msgid "Run Clean-up"
2564
+ msgstr "Bereinigung ausführen"
2565
 
2566
  #: dashboard/settings/maintenance.php:30
2567
  msgid "You are about to do maintenance on your setup of AdRotate."
3105
 
3106
  #: dashboard/settings/statistics.php:48
3107
  msgid ""
3108
+ "The settings below are for the local tracker and have no effect when using "
3109
+ "Google Analytics or Matomo."
3110
  msgstr ""
3111
+ "Die folgenden Einstellungen gelten für den lokalen Tracker und haben keine "
3112
  "Auswirkungen bei der Verwendung von Google Analytics oder Matomo."
3113
 
3114
  #: dashboard/settings/statistics.php:51
3115
+ msgid "Admin stats"
3116
+ msgstr "Admin-Statistiken"
3117
+
3118
+ #: dashboard/settings/statistics.php:53
3119
+ msgid "Track statistics from admin users."
3120
+ msgstr "Verfolgen Sie Statistiken von Admin-Benutzern."
3121
+
3122
+ #: dashboard/settings/statistics.php:57
3123
  msgid "Logged in impressions"
3124
  msgstr "Impressions"
3125
 
3126
+ #: dashboard/settings/statistics.php:59
3127
  msgid "Track impressions from logged in users."
3128
  msgstr "Track impressions von angemeldeten Nutzern."
3129
 
3130
+ #: dashboard/settings/statistics.php:63
3131
  msgid "Logged in clicks"
3132
  msgstr "Clicks"
3133
 
3134
+ #: dashboard/settings/statistics.php:65
3135
  msgid "Track clicks from logged in users."
3136
  msgstr "Track Klicks von angemeldeten Nutzern."
3137
 
3138
+ #: dashboard/settings/statistics.php:69
3139
  msgid "Impression timer"
3140
  msgstr "Impression-Timer"
3141
 
3142
+ #: dashboard/settings/statistics.php:71 dashboard/settings/statistics.php:78
3143
  msgid "Seconds."
3144
  msgstr "Sekunden."
3145
 
3146
+ #: dashboard/settings/statistics.php:72
3147
  msgid "Default: 60."
3148
  msgstr "Standard: 60."
3149
 
3150
+ #: dashboard/settings/statistics.php:72
3151
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3152
  msgstr ""
3153
  "Diese Zahl darf nicht leer sein, entweder weniger als 10 oder mehr als 3600 "
3154
  "(1 Stunde)."
3155
 
3156
+ #: dashboard/settings/statistics.php:76
3157
  msgid "Click timer"
3158
  msgstr "Klicken Sie auf Zeitgeber"
3159
 
3160
+ #: dashboard/settings/statistics.php:79
3161
  msgid "Default: 86400."
3162
  msgstr "Standard: 86400."
3163
 
3164
+ #: dashboard/settings/statistics.php:79
3165
  msgid ""
3166
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3167
  msgstr ""
3235
  msgid "Premium Support is available in AdRotate Pro!"
3236
  msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
3237
 
3238
+ #~ msgid "Check all adverts for configuration errors"
3239
+ #~ msgstr "Überprüfen Sie alle Anzeigen auf Konfigurationsfehler"
3240
+
3241
+ #~ msgid "Clean-up database and old files"
3242
+ #~ msgstr "Datenbank aufräumen"
3243
+
3244
+ #~ msgid "More features with AdRotate Pro"
3245
+ #~ msgstr "Weitere Funktionen mit AdRotate Pro"
3246
+
3247
+ #~ msgid ""
3248
+ #~ "Many users only think to review AdRotate when something goes wrong while "
3249
+ #~ "thousands of people happily use AdRotate."
3250
+ #~ msgstr ""
3251
+ #~ "Viele Anwender denken nur dann darüber nach AdRotate zu bewerten, wenn "
3252
+ #~ "etwas schief geht, während Tausende andere AdRotate zufrieden verwenden."
3253
+
3254
+ #~ msgid "If you find AdRotate useful please leave your"
3255
+ #~ msgstr "Wenn Sie AdRotate nützlich finden, verlassen Sie bitte Ihre"
3256
+
3257
+ #~ msgid "rating"
3258
+ #~ msgstr "Bewertung"
3259
+
3260
+ #~ msgid "on WordPress.org to help AdRotate grow in a positive way"
3261
+ #~ msgstr "auf WordPress.org, damit AdRotate sich weiter positiv entwickelt"
3262
+
3263
+ #~ msgid ""
3264
+ #~ "Get more advanced features such as Geo Targeting, scheduling and much "
3265
+ #~ "more with AdRotate Pro."
3266
+ #~ msgstr ""
3267
+ #~ "Mit AdRotate Pro erhalten Sie erweiterte Funktionen wie Geo Targeting, "
3268
+ #~ "Terminplanung und vieles mehr."
3269
+
3270
+ #~ msgid "Get access to premium support and free updates for one year!"
3271
+ #~ msgstr ""
3272
+ #~ "Erhalten Sie Zugang zu Premium-Support und kostenlosen Updates für ein "
3273
+ #~ "Jahr!"
3274
+
3275
+ #~ msgid "General Info"
3276
+ #~ msgstr "Allgemeine Info"
3277
+
3278
+ #~ msgid "AdRotate Info"
3279
+ #~ msgstr "AdRotate Info"
3280
+
3281
+ #~ msgid "Advertisers"
3282
+ #~ msgstr "Inserenten"
3283
+
3284
+ #~ msgid "At a Glance"
3285
+ #~ msgstr "Auf einen Blick"
3286
+
3287
+ #~ msgid "Your setup"
3288
+ #~ msgstr "Ihre Konfiguration"
3289
+
3290
+ #~ msgid "Adverts that need you"
3291
+ #~ msgstr "Achten Sie auf folgende Anzeigen"
3292
+
3293
+ #~ msgid "(Almost) Expired"
3294
+ #~ msgstr "(Fast) Abgelaufen"
3295
+
3296
+ #~ msgid "Groups"
3297
+ #~ msgstr "Gruppen"
3298
+
3299
+ #~ msgid "Have errors"
3300
+ #~ msgstr "Fehler enthalten"
3301
+
3302
+ #~ msgid "Duo License"
3303
+ #~ msgstr "Duo Lizenz"
3304
+
3305
+ #~ msgid "Use on TWO WordPress installations."
3306
+ #~ msgstr "Für eine Wordpress-Installation."
3307
+
3308
+ #~ msgid "Developer License"
3309
+ #~ msgstr "Entwickler-Lizenz"
3310
+
3311
+ #~ msgid "Use on up to a HUNDRED WordPress installations and/or networks."
3312
+ #~ msgstr "Für bis zu fünf Wordpress-Installationen."
3313
+
3314
+ #~ msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
3315
+ #~ msgstr ""
3316
+ #~ "Track ist aktiviert, aber es gibt keinen gültige Link/Tag im Adcode!"
3317
+
3318
+ #~ msgid "Enable click and impression tracking for this advert."
3319
+ #~ msgstr "Klick und eindrücke Verfolgung für diese Anzeige aktivieren."
3320
+
3321
+ #~ msgid ""
3322
+ #~ "Note: Clicktracking does not work for Javascript adverts such as those "
3323
+ #~ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
3324
+ #~ "always supported."
3325
+ #~ msgstr ""
3326
+ #~ "Hinweis: Clicktracking funktioniert nicht für Javascript Anzeigen wie "
3327
+ #~ "beispielsweise von Google AdSense/DFP/DoubleClick. HTML5/Flash-Anzeigen "
3328
+ #~ "werden nicht immer unterstützt."
3329
+
3330
+ #~ msgid "Advertisers - Available in AdRotate Pro"
3331
+ #~ msgstr "Inserenten - verfügbar in AdRotate Pro"
3332
+
3333
+ #~ msgid "Enable advertisers so they can review and manage their own ads."
3334
+ #~ msgstr ""
3335
+ #~ "Inserenten aktiviert, damit diese ihre eigenen Anzeigen verwalten und "
3336
+ #~ "prüfen können."
3337
+
3338
+ #~ msgid "Enable Advertisers"
3339
+ #~ msgstr "Bearbeitung durch Inserenten aktivieren"
3340
+
3341
+ #~ msgid "Allow adverts to be coupled to users (Advertisers)."
3342
+ #~ msgstr "Erlaube es Anzeigen Nutzern (Werbekunden) zuzuordnen."
3343
+
3344
+ #~ msgid "Edit/update adverts"
3345
+ #~ msgstr "Anzeigen bearbeiten oder aktualisieren"
3346
+
3347
+ #~ msgid "Allow advertisers to add new or edit their adverts."
3348
+ #~ msgstr ""
3349
+ #~ "Erlaube Inserenten, neue hinzufügen oder ihre Anzeigen zubearbeiten."
3350
+
3351
+ #~ msgid "Mobile adverts"
3352
+ #~ msgstr "Mobile Anzeigen"
3353
+
3354
+ #~ msgid "Allow advertisers to specify on which devices their ads will show."
3355
+ #~ msgstr ""
3356
+ #~ "Erlaube Inserenten die Option, anzugeben, auf welchen Geräten ihre "
3357
+ #~ "Anzeigen gezeigt werden."
3358
+
3359
+ #~ msgid ""
3360
+ #~ "Allow advertisers to specify where their ads will show. Geo Targeting has "
3361
+ #~ "to be enabled, too."
3362
+ #~ msgstr ""
3363
+ #~ "Erlaube Inserenten die Option, wo ihre Anzeigen gezeigt werden soll. Geo-"
3364
+ #~ "Targeting muss ebenfalls aktiviert sein."
3365
+
3366
+ #~ msgid "Advertiser role"
3367
+ #~ msgstr "Inserenten-Rolle"
3368
+
3369
+ #~ msgid "Create a seperate user role for your advertisers."
3370
+ #~ msgstr "Erstellen Sie eine separate Benutzerrolle für Ihre Anzeigenkunden."
3371
+
3372
+ #~ msgid ""
3373
+ #~ "Don't forget to give these users access to their advertiser dashboard via "
3374
+ #~ "the Roles tab."
3375
+ #~ msgstr ""
3376
+ #~ "Vergessen Sie nicht, Benutzern Zugriff auf ihr Inserenten-Dashboard über "
3377
+ #~ "die Registerkarte \"Rollen\" zu geben."
3378
+
3379
+ #~ msgid ""
3380
+ #~ "Enable this option to if your theme does not support shortcodes in the "
3381
+ #~ "WordPress text widget."
3382
+ #~ msgstr ""
3383
+ #~ "Aktivieren Sie diese Option, wenn Ihr theme keine Shortcodes im Text-"
3384
+ #~ "Widget von WordPress unterstützt."
3385
+
3386
+ #~ msgid "Disable dynamic mode"
3387
+ #~ msgstr "Dynamischen Modus deaktivieren"
3388
+
3389
  #~ msgid "Get started today"
3390
  #~ msgstr "Starte heute"
3391
 
3736
  #~ msgid "News & Updates"
3737
  #~ msgstr "Neuigkeiten & Updates"
3738
 
 
 
 
3739
  #~ msgid ""
3740
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3741
  #~ "Chances are your question has already been asked and answered!"
5150
  #~ "Inserenten aktivieren, damit diese ihre eigenen Anzeigen verwalten und "
5151
  #~ "prüfen können."
5152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5153
  #~ msgid "Live preview"
5154
  #~ msgstr "Live-Vorschau"
5155
 
 
 
 
5156
  #~ msgid ""
5157
  #~ "The bot filter is used for Geo Targeting and the AdRotate stats tracker."
5158
  #~ msgstr "Der Bot-Filter wird für den AdRotate Statistik-Tracker verwendet."
5282
  #~ "Deaktivieren Sie vorübergehend die Verschlüsselung auf der redirect Url. "
5283
  #~ "Nur für AdRotate Internal Tracker."
5284
 
 
 
 
5285
  #~ msgid "Send email notifications"
5286
  #~ msgstr "E-Mail Benachrichtigungen senden"
5287
 
5811
  #~ msgid "Choose adverts"
5812
  #~ msgstr "Wählen Sie Anzeigen"
5813
 
 
 
 
5814
  #~ msgid "Enable the AdRotate Quickmenu in the Admin Bar"
5815
  #~ msgstr "Aktivieren der AdRotate Quickmenu in der Admin-Bar"
5816
 
5862
  #~ msgid "Useful links to learn more about AdRotate"
5863
  #~ msgstr "Nützliche Links, um mehr über AdRotate zu lernen"
5864
 
 
 
 
 
 
 
 
 
5865
  #~ msgid "Brought to you by"
5866
  #~ msgstr "Mit freundlicher Empfehlung von"
5867
 
6451
  #~ msgid "ticket support"
6452
  #~ msgstr "Support-Ticket"
6453
 
 
 
 
6454
  #~ msgid "Register License"
6455
  #~ msgstr "Lizenz registrieren"
6456
 
6774
  #~ msgid "Enable stats"
6775
  #~ msgstr "Statistiques activés"
6776
 
 
 
 
 
6777
  #, fuzzy
6778
  #~ msgid ""
6779
  #~ "There is a problem saving the image specification. Please reset your "
6879
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
6880
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
6881
 
 
 
 
 
 
 
 
 
6882
  #, fuzzy
6883
  #~ msgid ""
6884
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
7124
  #~ msgstr ""
7125
  #~ "Nutzen Sie <b>getadrotatepro</b> for 10% off on any AdRotate license!"
7126
 
 
 
 
7127
  #~ msgid "More information..."
7128
  #~ msgstr "Mehr Informationen..."
7129
 
7210
  #~ msgid "Not sure which license is for you?"
7211
  #~ msgstr "Nicht sicher, welche Lizenz Sie haben?"
7212
 
 
 
 
7213
  #~ msgid ""
7214
  #~ "You did not use %image% in your AdCode. The responsive checkbox will be "
7215
  #~ "ineffective."
language/adrotate-fr_FR.mo CHANGED
Binary file
language/adrotate-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-05-19 12:23-0500\n"
6
- "PO-Revision-Date: 2021-05-19 12:25-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
9
  "Language: fr\n"
@@ -17,31 +17,31 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:784
21
  msgid "Advert saved"
22
- msgstr "Annonce sauvée"
23
 
24
- #: adrotate-functions.php:788
25
  msgid "Group saved"
26
  msgstr "Groupe enregistré"
27
 
28
- #: adrotate-functions.php:792
29
  msgid "Banner image saved"
30
  msgstr "Bannière image sauvegardée"
31
 
32
- #: adrotate-functions.php:796
33
  msgid "Ad(s) deleted"
34
  msgstr "Annonce(s) supprimée"
35
 
36
- #: adrotate-functions.php:800
37
  msgid "Group deleted"
38
  msgstr "Groupe supprimé"
39
 
40
- #: adrotate-functions.php:804
41
  msgid "Asset(s) deleted"
42
  msgstr "Actif(s) supprimé"
43
 
44
- #: adrotate-functions.php:808
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
@@ -49,31 +49,31 @@ msgstr ""
49
  "Quelque chose s’est mal passé en supprimant le fichier ou le dossier. "
50
  "Assurez-vous que vos autorisations sont en ordre."
51
 
52
- #: adrotate-functions.php:812
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Réinitialisation des statistiques publicitaires"
55
 
56
- #: adrotate-functions.php:816
57
  msgid "Advert(s) renewed"
58
  msgstr "Annonce(s) renouvellée"
59
 
60
- #: adrotate-functions.php:820
61
  msgid "Advert(s) deactivated"
62
  msgstr "Annonce(s) désactivée"
63
 
64
- #: adrotate-functions.php:824
65
  msgid "Advert(s) activated"
66
  msgstr "Annonce(s) activée"
67
 
68
- #: adrotate-functions.php:828
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Groupe y compris les annonces en elle supprimé"
71
 
72
- #: adrotate-functions.php:832
73
  msgid "Export created"
74
  msgstr "Export créé"
75
 
76
- #: adrotate-functions.php:836
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
@@ -82,31 +82,31 @@ msgstr ""
82
  "annonce ci-dessous. N’oubliez pas de vérifier tous les paramètres et de les "
83
  "planifier."
84
 
85
- #: adrotate-functions.php:841
86
  msgid "Settings saved"
87
  msgstr "Paramètres sauvegardés"
88
 
89
- #: adrotate-functions.php:845
90
  msgid "Database optimized"
91
  msgstr "Base de données optimisée"
92
 
93
- #: adrotate-functions.php:849
94
  msgid "Database repaired"
95
  msgstr "Base de données réparée"
96
 
97
- #: adrotate-functions.php:853
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Annonces évaluées et statuts corrigés au besoin"
100
 
101
- #: adrotate-functions.php:857
102
  msgid "Cleanup complete"
103
  msgstr "Nettoyage complet"
104
 
105
- #: adrotate-functions.php:862
106
  msgid "Action prohibited"
107
  msgstr "Action interdite"
108
 
109
- #: adrotate-functions.php:866
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
@@ -114,24 +114,24 @@ msgstr ""
114
  "L’annonce a été enregistrée, mais a un problème qui pourrait l’empêcher de "
115
  "fonctionner correctement. Passez en revue l’annonce colorée."
116
 
117
- #: adrotate-functions.php:870
118
  msgid "No data found in selected time period"
119
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
120
 
121
- #: adrotate-functions.php:874
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr ""
124
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
125
 
126
- #: adrotate-functions.php:878
127
  msgid "Form can not be (partially) empty!"
128
  msgstr "Forme ne peut pas être (partiellement) vide !"
129
 
130
- #: adrotate-functions.php:882
131
  msgid "No adverts found."
132
  msgstr "Aucune annonce trouvée."
133
 
134
- #: adrotate-functions.php:886
135
  msgid ""
136
  "The advert hash is not usable or is missing required data. Please copy the "
137
  "hash correctly and try again."
@@ -139,7 +139,7 @@ msgstr ""
139
  "Le hachage de l’annonce n’est pas utilisable ou manque les données requises. "
140
  "S’il vous plaît copier le hachage correctement et essayer à nouveau."
141
 
142
- #: adrotate-functions.php:890
143
  msgid ""
144
  "The advert hash can not be used on the same site as it originated from or is "
145
  "not a valid hash for importing."
@@ -147,7 +147,7 @@ msgstr ""
147
  "Le hachage de l’annonce ne peut pas être utilisé sur le même site qu’il "
148
  "provient ou n’est pas un hachage valide pour l’importation."
149
 
150
- #: adrotate-functions.php:894
151
  msgid "Unexpected error"
152
  msgstr "Erreur inattendue"
153
 
@@ -323,11 +323,11 @@ msgstr ""
323
  msgid "Installation instructions"
324
  msgstr "Instructions d’installation"
325
 
326
- #: adrotate-output.php:730
327
  msgid "your attention:"
328
  msgstr "votre attention:"
329
 
330
- #: adrotate-output.php:761
331
  msgid ""
332
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
333
  "menu. If you need help getting started take a look at the"
@@ -335,67 +335,125 @@ msgstr ""
335
  "Merci d’avoir choisi AdRotate. Tout ce qui concerne AdRotate est dans ce "
336
  "menu. Si vous avez besoin d’aide pour commencer, jetez un coup d’œil à la"
337
 
338
- #: adrotate-output.php:761
339
  msgid "manuals"
340
  msgstr "manuels"
341
 
342
- #: adrotate-output.php:761
343
  msgid "and"
344
  msgstr "et"
345
 
346
- #: adrotate-output.php:761
347
  msgid "forums"
348
  msgstr "forums"
349
 
350
- #: adrotate-output.php:841
351
  msgid "Need help fast? Or do you have a question?"
352
- msgstr "Annonce sauvée"
353
 
354
- #: adrotate-output.php:842
355
  msgid "Help AdRotate Grow"
356
  msgstr "AdRotate Pro"
357
 
358
- #: adrotate-output.php:843
359
- msgid "More features with AdRotate Pro"
360
- msgstr "Plus de fonctionnalités avec AdRotate Pro"
361
 
362
- #: adrotate-output.php:850
363
  msgid ""
364
- "Many users only think to review AdRotate when something goes wrong while "
365
- "thousands of people happily use AdRotate."
 
366
  msgstr ""
367
- "Beaucoup d’utilisateurs pensent seulement à revoir AdRotate quand quelque "
368
- "chose va mal tandis que des milliers de personnes utilisent heureusement "
369
- "AdRotate."
370
-
371
- #: adrotate-output.php:850
372
- msgid "If you find AdRotate useful please leave your"
373
- msgstr "Si vous trouvez AdRotate utile s’il vous plaît laissez votre"
374
 
375
- #: adrotate-output.php:850
376
- msgid "rating"
377
- msgstr "évaluation"
378
 
379
- #: adrotate-output.php:850
380
- msgid "on WordPress.org to help AdRotate grow in a positive way"
381
- msgstr "sur WordPress.org pour aider AdRotate à s'améliorer"
382
 
383
- #: adrotate-output.php:851
384
  msgid ""
385
- "Get more advanced features such as Geo Targeting, scheduling and much more "
386
- "with AdRotate Pro."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgstr ""
388
- "Obtenez des fonctionnalités plus avancées telles que le ciblage "
389
- "géographique, la planification et bien plus encore avec AdRotate Pro."
 
 
390
 
391
- #: adrotate-output.php:851
392
- msgid "Get access to premium support and free updates for one year!"
393
- msgstr ""
394
- "Accédez à un support premium et à des mises à jour gratuites pendant un an!"
395
 
396
- #: adrotate-output.php:851 dashboard/publisher/groups-edit.php:155
397
- msgid "Upgrade today"
398
- msgstr "Mettez à niveau dès aujourd'hui"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
 
400
  #: adrotate-statistics.php:155
401
  msgid "January"
@@ -509,74 +567,66 @@ msgstr "ID :"
509
  msgid "Fill in the ID of the type you want to display!"
510
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
511
 
512
- #: adrotate.php:105
513
- msgid "General Info"
514
- msgstr "Informations générales"
515
-
516
- #: adrotate.php:106
517
- msgid "Get AdRotate Pro"
518
- msgstr "Obtenez AdRotate Pro"
519
-
520
- #: adrotate.php:107 adrotate.php:196
521
  msgid "Manage Adverts"
522
  msgstr "Gérer Annonces"
523
 
524
- #: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
525
  msgid "Manage Groups"
526
  msgstr "Gérer les groupes"
527
 
528
- #: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
529
  msgid "Manage Schedules"
530
  msgstr "Gérer les horaires"
531
 
532
- #: adrotate.php:110
533
  msgid "Manage Media"
534
  msgstr "Gérer les médias"
535
 
536
- #: adrotate.php:111 adrotate.php:522 dashboard/adrotatepro.php:98
537
- #: dashboard/publisher/adverts-edit.php:174
538
  #: dashboard/publisher/statistics-main.php:23
539
  #: dashboard/settings/statistics.php:17
540
  msgid "Statistics"
541
  msgstr "Statistiques"
542
 
543
- #: adrotate.php:112
 
 
 
 
544
  msgid "Support"
545
  msgstr "Support"
546
 
547
- #: adrotate.php:113
548
  msgid "Settings"
549
  msgstr "Paramètres"
550
 
551
- #: adrotate.php:134
552
- msgid "AdRotate Info"
553
- msgstr "Informations sur Adrotate"
554
-
555
- #: adrotate.php:152
556
  msgid "Get AdRotate Professional"
557
  msgstr "Obtenez AdRotate Professional"
558
 
559
- #: adrotate.php:256 adrotate.php:327
560
  msgid "Manage"
561
  msgstr "Gérer"
562
 
563
- #: adrotate.php:257
564
  msgid "Advert Generator"
565
  msgstr "Générateur d’annonces"
566
 
567
- #: adrotate.php:258 dashboard/publisher/adverts-edit.php:104
568
  msgid "New Advert"
569
  msgstr "Nouvelle Annonce"
570
 
571
- #: adrotate.php:328
572
  msgid "Add New"
573
  msgstr "Ajouter"
574
 
575
- #: adrotate.php:395
576
  msgid "Manage Media and Assets"
577
  msgstr "Gérer les médias et les actifs"
578
 
579
- #: adrotate.php:399
580
  msgid ""
581
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
582
  "if you have HTML5 adverts containing multiple files."
@@ -585,44 +635,39 @@ msgstr ""
585
  "d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
586
  "fichiers."
587
 
588
- #: adrotate.php:441
589
  msgid "Advert Statistics"
590
  msgstr "Statistiques de publicité"
591
 
592
- #: adrotate.php:484
593
  msgid "AdRotate Support"
594
  msgstr "Assistance AdRotate"
595
 
596
- #: adrotate.php:515
597
  msgid "AdRotate Settings"
598
  msgstr "Paramètres de AdRotate"
599
 
600
- #: adrotate.php:520 dashboard/publisher/statistics-main.php:28
601
  msgid "General"
602
  msgstr "Général"
603
 
604
- #: adrotate.php:521 dashboard/settings/notifications.php:18
605
  msgid "Notifications"
606
  msgstr "Notifications"
607
 
608
- #: adrotate.php:523 dashboard/publisher/groups-edit.php:205
609
- #: dashboard/settings/advertisers.php:38
610
  msgid "Geo Targeting"
611
  msgstr "Ciblage géo"
612
 
613
- #: adrotate.php:524
614
- msgid "Advertisers"
615
- msgstr "Annonceurs"
616
-
617
- #: adrotate.php:525 dashboard/settings/roles.php:17
618
  msgid "Access Roles"
619
  msgstr "Niveaux d’accès"
620
 
621
- #: adrotate.php:526 dashboard/settings/misc.php:16
622
  msgid "Miscellaneous"
623
  msgstr "Divers"
624
 
625
- #: adrotate.php:527 dashboard/settings/maintenance.php:16
626
  msgid "Maintenance"
627
  msgstr "Maintenance"
628
 
@@ -763,86 +808,6 @@ msgstr ""
763
  "ou lorsque les annonceurs créent de nouvelles annonces. Sélectionnez jusqu’à "
764
  "trois adresses e-mail à aviser. Ne manquez plus jamais une date d’expiration."
765
 
766
- #: dashboard/info.php:22
767
- msgid "At a Glance"
768
- msgstr "D’un coup d’œil"
769
-
770
- #: dashboard/info.php:27
771
- msgid "Your setup"
772
- msgstr "Votre configuration"
773
-
774
- #: dashboard/info.php:28
775
- msgid "Adverts that need you"
776
- msgstr "Annonces qui ont besoin de votre attention"
777
-
778
- #: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:261
779
- #: dashboard/publisher/groups-main.php:34
780
- #: dashboard/publisher/schedules-main.php:34
781
- #: dashboard/publisher/statistics-main.php:35
782
- msgid "Adverts"
783
- msgstr "Annonces"
784
-
785
- #: dashboard/info.php:35
786
- msgid "(Almost) Expired"
787
- msgstr "(presque) expiré"
788
-
789
- #: dashboard/info.php:38
790
- msgid "Groups"
791
- msgstr "Groupes"
792
-
793
- #: dashboard/info.php:39
794
- msgid "Have errors"
795
- msgstr "Il y a des erreurs"
796
-
797
- #: dashboard/info.php:76
798
- msgid ""
799
- "AdRotate Professional has a lot more functions for even better advertising "
800
- "management. Check out the feature comparison tab on any of the product pages "
801
- "to see what AdRotate Pro has to offer for you!"
802
- msgstr ""
803
- "AdRotate Professional a beaucoup plus de fonctions pour une gestion de la "
804
- "annonce encore meilleure. Consultez l’onglet comparaison des fonctionnalités "
805
- "sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
806
- "vous!"
807
-
808
- #: dashboard/info.php:78
809
- msgid "Single License"
810
- msgstr "Licence unique"
811
-
812
- #: dashboard/info.php:78
813
- msgid "Use on ONE WordPress installation."
814
- msgstr "Utilisation sur l’installation ONE WordPress."
815
-
816
- #: dashboard/info.php:78 dashboard/info.php:79 dashboard/info.php:80
817
- #: dashboard/info.php:81
818
- msgid "Buy now"
819
- msgstr "Acheter maintenant"
820
-
821
- #: dashboard/info.php:79
822
- msgid "Duo License"
823
- msgstr "Licence Duo"
824
-
825
- #: dashboard/info.php:79
826
- msgid "Use on TWO WordPress installations."
827
- msgstr "Utilisation sur DEUX installations WordPress."
828
-
829
- #: dashboard/info.php:80
830
- msgid "Multi License"
831
- msgstr "Licence Multiple"
832
-
833
- #: dashboard/info.php:80
834
- msgid "Use on up to FIVE WordPress installations."
835
- msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
836
-
837
- #: dashboard/info.php:81
838
- msgid "Developer License"
839
- msgstr "Licence de Developpeur"
840
-
841
- #: dashboard/info.php:81
842
- msgid "Use on up to a HUNDRED WordPress installations and/or networks."
843
- msgstr ""
844
- "Utiliser sur jusqu’à une installation et/ou réseaux WORDPress de HUNDRED."
845
-
846
  #: dashboard/publisher/adverts-disabled.php:15
847
  msgid "Disabled Adverts"
848
  msgstr "Annonce désactivée"
@@ -856,7 +821,7 @@ msgid "Bulk Actions"
856
  msgstr "Actions en vrac"
857
 
858
  #: dashboard/publisher/adverts-disabled.php:21
859
- #: dashboard/publisher/adverts-edit.php:182
860
  msgid "Activate"
861
  msgstr "Activer"
862
 
@@ -882,7 +847,7 @@ msgid "Go"
882
  msgstr "Aller"
883
 
884
  #: dashboard/publisher/adverts-disabled.php:35
885
- #: dashboard/publisher/adverts-edit.php:259
886
  #: dashboard/publisher/adverts-error.php:39
887
  #: dashboard/publisher/adverts-main.php:39
888
  #: dashboard/publisher/groups-edit.php:350
@@ -899,8 +864,8 @@ msgid "Start / End"
899
  msgstr "Début / Fin"
900
 
901
  #: dashboard/publisher/adverts-disabled.php:37
902
- #: dashboard/publisher/adverts-edit.php:112
903
- #: dashboard/publisher/adverts-edit.php:260
904
  #: dashboard/publisher/adverts-error.php:40
905
  #: dashboard/publisher/adverts-main.php:41
906
  #: dashboard/publisher/groups-edit.php:65
@@ -1002,88 +967,96 @@ msgstr ""
1002
  "sauvegarder l’annonce !"
1003
 
1004
  #: dashboard/publisher/adverts-edit.php:62
1005
- msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1006
- msgstr ""
1007
- "Le suivi est activé mais aucun lien/balise valide a été trouvé dans "
1008
- "l’adcode !"
1009
-
1010
- #: dashboard/publisher/adverts-edit.php:67
1011
  msgid ""
1012
- "AdRotate cannot find an error but the advert is marked erroneous, try re-"
1013
- "saving the ad!"
1014
  msgstr ""
1015
- "AdRotate ne peut pas trouver une erreur, mais l’annonce est marquée erronée, "
1016
- "essayez de sauver à nouveau l’annonce!"
1017
 
1018
- #: dashboard/publisher/adverts-edit.php:70
1019
  msgid "This advert is expired and currently not shown on your website!"
1020
  msgstr ""
1021
  "Cette annonce est expirée et ne pas actuellement affichée sur votre site "
1022
  "Internet !"
1023
 
1024
- #: dashboard/publisher/adverts-edit.php:73
1025
  msgid "The advert will expire in less than 2 days!"
1026
  msgstr "L’annonce expirera dans moins de 2 jours!"
1027
 
1028
- #: dashboard/publisher/adverts-edit.php:76
1029
  msgid "This advert will expire in less than 7 days!"
1030
  msgstr "Cette annonce expire dans moins de 7 jours !"
1031
 
1032
- #: dashboard/publisher/adverts-edit.php:79
1033
  msgid "This advert has been disabled and does not rotate on your site!"
1034
  msgstr "Cette annonce à été désactivée et ne tourne plus sur votre site!"
1035
 
1036
- #: dashboard/publisher/adverts-edit.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  msgid "Edit Advert"
1038
  msgstr "Modifier Annonce"
1039
 
1040
- #: dashboard/publisher/adverts-edit.php:121
1041
  msgid "AdCode"
1042
  msgstr "AdCode"
1043
 
1044
- #: dashboard/publisher/adverts-edit.php:126
1045
  msgid "Basic Examples:"
1046
  msgstr "Exemples de base :"
1047
 
1048
- #: dashboard/publisher/adverts-edit.php:127
1049
  msgid "Click any of the examples to use it."
1050
  msgstr "Cliquez sur l’un des exemples pour l’utiliser."
1051
 
1052
- #: dashboard/publisher/adverts-edit.php:136
1053
  msgid "Useful tags"
1054
  msgstr "Étiquettes utiles"
1055
 
1056
- #: dashboard/publisher/adverts-edit.php:138
1057
  msgid "Insert the advert ID Number."
1058
  msgstr "Insérer l’annonce numéro d’identification."
1059
 
1060
- #: dashboard/publisher/adverts-edit.php:138
1061
  msgid "Use this tag when selecting a image below."
1062
  msgstr "Utilisez cette balise lors de la sélection d’une image ci-dessous."
1063
 
1064
- #: dashboard/publisher/adverts-edit.php:138
1065
  msgid "Insert the advert name."
1066
  msgstr "Insérez le nom de l’annonce."
1067
 
1068
- #: dashboard/publisher/adverts-edit.php:138
1069
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1070
  msgstr ""
1071
  "Insérer une chaîne aléatoire. Utile pour les annonces de type DFP/"
1072
  "DoubleClick."
1073
 
1074
- #: dashboard/publisher/adverts-edit.php:138
1075
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1076
  msgstr ""
1077
  "Ajouter à l’intérieur de l’étiquette 'lt;a’gt; pour ouvrir l’annonce dans "
1078
  "une nouvelle fenêtre."
1079
 
1080
- #: dashboard/publisher/adverts-edit.php:138
1081
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1082
  msgstr ""
1083
  "Ajouter à l’intérieur de l’étiquette 'lt;a’gt; pour dire aux chenilles "
1084
  "d’ignorer ce lien."
1085
 
1086
- #: dashboard/publisher/adverts-edit.php:139
1087
  msgid ""
1088
  "Place the cursor where you want to add a tag and click to add it to your "
1089
  "AdCode."
@@ -1091,11 +1064,11 @@ msgstr ""
1091
  "Placez le curseur où vous souhaitez ajouter une balise, puis cliquez sur "
1092
  "pour l’ajouter à votre AdCode."
1093
 
1094
- #: dashboard/publisher/adverts-edit.php:144
1095
  msgid "Preview"
1096
  msgstr "En avant-première"
1097
 
1098
- #: dashboard/publisher/adverts-edit.php:147
1099
  msgid ""
1100
  "Note: While this preview is an accurate one, it might look different then it "
1101
  "does on the website."
@@ -1103,42 +1076,42 @@ msgstr ""
1103
  "NOTA BENE : Bien que cet aperçu soit précis, la annonce peut être différente "
1104
  "sur le site."
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:148
1107
  msgid ""
1108
  "This is because of CSS differences. Your themes CSS file is not active here!"
1109
  msgstr ""
1110
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1111
  "pas actif ici!"
1112
 
1113
- #: dashboard/publisher/adverts-edit.php:153
1114
  msgid "Banner asset"
1115
  msgstr "Atout de la bannière"
1116
 
1117
- #: dashboard/publisher/adverts-edit.php:155
1118
  msgid "WordPress media:"
1119
  msgstr "WordPress médias:"
1120
 
1121
- #: dashboard/publisher/adverts-edit.php:155
1122
  msgid "Select Banner"
1123
  msgstr "Choisir l'image"
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:157
1126
  msgid "- OR -"
1127
  msgstr "- OU -"
1128
 
1129
- #: dashboard/publisher/adverts-edit.php:158
1130
  msgid "Banner folder:"
1131
  msgstr "Dossier Bannière:"
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:159
1134
  msgid "No image selected"
1135
  msgstr "Aucune image sélectionnée"
1136
 
1137
- #: dashboard/publisher/adverts-edit.php:169
1138
  msgid "Use %asset% in the adcode instead of the file path."
1139
  msgstr "Utilisez % actif dans l’adcode au lieu du chemin de fichier."
1140
 
1141
- #: dashboard/publisher/adverts-edit.php:169
1142
  msgid ""
1143
  "Use either the text field or the dropdown. If the textfield has content that "
1144
  "field has priority."
@@ -1146,29 +1119,27 @@ msgstr ""
1146
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1147
  "valeur, ce champ a la priorité."
1148
 
1149
- #: dashboard/publisher/adverts-edit.php:176
1150
- msgid "Enable click and impression tracking for this advert."
1151
- msgstr "Activez le suivi des clics et des impressions pour cette annonce."
1152
 
1153
- #: dashboard/publisher/adverts-edit.php:177
1154
  msgid ""
1155
- "Note: Clicktracking does not work for Javascript adverts such as those "
1156
- "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1157
- "always supported."
1158
  msgstr ""
1159
- "Remarque : Clicktracking ne fonctionne pas pour les annonces de Javascript "
1160
- "tels que ceux fournis par Google AdSense/DFP/DoubleClick. HTML5/Flash "
1161
- "annonces ne sont pas toujours pris en charge."
1162
 
1163
- #: dashboard/publisher/adverts-edit.php:185
1164
  msgid "Enabled, this ad will be visible"
1165
  msgstr "Activée, cette annonce sera visible"
1166
 
1167
- #: dashboard/publisher/adverts-edit.php:186
1168
  msgid "Disabled, do not show this advert anywhere"
1169
  msgstr "Non, cette annonce ne sera pas utilisée"
1170
 
1171
- #: dashboard/publisher/adverts-edit.php:192
1172
  msgid ""
1173
  "Target your audience with Geo Targeting and easily select which devices and "
1174
  "mobile operating systems the advert should show on with AdRotate Pro!"
@@ -1177,20 +1148,17 @@ msgstr ""
1177
  "appareils et les systèmes d’exploitation mobiles que l’annonce devrait "
1178
  "afficher avec AdRotate Pro !"
1179
 
1180
- #: dashboard/publisher/adverts-edit.php:192
1181
- #: dashboard/publisher/adverts-edit.php:230
1182
  #: dashboard/publisher/groups-edit.php:227
1183
- #: dashboard/publisher/statistics-advert.php:109
1184
- #: dashboard/publisher/statistics-group.php:113
1185
- #: dashboard/publisher/statistics-main.php:83
1186
  msgid "Upgrade now"
1187
  msgstr "Mettre à jour maintenant"
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:194
1190
  msgid "Schedule your advert"
1191
  msgstr "Planifiez votre annonce"
1192
 
1193
- #: dashboard/publisher/adverts-edit.php:195
1194
  msgid ""
1195
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1196
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
@@ -1201,36 +1169,36 @@ msgstr ""
1201
  "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
1202
  "6:00)."
1203
 
1204
- #: dashboard/publisher/adverts-edit.php:199
1205
  msgid "Start date"
1206
  msgstr "Date de début"
1207
 
1208
- #: dashboard/publisher/adverts-edit.php:203
1209
  msgid "End date"
1210
  msgstr "Date de fin"
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:209
1213
  msgid "Start time"
1214
  msgstr "Heure de début"
1215
 
1216
- #: dashboard/publisher/adverts-edit.php:214
1217
  msgid "End time"
1218
  msgstr "Heure de fin"
1219
 
1220
- #: dashboard/publisher/adverts-edit.php:222
1221
  msgid "Maximum Clicks"
1222
  msgstr "Clics maximum"
1223
 
1224
- #: dashboard/publisher/adverts-edit.php:223
1225
- #: dashboard/publisher/adverts-edit.php:225
1226
  msgid "Leave empty or 0 to skip this."
1227
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1228
 
1229
- #: dashboard/publisher/adverts-edit.php:224
1230
  msgid "Maximum Impressions"
1231
  msgstr "Impressions maximales"
1232
 
1233
- #: dashboard/publisher/adverts-edit.php:230
1234
  msgid ""
1235
  "Plan ahead and create multiple and more advanced schedules for each advert "
1236
  "with AdRotate Pro."
@@ -1238,19 +1206,19 @@ msgstr ""
1238
  "Planifiez à l’avance et créez des horaires multiples et plus avancés pour "
1239
  "chaque publicité avec AdRotate Pro."
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:232
1242
  #: dashboard/publisher/groups-edit.php:157
1243
  #: dashboard/publisher/groups-edit.php:302
1244
  msgid "Usage"
1245
  msgstr "Usage"
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:236
1248
  #: dashboard/publisher/groups-edit.php:161
1249
  #: dashboard/publisher/groups-edit.php:306
1250
  msgid "Widget"
1251
  msgstr "Widget"
1252
 
1253
- #: dashboard/publisher/adverts-edit.php:237
1254
  msgid ""
1255
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1256
  "and select the advert or the group the advert is in."
@@ -1258,25 +1226,25 @@ msgstr ""
1258
  "Faites glisser le widget AdRotate à la barre latérale où vous voulez placer "
1259
  "l’annonce, puis sélectionnez l’annonce ou le groupe l’annonce est en."
1260
 
1261
- #: dashboard/publisher/adverts-edit.php:240
1262
  #: dashboard/publisher/groups-edit.php:165
1263
  #: dashboard/publisher/groups-edit.php:310
1264
  msgid "In a post or page"
1265
  msgstr "Dans un message ou une page"
1266
 
1267
- #: dashboard/publisher/adverts-edit.php:242
1268
  #: dashboard/publisher/groups-edit.php:167
1269
  #: dashboard/publisher/groups-edit.php:312
1270
  msgid "Directly in a theme"
1271
  msgstr "Directement dans un thème"
1272
 
1273
- #: dashboard/publisher/adverts-edit.php:249
1274
- #: dashboard/publisher/adverts-edit.php:292
1275
  msgid "Save Advert"
1276
  msgstr "Sauvegarder l’annonce"
1277
 
1278
- #: dashboard/publisher/adverts-edit.php:250
1279
- #: dashboard/publisher/adverts-edit.php:293
1280
  #: dashboard/publisher/adverts-generator.php:148
1281
  #: dashboard/publisher/groups-edit.php:175
1282
  #: dashboard/publisher/groups-edit.php:320
@@ -1284,58 +1252,65 @@ msgstr "Sauvegarder l’annonce"
1284
  msgid "Cancel"
1285
  msgstr "Annuller"
1286
 
1287
- #: dashboard/publisher/adverts-edit.php:254
1288
  msgid "Select Groups"
1289
  msgstr "Choisir groupes"
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:270
 
 
 
 
 
 
 
1292
  #: dashboard/publisher/groups-main.php:60
1293
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1294
  msgid "Default"
1295
  msgstr "Par défaut"
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:271
1298
  #: dashboard/publisher/groups-main.php:61
1299
  msgid "Dynamic"
1300
  msgstr "Dynamique"
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:271
1303
  #: dashboard/publisher/groups-main.php:61
1304
  msgid "second rotation"
1305
  msgstr "deuxième rotation"
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:272
1308
  #: dashboard/publisher/groups-main.php:62
1309
  msgid "Block"
1310
  msgstr "Bloc"
1311
 
1312
- #: dashboard/publisher/adverts-edit.php:272
1313
  #: dashboard/publisher/groups-main.php:62
1314
  msgid "grid"
1315
  msgstr "grille"
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:273
1318
  #: dashboard/publisher/groups-edit.php:234
1319
  #: dashboard/publisher/groups-main.php:63
1320
  msgid "Post Injection"
1321
  msgstr "Injection dans l'article"
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:274
1324
  msgid "Geolocation"
1325
  msgstr "Géolocalisation"
1326
 
1327
- #: dashboard/publisher/adverts-edit.php:281
1328
  #: dashboard/publisher/groups-edit.php:74
1329
  #: dashboard/publisher/groups-main.php:70
1330
  msgid "Mode"
1331
  msgstr "Mode"
1332
 
1333
- #: dashboard/publisher/adverts-edit.php:298
1334
  #: dashboard/publisher/adverts-generator.php:131
1335
  msgid "Portability"
1336
  msgstr "Portabilité"
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:299
1339
  msgid ""
1340
  "This long code is your advert. It includes all settings from above except "
1341
  "the schedule and group selection. You can import this hash into another "
@@ -1352,7 +1327,7 @@ msgstr ""
1352
  "le tout. Vous pouvez coller le hachage dans le champ 'Advert Hash' dans le "
1353
  "générateur d’annonces d’une autre configuration AdRotate."
1354
 
1355
- #: dashboard/publisher/adverts-edit.php:303
1356
  #: dashboard/publisher/adverts-generator.php:137
1357
  msgid "Advert hash"
1358
  msgstr "Annonce hachage"
@@ -1756,6 +1731,10 @@ msgstr ""
1756
  msgid "Get access to all features in AdRotate Pro."
1757
  msgstr "Accédez à toutes les fonctionnalités d’AdRotate Pro."
1758
 
 
 
 
 
1759
  #: dashboard/publisher/groups-edit.php:162
1760
  #: dashboard/publisher/groups-edit.php:307
1761
  msgid ""
@@ -2218,12 +2197,6 @@ msgstr ""
2218
  "Toutes les statistiques sont indicatives. Elles ne reflètent pas "
2219
  "nécessairement les résultats comptés par d'autres partis."
2220
 
2221
- #: dashboard/publisher/statistics-advert.php:109
2222
- #: dashboard/publisher/statistics-group.php:113
2223
- #: dashboard/publisher/statistics-main.php:83
2224
- msgid "Get more features with AdRotate Pro"
2225
- msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
2226
-
2227
  #: dashboard/publisher/statistics-group.php:46
2228
  msgid "Statistics for group"
2229
  msgstr "Statistiques pour le groupe"
@@ -2232,72 +2205,6 @@ msgstr "Statistiques pour le groupe"
2232
  msgid "Adverts counting stats"
2233
  msgstr "Annonces statistiques de comptage"
2234
 
2235
- #: dashboard/settings/advertisers.php:16
2236
- msgid "Advertisers - Available in AdRotate Pro"
2237
- msgstr "Annonceurs - Disponible en AdRotate Pro"
2238
-
2239
- #: dashboard/settings/advertisers.php:17
2240
- msgid "Enable advertisers so they can review and manage their own ads."
2241
- msgstr ""
2242
- "Permettre aux annonceurs d'examiner et de gérer leurs propres annonces."
2243
-
2244
- #: dashboard/settings/advertisers.php:20
2245
- msgid "Enable Advertisers"
2246
- msgstr "Permettre aux annonceurs"
2247
-
2248
- #: dashboard/settings/advertisers.php:22
2249
- msgid "Allow adverts to be coupled to users (Advertisers)."
2250
- msgstr "Autoriser les annonces à être couplées aux utilisateurs (annonceurs)."
2251
-
2252
- #: dashboard/settings/advertisers.php:26
2253
- msgid "Edit/update adverts"
2254
- msgstr "Modifier / Mise à jour des annonces"
2255
-
2256
- #: dashboard/settings/advertisers.php:28
2257
- msgid "Allow advertisers to add new or edit their adverts."
2258
- msgstr "Permettent aux annonceurs d'ajouter ou modifier leurs annonces."
2259
-
2260
- #: dashboard/settings/advertisers.php:32
2261
- msgid "Mobile adverts"
2262
- msgstr "Annonces mobiles"
2263
-
2264
- #: dashboard/settings/advertisers.php:34
2265
- msgid "Allow advertisers to specify on which devices their ads will show."
2266
- msgstr ""
2267
- "Permettre aux annonceurs de spécifier sur quels appareils leurs annonces "
2268
- "s’afficheront."
2269
-
2270
- #: dashboard/settings/advertisers.php:40
2271
- msgid ""
2272
- "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2273
- "be enabled, too."
2274
- msgstr ""
2275
- "Permettre aux annonceurs de spécifier l’endroit où leurs annonces seront "
2276
- "diffusées. Le ciblage géographique doit également être activé."
2277
-
2278
- #: dashboard/settings/advertisers.php:44
2279
- msgid "Advertiser role"
2280
- msgstr "Annonceur"
2281
-
2282
- #: dashboard/settings/advertisers.php:46
2283
- msgid "Create a seperate user role for your advertisers."
2284
- msgstr "Créer un rôle d’utilisateur séparé pour vos annonceurs."
2285
-
2286
- #: dashboard/settings/advertisers.php:47
2287
- msgid ""
2288
- "Don't forget to give these users access to their advertiser dashboard via "
2289
- "the Roles tab."
2290
- msgstr ""
2291
- "N’oubliez pas de donner à ces utilisateurs l’accès à leur tableau de bord de "
2292
- "l’annonceur par l’intermédiaire de l’onglet rôles."
2293
-
2294
- #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2295
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:47
2296
- #: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
2297
- #: dashboard/settings/statistics.php:79
2298
- msgid "Update Options"
2299
- msgstr "Mettre à jour les options"
2300
-
2301
  #: dashboard/settings/general.php:17
2302
  msgid "General Settings"
2303
  msgstr "Réglages généraux"
@@ -2311,84 +2218,115 @@ msgid "Some options are only available in AdRotate Pro!"
2311
  msgstr "Certaines options ne sont disponibles que dans AdRotate Pro!"
2312
 
2313
  #: dashboard/settings/general.php:21
2314
- msgid "Shortcode in widgets"
2315
- msgstr "Code court dans les widgets"
2316
 
2317
  #: dashboard/settings/general.php:22
2318
  msgid ""
2319
- "Enable this option to if your theme does not support shortcodes in the "
2320
- "WordPress text widget."
 
 
 
 
 
 
 
 
2321
  msgstr ""
2322
- "Activez cette option si votre thème ne prend pas en charge les codes courts "
2323
- "dans le widget texte WordPress."
 
2324
 
2325
- #: dashboard/settings/general.php:25
2326
- msgid "Disable live preview"
2327
- msgstr "Désactiver en direct aperçu"
2328
 
2329
- #: dashboard/settings/general.php:26
2330
  msgid ""
2331
- "Enable this option if you have faulty adverts that overflow their designated "
2332
- "area while creating/editing adverts."
2333
  msgstr ""
2334
- "Activez cette option si vous avez des annonces défectueuses qui débordent de "
2335
- "leur zone désignée tout en créant/éditant des annonces."
 
2336
 
2337
- #: dashboard/settings/general.php:29
2338
- msgid "Disable dynamic mode"
2339
- msgstr "Désactiver le mode dynamique"
 
 
 
 
 
 
 
 
2340
 
2341
  #: dashboard/settings/general.php:30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2342
  msgid ""
2343
- "Enable this option to disable dynamic mode in groups for mobile devices if "
2344
- "you notice skipping or jumpy content."
2345
  msgstr ""
2346
- "Activez cette option pour désactiver le mode dynamique en groupes pour les "
2347
- "appareils mobiles si vous remarquez sauter ou du contenu nerveux."
2348
 
2349
- #: dashboard/settings/general.php:33
2350
  msgid "Load jQuery"
2351
  msgstr "Utilisez jQuery"
2352
 
2353
- #: dashboard/settings/general.php:34
2354
  msgid ""
2355
- "Enable this option if your theme does not load jQuery. jQuery is required "
2356
- "for dynamic groups, statistics and some other features."
2357
  msgstr ""
2358
- "Activez cette option si votre thème ne charge pas jQuery. jQuery est requise "
2359
- "pour les groupes dynamiques, des statistiques et quelques autres "
2360
- "fonctionnalités."
2361
 
2362
- #: dashboard/settings/general.php:37
2363
  msgid "Load scripts in footer?"
2364
  msgstr "Charger Script dans Footer?"
2365
 
2366
- #: dashboard/settings/general.php:38
2367
- msgid ""
2368
- "Enable this option if you want to load all AdRotate Javascripts in the "
2369
- "footer of your site."
2370
  msgstr ""
2371
- "Activez cette option si vous voulez charger tous les Javascripts AdRotate "
2372
- "dans le pied de page de votre site."
2373
 
2374
- #: dashboard/settings/general.php:41
2375
  msgid "Adblock disguise"
2376
  msgstr "Déguisement de Adblock"
2377
 
2378
- #: dashboard/settings/general.php:43
2379
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2380
  msgstr ""
2381
  "Laisser vide pour désactiver. Utilisez uniquement des lettres lowercaps. Par "
2382
  "exemple :"
2383
 
2384
- #: dashboard/settings/general.php:44
2385
  msgid ""
2386
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2387
  msgstr ""
2388
  "Essayez d'éviter les plugins de Adblock dans la plupart des navigateurs "
2389
  "modernes en utilisant shortcodes."
2390
 
2391
- #: dashboard/settings/general.php:44
2392
  msgid ""
2393
  "To also apply this feature to widgets, use a text widget with a shortcode "
2394
  "instead of the AdRotate widget."
@@ -2396,7 +2334,7 @@ msgstr ""
2396
  "Pour également appliquer cette fonctionnalité aux widgets, utiliser un "
2397
  "widget de texte avec un shortcode plutôt que le widget AdRotate."
2398
 
2399
- #: dashboard/settings/general.php:44
2400
  msgid ""
2401
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2402
  "feature will have little effect!"
@@ -2404,23 +2342,23 @@ msgstr ""
2404
  "Évitez l’utilisation de mots clés ou de noms de fichiers évidents dans vos "
2405
  "annonces ou cette fonctionnalité aura peu d’effet!"
2406
 
2407
- #: dashboard/settings/general.php:49
2408
  msgid "Banner Folder"
2409
  msgstr "Dossier Bannière"
2410
 
2411
- #: dashboard/settings/general.php:50
2412
  msgid "Set a folder where your banner images will be stored."
2413
  msgstr "Réglez un dossier où vos images de bannière seront stockées."
2414
 
2415
- #: dashboard/settings/general.php:53
2416
  msgid "Folder name"
2417
  msgstr "Nom du dossier"
2418
 
2419
- #: dashboard/settings/general.php:55
2420
  msgid "(Default: banners)."
2421
  msgstr "(Par défaut : bannières)."
2422
 
2423
- #: dashboard/settings/general.php:56
2424
  msgid ""
2425
  "To try and trick ad blockers you could set the folder to something crazy "
2426
  "like:"
@@ -2428,7 +2366,7 @@ msgstr ""
2428
  "Pour tenter de tromper les bloqueurs de annonce, vous pouvez définir le "
2429
  "dossier avec comme quelque chose de fou :"
2430
 
2431
- #: dashboard/settings/general.php:57
2432
  msgid ""
2433
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2434
  "will show errors when the folder is missing."
@@ -2436,26 +2374,26 @@ msgstr ""
2436
  "Ce dossier ne sera pas automatiquement créé s’il n’existe pas. AdRotate "
2437
  "affichera des erreurs lorsque le dossier est manquant."
2438
 
2439
- #: dashboard/settings/general.php:62
2440
  msgid "Bot filter"
2441
  msgstr "Filtre de robots"
2442
 
2443
- #: dashboard/settings/general.php:63
2444
  msgid "The bot filter is used for the AdRotate stats tracker."
2445
  msgstr "Le filtre bot est utilisé pour le tracker AdRotate stats."
2446
 
2447
- #: dashboard/settings/general.php:66
2448
  msgid "User-Agent Filter"
2449
  msgstr "Filtrage par User-Agent"
2450
 
2451
- #: dashboard/settings/general.php:69
2452
  msgid ""
2453
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2454
  msgstr ""
2455
  "Liste de mots-clés séparés par une virgule. Filtrer les robots/robots/agents-"
2456
  "utilisateurs."
2457
 
2458
- #: dashboard/settings/general.php:70
2459
  msgid ""
2460
  "Keep in mind that this might give false positives. The word 'fire' also "
2461
  "matches 'firefox', but not vice-versa. So be careful!"
@@ -2463,7 +2401,7 @@ msgstr ""
2463
  "Gardez à l’esprit que cela pourrait donner de faux positifs. Le mot «feu» "
2464
  "correspond également à «firefox», mais pas vice-versa. Alors soyez prudent!"
2465
 
2466
- #: dashboard/settings/general.php:71
2467
  msgid ""
2468
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2469
  "characters are stripped out."
@@ -2471,7 +2409,7 @@ msgstr ""
2471
  "Seuls les mots avec des caractères alphanumériques et [ - ] sont autorisés. "
2472
  "Tous les autres personnages sont dépouillés."
2473
 
2474
- #: dashboard/settings/general.php:72
2475
  msgid ""
2476
  "Additionally to the list specified here, empty User-Agents are blocked as "
2477
  "well."
@@ -2479,14 +2417,20 @@ msgstr ""
2479
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2480
  "bloqués."
2481
 
2482
- #: dashboard/settings/general.php:72
2483
  msgid "Learn more about"
2484
  msgstr "En savoir plus sur"
2485
 
2486
- #: dashboard/settings/general.php:72
2487
  msgid "user-agents"
2488
  msgstr "user-agents"
2489
 
 
 
 
 
 
 
2490
  #: dashboard/settings/geotargeting.php:17
2491
  msgid "Geo Targeting - Available in AdRotate Pro"
2492
  msgstr "Geo Targeting - Disponible en AdRotate Pro"
@@ -2601,8 +2545,8 @@ msgstr ""
2601
  "lente, insensible et lente."
2602
 
2603
  #: dashboard/settings/maintenance.php:22
2604
- msgid "Check all adverts for configuration errors"
2605
- msgstr "Vérifiez toutes les annonces pour les erreurs de configuration"
2606
 
2607
  #: dashboard/settings/maintenance.php:22
2608
  msgid "You are about to check all adverts for errors."
@@ -2625,8 +2569,8 @@ msgid "Clean-up Database and Files"
2625
  msgstr "Nettoyer la base de données et fichiers"
2626
 
2627
  #: dashboard/settings/maintenance.php:30
2628
- msgid "Clean-up database and old files"
2629
- msgstr "Base de données de nettoyage et fichiers anciens"
2630
 
2631
  #: dashboard/settings/maintenance.php:30
2632
  msgid "You are about to do maintenance on your setup of AdRotate."
@@ -3170,55 +3114,63 @@ msgstr "Statistiques AdRotate"
3170
 
3171
  #: dashboard/settings/statistics.php:48
3172
  msgid ""
3173
- "The settings below are for the internal tracker and have no effect when "
3174
- "using Google Analytics or Matomo."
3175
  msgstr ""
3176
- "Les paramètres ci-dessous sont pour le tracker interne et n’ont aucun effet "
3177
  "lors de l’utilisation de Google Analytics ou Matomo."
3178
 
3179
  #: dashboard/settings/statistics.php:51
 
 
 
 
 
 
 
 
3180
  msgid "Logged in impressions"
3181
  msgstr "Impressions enregistrées"
3182
 
3183
- #: dashboard/settings/statistics.php:53
3184
  msgid "Track impressions from logged in users."
3185
  msgstr "Suivre les impressions des utilisateurs connectés."
3186
 
3187
- #: dashboard/settings/statistics.php:57
3188
  msgid "Logged in clicks"
3189
  msgstr "Connecté en clics"
3190
 
3191
- #: dashboard/settings/statistics.php:59
3192
  msgid "Track clicks from logged in users."
3193
  msgstr "Suivi des clics des utilisateurs connectés."
3194
 
3195
- #: dashboard/settings/statistics.php:63
3196
  msgid "Impression timer"
3197
  msgstr "Minuterie d’impression"
3198
 
3199
- #: dashboard/settings/statistics.php:65 dashboard/settings/statistics.php:72
3200
  msgid "Seconds."
3201
  msgstr "Secondes."
3202
 
3203
- #: dashboard/settings/statistics.php:66
3204
  msgid "Default: 60."
3205
  msgstr "Par défaut: 60."
3206
 
3207
- #: dashboard/settings/statistics.php:66
3208
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3209
  msgstr ""
3210
  "Ce nombre ne peut pas être vide, être inférieure à 10 ou dépasser 3 600 (1 "
3211
  "heure)."
3212
 
3213
- #: dashboard/settings/statistics.php:70
3214
  msgid "Click timer"
3215
  msgstr "Cliquez sur la minuterie"
3216
 
3217
- #: dashboard/settings/statistics.php:73
3218
  msgid "Default: 86400."
3219
  msgstr "Par défaut : 86400."
3220
 
3221
- #: dashboard/settings/statistics.php:73
3222
  msgid ""
3223
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3224
  msgstr ""
@@ -3291,6 +3243,153 @@ msgstr "Aide"
3291
  msgid "Premium Support is available in AdRotate Pro!"
3292
  msgstr "Premium Support est disponible dans AdRotate Pro!"
3293
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3294
  #~ msgid "Get started today"
3295
  #~ msgstr "Commencez dès aujourd'hui"
3296
 
@@ -3610,9 +3709,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
3610
  #~ msgid "News & Updates"
3611
  #~ msgstr "Actualités"
3612
 
3613
- #~ msgid "Support Forums"
3614
- #~ msgstr "Forums de support"
3615
-
3616
  #~ msgid ""
3617
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3618
  #~ "Chances are your question has already been asked and answered!"
@@ -5043,10 +5139,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
5043
  #~ msgid "Select Adverts"
5044
  #~ msgstr "Sélectionner les annonces"
5045
 
5046
- #, fuzzy
5047
- #~ msgid "Overview of clicks and impressions"
5048
- #~ msgstr "Synthèse mensuelle de clics et d'impressions"
5049
-
5050
  #~ msgid "Period"
5051
  #~ msgstr "Période"
5052
 
@@ -5059,41 +5151,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
5059
  #~ msgid "from"
5060
  #~ msgstr "de"
5061
 
5062
- #, fuzzy
5063
- #~ msgid "Duplicate adverts"
5064
- #~ msgstr "Annonces en double"
5065
-
5066
- #, fuzzy
5067
- #~ msgid ""
5068
- #~ "Enable this option to prevent adverts in groups that are in Default or "
5069
- #~ "Block mode from showing multiple times on the same pageload."
5070
- #~ msgstr ""
5071
- #~ "Activez cette option pour empêcher les annonces dans les groupes qui sont "
5072
- #~ "en mode Défaut ou Bloc de s’afficher plusieurs fois sur la même pageload."
5073
-
5074
- #, fuzzy
5075
- #~ msgid ""
5076
- #~ "If you still notice double adverts from groups placed on a page, start "
5077
- #~ "with carefully looking at your setup to make sure you did not cause this "
5078
- #~ "yourself."
5079
- #~ msgstr ""
5080
- #~ "Si vous remarquez toujours les doubles annonces de groupes placés sur une "
5081
- #~ "page, commencez par regarder attentivement votre configuration pour vous "
5082
- #~ "assurer que vous n’avez pas causé cela vous-même."
5083
-
5084
- #, fuzzy
5085
- #~ msgid "On some servers $_SESSION is disabled."
5086
- #~ msgstr "Sur certains serveurs, _SESSION $est désactivé."
5087
-
5088
- #, fuzzy
5089
- #~ msgid ""
5090
- #~ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. "
5091
- #~ "However, most people will not need this extra plugin!"
5092
- #~ msgstr ""
5093
- #~ "Un plugin appelé \"WP Session Manager\" par Eric Mann peut résoudre ce "
5094
- #~ "problème. Cependant, la plupart des gens n’auront pas besoin de ce plugin "
5095
- #~ "supplémentaire!"
5096
-
5097
  #, fuzzy
5098
  #~ msgid "Lookups remaining"
5099
  #~ msgstr "Les examens restants"
@@ -5219,10 +5276,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
5219
  #~ "Désactiver temporairement le chiffrement sur l’url de redirection. "
5220
  #~ "AdRotate Internal Tracker uniquement."
5221
 
5222
- #, fuzzy
5223
- #~ msgid "Check adverts for errors"
5224
- #~ msgstr "Vérifier les annonces pour les erreurs"
5225
-
5226
  #~ msgid "Send email notifications"
5227
  #~ msgstr "Envoyer des notifications par e-mail"
5228
 
@@ -5778,14 +5831,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
5778
  #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
5779
  #~ "Vous obtiendraient une solution (en général) dans la journée."
5780
 
5781
- #, fuzzy
5782
- #~ msgid "Post Ticket"
5783
- #~ msgstr "Dans un article ou une page :"
5784
-
5785
- #, fuzzy
5786
- #~ msgid "Enable stats"
5787
- #~ msgstr "Statistiques activés"
5788
-
5789
  #, fuzzy
5790
  #~ msgid "Enable click tracking for this advert."
5791
  #~ msgstr "Activer le suivi des clicks pour cette publicité."
@@ -5878,14 +5923,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
5878
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
5879
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
5880
 
5881
- #, fuzzy
5882
- #~ msgid ""
5883
- #~ "Note: Clicktracking does generally not work for Javascript adverts such "
5884
- #~ "as those provided by Google AdSense."
5885
- #~ msgstr ""
5886
- #~ "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
5887
- #~ "publicités en Javascript telles que celles fournies par Google AdSense."
5888
-
5889
  #, fuzzy
5890
  #~ msgid ""
5891
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-31 02:04-0500\n"
6
+ "PO-Revision-Date: 2021-08-31 02:05-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
9
  "Language: fr\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:797
21
  msgid "Advert saved"
22
+ msgstr "Annonce enregistré"
23
 
24
+ #: adrotate-functions.php:801
25
  msgid "Group saved"
26
  msgstr "Groupe enregistré"
27
 
28
+ #: adrotate-functions.php:805
29
  msgid "Banner image saved"
30
  msgstr "Bannière image sauvegardée"
31
 
32
+ #: adrotate-functions.php:809
33
  msgid "Ad(s) deleted"
34
  msgstr "Annonce(s) supprimée"
35
 
36
+ #: adrotate-functions.php:813
37
  msgid "Group deleted"
38
  msgstr "Groupe supprimé"
39
 
40
+ #: adrotate-functions.php:817
41
  msgid "Asset(s) deleted"
42
  msgstr "Actif(s) supprimé"
43
 
44
+ #: adrotate-functions.php:821
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
49
  "Quelque chose s’est mal passé en supprimant le fichier ou le dossier. "
50
  "Assurez-vous que vos autorisations sont en ordre."
51
 
52
+ #: adrotate-functions.php:825
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Réinitialisation des statistiques publicitaires"
55
 
56
+ #: adrotate-functions.php:829
57
  msgid "Advert(s) renewed"
58
  msgstr "Annonce(s) renouvellée"
59
 
60
+ #: adrotate-functions.php:833
61
  msgid "Advert(s) deactivated"
62
  msgstr "Annonce(s) désactivée"
63
 
64
+ #: adrotate-functions.php:837
65
  msgid "Advert(s) activated"
66
  msgstr "Annonce(s) activée"
67
 
68
+ #: adrotate-functions.php:841
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Groupe y compris les annonces en elle supprimé"
71
 
72
+ #: adrotate-functions.php:845
73
  msgid "Export created"
74
  msgstr "Export créé"
75
 
76
+ #: adrotate-functions.php:849
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
82
  "annonce ci-dessous. N’oubliez pas de vérifier tous les paramètres et de les "
83
  "planifier."
84
 
85
+ #: adrotate-functions.php:854
86
  msgid "Settings saved"
87
  msgstr "Paramètres sauvegardés"
88
 
89
+ #: adrotate-functions.php:858
90
  msgid "Database optimized"
91
  msgstr "Base de données optimisée"
92
 
93
+ #: adrotate-functions.php:862
94
  msgid "Database repaired"
95
  msgstr "Base de données réparée"
96
 
97
+ #: adrotate-functions.php:866
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Annonces évaluées et statuts corrigés au besoin"
100
 
101
+ #: adrotate-functions.php:870
102
  msgid "Cleanup complete"
103
  msgstr "Nettoyage complet"
104
 
105
+ #: adrotate-functions.php:875
106
  msgid "Action prohibited"
107
  msgstr "Action interdite"
108
 
109
+ #: adrotate-functions.php:879
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
114
  "L’annonce a été enregistrée, mais a un problème qui pourrait l’empêcher de "
115
  "fonctionner correctement. Passez en revue l’annonce colorée."
116
 
117
+ #: adrotate-functions.php:883
118
  msgid "No data found in selected time period"
119
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
120
 
121
+ #: adrotate-functions.php:887
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr ""
124
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
125
 
126
+ #: adrotate-functions.php:891
127
  msgid "Form can not be (partially) empty!"
128
  msgstr "Forme ne peut pas être (partiellement) vide !"
129
 
130
+ #: adrotate-functions.php:895
131
  msgid "No adverts found."
132
  msgstr "Aucune annonce trouvée."
133
 
134
+ #: adrotate-functions.php:899
135
  msgid ""
136
  "The advert hash is not usable or is missing required data. Please copy the "
137
  "hash correctly and try again."
139
  "Le hachage de l’annonce n’est pas utilisable ou manque les données requises. "
140
  "S’il vous plaît copier le hachage correctement et essayer à nouveau."
141
 
142
+ #: adrotate-functions.php:903
143
  msgid ""
144
  "The advert hash can not be used on the same site as it originated from or is "
145
  "not a valid hash for importing."
147
  "Le hachage de l’annonce ne peut pas être utilisé sur le même site qu’il "
148
  "provient ou n’est pas un hachage valide pour l’importation."
149
 
150
+ #: adrotate-functions.php:907
151
  msgid "Unexpected error"
152
  msgstr "Erreur inattendue"
153
 
323
  msgid "Installation instructions"
324
  msgstr "Instructions d’installation"
325
 
326
+ #: adrotate-output.php:735
327
  msgid "your attention:"
328
  msgstr "votre attention:"
329
 
330
+ #: adrotate-output.php:766
331
  msgid ""
332
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
333
  "menu. If you need help getting started take a look at the"
335
  "Merci d’avoir choisi AdRotate. Tout ce qui concerne AdRotate est dans ce "
336
  "menu. Si vous avez besoin d’aide pour commencer, jetez un coup d’œil à la"
337
 
338
+ #: adrotate-output.php:766
339
  msgid "manuals"
340
  msgstr "manuels"
341
 
342
+ #: adrotate-output.php:766
343
  msgid "and"
344
  msgstr "et"
345
 
346
+ #: adrotate-output.php:766
347
  msgid "forums"
348
  msgstr "forums"
349
 
350
+ #: adrotate-output.php:844
351
  msgid "Need help fast? Or do you have a question?"
352
+ msgstr "Besoin d’aide rapidement ? Ou avez-vous une question?"
353
 
354
+ #: adrotate-output.php:845
355
  msgid "Help AdRotate Grow"
356
  msgstr "AdRotate Pro"
357
 
358
+ #: adrotate-output.php:846
359
+ msgid "Get more features with AdRotate Pro"
360
+ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
361
 
362
+ #: adrotate-output.php:852
363
  msgid ""
364
+ "If you need help, or have questions about AdRotate, the best and fastest way "
365
+ "to get your answer is via the AdRotate support forum. Usually I answer "
366
+ "questions the same day, often with a solution in the first answer."
367
  msgstr ""
368
+ "Si vous avez besoin d’aide ou si vous avez des questions sur AdRotate, le "
369
+ "meilleur et le plus rapide moyen d’obtenir votre réponse est via le forum "
370
+ "d’assistance AdRotate. Habituellement, je réponds aux questions le jour "
371
+ "même, souvent avec une solution dans la première réponse."
 
 
 
372
 
373
+ #: adrotate-output.php:853
374
+ msgid "AdRotate Manuals"
375
+ msgstr "Manuels AdRotate"
376
 
377
+ #: adrotate-output.php:853
378
+ msgid "Support Forums"
379
+ msgstr "Forums de support"
380
 
381
+ #: adrotate-output.php:854
382
  msgid ""
383
+ "When posting on the forum, please include a brief description of the "
384
+ "problem, include any errors or symptoms. Often it helps if you try to "
385
+ "explain what you are trying to do. Providing some extra information always "
386
+ "helps with gettng a better answer or advise."
387
+ msgstr ""
388
+ "Lorsque vous publiez sur le forum, veuillez inclure une brève description du "
389
+ "problème, inclure des erreurs ou des symptômes. Souvent, il est utile "
390
+ "d’expliquer ce que vous essayez de faire. Fournir des informations "
391
+ "supplémentaires aide toujours à obtenir une meilleure réponse ou un meilleur "
392
+ "conseil."
393
+
394
+ #: adrotate-output.php:856
395
+ msgid ""
396
+ "Consider writing a review, sharing AdRotate in Social media or making a "
397
+ "donation if you like the plugin or if you find it useful. Writing a review "
398
+ "and sharing AdRotate on social media costs you nothing but doing so is super "
399
+ "helpful as promotion which helps to ensure future development."
400
+ msgstr ""
401
+ "Envisagez d’écrire un avis, de partager AdRotate dans les médias sociaux ou "
402
+ "de faire un don si vous aimez le plugin ou si vous le trouvez utile. Écrire "
403
+ "un avis et partager AdRotate sur les médias sociaux ne vous coûte rien, mais "
404
+ "le faire est très utile en tant que promotion qui aide à assurer le "
405
+ "développement futur."
406
+
407
+ #: adrotate-output.php:857
408
+ msgid "Post Tweet"
409
+ msgstr "Publier un tweet"
410
+
411
+ #: adrotate-output.php:857
412
+ msgid "Share on Facebook"
413
+ msgstr "Partager sur Facebook"
414
+
415
+ #: adrotate-output.php:857
416
+ msgid "Write review on WordPress.org"
417
+ msgstr "Écrire un avis sur WordPress.org"
418
+
419
+ #: adrotate-output.php:858
420
+ msgid "Thank you very much for your help and support!"
421
+ msgstr "Merci beaucoup pour votre aide et votre soutien!"
422
+
423
+ #: adrotate-output.php:863
424
+ msgid ""
425
+ "AdRotate Professional has a lot more functions for even better advertising "
426
+ "management. Check out the feature comparison tab on any of the product pages "
427
+ "to see what AdRotate Pro has to offer for you!"
428
  msgstr ""
429
+ "AdRotate Professional a beaucoup plus de fonctions pour une gestion de la "
430
+ "annonce encore meilleure. Consultez l’onglet comparaison des fonctionnalités "
431
+ "sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
432
+ "vous!"
433
 
434
+ #: adrotate-output.php:863
435
+ msgid "Compare Licenses"
436
+ msgstr "Comparer les licences"
 
437
 
438
+ #: adrotate-output.php:864
439
+ msgid "Single License"
440
+ msgstr "Licence unique"
441
+
442
+ #: adrotate-output.php:864
443
+ msgid "Use on ONE WordPress installation."
444
+ msgstr "Utilisation sur l’installation ONE WordPress."
445
+
446
+ #: adrotate-output.php:864 adrotate-output.php:865
447
+ msgid "Buy now"
448
+ msgstr "Acheter maintenant"
449
+
450
+ #: adrotate-output.php:865
451
+ msgid "Multi License"
452
+ msgstr "Licence Multiple"
453
+
454
+ #: adrotate-output.php:865
455
+ msgid "Use on up to FIVE WordPress installations."
456
+ msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
457
 
458
  #: adrotate-statistics.php:155
459
  msgid "January"
567
  msgid "Fill in the ID of the type you want to display!"
568
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
569
 
570
+ #: adrotate.php:105 adrotate.php:175
 
 
 
 
 
 
 
 
571
  msgid "Manage Adverts"
572
  msgstr "Gérer Annonces"
573
 
574
+ #: adrotate.php:106 adrotate.php:301 dashboard/publisher/groups-main.php:12
575
  msgid "Manage Groups"
576
  msgstr "Gérer les groupes"
577
 
578
+ #: adrotate.php:107 adrotate.php:339 dashboard/publisher/schedules-main.php:12
579
  msgid "Manage Schedules"
580
  msgstr "Gérer les horaires"
581
 
582
+ #: adrotate.php:108
583
  msgid "Manage Media"
584
  msgstr "Gérer les médias"
585
 
586
+ #: adrotate.php:109 adrotate.php:503 dashboard/adrotatepro.php:98
587
+ #: dashboard/publisher/adverts-edit.php:178
588
  #: dashboard/publisher/statistics-main.php:23
589
  #: dashboard/settings/statistics.php:17
590
  msgid "Statistics"
591
  msgstr "Statistiques"
592
 
593
+ #: adrotate.php:110 adrotate.php:238 adrotate.php:309
594
+ msgid "Get AdRotate Pro"
595
+ msgstr "Obtenez AdRotate Pro"
596
+
597
+ #: adrotate.php:111
598
  msgid "Support"
599
  msgstr "Support"
600
 
601
+ #: adrotate.php:112
602
  msgid "Settings"
603
  msgstr "Paramètres"
604
 
605
+ #: adrotate.php:131
 
 
 
 
606
  msgid "Get AdRotate Professional"
607
  msgstr "Obtenez AdRotate Professional"
608
 
609
+ #: adrotate.php:235 adrotate.php:307
610
  msgid "Manage"
611
  msgstr "Gérer"
612
 
613
+ #: adrotate.php:236
614
  msgid "Advert Generator"
615
  msgstr "Générateur d’annonces"
616
 
617
+ #: adrotate.php:237 dashboard/publisher/adverts-edit.php:108
618
  msgid "New Advert"
619
  msgstr "Nouvelle Annonce"
620
 
621
+ #: adrotate.php:308
622
  msgid "Add New"
623
  msgstr "Ajouter"
624
 
625
+ #: adrotate.php:376
626
  msgid "Manage Media and Assets"
627
  msgstr "Gérer les médias et les actifs"
628
 
629
+ #: adrotate.php:380
630
  msgid ""
631
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
632
  "if you have HTML5 adverts containing multiple files."
635
  "d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
636
  "fichiers."
637
 
638
+ #: adrotate.php:422
639
  msgid "Advert Statistics"
640
  msgstr "Statistiques de publicité"
641
 
642
+ #: adrotate.php:465
643
  msgid "AdRotate Support"
644
  msgstr "Assistance AdRotate"
645
 
646
+ #: adrotate.php:496
647
  msgid "AdRotate Settings"
648
  msgstr "Paramètres de AdRotate"
649
 
650
+ #: adrotate.php:501 dashboard/publisher/statistics-main.php:28
651
  msgid "General"
652
  msgstr "Général"
653
 
654
+ #: adrotate.php:502 dashboard/settings/notifications.php:18
655
  msgid "Notifications"
656
  msgstr "Notifications"
657
 
658
+ #: adrotate.php:504 dashboard/publisher/groups-edit.php:205
 
659
  msgid "Geo Targeting"
660
  msgstr "Ciblage géo"
661
 
662
+ #: adrotate.php:505 dashboard/settings/roles.php:17
 
 
 
 
663
  msgid "Access Roles"
664
  msgstr "Niveaux d’accès"
665
 
666
+ #: adrotate.php:506 dashboard/settings/misc.php:16
667
  msgid "Miscellaneous"
668
  msgstr "Divers"
669
 
670
+ #: adrotate.php:507 dashboard/settings/maintenance.php:16
671
  msgid "Maintenance"
672
  msgstr "Maintenance"
673
 
808
  "ou lorsque les annonceurs créent de nouvelles annonces. Sélectionnez jusqu’à "
809
  "trois adresses e-mail à aviser. Ne manquez plus jamais une date d’expiration."
810
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
811
  #: dashboard/publisher/adverts-disabled.php:15
812
  msgid "Disabled Adverts"
813
  msgstr "Annonce désactivée"
821
  msgstr "Actions en vrac"
822
 
823
  #: dashboard/publisher/adverts-disabled.php:21
824
+ #: dashboard/publisher/adverts-edit.php:186
825
  msgid "Activate"
826
  msgstr "Activer"
827
 
847
  msgstr "Aller"
848
 
849
  #: dashboard/publisher/adverts-disabled.php:35
850
+ #: dashboard/publisher/adverts-edit.php:263
851
  #: dashboard/publisher/adverts-error.php:39
852
  #: dashboard/publisher/adverts-main.php:39
853
  #: dashboard/publisher/groups-edit.php:350
864
  msgstr "Début / Fin"
865
 
866
  #: dashboard/publisher/adverts-disabled.php:37
867
+ #: dashboard/publisher/adverts-edit.php:116
868
+ #: dashboard/publisher/adverts-edit.php:264
869
  #: dashboard/publisher/adverts-error.php:40
870
  #: dashboard/publisher/adverts-main.php:41
871
  #: dashboard/publisher/groups-edit.php:65
967
  "sauvegarder l’annonce !"
968
 
969
  #: dashboard/publisher/adverts-edit.php:62
 
 
 
 
 
 
970
  msgid ""
971
+ "This kind of advert can not have statistics enabled in AdRotate. Impression "
972
+ "counting is available in AdRotate Pro."
973
  msgstr ""
974
+ "Ce type de publicité ne peut pas avoir de statistiques activées dans "
975
+ "AdRotate. Le comptage des impressions est disponible dans AdRotate Pro."
976
 
977
+ #: dashboard/publisher/adverts-edit.php:67
978
  msgid "This advert is expired and currently not shown on your website!"
979
  msgstr ""
980
  "Cette annonce est expirée et ne pas actuellement affichée sur votre site "
981
  "Internet !"
982
 
983
+ #: dashboard/publisher/adverts-edit.php:70
984
  msgid "The advert will expire in less than 2 days!"
985
  msgstr "L’annonce expirera dans moins de 2 jours!"
986
 
987
+ #: dashboard/publisher/adverts-edit.php:73
988
  msgid "This advert will expire in less than 7 days!"
989
  msgstr "Cette annonce expire dans moins de 7 jours !"
990
 
991
+ #: dashboard/publisher/adverts-edit.php:76
992
  msgid "This advert has been disabled and does not rotate on your site!"
993
  msgstr "Cette annonce à été désactivée et ne tourne plus sur votre site!"
994
 
995
+ #: dashboard/publisher/adverts-edit.php:79
996
+ msgid ""
997
+ "AdRotate cannot find an error but the advert is marked erroneous, try re-"
998
+ "saving the ad!"
999
+ msgstr ""
1000
+ "AdRotate ne peut pas trouver une erreur, mais l’annonce est marquée erronée, "
1001
+ "essayez de sauver à nouveau l’annonce!"
1002
+
1003
+ #: dashboard/publisher/adverts-edit.php:83
1004
+ msgid "This advert still uses the %image% tag. Please change it to %asset%!"
1005
+ msgstr ""
1006
+ "Cette annonce utilise toujours le %image% tag. S’il vous plaît le changer à "
1007
+ "%asset%!"
1008
+
1009
+ #: dashboard/publisher/adverts-edit.php:110
1010
  msgid "Edit Advert"
1011
  msgstr "Modifier Annonce"
1012
 
1013
+ #: dashboard/publisher/adverts-edit.php:125
1014
  msgid "AdCode"
1015
  msgstr "AdCode"
1016
 
1017
+ #: dashboard/publisher/adverts-edit.php:130
1018
  msgid "Basic Examples:"
1019
  msgstr "Exemples de base :"
1020
 
1021
+ #: dashboard/publisher/adverts-edit.php:131
1022
  msgid "Click any of the examples to use it."
1023
  msgstr "Cliquez sur l’un des exemples pour l’utiliser."
1024
 
1025
+ #: dashboard/publisher/adverts-edit.php:140
1026
  msgid "Useful tags"
1027
  msgstr "Étiquettes utiles"
1028
 
1029
+ #: dashboard/publisher/adverts-edit.php:142
1030
  msgid "Insert the advert ID Number."
1031
  msgstr "Insérer l’annonce numéro d’identification."
1032
 
1033
+ #: dashboard/publisher/adverts-edit.php:142
1034
  msgid "Use this tag when selecting a image below."
1035
  msgstr "Utilisez cette balise lors de la sélection d’une image ci-dessous."
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:142
1038
  msgid "Insert the advert name."
1039
  msgstr "Insérez le nom de l’annonce."
1040
 
1041
+ #: dashboard/publisher/adverts-edit.php:142
1042
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1043
  msgstr ""
1044
  "Insérer une chaîne aléatoire. Utile pour les annonces de type DFP/"
1045
  "DoubleClick."
1046
 
1047
+ #: dashboard/publisher/adverts-edit.php:142
1048
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1049
  msgstr ""
1050
  "Ajouter à l’intérieur de l’étiquette 'lt;a’gt; pour ouvrir l’annonce dans "
1051
  "une nouvelle fenêtre."
1052
 
1053
+ #: dashboard/publisher/adverts-edit.php:142
1054
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1055
  msgstr ""
1056
  "Ajouter à l’intérieur de l’étiquette 'lt;a’gt; pour dire aux chenilles "
1057
  "d’ignorer ce lien."
1058
 
1059
+ #: dashboard/publisher/adverts-edit.php:143
1060
  msgid ""
1061
  "Place the cursor where you want to add a tag and click to add it to your "
1062
  "AdCode."
1064
  "Placez le curseur où vous souhaitez ajouter une balise, puis cliquez sur "
1065
  "pour l’ajouter à votre AdCode."
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:148
1068
  msgid "Preview"
1069
  msgstr "En avant-première"
1070
 
1071
+ #: dashboard/publisher/adverts-edit.php:151
1072
  msgid ""
1073
  "Note: While this preview is an accurate one, it might look different then it "
1074
  "does on the website."
1076
  "NOTA BENE : Bien que cet aperçu soit précis, la annonce peut être différente "
1077
  "sur le site."
1078
 
1079
+ #: dashboard/publisher/adverts-edit.php:152
1080
  msgid ""
1081
  "This is because of CSS differences. Your themes CSS file is not active here!"
1082
  msgstr ""
1083
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1084
  "pas actif ici!"
1085
 
1086
+ #: dashboard/publisher/adverts-edit.php:157
1087
  msgid "Banner asset"
1088
  msgstr "Atout de la bannière"
1089
 
1090
+ #: dashboard/publisher/adverts-edit.php:159
1091
  msgid "WordPress media:"
1092
  msgstr "WordPress médias:"
1093
 
1094
+ #: dashboard/publisher/adverts-edit.php:159
1095
  msgid "Select Banner"
1096
  msgstr "Choisir l'image"
1097
 
1098
+ #: dashboard/publisher/adverts-edit.php:161
1099
  msgid "- OR -"
1100
  msgstr "- OU -"
1101
 
1102
+ #: dashboard/publisher/adverts-edit.php:162
1103
  msgid "Banner folder:"
1104
  msgstr "Dossier Bannière:"
1105
 
1106
+ #: dashboard/publisher/adverts-edit.php:163
1107
  msgid "No image selected"
1108
  msgstr "Aucune image sélectionnée"
1109
 
1110
+ #: dashboard/publisher/adverts-edit.php:173
1111
  msgid "Use %asset% in the adcode instead of the file path."
1112
  msgstr "Utilisez % actif dans l’adcode au lieu du chemin de fichier."
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:173
1115
  msgid ""
1116
  "Use either the text field or the dropdown. If the textfield has content that "
1117
  "field has priority."
1119
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1120
  "valeur, ce champ a la priorité."
1121
 
1122
+ #: dashboard/publisher/adverts-edit.php:180
1123
+ msgid "Count clicks and impressions."
1124
+ msgstr "Comptez les clics et les impressions."
1125
 
1126
+ #: dashboard/publisher/adverts-edit.php:181
1127
  msgid ""
1128
+ "Click counting does not work for Javascript/html5 adverts such as those "
1129
+ "provided by Google AdSense/DFP/DoubleClick."
 
1130
  msgstr ""
1131
+ "Le comptage des clics ne fonctionne pas pour les publicités Javascript/html5 "
1132
+ "telles que celles fournies par Google AdSense/DFP/DoubleClick."
 
1133
 
1134
+ #: dashboard/publisher/adverts-edit.php:189
1135
  msgid "Enabled, this ad will be visible"
1136
  msgstr "Activée, cette annonce sera visible"
1137
 
1138
+ #: dashboard/publisher/adverts-edit.php:190
1139
  msgid "Disabled, do not show this advert anywhere"
1140
  msgstr "Non, cette annonce ne sera pas utilisée"
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:196
1143
  msgid ""
1144
  "Target your audience with Geo Targeting and easily select which devices and "
1145
  "mobile operating systems the advert should show on with AdRotate Pro!"
1148
  "appareils et les systèmes d’exploitation mobiles que l’annonce devrait "
1149
  "afficher avec AdRotate Pro !"
1150
 
1151
+ #: dashboard/publisher/adverts-edit.php:196
1152
+ #: dashboard/publisher/adverts-edit.php:234
1153
  #: dashboard/publisher/groups-edit.php:227
 
 
 
1154
  msgid "Upgrade now"
1155
  msgstr "Mettre à jour maintenant"
1156
 
1157
+ #: dashboard/publisher/adverts-edit.php:198
1158
  msgid "Schedule your advert"
1159
  msgstr "Planifiez votre annonce"
1160
 
1161
+ #: dashboard/publisher/adverts-edit.php:199
1162
  msgid ""
1163
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1164
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1169
  "après midi, ajoutez 12 heures (par exemple, 2PM est égal à 14:00 et 6AM est "
1170
  "6:00)."
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:203
1173
  msgid "Start date"
1174
  msgstr "Date de début"
1175
 
1176
+ #: dashboard/publisher/adverts-edit.php:207
1177
  msgid "End date"
1178
  msgstr "Date de fin"
1179
 
1180
+ #: dashboard/publisher/adverts-edit.php:213
1181
  msgid "Start time"
1182
  msgstr "Heure de début"
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:218
1185
  msgid "End time"
1186
  msgstr "Heure de fin"
1187
 
1188
+ #: dashboard/publisher/adverts-edit.php:226
1189
  msgid "Maximum Clicks"
1190
  msgstr "Clics maximum"
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:227
1193
+ #: dashboard/publisher/adverts-edit.php:229
1194
  msgid "Leave empty or 0 to skip this."
1195
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:228
1198
  msgid "Maximum Impressions"
1199
  msgstr "Impressions maximales"
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:234
1202
  msgid ""
1203
  "Plan ahead and create multiple and more advanced schedules for each advert "
1204
  "with AdRotate Pro."
1206
  "Planifiez à l’avance et créez des horaires multiples et plus avancés pour "
1207
  "chaque publicité avec AdRotate Pro."
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:236
1210
  #: dashboard/publisher/groups-edit.php:157
1211
  #: dashboard/publisher/groups-edit.php:302
1212
  msgid "Usage"
1213
  msgstr "Usage"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:240
1216
  #: dashboard/publisher/groups-edit.php:161
1217
  #: dashboard/publisher/groups-edit.php:306
1218
  msgid "Widget"
1219
  msgstr "Widget"
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:241
1222
  msgid ""
1223
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1224
  "and select the advert or the group the advert is in."
1226
  "Faites glisser le widget AdRotate à la barre latérale où vous voulez placer "
1227
  "l’annonce, puis sélectionnez l’annonce ou le groupe l’annonce est en."
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:244
1230
  #: dashboard/publisher/groups-edit.php:165
1231
  #: dashboard/publisher/groups-edit.php:310
1232
  msgid "In a post or page"
1233
  msgstr "Dans un message ou une page"
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:246
1236
  #: dashboard/publisher/groups-edit.php:167
1237
  #: dashboard/publisher/groups-edit.php:312
1238
  msgid "Directly in a theme"
1239
  msgstr "Directement dans un thème"
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:253
1242
+ #: dashboard/publisher/adverts-edit.php:296
1243
  msgid "Save Advert"
1244
  msgstr "Sauvegarder l’annonce"
1245
 
1246
+ #: dashboard/publisher/adverts-edit.php:254
1247
+ #: dashboard/publisher/adverts-edit.php:297
1248
  #: dashboard/publisher/adverts-generator.php:148
1249
  #: dashboard/publisher/groups-edit.php:175
1250
  #: dashboard/publisher/groups-edit.php:320
1252
  msgid "Cancel"
1253
  msgstr "Annuller"
1254
 
1255
+ #: dashboard/publisher/adverts-edit.php:258
1256
  msgid "Select Groups"
1257
  msgstr "Choisir groupes"
1258
 
1259
+ #: dashboard/publisher/adverts-edit.php:265
1260
+ #: dashboard/publisher/groups-main.php:34
1261
+ #: dashboard/publisher/schedules-main.php:34
1262
+ #: dashboard/publisher/statistics-main.php:35
1263
+ msgid "Adverts"
1264
+ msgstr "Annonces"
1265
+
1266
+ #: dashboard/publisher/adverts-edit.php:274
1267
  #: dashboard/publisher/groups-main.php:60
1268
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1269
  msgid "Default"
1270
  msgstr "Par défaut"
1271
 
1272
+ #: dashboard/publisher/adverts-edit.php:275
1273
  #: dashboard/publisher/groups-main.php:61
1274
  msgid "Dynamic"
1275
  msgstr "Dynamique"
1276
 
1277
+ #: dashboard/publisher/adverts-edit.php:275
1278
  #: dashboard/publisher/groups-main.php:61
1279
  msgid "second rotation"
1280
  msgstr "deuxième rotation"
1281
 
1282
+ #: dashboard/publisher/adverts-edit.php:276
1283
  #: dashboard/publisher/groups-main.php:62
1284
  msgid "Block"
1285
  msgstr "Bloc"
1286
 
1287
+ #: dashboard/publisher/adverts-edit.php:276
1288
  #: dashboard/publisher/groups-main.php:62
1289
  msgid "grid"
1290
  msgstr "grille"
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:277
1293
  #: dashboard/publisher/groups-edit.php:234
1294
  #: dashboard/publisher/groups-main.php:63
1295
  msgid "Post Injection"
1296
  msgstr "Injection dans l'article"
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:278
1299
  msgid "Geolocation"
1300
  msgstr "Géolocalisation"
1301
 
1302
+ #: dashboard/publisher/adverts-edit.php:285
1303
  #: dashboard/publisher/groups-edit.php:74
1304
  #: dashboard/publisher/groups-main.php:70
1305
  msgid "Mode"
1306
  msgstr "Mode"
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:302
1309
  #: dashboard/publisher/adverts-generator.php:131
1310
  msgid "Portability"
1311
  msgstr "Portabilité"
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:303
1314
  msgid ""
1315
  "This long code is your advert. It includes all settings from above except "
1316
  "the schedule and group selection. You can import this hash into another "
1327
  "le tout. Vous pouvez coller le hachage dans le champ 'Advert Hash' dans le "
1328
  "générateur d’annonces d’une autre configuration AdRotate."
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:307
1331
  #: dashboard/publisher/adverts-generator.php:137
1332
  msgid "Advert hash"
1333
  msgstr "Annonce hachage"
1731
  msgid "Get access to all features in AdRotate Pro."
1732
  msgstr "Accédez à toutes les fonctionnalités d’AdRotate Pro."
1733
 
1734
+ #: dashboard/publisher/groups-edit.php:155
1735
+ msgid "Upgrade today"
1736
+ msgstr "Mettez à niveau dès aujourd'hui"
1737
+
1738
  #: dashboard/publisher/groups-edit.php:162
1739
  #: dashboard/publisher/groups-edit.php:307
1740
  msgid ""
2197
  "Toutes les statistiques sont indicatives. Elles ne reflètent pas "
2198
  "nécessairement les résultats comptés par d'autres partis."
2199
 
 
 
 
 
 
 
2200
  #: dashboard/publisher/statistics-group.php:46
2201
  msgid "Statistics for group"
2202
  msgstr "Statistiques pour le groupe"
2205
  msgid "Adverts counting stats"
2206
  msgstr "Annonces statistiques de comptage"
2207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2208
  #: dashboard/settings/general.php:17
2209
  msgid "General Settings"
2210
  msgstr "Réglages généraux"
2218
  msgstr "Certaines options ne sont disponibles que dans AdRotate Pro!"
2219
 
2220
  #: dashboard/settings/general.php:21
2221
+ msgid "Duplicate adverts"
2222
+ msgstr "Publicités en double"
2223
 
2224
  #: dashboard/settings/general.php:22
2225
  msgid ""
2226
+ "Try and prevent adverts in groups that are in Default or Block mode from "
2227
+ "showing multiple times on the same page load."
2228
+ msgstr ""
2229
+ "Essayez d’empêcher les publicités dans les groupes en mode Par défaut ou "
2230
+ "Bloc de s’afficher plusieurs fois sur le même chargement de page."
2231
+
2232
+ #: dashboard/settings/general.php:23
2233
+ msgid ""
2234
+ "If you still notice double adverts from groups placed on a page, start with "
2235
+ "carefully looking at your setup to make sure you did not cause this yourself."
2236
  msgstr ""
2237
+ "Si vous remarquez toujours des publicités doubles de groupes placés sur une "
2238
+ "page, commencez par examiner attentivement votre configuration pour vous "
2239
+ "assurer que vous n’en êtes pas la cause vous-même."
2240
 
2241
+ #: dashboard/settings/general.php:23
2242
+ msgid "On some servers $_SESSION is disabled."
2243
+ msgstr "Sur certains serveurs, $_SESSION est désactivé."
2244
 
2245
+ #: dashboard/settings/general.php:23
2246
  msgid ""
2247
+ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. However, "
2248
+ "most people will not need this extra plugin!"
2249
  msgstr ""
2250
+ "Un plugin appelé « WP Session Manager » par Eric Mann peut résoudre ce "
2251
+ "problème. Cependant, la plupart des gens n’auront pas besoin de ce plugin "
2252
+ "supplémentaire!"
2253
 
2254
+ #: dashboard/settings/general.php:26
2255
+ msgid "Shortcode in widgets"
2256
+ msgstr "Code court dans les widgets"
2257
+
2258
+ #: dashboard/settings/general.php:27
2259
+ msgid ""
2260
+ "Try and activate shortcodes in text widgets if your theme does not add "
2261
+ "support for it by itself. (This does not always work!)"
2262
+ msgstr ""
2263
+ "Essayez d’activer les shortcodes dans les widgets de texte si votre thème "
2264
+ "n’ajoute pas de support pour lui-même. (Cela ne fonctionne pas toujours!)"
2265
 
2266
  #: dashboard/settings/general.php:30
2267
+ msgid "Advert live preview"
2268
+ msgstr "Aperçu en direct de la publicité"
2269
+
2270
+ #: dashboard/settings/general.php:31
2271
+ msgid ""
2272
+ "Disable live previews for adverts if you have faulty adverts that overflow "
2273
+ "their designated area while creating/editing adverts."
2274
+ msgstr ""
2275
+ "Désactivez les aperçus en direct pour les publicités si vous avez des "
2276
+ "publicités défectueuses qui débordent de leur zone désignée lors de la "
2277
+ "création / modification d’annonces."
2278
+
2279
+ #: dashboard/settings/general.php:34
2280
+ msgid "Dynamic mode on mobile"
2281
+ msgstr "Mode dynamique sur mobile"
2282
+
2283
+ #: dashboard/settings/general.php:35
2284
  msgid ""
2285
+ "Disable dynamic mode in groups for mobile devices if you notice skipping or "
2286
+ "jumpy content."
2287
  msgstr ""
2288
+ "Désactivez le mode dynamique dans les groupes pour les appareils mobiles si "
2289
+ "vous remarquez un saut ou un contenu sautant."
2290
 
2291
+ #: dashboard/settings/general.php:38
2292
  msgid "Load jQuery"
2293
  msgstr "Utilisez jQuery"
2294
 
2295
+ #: dashboard/settings/general.php:39
2296
  msgid ""
2297
+ "Load jQuery if your theme does not load it already. jQuery is required for "
2298
+ "dynamic groups, statistics and some other features."
2299
  msgstr ""
2300
+ "Chargez jQuery si votre thème ne le charge pas déjà. jQuery est requis pour "
2301
+ "les groupes dynamiques, les statistiques et d’autres fonctionnalités."
 
2302
 
2303
+ #: dashboard/settings/general.php:42
2304
  msgid "Load scripts in footer?"
2305
  msgstr "Charger Script dans Footer?"
2306
 
2307
+ #: dashboard/settings/general.php:43
2308
+ msgid "Load all AdRotate Javascripts in the footer of your site."
 
 
2309
  msgstr ""
2310
+ "Chargez tous les Javascripts AdRotate dans le pied de page de votre site."
 
2311
 
2312
+ #: dashboard/settings/general.php:46
2313
  msgid "Adblock disguise"
2314
  msgstr "Déguisement de Adblock"
2315
 
2316
+ #: dashboard/settings/general.php:48
2317
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2318
  msgstr ""
2319
  "Laisser vide pour désactiver. Utilisez uniquement des lettres lowercaps. Par "
2320
  "exemple :"
2321
 
2322
+ #: dashboard/settings/general.php:49
2323
  msgid ""
2324
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2325
  msgstr ""
2326
  "Essayez d'éviter les plugins de Adblock dans la plupart des navigateurs "
2327
  "modernes en utilisant shortcodes."
2328
 
2329
+ #: dashboard/settings/general.php:49
2330
  msgid ""
2331
  "To also apply this feature to widgets, use a text widget with a shortcode "
2332
  "instead of the AdRotate widget."
2334
  "Pour également appliquer cette fonctionnalité aux widgets, utiliser un "
2335
  "widget de texte avec un shortcode plutôt que le widget AdRotate."
2336
 
2337
+ #: dashboard/settings/general.php:49
2338
  msgid ""
2339
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2340
  "feature will have little effect!"
2342
  "Évitez l’utilisation de mots clés ou de noms de fichiers évidents dans vos "
2343
  "annonces ou cette fonctionnalité aura peu d’effet!"
2344
 
2345
+ #: dashboard/settings/general.php:54
2346
  msgid "Banner Folder"
2347
  msgstr "Dossier Bannière"
2348
 
2349
+ #: dashboard/settings/general.php:55
2350
  msgid "Set a folder where your banner images will be stored."
2351
  msgstr "Réglez un dossier où vos images de bannière seront stockées."
2352
 
2353
+ #: dashboard/settings/general.php:58
2354
  msgid "Folder name"
2355
  msgstr "Nom du dossier"
2356
 
2357
+ #: dashboard/settings/general.php:60
2358
  msgid "(Default: banners)."
2359
  msgstr "(Par défaut : bannières)."
2360
 
2361
+ #: dashboard/settings/general.php:61
2362
  msgid ""
2363
  "To try and trick ad blockers you could set the folder to something crazy "
2364
  "like:"
2366
  "Pour tenter de tromper les bloqueurs de annonce, vous pouvez définir le "
2367
  "dossier avec comme quelque chose de fou :"
2368
 
2369
+ #: dashboard/settings/general.php:62
2370
  msgid ""
2371
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2372
  "will show errors when the folder is missing."
2374
  "Ce dossier ne sera pas automatiquement créé s’il n’existe pas. AdRotate "
2375
  "affichera des erreurs lorsque le dossier est manquant."
2376
 
2377
+ #: dashboard/settings/general.php:67
2378
  msgid "Bot filter"
2379
  msgstr "Filtre de robots"
2380
 
2381
+ #: dashboard/settings/general.php:68
2382
  msgid "The bot filter is used for the AdRotate stats tracker."
2383
  msgstr "Le filtre bot est utilisé pour le tracker AdRotate stats."
2384
 
2385
+ #: dashboard/settings/general.php:71
2386
  msgid "User-Agent Filter"
2387
  msgstr "Filtrage par User-Agent"
2388
 
2389
+ #: dashboard/settings/general.php:74
2390
  msgid ""
2391
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2392
  msgstr ""
2393
  "Liste de mots-clés séparés par une virgule. Filtrer les robots/robots/agents-"
2394
  "utilisateurs."
2395
 
2396
+ #: dashboard/settings/general.php:75
2397
  msgid ""
2398
  "Keep in mind that this might give false positives. The word 'fire' also "
2399
  "matches 'firefox', but not vice-versa. So be careful!"
2401
  "Gardez à l’esprit que cela pourrait donner de faux positifs. Le mot «feu» "
2402
  "correspond également à «firefox», mais pas vice-versa. Alors soyez prudent!"
2403
 
2404
+ #: dashboard/settings/general.php:76
2405
  msgid ""
2406
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2407
  "characters are stripped out."
2409
  "Seuls les mots avec des caractères alphanumériques et [ - ] sont autorisés. "
2410
  "Tous les autres personnages sont dépouillés."
2411
 
2412
+ #: dashboard/settings/general.php:77
2413
  msgid ""
2414
  "Additionally to the list specified here, empty User-Agents are blocked as "
2415
  "well."
2417
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2418
  "bloqués."
2419
 
2420
+ #: dashboard/settings/general.php:77
2421
  msgid "Learn more about"
2422
  msgstr "En savoir plus sur"
2423
 
2424
+ #: dashboard/settings/general.php:77
2425
  msgid "user-agents"
2426
  msgstr "user-agents"
2427
 
2428
+ #: dashboard/settings/general.php:83 dashboard/settings/maintenance.php:107
2429
+ #: dashboard/settings/misc.php:47 dashboard/settings/notifications.php:72
2430
+ #: dashboard/settings/roles.php:55 dashboard/settings/statistics.php:85
2431
+ msgid "Update Options"
2432
+ msgstr "Mettre à jour les options"
2433
+
2434
  #: dashboard/settings/geotargeting.php:17
2435
  msgid "Geo Targeting - Available in AdRotate Pro"
2436
  msgstr "Geo Targeting - Disponible en AdRotate Pro"
2545
  "lente, insensible et lente."
2546
 
2547
  #: dashboard/settings/maintenance.php:22
2548
+ msgid "Check for errors"
2549
+ msgstr "Rechercher des erreurs"
2550
 
2551
  #: dashboard/settings/maintenance.php:22
2552
  msgid "You are about to check all adverts for errors."
2569
  msgstr "Nettoyer la base de données et fichiers"
2570
 
2571
  #: dashboard/settings/maintenance.php:30
2572
+ msgid "Run Clean-up"
2573
+ msgstr "Exécuter le nettoyage"
2574
 
2575
  #: dashboard/settings/maintenance.php:30
2576
  msgid "You are about to do maintenance on your setup of AdRotate."
3114
 
3115
  #: dashboard/settings/statistics.php:48
3116
  msgid ""
3117
+ "The settings below are for the local tracker and have no effect when using "
3118
+ "Google Analytics or Matomo."
3119
  msgstr ""
3120
+ "Les paramètres ci-dessous sont pour le tracker local et n’ont aucun effet "
3121
  "lors de l’utilisation de Google Analytics ou Matomo."
3122
 
3123
  #: dashboard/settings/statistics.php:51
3124
+ msgid "Admin stats"
3125
+ msgstr "Statistiques d’administration"
3126
+
3127
+ #: dashboard/settings/statistics.php:53
3128
+ msgid "Track statistics from admin users."
3129
+ msgstr "Suivez les statistiques des utilisateurs administrateurs."
3130
+
3131
+ #: dashboard/settings/statistics.php:57
3132
  msgid "Logged in impressions"
3133
  msgstr "Impressions enregistrées"
3134
 
3135
+ #: dashboard/settings/statistics.php:59
3136
  msgid "Track impressions from logged in users."
3137
  msgstr "Suivre les impressions des utilisateurs connectés."
3138
 
3139
+ #: dashboard/settings/statistics.php:63
3140
  msgid "Logged in clicks"
3141
  msgstr "Connecté en clics"
3142
 
3143
+ #: dashboard/settings/statistics.php:65
3144
  msgid "Track clicks from logged in users."
3145
  msgstr "Suivi des clics des utilisateurs connectés."
3146
 
3147
+ #: dashboard/settings/statistics.php:69
3148
  msgid "Impression timer"
3149
  msgstr "Minuterie d’impression"
3150
 
3151
+ #: dashboard/settings/statistics.php:71 dashboard/settings/statistics.php:78
3152
  msgid "Seconds."
3153
  msgstr "Secondes."
3154
 
3155
+ #: dashboard/settings/statistics.php:72
3156
  msgid "Default: 60."
3157
  msgstr "Par défaut: 60."
3158
 
3159
+ #: dashboard/settings/statistics.php:72
3160
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3161
  msgstr ""
3162
  "Ce nombre ne peut pas être vide, être inférieure à 10 ou dépasser 3 600 (1 "
3163
  "heure)."
3164
 
3165
+ #: dashboard/settings/statistics.php:76
3166
  msgid "Click timer"
3167
  msgstr "Cliquez sur la minuterie"
3168
 
3169
+ #: dashboard/settings/statistics.php:79
3170
  msgid "Default: 86400."
3171
  msgstr "Par défaut : 86400."
3172
 
3173
+ #: dashboard/settings/statistics.php:79
3174
  msgid ""
3175
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3176
  msgstr ""
3243
  msgid "Premium Support is available in AdRotate Pro!"
3244
  msgstr "Premium Support est disponible dans AdRotate Pro!"
3245
 
3246
+ #~ msgid "Check all adverts for configuration errors"
3247
+ #~ msgstr "Vérifiez toutes les annonces pour les erreurs de configuration"
3248
+
3249
+ #~ msgid "Clean-up database and old files"
3250
+ #~ msgstr "Base de données de nettoyage et fichiers anciens"
3251
+
3252
+ #~ msgid "More features with AdRotate Pro"
3253
+ #~ msgstr "Plus de fonctionnalités avec AdRotate Pro"
3254
+
3255
+ #~ msgid ""
3256
+ #~ "Many users only think to review AdRotate when something goes wrong while "
3257
+ #~ "thousands of people happily use AdRotate."
3258
+ #~ msgstr ""
3259
+ #~ "Beaucoup d’utilisateurs pensent seulement à revoir AdRotate quand quelque "
3260
+ #~ "chose va mal tandis que des milliers de personnes utilisent heureusement "
3261
+ #~ "AdRotate."
3262
+
3263
+ #~ msgid "If you find AdRotate useful please leave your"
3264
+ #~ msgstr "Si vous trouvez AdRotate utile s’il vous plaît laissez votre"
3265
+
3266
+ #~ msgid "rating"
3267
+ #~ msgstr "évaluation"
3268
+
3269
+ #~ msgid "on WordPress.org to help AdRotate grow in a positive way"
3270
+ #~ msgstr "sur WordPress.org pour aider AdRotate à s'améliorer"
3271
+
3272
+ #~ msgid ""
3273
+ #~ "Get more advanced features such as Geo Targeting, scheduling and much "
3274
+ #~ "more with AdRotate Pro."
3275
+ #~ msgstr ""
3276
+ #~ "Obtenez des fonctionnalités plus avancées telles que le ciblage "
3277
+ #~ "géographique, la planification et bien plus encore avec AdRotate Pro."
3278
+
3279
+ #~ msgid "Get access to premium support and free updates for one year!"
3280
+ #~ msgstr ""
3281
+ #~ "Accédez à un support premium et à des mises à jour gratuites pendant un "
3282
+ #~ "an!"
3283
+
3284
+ #~ msgid "General Info"
3285
+ #~ msgstr "Informations générales"
3286
+
3287
+ #~ msgid "Advertisers"
3288
+ #~ msgstr "Annonceurs"
3289
+
3290
+ #~ msgid "At a Glance"
3291
+ #~ msgstr "D’un coup d’œil"
3292
+
3293
+ #~ msgid "Your setup"
3294
+ #~ msgstr "Votre configuration"
3295
+
3296
+ #~ msgid "Adverts that need you"
3297
+ #~ msgstr "Annonces qui ont besoin de votre attention"
3298
+
3299
+ #~ msgid "(Almost) Expired"
3300
+ #~ msgstr "(presque) expiré"
3301
+
3302
+ #~ msgid "Groups"
3303
+ #~ msgstr "Groupes"
3304
+
3305
+ #~ msgid "Have errors"
3306
+ #~ msgstr "Il y a des erreurs"
3307
+
3308
+ #~ msgid "Use on TWO WordPress installations."
3309
+ #~ msgstr "Utilisation sur DEUX installations WordPress."
3310
+
3311
+ #~ msgid "Developer License"
3312
+ #~ msgstr "Licence de Developpeur"
3313
+
3314
+ #~ msgid "Use on up to a HUNDRED WordPress installations and/or networks."
3315
+ #~ msgstr ""
3316
+ #~ "Utiliser sur jusqu’à une installation et/ou réseaux WORDPress de HUNDRED."
3317
+
3318
+ #~ msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
3319
+ #~ msgstr ""
3320
+ #~ "Le suivi est activé mais aucun lien/balise valide a été trouvé dans "
3321
+ #~ "l’adcode !"
3322
+
3323
+ #~ msgid "Enable click and impression tracking for this advert."
3324
+ #~ msgstr "Activez le suivi des clics et des impressions pour cette annonce."
3325
+
3326
+ #~ msgid ""
3327
+ #~ "Note: Clicktracking does not work for Javascript adverts such as those "
3328
+ #~ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
3329
+ #~ "always supported."
3330
+ #~ msgstr ""
3331
+ #~ "Remarque : Clicktracking ne fonctionne pas pour les annonces de "
3332
+ #~ "Javascript tels que ceux fournis par Google AdSense/DFP/DoubleClick. "
3333
+ #~ "HTML5/Flash annonces ne sont pas toujours pris en charge."
3334
+
3335
+ #~ msgid "Advertisers - Available in AdRotate Pro"
3336
+ #~ msgstr "Annonceurs - Disponible en AdRotate Pro"
3337
+
3338
+ #~ msgid "Enable advertisers so they can review and manage their own ads."
3339
+ #~ msgstr ""
3340
+ #~ "Permettre aux annonceurs d'examiner et de gérer leurs propres annonces."
3341
+
3342
+ #~ msgid "Enable Advertisers"
3343
+ #~ msgstr "Permettre aux annonceurs"
3344
+
3345
+ #~ msgid "Allow adverts to be coupled to users (Advertisers)."
3346
+ #~ msgstr ""
3347
+ #~ "Autoriser les annonces à être couplées aux utilisateurs (annonceurs)."
3348
+
3349
+ #~ msgid "Edit/update adverts"
3350
+ #~ msgstr "Modifier / Mise à jour des annonces"
3351
+
3352
+ #~ msgid "Allow advertisers to add new or edit their adverts."
3353
+ #~ msgstr "Permettent aux annonceurs d'ajouter ou modifier leurs annonces."
3354
+
3355
+ #~ msgid "Mobile adverts"
3356
+ #~ msgstr "Annonces mobiles"
3357
+
3358
+ #~ msgid "Allow advertisers to specify on which devices their ads will show."
3359
+ #~ msgstr ""
3360
+ #~ "Permettre aux annonceurs de spécifier sur quels appareils leurs annonces "
3361
+ #~ "s’afficheront."
3362
+
3363
+ #~ msgid ""
3364
+ #~ "Allow advertisers to specify where their ads will show. Geo Targeting has "
3365
+ #~ "to be enabled, too."
3366
+ #~ msgstr ""
3367
+ #~ "Permettre aux annonceurs de spécifier l’endroit où leurs annonces seront "
3368
+ #~ "diffusées. Le ciblage géographique doit également être activé."
3369
+
3370
+ #~ msgid "Advertiser role"
3371
+ #~ msgstr "Annonceur"
3372
+
3373
+ #~ msgid "Create a seperate user role for your advertisers."
3374
+ #~ msgstr "Créer un rôle d’utilisateur séparé pour vos annonceurs."
3375
+
3376
+ #~ msgid ""
3377
+ #~ "Don't forget to give these users access to their advertiser dashboard via "
3378
+ #~ "the Roles tab."
3379
+ #~ msgstr ""
3380
+ #~ "N’oubliez pas de donner à ces utilisateurs l’accès à leur tableau de bord "
3381
+ #~ "de l’annonceur par l’intermédiaire de l’onglet rôles."
3382
+
3383
+ #~ msgid ""
3384
+ #~ "Enable this option to if your theme does not support shortcodes in the "
3385
+ #~ "WordPress text widget."
3386
+ #~ msgstr ""
3387
+ #~ "Activez cette option si votre thème ne prend pas en charge les codes "
3388
+ #~ "courts dans le widget texte WordPress."
3389
+
3390
+ #~ msgid "Disable dynamic mode"
3391
+ #~ msgstr "Désactiver le mode dynamique"
3392
+
3393
  #~ msgid "Get started today"
3394
  #~ msgstr "Commencez dès aujourd'hui"
3395
 
3709
  #~ msgid "News & Updates"
3710
  #~ msgstr "Actualités"
3711
 
 
 
 
3712
  #~ msgid ""
3713
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3714
  #~ "Chances are your question has already been asked and answered!"
5139
  #~ msgid "Select Adverts"
5140
  #~ msgstr "Sélectionner les annonces"
5141
 
 
 
 
 
5142
  #~ msgid "Period"
5143
  #~ msgstr "Période"
5144
 
5151
  #~ msgid "from"
5152
  #~ msgstr "de"
5153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5154
  #, fuzzy
5155
  #~ msgid "Lookups remaining"
5156
  #~ msgstr "Les examens restants"
5276
  #~ "Désactiver temporairement le chiffrement sur l’url de redirection. "
5277
  #~ "AdRotate Internal Tracker uniquement."
5278
 
 
 
 
 
5279
  #~ msgid "Send email notifications"
5280
  #~ msgstr "Envoyer des notifications par e-mail"
5281
 
5831
  #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
5832
  #~ "Vous obtiendraient une solution (en général) dans la journée."
5833
 
 
 
 
 
 
 
 
 
5834
  #, fuzzy
5835
  #~ msgid "Enable click tracking for this advert."
5836
  #~ msgstr "Activer le suivi des clicks pour cette publicité."
5923
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
5924
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
5925
 
 
 
 
 
 
 
 
 
5926
  #, fuzzy
5927
  #~ msgid ""
5928
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
language/adrotate-it_IT.mo CHANGED
Binary file
language/adrotate-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-05-19 12:22-0500\n"
6
- "PO-Revision-Date: 2021-05-19 12:23-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
9
  "Language: it\n"
@@ -17,31 +17,31 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:784
21
  msgid "Advert saved"
22
  msgstr "Annuncio salvato"
23
 
24
- #: adrotate-functions.php:788
25
  msgid "Group saved"
26
  msgstr "Gruppo salvato"
27
 
28
- #: adrotate-functions.php:792
29
  msgid "Banner image saved"
30
  msgstr "Immagine banner salvata"
31
 
32
- #: adrotate-functions.php:796
33
  msgid "Ad(s) deleted"
34
  msgstr "Annunci eliminati"
35
 
36
- #: adrotate-functions.php:800
37
  msgid "Group deleted"
38
  msgstr "Gruppo eliminato"
39
 
40
- #: adrotate-functions.php:804
41
  msgid "Asset(s) deleted"
42
  msgstr "Asset eliminati"
43
 
44
- #: adrotate-functions.php:808
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
@@ -49,31 +49,31 @@ msgstr ""
49
  "Si è verificato un problema durante l'eliminazione del file o della "
50
  "cartella. Assicurati che le tue autorizzazioni siano in ordine."
51
 
52
- #: adrotate-functions.php:812
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Reimpostazione delle statistiche degli annunci"
55
 
56
- #: adrotate-functions.php:816
57
  msgid "Advert(s) renewed"
58
  msgstr "Annunci rinnovati"
59
 
60
- #: adrotate-functions.php:820
61
  msgid "Advert(s) deactivated"
62
  msgstr "Annunci disattivati"
63
 
64
- #: adrotate-functions.php:824
65
  msgid "Advert(s) activated"
66
  msgstr "Annunci attivati"
67
 
68
- #: adrotate-functions.php:828
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Gruppo che include le inserzioni in esso eliminate"
71
 
72
- #: adrotate-functions.php:832
73
  msgid "Export created"
74
  msgstr "Esportazione creata"
75
 
76
- #: adrotate-functions.php:836
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
@@ -82,31 +82,31 @@ msgstr ""
82
  "inserzione qui sotto. Non dimenticare di controllare tutte le impostazioni e "
83
  "pianificare l'annuncio."
84
 
85
- #: adrotate-functions.php:841
86
  msgid "Settings saved"
87
  msgstr "Impostazioni salvate"
88
 
89
- #: adrotate-functions.php:845
90
  msgid "Database optimized"
91
  msgstr "Database ottimizzato"
92
 
93
- #: adrotate-functions.php:849
94
  msgid "Database repaired"
95
  msgstr "Database riparato"
96
 
97
- #: adrotate-functions.php:853
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Le inserzioni valutate e gli stati sono stati corretti ove richiesto"
100
 
101
- #: adrotate-functions.php:857
102
  msgid "Cleanup complete"
103
  msgstr "Pulitura completata"
104
 
105
- #: adrotate-functions.php:862
106
  msgid "Action prohibited"
107
  msgstr "Azione vietata"
108
 
109
- #: adrotate-functions.php:866
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
@@ -114,23 +114,23 @@ msgstr ""
114
  "L'annuncio è stato salvato ma ha un problema che potrebbe impedirgli di "
115
  "funzionare correttamente. Rivedi la pubblicità colorata."
116
 
117
- #: adrotate-functions.php:870
118
  msgid "No data found in selected time period"
119
  msgstr "Nessun dato trovato nel periodo di tempo selezionato"
120
 
121
- #: adrotate-functions.php:874
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr "Il database può essere ottimizzato o pulito solo una volta ogni ora"
124
 
125
- #: adrotate-functions.php:878
126
  msgid "Form can not be (partially) empty!"
127
  msgstr "Modulo non può essere (parzialmente) vuoto!"
128
 
129
- #: adrotate-functions.php:882
130
  msgid "No adverts found."
131
  msgstr "Nessuna pubblicità trovata."
132
 
133
- #: adrotate-functions.php:886
134
  msgid ""
135
  "The advert hash is not usable or is missing required data. Please copy the "
136
  "hash correctly and try again."
@@ -138,7 +138,7 @@ msgstr ""
138
  "È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
139
  "nella cache dei frammenti non è abilitata."
140
 
141
- #: adrotate-functions.php:890
142
  msgid ""
143
  "The advert hash can not be used on the same site as it originated from or is "
144
  "not a valid hash for importing."
@@ -146,7 +146,7 @@ msgstr ""
146
  "L'hash dell'annuncio non può essere utilizzato sullo stesso sito da cui ha "
147
  "avuto origine o non è un hash valido per l'importazione."
148
 
149
- #: adrotate-functions.php:894
150
  msgid "Unexpected error"
151
  msgstr "Errore inatteso"
152
 
@@ -319,11 +319,11 @@ msgstr ""
319
  msgid "Installation instructions"
320
  msgstr "Istruzioni per l'installazione"
321
 
322
- #: adrotate-output.php:730
323
  msgid "your attention:"
324
  msgstr "la vostra attenzione:"
325
 
326
- #: adrotate-output.php:761
327
  msgid ""
328
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
329
  "menu. If you need help getting started take a look at the"
@@ -331,67 +331,124 @@ msgstr ""
331
  "Grazie per avere scelto AdRotate. Tutto ciò che concerne AdRotate si trova "
332
  "in questo menù. Se hai bisogno di aiuto per cominciare da uno sguardo a"
333
 
334
- #: adrotate-output.php:761
335
  msgid "manuals"
336
  msgstr "manuali"
337
 
338
- #: adrotate-output.php:761
339
  msgid "and"
340
  msgstr "e"
341
 
342
- #: adrotate-output.php:761
343
  msgid "forums"
344
  msgstr "forum"
345
 
346
- #: adrotate-output.php:841
347
  msgid "Need help fast? Or do you have a question?"
348
  msgstr "Hai bisogno di aiuto in fretta? O hai una domanda?"
349
 
350
- #: adrotate-output.php:842
351
  msgid "Help AdRotate Grow"
352
  msgstr "Aiuta AdRotate a crescere"
353
 
354
- #: adrotate-output.php:843
355
- msgid "More features with AdRotate Pro"
356
  msgstr "Ottieni più funzionalità con AdRotate Pro"
357
 
358
- #: adrotate-output.php:850
359
  msgid ""
360
- "Many users only think to review AdRotate when something goes wrong while "
361
- "thousands of people happily use AdRotate."
 
362
  msgstr ""
363
- "Molti utenti pensano solo di rivedere AdRotate quando qualcosa va storto, "
364
- "mentre migliaia di persone usano felicemente AdRotate."
 
 
365
 
366
- #: adrotate-output.php:850
367
- msgid "If you find AdRotate useful please leave your"
368
- msgstr "Se ritieni utile AdRotate, lascia il tuo"
369
 
370
- #: adrotate-output.php:850
371
- msgid "rating"
372
- msgstr "valutazione"
373
 
374
- #: adrotate-output.php:850
375
- msgid "on WordPress.org to help AdRotate grow in a positive way"
376
- msgstr "su WordPress.org per aiutare AdRotate a crescere in modo positivo"
377
-
378
- #: adrotate-output.php:851
379
  msgid ""
380
- "Get more advanced features such as Geo Targeting, scheduling and much more "
381
- "with AdRotate Pro."
 
 
382
  msgstr ""
383
- "Ottieni funzionalità più avanzate come Geo Targeting, pianificazione e molto "
384
- "altro con AdRotate Pro."
 
 
385
 
386
- #: adrotate-output.php:851
387
- msgid "Get access to premium support and free updates for one year!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
  msgstr ""
389
- "Ottieni l'accesso al supporto premium e agli aggiornamenti gratuiti per un "
390
- "anno!"
 
 
391
 
392
- #: adrotate-output.php:851 dashboard/publisher/groups-edit.php:155
393
- msgid "Upgrade today"
394
- msgstr "Aggiorna oggi stesso"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
395
 
396
  #: adrotate-statistics.php:155
397
  msgid "January"
@@ -503,74 +560,66 @@ msgstr "ID:"
503
  msgid "Fill in the ID of the type you want to display!"
504
  msgstr "Inserire l'ID del tipo che si desidera visualizzare!"
505
 
506
- #: adrotate.php:105
507
- msgid "General Info"
508
- msgstr "Informazioni generali"
509
-
510
- #: adrotate.php:106
511
- msgid "Get AdRotate Pro"
512
- msgstr "Ottieni AdRotate Pro"
513
-
514
- #: adrotate.php:107 adrotate.php:196
515
  msgid "Manage Adverts"
516
  msgstr "Gestisci Inserzioni"
517
 
518
- #: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
519
  msgid "Manage Groups"
520
  msgstr "Gestisci Gruppi"
521
 
522
- #: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
523
  msgid "Manage Schedules"
524
  msgstr "Gestisci pianificazioni"
525
 
526
- #: adrotate.php:110
527
  msgid "Manage Media"
528
  msgstr "Gestisci Media"
529
 
530
- #: adrotate.php:111 adrotate.php:522 dashboard/adrotatepro.php:98
531
- #: dashboard/publisher/adverts-edit.php:174
532
  #: dashboard/publisher/statistics-main.php:23
533
  #: dashboard/settings/statistics.php:17
534
  msgid "Statistics"
535
  msgstr "Statistiche"
536
 
537
- #: adrotate.php:112
 
 
 
 
538
  msgid "Support"
539
  msgstr "Supporto"
540
 
541
- #: adrotate.php:113
542
  msgid "Settings"
543
  msgstr "Impostazioni"
544
 
545
- #: adrotate.php:134
546
- msgid "AdRotate Info"
547
- msgstr "Informazioni AdRotate"
548
-
549
- #: adrotate.php:152
550
  msgid "Get AdRotate Professional"
551
  msgstr "Ottieni AdRotate Professional"
552
 
553
- #: adrotate.php:256 adrotate.php:327
554
  msgid "Manage"
555
  msgstr "Gestisci"
556
 
557
- #: adrotate.php:257
558
  msgid "Advert Generator"
559
  msgstr "Generatore pubblicitario"
560
 
561
- #: adrotate.php:258 dashboard/publisher/adverts-edit.php:104
562
  msgid "New Advert"
563
  msgstr "Nuova inserzione"
564
 
565
- #: adrotate.php:328
566
  msgid "Add New"
567
  msgstr "Aggiungi Nuovo"
568
 
569
- #: adrotate.php:395
570
  msgid "Manage Media and Assets"
571
  msgstr "Gestire supporti e risorse"
572
 
573
- #: adrotate.php:399
574
  msgid ""
575
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
576
  "if you have HTML5 adverts containing multiple files."
@@ -578,44 +627,39 @@ msgstr ""
578
  "Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
579
  "utile se si dispone di annunci HTML5 contenenti più file."
580
 
581
- #: adrotate.php:441
582
  msgid "Advert Statistics"
583
  msgstr "Statistiche delle inserzioni"
584
 
585
- #: adrotate.php:484
586
  msgid "AdRotate Support"
587
  msgstr "Supporto per AdRotate"
588
 
589
- #: adrotate.php:515
590
  msgid "AdRotate Settings"
591
  msgstr "Impostazioni AdRotate"
592
 
593
- #: adrotate.php:520 dashboard/publisher/statistics-main.php:28
594
  msgid "General"
595
  msgstr "Generale"
596
 
597
- #: adrotate.php:521 dashboard/settings/notifications.php:18
598
  msgid "Notifications"
599
  msgstr "Notifiche"
600
 
601
- #: adrotate.php:523 dashboard/publisher/groups-edit.php:205
602
- #: dashboard/settings/advertisers.php:38
603
  msgid "Geo Targeting"
604
  msgstr "Geo Targeting"
605
 
606
- #: adrotate.php:524
607
- msgid "Advertisers"
608
- msgstr "Inserzionisti"
609
-
610
- #: adrotate.php:525 dashboard/settings/roles.php:17
611
  msgid "Access Roles"
612
  msgstr "Ruoli di accesso"
613
 
614
- #: adrotate.php:526 dashboard/settings/misc.php:16
615
  msgid "Miscellaneous"
616
  msgstr "Varie"
617
 
618
- #: adrotate.php:527 dashboard/settings/maintenance.php:16
619
  msgid "Maintenance"
620
  msgstr "Manutenzione"
621
 
@@ -755,86 +799,6 @@ msgstr ""
755
  "inserzionisti creano nuove inserzioni. Selezionare fino a tre indirizzi di "
756
  "posta elettronica per la notifica. Non perdere mai più una data di scadenza."
757
 
758
- #: dashboard/info.php:22
759
- msgid "At a Glance"
760
- msgstr "A prima vista"
761
-
762
- #: dashboard/info.php:27
763
- msgid "Your setup"
764
- msgstr "La tua configurazione"
765
-
766
- #: dashboard/info.php:28
767
- msgid "Adverts that need you"
768
- msgstr "Inserzioni che hanno bisogno di te"
769
-
770
- #: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:261
771
- #: dashboard/publisher/groups-main.php:34
772
- #: dashboard/publisher/schedules-main.php:34
773
- #: dashboard/publisher/statistics-main.php:35
774
- msgid "Adverts"
775
- msgstr "Pubblicità"
776
-
777
- #: dashboard/info.php:35
778
- msgid "(Almost) Expired"
779
- msgstr "(Quasi) Scaduto"
780
-
781
- #: dashboard/info.php:38
782
- msgid "Groups"
783
- msgstr "Gruppi"
784
-
785
- #: dashboard/info.php:39
786
- msgid "Have errors"
787
- msgstr "Errori"
788
-
789
- #: dashboard/info.php:76
790
- msgid ""
791
- "AdRotate Professional has a lot more functions for even better advertising "
792
- "management. Check out the feature comparison tab on any of the product pages "
793
- "to see what AdRotate Pro has to offer for you!"
794
- msgstr ""
795
- "AdRotate Professional ha molte più funzioni per una migliore gestione della "
796
- "pubblicità. Dai un'occhiata alla scheda di confronto delle funzionalità in "
797
- "una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
798
- "offrire per te!"
799
-
800
- #: dashboard/info.php:78
801
- msgid "Single License"
802
- msgstr "Licenza singola"
803
-
804
- #: dashboard/info.php:78
805
- msgid "Use on ONE WordPress installation."
806
- msgstr "Utilizzare su un'installazione WordPress."
807
-
808
- #: dashboard/info.php:78 dashboard/info.php:79 dashboard/info.php:80
809
- #: dashboard/info.php:81
810
- msgid "Buy now"
811
- msgstr "Acquista ora"
812
-
813
- #: dashboard/info.php:79
814
- msgid "Duo License"
815
- msgstr "Licenza Duo"
816
-
817
- #: dashboard/info.php:79
818
- msgid "Use on TWO WordPress installations."
819
- msgstr "Utilizzare su due installazioni WordPress."
820
-
821
- #: dashboard/info.php:80
822
- msgid "Multi License"
823
- msgstr "Licenza multipla"
824
-
825
- #: dashboard/info.php:80
826
- msgid "Use on up to FIVE WordPress installations."
827
- msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
828
-
829
- #: dashboard/info.php:81
830
- msgid "Developer License"
831
- msgstr "Licenza Developer"
832
-
833
- #: dashboard/info.php:81
834
- msgid "Use on up to a HUNDRED WordPress installations and/or networks."
835
- msgstr ""
836
- "Utilizzare su un massimo di un HUNDRED WordPress installazioni e/o reti."
837
-
838
  #: dashboard/publisher/adverts-disabled.php:15
839
  msgid "Disabled Adverts"
840
  msgstr "Inserzioni Disabilitate"
@@ -848,7 +812,7 @@ msgid "Bulk Actions"
848
  msgstr "Azioni in blocco"
849
 
850
  #: dashboard/publisher/adverts-disabled.php:21
851
- #: dashboard/publisher/adverts-edit.php:182
852
  msgid "Activate"
853
  msgstr "Attiva"
854
 
@@ -874,7 +838,7 @@ msgid "Go"
874
  msgstr "Vai"
875
 
876
  #: dashboard/publisher/adverts-disabled.php:35
877
- #: dashboard/publisher/adverts-edit.php:259
878
  #: dashboard/publisher/adverts-error.php:39
879
  #: dashboard/publisher/adverts-main.php:39
880
  #: dashboard/publisher/groups-edit.php:350
@@ -891,8 +855,8 @@ msgid "Start / End"
891
  msgstr "Inizio / Fine"
892
 
893
  #: dashboard/publisher/adverts-disabled.php:37
894
- #: dashboard/publisher/adverts-edit.php:112
895
- #: dashboard/publisher/adverts-edit.php:260
896
  #: dashboard/publisher/adverts-error.php:40
897
  #: dashboard/publisher/adverts-main.php:41
898
  #: dashboard/publisher/groups-edit.php:65
@@ -994,88 +958,95 @@ msgstr ""
994
  "di ripristinare l'immagine e salvare nuovamente l'annuncio!"
995
 
996
  #: dashboard/publisher/adverts-edit.php:62
997
- msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
998
- msgstr ""
999
- "Il monitoraggio è abilitato ma non è stato trovato alcun link/tag valido "
1000
- "nell'adcode!"
1001
-
1002
- #: dashboard/publisher/adverts-edit.php:67
1003
  msgid ""
1004
- "AdRotate cannot find an error but the advert is marked erroneous, try re-"
1005
- "saving the ad!"
1006
  msgstr ""
1007
- "AdRotate non riesce a trovare un errore ma l'annuncio è contrassegnato come "
1008
- "errato, prova a salvare di nuovo l'annuncio!"
1009
 
1010
- #: dashboard/publisher/adverts-edit.php:70
1011
  msgid "This advert is expired and currently not shown on your website!"
1012
  msgstr ""
1013
  "Questa inserzione è scaduta e attualmente non viene mostrata sul tuo sito "
1014
  "web!"
1015
 
1016
- #: dashboard/publisher/adverts-edit.php:73
1017
  msgid "The advert will expire in less than 2 days!"
1018
  msgstr "L'inserzione scadrà tra meno di 2 giorni!"
1019
 
1020
- #: dashboard/publisher/adverts-edit.php:76
1021
  msgid "This advert will expire in less than 7 days!"
1022
  msgstr "Questa inserzione scadrà tra meno di 7 giorni!"
1023
 
1024
- #: dashboard/publisher/adverts-edit.php:79
1025
  msgid "This advert has been disabled and does not rotate on your site!"
1026
  msgstr "Questa inserzione è stata disabilitata e non ruota sul tuo sito!"
1027
 
1028
- #: dashboard/publisher/adverts-edit.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
1029
  msgid "Edit Advert"
1030
  msgstr "Modifica annuncio"
1031
 
1032
- #: dashboard/publisher/adverts-edit.php:121
1033
  msgid "AdCode"
1034
  msgstr "AdCode"
1035
 
1036
- #: dashboard/publisher/adverts-edit.php:126
1037
  msgid "Basic Examples:"
1038
  msgstr "Esempi di base:"
1039
 
1040
- #: dashboard/publisher/adverts-edit.php:127
1041
  msgid "Click any of the examples to use it."
1042
  msgstr "Fare clic su uno degli esempi per utilizzarlo."
1043
 
1044
- #: dashboard/publisher/adverts-edit.php:136
1045
  msgid "Useful tags"
1046
  msgstr "Tag utili"
1047
 
1048
- #: dashboard/publisher/adverts-edit.php:138
1049
  msgid "Insert the advert ID Number."
1050
  msgstr "Inserisci il numero ID dell'inserzione."
1051
 
1052
- #: dashboard/publisher/adverts-edit.php:138
1053
  msgid "Use this tag when selecting a image below."
1054
  msgstr "Utilizzare questo tag quando si seleziona un'immagine di seguito."
1055
 
1056
- #: dashboard/publisher/adverts-edit.php:138
1057
  msgid "Insert the advert name."
1058
  msgstr "Inserisci il nome dell'inserzione."
1059
 
1060
- #: dashboard/publisher/adverts-edit.php:138
1061
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1062
  msgstr ""
1063
  "Inserire una stringa casuale. Utile per le inserzioni di tipo DFP/"
1064
  "DoubleClick."
1065
 
1066
- #: dashboard/publisher/adverts-edit.php:138
1067
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1068
  msgstr ""
1069
  "Aggiungi all'interno del tag &lt;a&gt; per aprire l'inserzione in una nuova "
1070
  "finestra."
1071
 
1072
- #: dashboard/publisher/adverts-edit.php:138
1073
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1074
  msgstr ""
1075
  "Aggiungere all'interno del tag &lt;a&gt; per indicare ai crawler di ignorare "
1076
  "questo collegamento."
1077
 
1078
- #: dashboard/publisher/adverts-edit.php:139
1079
  msgid ""
1080
  "Place the cursor where you want to add a tag and click to add it to your "
1081
  "AdCode."
@@ -1083,11 +1054,11 @@ msgstr ""
1083
  "Posiziona il cursore nel punto in cui desideri aggiungere un tag e fai clic "
1084
  "per aggiungerlo al tuo AdCode."
1085
 
1086
- #: dashboard/publisher/adverts-edit.php:144
1087
  msgid "Preview"
1088
  msgstr "Anteprima"
1089
 
1090
- #: dashboard/publisher/adverts-edit.php:147
1091
  msgid ""
1092
  "Note: While this preview is an accurate one, it might look different then it "
1093
  "does on the website."
@@ -1095,41 +1066,41 @@ msgstr ""
1095
  "Nota: Anche se questa anteprima è accurata, potrebbe sembrare diversa dal "
1096
  "sito web."
1097
 
1098
- #: dashboard/publisher/adverts-edit.php:148
1099
  msgid ""
1100
  "This is because of CSS differences. Your themes CSS file is not active here!"
1101
  msgstr ""
1102
  "Ciò è dovuto alle differenze CSS. Il tuo file CSS temi non è attivo qui!"
1103
 
1104
- #: dashboard/publisher/adverts-edit.php:153
1105
  msgid "Banner asset"
1106
  msgstr "Elemento Banner"
1107
 
1108
- #: dashboard/publisher/adverts-edit.php:155
1109
  msgid "WordPress media:"
1110
  msgstr "WordPress media:"
1111
 
1112
- #: dashboard/publisher/adverts-edit.php:155
1113
  msgid "Select Banner"
1114
  msgstr "Selezionare il Banner"
1115
 
1116
- #: dashboard/publisher/adverts-edit.php:157
1117
  msgid "- OR -"
1118
  msgstr "- O -"
1119
 
1120
- #: dashboard/publisher/adverts-edit.php:158
1121
  msgid "Banner folder:"
1122
  msgstr "Cartella Banner:"
1123
 
1124
- #: dashboard/publisher/adverts-edit.php:159
1125
  msgid "No image selected"
1126
  msgstr "Nessuna immagine selezionata"
1127
 
1128
- #: dashboard/publisher/adverts-edit.php:169
1129
  msgid "Use %asset% in the adcode instead of the file path."
1130
  msgstr "Utilizza %asset% nell'AdCode invece del percorso al file."
1131
 
1132
- #: dashboard/publisher/adverts-edit.php:169
1133
  msgid ""
1134
  "Use either the text field or the dropdown. If the textfield has content that "
1135
  "field has priority."
@@ -1137,29 +1108,27 @@ msgstr ""
1137
  "Utilizzare il campo di testo o l'elenco a discesa. Se il campo di testo ha "
1138
  "contenuto, il campo ha la priorità."
1139
 
1140
- #: dashboard/publisher/adverts-edit.php:176
1141
- msgid "Enable click and impression tracking for this advert."
1142
- msgstr "Abilita il tracciamento di click e impressioni per questo annuncio."
1143
 
1144
- #: dashboard/publisher/adverts-edit.php:177
1145
  msgid ""
1146
- "Note: Clicktracking does not work for Javascript adverts such as those "
1147
- "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1148
- "always supported."
1149
  msgstr ""
1150
- "Nota: il clicktracking non funziona per le inserzioni Javascript come quelle "
1151
- "fornite da Google AdSense/DFP/DoubleClick. Gli annunci HTML5/Flash non sono "
1152
- "sempre supportati."
1153
 
1154
- #: dashboard/publisher/adverts-edit.php:185
1155
  msgid "Enabled, this ad will be visible"
1156
  msgstr "Abilitato, questo annuncio sarà visibile"
1157
 
1158
- #: dashboard/publisher/adverts-edit.php:186
1159
  msgid "Disabled, do not show this advert anywhere"
1160
  msgstr "Disabilitato, non mostrare questo annuncio da nessuna parte"
1161
 
1162
- #: dashboard/publisher/adverts-edit.php:192
1163
  msgid ""
1164
  "Target your audience with Geo Targeting and easily select which devices and "
1165
  "mobile operating systems the advert should show on with AdRotate Pro!"
@@ -1168,20 +1137,17 @@ msgstr ""
1168
  "dispositivi e sistemi operativi mobili l'annuncio dovrebbe mostrare con "
1169
  "AdRotate Pro!"
1170
 
1171
- #: dashboard/publisher/adverts-edit.php:192
1172
- #: dashboard/publisher/adverts-edit.php:230
1173
  #: dashboard/publisher/groups-edit.php:227
1174
- #: dashboard/publisher/statistics-advert.php:109
1175
- #: dashboard/publisher/statistics-group.php:113
1176
- #: dashboard/publisher/statistics-main.php:83
1177
  msgid "Upgrade now"
1178
  msgstr "Aggiorna adesso"
1179
 
1180
- #: dashboard/publisher/adverts-edit.php:194
1181
  msgid "Schedule your advert"
1182
  msgstr "Pianifica la tua inserzione"
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:195
1185
  msgid ""
1186
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1187
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
@@ -1191,36 +1157,36 @@ msgstr ""
1191
  "tienilo a mente: se l'ora di inizio o di fine è dopo pranzo, aggiungi 12 "
1192
  "ore. 2PM è 14:00 ore. 6AM è 6:00 ore."
1193
 
1194
- #: dashboard/publisher/adverts-edit.php:199
1195
  msgid "Start date"
1196
  msgstr "Data di inizio"
1197
 
1198
- #: dashboard/publisher/adverts-edit.php:203
1199
  msgid "End date"
1200
  msgstr "Data fine"
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:209
1203
  msgid "Start time"
1204
  msgstr "Ora di inizio"
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:214
1207
  msgid "End time"
1208
  msgstr "Ora fine"
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:222
1211
  msgid "Maximum Clicks"
1212
  msgstr "Numero massimo di clic"
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:223
1215
- #: dashboard/publisher/adverts-edit.php:225
1216
  msgid "Leave empty or 0 to skip this."
1217
  msgstr "Lasciare vuoto o 0 per ignorare questa opzione."
1218
 
1219
- #: dashboard/publisher/adverts-edit.php:224
1220
  msgid "Maximum Impressions"
1221
  msgstr "Numero massimo di impressioni"
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:230
1224
  msgid ""
1225
  "Plan ahead and create multiple and more advanced schedules for each advert "
1226
  "with AdRotate Pro."
@@ -1228,19 +1194,19 @@ msgstr ""
1228
  "Crea pianificazioni multiple e più avanzate per ogni inserzione con AdRotate "
1229
  "Pro."
1230
 
1231
- #: dashboard/publisher/adverts-edit.php:232
1232
  #: dashboard/publisher/groups-edit.php:157
1233
  #: dashboard/publisher/groups-edit.php:302
1234
  msgid "Usage"
1235
  msgstr "Utilizzo"
1236
 
1237
- #: dashboard/publisher/adverts-edit.php:236
1238
  #: dashboard/publisher/groups-edit.php:161
1239
  #: dashboard/publisher/groups-edit.php:306
1240
  msgid "Widget"
1241
  msgstr "Widget"
1242
 
1243
- #: dashboard/publisher/adverts-edit.php:237
1244
  msgid ""
1245
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1246
  "and select the advert or the group the advert is in."
@@ -1248,25 +1214,25 @@ msgstr ""
1248
  "Trascina il widget AdRotate nella sidebar in cui vuoi mettere l'inserzione e "
1249
  "seleziona questa o il gruppo in cui l'inserzione si trova."
1250
 
1251
- #: dashboard/publisher/adverts-edit.php:240
1252
  #: dashboard/publisher/groups-edit.php:165
1253
  #: dashboard/publisher/groups-edit.php:310
1254
  msgid "In a post or page"
1255
  msgstr "In un post o in una pagina"
1256
 
1257
- #: dashboard/publisher/adverts-edit.php:242
1258
  #: dashboard/publisher/groups-edit.php:167
1259
  #: dashboard/publisher/groups-edit.php:312
1260
  msgid "Directly in a theme"
1261
  msgstr "Direttamente in un tema"
1262
 
1263
- #: dashboard/publisher/adverts-edit.php:249
1264
- #: dashboard/publisher/adverts-edit.php:292
1265
  msgid "Save Advert"
1266
  msgstr "Salva inserzione"
1267
 
1268
- #: dashboard/publisher/adverts-edit.php:250
1269
- #: dashboard/publisher/adverts-edit.php:293
1270
  #: dashboard/publisher/adverts-generator.php:148
1271
  #: dashboard/publisher/groups-edit.php:175
1272
  #: dashboard/publisher/groups-edit.php:320
@@ -1274,58 +1240,65 @@ msgstr "Salva inserzione"
1274
  msgid "Cancel"
1275
  msgstr "Annulla"
1276
 
1277
- #: dashboard/publisher/adverts-edit.php:254
1278
  msgid "Select Groups"
1279
  msgstr "Seleziona gruppi"
1280
 
1281
- #: dashboard/publisher/adverts-edit.php:270
 
 
 
 
 
 
 
1282
  #: dashboard/publisher/groups-main.php:60
1283
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1284
  msgid "Default"
1285
  msgstr "Predefinito"
1286
 
1287
- #: dashboard/publisher/adverts-edit.php:271
1288
  #: dashboard/publisher/groups-main.php:61
1289
  msgid "Dynamic"
1290
  msgstr "Dinamico"
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:271
1293
  #: dashboard/publisher/groups-main.php:61
1294
  msgid "second rotation"
1295
  msgstr "seconda rotazione"
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:272
1298
  #: dashboard/publisher/groups-main.php:62
1299
  msgid "Block"
1300
  msgstr "Blocco"
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:272
1303
  #: dashboard/publisher/groups-main.php:62
1304
  msgid "grid"
1305
  msgstr "griglia"
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:273
1308
  #: dashboard/publisher/groups-edit.php:234
1309
  #: dashboard/publisher/groups-main.php:63
1310
  msgid "Post Injection"
1311
  msgstr "Post iniezione"
1312
 
1313
- #: dashboard/publisher/adverts-edit.php:274
1314
  msgid "Geolocation"
1315
  msgstr "Geolocalizzazione"
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:281
1318
  #: dashboard/publisher/groups-edit.php:74
1319
  #: dashboard/publisher/groups-main.php:70
1320
  msgid "Mode"
1321
  msgstr "Modalità"
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:298
1324
  #: dashboard/publisher/adverts-generator.php:131
1325
  msgid "Portability"
1326
  msgstr "Portabilità"
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:299
1329
  msgid ""
1330
  "This long code is your advert. It includes all settings from above except "
1331
  "the schedule and group selection. You can import this hash into another "
@@ -1342,7 +1315,7 @@ msgstr ""
1342
  "l'intera cosa. Puoi incollare l'hash nel campo 'Hash annuncio' nel "
1343
  "generatore di annunci di un'altra configurazione AdRotate."
1344
 
1345
- #: dashboard/publisher/adverts-edit.php:303
1346
  #: dashboard/publisher/adverts-generator.php:137
1347
  msgid "Advert hash"
1348
  msgstr "Hash dell'annuncio"
@@ -1750,6 +1723,10 @@ msgstr ""
1750
  msgid "Get access to all features in AdRotate Pro."
1751
  msgstr "Accedi a tutte le funzioni di AdRotate Pro."
1752
 
 
 
 
 
1753
  #: dashboard/publisher/groups-edit.php:162
1754
  #: dashboard/publisher/groups-edit.php:307
1755
  msgid ""
@@ -2210,12 +2187,6 @@ msgstr ""
2210
  "Tutte le statistiche sono indicative. Essi non riflettono i risultati "
2211
  "conteggiati da altre parti."
2212
 
2213
- #: dashboard/publisher/statistics-advert.php:109
2214
- #: dashboard/publisher/statistics-group.php:113
2215
- #: dashboard/publisher/statistics-main.php:83
2216
- msgid "Get more features with AdRotate Pro"
2217
- msgstr "Ottieni più funzionalità con AdRotate Pro"
2218
-
2219
  #: dashboard/publisher/statistics-group.php:46
2220
  msgid "Statistics for group"
2221
  msgstr "Statistiche per il gruppo"
@@ -2224,74 +2195,6 @@ msgstr "Statistiche per il gruppo"
2224
  msgid "Adverts counting stats"
2225
  msgstr "Statistiche di conteggio delle inserzioni"
2226
 
2227
- #: dashboard/settings/advertisers.php:16
2228
- msgid "Advertisers - Available in AdRotate Pro"
2229
- msgstr "Inserzionisti - Disponibile in AdRotate Pro"
2230
-
2231
- #: dashboard/settings/advertisers.php:17
2232
- msgid "Enable advertisers so they can review and manage their own ads."
2233
- msgstr ""
2234
- "Abilita gli inserzionisti in modo che possano esaminare e gestire i propri "
2235
- "annunci."
2236
-
2237
- #: dashboard/settings/advertisers.php:20
2238
- msgid "Enable Advertisers"
2239
- msgstr "Abilita inserzionisti"
2240
-
2241
- #: dashboard/settings/advertisers.php:22
2242
- msgid "Allow adverts to be coupled to users (Advertisers)."
2243
- msgstr "Consenti l'accoppiare le inserzioni agli utenti (Inserzionisti)."
2244
-
2245
- #: dashboard/settings/advertisers.php:26
2246
- msgid "Edit/update adverts"
2247
- msgstr "Modifica/aggiorna le inserzioni"
2248
-
2249
- #: dashboard/settings/advertisers.php:28
2250
- msgid "Allow advertisers to add new or edit their adverts."
2251
- msgstr ""
2252
- "Consenti agli inserzionisti di aggiungere nuove inserzioni o di modificarne."
2253
-
2254
- #: dashboard/settings/advertisers.php:32
2255
- msgid "Mobile adverts"
2256
- msgstr "Inserzioni per dispositivi mobili"
2257
-
2258
- #: dashboard/settings/advertisers.php:34
2259
- msgid "Allow advertisers to specify on which devices their ads will show."
2260
- msgstr ""
2261
- "Lascia agli inserzionisti di specificare su quali dispositivi vadano "
2262
- "mostrate le loro inserzioni."
2263
-
2264
- #: dashboard/settings/advertisers.php:40
2265
- msgid ""
2266
- "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2267
- "be enabled, too."
2268
- msgstr ""
2269
- "Consenti agli inserzionisti di specificare dove verranno pubblicati i loro "
2270
- "annunci. Anche il Targeting geografico deve essere abilitato."
2271
-
2272
- #: dashboard/settings/advertisers.php:44
2273
- msgid "Advertiser role"
2274
- msgstr "Ruolo inserzionista"
2275
-
2276
- #: dashboard/settings/advertisers.php:46
2277
- msgid "Create a seperate user role for your advertisers."
2278
- msgstr "Crea un ruolo utente separato per i tuoi inserzionisti."
2279
-
2280
- #: dashboard/settings/advertisers.php:47
2281
- msgid ""
2282
- "Don't forget to give these users access to their advertiser dashboard via "
2283
- "the Roles tab."
2284
- msgstr ""
2285
- "Non dimenticare di concedere a questi utenti l'accesso alla dashboard "
2286
- "dell'inserzionista tramite la scheda Ruoli."
2287
-
2288
- #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2289
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:47
2290
- #: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
2291
- #: dashboard/settings/statistics.php:79
2292
- msgid "Update Options"
2293
- msgstr "Aggiorna Opzioni"
2294
-
2295
  #: dashboard/settings/general.php:17
2296
  msgid "General Settings"
2297
  msgstr "Impostazioni generali"
@@ -2305,83 +2208,117 @@ msgid "Some options are only available in AdRotate Pro!"
2305
  msgstr "Alcune opzioni sono disponibili solo in AdRotate Pro!"
2306
 
2307
  #: dashboard/settings/general.php:21
2308
- msgid "Shortcode in widgets"
2309
- msgstr "Shortcode nei widget"
2310
 
2311
  #: dashboard/settings/general.php:22
2312
  msgid ""
2313
- "Enable this option to if your theme does not support shortcodes in the "
2314
- "WordPress text widget."
 
 
 
 
 
 
 
 
 
2315
  msgstr ""
2316
- "Abilita questa opzione se il tuo tema non supporta gli shortcode nei widget "
2317
- "di testo di WordPress."
 
2318
 
2319
- #: dashboard/settings/general.php:25
2320
- msgid "Disable live preview"
2321
- msgstr "Disabilita l'anteprima live"
2322
 
2323
- #: dashboard/settings/general.php:26
2324
  msgid ""
2325
- "Enable this option if you have faulty adverts that overflow their designated "
2326
- "area while creating/editing adverts."
2327
  msgstr ""
2328
- "Abilita questa opzione se hai degli annunci difettosi che escono fuori "
2329
- "dall'area loro assegnata quando si creano/modificano degli annunci."
 
 
 
 
 
2330
 
2331
- #: dashboard/settings/general.php:29
2332
- msgid "Disable dynamic mode"
2333
- msgstr "Disabilita la modalità dinamica"
 
 
 
 
2334
 
2335
  #: dashboard/settings/general.php:30
 
 
 
 
2336
  msgid ""
2337
- "Enable this option to disable dynamic mode in groups for mobile devices if "
2338
- "you notice skipping or jumpy content."
2339
  msgstr ""
2340
- "Abilita questa opzione per disabilitare la modalità dinamica per i "
2341
- "dispositivi mobili si avverti che dei contenuti vengono saltati o esclusi."
 
 
 
 
 
2342
 
2343
- #: dashboard/settings/general.php:33
 
 
 
 
 
 
 
 
2344
  msgid "Load jQuery"
2345
  msgstr "Carica jQuery"
2346
 
2347
- #: dashboard/settings/general.php:34
2348
  msgid ""
2349
- "Enable this option if your theme does not load jQuery. jQuery is required "
2350
- "for dynamic groups, statistics and some other features."
2351
  msgstr ""
2352
- "Abilita questa opzione se il tuo tema non carica jQuery. jQery è richiesto "
2353
- "per gruppi dinamici, statistiche e alcune altre funzioni."
2354
 
2355
- #: dashboard/settings/general.php:37
2356
  msgid "Load scripts in footer?"
2357
  msgstr "Carico gli script nel footer?"
2358
 
2359
- #: dashboard/settings/general.php:38
2360
- msgid ""
2361
- "Enable this option if you want to load all AdRotate Javascripts in the "
2362
- "footer of your site."
2363
  msgstr ""
2364
- "Abilita questa opzione se vuoi caricare tutti i JavaScript AdRotate nel "
2365
- "footer del tuo sito."
2366
 
2367
- #: dashboard/settings/general.php:41
2368
  msgid "Adblock disguise"
2369
  msgstr "Travestimento di Adblock"
2370
 
2371
- #: dashboard/settings/general.php:43
2372
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2373
  msgstr ""
2374
  "Lasciare vuoto per disabilitare. Utilizzare solo lettere con tappi "
2375
  "inferiori. Per esempio:"
2376
 
2377
- #: dashboard/settings/general.php:44
2378
  msgid ""
2379
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2380
  msgstr ""
2381
  "Cerca te evitare i plugin adblock nella maggior parte dei browser moderni "
2382
  "quando usi gli shortcode."
2383
 
2384
- #: dashboard/settings/general.php:44
2385
  msgid ""
2386
  "To also apply this feature to widgets, use a text widget with a shortcode "
2387
  "instead of the AdRotate widget."
@@ -2389,7 +2326,7 @@ msgstr ""
2389
  "Per applicare questa funzione anche ai widget, utilizzate un widget di testo "
2390
  "con uno shortcode anziché il widget AdRotate."
2391
 
2392
- #: dashboard/settings/general.php:44
2393
  msgid ""
2394
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2395
  "feature will have little effect!"
@@ -2397,24 +2334,24 @@ msgstr ""
2397
  "Evitare l'uso di parole chiave o nomi di file evidenti nelle tue inserzioni "
2398
  "o questa funzione avrà poco effetto!"
2399
 
2400
- #: dashboard/settings/general.php:49
2401
  msgid "Banner Folder"
2402
  msgstr "Cartella Banner"
2403
 
2404
- #: dashboard/settings/general.php:50
2405
  msgid "Set a folder where your banner images will be stored."
2406
  msgstr ""
2407
  "Impostare una cartella in cui verranno memorizzate le immagini del banner."
2408
 
2409
- #: dashboard/settings/general.php:53
2410
  msgid "Folder name"
2411
  msgstr "Nome cartella"
2412
 
2413
- #: dashboard/settings/general.php:55
2414
  msgid "(Default: banners)."
2415
  msgstr "(Predefinito: banner)."
2416
 
2417
- #: dashboard/settings/general.php:56
2418
  msgid ""
2419
  "To try and trick ad blockers you could set the folder to something crazy "
2420
  "like:"
@@ -2422,7 +2359,7 @@ msgstr ""
2422
  "Per cercare di ingannare gli ad blocker si potrebbe impostare la cartella a "
2423
  "qualcosa di folle come:"
2424
 
2425
- #: dashboard/settings/general.php:57
2426
  msgid ""
2427
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2428
  "will show errors when the folder is missing."
@@ -2430,27 +2367,27 @@ msgstr ""
2430
  "Questa cartella non verrà creata automaticamente se non esiste. AdRotate "
2431
  "mostrerà gli errori quando la cartella è mancante."
2432
 
2433
- #: dashboard/settings/general.php:62
2434
  msgid "Bot filter"
2435
  msgstr "Filtro bot"
2436
 
2437
- #: dashboard/settings/general.php:63
2438
  msgid "The bot filter is used for the AdRotate stats tracker."
2439
  msgstr ""
2440
  "Il filtro bot viene utilizzato per il rilevamento delle statistiche AdRotate."
2441
 
2442
- #: dashboard/settings/general.php:66
2443
  msgid "User-Agent Filter"
2444
  msgstr "Filtro agente utente"
2445
 
2446
- #: dashboard/settings/general.php:69
2447
  msgid ""
2448
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2449
  msgstr ""
2450
  "Elenco di parole chiave separate da virgole. Escludere bot/crawler/user-"
2451
  "agent."
2452
 
2453
- #: dashboard/settings/general.php:70
2454
  msgid ""
2455
  "Keep in mind that this might give false positives. The word 'fire' also "
2456
  "matches 'firefox', but not vice-versa. So be careful!"
@@ -2458,7 +2395,7 @@ msgstr ""
2458
  "Tenete a mente che questo potrebbe dare falsi positivi. La parola \"fuoco\" "
2459
  "corrisponde anche a 'firefox', ma non viceversa. Quindi state attenti!"
2460
 
2461
- #: dashboard/settings/general.php:71
2462
  msgid ""
2463
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2464
  "characters are stripped out."
@@ -2466,7 +2403,7 @@ msgstr ""
2466
  "Sono consentite solo le parole con caratteri alfanumerici e [ - _ ]. Tutti "
2467
  "gli altri personaggi vengono rimossi."
2468
 
2469
- #: dashboard/settings/general.php:72
2470
  msgid ""
2471
  "Additionally to the list specified here, empty User-Agents are blocked as "
2472
  "well."
@@ -2474,14 +2411,20 @@ msgstr ""
2474
  "Oltre all'elenco specificato qui, vengono bloccati anche gli agenti utente "
2475
  "vuoti."
2476
 
2477
- #: dashboard/settings/general.php:72
2478
  msgid "Learn more about"
2479
  msgstr "Ulteriori informazioni su"
2480
 
2481
- #: dashboard/settings/general.php:72
2482
  msgid "user-agents"
2483
  msgstr "agenti di utenti"
2484
 
 
 
 
 
 
 
2485
  #: dashboard/settings/geotargeting.php:17
2486
  msgid "Geo Targeting - Available in AdRotate Pro"
2487
  msgstr "Targeting geografico - Disponibile in AdRotate Pro"
@@ -2593,9 +2536,8 @@ msgstr ""
2593
  "risponde e lento."
2594
 
2595
  #: dashboard/settings/maintenance.php:22
2596
- msgid "Check all adverts for configuration errors"
2597
- msgstr ""
2598
- "Controllare la presenza di errori di configurazione per tutte le inserzioni"
2599
 
2600
  #: dashboard/settings/maintenance.php:22
2601
  msgid "You are about to check all adverts for errors."
@@ -2617,8 +2559,8 @@ msgid "Clean-up Database and Files"
2617
  msgstr "Pulire database e file"
2618
 
2619
  #: dashboard/settings/maintenance.php:30
2620
- msgid "Clean-up database and old files"
2621
- msgstr "Database di pulizia e vecchi file"
2622
 
2623
  #: dashboard/settings/maintenance.php:30
2624
  msgid "You are about to do maintenance on your setup of AdRotate."
@@ -3153,56 +3095,64 @@ msgstr "Statistiche adrotate"
3153
 
3154
  #: dashboard/settings/statistics.php:48
3155
  msgid ""
3156
- "The settings below are for the internal tracker and have no effect when "
3157
- "using Google Analytics or Matomo."
3158
  msgstr ""
3159
- "Le impostazioni seguenti sono per il tracker interno e non hanno alcun "
3160
- "effetto quando si utilizza Google Analytics o Matomo."
3161
 
3162
  #: dashboard/settings/statistics.php:51
 
 
 
 
 
 
 
 
3163
  msgid "Logged in impressions"
3164
  msgstr "Impressioni registrate"
3165
 
3166
- #: dashboard/settings/statistics.php:53
3167
  msgid "Track impressions from logged in users."
3168
  msgstr ""
3169
  "Tieni traccia delle impressioni degli utenti che hanno effettuato l'accesso."
3170
 
3171
- #: dashboard/settings/statistics.php:57
3172
  msgid "Logged in clicks"
3173
  msgstr "Clic registrate"
3174
 
3175
- #: dashboard/settings/statistics.php:59
3176
  msgid "Track clicks from logged in users."
3177
  msgstr "Tieni traccia dei clic degli utenti connessi."
3178
 
3179
- #: dashboard/settings/statistics.php:63
3180
  msgid "Impression timer"
3181
  msgstr "Timer impressioni"
3182
 
3183
- #: dashboard/settings/statistics.php:65 dashboard/settings/statistics.php:72
3184
  msgid "Seconds."
3185
  msgstr "Secondi."
3186
 
3187
- #: dashboard/settings/statistics.php:66
3188
  msgid "Default: 60."
3189
  msgstr "Valore predefinito: 60."
3190
 
3191
- #: dashboard/settings/statistics.php:66
3192
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3193
  msgstr ""
3194
  "Questo numero non può essere vuoto, essere inferiore a 10 o superiore a 3600 "
3195
  "(1 ora)."
3196
 
3197
- #: dashboard/settings/statistics.php:70
3198
  msgid "Click timer"
3199
  msgstr "Timer click"
3200
 
3201
- #: dashboard/settings/statistics.php:73
3202
  msgid "Default: 86400."
3203
  msgstr "Default: 86400."
3204
 
3205
- #: dashboard/settings/statistics.php:73
3206
  msgid ""
3207
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3208
  msgstr ""
@@ -3275,6 +3225,156 @@ msgstr "Chiedi Supporto"
3275
  msgid "Premium Support is available in AdRotate Pro!"
3276
  msgstr "Premium Support è disponibile in AdRotate Pro!"
3277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3278
  #~ msgid "Get started today"
3279
  #~ msgstr "Iniziate oggi stesso"
3280
 
@@ -3599,9 +3699,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
3599
  #~ msgid "News & Updates"
3600
  #~ msgstr "News ed aggiornamenti"
3601
 
3602
- #~ msgid "Support Forums"
3603
- #~ msgstr "Forum di supporto"
3604
-
3605
  #~ msgid ""
3606
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3607
  #~ "Chances are your question has already been asked and answered!"
@@ -5096,9 +5193,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
5096
  #~ msgid "Select Adverts"
5097
  #~ msgstr "Seleziona Inserzioni"
5098
 
5099
- #~ msgid "Overview of clicks and impressions"
5100
- #~ msgstr "Panoramica di clicks e impressioni"
5101
-
5102
  #~ msgid "Period"
5103
  #~ msgstr "Periodo"
5104
 
@@ -5111,42 +5205,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
5111
  #~ msgid "from"
5112
  #~ msgstr "da"
5113
 
5114
- #, fuzzy
5115
- #~ msgid "Duplicate adverts"
5116
- #~ msgstr "Inserzioni duplicate"
5117
-
5118
- #, fuzzy
5119
- #~ msgid ""
5120
- #~ "Enable this option to prevent adverts in groups that are in Default or "
5121
- #~ "Block mode from showing multiple times on the same pageload."
5122
- #~ msgstr ""
5123
- #~ "Attiva questa opzione per impedire che le inserzioni nei gruppi in "
5124
- #~ "modalità Predefinito o Blocca vengano visualizzate più volte nello stesso "
5125
- #~ "pageload."
5126
-
5127
- #, fuzzy
5128
- #~ msgid ""
5129
- #~ "If you still notice double adverts from groups placed on a page, start "
5130
- #~ "with carefully looking at your setup to make sure you did not cause this "
5131
- #~ "yourself."
5132
- #~ msgstr ""
5133
- #~ "Se noti ancora doppie inserzioni da gruppi inseriti in una pagina, inizia "
5134
- #~ "con attenzione a guardare la tua configurazione per assicurarti di non "
5135
- #~ "averlo causato tu stesso."
5136
-
5137
- #, fuzzy
5138
- #~ msgid "On some servers $_SESSION is disabled."
5139
- #~ msgstr "In alcuni server _SESSION è disabilitato."
5140
-
5141
- #, fuzzy
5142
- #~ msgid ""
5143
- #~ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. "
5144
- #~ "However, most people will not need this extra plugin!"
5145
- #~ msgstr ""
5146
- #~ "Un plugin chiamato \"WP Session Manager\" di Eric Mann può risolvere "
5147
- #~ "questo problema. Tuttavia, la maggior parte delle persone non avrà "
5148
- #~ "bisogno di questo plugin extra!"
5149
-
5150
  #, fuzzy
5151
  #~ msgid "Lookups remaining"
5152
  #~ msgstr "Ricerche rimanenti"
@@ -5278,10 +5336,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
5278
  #~ "Disattivare temporaneamente la crittografia nell'URL di reindirizzamento. "
5279
  #~ "Solo AdRotate Internal Tracker."
5280
 
5281
- #, fuzzy
5282
- #~ msgid "Check adverts for errors"
5283
- #~ msgstr "Verificare la presenza di errori nelle inserzioni"
5284
-
5285
  #, fuzzy
5286
  #~ msgid "Send email notifications"
5287
  #~ msgstr "Inviare notifiche tramite posta elettronica"
@@ -5846,14 +5900,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
5846
  #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
5847
  #~ "Vous obtiendraient une solution (en général) dans la journée."
5848
 
5849
- #, fuzzy
5850
- #~ msgid "Post Ticket"
5851
- #~ msgstr "Dans un article ou une page :"
5852
-
5853
- #, fuzzy
5854
- #~ msgid "Enable stats"
5855
- #~ msgstr "Statistiques activés"
5856
-
5857
  #, fuzzy
5858
  #~ msgid "Enable click tracking for this advert."
5859
  #~ msgstr "Activer le suivi des clicks pour cette publicité."
@@ -5946,14 +5992,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
5946
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
5947
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
5948
 
5949
- #, fuzzy
5950
- #~ msgid ""
5951
- #~ "Note: Clicktracking does generally not work for Javascript adverts such "
5952
- #~ "as those provided by Google AdSense."
5953
- #~ msgstr ""
5954
- #~ "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
5955
- #~ "publicités en Javascript telles que celles fournies par Google AdSense."
5956
-
5957
  #, fuzzy
5958
  #~ msgid ""
5959
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-31 02:04-0500\n"
6
+ "PO-Revision-Date: 2021-08-31 02:04-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
9
  "Language: it\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:797
21
  msgid "Advert saved"
22
  msgstr "Annuncio salvato"
23
 
24
+ #: adrotate-functions.php:801
25
  msgid "Group saved"
26
  msgstr "Gruppo salvato"
27
 
28
+ #: adrotate-functions.php:805
29
  msgid "Banner image saved"
30
  msgstr "Immagine banner salvata"
31
 
32
+ #: adrotate-functions.php:809
33
  msgid "Ad(s) deleted"
34
  msgstr "Annunci eliminati"
35
 
36
+ #: adrotate-functions.php:813
37
  msgid "Group deleted"
38
  msgstr "Gruppo eliminato"
39
 
40
+ #: adrotate-functions.php:817
41
  msgid "Asset(s) deleted"
42
  msgstr "Asset eliminati"
43
 
44
+ #: adrotate-functions.php:821
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
49
  "Si è verificato un problema durante l'eliminazione del file o della "
50
  "cartella. Assicurati che le tue autorizzazioni siano in ordine."
51
 
52
+ #: adrotate-functions.php:825
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Reimpostazione delle statistiche degli annunci"
55
 
56
+ #: adrotate-functions.php:829
57
  msgid "Advert(s) renewed"
58
  msgstr "Annunci rinnovati"
59
 
60
+ #: adrotate-functions.php:833
61
  msgid "Advert(s) deactivated"
62
  msgstr "Annunci disattivati"
63
 
64
+ #: adrotate-functions.php:837
65
  msgid "Advert(s) activated"
66
  msgstr "Annunci attivati"
67
 
68
+ #: adrotate-functions.php:841
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Gruppo che include le inserzioni in esso eliminate"
71
 
72
+ #: adrotate-functions.php:845
73
  msgid "Export created"
74
  msgstr "Esportazione creata"
75
 
76
+ #: adrotate-functions.php:849
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
82
  "inserzione qui sotto. Non dimenticare di controllare tutte le impostazioni e "
83
  "pianificare l'annuncio."
84
 
85
+ #: adrotate-functions.php:854
86
  msgid "Settings saved"
87
  msgstr "Impostazioni salvate"
88
 
89
+ #: adrotate-functions.php:858
90
  msgid "Database optimized"
91
  msgstr "Database ottimizzato"
92
 
93
+ #: adrotate-functions.php:862
94
  msgid "Database repaired"
95
  msgstr "Database riparato"
96
 
97
+ #: adrotate-functions.php:866
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Le inserzioni valutate e gli stati sono stati corretti ove richiesto"
100
 
101
+ #: adrotate-functions.php:870
102
  msgid "Cleanup complete"
103
  msgstr "Pulitura completata"
104
 
105
+ #: adrotate-functions.php:875
106
  msgid "Action prohibited"
107
  msgstr "Azione vietata"
108
 
109
+ #: adrotate-functions.php:879
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
114
  "L'annuncio è stato salvato ma ha un problema che potrebbe impedirgli di "
115
  "funzionare correttamente. Rivedi la pubblicità colorata."
116
 
117
+ #: adrotate-functions.php:883
118
  msgid "No data found in selected time period"
119
  msgstr "Nessun dato trovato nel periodo di tempo selezionato"
120
 
121
+ #: adrotate-functions.php:887
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr "Il database può essere ottimizzato o pulito solo una volta ogni ora"
124
 
125
+ #: adrotate-functions.php:891
126
  msgid "Form can not be (partially) empty!"
127
  msgstr "Modulo non può essere (parzialmente) vuoto!"
128
 
129
+ #: adrotate-functions.php:895
130
  msgid "No adverts found."
131
  msgstr "Nessuna pubblicità trovata."
132
 
133
+ #: adrotate-functions.php:899
134
  msgid ""
135
  "The advert hash is not usable or is missing required data. Please copy the "
136
  "hash correctly and try again."
138
  "È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
139
  "nella cache dei frammenti non è abilitata."
140
 
141
+ #: adrotate-functions.php:903
142
  msgid ""
143
  "The advert hash can not be used on the same site as it originated from or is "
144
  "not a valid hash for importing."
146
  "L'hash dell'annuncio non può essere utilizzato sullo stesso sito da cui ha "
147
  "avuto origine o non è un hash valido per l'importazione."
148
 
149
+ #: adrotate-functions.php:907
150
  msgid "Unexpected error"
151
  msgstr "Errore inatteso"
152
 
319
  msgid "Installation instructions"
320
  msgstr "Istruzioni per l'installazione"
321
 
322
+ #: adrotate-output.php:735
323
  msgid "your attention:"
324
  msgstr "la vostra attenzione:"
325
 
326
+ #: adrotate-output.php:766
327
  msgid ""
328
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
329
  "menu. If you need help getting started take a look at the"
331
  "Grazie per avere scelto AdRotate. Tutto ciò che concerne AdRotate si trova "
332
  "in questo menù. Se hai bisogno di aiuto per cominciare da uno sguardo a"
333
 
334
+ #: adrotate-output.php:766
335
  msgid "manuals"
336
  msgstr "manuali"
337
 
338
+ #: adrotate-output.php:766
339
  msgid "and"
340
  msgstr "e"
341
 
342
+ #: adrotate-output.php:766
343
  msgid "forums"
344
  msgstr "forum"
345
 
346
+ #: adrotate-output.php:844
347
  msgid "Need help fast? Or do you have a question?"
348
  msgstr "Hai bisogno di aiuto in fretta? O hai una domanda?"
349
 
350
+ #: adrotate-output.php:845
351
  msgid "Help AdRotate Grow"
352
  msgstr "Aiuta AdRotate a crescere"
353
 
354
+ #: adrotate-output.php:846
355
+ msgid "Get more features with AdRotate Pro"
356
  msgstr "Ottieni più funzionalità con AdRotate Pro"
357
 
358
+ #: adrotate-output.php:852
359
  msgid ""
360
+ "If you need help, or have questions about AdRotate, the best and fastest way "
361
+ "to get your answer is via the AdRotate support forum. Usually I answer "
362
+ "questions the same day, often with a solution in the first answer."
363
  msgstr ""
364
+ "Se hai bisogno di aiuto o hai domande su AdRotate, il modo migliore e più "
365
+ "veloce per ottenere la risposta è tramite il forum di supporto AdRotate. Di "
366
+ "solito rispondo alle domande lo stesso giorno, spesso con una soluzione "
367
+ "nella prima risposta."
368
 
369
+ #: adrotate-output.php:853
370
+ msgid "AdRotate Manuals"
371
+ msgstr "Manuali AdRotate"
372
 
373
+ #: adrotate-output.php:853
374
+ msgid "Support Forums"
375
+ msgstr "Forum di supporto"
376
 
377
+ #: adrotate-output.php:854
 
 
 
 
378
  msgid ""
379
+ "When posting on the forum, please include a brief description of the "
380
+ "problem, include any errors or symptoms. Often it helps if you try to "
381
+ "explain what you are trying to do. Providing some extra information always "
382
+ "helps with gettng a better answer or advise."
383
  msgstr ""
384
+ "Quando pubblichi sul forum, includi una breve descrizione del problema, "
385
+ "includi eventuali errori o sintomi. Spesso aiuta se provi a spiegare cosa "
386
+ "stai cercando di fare. Fornire alcune informazioni extra aiuta sempre a "
387
+ "ottenere una risposta o un consiglio migliore."
388
 
389
+ #: adrotate-output.php:856
390
+ msgid ""
391
+ "Consider writing a review, sharing AdRotate in Social media or making a "
392
+ "donation if you like the plugin or if you find it useful. Writing a review "
393
+ "and sharing AdRotate on social media costs you nothing but doing so is super "
394
+ "helpful as promotion which helps to ensure future development."
395
+ msgstr ""
396
+ "Prendi in considerazione la possibilità di scrivere una recensione, "
397
+ "condividere AdRotate sui social media o fare una donazione se ti piace il "
398
+ "plugin o se lo trovi utile. Scrivere una recensione e condividere AdRotate "
399
+ "sui social media non ti costa altro che farlo è super utile come promozione "
400
+ "che aiuta a garantire lo sviluppo futuro."
401
+
402
+ #: adrotate-output.php:857
403
+ msgid "Post Tweet"
404
+ msgstr "Pubblica Tweet"
405
+
406
+ #: adrotate-output.php:857
407
+ msgid "Share on Facebook"
408
+ msgstr "Condividi su Facebook"
409
+
410
+ #: adrotate-output.php:857
411
+ msgid "Write review on WordPress.org"
412
+ msgstr "Scrivi una recensione su WordPress.org"
413
+
414
+ #: adrotate-output.php:858
415
+ msgid "Thank you very much for your help and support!"
416
+ msgstr "Grazie mille per il vostro aiuto e supporto!"
417
+
418
+ #: adrotate-output.php:863
419
+ msgid ""
420
+ "AdRotate Professional has a lot more functions for even better advertising "
421
+ "management. Check out the feature comparison tab on any of the product pages "
422
+ "to see what AdRotate Pro has to offer for you!"
423
  msgstr ""
424
+ "AdRotate Professional ha molte più funzioni per una migliore gestione della "
425
+ "pubblicità. Dai un'occhiata alla scheda di confronto delle funzionalità in "
426
+ "una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
427
+ "offrire per te!"
428
 
429
+ #: adrotate-output.php:863
430
+ msgid "Compare Licenses"
431
+ msgstr "Confronta le licenze"
432
+
433
+ #: adrotate-output.php:864
434
+ msgid "Single License"
435
+ msgstr "Licenza singola"
436
+
437
+ #: adrotate-output.php:864
438
+ msgid "Use on ONE WordPress installation."
439
+ msgstr "Utilizzare su un'installazione WordPress."
440
+
441
+ #: adrotate-output.php:864 adrotate-output.php:865
442
+ msgid "Buy now"
443
+ msgstr "Acquista ora"
444
+
445
+ #: adrotate-output.php:865
446
+ msgid "Multi License"
447
+ msgstr "Licenza multipla"
448
+
449
+ #: adrotate-output.php:865
450
+ msgid "Use on up to FIVE WordPress installations."
451
+ msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
452
 
453
  #: adrotate-statistics.php:155
454
  msgid "January"
560
  msgid "Fill in the ID of the type you want to display!"
561
  msgstr "Inserire l'ID del tipo che si desidera visualizzare!"
562
 
563
+ #: adrotate.php:105 adrotate.php:175
 
 
 
 
 
 
 
 
564
  msgid "Manage Adverts"
565
  msgstr "Gestisci Inserzioni"
566
 
567
+ #: adrotate.php:106 adrotate.php:301 dashboard/publisher/groups-main.php:12
568
  msgid "Manage Groups"
569
  msgstr "Gestisci Gruppi"
570
 
571
+ #: adrotate.php:107 adrotate.php:339 dashboard/publisher/schedules-main.php:12
572
  msgid "Manage Schedules"
573
  msgstr "Gestisci pianificazioni"
574
 
575
+ #: adrotate.php:108
576
  msgid "Manage Media"
577
  msgstr "Gestisci Media"
578
 
579
+ #: adrotate.php:109 adrotate.php:503 dashboard/adrotatepro.php:98
580
+ #: dashboard/publisher/adverts-edit.php:178
581
  #: dashboard/publisher/statistics-main.php:23
582
  #: dashboard/settings/statistics.php:17
583
  msgid "Statistics"
584
  msgstr "Statistiche"
585
 
586
+ #: adrotate.php:110 adrotate.php:238 adrotate.php:309
587
+ msgid "Get AdRotate Pro"
588
+ msgstr "Ottieni AdRotate Pro"
589
+
590
+ #: adrotate.php:111
591
  msgid "Support"
592
  msgstr "Supporto"
593
 
594
+ #: adrotate.php:112
595
  msgid "Settings"
596
  msgstr "Impostazioni"
597
 
598
+ #: adrotate.php:131
 
 
 
 
599
  msgid "Get AdRotate Professional"
600
  msgstr "Ottieni AdRotate Professional"
601
 
602
+ #: adrotate.php:235 adrotate.php:307
603
  msgid "Manage"
604
  msgstr "Gestisci"
605
 
606
+ #: adrotate.php:236
607
  msgid "Advert Generator"
608
  msgstr "Generatore pubblicitario"
609
 
610
+ #: adrotate.php:237 dashboard/publisher/adverts-edit.php:108
611
  msgid "New Advert"
612
  msgstr "Nuova inserzione"
613
 
614
+ #: adrotate.php:308
615
  msgid "Add New"
616
  msgstr "Aggiungi Nuovo"
617
 
618
+ #: adrotate.php:376
619
  msgid "Manage Media and Assets"
620
  msgstr "Gestire supporti e risorse"
621
 
622
+ #: adrotate.php:380
623
  msgid ""
624
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
625
  "if you have HTML5 adverts containing multiple files."
627
  "Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
628
  "utile se si dispone di annunci HTML5 contenenti più file."
629
 
630
+ #: adrotate.php:422
631
  msgid "Advert Statistics"
632
  msgstr "Statistiche delle inserzioni"
633
 
634
+ #: adrotate.php:465
635
  msgid "AdRotate Support"
636
  msgstr "Supporto per AdRotate"
637
 
638
+ #: adrotate.php:496
639
  msgid "AdRotate Settings"
640
  msgstr "Impostazioni AdRotate"
641
 
642
+ #: adrotate.php:501 dashboard/publisher/statistics-main.php:28
643
  msgid "General"
644
  msgstr "Generale"
645
 
646
+ #: adrotate.php:502 dashboard/settings/notifications.php:18
647
  msgid "Notifications"
648
  msgstr "Notifiche"
649
 
650
+ #: adrotate.php:504 dashboard/publisher/groups-edit.php:205
 
651
  msgid "Geo Targeting"
652
  msgstr "Geo Targeting"
653
 
654
+ #: adrotate.php:505 dashboard/settings/roles.php:17
 
 
 
 
655
  msgid "Access Roles"
656
  msgstr "Ruoli di accesso"
657
 
658
+ #: adrotate.php:506 dashboard/settings/misc.php:16
659
  msgid "Miscellaneous"
660
  msgstr "Varie"
661
 
662
+ #: adrotate.php:507 dashboard/settings/maintenance.php:16
663
  msgid "Maintenance"
664
  msgstr "Manutenzione"
665
 
799
  "inserzionisti creano nuove inserzioni. Selezionare fino a tre indirizzi di "
800
  "posta elettronica per la notifica. Non perdere mai più una data di scadenza."
801
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
802
  #: dashboard/publisher/adverts-disabled.php:15
803
  msgid "Disabled Adverts"
804
  msgstr "Inserzioni Disabilitate"
812
  msgstr "Azioni in blocco"
813
 
814
  #: dashboard/publisher/adverts-disabled.php:21
815
+ #: dashboard/publisher/adverts-edit.php:186
816
  msgid "Activate"
817
  msgstr "Attiva"
818
 
838
  msgstr "Vai"
839
 
840
  #: dashboard/publisher/adverts-disabled.php:35
841
+ #: dashboard/publisher/adverts-edit.php:263
842
  #: dashboard/publisher/adverts-error.php:39
843
  #: dashboard/publisher/adverts-main.php:39
844
  #: dashboard/publisher/groups-edit.php:350
855
  msgstr "Inizio / Fine"
856
 
857
  #: dashboard/publisher/adverts-disabled.php:37
858
+ #: dashboard/publisher/adverts-edit.php:116
859
+ #: dashboard/publisher/adverts-edit.php:264
860
  #: dashboard/publisher/adverts-error.php:40
861
  #: dashboard/publisher/adverts-main.php:41
862
  #: dashboard/publisher/groups-edit.php:65
958
  "di ripristinare l'immagine e salvare nuovamente l'annuncio!"
959
 
960
  #: dashboard/publisher/adverts-edit.php:62
 
 
 
 
 
 
961
  msgid ""
962
+ "This kind of advert can not have statistics enabled in AdRotate. Impression "
963
+ "counting is available in AdRotate Pro."
964
  msgstr ""
965
+ "Questo tipo di annuncio non può avere statistiche abilitate in AdRotate. Il "
966
+ "conteggio delle impressioni è disponibile in AdRotate Pro."
967
 
968
+ #: dashboard/publisher/adverts-edit.php:67
969
  msgid "This advert is expired and currently not shown on your website!"
970
  msgstr ""
971
  "Questa inserzione è scaduta e attualmente non viene mostrata sul tuo sito "
972
  "web!"
973
 
974
+ #: dashboard/publisher/adverts-edit.php:70
975
  msgid "The advert will expire in less than 2 days!"
976
  msgstr "L'inserzione scadrà tra meno di 2 giorni!"
977
 
978
+ #: dashboard/publisher/adverts-edit.php:73
979
  msgid "This advert will expire in less than 7 days!"
980
  msgstr "Questa inserzione scadrà tra meno di 7 giorni!"
981
 
982
+ #: dashboard/publisher/adverts-edit.php:76
983
  msgid "This advert has been disabled and does not rotate on your site!"
984
  msgstr "Questa inserzione è stata disabilitata e non ruota sul tuo sito!"
985
 
986
+ #: dashboard/publisher/adverts-edit.php:79
987
+ msgid ""
988
+ "AdRotate cannot find an error but the advert is marked erroneous, try re-"
989
+ "saving the ad!"
990
+ msgstr ""
991
+ "AdRotate non riesce a trovare un errore ma l'annuncio è contrassegnato come "
992
+ "errato, prova a salvare di nuovo l'annuncio!"
993
+
994
+ #: dashboard/publisher/adverts-edit.php:83
995
+ msgid "This advert still uses the %image% tag. Please change it to %asset%!"
996
+ msgstr ""
997
+ "Questa pubblicità utilizza ancora il %image% tag. Cambiarlo in %asset%!"
998
+
999
+ #: dashboard/publisher/adverts-edit.php:110
1000
  msgid "Edit Advert"
1001
  msgstr "Modifica annuncio"
1002
 
1003
+ #: dashboard/publisher/adverts-edit.php:125
1004
  msgid "AdCode"
1005
  msgstr "AdCode"
1006
 
1007
+ #: dashboard/publisher/adverts-edit.php:130
1008
  msgid "Basic Examples:"
1009
  msgstr "Esempi di base:"
1010
 
1011
+ #: dashboard/publisher/adverts-edit.php:131
1012
  msgid "Click any of the examples to use it."
1013
  msgstr "Fare clic su uno degli esempi per utilizzarlo."
1014
 
1015
+ #: dashboard/publisher/adverts-edit.php:140
1016
  msgid "Useful tags"
1017
  msgstr "Tag utili"
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:142
1020
  msgid "Insert the advert ID Number."
1021
  msgstr "Inserisci il numero ID dell'inserzione."
1022
 
1023
+ #: dashboard/publisher/adverts-edit.php:142
1024
  msgid "Use this tag when selecting a image below."
1025
  msgstr "Utilizzare questo tag quando si seleziona un'immagine di seguito."
1026
 
1027
+ #: dashboard/publisher/adverts-edit.php:142
1028
  msgid "Insert the advert name."
1029
  msgstr "Inserisci il nome dell'inserzione."
1030
 
1031
+ #: dashboard/publisher/adverts-edit.php:142
1032
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1033
  msgstr ""
1034
  "Inserire una stringa casuale. Utile per le inserzioni di tipo DFP/"
1035
  "DoubleClick."
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:142
1038
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1039
  msgstr ""
1040
  "Aggiungi all'interno del tag &lt;a&gt; per aprire l'inserzione in una nuova "
1041
  "finestra."
1042
 
1043
+ #: dashboard/publisher/adverts-edit.php:142
1044
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1045
  msgstr ""
1046
  "Aggiungere all'interno del tag &lt;a&gt; per indicare ai crawler di ignorare "
1047
  "questo collegamento."
1048
 
1049
+ #: dashboard/publisher/adverts-edit.php:143
1050
  msgid ""
1051
  "Place the cursor where you want to add a tag and click to add it to your "
1052
  "AdCode."
1054
  "Posiziona il cursore nel punto in cui desideri aggiungere un tag e fai clic "
1055
  "per aggiungerlo al tuo AdCode."
1056
 
1057
+ #: dashboard/publisher/adverts-edit.php:148
1058
  msgid "Preview"
1059
  msgstr "Anteprima"
1060
 
1061
+ #: dashboard/publisher/adverts-edit.php:151
1062
  msgid ""
1063
  "Note: While this preview is an accurate one, it might look different then it "
1064
  "does on the website."
1066
  "Nota: Anche se questa anteprima è accurata, potrebbe sembrare diversa dal "
1067
  "sito web."
1068
 
1069
+ #: dashboard/publisher/adverts-edit.php:152
1070
  msgid ""
1071
  "This is because of CSS differences. Your themes CSS file is not active here!"
1072
  msgstr ""
1073
  "Ciò è dovuto alle differenze CSS. Il tuo file CSS temi non è attivo qui!"
1074
 
1075
+ #: dashboard/publisher/adverts-edit.php:157
1076
  msgid "Banner asset"
1077
  msgstr "Elemento Banner"
1078
 
1079
+ #: dashboard/publisher/adverts-edit.php:159
1080
  msgid "WordPress media:"
1081
  msgstr "WordPress media:"
1082
 
1083
+ #: dashboard/publisher/adverts-edit.php:159
1084
  msgid "Select Banner"
1085
  msgstr "Selezionare il Banner"
1086
 
1087
+ #: dashboard/publisher/adverts-edit.php:161
1088
  msgid "- OR -"
1089
  msgstr "- O -"
1090
 
1091
+ #: dashboard/publisher/adverts-edit.php:162
1092
  msgid "Banner folder:"
1093
  msgstr "Cartella Banner:"
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:163
1096
  msgid "No image selected"
1097
  msgstr "Nessuna immagine selezionata"
1098
 
1099
+ #: dashboard/publisher/adverts-edit.php:173
1100
  msgid "Use %asset% in the adcode instead of the file path."
1101
  msgstr "Utilizza %asset% nell'AdCode invece del percorso al file."
1102
 
1103
+ #: dashboard/publisher/adverts-edit.php:173
1104
  msgid ""
1105
  "Use either the text field or the dropdown. If the textfield has content that "
1106
  "field has priority."
1108
  "Utilizzare il campo di testo o l'elenco a discesa. Se il campo di testo ha "
1109
  "contenuto, il campo ha la priorità."
1110
 
1111
+ #: dashboard/publisher/adverts-edit.php:180
1112
+ msgid "Count clicks and impressions."
1113
+ msgstr "Conta clic e impressioni."
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:181
1116
  msgid ""
1117
+ "Click counting does not work for Javascript/html5 adverts such as those "
1118
+ "provided by Google AdSense/DFP/DoubleClick."
 
1119
  msgstr ""
1120
+ "Il conteggio dei clic non funziona per gli annunci Javascript / html5 come "
1121
+ "quelli forniti da Google AdSense / DFP / DoubleClick."
 
1122
 
1123
+ #: dashboard/publisher/adverts-edit.php:189
1124
  msgid "Enabled, this ad will be visible"
1125
  msgstr "Abilitato, questo annuncio sarà visibile"
1126
 
1127
+ #: dashboard/publisher/adverts-edit.php:190
1128
  msgid "Disabled, do not show this advert anywhere"
1129
  msgstr "Disabilitato, non mostrare questo annuncio da nessuna parte"
1130
 
1131
+ #: dashboard/publisher/adverts-edit.php:196
1132
  msgid ""
1133
  "Target your audience with Geo Targeting and easily select which devices and "
1134
  "mobile operating systems the advert should show on with AdRotate Pro!"
1137
  "dispositivi e sistemi operativi mobili l'annuncio dovrebbe mostrare con "
1138
  "AdRotate Pro!"
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:196
1141
+ #: dashboard/publisher/adverts-edit.php:234
1142
  #: dashboard/publisher/groups-edit.php:227
 
 
 
1143
  msgid "Upgrade now"
1144
  msgstr "Aggiorna adesso"
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:198
1147
  msgid "Schedule your advert"
1148
  msgstr "Pianifica la tua inserzione"
1149
 
1150
+ #: dashboard/publisher/adverts-edit.php:199
1151
  msgid ""
1152
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1153
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1157
  "tienilo a mente: se l'ora di inizio o di fine è dopo pranzo, aggiungi 12 "
1158
  "ore. 2PM è 14:00 ore. 6AM è 6:00 ore."
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:203
1161
  msgid "Start date"
1162
  msgstr "Data di inizio"
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:207
1165
  msgid "End date"
1166
  msgstr "Data fine"
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:213
1169
  msgid "Start time"
1170
  msgstr "Ora di inizio"
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:218
1173
  msgid "End time"
1174
  msgstr "Ora fine"
1175
 
1176
+ #: dashboard/publisher/adverts-edit.php:226
1177
  msgid "Maximum Clicks"
1178
  msgstr "Numero massimo di clic"
1179
 
1180
+ #: dashboard/publisher/adverts-edit.php:227
1181
+ #: dashboard/publisher/adverts-edit.php:229
1182
  msgid "Leave empty or 0 to skip this."
1183
  msgstr "Lasciare vuoto o 0 per ignorare questa opzione."
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:228
1186
  msgid "Maximum Impressions"
1187
  msgstr "Numero massimo di impressioni"
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:234
1190
  msgid ""
1191
  "Plan ahead and create multiple and more advanced schedules for each advert "
1192
  "with AdRotate Pro."
1194
  "Crea pianificazioni multiple e più avanzate per ogni inserzione con AdRotate "
1195
  "Pro."
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:236
1198
  #: dashboard/publisher/groups-edit.php:157
1199
  #: dashboard/publisher/groups-edit.php:302
1200
  msgid "Usage"
1201
  msgstr "Utilizzo"
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:240
1204
  #: dashboard/publisher/groups-edit.php:161
1205
  #: dashboard/publisher/groups-edit.php:306
1206
  msgid "Widget"
1207
  msgstr "Widget"
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:241
1210
  msgid ""
1211
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1212
  "and select the advert or the group the advert is in."
1214
  "Trascina il widget AdRotate nella sidebar in cui vuoi mettere l'inserzione e "
1215
  "seleziona questa o il gruppo in cui l'inserzione si trova."
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:244
1218
  #: dashboard/publisher/groups-edit.php:165
1219
  #: dashboard/publisher/groups-edit.php:310
1220
  msgid "In a post or page"
1221
  msgstr "In un post o in una pagina"
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:246
1224
  #: dashboard/publisher/groups-edit.php:167
1225
  #: dashboard/publisher/groups-edit.php:312
1226
  msgid "Directly in a theme"
1227
  msgstr "Direttamente in un tema"
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:253
1230
+ #: dashboard/publisher/adverts-edit.php:296
1231
  msgid "Save Advert"
1232
  msgstr "Salva inserzione"
1233
 
1234
+ #: dashboard/publisher/adverts-edit.php:254
1235
+ #: dashboard/publisher/adverts-edit.php:297
1236
  #: dashboard/publisher/adverts-generator.php:148
1237
  #: dashboard/publisher/groups-edit.php:175
1238
  #: dashboard/publisher/groups-edit.php:320
1240
  msgid "Cancel"
1241
  msgstr "Annulla"
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:258
1244
  msgid "Select Groups"
1245
  msgstr "Seleziona gruppi"
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:265
1248
+ #: dashboard/publisher/groups-main.php:34
1249
+ #: dashboard/publisher/schedules-main.php:34
1250
+ #: dashboard/publisher/statistics-main.php:35
1251
+ msgid "Adverts"
1252
+ msgstr "Pubblicità"
1253
+
1254
+ #: dashboard/publisher/adverts-edit.php:274
1255
  #: dashboard/publisher/groups-main.php:60
1256
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1257
  msgid "Default"
1258
  msgstr "Predefinito"
1259
 
1260
+ #: dashboard/publisher/adverts-edit.php:275
1261
  #: dashboard/publisher/groups-main.php:61
1262
  msgid "Dynamic"
1263
  msgstr "Dinamico"
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:275
1266
  #: dashboard/publisher/groups-main.php:61
1267
  msgid "second rotation"
1268
  msgstr "seconda rotazione"
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:276
1271
  #: dashboard/publisher/groups-main.php:62
1272
  msgid "Block"
1273
  msgstr "Blocco"
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:276
1276
  #: dashboard/publisher/groups-main.php:62
1277
  msgid "grid"
1278
  msgstr "griglia"
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:277
1281
  #: dashboard/publisher/groups-edit.php:234
1282
  #: dashboard/publisher/groups-main.php:63
1283
  msgid "Post Injection"
1284
  msgstr "Post iniezione"
1285
 
1286
+ #: dashboard/publisher/adverts-edit.php:278
1287
  msgid "Geolocation"
1288
  msgstr "Geolocalizzazione"
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:285
1291
  #: dashboard/publisher/groups-edit.php:74
1292
  #: dashboard/publisher/groups-main.php:70
1293
  msgid "Mode"
1294
  msgstr "Modalità"
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:302
1297
  #: dashboard/publisher/adverts-generator.php:131
1298
  msgid "Portability"
1299
  msgstr "Portabilità"
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:303
1302
  msgid ""
1303
  "This long code is your advert. It includes all settings from above except "
1304
  "the schedule and group selection. You can import this hash into another "
1315
  "l'intera cosa. Puoi incollare l'hash nel campo 'Hash annuncio' nel "
1316
  "generatore di annunci di un'altra configurazione AdRotate."
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:307
1319
  #: dashboard/publisher/adverts-generator.php:137
1320
  msgid "Advert hash"
1321
  msgstr "Hash dell'annuncio"
1723
  msgid "Get access to all features in AdRotate Pro."
1724
  msgstr "Accedi a tutte le funzioni di AdRotate Pro."
1725
 
1726
+ #: dashboard/publisher/groups-edit.php:155
1727
+ msgid "Upgrade today"
1728
+ msgstr "Aggiorna oggi stesso"
1729
+
1730
  #: dashboard/publisher/groups-edit.php:162
1731
  #: dashboard/publisher/groups-edit.php:307
1732
  msgid ""
2187
  "Tutte le statistiche sono indicative. Essi non riflettono i risultati "
2188
  "conteggiati da altre parti."
2189
 
 
 
 
 
 
 
2190
  #: dashboard/publisher/statistics-group.php:46
2191
  msgid "Statistics for group"
2192
  msgstr "Statistiche per il gruppo"
2195
  msgid "Adverts counting stats"
2196
  msgstr "Statistiche di conteggio delle inserzioni"
2197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2198
  #: dashboard/settings/general.php:17
2199
  msgid "General Settings"
2200
  msgstr "Impostazioni generali"
2208
  msgstr "Alcune opzioni sono disponibili solo in AdRotate Pro!"
2209
 
2210
  #: dashboard/settings/general.php:21
2211
+ msgid "Duplicate adverts"
2212
+ msgstr "Inserzioni duplicate"
2213
 
2214
  #: dashboard/settings/general.php:22
2215
  msgid ""
2216
+ "Try and prevent adverts in groups that are in Default or Block mode from "
2217
+ "showing multiple times on the same page load."
2218
+ msgstr ""
2219
+ "Cerca di impedire che gli annunci nei gruppi in Modalità predefinita o in un "
2220
+ "Blocco vengano visualizzati più volte durante il caricamento della stessa "
2221
+ "pagina."
2222
+
2223
+ #: dashboard/settings/general.php:23
2224
+ msgid ""
2225
+ "If you still notice double adverts from groups placed on a page, start with "
2226
+ "carefully looking at your setup to make sure you did not cause this yourself."
2227
  msgstr ""
2228
+ "Se noti ancora doppi annunci di gruppi inseriti in una pagina, inizia "
2229
+ "esaminando attentamente la tua configurazione per assicurarti di non averlo "
2230
+ "causato tu stesso."
2231
 
2232
+ #: dashboard/settings/general.php:23
2233
+ msgid "On some servers $_SESSION is disabled."
2234
+ msgstr "Su alcuni server la variabile $_SESSION è disabilitata."
2235
 
2236
+ #: dashboard/settings/general.php:23
2237
  msgid ""
2238
+ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. However, "
2239
+ "most people will not need this extra plugin!"
2240
  msgstr ""
2241
+ "Un plugin chiamato \"WP Session Manager\" di Eric Mann potrebbe risolvere "
2242
+ "questo problema. Tuttavia, la maggior parte delle persone non avrà bisogno "
2243
+ "di questo plugin aggiuntivo!"
2244
+
2245
+ #: dashboard/settings/general.php:26
2246
+ msgid "Shortcode in widgets"
2247
+ msgstr "Shortcode nei widget"
2248
 
2249
+ #: dashboard/settings/general.php:27
2250
+ msgid ""
2251
+ "Try and activate shortcodes in text widgets if your theme does not add "
2252
+ "support for it by itself. (This does not always work!)"
2253
+ msgstr ""
2254
+ "Prova ad attivare gli shortcode nei widget di testo se il tuo tema non "
2255
+ "aggiunge il supporto da solo. (Questo non sempre funziona!)"
2256
 
2257
  #: dashboard/settings/general.php:30
2258
+ msgid "Advert live preview"
2259
+ msgstr "Anteprima live dell'inserzione"
2260
+
2261
+ #: dashboard/settings/general.php:31
2262
  msgid ""
2263
+ "Disable live previews for adverts if you have faulty adverts that overflow "
2264
+ "their designated area while creating/editing adverts."
2265
  msgstr ""
2266
+ "Disabilita le anteprime live delle inserzioni se hai degli annunci difettosi "
2267
+ "che escono fuori dall'area loro assegnata quando si creano/modificano degli "
2268
+ "annunci."
2269
+
2270
+ #: dashboard/settings/general.php:34
2271
+ msgid "Dynamic mode on mobile"
2272
+ msgstr "Modalità dinamica per dispositivi mobili"
2273
 
2274
+ #: dashboard/settings/general.php:35
2275
+ msgid ""
2276
+ "Disable dynamic mode in groups for mobile devices if you notice skipping or "
2277
+ "jumpy content."
2278
+ msgstr ""
2279
+ "Disabilita la modalità dinamica nei gruppi per dispositivi mobili se la tua "
2280
+ "inserzione salta dei contenuti."
2281
+
2282
+ #: dashboard/settings/general.php:38
2283
  msgid "Load jQuery"
2284
  msgstr "Carica jQuery"
2285
 
2286
+ #: dashboard/settings/general.php:39
2287
  msgid ""
2288
+ "Load jQuery if your theme does not load it already. jQuery is required for "
2289
+ "dynamic groups, statistics and some other features."
2290
  msgstr ""
2291
+ "Carica jQuery se il tuo tema non lo ha già caricato. jQuery è richiesto per "
2292
+ "i gruppi dinamici, le statistiche e alcune altre funzionalità."
2293
 
2294
+ #: dashboard/settings/general.php:42
2295
  msgid "Load scripts in footer?"
2296
  msgstr "Carico gli script nel footer?"
2297
 
2298
+ #: dashboard/settings/general.php:43
2299
+ msgid "Load all AdRotate Javascripts in the footer of your site."
 
 
2300
  msgstr ""
2301
+ "Abilita se vuoi caricare tutti i Javascript di AdRotate nel footer del tuo "
2302
+ "sito."
2303
 
2304
+ #: dashboard/settings/general.php:46
2305
  msgid "Adblock disguise"
2306
  msgstr "Travestimento di Adblock"
2307
 
2308
+ #: dashboard/settings/general.php:48
2309
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2310
  msgstr ""
2311
  "Lasciare vuoto per disabilitare. Utilizzare solo lettere con tappi "
2312
  "inferiori. Per esempio:"
2313
 
2314
+ #: dashboard/settings/general.php:49
2315
  msgid ""
2316
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2317
  msgstr ""
2318
  "Cerca te evitare i plugin adblock nella maggior parte dei browser moderni "
2319
  "quando usi gli shortcode."
2320
 
2321
+ #: dashboard/settings/general.php:49
2322
  msgid ""
2323
  "To also apply this feature to widgets, use a text widget with a shortcode "
2324
  "instead of the AdRotate widget."
2326
  "Per applicare questa funzione anche ai widget, utilizzate un widget di testo "
2327
  "con uno shortcode anziché il widget AdRotate."
2328
 
2329
+ #: dashboard/settings/general.php:49
2330
  msgid ""
2331
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2332
  "feature will have little effect!"
2334
  "Evitare l'uso di parole chiave o nomi di file evidenti nelle tue inserzioni "
2335
  "o questa funzione avrà poco effetto!"
2336
 
2337
+ #: dashboard/settings/general.php:54
2338
  msgid "Banner Folder"
2339
  msgstr "Cartella Banner"
2340
 
2341
+ #: dashboard/settings/general.php:55
2342
  msgid "Set a folder where your banner images will be stored."
2343
  msgstr ""
2344
  "Impostare una cartella in cui verranno memorizzate le immagini del banner."
2345
 
2346
+ #: dashboard/settings/general.php:58
2347
  msgid "Folder name"
2348
  msgstr "Nome cartella"
2349
 
2350
+ #: dashboard/settings/general.php:60
2351
  msgid "(Default: banners)."
2352
  msgstr "(Predefinito: banner)."
2353
 
2354
+ #: dashboard/settings/general.php:61
2355
  msgid ""
2356
  "To try and trick ad blockers you could set the folder to something crazy "
2357
  "like:"
2359
  "Per cercare di ingannare gli ad blocker si potrebbe impostare la cartella a "
2360
  "qualcosa di folle come:"
2361
 
2362
+ #: dashboard/settings/general.php:62
2363
  msgid ""
2364
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2365
  "will show errors when the folder is missing."
2367
  "Questa cartella non verrà creata automaticamente se non esiste. AdRotate "
2368
  "mostrerà gli errori quando la cartella è mancante."
2369
 
2370
+ #: dashboard/settings/general.php:67
2371
  msgid "Bot filter"
2372
  msgstr "Filtro bot"
2373
 
2374
+ #: dashboard/settings/general.php:68
2375
  msgid "The bot filter is used for the AdRotate stats tracker."
2376
  msgstr ""
2377
  "Il filtro bot viene utilizzato per il rilevamento delle statistiche AdRotate."
2378
 
2379
+ #: dashboard/settings/general.php:71
2380
  msgid "User-Agent Filter"
2381
  msgstr "Filtro agente utente"
2382
 
2383
+ #: dashboard/settings/general.php:74
2384
  msgid ""
2385
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2386
  msgstr ""
2387
  "Elenco di parole chiave separate da virgole. Escludere bot/crawler/user-"
2388
  "agent."
2389
 
2390
+ #: dashboard/settings/general.php:75
2391
  msgid ""
2392
  "Keep in mind that this might give false positives. The word 'fire' also "
2393
  "matches 'firefox', but not vice-versa. So be careful!"
2395
  "Tenete a mente che questo potrebbe dare falsi positivi. La parola \"fuoco\" "
2396
  "corrisponde anche a 'firefox', ma non viceversa. Quindi state attenti!"
2397
 
2398
+ #: dashboard/settings/general.php:76
2399
  msgid ""
2400
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2401
  "characters are stripped out."
2403
  "Sono consentite solo le parole con caratteri alfanumerici e [ - _ ]. Tutti "
2404
  "gli altri personaggi vengono rimossi."
2405
 
2406
+ #: dashboard/settings/general.php:77
2407
  msgid ""
2408
  "Additionally to the list specified here, empty User-Agents are blocked as "
2409
  "well."
2411
  "Oltre all'elenco specificato qui, vengono bloccati anche gli agenti utente "
2412
  "vuoti."
2413
 
2414
+ #: dashboard/settings/general.php:77
2415
  msgid "Learn more about"
2416
  msgstr "Ulteriori informazioni su"
2417
 
2418
+ #: dashboard/settings/general.php:77
2419
  msgid "user-agents"
2420
  msgstr "agenti di utenti"
2421
 
2422
+ #: dashboard/settings/general.php:83 dashboard/settings/maintenance.php:107
2423
+ #: dashboard/settings/misc.php:47 dashboard/settings/notifications.php:72
2424
+ #: dashboard/settings/roles.php:55 dashboard/settings/statistics.php:85
2425
+ msgid "Update Options"
2426
+ msgstr "Aggiorna Opzioni"
2427
+
2428
  #: dashboard/settings/geotargeting.php:17
2429
  msgid "Geo Targeting - Available in AdRotate Pro"
2430
  msgstr "Targeting geografico - Disponibile in AdRotate Pro"
2536
  "risponde e lento."
2537
 
2538
  #: dashboard/settings/maintenance.php:22
2539
+ msgid "Check for errors"
2540
+ msgstr "Verificare la disponibilità di errori"
 
2541
 
2542
  #: dashboard/settings/maintenance.php:22
2543
  msgid "You are about to check all adverts for errors."
2559
  msgstr "Pulire database e file"
2560
 
2561
  #: dashboard/settings/maintenance.php:30
2562
+ msgid "Run Clean-up"
2563
+ msgstr "Esegui Clean-up"
2564
 
2565
  #: dashboard/settings/maintenance.php:30
2566
  msgid "You are about to do maintenance on your setup of AdRotate."
3095
 
3096
  #: dashboard/settings/statistics.php:48
3097
  msgid ""
3098
+ "The settings below are for the local tracker and have no effect when using "
3099
+ "Google Analytics or Matomo."
3100
  msgstr ""
3101
+ "Le impostazioni riportate di seguito sono per il tracker locale e non hanno "
3102
+ "alcun effetto quando si utilizza Google Analytics o Matomo."
3103
 
3104
  #: dashboard/settings/statistics.php:51
3105
+ msgid "Admin stats"
3106
+ msgstr "Statistiche di amministrazione"
3107
+
3108
+ #: dashboard/settings/statistics.php:53
3109
+ msgid "Track statistics from admin users."
3110
+ msgstr "Tieni traccia delle statistiche degli utenti amministratori."
3111
+
3112
+ #: dashboard/settings/statistics.php:57
3113
  msgid "Logged in impressions"
3114
  msgstr "Impressioni registrate"
3115
 
3116
+ #: dashboard/settings/statistics.php:59
3117
  msgid "Track impressions from logged in users."
3118
  msgstr ""
3119
  "Tieni traccia delle impressioni degli utenti che hanno effettuato l'accesso."
3120
 
3121
+ #: dashboard/settings/statistics.php:63
3122
  msgid "Logged in clicks"
3123
  msgstr "Clic registrate"
3124
 
3125
+ #: dashboard/settings/statistics.php:65
3126
  msgid "Track clicks from logged in users."
3127
  msgstr "Tieni traccia dei clic degli utenti connessi."
3128
 
3129
+ #: dashboard/settings/statistics.php:69
3130
  msgid "Impression timer"
3131
  msgstr "Timer impressioni"
3132
 
3133
+ #: dashboard/settings/statistics.php:71 dashboard/settings/statistics.php:78
3134
  msgid "Seconds."
3135
  msgstr "Secondi."
3136
 
3137
+ #: dashboard/settings/statistics.php:72
3138
  msgid "Default: 60."
3139
  msgstr "Valore predefinito: 60."
3140
 
3141
+ #: dashboard/settings/statistics.php:72
3142
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3143
  msgstr ""
3144
  "Questo numero non può essere vuoto, essere inferiore a 10 o superiore a 3600 "
3145
  "(1 ora)."
3146
 
3147
+ #: dashboard/settings/statistics.php:76
3148
  msgid "Click timer"
3149
  msgstr "Timer click"
3150
 
3151
+ #: dashboard/settings/statistics.php:79
3152
  msgid "Default: 86400."
3153
  msgstr "Default: 86400."
3154
 
3155
+ #: dashboard/settings/statistics.php:79
3156
  msgid ""
3157
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3158
  msgstr ""
3225
  msgid "Premium Support is available in AdRotate Pro!"
3226
  msgstr "Premium Support è disponibile in AdRotate Pro!"
3227
 
3228
+ #~ msgid "Check all adverts for configuration errors"
3229
+ #~ msgstr ""
3230
+ #~ "Controllare la presenza di errori di configurazione per tutte le "
3231
+ #~ "inserzioni"
3232
+
3233
+ #~ msgid "Clean-up database and old files"
3234
+ #~ msgstr "Database di pulizia e vecchi file"
3235
+
3236
+ #~ msgid "More features with AdRotate Pro"
3237
+ #~ msgstr "Ottieni più funzionalità con AdRotate Pro"
3238
+
3239
+ #~ msgid ""
3240
+ #~ "Many users only think to review AdRotate when something goes wrong while "
3241
+ #~ "thousands of people happily use AdRotate."
3242
+ #~ msgstr ""
3243
+ #~ "Molti utenti pensano solo di rivedere AdRotate quando qualcosa va storto, "
3244
+ #~ "mentre migliaia di persone usano felicemente AdRotate."
3245
+
3246
+ #~ msgid "If you find AdRotate useful please leave your"
3247
+ #~ msgstr "Se ritieni utile AdRotate, lascia il tuo"
3248
+
3249
+ #~ msgid "rating"
3250
+ #~ msgstr "valutazione"
3251
+
3252
+ #~ msgid "on WordPress.org to help AdRotate grow in a positive way"
3253
+ #~ msgstr "su WordPress.org per aiutare AdRotate a crescere in modo positivo"
3254
+
3255
+ #~ msgid ""
3256
+ #~ "Get more advanced features such as Geo Targeting, scheduling and much "
3257
+ #~ "more with AdRotate Pro."
3258
+ #~ msgstr ""
3259
+ #~ "Ottieni funzionalità più avanzate come Geo Targeting, pianificazione e "
3260
+ #~ "molto altro con AdRotate Pro."
3261
+
3262
+ #~ msgid "Get access to premium support and free updates for one year!"
3263
+ #~ msgstr ""
3264
+ #~ "Ottieni l'accesso al supporto premium e agli aggiornamenti gratuiti per "
3265
+ #~ "un anno!"
3266
+
3267
+ #~ msgid "General Info"
3268
+ #~ msgstr "Informazioni generali"
3269
+
3270
+ #~ msgid "Advertisers"
3271
+ #~ msgstr "Inserzionisti"
3272
+
3273
+ #~ msgid "At a Glance"
3274
+ #~ msgstr "A prima vista"
3275
+
3276
+ #~ msgid "Your setup"
3277
+ #~ msgstr "La tua configurazione"
3278
+
3279
+ #~ msgid "Adverts that need you"
3280
+ #~ msgstr "Inserzioni che hanno bisogno di te"
3281
+
3282
+ #~ msgid "(Almost) Expired"
3283
+ #~ msgstr "(Quasi) Scaduto"
3284
+
3285
+ #~ msgid "Groups"
3286
+ #~ msgstr "Gruppi"
3287
+
3288
+ #~ msgid "Have errors"
3289
+ #~ msgstr "Errori"
3290
+
3291
+ #~ msgid "Use on TWO WordPress installations."
3292
+ #~ msgstr "Utilizzare su due installazioni WordPress."
3293
+
3294
+ #~ msgid "Developer License"
3295
+ #~ msgstr "Licenza Developer"
3296
+
3297
+ #~ msgid "Use on up to a HUNDRED WordPress installations and/or networks."
3298
+ #~ msgstr ""
3299
+ #~ "Utilizzare su un massimo di un HUNDRED WordPress installazioni e/o reti."
3300
+
3301
+ #~ msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
3302
+ #~ msgstr ""
3303
+ #~ "Il monitoraggio è abilitato ma non è stato trovato alcun link/tag valido "
3304
+ #~ "nell'adcode!"
3305
+
3306
+ #~ msgid "Enable click and impression tracking for this advert."
3307
+ #~ msgstr "Abilita il tracciamento di click e impressioni per questo annuncio."
3308
+
3309
+ #~ msgid ""
3310
+ #~ "Note: Clicktracking does not work for Javascript adverts such as those "
3311
+ #~ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
3312
+ #~ "always supported."
3313
+ #~ msgstr ""
3314
+ #~ "Nota: il clicktracking non funziona per le inserzioni Javascript come "
3315
+ #~ "quelle fornite da Google AdSense/DFP/DoubleClick. Gli annunci HTML5/Flash "
3316
+ #~ "non sono sempre supportati."
3317
+
3318
+ #~ msgid "Advertisers - Available in AdRotate Pro"
3319
+ #~ msgstr "Inserzionisti - Disponibile in AdRotate Pro"
3320
+
3321
+ #~ msgid "Enable advertisers so they can review and manage their own ads."
3322
+ #~ msgstr ""
3323
+ #~ "Abilita gli inserzionisti in modo che possano esaminare e gestire i "
3324
+ #~ "propri annunci."
3325
+
3326
+ #~ msgid "Enable Advertisers"
3327
+ #~ msgstr "Abilita inserzionisti"
3328
+
3329
+ #~ msgid "Allow adverts to be coupled to users (Advertisers)."
3330
+ #~ msgstr "Consenti l'accoppiare le inserzioni agli utenti (Inserzionisti)."
3331
+
3332
+ #~ msgid "Edit/update adverts"
3333
+ #~ msgstr "Modifica/aggiorna le inserzioni"
3334
+
3335
+ #~ msgid "Allow advertisers to add new or edit their adverts."
3336
+ #~ msgstr ""
3337
+ #~ "Consenti agli inserzionisti di aggiungere nuove inserzioni o di "
3338
+ #~ "modificarne."
3339
+
3340
+ #~ msgid "Mobile adverts"
3341
+ #~ msgstr "Inserzioni per dispositivi mobili"
3342
+
3343
+ #~ msgid "Allow advertisers to specify on which devices their ads will show."
3344
+ #~ msgstr ""
3345
+ #~ "Lascia agli inserzionisti di specificare su quali dispositivi vadano "
3346
+ #~ "mostrate le loro inserzioni."
3347
+
3348
+ #~ msgid ""
3349
+ #~ "Allow advertisers to specify where their ads will show. Geo Targeting has "
3350
+ #~ "to be enabled, too."
3351
+ #~ msgstr ""
3352
+ #~ "Consenti agli inserzionisti di specificare dove verranno pubblicati i "
3353
+ #~ "loro annunci. Anche il Targeting geografico deve essere abilitato."
3354
+
3355
+ #~ msgid "Advertiser role"
3356
+ #~ msgstr "Ruolo inserzionista"
3357
+
3358
+ #~ msgid "Create a seperate user role for your advertisers."
3359
+ #~ msgstr "Crea un ruolo utente separato per i tuoi inserzionisti."
3360
+
3361
+ #~ msgid ""
3362
+ #~ "Don't forget to give these users access to their advertiser dashboard via "
3363
+ #~ "the Roles tab."
3364
+ #~ msgstr ""
3365
+ #~ "Non dimenticare di concedere a questi utenti l'accesso alla dashboard "
3366
+ #~ "dell'inserzionista tramite la scheda Ruoli."
3367
+
3368
+ #~ msgid ""
3369
+ #~ "Enable this option to if your theme does not support shortcodes in the "
3370
+ #~ "WordPress text widget."
3371
+ #~ msgstr ""
3372
+ #~ "Abilita questa opzione se il tuo tema non supporta gli shortcode nei "
3373
+ #~ "widget di testo di WordPress."
3374
+
3375
+ #~ msgid "Disable dynamic mode"
3376
+ #~ msgstr "Disabilita la modalità dinamica"
3377
+
3378
  #~ msgid "Get started today"
3379
  #~ msgstr "Iniziate oggi stesso"
3380
 
3699
  #~ msgid "News & Updates"
3700
  #~ msgstr "News ed aggiornamenti"
3701
 
 
 
 
3702
  #~ msgid ""
3703
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3704
  #~ "Chances are your question has already been asked and answered!"
5193
  #~ msgid "Select Adverts"
5194
  #~ msgstr "Seleziona Inserzioni"
5195
 
 
 
 
5196
  #~ msgid "Period"
5197
  #~ msgstr "Periodo"
5198
 
5205
  #~ msgid "from"
5206
  #~ msgstr "da"
5207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5208
  #, fuzzy
5209
  #~ msgid "Lookups remaining"
5210
  #~ msgstr "Ricerche rimanenti"
5336
  #~ "Disattivare temporaneamente la crittografia nell'URL di reindirizzamento. "
5337
  #~ "Solo AdRotate Internal Tracker."
5338
 
 
 
 
 
5339
  #, fuzzy
5340
  #~ msgid "Send email notifications"
5341
  #~ msgstr "Inviare notifiche tramite posta elettronica"
5900
  #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
5901
  #~ "Vous obtiendraient une solution (en général) dans la journée."
5902
 
 
 
 
 
 
 
 
 
5903
  #, fuzzy
5904
  #~ msgid "Enable click tracking for this advert."
5905
  #~ msgstr "Activer le suivi des clicks pour cette publicité."
5992
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
5993
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
5994
 
 
 
 
 
 
 
 
 
5995
  #, fuzzy
5996
  #~ msgid ""
5997
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
language/adrotate-nl_NL.mo CHANGED
Binary file
language/adrotate-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-05-19 12:19-0500\n"
6
- "PO-Revision-Date: 2021-06-16 11:19-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
9
  "Language: nl\n"
@@ -17,31 +17,31 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:784
21
  msgid "Advert saved"
22
  msgstr "Advertentie opgeslagen"
23
 
24
- #: adrotate-functions.php:788
25
  msgid "Group saved"
26
  msgstr "Groep bewaard"
27
 
28
- #: adrotate-functions.php:792
29
  msgid "Banner image saved"
30
  msgstr "Advertentie afbeelding opgeslagen"
31
 
32
- #: adrotate-functions.php:796
33
  msgid "Ad(s) deleted"
34
  msgstr "Advertentie(s) verwijderd"
35
 
36
- #: adrotate-functions.php:800
37
  msgid "Group deleted"
38
  msgstr "Groep verwijderd"
39
 
40
- #: adrotate-functions.php:804
41
  msgid "Asset(s) deleted"
42
  msgstr "Asset(s) verwijderd"
43
 
44
- #: adrotate-functions.php:808
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
@@ -49,31 +49,31 @@ msgstr ""
49
  "Er is iets mis gegaan met het verwijderen van het bestand of de map. Zorg "
50
  "ervoor dat de permissies in orde zijn."
51
 
52
- #: adrotate-functions.php:812
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Advertentie(s) statistieken gereset"
55
 
56
- #: adrotate-functions.php:816
57
  msgid "Advert(s) renewed"
58
  msgstr "Advertentie(s) vernieuwd"
59
 
60
- #: adrotate-functions.php:820
61
  msgid "Advert(s) deactivated"
62
  msgstr "Advertentie(s) gedeactiveerd"
63
 
64
- #: adrotate-functions.php:824
65
  msgid "Advert(s) activated"
66
  msgstr "Advertentie(s) geactiveerd"
67
 
68
- #: adrotate-functions.php:828
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Groep inclusief advertenties verwijderd"
71
 
72
- #: adrotate-functions.php:832
73
  msgid "Export created"
74
  msgstr "Export gemaakt"
75
 
76
- #: adrotate-functions.php:836
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
@@ -82,31 +82,31 @@ msgstr ""
82
  "advertentie hieronder. Vergeet niet om alle instellingen te controleren en "
83
  "de advertentie te plannen."
84
 
85
- #: adrotate-functions.php:841
86
  msgid "Settings saved"
87
  msgstr "Instellingen opgeslagen"
88
 
89
- #: adrotate-functions.php:845
90
  msgid "Database optimized"
91
  msgstr "Database geoptimaliseerd"
92
 
93
- #: adrotate-functions.php:849
94
  msgid "Database repaired"
95
  msgstr "Database is hersteld"
96
 
97
- #: adrotate-functions.php:853
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Advertenties geëvalueerd en statussen zijn waar nodig gecorrigeerd"
100
 
101
- #: adrotate-functions.php:857
102
  msgid "Cleanup complete"
103
  msgstr "Opschonen voltooid"
104
 
105
- #: adrotate-functions.php:862
106
  msgid "Action prohibited"
107
  msgstr "Actie niet toegestaan"
108
 
109
- #: adrotate-functions.php:866
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
@@ -114,24 +114,24 @@ msgstr ""
114
  "De advertentie is opgeslagen, maar heeft een probleem waardoor het mogelijk "
115
  "niet goed werkt. Bekijk de gekleurde advertentie."
116
 
117
- #: adrotate-functions.php:870
118
  msgid "No data found in selected time period"
119
  msgstr "Geen gegevens gevonden in geselecteerde tijdsperiode"
120
 
121
- #: adrotate-functions.php:874
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr ""
124
  "Database kan slechts eenmaal per uur worden geoptimaliseerd of opgeschoond"
125
 
126
- #: adrotate-functions.php:878
127
  msgid "Form can not be (partially) empty!"
128
  msgstr "Formulier kan niet (gedeeltelijk) leeg zijn!"
129
 
130
- #: adrotate-functions.php:882
131
  msgid "No adverts found."
132
  msgstr "Geen advertenties gevonden."
133
 
134
- #: adrotate-functions.php:886
135
  msgid ""
136
  "The advert hash is not usable or is missing required data. Please copy the "
137
  "hash correctly and try again."
@@ -139,7 +139,7 @@ msgstr ""
139
  "De advertentie hash is niet bruikbaar of mist vereiste informatie. Probeer "
140
  "het opnieuw met een nieuwe hash."
141
 
142
- #: adrotate-functions.php:890
143
  msgid ""
144
  "The advert hash can not be used on the same site as it originated from or is "
145
  "not a valid hash for importing."
@@ -148,7 +148,7 @@ msgstr ""
148
  "gegenereerd is of de hash is niet een geldige hash voor het importeren van "
149
  "een advertentie."
150
 
151
- #: adrotate-functions.php:894
152
  msgid "Unexpected error"
153
  msgstr "Onverwachte fout"
154
 
@@ -325,11 +325,11 @@ msgstr ""
325
  msgid "Installation instructions"
326
  msgstr "Installatie-instructies"
327
 
328
- #: adrotate-output.php:730
329
  msgid "your attention:"
330
  msgstr "jouw aandacht:"
331
 
332
- #: adrotate-output.php:761
333
  msgid ""
334
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
335
  "menu. If you need help getting started take a look at the"
@@ -338,66 +338,124 @@ msgstr ""
338
  "te maken heeft, zit in dit menu. Als je hulp nodig hebt om aan de slag te "
339
  "gaan, kijk dan eens naar de"
340
 
341
- #: adrotate-output.php:761
342
  msgid "manuals"
343
  msgstr "handleidingen"
344
 
345
- #: adrotate-output.php:761
346
  msgid "and"
347
  msgstr "en"
348
 
349
- #: adrotate-output.php:761
350
  msgid "forums"
351
  msgstr "forums"
352
 
353
- #: adrotate-output.php:841
354
  msgid "Need help fast? Or do you have a question?"
355
  msgstr "Snel hulp nodig? Of heb je een vraag?"
356
 
357
- #: adrotate-output.php:842
358
  msgid "Help AdRotate Grow"
359
  msgstr "Help AdRotate groeien"
360
 
361
- #: adrotate-output.php:843
362
- msgid "More features with AdRotate Pro"
363
- msgstr "Krijg meer features met AdRotate Pro"
364
 
365
- #: adrotate-output.php:850
366
  msgid ""
367
- "Many users only think to review AdRotate when something goes wrong while "
368
- "thousands of people happily use AdRotate."
 
369
  msgstr ""
370
- "Veel gebruikers denken alleen om AdRotate te reviewen wanneer er iets "
371
- "misgaat terwijl duizenden mensen Graag AdRotate gebruiken."
372
-
373
- #: adrotate-output.php:850
374
- msgid "If you find AdRotate useful please leave your"
375
- msgstr "Als u AdRotate nuttig vindt, laat je"
376
 
377
- #: adrotate-output.php:850
378
- msgid "rating"
379
- msgstr "score"
380
 
381
- #: adrotate-output.php:850
382
- msgid "on WordPress.org to help AdRotate grow in a positive way"
383
- msgstr "op WordPress.org om AdRotate te helpen groeien op een positieve manier"
384
 
385
- #: adrotate-output.php:851
386
  msgid ""
387
- "Get more advanced features such as Geo Targeting, scheduling and much more "
388
- "with AdRotate Pro."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  msgstr ""
390
- "Krijg meer geavanceerde features zoals Geo Targeting, advertenties inplannen "
391
- "en nog veel meer met AdRotate Pro."
 
 
392
 
393
- #: adrotate-output.php:851
394
- msgid "Get access to premium support and free updates for one year!"
395
- msgstr ""
396
- "Krijg toegang tot premium ondersteuning en gratis updates voor een jaar!"
397
 
398
- #: adrotate-output.php:851 dashboard/publisher/groups-edit.php:155
399
- msgid "Upgrade today"
400
- msgstr "Upgrade vandaag"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
401
 
402
  #: adrotate-statistics.php:155
403
  msgid "January"
@@ -511,74 +569,66 @@ msgstr "ID:"
511
  msgid "Fill in the ID of the type you want to display!"
512
  msgstr "Vul het ID in van het type dat je wilt weergeven!"
513
 
514
- #: adrotate.php:105
515
- msgid "General Info"
516
- msgstr "Algemene info"
517
-
518
- #: adrotate.php:106
519
- msgid "Get AdRotate Pro"
520
- msgstr "Koop AdRotate Pro"
521
-
522
- #: adrotate.php:107 adrotate.php:196
523
  msgid "Manage Adverts"
524
  msgstr "Advertenties beheren"
525
 
526
- #: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
527
  msgid "Manage Groups"
528
  msgstr "Beheer Groepen"
529
 
530
- #: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
531
  msgid "Manage Schedules"
532
  msgstr "Schema's beheren"
533
 
534
- #: adrotate.php:110
535
  msgid "Manage Media"
536
  msgstr "Beheer Media"
537
 
538
- #: adrotate.php:111 adrotate.php:522 dashboard/adrotatepro.php:98
539
- #: dashboard/publisher/adverts-edit.php:174
540
  #: dashboard/publisher/statistics-main.php:23
541
  #: dashboard/settings/statistics.php:17
542
  msgid "Statistics"
543
  msgstr "Statistieken"
544
 
545
- #: adrotate.php:112
 
 
 
 
546
  msgid "Support"
547
  msgstr "Ondersteuning"
548
 
549
- #: adrotate.php:113
550
  msgid "Settings"
551
  msgstr "Instellingen"
552
 
553
- #: adrotate.php:134
554
- msgid "AdRotate Info"
555
- msgstr "AdRotate Info"
556
-
557
- #: adrotate.php:152
558
  msgid "Get AdRotate Professional"
559
  msgstr "Koop AdRotate Professional"
560
 
561
- #: adrotate.php:256 adrotate.php:327
562
  msgid "Manage"
563
  msgstr "Beheren"
564
 
565
- #: adrotate.php:257
566
  msgid "Advert Generator"
567
  msgstr "Advertentie Generator"
568
 
569
- #: adrotate.php:258 dashboard/publisher/adverts-edit.php:104
570
  msgid "New Advert"
571
  msgstr "Nieuwe advertentie"
572
 
573
- #: adrotate.php:328
574
  msgid "Add New"
575
  msgstr "Nieuw"
576
 
577
- #: adrotate.php:395
578
  msgid "Manage Media and Assets"
579
  msgstr "Media en assets beheren"
580
 
581
- #: adrotate.php:399
582
  msgid ""
583
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
584
  "if you have HTML5 adverts containing multiple files."
@@ -586,44 +636,39 @@ msgstr ""
586
  "Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
587
  "handig als je HTML5-advertenties met meerdere bestanden hebt."
588
 
589
- #: adrotate.php:441
590
  msgid "Advert Statistics"
591
  msgstr "Statistieken voor advertenties"
592
 
593
- #: adrotate.php:484
594
  msgid "AdRotate Support"
595
  msgstr "Ondersteuning voor AdRotate"
596
 
597
- #: adrotate.php:515
598
  msgid "AdRotate Settings"
599
  msgstr "AdRotate-instellingen"
600
 
601
- #: adrotate.php:520 dashboard/publisher/statistics-main.php:28
602
  msgid "General"
603
  msgstr "Algemeen"
604
 
605
- #: adrotate.php:521 dashboard/settings/notifications.php:18
606
  msgid "Notifications"
607
  msgstr "Meldingen"
608
 
609
- #: adrotate.php:523 dashboard/publisher/groups-edit.php:205
610
- #: dashboard/settings/advertisers.php:38
611
  msgid "Geo Targeting"
612
  msgstr "Geo-targeting"
613
 
614
- #: adrotate.php:524
615
- msgid "Advertisers"
616
- msgstr "Adverteerders"
617
-
618
- #: adrotate.php:525 dashboard/settings/roles.php:17
619
  msgid "Access Roles"
620
  msgstr "Rollen"
621
 
622
- #: adrotate.php:526 dashboard/settings/misc.php:16
623
  msgid "Miscellaneous"
624
  msgstr "Diversen"
625
 
626
- #: adrotate.php:527 dashboard/settings/maintenance.php:16
627
  msgid "Maintenance"
628
  msgstr "Onderhoud"
629
 
@@ -760,85 +805,6 @@ msgstr ""
760
  "adverteerders nieuwe advertenties maken. Selecteer maximaal drie e-"
761
  "mailadressen die u wilt op de hoogte stellen. Mis nooit meer een vervaldatum."
762
 
763
- #: dashboard/info.php:22
764
- msgid "At a Glance"
765
- msgstr "In een oogopslag"
766
-
767
- #: dashboard/info.php:27
768
- msgid "Your setup"
769
- msgstr "Jouw installatie"
770
-
771
- #: dashboard/info.php:28
772
- msgid "Adverts that need you"
773
- msgstr "Controleer advertenties"
774
-
775
- #: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:261
776
- #: dashboard/publisher/groups-main.php:34
777
- #: dashboard/publisher/schedules-main.php:34
778
- #: dashboard/publisher/statistics-main.php:35
779
- msgid "Adverts"
780
- msgstr "Advertenties"
781
-
782
- #: dashboard/info.php:35
783
- msgid "(Almost) Expired"
784
- msgstr "(Bijna) Verlopen"
785
-
786
- #: dashboard/info.php:38
787
- msgid "Groups"
788
- msgstr "Groepen"
789
-
790
- #: dashboard/info.php:39
791
- msgid "Have errors"
792
- msgstr "Fouten hebben"
793
-
794
- #: dashboard/info.php:76
795
- msgid ""
796
- "AdRotate Professional has a lot more functions for even better advertising "
797
- "management. Check out the feature comparison tab on any of the product pages "
798
- "to see what AdRotate Pro has to offer for you!"
799
- msgstr ""
800
- "AdRotate Professional heeft veel meer functies voor nog beter "
801
- "advertentiebeheer. Bekijk het tabblad met de vergelijking van functies op "
802
- "een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
803
- "heeft!"
804
-
805
- #: dashboard/info.php:78
806
- msgid "Single License"
807
- msgstr "Enkele licentie"
808
-
809
- #: dashboard/info.php:78
810
- msgid "Use on ONE WordPress installation."
811
- msgstr "Gebruik op één WordPress-installatie."
812
-
813
- #: dashboard/info.php:78 dashboard/info.php:79 dashboard/info.php:80
814
- #: dashboard/info.php:81
815
- msgid "Buy now"
816
- msgstr "Koop nu"
817
-
818
- #: dashboard/info.php:79
819
- msgid "Duo License"
820
- msgstr "Duo Licentie"
821
-
822
- #: dashboard/info.php:79
823
- msgid "Use on TWO WordPress installations."
824
- msgstr "Gebruik op twee WordPress-installaties."
825
-
826
- #: dashboard/info.php:80
827
- msgid "Multi License"
828
- msgstr "Multi Licentie"
829
-
830
- #: dashboard/info.php:80
831
- msgid "Use on up to FIVE WordPress installations."
832
- msgstr "Gebruik maximaal vijf WordPress-installaties."
833
-
834
- #: dashboard/info.php:81
835
- msgid "Developer License"
836
- msgstr "Ontwikkelaarslicentie"
837
-
838
- #: dashboard/info.php:81
839
- msgid "Use on up to a HUNDRED WordPress installations and/or networks."
840
- msgstr "Gebruik op maximaal honderd WordPress-installaties en/of -netwerken."
841
-
842
  #: dashboard/publisher/adverts-disabled.php:15
843
  msgid "Disabled Adverts"
844
  msgstr "Advertenties voor uitgeschakelden"
@@ -852,7 +818,7 @@ msgid "Bulk Actions"
852
  msgstr "Bulk acties"
853
 
854
  #: dashboard/publisher/adverts-disabled.php:21
855
- #: dashboard/publisher/adverts-edit.php:182
856
  msgid "Activate"
857
  msgstr "Activeren"
858
 
@@ -878,7 +844,7 @@ msgid "Go"
878
  msgstr "Ga"
879
 
880
  #: dashboard/publisher/adverts-disabled.php:35
881
- #: dashboard/publisher/adverts-edit.php:259
882
  #: dashboard/publisher/adverts-error.php:39
883
  #: dashboard/publisher/adverts-main.php:39
884
  #: dashboard/publisher/groups-edit.php:350
@@ -895,8 +861,8 @@ msgid "Start / End"
895
  msgstr "Begin/einde"
896
 
897
  #: dashboard/publisher/adverts-disabled.php:37
898
- #: dashboard/publisher/adverts-edit.php:112
899
- #: dashboard/publisher/adverts-edit.php:260
900
  #: dashboard/publisher/adverts-error.php:40
901
  #: dashboard/publisher/adverts-main.php:41
902
  #: dashboard/publisher/groups-edit.php:65
@@ -998,87 +964,95 @@ msgstr ""
998
  "afbeelding en sla de advertentie opnieuw op!"
999
 
1000
  #: dashboard/publisher/adverts-edit.php:62
1001
- msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1002
- msgstr ""
1003
- "Tracking is ingeschakeld, maar er is geen geldige link/tag gevonden in de "
1004
- "adcode!"
1005
-
1006
- #: dashboard/publisher/adverts-edit.php:67
1007
  msgid ""
1008
- "AdRotate cannot find an error but the advert is marked erroneous, try re-"
1009
- "saving the ad!"
1010
  msgstr ""
1011
- "AdRotate kan geen fout vinden, maar de advertentie is onjuist gemarkeerd, "
1012
- "probeer de advertentie opnieuw op te slaan!"
1013
 
1014
- #: dashboard/publisher/adverts-edit.php:70
1015
  msgid "This advert is expired and currently not shown on your website!"
1016
  msgstr ""
1017
  "Deze advertentie is verlopen en momenteel niet weergegeven op uw website!"
1018
 
1019
- #: dashboard/publisher/adverts-edit.php:73
1020
  msgid "The advert will expire in less than 2 days!"
1021
  msgstr "De advertentie vervalt binnen 2 dagen!"
1022
 
1023
- #: dashboard/publisher/adverts-edit.php:76
1024
  msgid "This advert will expire in less than 7 days!"
1025
  msgstr "Deze advertentie vervalt in minder dan 7 dagen!"
1026
 
1027
- #: dashboard/publisher/adverts-edit.php:79
1028
  msgid "This advert has been disabled and does not rotate on your site!"
1029
  msgstr "Deze advertentie is uitgeschakeld en is niet zichtbaar op de site!"
1030
 
1031
- #: dashboard/publisher/adverts-edit.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1032
  msgid "Edit Advert"
1033
  msgstr "Advertentie bewerken"
1034
 
1035
- #: dashboard/publisher/adverts-edit.php:121
1036
  msgid "AdCode"
1037
  msgstr "AdCode"
1038
 
1039
- #: dashboard/publisher/adverts-edit.php:126
1040
  msgid "Basic Examples:"
1041
  msgstr "Basisvoorbeelden:"
1042
 
1043
- #: dashboard/publisher/adverts-edit.php:127
1044
  msgid "Click any of the examples to use it."
1045
  msgstr "Klik op een van de voorbeelden om het te gebruiken."
1046
 
1047
- #: dashboard/publisher/adverts-edit.php:136
1048
  msgid "Useful tags"
1049
  msgstr "Handige Tags"
1050
 
1051
- #: dashboard/publisher/adverts-edit.php:138
1052
  msgid "Insert the advert ID Number."
1053
  msgstr "Voeg het nummer van de advertentie-ID in."
1054
 
1055
- #: dashboard/publisher/adverts-edit.php:138
1056
  msgid "Use this tag when selecting a image below."
1057
  msgstr "Gebruik deze tag bij het selecteren van een afbeelding hieronder."
1058
 
1059
- #: dashboard/publisher/adverts-edit.php:138
1060
  msgid "Insert the advert name."
1061
  msgstr "Voeg de naam van de advertentie in."
1062
 
1063
- #: dashboard/publisher/adverts-edit.php:138
1064
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1065
  msgstr ""
1066
  "Een willekeurige tekenreeks invoegen. Handig voor DFP/DoubleClick-"
1067
  "typeadvertenties."
1068
 
1069
- #: dashboard/publisher/adverts-edit.php:138
1070
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1071
  msgstr ""
1072
  "Voeg in de &lt;a&gt; tag toe om de advertentie in een nieuw venster te "
1073
  "openen."
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:138
1076
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1077
  msgstr ""
1078
  "Voeg in de &lt;a&gt; tag toe om crawlers te vertellen deze koppeling te "
1079
  "negeren."
1080
 
1081
- #: dashboard/publisher/adverts-edit.php:139
1082
  msgid ""
1083
  "Place the cursor where you want to add a tag and click to add it to your "
1084
  "AdCode."
@@ -1086,11 +1060,11 @@ msgstr ""
1086
  "Plaats de cursor op de plek waar je een tag wilt toevoegen en klik op de tag "
1087
  "om deze toe te voegen aan de AdCode."
1088
 
1089
- #: dashboard/publisher/adverts-edit.php:144
1090
  msgid "Preview"
1091
  msgstr "Voorbeeld"
1092
 
1093
- #: dashboard/publisher/adverts-edit.php:147
1094
  msgid ""
1095
  "Note: While this preview is an accurate one, it might look different then it "
1096
  "does on the website."
@@ -1098,41 +1072,41 @@ msgstr ""
1098
  "Let op: Hoewel dit voorbeeld accuraat is, kan deze er anders uitzien dan op "
1099
  "de website."
1100
 
1101
- #: dashboard/publisher/adverts-edit.php:148
1102
  msgid ""
1103
  "This is because of CSS differences. Your themes CSS file is not active here!"
1104
  msgstr ""
1105
  "Dit komt door verschillen in CSS. Het thema CSS-bestand is hier niet actief!"
1106
 
1107
- #: dashboard/publisher/adverts-edit.php:153
1108
  msgid "Banner asset"
1109
  msgstr "Banner Asset"
1110
 
1111
- #: dashboard/publisher/adverts-edit.php:155
1112
  msgid "WordPress media:"
1113
  msgstr "WordPress media:"
1114
 
1115
- #: dashboard/publisher/adverts-edit.php:155
1116
  msgid "Select Banner"
1117
  msgstr "Selecteer banner"
1118
 
1119
- #: dashboard/publisher/adverts-edit.php:157
1120
  msgid "- OR -"
1121
  msgstr "- Of -"
1122
 
1123
- #: dashboard/publisher/adverts-edit.php:158
1124
  msgid "Banner folder:"
1125
  msgstr "Banner map:"
1126
 
1127
- #: dashboard/publisher/adverts-edit.php:159
1128
  msgid "No image selected"
1129
  msgstr "Geen afbeelding geselecteerd"
1130
 
1131
- #: dashboard/publisher/adverts-edit.php:169
1132
  msgid "Use %asset% in the adcode instead of the file path."
1133
  msgstr "Gebruik %asset% in de adcode in plaats van het bestandspad."
1134
 
1135
- #: dashboard/publisher/adverts-edit.php:169
1136
  msgid ""
1137
  "Use either the text field or the dropdown. If the textfield has content that "
1138
  "field has priority."
@@ -1140,30 +1114,27 @@ msgstr ""
1140
  "Gebruik het tekstveld of de vervolgkeuzelijst. Als het tekstveld inhoud "
1141
  "heeft, heeft dat veld prioriteit."
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:176
1144
- msgid "Enable click and impression tracking for this advert."
1145
- msgstr ""
1146
- "Schakel het bijhouden van klikken en vertoningen in voor deze advertentie."
1147
 
1148
- #: dashboard/publisher/adverts-edit.php:177
1149
  msgid ""
1150
- "Note: Clicktracking does not work for Javascript adverts such as those "
1151
- "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1152
- "always supported."
1153
  msgstr ""
1154
- "Opmerking: Clicktracking werkt niet voor Javascript-advertenties, zoals die "
1155
- "van Google AdSense/DFP/DoubleClick. HTML5/Flash-advertenties worden niet "
1156
- "altijd ondersteund."
1157
 
1158
- #: dashboard/publisher/adverts-edit.php:185
1159
  msgid "Enabled, this ad will be visible"
1160
  msgstr "Actief, deze advertentie wordt getoond"
1161
 
1162
- #: dashboard/publisher/adverts-edit.php:186
1163
  msgid "Disabled, do not show this advert anywhere"
1164
  msgstr "Inactief, laat deze advertentie nergens zien"
1165
 
1166
- #: dashboard/publisher/adverts-edit.php:192
1167
  msgid ""
1168
  "Target your audience with Geo Targeting and easily select which devices and "
1169
  "mobile operating systems the advert should show on with AdRotate Pro!"
@@ -1172,20 +1143,17 @@ msgstr ""
1172
  "apparaten en mobiele besturingssystemen de advertentie moet worden "
1173
  "weergegeven met AdRotate Pro!"
1174
 
1175
- #: dashboard/publisher/adverts-edit.php:192
1176
- #: dashboard/publisher/adverts-edit.php:230
1177
  #: dashboard/publisher/groups-edit.php:227
1178
- #: dashboard/publisher/statistics-advert.php:109
1179
- #: dashboard/publisher/statistics-group.php:113
1180
- #: dashboard/publisher/statistics-main.php:83
1181
  msgid "Upgrade now"
1182
  msgstr "Nu bijwerken"
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:194
1185
  msgid "Schedule your advert"
1186
  msgstr "Plan jouw advertentie"
1187
 
1188
- #: dashboard/publisher/adverts-edit.php:195
1189
  msgid ""
1190
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1191
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
@@ -1195,36 +1163,36 @@ msgstr ""
1195
  "systeem, houdt u dit in gedachten: Als de begin- of eindtijd na de lunch is, "
1196
  "voegt u 12 uur toe. 14.00 uur is 14:00 uur. 6am is 6:00 uur."
1197
 
1198
- #: dashboard/publisher/adverts-edit.php:199
1199
  msgid "Start date"
1200
  msgstr "Startdatum"
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:203
1203
  msgid "End date"
1204
  msgstr "Einddatum"
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:209
1207
  msgid "Start time"
1208
  msgstr "Starttijd"
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:214
1211
  msgid "End time"
1212
  msgstr "Eindtijd"
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:222
1215
  msgid "Maximum Clicks"
1216
  msgstr "Maximale klikken"
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:223
1219
- #: dashboard/publisher/adverts-edit.php:225
1220
  msgid "Leave empty or 0 to skip this."
1221
  msgstr "Laat leeg of 0 om dit over te slaan."
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:224
1224
  msgid "Maximum Impressions"
1225
  msgstr "Maximale vertoningen"
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:230
1228
  msgid ""
1229
  "Plan ahead and create multiple and more advanced schedules for each advert "
1230
  "with AdRotate Pro."
@@ -1232,19 +1200,19 @@ msgstr ""
1232
  "Plan vooruit en maak meerdere en geavanceerdere schema's voor elke "
1233
  "advertentie met AdRotate Pro."
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:232
1236
  #: dashboard/publisher/groups-edit.php:157
1237
  #: dashboard/publisher/groups-edit.php:302
1238
  msgid "Usage"
1239
  msgstr "Gebruik"
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:236
1242
  #: dashboard/publisher/groups-edit.php:161
1243
  #: dashboard/publisher/groups-edit.php:306
1244
  msgid "Widget"
1245
  msgstr "Widget"
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:237
1248
  msgid ""
1249
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1250
  "and select the advert or the group the advert is in."
@@ -1253,25 +1221,25 @@ msgstr ""
1253
  "zijbalk waar u de advertentie wilt plaatsen en selecteer de advertentie of "
1254
  "de groep waarin de advertentie zich bevindt."
1255
 
1256
- #: dashboard/publisher/adverts-edit.php:240
1257
  #: dashboard/publisher/groups-edit.php:165
1258
  #: dashboard/publisher/groups-edit.php:310
1259
  msgid "In a post or page"
1260
  msgstr "In een bericht of pagina"
1261
 
1262
- #: dashboard/publisher/adverts-edit.php:242
1263
  #: dashboard/publisher/groups-edit.php:167
1264
  #: dashboard/publisher/groups-edit.php:312
1265
  msgid "Directly in a theme"
1266
  msgstr "Direct in een thema"
1267
 
1268
- #: dashboard/publisher/adverts-edit.php:249
1269
- #: dashboard/publisher/adverts-edit.php:292
1270
  msgid "Save Advert"
1271
  msgstr "Advertentie opslaan"
1272
 
1273
- #: dashboard/publisher/adverts-edit.php:250
1274
- #: dashboard/publisher/adverts-edit.php:293
1275
  #: dashboard/publisher/adverts-generator.php:148
1276
  #: dashboard/publisher/groups-edit.php:175
1277
  #: dashboard/publisher/groups-edit.php:320
@@ -1279,58 +1247,65 @@ msgstr "Advertentie opslaan"
1279
  msgid "Cancel"
1280
  msgstr "Annuleren"
1281
 
1282
- #: dashboard/publisher/adverts-edit.php:254
1283
  msgid "Select Groups"
1284
  msgstr "Groepen selecteren"
1285
 
1286
- #: dashboard/publisher/adverts-edit.php:270
 
 
 
 
 
 
 
1287
  #: dashboard/publisher/groups-main.php:60
1288
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1289
  msgid "Default"
1290
  msgstr "Standaard"
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:271
1293
  #: dashboard/publisher/groups-main.php:61
1294
  msgid "Dynamic"
1295
  msgstr "Dynamisch"
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:271
1298
  #: dashboard/publisher/groups-main.php:61
1299
  msgid "second rotation"
1300
  msgstr "tweede rotatie"
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:272
1303
  #: dashboard/publisher/groups-main.php:62
1304
  msgid "Block"
1305
  msgstr "Blok"
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:272
1308
  #: dashboard/publisher/groups-main.php:62
1309
  msgid "grid"
1310
  msgstr "rooster"
1311
 
1312
- #: dashboard/publisher/adverts-edit.php:273
1313
  #: dashboard/publisher/groups-edit.php:234
1314
  #: dashboard/publisher/groups-main.php:63
1315
  msgid "Post Injection"
1316
  msgstr "Post injectie"
1317
 
1318
- #: dashboard/publisher/adverts-edit.php:274
1319
  msgid "Geolocation"
1320
  msgstr "Geolocatie"
1321
 
1322
- #: dashboard/publisher/adverts-edit.php:281
1323
  #: dashboard/publisher/groups-edit.php:74
1324
  #: dashboard/publisher/groups-main.php:70
1325
  msgid "Mode"
1326
  msgstr "Modus"
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:298
1329
  #: dashboard/publisher/adverts-generator.php:131
1330
  msgid "Portability"
1331
  msgstr "Mobiliteit"
1332
 
1333
- #: dashboard/publisher/adverts-edit.php:299
1334
  msgid ""
1335
  "This long code is your advert. It includes all settings from above except "
1336
  "the schedule and group selection. You can import this hash into another "
@@ -1347,7 +1322,7 @@ msgstr ""
1347
  "kunt de hash in het veld ‘Advert Hash', plakken in de advertentie generator "
1348
  "van een andere installatie van AdRotate."
1349
 
1350
- #: dashboard/publisher/adverts-edit.php:303
1351
  #: dashboard/publisher/adverts-generator.php:137
1352
  msgid "Advert hash"
1353
  msgstr "Advertentie hash"
@@ -1750,6 +1725,10 @@ msgstr ""
1750
  msgid "Get access to all features in AdRotate Pro."
1751
  msgstr "Krijg toegang tot alle functies in AdRotate Pro."
1752
 
 
 
 
 
1753
  #: dashboard/publisher/groups-edit.php:162
1754
  #: dashboard/publisher/groups-edit.php:307
1755
  msgid ""
@@ -2207,12 +2186,6 @@ msgstr ""
2207
  "Alle statistieken zijn indicatief. Ze komen niet perse overeen met de "
2208
  "resultaten die door andere partijen zijn geteld."
2209
 
2210
- #: dashboard/publisher/statistics-advert.php:109
2211
- #: dashboard/publisher/statistics-group.php:113
2212
- #: dashboard/publisher/statistics-main.php:83
2213
- msgid "Get more features with AdRotate Pro"
2214
- msgstr "Beschik over meer functies met AdRotate Pro"
2215
-
2216
  #: dashboard/publisher/statistics-group.php:46
2217
  msgid "Statistics for group"
2218
  msgstr "Statistieken voor groep"
@@ -2221,75 +2194,6 @@ msgstr "Statistieken voor groep"
2221
  msgid "Adverts counting stats"
2222
  msgstr "Advertenties tellen statistieken"
2223
 
2224
- #: dashboard/settings/advertisers.php:16
2225
- msgid "Advertisers - Available in AdRotate Pro"
2226
- msgstr "Adverteerders - Beschikbaar in AdRotate Pro"
2227
-
2228
- #: dashboard/settings/advertisers.php:17
2229
- msgid "Enable advertisers so they can review and manage their own ads."
2230
- msgstr ""
2231
- "Stel adverteerders in zodat ze hun eigen advertenties kunnen bekijken en "
2232
- "beheren."
2233
-
2234
- #: dashboard/settings/advertisers.php:20
2235
- msgid "Enable Advertisers"
2236
- msgstr "Adverteerders inschakelen"
2237
-
2238
- #: dashboard/settings/advertisers.php:22
2239
- msgid "Allow adverts to be coupled to users (Advertisers)."
2240
- msgstr ""
2241
- "Toestaan dat advertenties worden gekoppeld aan gebruikers (Adverteerders)."
2242
-
2243
- #: dashboard/settings/advertisers.php:26
2244
- msgid "Edit/update adverts"
2245
- msgstr "Advertenties bewerken/bijwerken"
2246
-
2247
- #: dashboard/settings/advertisers.php:28
2248
- msgid "Allow advertisers to add new or edit their adverts."
2249
- msgstr ""
2250
- "Sta adverteerders toe om nieuwe advertenties toe te voegen of te bewerken."
2251
-
2252
- #: dashboard/settings/advertisers.php:32
2253
- msgid "Mobile adverts"
2254
- msgstr "Mobiele advertenties"
2255
-
2256
- #: dashboard/settings/advertisers.php:34
2257
- msgid "Allow advertisers to specify on which devices their ads will show."
2258
- msgstr ""
2259
- "Sta adverteerders toe om aan te geven op welke apparaten hun advertenties "
2260
- "worden weergegeven."
2261
-
2262
- #: dashboard/settings/advertisers.php:40
2263
- msgid ""
2264
- "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2265
- "be enabled, too."
2266
- msgstr ""
2267
- "Sta adverteerders toe om aan te geven waar hun advertenties worden "
2268
- "weergegeven. Geo Targeting moet ook ingeschakeld zijn."
2269
-
2270
- #: dashboard/settings/advertisers.php:44
2271
- msgid "Advertiser role"
2272
- msgstr "Functie Adverteerder"
2273
-
2274
- #: dashboard/settings/advertisers.php:46
2275
- msgid "Create a seperate user role for your advertisers."
2276
- msgstr "Maak een aparte gebruikersrol voor jouw adverteerders."
2277
-
2278
- #: dashboard/settings/advertisers.php:47
2279
- msgid ""
2280
- "Don't forget to give these users access to their advertiser dashboard via "
2281
- "the Roles tab."
2282
- msgstr ""
2283
- "Vergeet niet deze gebruikers toegang te geven tot hun adverteerdersdashboard "
2284
- "via het tabblad Rollen."
2285
-
2286
- #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2287
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:47
2288
- #: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
2289
- #: dashboard/settings/statistics.php:79
2290
- msgid "Update Options"
2291
- msgstr "Update opties"
2292
-
2293
  #: dashboard/settings/general.php:17
2294
  msgid "General Settings"
2295
  msgstr "Algemene instellingen"
@@ -2303,84 +2207,113 @@ msgid "Some options are only available in AdRotate Pro!"
2303
  msgstr "Sommige opties zijn alleen beschikbaar in AdRotate Pro!"
2304
 
2305
  #: dashboard/settings/general.php:21
2306
- msgid "Shortcode in widgets"
2307
- msgstr "Shortcode in widgets"
2308
 
2309
  #: dashboard/settings/general.php:22
2310
  msgid ""
2311
- "Enable this option to if your theme does not support shortcodes in the "
2312
- "WordPress text widget."
2313
  msgstr ""
2314
- "Schakel deze optie in als het thema geen shortcodes ondersteunt in de tekst "
2315
- "widget van WordPress. (Dit werkt niet altijd!)"
 
2316
 
2317
- #: dashboard/settings/general.php:25
2318
- msgid "Disable live preview"
2319
- msgstr "Schakel live preview uit"
 
 
 
 
 
2320
 
2321
- #: dashboard/settings/general.php:26
 
 
 
 
2322
  msgid ""
2323
- "Enable this option if you have faulty adverts that overflow their designated "
2324
- "area while creating/editing adverts."
2325
  msgstr ""
2326
- "Schakel deze optie in als u defecte advertenties heeft die hun aangewezen "
2327
- "gebied overlopen tijdens het maken / bewerken van advertenties."
2328
 
2329
- #: dashboard/settings/general.php:29
2330
- msgid "Disable dynamic mode"
2331
- msgstr "Schakel dynamische modus uit"
 
 
 
 
 
 
 
 
2332
 
2333
  #: dashboard/settings/general.php:30
 
 
 
 
2334
  msgid ""
2335
- "Enable this option to disable dynamic mode in groups for mobile devices if "
2336
- "you notice skipping or jumpy content."
2337
  msgstr ""
2338
- "Schakel deze optie in om de dynamische modus in groepen voor mobiele "
2339
- "apparaten uit te schakelen. Aanbevolen als je het overslaan of springerige "
2340
- "inhoud opmerkt."
2341
 
2342
- #: dashboard/settings/general.php:33
 
 
 
 
 
 
 
 
 
 
 
 
2343
  msgid "Load jQuery"
2344
  msgstr "JQuery laden"
2345
 
2346
- #: dashboard/settings/general.php:34
2347
  msgid ""
2348
- "Enable this option if your theme does not load jQuery. jQuery is required "
2349
- "for dynamic groups, statistics and some other features."
2350
  msgstr ""
2351
- "Schakel deze optie in als het thema jQuery niet laadt. jQuery is nodig voor "
2352
  "dynamische groepen, statistieken en enkele andere functies."
2353
 
2354
- #: dashboard/settings/general.php:37
2355
  msgid "Load scripts in footer?"
2356
  msgstr "Scripts laden in footer?"
2357
 
2358
- #: dashboard/settings/general.php:38
2359
- msgid ""
2360
- "Enable this option if you want to load all AdRotate Javascripts in the "
2361
- "footer of your site."
2362
- msgstr ""
2363
- "Schakel deze optie in als je alle AdRotate Javascripts in de footer van de "
2364
- "site wilt laden."
2365
 
2366
- #: dashboard/settings/general.php:41
2367
  msgid "Adblock disguise"
2368
  msgstr "Adblock vermomming"
2369
 
2370
- #: dashboard/settings/general.php:43
2371
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2372
  msgstr ""
2373
  "Laat leeg om uit te schakelen. Gebruik alleen lowercaps letters. "
2374
  "Bijvoorbeeld:"
2375
 
2376
- #: dashboard/settings/general.php:44
2377
  msgid ""
2378
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2379
  msgstr ""
2380
  "Probeer adblock-plug-ins in de meeste moderne browsers te vermijden bij het "
2381
  "gebruik van shortcodes."
2382
 
2383
- #: dashboard/settings/general.php:44
2384
  msgid ""
2385
  "To also apply this feature to widgets, use a text widget with a shortcode "
2386
  "instead of the AdRotate widget."
@@ -2388,7 +2321,7 @@ msgstr ""
2388
  "Als u deze functie ook wilt toepassen op widgets, gebruikt u een tekstwidget "
2389
  "met een shortcode in plaats van de widget AdRotate."
2390
 
2391
- #: dashboard/settings/general.php:44
2392
  msgid ""
2393
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2394
  "feature will have little effect!"
@@ -2396,30 +2329,30 @@ msgstr ""
2396
  "Vermijd het gebruik van voor de hand liggende termen of bestandsnamen in de "
2397
  "advertenties of deze functie zal weinig effect hebben!"
2398
 
2399
- #: dashboard/settings/general.php:49
2400
  msgid "Banner Folder"
2401
  msgstr "Banner map"
2402
 
2403
- #: dashboard/settings/general.php:50
2404
  msgid "Set a folder where your banner images will be stored."
2405
  msgstr "Stel een map in waar de advertentie afbeeldingen worden opgeslagen."
2406
 
2407
- #: dashboard/settings/general.php:53
2408
  msgid "Folder name"
2409
  msgstr "Naam map"
2410
 
2411
- #: dashboard/settings/general.php:55
2412
  msgid "(Default: banners)."
2413
  msgstr "(Standaard: banners)."
2414
 
2415
- #: dashboard/settings/general.php:56
2416
  msgid ""
2417
  "To try and trick ad blockers you could set the folder to something crazy "
2418
  "like:"
2419
  msgstr ""
2420
  "Om te proberen ad blockers te misleiden, u de map instellen op iets geks als:"
2421
 
2422
- #: dashboard/settings/general.php:57
2423
  msgid ""
2424
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2425
  "will show errors when the folder is missing."
@@ -2427,26 +2360,26 @@ msgstr ""
2427
  "Deze map wordt niet automatisch gemaakt als deze niet bestaat. AdRoteren "
2428
  "geeft fouten weer wanneer de map ontbreekt."
2429
 
2430
- #: dashboard/settings/general.php:62
2431
  msgid "Bot filter"
2432
  msgstr "Botfilter"
2433
 
2434
- #: dashboard/settings/general.php:63
2435
  msgid "The bot filter is used for the AdRotate stats tracker."
2436
  msgstr ""
2437
  "Het botfilter wordt gebruikt voor Geo Targeting en de AdRotate stats tracker."
2438
 
2439
- #: dashboard/settings/general.php:66
2440
  msgid "User-Agent Filter"
2441
  msgstr "Filter van gebruikersagent"
2442
 
2443
- #: dashboard/settings/general.php:69
2444
  msgid ""
2445
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2446
  msgstr ""
2447
  "Een komma gescheiden lijst van zoekwoorden. Filter bots/crawlers/user-agents."
2448
 
2449
- #: dashboard/settings/general.php:70
2450
  msgid ""
2451
  "Keep in mind that this might give false positives. The word 'fire' also "
2452
  "matches 'firefox', but not vice-versa. So be careful!"
@@ -2454,7 +2387,7 @@ msgstr ""
2454
  "Houd er rekening mee dat dit valse positieven kan geven. Het woord 'vuur' "
2455
  "komt ook overeen met 'firefox', maar niet andersom. Dus wees voorzichtig!"
2456
 
2457
- #: dashboard/settings/general.php:71
2458
  msgid ""
2459
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2460
  "characters are stripped out."
@@ -2462,7 +2395,7 @@ msgstr ""
2462
  "Alleen woorden met alfanumerieke tekens en [ - _ ] zijn toegestaan. Alle "
2463
  "andere personages zijn gestript."
2464
 
2465
- #: dashboard/settings/general.php:72
2466
  msgid ""
2467
  "Additionally to the list specified here, empty User-Agents are blocked as "
2468
  "well."
@@ -2470,14 +2403,20 @@ msgstr ""
2470
  "Bovendien worden lege gebruikersagents geblokkeerd in de lijst die hier is "
2471
  "opgegeven."
2472
 
2473
- #: dashboard/settings/general.php:72
2474
  msgid "Learn more about"
2475
  msgstr "Meer informatie over"
2476
 
2477
- #: dashboard/settings/general.php:72
2478
  msgid "user-agents"
2479
  msgstr "gebruikersagenten"
2480
 
 
 
 
 
 
 
2481
  #: dashboard/settings/geotargeting.php:17
2482
  msgid "Geo Targeting - Available in AdRotate Pro"
2483
  msgstr "Geotargeting - Beschikbaar in AdRotate Pro"
@@ -2588,8 +2527,8 @@ msgid ""
2588
  msgstr "Gebruik deze functies wanneer je merkt dat de database traag word."
2589
 
2590
  #: dashboard/settings/maintenance.php:22
2591
- msgid "Check all adverts for configuration errors"
2592
- msgstr "Alle advertenties controleren op configuratiefouten"
2593
 
2594
  #: dashboard/settings/maintenance.php:22
2595
  msgid "You are about to check all adverts for errors."
@@ -2611,8 +2550,8 @@ msgid "Clean-up Database and Files"
2611
  msgstr "Database en bestanden opschonen"
2612
 
2613
  #: dashboard/settings/maintenance.php:30
2614
- msgid "Clean-up database and old files"
2615
- msgstr "Database en oude bestanden opschonen"
2616
 
2617
  #: dashboard/settings/maintenance.php:30
2618
  msgid "You are about to do maintenance on your setup of AdRotate."
@@ -3144,54 +3083,62 @@ msgstr "AdRotate Statistieken"
3144
 
3145
  #: dashboard/settings/statistics.php:48
3146
  msgid ""
3147
- "The settings below are for the internal tracker and have no effect when "
3148
- "using Google Analytics or Matomo."
3149
  msgstr ""
3150
- "De onderstaande instellingen zijn voor de interne tracker en hebben geen "
3151
- "effect bij het gebruik van Matomo / Google Analytics."
3152
 
3153
  #: dashboard/settings/statistics.php:51
 
 
 
 
 
 
 
 
3154
  msgid "Logged in impressions"
3155
  msgstr "Impressies"
3156
 
3157
- #: dashboard/settings/statistics.php:53
3158
  msgid "Track impressions from logged in users."
3159
  msgstr "Vertoningen van ingelogde gebruikers bijhouden."
3160
 
3161
- #: dashboard/settings/statistics.php:57
3162
  msgid "Logged in clicks"
3163
  msgstr "Max klikken"
3164
 
3165
- #: dashboard/settings/statistics.php:59
3166
  msgid "Track clicks from logged in users."
3167
  msgstr "Volg klikken van ingelogde gebruikers."
3168
 
3169
- #: dashboard/settings/statistics.php:63
3170
  msgid "Impression timer"
3171
  msgstr "Vertoningstimer"
3172
 
3173
- #: dashboard/settings/statistics.php:65 dashboard/settings/statistics.php:72
3174
  msgid "Seconds."
3175
  msgstr "Seconden."
3176
 
3177
- #: dashboard/settings/statistics.php:66
3178
  msgid "Default: 60."
3179
  msgstr "Standaard: 60."
3180
 
3181
- #: dashboard/settings/statistics.php:66
3182
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3183
  msgstr ""
3184
  "Dit aantal mag niet leeg zijn, lager zijn dan 10 of meer dan 3600 (1 uur)."
3185
 
3186
- #: dashboard/settings/statistics.php:70
3187
  msgid "Click timer"
3188
  msgstr "Kosten per klik"
3189
 
3190
- #: dashboard/settings/statistics.php:73
3191
  msgid "Default: 86400."
3192
  msgstr "Standaard: 86400."
3193
 
3194
- #: dashboard/settings/statistics.php:73
3195
  msgid ""
3196
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3197
  msgstr ""
@@ -3265,6 +3212,155 @@ msgstr "Hulp vragen"
3265
  msgid "Premium Support is available in AdRotate Pro!"
3266
  msgstr "Premium Support is beschikbaar in AdRotate Pro!"
3267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3268
  #~ msgid "Get started today"
3269
  #~ msgstr "Begin vandaag nog"
3270
 
@@ -3587,9 +3683,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
3587
  #~ msgid "News & Updates"
3588
  #~ msgstr "Nieuws & updates"
3589
 
3590
- #~ msgid "Support Forums"
3591
- #~ msgstr "Supportfora"
3592
-
3593
  #~ msgid ""
3594
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3595
  #~ "Chances are your question has already been asked and answered!"
@@ -4923,9 +5016,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
4923
  #~ msgid "Select Adverts"
4924
  #~ msgstr "Advertenties selecteren"
4925
 
4926
- #~ msgid "Overview of clicks and impressions"
4927
- #~ msgstr "Overzicht van klikken en vertoningen"
4928
-
4929
  #~ msgid "Period"
4930
  #~ msgstr "Periode"
4931
 
@@ -4938,36 +5028,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
4938
  #~ msgid "from"
4939
  #~ msgstr "van"
4940
 
4941
- #~ msgid "Duplicate adverts"
4942
- #~ msgstr "Advertenties dupliceren"
4943
-
4944
- #~ msgid ""
4945
- #~ "Enable this option to prevent adverts in groups that are in Default or "
4946
- #~ "Block mode from showing multiple times on the same pageload."
4947
- #~ msgstr ""
4948
- #~ "Schakel deze optie in om te voorkomen dat advertenties in groepen die in "
4949
- #~ "de standaard- of blokmodus staan, meerdere keren worden weergegeven op "
4950
- #~ "dezelfde paginabelasting."
4951
-
4952
- #~ msgid ""
4953
- #~ "If you still notice double adverts from groups placed on a page, start "
4954
- #~ "with carefully looking at your setup to make sure you did not cause this "
4955
- #~ "yourself."
4956
- #~ msgstr ""
4957
- #~ "Als je nog steeds dubbele advertenties ziet van groepen die op een pagina "
4958
- #~ "zijn geplaatst, moet je eerst goed naar je setup kijken om ervoor te "
4959
- #~ "zorgen dat je dit niet zelf hebt veroorzaakt."
4960
-
4961
- #~ msgid "On some servers $_SESSION is disabled."
4962
- #~ msgstr "Op sommige servers is _SESSION $ uitgeschakeld."
4963
-
4964
- #~ msgid ""
4965
- #~ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. "
4966
- #~ "However, most people will not need this extra plugin!"
4967
- #~ msgstr ""
4968
- #~ "Een plugin genaamd \"WP Session Manager\" door Eric Mann kan dit "
4969
- #~ "oplossen. Echter, de meeste mensen zullen niet nodig deze extra plugin!"
4970
-
4971
  #~ msgid "Lookups remaining"
4972
  #~ msgstr "Nog zoeken"
4973
 
@@ -5079,9 +5139,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
5079
  #~ "Schakel versleuteling op de omleidingsurl tijdelijk uit. Alleen interne "
5080
  #~ "tracker roteren."
5081
 
5082
- #~ msgid "Check adverts for errors"
5083
- #~ msgstr "Controleer advertenties"
5084
-
5085
  #~ msgid "Send email notifications"
5086
  #~ msgstr "Meldingen instellen"
5087
 
@@ -5675,10 +5732,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
5675
  #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
5676
  #~ "Vous obtiendraient une solution (en général) dans la journée."
5677
 
5678
- #, fuzzy
5679
- #~ msgid "Post Ticket"
5680
- #~ msgstr "Dans un article ou une page :"
5681
-
5682
  #, fuzzy
5683
  #~ msgid "Register License"
5684
  #~ msgstr "Licence Unique"
@@ -5691,10 +5744,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
5691
  #~ "Erreur, la pub n'est pas disponible en ce moment en raison de "
5692
  #~ "restrictions horaires/géographiques ou n'existe pas!"
5693
 
5694
- #, fuzzy
5695
- #~ msgid "Enable stats"
5696
- #~ msgstr "Statistiques activés"
5697
-
5698
  #, fuzzy
5699
  #~ msgid "Enable click tracking for this advert."
5700
  #~ msgstr "Activer le suivi des clicks pour cette publicité."
@@ -5787,14 +5836,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
5787
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
5788
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
5789
 
5790
- #, fuzzy
5791
- #~ msgid ""
5792
- #~ "Note: Clicktracking does generally not work for Javascript adverts such "
5793
- #~ "as those provided by Google AdSense."
5794
- #~ msgstr ""
5795
- #~ "Nota Bene: Le suivi des clicks ne fonctionne généralement pas pour les "
5796
- #~ "publicités en Javascript telles que celles fournies par Google AdSense."
5797
-
5798
  #, fuzzy
5799
  #~ msgid ""
5800
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-31 02:04-0500\n"
6
+ "PO-Revision-Date: 2021-08-31 02:04-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
9
  "Language: nl\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:797
21
  msgid "Advert saved"
22
  msgstr "Advertentie opgeslagen"
23
 
24
+ #: adrotate-functions.php:801
25
  msgid "Group saved"
26
  msgstr "Groep bewaard"
27
 
28
+ #: adrotate-functions.php:805
29
  msgid "Banner image saved"
30
  msgstr "Advertentie afbeelding opgeslagen"
31
 
32
+ #: adrotate-functions.php:809
33
  msgid "Ad(s) deleted"
34
  msgstr "Advertentie(s) verwijderd"
35
 
36
+ #: adrotate-functions.php:813
37
  msgid "Group deleted"
38
  msgstr "Groep verwijderd"
39
 
40
+ #: adrotate-functions.php:817
41
  msgid "Asset(s) deleted"
42
  msgstr "Asset(s) verwijderd"
43
 
44
+ #: adrotate-functions.php:821
45
  msgid ""
46
  "Something went wrong deleting the file or folder. Make sure your permissions "
47
  "are in order."
49
  "Er is iets mis gegaan met het verwijderen van het bestand of de map. Zorg "
50
  "ervoor dat de permissies in orde zijn."
51
 
52
+ #: adrotate-functions.php:825
53
  msgid "Advert(s) statistics reset"
54
  msgstr "Advertentie(s) statistieken gereset"
55
 
56
+ #: adrotate-functions.php:829
57
  msgid "Advert(s) renewed"
58
  msgstr "Advertentie(s) vernieuwd"
59
 
60
+ #: adrotate-functions.php:833
61
  msgid "Advert(s) deactivated"
62
  msgstr "Advertentie(s) gedeactiveerd"
63
 
64
+ #: adrotate-functions.php:837
65
  msgid "Advert(s) activated"
66
  msgstr "Advertentie(s) geactiveerd"
67
 
68
+ #: adrotate-functions.php:841
69
  msgid "Group including the Adverts in it deleted"
70
  msgstr "Groep inclusief advertenties verwijderd"
71
 
72
+ #: adrotate-functions.php:845
73
  msgid "Export created"
74
  msgstr "Export gemaakt"
75
 
76
+ #: adrotate-functions.php:849
77
  msgid ""
78
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
79
  "below. Do not forget to check all settings and schedule the advert."
82
  "advertentie hieronder. Vergeet niet om alle instellingen te controleren en "
83
  "de advertentie te plannen."
84
 
85
+ #: adrotate-functions.php:854
86
  msgid "Settings saved"
87
  msgstr "Instellingen opgeslagen"
88
 
89
+ #: adrotate-functions.php:858
90
  msgid "Database optimized"
91
  msgstr "Database geoptimaliseerd"
92
 
93
+ #: adrotate-functions.php:862
94
  msgid "Database repaired"
95
  msgstr "Database is hersteld"
96
 
97
+ #: adrotate-functions.php:866
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Advertenties geëvalueerd en statussen zijn waar nodig gecorrigeerd"
100
 
101
+ #: adrotate-functions.php:870
102
  msgid "Cleanup complete"
103
  msgstr "Opschonen voltooid"
104
 
105
+ #: adrotate-functions.php:875
106
  msgid "Action prohibited"
107
  msgstr "Actie niet toegestaan"
108
 
109
+ #: adrotate-functions.php:879
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
114
  "De advertentie is opgeslagen, maar heeft een probleem waardoor het mogelijk "
115
  "niet goed werkt. Bekijk de gekleurde advertentie."
116
 
117
+ #: adrotate-functions.php:883
118
  msgid "No data found in selected time period"
119
  msgstr "Geen gegevens gevonden in geselecteerde tijdsperiode"
120
 
121
+ #: adrotate-functions.php:887
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr ""
124
  "Database kan slechts eenmaal per uur worden geoptimaliseerd of opgeschoond"
125
 
126
+ #: adrotate-functions.php:891
127
  msgid "Form can not be (partially) empty!"
128
  msgstr "Formulier kan niet (gedeeltelijk) leeg zijn!"
129
 
130
+ #: adrotate-functions.php:895
131
  msgid "No adverts found."
132
  msgstr "Geen advertenties gevonden."
133
 
134
+ #: adrotate-functions.php:899
135
  msgid ""
136
  "The advert hash is not usable or is missing required data. Please copy the "
137
  "hash correctly and try again."
139
  "De advertentie hash is niet bruikbaar of mist vereiste informatie. Probeer "
140
  "het opnieuw met een nieuwe hash."
141
 
142
+ #: adrotate-functions.php:903
143
  msgid ""
144
  "The advert hash can not be used on the same site as it originated from or is "
145
  "not a valid hash for importing."
148
  "gegenereerd is of de hash is niet een geldige hash voor het importeren van "
149
  "een advertentie."
150
 
151
+ #: adrotate-functions.php:907
152
  msgid "Unexpected error"
153
  msgstr "Onverwachte fout"
154
 
325
  msgid "Installation instructions"
326
  msgstr "Installatie-instructies"
327
 
328
+ #: adrotate-output.php:735
329
  msgid "your attention:"
330
  msgstr "jouw aandacht:"
331
 
332
+ #: adrotate-output.php:766
333
  msgid ""
334
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
335
  "menu. If you need help getting started take a look at the"
338
  "te maken heeft, zit in dit menu. Als je hulp nodig hebt om aan de slag te "
339
  "gaan, kijk dan eens naar de"
340
 
341
+ #: adrotate-output.php:766
342
  msgid "manuals"
343
  msgstr "handleidingen"
344
 
345
+ #: adrotate-output.php:766
346
  msgid "and"
347
  msgstr "en"
348
 
349
+ #: adrotate-output.php:766
350
  msgid "forums"
351
  msgstr "forums"
352
 
353
+ #: adrotate-output.php:844
354
  msgid "Need help fast? Or do you have a question?"
355
  msgstr "Snel hulp nodig? Of heb je een vraag?"
356
 
357
+ #: adrotate-output.php:845
358
  msgid "Help AdRotate Grow"
359
  msgstr "Help AdRotate groeien"
360
 
361
+ #: adrotate-output.php:846
362
+ msgid "Get more features with AdRotate Pro"
363
+ msgstr "Beschik over meer functies met AdRotate Pro"
364
 
365
+ #: adrotate-output.php:852
366
  msgid ""
367
+ "If you need help, or have questions about AdRotate, the best and fastest way "
368
+ "to get your answer is via the AdRotate support forum. Usually I answer "
369
+ "questions the same day, often with a solution in the first answer."
370
  msgstr ""
371
+ "Als je hulp nodig hebt, of vragen hebt over AdRotate, is de beste en snelste "
372
+ "manier om je antwoord te krijgen via het AdRotate-forum. Meestal beantwoord "
373
+ "ik vragen dezelfde dag, vaak met een oplossing in het eerste antwoord."
 
 
 
374
 
375
+ #: adrotate-output.php:853
376
+ msgid "AdRotate Manuals"
377
+ msgstr "AdRotate Handleidingen"
378
 
379
+ #: adrotate-output.php:853
380
+ msgid "Support Forums"
381
+ msgstr "Supportfora"
382
 
383
+ #: adrotate-output.php:854
384
  msgid ""
385
+ "When posting on the forum, please include a brief description of the "
386
+ "problem, include any errors or symptoms. Often it helps if you try to "
387
+ "explain what you are trying to do. Providing some extra information always "
388
+ "helps with gettng a better answer or advise."
389
+ msgstr ""
390
+ "Als je op het forum en post maakt, voeg dan een korte omschrijving van het "
391
+ "probleem toe, vermeld eventuele fouten of symptomen. Vaak helpt het als je "
392
+ "probeert uit te leggen wat je probeert te doen. Het verstrekken van wat "
393
+ "extra informatie helpt altijd bij het krijgen van een beter antwoord of "
394
+ "advies."
395
+
396
+ #: adrotate-output.php:856
397
+ msgid ""
398
+ "Consider writing a review, sharing AdRotate in Social media or making a "
399
+ "donation if you like the plugin or if you find it useful. Writing a review "
400
+ "and sharing AdRotate on social media costs you nothing but doing so is super "
401
+ "helpful as promotion which helps to ensure future development."
402
+ msgstr ""
403
+ "Overweeg een recensie te schrijven, AdRotate te delen op sociale media of "
404
+ "een donatie te doen als je de plug-in leuk of nuttig vindt. Het schrijven "
405
+ "van een recensie en het delen van AdRotate op sociale media kost je niets, "
406
+ "maar is super nuttig omdat alle promotie helpt om toekomstige ontwikkeling "
407
+ "te garanderen."
408
+
409
+ #: adrotate-output.php:857
410
+ msgid "Post Tweet"
411
+ msgstr "Tweet plaatsen"
412
+
413
+ #: adrotate-output.php:857
414
+ msgid "Share on Facebook"
415
+ msgstr "Deel op Facebook"
416
+
417
+ #: adrotate-output.php:857
418
+ msgid "Write review on WordPress.org"
419
+ msgstr "Schrijf een review op WordPress.org"
420
+
421
+ #: adrotate-output.php:858
422
+ msgid "Thank you very much for your help and support!"
423
+ msgstr "Hartelijk dank voor je hulp!"
424
+
425
+ #: adrotate-output.php:863
426
+ msgid ""
427
+ "AdRotate Professional has a lot more functions for even better advertising "
428
+ "management. Check out the feature comparison tab on any of the product pages "
429
+ "to see what AdRotate Pro has to offer for you!"
430
  msgstr ""
431
+ "AdRotate Professional heeft veel meer functies voor nog beter "
432
+ "advertentiebeheer. Bekijk het tabblad met de vergelijking van functies op "
433
+ "een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
434
+ "heeft!"
435
 
436
+ #: adrotate-output.php:863
437
+ msgid "Compare Licenses"
438
+ msgstr "Licenties vergelijken"
 
439
 
440
+ #: adrotate-output.php:864
441
+ msgid "Single License"
442
+ msgstr "Enkele licentie"
443
+
444
+ #: adrotate-output.php:864
445
+ msgid "Use on ONE WordPress installation."
446
+ msgstr "Gebruik op één WordPress-installatie."
447
+
448
+ #: adrotate-output.php:864 adrotate-output.php:865
449
+ msgid "Buy now"
450
+ msgstr "Koop nu"
451
+
452
+ #: adrotate-output.php:865
453
+ msgid "Multi License"
454
+ msgstr "Multi Licentie"
455
+
456
+ #: adrotate-output.php:865
457
+ msgid "Use on up to FIVE WordPress installations."
458
+ msgstr "Gebruik maximaal vijf WordPress-installaties."
459
 
460
  #: adrotate-statistics.php:155
461
  msgid "January"
569
  msgid "Fill in the ID of the type you want to display!"
570
  msgstr "Vul het ID in van het type dat je wilt weergeven!"
571
 
572
+ #: adrotate.php:105 adrotate.php:175
 
 
 
 
 
 
 
 
573
  msgid "Manage Adverts"
574
  msgstr "Advertenties beheren"
575
 
576
+ #: adrotate.php:106 adrotate.php:301 dashboard/publisher/groups-main.php:12
577
  msgid "Manage Groups"
578
  msgstr "Beheer Groepen"
579
 
580
+ #: adrotate.php:107 adrotate.php:339 dashboard/publisher/schedules-main.php:12
581
  msgid "Manage Schedules"
582
  msgstr "Schema's beheren"
583
 
584
+ #: adrotate.php:108
585
  msgid "Manage Media"
586
  msgstr "Beheer Media"
587
 
588
+ #: adrotate.php:109 adrotate.php:503 dashboard/adrotatepro.php:98
589
+ #: dashboard/publisher/adverts-edit.php:178
590
  #: dashboard/publisher/statistics-main.php:23
591
  #: dashboard/settings/statistics.php:17
592
  msgid "Statistics"
593
  msgstr "Statistieken"
594
 
595
+ #: adrotate.php:110 adrotate.php:238 adrotate.php:309
596
+ msgid "Get AdRotate Pro"
597
+ msgstr "Koop AdRotate Pro"
598
+
599
+ #: adrotate.php:111
600
  msgid "Support"
601
  msgstr "Ondersteuning"
602
 
603
+ #: adrotate.php:112
604
  msgid "Settings"
605
  msgstr "Instellingen"
606
 
607
+ #: adrotate.php:131
 
 
 
 
608
  msgid "Get AdRotate Professional"
609
  msgstr "Koop AdRotate Professional"
610
 
611
+ #: adrotate.php:235 adrotate.php:307
612
  msgid "Manage"
613
  msgstr "Beheren"
614
 
615
+ #: adrotate.php:236
616
  msgid "Advert Generator"
617
  msgstr "Advertentie Generator"
618
 
619
+ #: adrotate.php:237 dashboard/publisher/adverts-edit.php:108
620
  msgid "New Advert"
621
  msgstr "Nieuwe advertentie"
622
 
623
+ #: adrotate.php:308
624
  msgid "Add New"
625
  msgstr "Nieuw"
626
 
627
+ #: adrotate.php:376
628
  msgid "Manage Media and Assets"
629
  msgstr "Media en assets beheren"
630
 
631
+ #: adrotate.php:380
632
  msgid ""
633
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
634
  "if you have HTML5 adverts containing multiple files."
636
  "Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
637
  "handig als je HTML5-advertenties met meerdere bestanden hebt."
638
 
639
+ #: adrotate.php:422
640
  msgid "Advert Statistics"
641
  msgstr "Statistieken voor advertenties"
642
 
643
+ #: adrotate.php:465
644
  msgid "AdRotate Support"
645
  msgstr "Ondersteuning voor AdRotate"
646
 
647
+ #: adrotate.php:496
648
  msgid "AdRotate Settings"
649
  msgstr "AdRotate-instellingen"
650
 
651
+ #: adrotate.php:501 dashboard/publisher/statistics-main.php:28
652
  msgid "General"
653
  msgstr "Algemeen"
654
 
655
+ #: adrotate.php:502 dashboard/settings/notifications.php:18
656
  msgid "Notifications"
657
  msgstr "Meldingen"
658
 
659
+ #: adrotate.php:504 dashboard/publisher/groups-edit.php:205
 
660
  msgid "Geo Targeting"
661
  msgstr "Geo-targeting"
662
 
663
+ #: adrotate.php:505 dashboard/settings/roles.php:17
 
 
 
 
664
  msgid "Access Roles"
665
  msgstr "Rollen"
666
 
667
+ #: adrotate.php:506 dashboard/settings/misc.php:16
668
  msgid "Miscellaneous"
669
  msgstr "Diversen"
670
 
671
+ #: adrotate.php:507 dashboard/settings/maintenance.php:16
672
  msgid "Maintenance"
673
  msgstr "Onderhoud"
674
 
805
  "adverteerders nieuwe advertenties maken. Selecteer maximaal drie e-"
806
  "mailadressen die u wilt op de hoogte stellen. Mis nooit meer een vervaldatum."
807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
  #: dashboard/publisher/adverts-disabled.php:15
809
  msgid "Disabled Adverts"
810
  msgstr "Advertenties voor uitgeschakelden"
818
  msgstr "Bulk acties"
819
 
820
  #: dashboard/publisher/adverts-disabled.php:21
821
+ #: dashboard/publisher/adverts-edit.php:186
822
  msgid "Activate"
823
  msgstr "Activeren"
824
 
844
  msgstr "Ga"
845
 
846
  #: dashboard/publisher/adverts-disabled.php:35
847
+ #: dashboard/publisher/adverts-edit.php:263
848
  #: dashboard/publisher/adverts-error.php:39
849
  #: dashboard/publisher/adverts-main.php:39
850
  #: dashboard/publisher/groups-edit.php:350
861
  msgstr "Begin/einde"
862
 
863
  #: dashboard/publisher/adverts-disabled.php:37
864
+ #: dashboard/publisher/adverts-edit.php:116
865
+ #: dashboard/publisher/adverts-edit.php:264
866
  #: dashboard/publisher/adverts-error.php:40
867
  #: dashboard/publisher/adverts-main.php:41
868
  #: dashboard/publisher/groups-edit.php:65
964
  "afbeelding en sla de advertentie opnieuw op!"
965
 
966
  #: dashboard/publisher/adverts-edit.php:62
 
 
 
 
 
 
967
  msgid ""
968
+ "This kind of advert can not have statistics enabled in AdRotate. Impression "
969
+ "counting is available in AdRotate Pro."
970
  msgstr ""
971
+ "Voor dit soort advertenties kunnen geen statistieken zijn ingeschakeld in "
972
+ "AdRotate. Het tellen van vertoningen is beschikbaar in AdRotate Pro."
973
 
974
+ #: dashboard/publisher/adverts-edit.php:67
975
  msgid "This advert is expired and currently not shown on your website!"
976
  msgstr ""
977
  "Deze advertentie is verlopen en momenteel niet weergegeven op uw website!"
978
 
979
+ #: dashboard/publisher/adverts-edit.php:70
980
  msgid "The advert will expire in less than 2 days!"
981
  msgstr "De advertentie vervalt binnen 2 dagen!"
982
 
983
+ #: dashboard/publisher/adverts-edit.php:73
984
  msgid "This advert will expire in less than 7 days!"
985
  msgstr "Deze advertentie vervalt in minder dan 7 dagen!"
986
 
987
+ #: dashboard/publisher/adverts-edit.php:76
988
  msgid "This advert has been disabled and does not rotate on your site!"
989
  msgstr "Deze advertentie is uitgeschakeld en is niet zichtbaar op de site!"
990
 
991
+ #: dashboard/publisher/adverts-edit.php:79
992
+ msgid ""
993
+ "AdRotate cannot find an error but the advert is marked erroneous, try re-"
994
+ "saving the ad!"
995
+ msgstr ""
996
+ "AdRotate kan geen fout vinden, maar de advertentie is onjuist gemarkeerd, "
997
+ "probeer de advertentie opnieuw op te slaan!"
998
+
999
+ #: dashboard/publisher/adverts-edit.php:83
1000
+ msgid "This advert still uses the %image% tag. Please change it to %asset%!"
1001
+ msgstr ""
1002
+ "Deze advertentie maakt nog steeds gebruik van de %image% tag. Wijzig het in "
1003
+ "%asset%!"
1004
+
1005
+ #: dashboard/publisher/adverts-edit.php:110
1006
  msgid "Edit Advert"
1007
  msgstr "Advertentie bewerken"
1008
 
1009
+ #: dashboard/publisher/adverts-edit.php:125
1010
  msgid "AdCode"
1011
  msgstr "AdCode"
1012
 
1013
+ #: dashboard/publisher/adverts-edit.php:130
1014
  msgid "Basic Examples:"
1015
  msgstr "Basisvoorbeelden:"
1016
 
1017
+ #: dashboard/publisher/adverts-edit.php:131
1018
  msgid "Click any of the examples to use it."
1019
  msgstr "Klik op een van de voorbeelden om het te gebruiken."
1020
 
1021
+ #: dashboard/publisher/adverts-edit.php:140
1022
  msgid "Useful tags"
1023
  msgstr "Handige Tags"
1024
 
1025
+ #: dashboard/publisher/adverts-edit.php:142
1026
  msgid "Insert the advert ID Number."
1027
  msgstr "Voeg het nummer van de advertentie-ID in."
1028
 
1029
+ #: dashboard/publisher/adverts-edit.php:142
1030
  msgid "Use this tag when selecting a image below."
1031
  msgstr "Gebruik deze tag bij het selecteren van een afbeelding hieronder."
1032
 
1033
+ #: dashboard/publisher/adverts-edit.php:142
1034
  msgid "Insert the advert name."
1035
  msgstr "Voeg de naam van de advertentie in."
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:142
1038
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1039
  msgstr ""
1040
  "Een willekeurige tekenreeks invoegen. Handig voor DFP/DoubleClick-"
1041
  "typeadvertenties."
1042
 
1043
+ #: dashboard/publisher/adverts-edit.php:142
1044
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1045
  msgstr ""
1046
  "Voeg in de &lt;a&gt; tag toe om de advertentie in een nieuw venster te "
1047
  "openen."
1048
 
1049
+ #: dashboard/publisher/adverts-edit.php:142
1050
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1051
  msgstr ""
1052
  "Voeg in de &lt;a&gt; tag toe om crawlers te vertellen deze koppeling te "
1053
  "negeren."
1054
 
1055
+ #: dashboard/publisher/adverts-edit.php:143
1056
  msgid ""
1057
  "Place the cursor where you want to add a tag and click to add it to your "
1058
  "AdCode."
1060
  "Plaats de cursor op de plek waar je een tag wilt toevoegen en klik op de tag "
1061
  "om deze toe te voegen aan de AdCode."
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:148
1064
  msgid "Preview"
1065
  msgstr "Voorbeeld"
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:151
1068
  msgid ""
1069
  "Note: While this preview is an accurate one, it might look different then it "
1070
  "does on the website."
1072
  "Let op: Hoewel dit voorbeeld accuraat is, kan deze er anders uitzien dan op "
1073
  "de website."
1074
 
1075
+ #: dashboard/publisher/adverts-edit.php:152
1076
  msgid ""
1077
  "This is because of CSS differences. Your themes CSS file is not active here!"
1078
  msgstr ""
1079
  "Dit komt door verschillen in CSS. Het thema CSS-bestand is hier niet actief!"
1080
 
1081
+ #: dashboard/publisher/adverts-edit.php:157
1082
  msgid "Banner asset"
1083
  msgstr "Banner Asset"
1084
 
1085
+ #: dashboard/publisher/adverts-edit.php:159
1086
  msgid "WordPress media:"
1087
  msgstr "WordPress media:"
1088
 
1089
+ #: dashboard/publisher/adverts-edit.php:159
1090
  msgid "Select Banner"
1091
  msgstr "Selecteer banner"
1092
 
1093
+ #: dashboard/publisher/adverts-edit.php:161
1094
  msgid "- OR -"
1095
  msgstr "- Of -"
1096
 
1097
+ #: dashboard/publisher/adverts-edit.php:162
1098
  msgid "Banner folder:"
1099
  msgstr "Banner map:"
1100
 
1101
+ #: dashboard/publisher/adverts-edit.php:163
1102
  msgid "No image selected"
1103
  msgstr "Geen afbeelding geselecteerd"
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:173
1106
  msgid "Use %asset% in the adcode instead of the file path."
1107
  msgstr "Gebruik %asset% in de adcode in plaats van het bestandspad."
1108
 
1109
+ #: dashboard/publisher/adverts-edit.php:173
1110
  msgid ""
1111
  "Use either the text field or the dropdown. If the textfield has content that "
1112
  "field has priority."
1114
  "Gebruik het tekstveld of de vervolgkeuzelijst. Als het tekstveld inhoud "
1115
  "heeft, heeft dat veld prioriteit."
1116
 
1117
+ #: dashboard/publisher/adverts-edit.php:180
1118
+ msgid "Count clicks and impressions."
1119
+ msgstr "Tel klikken en vertoningen."
 
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:181
1122
  msgid ""
1123
+ "Click counting does not work for Javascript/html5 adverts such as those "
1124
+ "provided by Google AdSense/DFP/DoubleClick."
 
1125
  msgstr ""
1126
+ "Klikken tellen werkt niet voor Javascript/html5 advertenties zoals die van "
1127
+ "Google AdSense/DFP/DoubleClick."
 
1128
 
1129
+ #: dashboard/publisher/adverts-edit.php:189
1130
  msgid "Enabled, this ad will be visible"
1131
  msgstr "Actief, deze advertentie wordt getoond"
1132
 
1133
+ #: dashboard/publisher/adverts-edit.php:190
1134
  msgid "Disabled, do not show this advert anywhere"
1135
  msgstr "Inactief, laat deze advertentie nergens zien"
1136
 
1137
+ #: dashboard/publisher/adverts-edit.php:196
1138
  msgid ""
1139
  "Target your audience with Geo Targeting and easily select which devices and "
1140
  "mobile operating systems the advert should show on with AdRotate Pro!"
1143
  "apparaten en mobiele besturingssystemen de advertentie moet worden "
1144
  "weergegeven met AdRotate Pro!"
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:196
1147
+ #: dashboard/publisher/adverts-edit.php:234
1148
  #: dashboard/publisher/groups-edit.php:227
 
 
 
1149
  msgid "Upgrade now"
1150
  msgstr "Nu bijwerken"
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:198
1153
  msgid "Schedule your advert"
1154
  msgstr "Plan jouw advertentie"
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:199
1157
  msgid ""
1158
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1159
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1163
  "systeem, houdt u dit in gedachten: Als de begin- of eindtijd na de lunch is, "
1164
  "voegt u 12 uur toe. 14.00 uur is 14:00 uur. 6am is 6:00 uur."
1165
 
1166
+ #: dashboard/publisher/adverts-edit.php:203
1167
  msgid "Start date"
1168
  msgstr "Startdatum"
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:207
1171
  msgid "End date"
1172
  msgstr "Einddatum"
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:213
1175
  msgid "Start time"
1176
  msgstr "Starttijd"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:218
1179
  msgid "End time"
1180
  msgstr "Eindtijd"
1181
 
1182
+ #: dashboard/publisher/adverts-edit.php:226
1183
  msgid "Maximum Clicks"
1184
  msgstr "Maximale klikken"
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:227
1187
+ #: dashboard/publisher/adverts-edit.php:229
1188
  msgid "Leave empty or 0 to skip this."
1189
  msgstr "Laat leeg of 0 om dit over te slaan."
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:228
1192
  msgid "Maximum Impressions"
1193
  msgstr "Maximale vertoningen"
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:234
1196
  msgid ""
1197
  "Plan ahead and create multiple and more advanced schedules for each advert "
1198
  "with AdRotate Pro."
1200
  "Plan vooruit en maak meerdere en geavanceerdere schema's voor elke "
1201
  "advertentie met AdRotate Pro."
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:236
1204
  #: dashboard/publisher/groups-edit.php:157
1205
  #: dashboard/publisher/groups-edit.php:302
1206
  msgid "Usage"
1207
  msgstr "Gebruik"
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:240
1210
  #: dashboard/publisher/groups-edit.php:161
1211
  #: dashboard/publisher/groups-edit.php:306
1212
  msgid "Widget"
1213
  msgstr "Widget"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:241
1216
  msgid ""
1217
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1218
  "and select the advert or the group the advert is in."
1221
  "zijbalk waar u de advertentie wilt plaatsen en selecteer de advertentie of "
1222
  "de groep waarin de advertentie zich bevindt."
1223
 
1224
+ #: dashboard/publisher/adverts-edit.php:244
1225
  #: dashboard/publisher/groups-edit.php:165
1226
  #: dashboard/publisher/groups-edit.php:310
1227
  msgid "In a post or page"
1228
  msgstr "In een bericht of pagina"
1229
 
1230
+ #: dashboard/publisher/adverts-edit.php:246
1231
  #: dashboard/publisher/groups-edit.php:167
1232
  #: dashboard/publisher/groups-edit.php:312
1233
  msgid "Directly in a theme"
1234
  msgstr "Direct in een thema"
1235
 
1236
+ #: dashboard/publisher/adverts-edit.php:253
1237
+ #: dashboard/publisher/adverts-edit.php:296
1238
  msgid "Save Advert"
1239
  msgstr "Advertentie opslaan"
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:254
1242
+ #: dashboard/publisher/adverts-edit.php:297
1243
  #: dashboard/publisher/adverts-generator.php:148
1244
  #: dashboard/publisher/groups-edit.php:175
1245
  #: dashboard/publisher/groups-edit.php:320
1247
  msgid "Cancel"
1248
  msgstr "Annuleren"
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:258
1251
  msgid "Select Groups"
1252
  msgstr "Groepen selecteren"
1253
 
1254
+ #: dashboard/publisher/adverts-edit.php:265
1255
+ #: dashboard/publisher/groups-main.php:34
1256
+ #: dashboard/publisher/schedules-main.php:34
1257
+ #: dashboard/publisher/statistics-main.php:35
1258
+ msgid "Adverts"
1259
+ msgstr "Advertenties"
1260
+
1261
+ #: dashboard/publisher/adverts-edit.php:274
1262
  #: dashboard/publisher/groups-main.php:60
1263
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1264
  msgid "Default"
1265
  msgstr "Standaard"
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:275
1268
  #: dashboard/publisher/groups-main.php:61
1269
  msgid "Dynamic"
1270
  msgstr "Dynamisch"
1271
 
1272
+ #: dashboard/publisher/adverts-edit.php:275
1273
  #: dashboard/publisher/groups-main.php:61
1274
  msgid "second rotation"
1275
  msgstr "tweede rotatie"
1276
 
1277
+ #: dashboard/publisher/adverts-edit.php:276
1278
  #: dashboard/publisher/groups-main.php:62
1279
  msgid "Block"
1280
  msgstr "Blok"
1281
 
1282
+ #: dashboard/publisher/adverts-edit.php:276
1283
  #: dashboard/publisher/groups-main.php:62
1284
  msgid "grid"
1285
  msgstr "rooster"
1286
 
1287
+ #: dashboard/publisher/adverts-edit.php:277
1288
  #: dashboard/publisher/groups-edit.php:234
1289
  #: dashboard/publisher/groups-main.php:63
1290
  msgid "Post Injection"
1291
  msgstr "Post injectie"
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:278
1294
  msgid "Geolocation"
1295
  msgstr "Geolocatie"
1296
 
1297
+ #: dashboard/publisher/adverts-edit.php:285
1298
  #: dashboard/publisher/groups-edit.php:74
1299
  #: dashboard/publisher/groups-main.php:70
1300
  msgid "Mode"
1301
  msgstr "Modus"
1302
 
1303
+ #: dashboard/publisher/adverts-edit.php:302
1304
  #: dashboard/publisher/adverts-generator.php:131
1305
  msgid "Portability"
1306
  msgstr "Mobiliteit"
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:303
1309
  msgid ""
1310
  "This long code is your advert. It includes all settings from above except "
1311
  "the schedule and group selection. You can import this hash into another "
1322
  "kunt de hash in het veld ‘Advert Hash', plakken in de advertentie generator "
1323
  "van een andere installatie van AdRotate."
1324
 
1325
+ #: dashboard/publisher/adverts-edit.php:307
1326
  #: dashboard/publisher/adverts-generator.php:137
1327
  msgid "Advert hash"
1328
  msgstr "Advertentie hash"
1725
  msgid "Get access to all features in AdRotate Pro."
1726
  msgstr "Krijg toegang tot alle functies in AdRotate Pro."
1727
 
1728
+ #: dashboard/publisher/groups-edit.php:155
1729
+ msgid "Upgrade today"
1730
+ msgstr "Upgrade vandaag"
1731
+
1732
  #: dashboard/publisher/groups-edit.php:162
1733
  #: dashboard/publisher/groups-edit.php:307
1734
  msgid ""
2186
  "Alle statistieken zijn indicatief. Ze komen niet perse overeen met de "
2187
  "resultaten die door andere partijen zijn geteld."
2188
 
 
 
 
 
 
 
2189
  #: dashboard/publisher/statistics-group.php:46
2190
  msgid "Statistics for group"
2191
  msgstr "Statistieken voor groep"
2194
  msgid "Adverts counting stats"
2195
  msgstr "Advertenties tellen statistieken"
2196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2197
  #: dashboard/settings/general.php:17
2198
  msgid "General Settings"
2199
  msgstr "Algemene instellingen"
2207
  msgstr "Sommige opties zijn alleen beschikbaar in AdRotate Pro!"
2208
 
2209
  #: dashboard/settings/general.php:21
2210
+ msgid "Duplicate adverts"
2211
+ msgstr "Advertenties dupliceren"
2212
 
2213
  #: dashboard/settings/general.php:22
2214
  msgid ""
2215
+ "Try and prevent adverts in groups that are in Default or Block mode from "
2216
+ "showing multiple times on the same page load."
2217
  msgstr ""
2218
+ "Probeer te voorkomen dat advertenties in groepen die in standaard- of "
2219
+ "blokmodus ingesteld zijn meerdere keren worden weergegeven tijdens het laden "
2220
+ "van dezelfde pagina."
2221
 
2222
+ #: dashboard/settings/general.php:23
2223
+ msgid ""
2224
+ "If you still notice double adverts from groups placed on a page, start with "
2225
+ "carefully looking at your setup to make sure you did not cause this yourself."
2226
+ msgstr ""
2227
+ "Als je nog steeds dubbele advertenties ziet van groepen die op een pagina "
2228
+ "zijn geplaatst, moet je eerst goed naar je setup kijken om ervoor te zorgen "
2229
+ "dat je dit niet zelf hebt veroorzaakt."
2230
 
2231
+ #: dashboard/settings/general.php:23
2232
+ msgid "On some servers $_SESSION is disabled."
2233
+ msgstr "Op sommige servers is _SESSION $ uitgeschakeld."
2234
+
2235
+ #: dashboard/settings/general.php:23
2236
  msgid ""
2237
+ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. However, "
2238
+ "most people will not need this extra plugin!"
2239
  msgstr ""
2240
+ "Een plugin genaamd \"WP Session Manager\" door Eric Mann kan dit oplossen. "
2241
+ "Echter, de meeste mensen zullen niet nodig deze extra plugin!"
2242
 
2243
+ #: dashboard/settings/general.php:26
2244
+ msgid "Shortcode in widgets"
2245
+ msgstr "Shortcode in widgets"
2246
+
2247
+ #: dashboard/settings/general.php:27
2248
+ msgid ""
2249
+ "Try and activate shortcodes in text widgets if your theme does not add "
2250
+ "support for it by itself. (This does not always work!)"
2251
+ msgstr ""
2252
+ "Probeer shortcodes in tekstwidgets te activeren als je thema er zelf geen "
2253
+ "ondersteuning voor heeft. (Dit werkt niet altijd!)"
2254
 
2255
  #: dashboard/settings/general.php:30
2256
+ msgid "Advert live preview"
2257
+ msgstr "Advertentie live preview"
2258
+
2259
+ #: dashboard/settings/general.php:31
2260
  msgid ""
2261
+ "Disable live previews for adverts if you have faulty adverts that overflow "
2262
+ "their designated area while creating/editing adverts."
2263
  msgstr ""
2264
+ "Schakel live previews voor advertenties uit als je advertenties hebt die hun "
2265
+ "voorbeeld vak overschrijden tijdens het maken / bewerken van advertenties."
 
2266
 
2267
+ #: dashboard/settings/general.php:34
2268
+ msgid "Dynamic mode on mobile"
2269
+ msgstr "Dynamische modus op mobiel"
2270
+
2271
+ #: dashboard/settings/general.php:35
2272
+ msgid ""
2273
+ "Disable dynamic mode in groups for mobile devices if you notice skipping or "
2274
+ "jumpy content."
2275
+ msgstr ""
2276
+ "Schakel de dynamische modus uit voor mobiele apparaten als je overlappende "
2277
+ "of springerige content opmerkt."
2278
+
2279
+ #: dashboard/settings/general.php:38
2280
  msgid "Load jQuery"
2281
  msgstr "JQuery laden"
2282
 
2283
+ #: dashboard/settings/general.php:39
2284
  msgid ""
2285
+ "Load jQuery if your theme does not load it already. jQuery is required for "
2286
+ "dynamic groups, statistics and some other features."
2287
  msgstr ""
2288
+ "Laad jQuery als je thema het niet zelf laadt. jQuery is vereist voor "
2289
  "dynamische groepen, statistieken en enkele andere functies."
2290
 
2291
+ #: dashboard/settings/general.php:42
2292
  msgid "Load scripts in footer?"
2293
  msgstr "Scripts laden in footer?"
2294
 
2295
+ #: dashboard/settings/general.php:43
2296
+ msgid "Load all AdRotate Javascripts in the footer of your site."
2297
+ msgstr "Laad alle AdRotate Javascripts in de footer van je site."
 
 
 
 
2298
 
2299
+ #: dashboard/settings/general.php:46
2300
  msgid "Adblock disguise"
2301
  msgstr "Adblock vermomming"
2302
 
2303
+ #: dashboard/settings/general.php:48
2304
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2305
  msgstr ""
2306
  "Laat leeg om uit te schakelen. Gebruik alleen lowercaps letters. "
2307
  "Bijvoorbeeld:"
2308
 
2309
+ #: dashboard/settings/general.php:49
2310
  msgid ""
2311
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2312
  msgstr ""
2313
  "Probeer adblock-plug-ins in de meeste moderne browsers te vermijden bij het "
2314
  "gebruik van shortcodes."
2315
 
2316
+ #: dashboard/settings/general.php:49
2317
  msgid ""
2318
  "To also apply this feature to widgets, use a text widget with a shortcode "
2319
  "instead of the AdRotate widget."
2321
  "Als u deze functie ook wilt toepassen op widgets, gebruikt u een tekstwidget "
2322
  "met een shortcode in plaats van de widget AdRotate."
2323
 
2324
+ #: dashboard/settings/general.php:49
2325
  msgid ""
2326
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2327
  "feature will have little effect!"
2329
  "Vermijd het gebruik van voor de hand liggende termen of bestandsnamen in de "
2330
  "advertenties of deze functie zal weinig effect hebben!"
2331
 
2332
+ #: dashboard/settings/general.php:54
2333
  msgid "Banner Folder"
2334
  msgstr "Banner map"
2335
 
2336
+ #: dashboard/settings/general.php:55
2337
  msgid "Set a folder where your banner images will be stored."
2338
  msgstr "Stel een map in waar de advertentie afbeeldingen worden opgeslagen."
2339
 
2340
+ #: dashboard/settings/general.php:58
2341
  msgid "Folder name"
2342
  msgstr "Naam map"
2343
 
2344
+ #: dashboard/settings/general.php:60
2345
  msgid "(Default: banners)."
2346
  msgstr "(Standaard: banners)."
2347
 
2348
+ #: dashboard/settings/general.php:61
2349
  msgid ""
2350
  "To try and trick ad blockers you could set the folder to something crazy "
2351
  "like:"
2352
  msgstr ""
2353
  "Om te proberen ad blockers te misleiden, u de map instellen op iets geks als:"
2354
 
2355
+ #: dashboard/settings/general.php:62
2356
  msgid ""
2357
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2358
  "will show errors when the folder is missing."
2360
  "Deze map wordt niet automatisch gemaakt als deze niet bestaat. AdRoteren "
2361
  "geeft fouten weer wanneer de map ontbreekt."
2362
 
2363
+ #: dashboard/settings/general.php:67
2364
  msgid "Bot filter"
2365
  msgstr "Botfilter"
2366
 
2367
+ #: dashboard/settings/general.php:68
2368
  msgid "The bot filter is used for the AdRotate stats tracker."
2369
  msgstr ""
2370
  "Het botfilter wordt gebruikt voor Geo Targeting en de AdRotate stats tracker."
2371
 
2372
+ #: dashboard/settings/general.php:71
2373
  msgid "User-Agent Filter"
2374
  msgstr "Filter van gebruikersagent"
2375
 
2376
+ #: dashboard/settings/general.php:74
2377
  msgid ""
2378
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2379
  msgstr ""
2380
  "Een komma gescheiden lijst van zoekwoorden. Filter bots/crawlers/user-agents."
2381
 
2382
+ #: dashboard/settings/general.php:75
2383
  msgid ""
2384
  "Keep in mind that this might give false positives. The word 'fire' also "
2385
  "matches 'firefox', but not vice-versa. So be careful!"
2387
  "Houd er rekening mee dat dit valse positieven kan geven. Het woord 'vuur' "
2388
  "komt ook overeen met 'firefox', maar niet andersom. Dus wees voorzichtig!"
2389
 
2390
+ #: dashboard/settings/general.php:76
2391
  msgid ""
2392
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2393
  "characters are stripped out."
2395
  "Alleen woorden met alfanumerieke tekens en [ - _ ] zijn toegestaan. Alle "
2396
  "andere personages zijn gestript."
2397
 
2398
+ #: dashboard/settings/general.php:77
2399
  msgid ""
2400
  "Additionally to the list specified here, empty User-Agents are blocked as "
2401
  "well."
2403
  "Bovendien worden lege gebruikersagents geblokkeerd in de lijst die hier is "
2404
  "opgegeven."
2405
 
2406
+ #: dashboard/settings/general.php:77
2407
  msgid "Learn more about"
2408
  msgstr "Meer informatie over"
2409
 
2410
+ #: dashboard/settings/general.php:77
2411
  msgid "user-agents"
2412
  msgstr "gebruikersagenten"
2413
 
2414
+ #: dashboard/settings/general.php:83 dashboard/settings/maintenance.php:107
2415
+ #: dashboard/settings/misc.php:47 dashboard/settings/notifications.php:72
2416
+ #: dashboard/settings/roles.php:55 dashboard/settings/statistics.php:85
2417
+ msgid "Update Options"
2418
+ msgstr "Update opties"
2419
+
2420
  #: dashboard/settings/geotargeting.php:17
2421
  msgid "Geo Targeting - Available in AdRotate Pro"
2422
  msgstr "Geotargeting - Beschikbaar in AdRotate Pro"
2527
  msgstr "Gebruik deze functies wanneer je merkt dat de database traag word."
2528
 
2529
  #: dashboard/settings/maintenance.php:22
2530
+ msgid "Check for errors"
2531
+ msgstr "Controleren op fouten"
2532
 
2533
  #: dashboard/settings/maintenance.php:22
2534
  msgid "You are about to check all adverts for errors."
2550
  msgstr "Database en bestanden opschonen"
2551
 
2552
  #: dashboard/settings/maintenance.php:30
2553
+ msgid "Run Clean-up"
2554
+ msgstr "Opruimen uitvoeren"
2555
 
2556
  #: dashboard/settings/maintenance.php:30
2557
  msgid "You are about to do maintenance on your setup of AdRotate."
3083
 
3084
  #: dashboard/settings/statistics.php:48
3085
  msgid ""
3086
+ "The settings below are for the local tracker and have no effect when using "
3087
+ "Google Analytics or Matomo."
3088
  msgstr ""
3089
+ "De onderstaande instellingen zijn voor de lokale tracker en hebben geen "
3090
+ "effect bij het gebruik van Google Analytics of Matomo."
3091
 
3092
  #: dashboard/settings/statistics.php:51
3093
+ msgid "Admin stats"
3094
+ msgstr "Beheerdersstatistieken"
3095
+
3096
+ #: dashboard/settings/statistics.php:53
3097
+ msgid "Track statistics from admin users."
3098
+ msgstr "Statistieken van beheerders bijhouden."
3099
+
3100
+ #: dashboard/settings/statistics.php:57
3101
  msgid "Logged in impressions"
3102
  msgstr "Impressies"
3103
 
3104
+ #: dashboard/settings/statistics.php:59
3105
  msgid "Track impressions from logged in users."
3106
  msgstr "Vertoningen van ingelogde gebruikers bijhouden."
3107
 
3108
+ #: dashboard/settings/statistics.php:63
3109
  msgid "Logged in clicks"
3110
  msgstr "Max klikken"
3111
 
3112
+ #: dashboard/settings/statistics.php:65
3113
  msgid "Track clicks from logged in users."
3114
  msgstr "Volg klikken van ingelogde gebruikers."
3115
 
3116
+ #: dashboard/settings/statistics.php:69
3117
  msgid "Impression timer"
3118
  msgstr "Vertoningstimer"
3119
 
3120
+ #: dashboard/settings/statistics.php:71 dashboard/settings/statistics.php:78
3121
  msgid "Seconds."
3122
  msgstr "Seconden."
3123
 
3124
+ #: dashboard/settings/statistics.php:72
3125
  msgid "Default: 60."
3126
  msgstr "Standaard: 60."
3127
 
3128
+ #: dashboard/settings/statistics.php:72
3129
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3130
  msgstr ""
3131
  "Dit aantal mag niet leeg zijn, lager zijn dan 10 of meer dan 3600 (1 uur)."
3132
 
3133
+ #: dashboard/settings/statistics.php:76
3134
  msgid "Click timer"
3135
  msgstr "Kosten per klik"
3136
 
3137
+ #: dashboard/settings/statistics.php:79
3138
  msgid "Default: 86400."
3139
  msgstr "Standaard: 86400."
3140
 
3141
+ #: dashboard/settings/statistics.php:79
3142
  msgid ""
3143
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3144
  msgstr ""
3212
  msgid "Premium Support is available in AdRotate Pro!"
3213
  msgstr "Premium Support is beschikbaar in AdRotate Pro!"
3214
 
3215
+ #~ msgid "Check all adverts for configuration errors"
3216
+ #~ msgstr "Alle advertenties controleren op configuratiefouten"
3217
+
3218
+ #~ msgid "Clean-up database and old files"
3219
+ #~ msgstr "Database en oude bestanden opschonen"
3220
+
3221
+ #~ msgid "More features with AdRotate Pro"
3222
+ #~ msgstr "Krijg meer features met AdRotate Pro"
3223
+
3224
+ #~ msgid ""
3225
+ #~ "Many users only think to review AdRotate when something goes wrong while "
3226
+ #~ "thousands of people happily use AdRotate."
3227
+ #~ msgstr ""
3228
+ #~ "Veel gebruikers denken alleen om AdRotate te reviewen wanneer er iets "
3229
+ #~ "misgaat terwijl duizenden mensen Graag AdRotate gebruiken."
3230
+
3231
+ #~ msgid "If you find AdRotate useful please leave your"
3232
+ #~ msgstr "Als u AdRotate nuttig vindt, laat je"
3233
+
3234
+ #~ msgid "rating"
3235
+ #~ msgstr "score"
3236
+
3237
+ #~ msgid "on WordPress.org to help AdRotate grow in a positive way"
3238
+ #~ msgstr ""
3239
+ #~ "op WordPress.org om AdRotate te helpen groeien op een positieve manier"
3240
+
3241
+ #~ msgid ""
3242
+ #~ "Get more advanced features such as Geo Targeting, scheduling and much "
3243
+ #~ "more with AdRotate Pro."
3244
+ #~ msgstr ""
3245
+ #~ "Krijg meer geavanceerde features zoals Geo Targeting, advertenties "
3246
+ #~ "inplannen en nog veel meer met AdRotate Pro."
3247
+
3248
+ #~ msgid "Get access to premium support and free updates for one year!"
3249
+ #~ msgstr ""
3250
+ #~ "Krijg toegang tot premium ondersteuning en gratis updates voor een jaar!"
3251
+
3252
+ #~ msgid "General Info"
3253
+ #~ msgstr "Algemene info"
3254
+
3255
+ #~ msgid "Advertisers"
3256
+ #~ msgstr "Adverteerders"
3257
+
3258
+ #~ msgid "At a Glance"
3259
+ #~ msgstr "In een oogopslag"
3260
+
3261
+ #~ msgid "Your setup"
3262
+ #~ msgstr "Jouw installatie"
3263
+
3264
+ #~ msgid "Adverts that need you"
3265
+ #~ msgstr "Controleer advertenties"
3266
+
3267
+ #~ msgid "(Almost) Expired"
3268
+ #~ msgstr "(Bijna) Verlopen"
3269
+
3270
+ #~ msgid "Groups"
3271
+ #~ msgstr "Groepen"
3272
+
3273
+ #~ msgid "Have errors"
3274
+ #~ msgstr "Fouten hebben"
3275
+
3276
+ #~ msgid "Use on TWO WordPress installations."
3277
+ #~ msgstr "Gebruik op twee WordPress-installaties."
3278
+
3279
+ #~ msgid "Developer License"
3280
+ #~ msgstr "Ontwikkelaarslicentie"
3281
+
3282
+ #~ msgid "Use on up to a HUNDRED WordPress installations and/or networks."
3283
+ #~ msgstr ""
3284
+ #~ "Gebruik op maximaal honderd WordPress-installaties en/of -netwerken."
3285
+
3286
+ #~ msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
3287
+ #~ msgstr ""
3288
+ #~ "Tracking is ingeschakeld, maar er is geen geldige link/tag gevonden in de "
3289
+ #~ "adcode!"
3290
+
3291
+ #~ msgid "Enable click and impression tracking for this advert."
3292
+ #~ msgstr ""
3293
+ #~ "Schakel het bijhouden van klikken en vertoningen in voor deze advertentie."
3294
+
3295
+ #~ msgid ""
3296
+ #~ "Note: Clicktracking does not work for Javascript adverts such as those "
3297
+ #~ "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
3298
+ #~ "always supported."
3299
+ #~ msgstr ""
3300
+ #~ "Opmerking: Clicktracking werkt niet voor Javascript-advertenties, zoals "
3301
+ #~ "die van Google AdSense/DFP/DoubleClick. HTML5/Flash-advertenties worden "
3302
+ #~ "niet altijd ondersteund."
3303
+
3304
+ #~ msgid "Advertisers - Available in AdRotate Pro"
3305
+ #~ msgstr "Adverteerders - Beschikbaar in AdRotate Pro"
3306
+
3307
+ #~ msgid "Enable advertisers so they can review and manage their own ads."
3308
+ #~ msgstr ""
3309
+ #~ "Stel adverteerders in zodat ze hun eigen advertenties kunnen bekijken en "
3310
+ #~ "beheren."
3311
+
3312
+ #~ msgid "Enable Advertisers"
3313
+ #~ msgstr "Adverteerders inschakelen"
3314
+
3315
+ #~ msgid "Allow adverts to be coupled to users (Advertisers)."
3316
+ #~ msgstr ""
3317
+ #~ "Toestaan dat advertenties worden gekoppeld aan gebruikers (Adverteerders)."
3318
+
3319
+ #~ msgid "Edit/update adverts"
3320
+ #~ msgstr "Advertenties bewerken/bijwerken"
3321
+
3322
+ #~ msgid "Allow advertisers to add new or edit their adverts."
3323
+ #~ msgstr ""
3324
+ #~ "Sta adverteerders toe om nieuwe advertenties toe te voegen of te bewerken."
3325
+
3326
+ #~ msgid "Mobile adverts"
3327
+ #~ msgstr "Mobiele advertenties"
3328
+
3329
+ #~ msgid "Allow advertisers to specify on which devices their ads will show."
3330
+ #~ msgstr ""
3331
+ #~ "Sta adverteerders toe om aan te geven op welke apparaten hun advertenties "
3332
+ #~ "worden weergegeven."
3333
+
3334
+ #~ msgid ""
3335
+ #~ "Allow advertisers to specify where their ads will show. Geo Targeting has "
3336
+ #~ "to be enabled, too."
3337
+ #~ msgstr ""
3338
+ #~ "Sta adverteerders toe om aan te geven waar hun advertenties worden "
3339
+ #~ "weergegeven. Geo Targeting moet ook ingeschakeld zijn."
3340
+
3341
+ #~ msgid "Advertiser role"
3342
+ #~ msgstr "Functie Adverteerder"
3343
+
3344
+ #~ msgid "Create a seperate user role for your advertisers."
3345
+ #~ msgstr "Maak een aparte gebruikersrol voor jouw adverteerders."
3346
+
3347
+ #~ msgid ""
3348
+ #~ "Don't forget to give these users access to their advertiser dashboard via "
3349
+ #~ "the Roles tab."
3350
+ #~ msgstr ""
3351
+ #~ "Vergeet niet deze gebruikers toegang te geven tot hun "
3352
+ #~ "adverteerdersdashboard via het tabblad Rollen."
3353
+
3354
+ #~ msgid ""
3355
+ #~ "Enable this option to if your theme does not support shortcodes in the "
3356
+ #~ "WordPress text widget."
3357
+ #~ msgstr ""
3358
+ #~ "Schakel deze optie in als het thema geen shortcodes ondersteunt in de "
3359
+ #~ "tekst widget van WordPress. (Dit werkt niet altijd!)"
3360
+
3361
+ #~ msgid "Disable dynamic mode"
3362
+ #~ msgstr "Schakel dynamische modus uit"
3363
+
3364
  #~ msgid "Get started today"
3365
  #~ msgstr "Begin vandaag nog"
3366
 
3683
  #~ msgid "News & Updates"
3684
  #~ msgstr "Nieuws & updates"
3685
 
 
 
 
3686
  #~ msgid ""
3687
  #~ "When you are stuck with AdRotate or AdRotate Pro, check the forums first. "
3688
  #~ "Chances are your question has already been asked and answered!"
5016
  #~ msgid "Select Adverts"
5017
  #~ msgstr "Advertenties selecteren"
5018
 
 
 
 
5019
  #~ msgid "Period"
5020
  #~ msgstr "Periode"
5021
 
5028
  #~ msgid "from"
5029
  #~ msgstr "van"
5030
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5031
  #~ msgid "Lookups remaining"
5032
  #~ msgstr "Nog zoeken"
5033
 
5139
  #~ "Schakel versleuteling op de omleidingsurl tijdelijk uit. Alleen interne "
5140
  #~ "tracker roteren."
5141
 
 
 
 
5142
  #~ msgid "Send email notifications"
5143
  #~ msgstr "Meldingen instellen"
5144
 
5732
  #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
5733
  #~ "Vous obtiendraient une solution (en général) dans la journée."
5734
 
 
 
 
 
5735
  #, fuzzy
5736
  #~ msgid "Register License"
5737
  #~ msgstr "Licence Unique"
5744
  #~ "Erreur, la pub n'est pas disponible en ce moment en raison de "
5745
  #~ "restrictions horaires/géographiques ou n'existe pas!"
5746
 
 
 
 
 
5747
  #, fuzzy
5748
  #~ msgid "Enable click tracking for this advert."
5749
  #~ msgstr "Activer le suivi des clicks pour cette publicité."
5836
  #~ "Copiez le shortcode dans un article ou une page. Le code PHP doit être "
5837
  #~ "dans un fichier du thème si vus voulez que cette publicité soit affichée."
5838
 
 
 
 
 
 
 
 
 
5839
  #, fuzzy
5840
  #~ msgid ""
5841
  #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
language/adrotate-pl_PL.mo CHANGED
Binary file
language/adrotate-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-05-19 12:16-0500\n"
6
- "PO-Revision-Date: 2021-05-19 12:19-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Michal Rudolf <michal@rudolf.waw.pl>\n"
9
  "Language: pl_PL\n"
@@ -22,62 +22,62 @@ msgstr ""
22
  "X-Source-Language: C\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
 
25
- #: adrotate-functions.php:784
26
  msgid "Advert saved"
27
- msgstr "Zapisana reklama"
28
 
29
- #: adrotate-functions.php:788
30
  msgid "Group saved"
31
  msgstr "Grupa zapisana"
32
 
33
- #: adrotate-functions.php:792
34
  msgid "Banner image saved"
35
- msgstr "Zapisano obrazek banera"
36
 
37
- #: adrotate-functions.php:796
38
  msgid "Ad(s) deleted"
39
  msgstr "Reklamy usunięte"
40
 
41
- #: adrotate-functions.php:800
42
  msgid "Group deleted"
43
  msgstr "Grupa usunięta"
44
 
45
- #: adrotate-functions.php:804
46
  msgid "Asset(s) deleted"
47
  msgstr "Zasoby usunięte"
48
 
49
- #: adrotate-functions.php:808
50
  msgid ""
51
  "Something went wrong deleting the file or folder. Make sure your permissions "
52
  "are in order."
53
  msgstr ""
54
  "Usuwanie pliku lub folderu nie powiodło się. Proszę sprawdzić uprawnienia."
55
 
56
- #: adrotate-functions.php:812
57
  msgid "Advert(s) statistics reset"
58
  msgstr "Resetowanie statystyk reklam"
59
 
60
- #: adrotate-functions.php:816
61
  msgid "Advert(s) renewed"
62
  msgstr "Reklamy odnowione"
63
 
64
- #: adrotate-functions.php:820
65
  msgid "Advert(s) deactivated"
66
  msgstr "Reklamy dezaktywowane"
67
 
68
- #: adrotate-functions.php:824
69
  msgid "Advert(s) activated"
70
  msgstr "Reklamy aktywowane"
71
 
72
- #: adrotate-functions.php:828
73
  msgid "Group including the Adverts in it deleted"
74
  msgstr "Grupa, w tym usunięte w niej reklamy"
75
 
76
- #: adrotate-functions.php:832
77
  msgid "Export created"
78
  msgstr "Eksport utworzony"
79
 
80
- #: adrotate-functions.php:836
81
  msgid ""
82
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
83
  "below. Do not forget to check all settings and schedule the advert."
@@ -86,32 +86,32 @@ msgstr ""
86
  "ogłoszenie poniżej. Nie zapomnij sprawdzić wszystkich ustawień i zaplanować "
87
  "ogłoszenie."
88
 
89
- #: adrotate-functions.php:841
90
  msgid "Settings saved"
91
  msgstr "Ustawienia zapisane"
92
 
93
- #: adrotate-functions.php:845
94
  msgid "Database optimized"
95
  msgstr "Baza danych zoptymalizowana"
96
 
97
- #: adrotate-functions.php:849
98
  msgid "Database repaired"
99
  msgstr "Baza danych naprawiona"
100
 
101
- #: adrotate-functions.php:853
102
  msgid "Adverts evaluated and statuses have been corrected where required"
103
  msgstr ""
104
  "Ocenione reklamy i statusy zostały poprawione tam, gdzie jest to wymagane"
105
 
106
- #: adrotate-functions.php:857
107
  msgid "Cleanup complete"
108
  msgstr "Czyszczenie zakończone"
109
 
110
- #: adrotate-functions.php:862
111
  msgid "Action prohibited"
112
  msgstr "Czynność zabroniona"
113
 
114
- #: adrotate-functions.php:866
115
  msgid ""
116
  "The advert was saved but has an issue which might prevent it from working "
117
  "properly. Review the colored advert."
@@ -119,23 +119,23 @@ msgstr ""
119
  "Ogłoszenie zostało zapisane, ale ma problem, który może uniemożliwić jej "
120
  "prawidłowe działanie. Przejrzyj kolorową reklamę."
121
 
122
- #: adrotate-functions.php:870
123
  msgid "No data found in selected time period"
124
  msgstr "Brak danych dla podanego przedziału czasowego"
125
 
126
- #: adrotate-functions.php:874
127
  msgid "Database can only be optimized or cleaned once every hour"
128
  msgstr "Bazę danych może optymalizować lub czyścić raz na godzinę"
129
 
130
- #: adrotate-functions.php:878
131
  msgid "Form can not be (partially) empty!"
132
  msgstr "Formularz nie może być (częściowo) pusty!"
133
 
134
- #: adrotate-functions.php:882
135
  msgid "No adverts found."
136
  msgstr "Nie znaleziono ogłoszeń."
137
 
138
- #: adrotate-functions.php:886
139
  msgid ""
140
  "The advert hash is not usable or is missing required data. Please copy the "
141
  "hash correctly and try again."
@@ -143,7 +143,7 @@ msgstr ""
143
  "Skrót reklamy nie nadaje się do zamieszkania lub brakuje wymaganych danych. "
144
  "Skopiuj skrót poprawnie i spróbuj ponownie."
145
 
146
- #: adrotate-functions.php:890
147
  msgid ""
148
  "The advert hash can not be used on the same site as it originated from or is "
149
  "not a valid hash for importing."
@@ -151,7 +151,7 @@ msgstr ""
151
  "Skrót reklamy nie może być używany w tej samej witrynie, z której pochodzi "
152
  "lub nie jest prawidłowym skrótem do importowania."
153
 
154
- #: adrotate-functions.php:894
155
  msgid "Unexpected error"
156
  msgstr "Nieoczekiwany błąd"
157
 
@@ -342,18 +342,18 @@ msgstr ""
342
  msgid "Installation instructions"
343
  msgstr "Instrukcje montażowe"
344
 
345
- #: adrotate-output.php:730
346
  msgid "one issue that requires"
347
  msgid_plural "several issues that require"
348
  msgstr[0] "jeden problem wymagający"
349
  msgstr[1] "kilka problemów wymagających"
350
  msgstr[2] "wiele problemów wymagających"
351
 
352
- #: adrotate-output.php:730
353
  msgid "your attention:"
354
  msgstr "twoją uwagę:"
355
 
356
- #: adrotate-output.php:761
357
  msgid ""
358
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
359
  "menu. If you need help getting started take a look at the"
@@ -361,66 +361,124 @@ msgstr ""
361
  "Dziękujemy za wybranie AdRotate Professional. Wszystko związane z AdRotate "
362
  "jest w tym menu. Jeśli potrzebujesz pomocy przy rozpoczęciu"
363
 
364
- #: adrotate-output.php:761
365
  msgid "manuals"
366
  msgstr "podręczników"
367
 
368
- #: adrotate-output.php:761
369
  msgid "and"
370
  msgstr "i"
371
 
372
- #: adrotate-output.php:761
373
  msgid "forums"
374
  msgstr "forum"
375
 
376
- #: adrotate-output.php:841
377
  msgid "Need help fast? Or do you have a question?"
378
  msgstr "Potrzebujesz szybkiej pomocy? A może masz pytanie?"
379
 
380
- #: adrotate-output.php:842
381
  msgid "Help AdRotate Grow"
382
  msgstr "Pomóż AdRotate rosnąć"
383
 
384
- #: adrotate-output.php:843
385
- msgid "More features with AdRotate Pro"
386
- msgstr "Więcej funkcji z AdRotate Pro"
387
 
388
- #: adrotate-output.php:850
389
  msgid ""
390
- "Many users only think to review AdRotate when something goes wrong while "
391
- "thousands of people happily use AdRotate."
 
392
  msgstr ""
393
- "Wielu użytkowników myśli o napisaniu recenzji AdRotate tylko wtedy gdy coś "
394
- "pójdzie nie tak, podczas gdy tysiące ludzi chętnie korzystają z AdRotate."
 
 
395
 
396
- #: adrotate-output.php:850
397
- msgid "If you find AdRotate useful please leave your"
398
- msgstr "Jeśli uważasz, że AdRotate jest przydatne proszę zostaw swoją"
399
 
400
- #: adrotate-output.php:850
401
- msgid "rating"
402
- msgstr "ocenę"
403
 
404
- #: adrotate-output.php:850
405
- msgid "on WordPress.org to help AdRotate grow in a positive way"
406
- msgstr "w Wodpress.org aby pomóc AdRotate rosnąć w pozytywny sposób"
 
 
 
 
 
 
 
 
407
 
408
- #: adrotate-output.php:851
409
  msgid ""
410
- "Get more advanced features such as Geo Targeting, scheduling and much more "
411
- "with AdRotate Pro."
 
 
412
  msgstr ""
413
- "Uzyskaj bardziej zaawansowane funkcje, takie jak kierowanie geograficzne, "
414
- "planowanie i wiele więcej dzięki AdRotate Pro."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
 
416
- #: adrotate-output.php:851
417
- msgid "Get access to premium support and free updates for one year!"
 
 
 
 
 
 
 
418
  msgstr ""
419
- "Uzyskaj dostęp do wsparcia premium i bezpłatnych aktualizacji przez rok!"
 
 
 
420
 
421
- #: adrotate-output.php:851 dashboard/publisher/groups-edit.php:155
422
- msgid "Upgrade today"
423
- msgstr "Uaktualnij już dziś"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
 
425
  #: adrotate-statistics.php:155
426
  msgid "January"
@@ -533,74 +591,66 @@ msgstr "ID:"
533
  msgid "Fill in the ID of the type you want to display!"
534
  msgstr "Podaj identyfikator typu, który chcesz wyświetlić!"
535
 
536
- #: adrotate.php:105
537
- msgid "General Info"
538
- msgstr "Informacje ogólne"
539
-
540
- #: adrotate.php:106
541
- msgid "Get AdRotate Pro"
542
- msgstr "Pobierz AdRotate Pro"
543
-
544
- #: adrotate.php:107 adrotate.php:196
545
  msgid "Manage Adverts"
546
  msgstr "Zarządzaj reklamami"
547
 
548
- #: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
549
  msgid "Manage Groups"
550
  msgstr "Zarządzaj grupami"
551
 
552
- #: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
553
  msgid "Manage Schedules"
554
  msgstr "Zarządzaj harmonogramami"
555
 
556
- #: adrotate.php:110
557
  msgid "Manage Media"
558
  msgstr "Zarządzaj mediami"
559
 
560
- #: adrotate.php:111 adrotate.php:522 dashboard/adrotatepro.php:98
561
- #: dashboard/publisher/adverts-edit.php:174
562
  #: dashboard/publisher/statistics-main.php:23
563
  #: dashboard/settings/statistics.php:17
564
  msgid "Statistics"
565
  msgstr "Statystyka"
566
 
567
- #: adrotate.php:112
 
 
 
 
568
  msgid "Support"
569
  msgstr "Wsparcie"
570
 
571
- #: adrotate.php:113
572
  msgid "Settings"
573
  msgstr "Ustawienia"
574
 
575
- #: adrotate.php:134
576
- msgid "AdRotate Info"
577
- msgstr "Informacja AdRotate"
578
-
579
- #: adrotate.php:152
580
  msgid "Get AdRotate Professional"
581
  msgstr "Uzyskaj AdRotate Professional"
582
 
583
- #: adrotate.php:256 adrotate.php:327
584
  msgid "Manage"
585
  msgstr "Zarządzaj"
586
 
587
- #: adrotate.php:257
588
  msgid "Advert Generator"
589
  msgstr "Generator reklam"
590
 
591
- #: adrotate.php:258 dashboard/publisher/adverts-edit.php:104
592
  msgid "New Advert"
593
  msgstr "Nowa reklama"
594
 
595
- #: adrotate.php:328
596
  msgid "Add New"
597
  msgstr "Dodaj nową"
598
 
599
- #: adrotate.php:395
600
  msgid "Manage Media and Assets"
601
  msgstr "Zarządzanie multimediami i zasobami"
602
 
603
- #: adrotate.php:399
604
  msgid ""
605
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
606
  "if you have HTML5 adverts containing multiple files."
@@ -608,44 +658,39 @@ msgstr ""
608
  "Przesyłać obrazy do folderu banery AdRotate Pro stąd. Jest to przydatne, "
609
  "jeśli masz reklamy HTML5, zawierające wiele plików."
610
 
611
- #: adrotate.php:441
612
  msgid "Advert Statistics"
613
  msgstr "Statystyki reklam"
614
 
615
- #: adrotate.php:484
616
  msgid "AdRotate Support"
617
  msgstr "Pomoc techniczna adrotate"
618
 
619
- #: adrotate.php:515
620
  msgid "AdRotate Settings"
621
  msgstr "Ustawienia AdRotate"
622
 
623
- #: adrotate.php:520 dashboard/publisher/statistics-main.php:28
624
  msgid "General"
625
  msgstr "Ogólne"
626
 
627
- #: adrotate.php:521 dashboard/settings/notifications.php:18
628
  msgid "Notifications"
629
  msgstr "Powiadomienia"
630
 
631
- #: adrotate.php:523 dashboard/publisher/groups-edit.php:205
632
- #: dashboard/settings/advertisers.php:38
633
  msgid "Geo Targeting"
634
  msgstr "Geolokalizacja"
635
 
636
- #: adrotate.php:524
637
- msgid "Advertisers"
638
- msgstr "Reklamodawcy"
639
-
640
- #: adrotate.php:525 dashboard/settings/roles.php:17
641
  msgid "Access Roles"
642
  msgstr "Rola programu Access"
643
 
644
- #: adrotate.php:526 dashboard/settings/misc.php:16
645
  msgid "Miscellaneous"
646
  msgstr "Różne"
647
 
648
- #: adrotate.php:527 dashboard/settings/maintenance.php:16
649
  msgid "Maintenance"
650
  msgstr "Obsługa"
651
 
@@ -686,209 +731,102 @@ msgstr ""
686
  "Możesz ustawić jeden lub wiele harmonogramów ogłoszeń."
687
 
688
  #: dashboard/adrotatepro.php:63
689
- #, fuzzy
690
- #| msgid "Contact your Advertiser"
691
  msgid "Satisfy your advertisers"
692
  msgstr "Zadowalaj swoich reklamodawców"
693
 
694
  #: dashboard/adrotatepro.php:66
695
- #, fuzzy
696
  msgid ""
697
  "Set up advertisers and let them log in to their statistics or even create "
698
  "their own adverts. Created adverts go into a moderation queue for your staff "
699
  "to review. Advertisers have access to their own little dashboard where they "
700
  "can see their adverts performance."
701
  msgstr ""
702
- "Pozyskac reklamodawców i pozwól im zalogować się do swoich statystyk, a "
703
- "nawet tworzyć własne reklamy. Utworzone reklamy trafią do kolejce "
704
- "moderacyjnej gdzie twoi prawocnicy lub ty podejmiecie dalsze kroki. "
705
- "Reklamodawcy mają dostęp do własnego panelu administracyjnego , gdzie mogą "
706
- "zobaczyć statystyki swoich reklam."
707
 
708
  #: dashboard/adrotatepro.php:71
709
- #, fuzzy
710
  msgid "Get Fast Support almost all year round"
711
  msgstr "Uzyskaj szybką pomoc techniczną prawie przez cały rok"
712
 
713
  #: dashboard/adrotatepro.php:74
714
- #, fuzzy
715
- #| msgid ""
716
- #| "When you activate your AdRotate Professional license you can use fast "
717
- #| "email support. No more queueing up in the forums. Email support is get "
718
- #| "priority over the forums and is checked almost every workday."
719
  msgid ""
720
  "When you activate your AdRotate Pro license you can use premium support, "
721
  "right from your dashboard. No more queueing up in the forums. Premium "
722
  "support always gets priority over the forums and is checked twice a day. Get "
723
  "a solution (usually) within two business days."
724
  msgstr ""
725
- "Po aktywowaniu licencji AdRotate Professional możesz skorzystać z szybkiej "
726
- "obsługi poczty e-mail. Koniec z kolejkami na forach. Obsługa poczty e-mail "
727
- "jest priorytetem dla forów i jest sprawdzana prawie każdego dnia roboczego."
 
 
728
 
729
  #: dashboard/adrotatepro.php:82
730
- #, fuzzy
731
  msgid "Localize your ad campaigns with Geo Targeting"
732
- msgstr "Zlokalizuje swoje kampanie reklamowe używajac geolokalizacji"
733
 
734
  #: dashboard/adrotatepro.php:85
735
- #, fuzzy
736
  msgid ""
737
  "Go nationwide or global with localized adverts for your various audiences. "
738
  "Set up adverts for countries and cities and sell impressions per general "
739
  "area. Connect your site to MaxMind GeoIP2: Precision or AdRotate Geo. "
740
  "AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
741
  msgstr ""
742
- "Wybierz się na teren całego kraju lub do globalnego dzięki zlokalizowanych "
743
- "reklamom dla różnych odbiorców. Skonfiguruj reklamy dla krajów i miast i "
744
- "sprzedawaj wyświetlenia na ogólny obszar. Połącz swoją witrynę z MaxMind "
745
- "GeoIP2: Precision lub AdRotate Geo. AdRotate Geo to ekskluzywna usługa "
746
- "wyszukiwania geograficznego dla użytkowników AdRotate Pro."
747
 
748
  #: dashboard/adrotatepro.php:90
749
- #, fuzzy
750
- #| msgid "Ad blockers"
751
  msgid "Avoid adblockers"
752
- msgstr "Adblocki"
753
 
754
  #: dashboard/adrotatepro.php:93
755
- #, fuzzy
756
  msgid ""
757
  "Try and avoid adblockers so your adverts get the exposure you want them to "
758
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
759
  "adverts are less likely to be removed. Of-course make sure you create your "
760
  "adverts smartly so these features reach their full potential!"
761
  msgstr ""
762
- "Staraj się unikać adblockerów, aby twoje reklamy miały ekspozycję, którą "
763
- "chcesz mieć. AdRotate Pro oferuje kilka zaawansowanych narzędzi do "
764
- "oszukiwania adblockerów, więc reklamy są mniej prawdopodobne, aby zostać "
765
- "usunięte. Oczywiście upewnij się, że tworzysz swoje reklamy elegancko, aby "
766
- "te funkcje osiągnęły ich pełny potencjał!"
767
 
768
  #: dashboard/adrotatepro.php:101
769
- #, fuzzy
770
  msgid ""
771
  "Get statistics in AdRotate Pro. Similar to the free version you can track "
772
  "stats in AdRotate itself and use all kinds of extra scheduling options. Or "
773
  "you can track stats in Google Analytics and see more in-depth information "
774
  "which relates to your visitors that way."
775
  msgstr ""
776
- "Pobierz statystyki w AdRotate Pro. Podobnie jak w darmowej wersji można "
777
- "śledzić statystyki w AdRotate się i korzystać z wszelkiego rodzaju "
778
  "dodatkowych opcji planowania. Możesz też śledzić statystyki w Google "
779
- "Analytics i zobaczyć więcej szczegółowych informacji, które odnoszą się do "
780
- "twoich użytkowników w ten sposób."
781
 
782
  #: dashboard/adrotatepro.php:106
783
- #, fuzzy
784
- #| msgid "Set up notifications"
785
  msgid "Stay up-to-date with notifications"
786
- msgstr "Konfiguruj powiadomienia"
787
 
788
  #: dashboard/adrotatepro.php:109
789
- #, fuzzy
790
  msgid ""
791
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
792
  "adverts expire or need your attention. Get notified when adverts expire, "
793
  "have errors or when advertisers create new adverts. Select up to three email "
794
  "addresses to be notified. Never miss an expiration date again."
795
  msgstr ""
796
- "Bądź na bieżąco z powiadomieniami e-mail. Niech AdRotate wyśle Ci alert, gdy "
797
- "reklamy wygasną lub będą potrzebować Twojej uwagi. Otrzyj powiadomienia o "
798
- "wygaśnięciu reklam, błędach lub tworzeniu przez reklamodawców nowych reklam. "
799
- "Wybierz maksymalnie trzy adresy e-mail, które mają być powiadamiane. Nigdy "
800
- "więcej nie przegap daty ważności."
801
-
802
- #: dashboard/info.php:22
803
- msgid "At a Glance"
804
- msgstr "W skrócie"
805
-
806
- #: dashboard/info.php:27
807
- msgid "Your setup"
808
- msgstr "Twoje ustawienia"
809
-
810
- #: dashboard/info.php:28
811
- msgid "Adverts that need you"
812
- msgstr "Reklamy wymagające uwagi"
813
-
814
- #: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:261
815
- #: dashboard/publisher/groups-main.php:34
816
- #: dashboard/publisher/schedules-main.php:34
817
- #: dashboard/publisher/statistics-main.php:35
818
- msgid "Adverts"
819
- msgstr "Reklamy"
820
-
821
- #: dashboard/info.php:35
822
- msgid "(Almost) Expired"
823
- msgstr "(Wkrótce) wygasa"
824
-
825
- #: dashboard/info.php:38
826
- msgid "Groups"
827
- msgstr "Grupy"
828
-
829
- #: dashboard/info.php:39
830
- msgid "Have errors"
831
- msgstr "Z błędami"
832
-
833
- #: dashboard/info.php:76
834
- #, fuzzy
835
- msgid ""
836
- "AdRotate Professional has a lot more functions for even better advertising "
837
- "management. Check out the feature comparison tab on any of the product pages "
838
- "to see what AdRotate Pro has to offer for you!"
839
- msgstr ""
840
- "AdRotate Professional ma o wiele więcej funkcji dla jeszcze lepszego "
841
- "zarządzania reklamami. Sprawdź zakładkę porównania funkcji na dowolnej ze "
842
- "stron produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla Ciebie!"
843
-
844
- #: dashboard/info.php:78
845
- #, fuzzy
846
- #| msgid "Hide License"
847
- msgid "Single License"
848
- msgstr "Ukryj licencję"
849
-
850
- #: dashboard/info.php:78
851
- #, fuzzy
852
- msgid "Use on ONE WordPress installation."
853
- msgstr "Użyj na jednej instalacji WordPress."
854
-
855
- #: dashboard/info.php:78 dashboard/info.php:79 dashboard/info.php:80
856
- #: dashboard/info.php:81
857
- msgid "Buy now"
858
- msgstr "Kup teraz"
859
-
860
- #: dashboard/info.php:79
861
- #, fuzzy
862
- #| msgid "License"
863
- msgid "Duo License"
864
- msgstr "Podwójna licencja"
865
-
866
- #: dashboard/info.php:79
867
- #, fuzzy
868
- msgid "Use on TWO WordPress installations."
869
- msgstr "Użyj na dwóch instalacjach WordPress."
870
-
871
- #: dashboard/info.php:80
872
- #, fuzzy
873
- #| msgid "Hide License"
874
- msgid "Multi License"
875
- msgstr "Multi licencja"
876
-
877
- #: dashboard/info.php:80
878
- #, fuzzy
879
- msgid "Use on up to FIVE WordPress installations."
880
- msgstr "Używaj do pięciu instalacji WordPress."
881
-
882
- #: dashboard/info.php:81
883
- #, fuzzy
884
- #| msgid "Developer Debug"
885
- msgid "Developer License"
886
- msgstr "Licencja Programisty"
887
-
888
- #: dashboard/info.php:81
889
- #, fuzzy
890
- msgid "Use on up to a HUNDRED WordPress installations and/or networks."
891
- msgstr "Używaj do stu instalacji WordPress i/lub sieci."
892
 
893
  #: dashboard/publisher/adverts-disabled.php:15
894
  msgid "Disabled Adverts"
@@ -903,7 +841,7 @@ msgid "Bulk Actions"
903
  msgstr "Masowe działania"
904
 
905
  #: dashboard/publisher/adverts-disabled.php:21
906
- #: dashboard/publisher/adverts-edit.php:182
907
  msgid "Activate"
908
  msgstr "Aktywuj"
909
 
@@ -929,7 +867,7 @@ msgid "Go"
929
  msgstr "Idź"
930
 
931
  #: dashboard/publisher/adverts-disabled.php:35
932
- #: dashboard/publisher/adverts-edit.php:259
933
  #: dashboard/publisher/adverts-error.php:39
934
  #: dashboard/publisher/adverts-main.php:39
935
  #: dashboard/publisher/groups-edit.php:350
@@ -946,8 +884,8 @@ msgid "Start / End"
946
  msgstr "Początek/koniec"
947
 
948
  #: dashboard/publisher/adverts-disabled.php:37
949
- #: dashboard/publisher/adverts-edit.php:112
950
- #: dashboard/publisher/adverts-edit.php:260
951
  #: dashboard/publisher/adverts-error.php:40
952
  #: dashboard/publisher/adverts-main.php:41
953
  #: dashboard/publisher/groups-edit.php:65
@@ -1029,116 +967,102 @@ msgid "The AdCode cannot be empty!"
1029
  msgstr "Kod reklamy nie może być pusty!"
1030
 
1031
  #: dashboard/publisher/adverts-edit.php:53
1032
- #, fuzzy
1033
- #| msgid ""
1034
- #| "You did not use %asset% (or %image%) in your AdCode but did select a file "
1035
- #| "to use!"
1036
  msgid "You did not use %asset% in your AdCode but did select a file to use!"
1037
- msgstr "Nie użyłeś %asset% (lub%image%) w kodzie reklamy, ale wybrałeś plik!"
1038
 
1039
  #: dashboard/publisher/adverts-edit.php:56
1040
- #, fuzzy
1041
- #| msgid ""
1042
- #| "You did use %asset% (or %image%) in your AdCode but did not select a file "
1043
- #| "to use!"
1044
  msgid "You did use %asset% in your AdCode but did not select a file to use!"
1045
- msgstr "Użyłeś %asset% (lub %image%) w kodzie reklamy, ale nie wybrałeś pliku!"
1046
 
1047
  #: dashboard/publisher/adverts-edit.php:59
1048
- #, fuzzy
1049
- #| msgid ""
1050
- #| "There is a problem saving the asset. Please try again with the media "
1051
- #| "picker and re-save the advert!"
1052
  msgid ""
1053
  "There is a problem saving the image. Please re-set your image and re-save "
1054
  "the ad!"
1055
  msgstr ""
1056
- "Powstał problem przy zapisywaniu obrazka. Ponownie wybierz obrazek i zapisz "
1057
  "reklamę!"
1058
 
1059
  #: dashboard/publisher/adverts-edit.php:62
1060
- msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1061
- msgstr ""
1062
- "Śledzenie jest włączone, ale kod reklamy nie zawiera poprawnego odnośnika/"
1063
- "znacznika!"
1064
-
1065
- #: dashboard/publisher/adverts-edit.php:67
1066
- #, fuzzy
1067
- #| msgid ""
1068
- #| "AdRotate can not find an error but the ad is marked erroneous, try re-"
1069
- #| "saving the ad!"
1070
  msgid ""
1071
- "AdRotate cannot find an error but the advert is marked erroneous, try re-"
1072
- "saving the ad!"
1073
  msgstr ""
1074
- "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
1075
- "błędy. Sprobuj zapisać ponownie!"
1076
 
1077
- #: dashboard/publisher/adverts-edit.php:70
1078
- #, fuzzy
1079
- #| msgid "This advert is expired and currently not shown on your website!"
1080
  msgid "This advert is expired and currently not shown on your website!"
1081
- msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
1082
 
1083
- #: dashboard/publisher/adverts-edit.php:73
1084
  msgid "The advert will expire in less than 2 days!"
1085
  msgstr "Ta reklama wygaśnie w ciągu 2 dni!"
1086
 
1087
- #: dashboard/publisher/adverts-edit.php:76
1088
  msgid "This advert will expire in less than 7 days!"
1089
  msgstr "Ta reklama wygaśnie w ciągu 7 dnii!"
1090
 
1091
- #: dashboard/publisher/adverts-edit.php:79
1092
- #, fuzzy
1093
- #| msgid "This advert has been disabled and does not rotate on your site!"
1094
  msgid "This advert has been disabled and does not rotate on your site!"
1095
- msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
1096
 
1097
- #: dashboard/publisher/adverts-edit.php:106
 
 
 
 
 
 
 
 
 
 
 
 
1098
  msgid "Edit Advert"
1099
  msgstr "Edytuj reklamę"
1100
 
1101
- #: dashboard/publisher/adverts-edit.php:121
1102
  msgid "AdCode"
1103
  msgstr "Kod reklamy"
1104
 
1105
- #: dashboard/publisher/adverts-edit.php:126
1106
  msgid "Basic Examples:"
1107
  msgstr "Proste przykłady:"
1108
 
1109
- #: dashboard/publisher/adverts-edit.php:127
1110
  msgid "Click any of the examples to use it."
1111
  msgstr "Kliknij na przykładzie, by go użyć."
1112
 
1113
- #: dashboard/publisher/adverts-edit.php:136
1114
  msgid "Useful tags"
1115
  msgstr "Użyteczne znaczniki"
1116
 
1117
- #: dashboard/publisher/adverts-edit.php:138
1118
  msgid "Insert the advert ID Number."
1119
  msgstr "Wstaw numer reklamy."
1120
 
1121
- #: dashboard/publisher/adverts-edit.php:138
1122
  msgid "Use this tag when selecting a image below."
1123
  msgstr "Użyj tego tagu podczas wybierania obrazu poniżej."
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:138
1126
  msgid "Insert the advert name."
1127
  msgstr "Wstaw nazwę reklamy."
1128
 
1129
- #: dashboard/publisher/adverts-edit.php:138
1130
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1131
  msgstr "Wstaw losowy ciąg. Przydatne w przypadku reklam typu DFP/DoubleClick."
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:138
1134
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1135
  msgstr "Dodaj wewnątrz tagu &lt;a&gt;, aby otworzyć reklamę w nowym oknie."
1136
 
1137
- #: dashboard/publisher/adverts-edit.php:138
1138
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1139
  msgstr "Dodaj wewnątrz znacznika <a>, by boty ignorowały ten odnośnik."
1140
 
1141
- #: dashboard/publisher/adverts-edit.php:139
1142
  msgid ""
1143
  "Place the cursor where you want to add a tag and click to add it to your "
1144
  "AdCode."
@@ -1146,11 +1070,11 @@ msgstr ""
1146
  "Umieść kursor w miejscu, w którym chcesz dodać znacznik i kliknij, aby go "
1147
  "dodać do kodu reklamy."
1148
 
1149
- #: dashboard/publisher/adverts-edit.php:144
1150
  msgid "Preview"
1151
  msgstr "Podgląd"
1152
 
1153
- #: dashboard/publisher/adverts-edit.php:147
1154
  msgid ""
1155
  "Note: While this preview is an accurate one, it might look different then it "
1156
  "does on the website."
@@ -1158,200 +1082,171 @@ msgstr ""
1158
  "Uwaga: na podglądzie reklama może wyglądać inaczej niż na stronie "
1159
  "internetowej."
1160
 
1161
- #: dashboard/publisher/adverts-edit.php:148
1162
  msgid ""
1163
  "This is because of CSS differences. Your themes CSS file is not active here!"
1164
  msgstr ""
1165
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1166
  "działa w tym pliku!"
1167
 
1168
- #: dashboard/publisher/adverts-edit.php:153
1169
  msgid "Banner asset"
1170
  msgstr "Baner"
1171
 
1172
- #: dashboard/publisher/adverts-edit.php:155
1173
- #, fuzzy
1174
- #| msgid "WordPress media"
1175
  msgid "WordPress media:"
1176
  msgstr "Media WordPress:"
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:155
1179
  msgid "Select Banner"
1180
  msgstr "Wybierz baner"
1181
 
1182
- #: dashboard/publisher/adverts-edit.php:157
1183
  msgid "- OR -"
1184
  msgstr "- oraz -"
1185
 
1186
- #: dashboard/publisher/adverts-edit.php:158
1187
- #, fuzzy
1188
- #| msgid "Banner folder"
1189
  msgid "Banner folder:"
1190
  msgstr "Folder banerów:"
1191
 
1192
- #: dashboard/publisher/adverts-edit.php:159
1193
- #, fuzzy
1194
- #| msgid "No file selected"
1195
  msgid "No image selected"
1196
  msgstr "Nie wybrano żadnego obrazu"
1197
 
1198
- #: dashboard/publisher/adverts-edit.php:169
1199
  msgid "Use %asset% in the adcode instead of the file path."
1200
  msgstr "Użyj %asset% w kodzie reklamy zamiast ścieżki do pliku."
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:169
1203
- #, fuzzy
1204
- #| msgid ""
1205
- #| "Use either the text field or the dropdown. If the textfield has content, "
1206
- #| "that field has priority."
1207
  msgid ""
1208
  "Use either the text field or the dropdown. If the textfield has content that "
1209
  "field has priority."
1210
  msgstr ""
1211
- "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1212
- "zawiera treści, te pole ma pierwszeństwo."
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:176
1215
- msgid "Enable click and impression tracking for this advert."
1216
- msgstr "Włącz zliczanie kliknięć i wyświetleń dla tej reklamy."
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:177
1219
  msgid ""
1220
- "Note: Clicktracking does not work for Javascript adverts such as those "
1221
- "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1222
- "always supported."
1223
  msgstr ""
1224
- "Uwaga: śledzenie kliknięć nie działa dla reklam Javascript, takich jak "
1225
- "Google AdSense/DFP/DoubleClick. Reklamy HTML5/Flash czasem też nie są "
1226
- "obsługiwane."
1227
 
1228
- #: dashboard/publisher/adverts-edit.php:185
1229
- #, fuzzy
1230
- #| msgid "Enabled, this advert will be visible"
1231
  msgid "Enabled, this ad will be visible"
1232
  msgstr "Włączona, ta reklama będzie widoczna"
1233
 
1234
- #: dashboard/publisher/adverts-edit.php:186
1235
- #, fuzzy
1236
- #| msgid "Disabled, do not show this advert anywhere"
1237
  msgid "Disabled, do not show this advert anywhere"
1238
- msgstr "Wyłączona, nie pokazuj jej więcej"
1239
 
1240
- #: dashboard/publisher/adverts-edit.php:192
1241
- #, fuzzy
1242
  msgid ""
1243
  "Target your audience with Geo Targeting and easily select which devices and "
1244
  "mobile operating systems the advert should show on with AdRotate Pro!"
1245
  msgstr ""
1246
- "Z AdRotate Pro można łatwo wybrać urządzenia i mobilne systemy operacyjne, "
1247
- "na których pokaże się reklama!"
 
1248
 
1249
- #: dashboard/publisher/adverts-edit.php:192
1250
- #: dashboard/publisher/adverts-edit.php:230
1251
  #: dashboard/publisher/groups-edit.php:227
1252
- #: dashboard/publisher/statistics-advert.php:109
1253
- #: dashboard/publisher/statistics-group.php:113
1254
- #: dashboard/publisher/statistics-main.php:83
1255
- #, fuzzy
1256
- #| msgid "Order now"
1257
  msgid "Upgrade now"
1258
- msgstr "Uaktualnij teraz"
1259
 
1260
- #: dashboard/publisher/adverts-edit.php:194
1261
- #, fuzzy
1262
- #| msgid "Create your advert"
1263
  msgid "Schedule your advert"
1264
  msgstr "Harmonogram reklamy"
1265
 
1266
- #: dashboard/publisher/adverts-edit.php:195
1267
  msgid ""
1268
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1269
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1270
  "hours. 6AM is 6:00 hours."
1271
  msgstr "Zegar używa formatu 24 godzinnego."
1272
 
1273
- #: dashboard/publisher/adverts-edit.php:199
1274
  msgid "Start date"
1275
  msgstr "Data rozpoczęcia"
1276
 
1277
- #: dashboard/publisher/adverts-edit.php:203
1278
  msgid "End date"
1279
  msgstr "Data zakończenia"
1280
 
1281
- #: dashboard/publisher/adverts-edit.php:209
1282
  msgid "Start time"
1283
  msgstr "Czas rozpoczęcia"
1284
 
1285
- #: dashboard/publisher/adverts-edit.php:214
1286
  msgid "End time"
1287
  msgstr "Czas zakończenia"
1288
 
1289
- #: dashboard/publisher/adverts-edit.php:222
1290
  msgid "Maximum Clicks"
1291
  msgstr "Maksymalna liczba kliknięć"
1292
 
1293
- #: dashboard/publisher/adverts-edit.php:223
1294
- #: dashboard/publisher/adverts-edit.php:225
1295
  msgid "Leave empty or 0 to skip this."
1296
  msgstr "Pozostaw puste lub wpisz 0, żeby pominąć."
1297
 
1298
- #: dashboard/publisher/adverts-edit.php:224
1299
  msgid "Maximum Impressions"
1300
  msgstr "Maksymalna liczba wyświetleń"
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:230
1303
- #, fuzzy
1304
  msgid ""
1305
  "Plan ahead and create multiple and more advanced schedules for each advert "
1306
  "with AdRotate Pro."
1307
  msgstr ""
1308
- "Twórz wiele i bardziej zaawansowane harmonogramy dla każdej reklamy za "
1309
- "pomocą AdRotate Pro."
1310
 
1311
- #: dashboard/publisher/adverts-edit.php:232
1312
  #: dashboard/publisher/groups-edit.php:157
1313
  #: dashboard/publisher/groups-edit.php:302
1314
  msgid "Usage"
1315
  msgstr "Użycie"
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:236
1318
  #: dashboard/publisher/groups-edit.php:161
1319
  #: dashboard/publisher/groups-edit.php:306
1320
  msgid "Widget"
1321
  msgstr "Widżet"
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:237
1324
- #, fuzzy
1325
- #| msgid ""
1326
- #| "In the Appearance > Widgets dashboard. Drag the AdRotate widget to the "
1327
- #| "sidebar where you want to place the advert and select the advert or the "
1328
- #| "group the advert is in."
1329
  msgid ""
1330
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1331
  "and select the advert or the group the advert is in."
1332
  msgstr ""
1333
- "Przeciągnij widget AdRotate do panelu bocznego, gdzie chcesz umieścić "
1334
  "reklamę i wybierz w nim reklamę lub grupę reklam."
1335
 
1336
- #: dashboard/publisher/adverts-edit.php:240
1337
  #: dashboard/publisher/groups-edit.php:165
1338
  #: dashboard/publisher/groups-edit.php:310
1339
  msgid "In a post or page"
1340
  msgstr "We wpisie lub stronie"
1341
 
1342
- #: dashboard/publisher/adverts-edit.php:242
1343
  #: dashboard/publisher/groups-edit.php:167
1344
  #: dashboard/publisher/groups-edit.php:312
1345
  msgid "Directly in a theme"
1346
  msgstr "Bezpośrednio w motywie"
1347
 
1348
- #: dashboard/publisher/adverts-edit.php:249
1349
- #: dashboard/publisher/adverts-edit.php:292
1350
  msgid "Save Advert"
1351
  msgstr "Zapisz reklamę"
1352
 
1353
- #: dashboard/publisher/adverts-edit.php:250
1354
- #: dashboard/publisher/adverts-edit.php:293
1355
  #: dashboard/publisher/adverts-generator.php:148
1356
  #: dashboard/publisher/groups-edit.php:175
1357
  #: dashboard/publisher/groups-edit.php:320
@@ -1359,61 +1254,65 @@ msgstr "Zapisz reklamę"
1359
  msgid "Cancel"
1360
  msgstr "Anuluj"
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:254
1363
  msgid "Select Groups"
1364
  msgstr "Wybierz grupy"
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:270
 
 
 
 
 
 
 
1367
  #: dashboard/publisher/groups-main.php:60
1368
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1369
  msgid "Default"
1370
  msgstr "Domyślny"
1371
 
1372
- #: dashboard/publisher/adverts-edit.php:271
1373
  #: dashboard/publisher/groups-main.php:61
1374
  msgid "Dynamic"
1375
  msgstr "Dynamiczny"
1376
 
1377
- #: dashboard/publisher/adverts-edit.php:271
1378
  #: dashboard/publisher/groups-main.php:61
1379
  msgid "second rotation"
1380
  msgstr "drugi wybór"
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:272
1383
  #: dashboard/publisher/groups-main.php:62
1384
  msgid "Block"
1385
  msgstr "Blok"
1386
 
1387
- #: dashboard/publisher/adverts-edit.php:272
1388
  #: dashboard/publisher/groups-main.php:62
1389
  msgid "grid"
1390
  msgstr "siatka"
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:273
1393
  #: dashboard/publisher/groups-edit.php:234
1394
  #: dashboard/publisher/groups-main.php:63
1395
  msgid "Post Injection"
1396
  msgstr "Umieszczanie we wpisach"
1397
 
1398
- #: dashboard/publisher/adverts-edit.php:274
1399
  msgid "Geolocation"
1400
  msgstr "Geolokalizacja"
1401
 
1402
- #: dashboard/publisher/adverts-edit.php:281
1403
  #: dashboard/publisher/groups-edit.php:74
1404
  #: dashboard/publisher/groups-main.php:70
1405
  msgid "Mode"
1406
  msgstr "Tryb"
1407
 
1408
- #: dashboard/publisher/adverts-edit.php:298
1409
  #: dashboard/publisher/adverts-generator.php:131
1410
- #, fuzzy
1411
- #| msgid "Scalability:"
1412
  msgid "Portability"
1413
  msgstr "Przenoszenie"
1414
 
1415
- #: dashboard/publisher/adverts-edit.php:299
1416
- #, fuzzy
1417
  msgid ""
1418
  "This long code is your advert. It includes all settings from above except "
1419
  "the schedule and group selection. You can import this hash into another "
@@ -1422,19 +1321,17 @@ msgid ""
1422
  "select the whole thing. You can paste the hash into the 'Advert Hash' field "
1423
  "in the Advert Generator of another AdRotate setup."
1424
  msgstr ""
1425
- "Ten długi kod to Twoja reklama. Zawiera wszystkie ustawienia z góry, z "
1426
- "wyjątkiem harmonogramu i wyboru grupy. Ten skrót można zaimportować do innej "
1427
- "konfiguracji AdRotate lub AdRotate Professional. Nie zmieniaj skrótu lub "
1428
- "ogłoszenie nie będzie działać. W większości przeglądarek można tripleclick w "
1429
- "polu, aby wybrać całość. Skrót można wkleić do pola \"Skrót reklamy\" w "
1430
- "generatorze reklam innej konfiguracji AdRotate."
1431
-
1432
- #: dashboard/publisher/adverts-edit.php:303
1433
  #: dashboard/publisher/adverts-generator.php:137
1434
- #, fuzzy
1435
- #| msgid "Adverts"
1436
  msgid "Advert hash"
1437
- msgstr "Reklamy"
1438
 
1439
  #: dashboard/publisher/adverts-error.php:12
1440
  msgid "Adverts that need attention"
@@ -1500,10 +1397,10 @@ msgid "Select advert image"
1500
  msgstr "Wybierz obrazek reklamy"
1501
 
1502
  #: dashboard/publisher/adverts-generator.php:56
1503
- #, fuzzy
1504
- #| msgid "Is your file not listed? Upload it via the AdRotate Media Manager."
1505
  msgid "Is your file not listed? Upload it to the banners folder using (s)FTP."
1506
- msgstr "Brak Twojego pliku? Wyślij go przez menedżer mediów AdRotate."
 
 
1507
 
1508
  #: dashboard/publisher/adverts-generator.php:60
1509
  msgid "Target website"
@@ -1520,10 +1417,8 @@ msgstr "Wielkość ekranu"
1520
  #: dashboard/publisher/adverts-generator.php:69
1521
  #: dashboard/publisher/groups-edit.php:218
1522
  #: dashboard/settings/notifications.php:48
1523
- #, fuzzy
1524
- #| msgid "Update AdRotate Pro"
1525
  msgid "Available in AdRotate Pro"
1526
- msgstr "Dostępne w wersji AdRotate Pro"
1527
 
1528
  #: dashboard/publisher/adverts-generator.php:75
1529
  msgid "Smaller Devices"
@@ -1613,10 +1508,8 @@ msgstr "Powiedzieć botom i wyszukiwarką, by nie przeszukiwały docelowego URL?
1613
 
1614
  #: dashboard/publisher/adverts-generator.php:118
1615
  #: dashboard/publisher/adverts-generator.php:124
1616
- #, fuzzy
1617
- #| msgid "Update AdRotate Pro"
1618
  msgid "(Available in AdRotate Pro)"
1619
- msgstr "Dostępne w wersji AdRotate Pro"
1620
 
1621
  #: dashboard/publisher/adverts-generator.php:118
1622
  msgid ""
@@ -1641,7 +1534,6 @@ msgid ""
1641
  msgstr "Niektóre boty/wyszukiwarki używają ich jako opisu kodu."
1642
 
1643
  #: dashboard/publisher/adverts-generator.php:139
1644
- #, fuzzy
1645
  msgid ""
1646
  "To import a ready made advert, enter a advert hash from another AdRotate "
1647
  "setup..."
@@ -1677,7 +1569,6 @@ msgid "NOTE:"
1677
  msgstr "Uwaga:"
1678
 
1679
  #: dashboard/publisher/adverts-generator.php:151
1680
- #, fuzzy
1681
  msgid "If you insert an Advert Hash, all other fields are ignored."
1682
  msgstr ""
1683
  "Jeśli wstawisz skrót reklamowy, wszystkie inne pola zostaną zignorowane."
@@ -1704,7 +1595,6 @@ msgid "No adverts created yet!"
1704
  msgstr "Jeszcze nie utworzono reklam!"
1705
 
1706
  #: dashboard/publisher/groups-edit.php:41
1707
- #, fuzzy
1708
  msgid ""
1709
  "Your block is a 1x1 grid. Either add more rows or columns or set the group "
1710
  "to Default mode."
@@ -1713,23 +1603,13 @@ msgstr ""
1713
  "Tryb domyślny."
1714
 
1715
  #: dashboard/publisher/groups-edit.php:44
1716
- #, fuzzy
1717
- #| msgid ""
1718
- #| "You have enabled push notifications but did not select anything to be "
1719
- #| "notified about. You are wasting server resources!"
1720
  msgid "You have enabled Post Injection but did not select any categories."
1721
  msgstr ""
1722
- "Włączyłeś powiadomienia push, ale nie wybrałeś żadnych powiadomień. "
1723
- "Marnujesz zasoby zerwera!"
1724
 
1725
  #: dashboard/publisher/groups-edit.php:47
1726
- #, fuzzy
1727
- #| msgid ""
1728
- #| "You have enabled W3 Total Caching support but not defined the security "
1729
- #| "hash."
1730
  msgid "You have enabled Page Injection but did not select any pages."
1731
- msgstr ""
1732
- "Włączyłeś obsługę W3 Total Caching, ale nie zdefiniowano kodu bezpieczeństwa."
1733
 
1734
  #: dashboard/publisher/groups-edit.php:57
1735
  msgid "New Group"
@@ -1752,30 +1632,21 @@ msgid "Block Mode - Show a block of adverts"
1752
  msgstr "Tryb blokowy - pokaż blok reklam"
1753
 
1754
  #: dashboard/publisher/groups-edit.php:83
1755
- #, fuzzy
1756
- #| msgid ""
1757
- #| "Dynamic mode requires jQuery. Enable this in AdRotate Settings if your "
1758
- #| "theme does not load it."
1759
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1760
  msgstr ""
1761
- "Tryby dynamiczny i blokowy wymagają jQuery. Można to włączyć w ustawieniach "
1762
- "AdRotate."
1763
 
1764
  #: dashboard/publisher/groups-edit.php:87
1765
  msgid "Advert size"
1766
  msgstr "Wielkość reklamy"
1767
 
1768
  #: dashboard/publisher/groups-edit.php:89
1769
- #, fuzzy
1770
- #| msgid "pixel(s)"
1771
  msgid "pixel(s) wide"
1772
- msgstr "szerokość w pikselach"
1773
 
1774
  #: dashboard/publisher/groups-edit.php:89
1775
- #, fuzzy
1776
- #| msgid "pixel(s)"
1777
  msgid "pixel(s) high."
1778
- msgstr "wysokość w pikselach"
1779
 
1780
  #: dashboard/publisher/groups-edit.php:92
1781
  msgid ""
@@ -1810,10 +1681,8 @@ msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1810
  msgstr "Większe bloki mogą pogorszyć wydajność witryn! Domyślnie: 2/2."
1811
 
1812
  #: dashboard/publisher/groups-edit.php:119
1813
- #, fuzzy
1814
- #| msgid "Automatic refresh"
1815
  msgid "Automated refresh"
1816
- msgstr "Automatycznie odświeżane"
1817
 
1818
  #: dashboard/publisher/groups-edit.php:138
1819
  msgid "seconds."
@@ -1846,17 +1715,15 @@ msgstr "Wyłącz tę opcję, by liczyć tylko pierwszą odsłonę w cyklu."
1846
 
1847
  #: dashboard/publisher/groups-edit.php:155
1848
  #: dashboard/publisher/groups-edit.php:227
1849
- #, fuzzy
1850
- #| msgid "Favorite feature in AdRotate Professional?"
1851
  msgid "Get access to all features in AdRotate Pro."
1852
- msgstr "Ulubiona funkcja w AdRotate Professional?"
 
 
 
 
1853
 
1854
  #: dashboard/publisher/groups-edit.php:162
1855
  #: dashboard/publisher/groups-edit.php:307
1856
- #, fuzzy
1857
- #| msgid ""
1858
- #| "Drag the AdRotate widget to the sidebar where you want to place the group "
1859
- #| "and select the group."
1860
  msgid ""
1861
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1862
  "Adverts\" and enter ID"
@@ -1883,10 +1750,8 @@ msgid "pixel(s)"
1883
  msgstr "piksele"
1884
 
1885
  #: dashboard/publisher/groups-edit.php:187
1886
- #, fuzzy
1887
- #| msgid "A transparent area outside the advert in pixels. Default: 0/0/0/0."
1888
  msgid "A transparent area outside the advert in pixels. Default: 0."
1889
- msgstr "Przezroczysta ramka wokół reklamyw pikselach. Domyślnie: 0/0/0/0."
1890
 
1891
  #: dashboard/publisher/groups-edit.php:187
1892
  msgid "Set to 0 to disable."
@@ -1929,37 +1794,27 @@ msgid "Enable Geo Targeting for this group."
1929
  msgstr "Włącz geolokalizację dla tej grupy."
1930
 
1931
  #: dashboard/publisher/groups-edit.php:207
1932
- #, fuzzy
1933
  msgid "Do not forget to tell the adverts for which areas they should show."
1934
  msgstr ""
1935
- "Nie zapomnij ustawić gdzie mają być wyświetlane jakie reklamy i w jakich "
1936
- "miejscach."
1937
 
1938
  #: dashboard/publisher/groups-edit.php:210
1939
- #, fuzzy
1940
- #| msgid "Mobile support"
1941
  msgid "Mobile Support"
1942
- msgstr "Obsługa urządzeń mobilnych"
1943
 
1944
  #: dashboard/publisher/groups-edit.php:211
1945
  msgid "Enable mobile support for this group."
1946
  msgstr "Włącz obsługę urządzeń mobilnych w tej grupie."
1947
 
1948
  #: dashboard/publisher/groups-edit.php:212
1949
- #, fuzzy
1950
- #| msgid ""
1951
- #| "Do not forget to put at least one mobile advert in this group or no "
1952
- #| "adverts may show."
1953
  msgid "Do not forget to put at least one mobile advert in this group."
1954
  msgstr ""
1955
- "Nie zapomnij umieścić co najmniej jeden reklamę mobilną, albo reklamy nie "
1956
- "będą widoczne."
1957
 
1958
  #: dashboard/publisher/groups-edit.php:215
1959
- #, fuzzy
1960
- #| msgid "Fallback group"
1961
  msgid "Fallback Group"
1962
- msgstr "Zapasowa grupa"
1963
 
1964
  #: dashboard/publisher/groups-edit.php:222
1965
  msgid ""
@@ -1977,9 +1832,8 @@ msgstr "Wyłączone"
1977
 
1978
  #: dashboard/publisher/groups-edit.php:238
1979
  #: dashboard/publisher/groups-edit.php:271
1980
- #, fuzzy
1981
  msgid "Widget (Pro only)"
1982
- msgstr "Widżet (tylko Pro)"
1983
 
1984
  #: dashboard/publisher/groups-edit.php:239
1985
  #: dashboard/publisher/groups-edit.php:272
@@ -2092,10 +1946,8 @@ msgid "No adverts created!"
2092
  msgstr "Nie utworzono reklam!"
2093
 
2094
  #: dashboard/publisher/groups-edit.php:407
2095
- #, fuzzy
2096
- #| msgid "Configuration errors"
2097
  msgid "Configuration errors."
2098
- msgstr "Błedy konfiguracji."
2099
 
2100
  #: dashboard/publisher/groups-edit.php:408
2101
  #: dashboard/publisher/schedules-main.php:87
@@ -2129,8 +1981,6 @@ msgid "OK to continue, CANCEL to stop."
2129
  msgstr "Naciśnij OK, by kontynuować, Anuluj by zatrzymać."
2130
 
2131
  #: dashboard/publisher/groups-main.php:84
2132
- #, fuzzy
2133
- #| msgid "No adverts created!"
2134
  msgid "No groups created!"
2135
  msgstr "Nie utworzono grupy!"
2136
 
@@ -2163,13 +2013,12 @@ msgstr ""
2163
  "oryginalny plik zip zostanie usunięty po wyodrębnieniu."
2164
 
2165
  #: dashboard/publisher/media.php:37
2166
- #, fuzzy
2167
  msgid ""
2168
  "You can create top-level folders below. Folder names can between 1 and 100 "
2169
  "characters long. Any special characters are stripped out."
2170
  msgstr ""
2171
- "Poniżej można tworzyć foldery najwyższego poziomu. Nazwy folderów mogą mieć "
2172
- "od 1 do 100 znaków. Wszystkie znaki specjalne są usuwane."
2173
 
2174
  #: dashboard/publisher/media.php:40
2175
  msgid "Upload file"
@@ -2184,8 +2033,6 @@ msgid "Available files in"
2184
  msgstr "Dostępne pliki"
2185
 
2186
  #: dashboard/publisher/media.php:55
2187
- #, fuzzy
2188
- #| msgid "Create your advert"
2189
  msgid "Create folder"
2190
  msgstr "Utwórz folder"
2191
 
@@ -2205,22 +2052,20 @@ msgid "Deleting a folder deletes everything inside that folder as well!"
2205
  msgstr "Usunięcie folderu usunie także wszystkie pliki w folderze!"
2206
 
2207
  #: dashboard/publisher/schedules-main.php:13
2208
- #, fuzzy
2209
  msgid ""
2210
  "In AdRotate Pro you can schedule adverts for multiple periods of time. One "
2211
  "schedule can be assigned to many adverts allowing you to manage multi advert "
2212
  "campaigns easily. Schedules can be active on certain days of the week or on "
2213
  "certain hours of the day."
2214
  msgstr ""
2215
- "W AdRotate Pro możesz planować reklamy na wiele okresów czasu. Jeden "
2216
- "harmonogram można przypisać do wielu reklam, co pozwala na łatwe zarządzanie "
2217
- "kampaniami reklamowymi. Harmonogramy mogą być aktywne w niektóre dni "
2218
  "tygodnia lub w określonych godzinach dnia."
2219
 
2220
  #: dashboard/publisher/schedules-main.php:13
2221
- #, fuzzy
2222
  msgid "Get more scheduling options with"
2223
- msgstr "Uzyskaj więcej opcji planowania za pomocą"
2224
 
2225
  #: dashboard/publisher/schedules-main.php:36
2226
  msgid "Max Shown"
@@ -2330,14 +2175,6 @@ msgstr ""
2330
  "Wszystkie statystyki są orientacyjne. Nie muszą odpowiadać wynikom "
2331
  "wyliczonym przez innych."
2332
 
2333
- #: dashboard/publisher/statistics-advert.php:109
2334
- #: dashboard/publisher/statistics-group.php:113
2335
- #: dashboard/publisher/statistics-main.php:83
2336
- #, fuzzy
2337
- #| msgid "Favorite feature in AdRotate Professional?"
2338
- msgid "Get more features with AdRotate Pro"
2339
- msgstr "Więcej ustawień z AdRotate Pro"
2340
-
2341
  #: dashboard/publisher/statistics-group.php:46
2342
  msgid "Statistics for group"
2343
  msgstr "Statystyka dla grupy"
@@ -2346,76 +2183,6 @@ msgstr "Statystyka dla grupy"
2346
  msgid "Adverts counting stats"
2347
  msgstr "Zliczanie statystyki reklam"
2348
 
2349
- #: dashboard/settings/advertisers.php:16
2350
- #, fuzzy
2351
- msgid "Advertisers - Available in AdRotate Pro"
2352
- msgstr "Reklamodawcy — dostępne w AdRotate Pro"
2353
-
2354
- #: dashboard/settings/advertisers.php:17
2355
- #, fuzzy
2356
- #| msgid "Enable advertisers so they can review and manage their own adverts."
2357
- msgid "Enable advertisers so they can review and manage their own ads."
2358
- msgstr ""
2359
- "Włącz uprawnienia dla reklamodawców by mogli przeglądać i zarządzać swoimi "
2360
- "reklamami."
2361
-
2362
- #: dashboard/settings/advertisers.php:20
2363
- msgid "Enable Advertisers"
2364
- msgstr "Włącz opcję reklamodawcy"
2365
-
2366
- #: dashboard/settings/advertisers.php:22
2367
- msgid "Allow adverts to be coupled to users (Advertisers)."
2368
- msgstr "Zezwalaj na łączenie reklam z użytkownikami (reklamodawcami)."
2369
-
2370
- #: dashboard/settings/advertisers.php:26
2371
- msgid "Edit/update adverts"
2372
- msgstr "Edytuj/aktualizuj reklamy"
2373
-
2374
- #: dashboard/settings/advertisers.php:28
2375
- msgid "Allow advertisers to add new or edit their adverts."
2376
- msgstr "Pozwól reklamodawcom na dodawanie oraz edytowanie reklam."
2377
-
2378
- #: dashboard/settings/advertisers.php:32
2379
- msgid "Mobile adverts"
2380
- msgstr "Reklamy mobilne"
2381
-
2382
- #: dashboard/settings/advertisers.php:34
2383
- msgid "Allow advertisers to specify on which devices their ads will show."
2384
- msgstr ""
2385
- "Pozwól reklamodawcom określić, na których urządzenia będą wyświetlane ich "
2386
- "reklamy."
2387
-
2388
- #: dashboard/settings/advertisers.php:40
2389
- msgid ""
2390
- "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2391
- "be enabled, too."
2392
- msgstr ""
2393
- "Pozwól reklamodawcom określić, gdzie będą wyświetlane ich reklamy. Wymagane "
2394
- "jest włączenie geolokalizacji."
2395
-
2396
- #: dashboard/settings/advertisers.php:44
2397
- msgid "Advertiser role"
2398
- msgstr "Rola reklamodawcy"
2399
-
2400
- #: dashboard/settings/advertisers.php:46
2401
- msgid "Create a seperate user role for your advertisers."
2402
- msgstr "Utwórz osobną rolę dla reklamodawców."
2403
-
2404
- #: dashboard/settings/advertisers.php:47
2405
- msgid ""
2406
- "Don't forget to give these users access to their advertiser dashboard via "
2407
- "the Roles tab."
2408
- msgstr ""
2409
- "Nie zapomnij dać tym użytkownikom dostęp do kokpitu reklamodawcy w karcie "
2410
- "Role."
2411
-
2412
- #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2413
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:47
2414
- #: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
2415
- #: dashboard/settings/statistics.php:79
2416
- msgid "Update Options"
2417
- msgstr "Zapisz opcje"
2418
-
2419
  #: dashboard/settings/general.php:17
2420
  msgid "General Settings"
2421
  msgstr "Ustawienia ogólne"
@@ -2425,98 +2192,114 @@ msgid "General settings for AdRotate."
2425
  msgstr "Ogólne ustawienia AdRotate."
2426
 
2427
  #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2428
- #, fuzzy
2429
  msgid "Some options are only available in AdRotate Pro!"
2430
  msgstr "Niektóre opcje są dostępne tylko w AdRotate Pro!"
2431
 
2432
  #: dashboard/settings/general.php:21
2433
- msgid "Shortcode in widgets"
2434
- msgstr "Shortcode w widżetach"
2435
 
2436
  #: dashboard/settings/general.php:22
2437
- #, fuzzy
2438
- #| msgid ""
2439
- #| "Enable this option to if your theme does not support shortcodes in the "
2440
- #| "WordPress text widget. (This does not always work!)"
2441
  msgid ""
2442
- "Enable this option to if your theme does not support shortcodes in the "
2443
- "WordPress text widget."
2444
  msgstr ""
2445
- "Włącz opcję, jeśli Twój motyw nie obsługuje shortcode w widżecie "
2446
- "tekstowym WordPress (nie zawsze działa!)"
2447
 
2448
- #: dashboard/settings/general.php:25
2449
- msgid "Disable live preview"
2450
- msgstr "Wyłącz podgląd na żywo"
 
 
 
 
 
2451
 
2452
- #: dashboard/settings/general.php:26
2453
- #, fuzzy
2454
- #| msgid ""
2455
- #| "Enable this option if you have faulty adverts that 'take over' the edit "
2456
- #| "screen while creating/editing adverts."
2457
  msgid ""
2458
- "Enable this option if you have faulty adverts that overflow their designated "
2459
- "area while creating/editing adverts."
2460
  msgstr ""
2461
- "Włącz opcję, jeżeli masz wadliwe reklamy, które wychodzą poza wyznaczone "
2462
- "miejsce."
 
 
 
 
2463
 
2464
- #: dashboard/settings/general.php:29
2465
- msgid "Disable dynamic mode"
2466
- msgstr "Wyłącz tryb dynamiczny"
 
 
 
 
2467
 
2468
  #: dashboard/settings/general.php:30
2469
- #, fuzzy
2470
- #| msgid ""
2471
- #| "Enable this option to turn off dynamic mode in groups for mobile devices. "
2472
- #| "Recommended if you notice skipping or jumpy content."
2473
  msgid ""
2474
- "Enable this option to disable dynamic mode in groups for mobile devices if "
2475
- "you notice skipping or jumpy content."
2476
  msgstr ""
2477
- "Włącz opcję, aby wyłączyć tryb dynamiczny w grupach dla urządzeń "
2478
- "mobilnych, jeśli zauważych problemy."
2479
 
2480
- #: dashboard/settings/general.php:33
 
 
 
 
 
 
 
 
 
 
 
 
2481
  msgid "Load jQuery"
2482
  msgstr "Wczytaj jQuery"
2483
 
2484
- #: dashboard/settings/general.php:34
2485
  msgid ""
2486
- "Enable this option if your theme does not load jQuery. jQuery is required "
2487
- "for dynamic groups, statistics and some other features."
2488
  msgstr ""
2489
- "Włącz opcję, jeśli Twój motyw nie używa jQuery. jQuery jest wymagane dla "
2490
- "grup dynamicznych, statystyki i kilku innych funkcji."
2491
 
2492
- #: dashboard/settings/general.php:37
2493
  msgid "Load scripts in footer?"
2494
  msgstr "Skrypty w stopce?"
2495
 
2496
- #: dashboard/settings/general.php:38
2497
- msgid ""
2498
- "Enable this option if you want to load all AdRotate Javascripts in the "
2499
- "footer of your site."
2500
- msgstr ""
2501
- "Włącz tę opcję, jeśli chcesz, aby załadować wszystkie skrypty AdRotate w "
2502
- "stopce witryny."
2503
 
2504
- #: dashboard/settings/general.php:41
2505
  msgid "Adblock disguise"
2506
  msgstr "Unikanie AdBlocka"
2507
 
2508
- #: dashboard/settings/general.php:43
2509
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2510
  msgstr "Zostaw puste, aby wyłączyć. Używaj tylko małych liter. Na przykład:"
2511
 
2512
- #: dashboard/settings/general.php:44
2513
  msgid ""
2514
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2515
  msgstr ""
2516
  "Spróbuj oszukać wtyczki Adblock w większości przeglądarek, kiedy używasz "
2517
  "shortcodes."
2518
 
2519
- #: dashboard/settings/general.php:44
2520
  msgid ""
2521
  "To also apply this feature to widgets, use a text widget with a shortcode "
2522
  "instead of the AdRotate widget."
@@ -2524,7 +2307,7 @@ msgstr ""
2524
  "Aby zastosować tę funkcję do widżetów, użyj widżetu tekstowego z shortcode "
2525
  "zamiast widżetu AdRotate."
2526
 
2527
- #: dashboard/settings/general.php:44
2528
  msgid ""
2529
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2530
  "feature will have little effect!"
@@ -2532,23 +2315,23 @@ msgstr ""
2532
  "Unikaj korzystania z oczywistych słów kluczowych lub nazw w swoich "
2533
  "reklamach, w przeciwnym razie ta funkcja będzie miała niewielki efekt!"
2534
 
2535
- #: dashboard/settings/general.php:49
2536
  msgid "Banner Folder"
2537
  msgstr "Folder banerów"
2538
 
2539
- #: dashboard/settings/general.php:50
2540
  msgid "Set a folder where your banner images will be stored."
2541
  msgstr "Wybierz folder dla banerów reklam."
2542
 
2543
- #: dashboard/settings/general.php:53
2544
  msgid "Folder name"
2545
  msgstr "Nazwa folderu"
2546
 
2547
- #: dashboard/settings/general.php:55
2548
  msgid "(Default: banners)."
2549
  msgstr "(Domyślnie: banners)."
2550
 
2551
- #: dashboard/settings/general.php:56
2552
  msgid ""
2553
  "To try and trick ad blockers you could set the folder to something crazy "
2554
  "like:"
@@ -2556,7 +2339,7 @@ msgstr ""
2556
  "Możesz spróbować oszukać programy blokujące reklamy, podając nietypową nazwę "
2557
  "folderów, na przykład:"
2558
 
2559
- #: dashboard/settings/general.php:57
2560
  msgid ""
2561
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2562
  "will show errors when the folder is missing."
@@ -2564,28 +2347,25 @@ msgstr ""
2564
  "Ten folder nie zostanie automatycznie utworzony. AdRotate wyświetli błędy, "
2565
  "jeśli nie odnajdzie katalogu."
2566
 
2567
- #: dashboard/settings/general.php:62
2568
  msgid "Bot filter"
2569
  msgstr "Filtr botów"
2570
 
2571
- #: dashboard/settings/general.php:63
2572
- #, fuzzy
2573
- #| msgid ""
2574
- #| "The bot filter is used for Geo Targeting and the AdRotate stats tracker."
2575
  msgid "The bot filter is used for the AdRotate stats tracker."
2576
- msgstr "Filtr botów służy do geolokalizacji i statystyk AdRotate."
2577
 
2578
- #: dashboard/settings/general.php:66
2579
  msgid "User-Agent Filter"
2580
  msgstr "Filtr identyfikatorów przeglądarek"
2581
 
2582
- #: dashboard/settings/general.php:69
2583
  msgid ""
2584
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2585
  msgstr ""
2586
  "Oddzielona przecinkami lista słów kluczowych. Filtruje boty i przeglądarki."
2587
 
2588
- #: dashboard/settings/general.php:70
2589
  msgid ""
2590
  "Keep in mind that this might give false positives. The word 'fire' also "
2591
  "matches 'firefox', but not vice-versa. So be careful!"
@@ -2593,7 +2373,7 @@ msgstr ""
2593
  "Należy pamiętać, że może to dać fałszywe trafienia. Słowo 'fire' pasuje "
2594
  "również do 'Firefox'firefox, ale nie odwrotnie. Bądź ostrożny!"
2595
 
2596
- #: dashboard/settings/general.php:71
2597
  msgid ""
2598
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2599
  "characters are stripped out."
@@ -2601,22 +2381,27 @@ msgstr ""
2601
  "Dopuszczalne są tylko słowa ze znakami alfanumerycznymi i [- _]. Pozostałe "
2602
  "znaki zostaną usunięte."
2603
 
2604
- #: dashboard/settings/general.php:72
2605
  msgid ""
2606
  "Additionally to the list specified here, empty User-Agents are blocked as "
2607
  "well."
2608
  msgstr "Oprócz podanej listy blokowani są klienci z pustym polem User Agent."
2609
 
2610
- #: dashboard/settings/general.php:72
2611
  msgid "Learn more about"
2612
  msgstr "Dowiedź się więcej"
2613
 
2614
- #: dashboard/settings/general.php:72
2615
  msgid "user-agents"
2616
  msgstr "identyfikatory przeglądarek"
2617
 
 
 
 
 
 
 
2618
  #: dashboard/settings/geotargeting.php:17
2619
- #, fuzzy
2620
  msgid "Geo Targeting - Available in AdRotate Pro"
2621
  msgstr "Geotargetowanie - dostępne w wersji AdRotate Pro"
2622
 
@@ -2629,11 +2414,9 @@ msgid "Which Geo Service"
2629
  msgstr "Wybierz usługę geolokalizacji"
2630
 
2631
  #: dashboard/settings/geotargeting.php:32
2632
- #, fuzzy
2633
- #| msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2634
  msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2635
  msgstr ""
2636
- "30000 darmowych wyszuków każdego dnia, korzysta z baz danych GeoLite2 firmy "
2637
  "MaxMind!"
2638
 
2639
  #: dashboard/settings/geotargeting.php:33
@@ -2709,34 +2492,28 @@ msgstr ""
2709
  "dokładny, ale gwałtownie zmniejsza liczbę wyszukiwań."
2710
 
2711
  #: dashboard/settings/geotargeting.php:67
2712
- #, fuzzy
2713
- #| msgid "MaxMind City/Country and ipstack"
2714
  msgid "MaxMind City/Country"
2715
- msgstr "Miasto/kraj MaxMind i Ipstack"
2716
 
2717
  #: dashboard/settings/geotargeting.php:70
2718
- #, fuzzy
2719
  msgid "Username/Email"
2720
- msgstr "\"Nazwa użytkownika (e-mail)"
2721
 
2722
  #: dashboard/settings/geotargeting.php:74
2723
- #, fuzzy
2724
- #| msgid "License Key"
2725
  msgid "Password/License Key"
2726
- msgstr "Klucz licencji"
2727
 
2728
  #: dashboard/settings/maintenance.php:17
2729
- #, fuzzy
2730
  msgid ""
2731
  "Use these functions when you notice your database is slow, unresponsive and "
2732
  "sluggish."
2733
  msgstr ""
2734
  "Użyj tych funkcji, gdy zauważysz, że baza danych jest powolna, nie odpowiada "
2735
- "i powolne."
2736
 
2737
  #: dashboard/settings/maintenance.php:22
2738
- msgid "Check all adverts for configuration errors"
2739
- msgstr "Sprawdź wszystkie ogłoszenia pod kątem błędów konfiguracji"
2740
 
2741
  #: dashboard/settings/maintenance.php:22
2742
  msgid "You are about to check all adverts for errors."
@@ -2754,34 +2531,24 @@ msgstr ""
2754
  "błędów."
2755
 
2756
  #: dashboard/settings/maintenance.php:28
2757
- #, fuzzy
2758
- #| msgid "Clean-up Database"
2759
  msgid "Clean-up Database and Files"
2760
  msgstr "Oczyszczanie bazy danych i plików"
2761
 
2762
  #: dashboard/settings/maintenance.php:30
2763
- #, fuzzy
2764
- #| msgid "Clean-up Database"
2765
- msgid "Clean-up database and old files"
2766
- msgstr "Oczyszczanie bazy danych i starych plików"
2767
 
2768
  #: dashboard/settings/maintenance.php:30
2769
- #, fuzzy
2770
- #| msgid "You are about to optimize the AdRotate database."
2771
  msgid "You are about to do maintenance on your setup of AdRotate."
2772
- msgstr "Masz zamiar zrobić konserwacji na konfiguracji AdRotate Professional."
2773
 
2774
  #: dashboard/settings/maintenance.php:30
2775
- #, fuzzy
2776
- #| msgid ""
2777
- #| "You are about to clean up your database. This may delete expired "
2778
- #| "schedules, older statistics and try to delete export files"
2779
  msgid ""
2780
  "This optionally may delete old statistics and tries to delete old export "
2781
  "files."
2782
  msgstr ""
2783
- "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
2784
- "harmonogramów i starych danych statystycznych oraz plików eksportu"
2785
 
2786
  #: dashboard/settings/maintenance.php:30
2787
  msgid "Are you sure you want to continue?"
@@ -2792,59 +2559,34 @@ msgid "THIS ACTION CAN NOT BE UNDONE!"
2792
  msgstr "TEJ AKCJI NIE MOŻNA COFNĄĆ!"
2793
 
2794
  #: dashboard/settings/maintenance.php:32
2795
- #, fuzzy
2796
  msgid "Basic database maintenance."
2797
  msgstr "Podstawowa konserwacja bazy danych."
2798
 
2799
  #: dashboard/settings/maintenance.php:33
2800
- #, fuzzy
2801
- #| msgid "Delete stats older than 356 days."
2802
  msgid "Delete stats older than 365 days."
2803
- msgstr "Usuń dane statystyczne starsze niż 365 dni."
2804
 
2805
  #: dashboard/settings/maintenance.php:34
2806
  msgid "Delete leftover export files."
2807
  msgstr "Usuń pozostałości plików eksportu."
2808
 
2809
  #: dashboard/settings/maintenance.php:35
2810
- #, fuzzy
2811
- #| msgid ""
2812
- #| "For when you create an advert, group or schedule and it does not save or "
2813
- #| "keep changes you make. Or updates are not shown while your license is "
2814
- #| "active."
2815
  msgid ""
2816
  "For when you create an advert, group or schedule and it does not save or "
2817
  "keep changes you make."
2818
  msgstr ""
2819
- "Podczas tworzenia reklamy, grupy lub harmonogramu i nie zapisuje ani nie "
2820
- "zachowuje zmian, które wprowadzać. Lub aktualizacje nie są wyświetlane, gdy "
2821
- "licencja jest aktywna."
2822
 
2823
  #: dashboard/settings/maintenance.php:35
2824
- #, fuzzy
2825
- #| msgid ""
2826
- #| "Additionally you can delete old schedules, statistics, trashed adverts. "
2827
- #| "Running this routine from time to time may improve the speed of your site."
2828
  msgid ""
2829
  "Additionally you can delete statistics and/or unused export files. This will "
2830
  "improve the speed of your site."
2831
  msgstr ""
2832
- "Dodatkowo możesz usuwać stare harmonogramy, statystyki, reklamy wyrzucane do "
2833
- "kosza. Uruchamianie tej procedury od czasu do czasu może poprawić szybkość "
2834
- "witryny."
2835
 
2836
  #: dashboard/settings/maintenance.php:39
2837
- #, fuzzy
2838
- #| msgid ""
2839
- #| "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2840
- #| "database. They only apply to your ads/groups and stats. Not to other "
2841
- #| "settings or other parts of WordPress! Always always make a backup! If for "
2842
- #| "any reason your data is lost, damaged or otherwise becomes unusable in "
2843
- #| "any way or by any means in whichever way I will not take responsibility. "
2844
- #| "You should always have a backup of your database. These functions do NOT "
2845
- #| "destroy data. If data is lost, damaged or unusable in any way, your "
2846
- #| "database likely was beyond repair already. Claiming it worked before "
2847
- #| "clicking these buttons is not a valid point in any case."
2848
  msgid ""
2849
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2850
  "database or clean up overhead data. They only apply to your ads/groups and "
@@ -2869,10 +2611,8 @@ msgstr ""
2869
  "jest prawidłowym punktem w każdym przypadku."
2870
 
2871
  #: dashboard/settings/maintenance.php:41
2872
- #, fuzzy
2873
- #| msgid "Internal Versions"
2874
  msgid "Status and Versions"
2875
- msgstr "Wersje wewnętrzne"
2876
 
2877
  #: dashboard/settings/maintenance.php:44
2878
  msgid "Current status of adverts"
@@ -2935,11 +2675,8 @@ msgid "Reset background tasks"
2935
  msgstr "Resetuj zadania w tle"
2936
 
2937
  #: dashboard/settings/maintenance.php:78
2938
- #, fuzzy
2939
- #| msgid "one plugin"
2940
- #| msgid_plural "several plugins"
2941
  msgid "Unsupported plugins"
2942
- msgstr "jedna wtyczka"
2943
 
2944
  #: dashboard/settings/maintenance.php:80
2945
  msgid "Disable 3rd party plugins"
@@ -3029,16 +2766,12 @@ msgid "Widget padding"
3029
  msgstr "Pusta przestrzeń widżetu"
3030
 
3031
  #: dashboard/settings/misc.php:24
3032
- #, fuzzy
3033
- #| msgid ""
3034
- #| "Enable this to remove the padding (blank space) around adverts in "
3035
- #| "widgets. (Does not always work!)"
3036
  msgid ""
3037
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
3038
  "not always work!)"
3039
  msgstr ""
3040
- "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
3041
- "działa)"
3042
 
3043
  #: dashboard/settings/misc.php:28
3044
  msgid "NOTICE:"
@@ -3099,10 +2832,10 @@ msgstr ""
3099
  "buforowania."
3100
 
3101
  #: dashboard/settings/notifications.php:19
3102
- #, fuzzy
3103
- #| msgid "Set up who gets notifications if adverts need your attention."
3104
  msgid "Set up who gets notifications if ads need your attention."
3105
- msgstr "Ustal kto dostaje powiadomienia gdy reklamy wymagają interwencji."
 
 
3106
 
3107
  #: dashboard/settings/notifications.php:22
3108
  msgid "How to notify"
@@ -3224,29 +2957,24 @@ msgstr ""
3224
  "przecinkami. To pole nie może być puste!"
3225
 
3226
  #: dashboard/settings/roles.php:18
3227
- #, fuzzy
3228
  msgid "Who has access to what?"
3229
- msgstr "Kto ma dostęp i do czego?"
3230
 
3231
  #: dashboard/settings/roles.php:21
3232
  msgid "Manage/Add/Edit adverts"
3233
  msgstr "Przeglądaj/dodawaj/edytuj reklamy"
3234
 
3235
  #: dashboard/settings/roles.php:25
3236
- #, fuzzy
3237
- #| msgid "Role to see and add/edit adverts."
3238
  msgid "Role to see and add/edit ads."
3239
- msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
3240
 
3241
  #: dashboard/settings/roles.php:29
3242
  msgid "Delete/Reset adverts"
3243
  msgstr "Usuwaj/resetuj reklamy"
3244
 
3245
  #: dashboard/settings/roles.php:33
3246
- #, fuzzy
3247
- #| msgid "Role to delete adverts and reset stats."
3248
  msgid "Role to delete ads and reset stats."
3249
- msgstr "Uprawnienia do usuwania i resetowania statystyk."
3250
 
3251
  #: dashboard/settings/roles.php:37
3252
  msgid "Manage/Add/Edit groups"
@@ -3310,13 +3038,11 @@ msgstr ""
3310
  "jedynie śledzić odsłony."
3311
 
3312
  #: dashboard/settings/statistics.php:37
3313
- #, fuzzy
3314
- #| msgid ""
3315
- #| "Requires Google Global Tag tracking code installed in your sites footer!"
3316
  msgid ""
3317
  "Requires Google Global Tag tracking code installed in your sites footer!"
3318
  msgstr ""
3319
- "Wymaga kodu śledzenia Google Global Tag zainstalowanego w stopce witryn!"
 
3320
 
3321
  #: dashboard/settings/statistics.php:40
3322
  msgid ""
@@ -3335,65 +3061,67 @@ msgstr ""
3335
  "pozwalają jedynie śledzić odsłony."
3336
 
3337
  #: dashboard/settings/statistics.php:47
3338
- #, fuzzy
3339
- #| msgid "Statistics"
3340
  msgid "AdRotate Statistics"
3341
- msgstr "Statystyka"
3342
 
3343
  #: dashboard/settings/statistics.php:48
3344
- #, fuzzy
3345
- #| msgid ""
3346
- #| "The settings below are for the internal tracker and have no effect when "
3347
- #| "using Piwik/Google Analytics."
3348
  msgid ""
3349
- "The settings below are for the internal tracker and have no effect when "
3350
- "using Google Analytics or Matomo."
3351
  msgstr ""
3352
- "Poniższe ustawienia dla śledzenia wewnętrznego i nie mają wpływu na Piwik/"
3353
- "Google Analytics."
3354
 
3355
  #: dashboard/settings/statistics.php:51
 
 
 
 
 
 
 
 
3356
  msgid "Logged in impressions"
3357
  msgstr "Odsłony dla zalogowanych"
3358
 
3359
- #: dashboard/settings/statistics.php:53
3360
  msgid "Track impressions from logged in users."
3361
  msgstr "Śledź odsłony dla zalogowanych użytkowników."
3362
 
3363
- #: dashboard/settings/statistics.php:57
3364
  msgid "Logged in clicks"
3365
  msgstr "Kliknięcia zalogowanych"
3366
 
3367
- #: dashboard/settings/statistics.php:59
3368
  msgid "Track clicks from logged in users."
3369
  msgstr "Śledź kliknięcia zalogowanych użytkowników."
3370
 
3371
- #: dashboard/settings/statistics.php:63
3372
  msgid "Impression timer"
3373
  msgstr "Czas wyświetlania"
3374
 
3375
- #: dashboard/settings/statistics.php:65 dashboard/settings/statistics.php:72
3376
  msgid "Seconds."
3377
  msgstr "Sekundy."
3378
 
3379
- #: dashboard/settings/statistics.php:66
3380
  msgid "Default: 60."
3381
  msgstr "Domyślnie: 60."
3382
 
3383
- #: dashboard/settings/statistics.php:66
3384
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3385
  msgstr ""
3386
  "Ta liczba nie może być pusta, mniejsza od 10 lub większa od 3600(1 godzina)."
3387
 
3388
- #: dashboard/settings/statistics.php:70
3389
  msgid "Click timer"
3390
  msgstr "Czas kliknięcia"
3391
 
3392
- #: dashboard/settings/statistics.php:73
3393
  msgid "Default: 86400."
3394
  msgstr "Domyślny: 86400."
3395
 
3396
- #: dashboard/settings/statistics.php:73
3397
  msgid ""
3398
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3399
  msgstr ""
@@ -3401,32 +3129,26 @@ msgstr ""
3401
  "godziny)."
3402
 
3403
  #: dashboard/support.php:83
3404
- #, fuzzy
3405
  msgid "Premium Support available in AdRotate Pro"
3406
- msgstr "Pomoc techniczna Premium dostępna w AdRotate Pro"
3407
 
3408
  #: dashboard/support.php:86
3409
- #, fuzzy
3410
  msgid "Premium support always comes first!"
3411
  msgstr "Wsparcie premium zawsze jest na pierwszym miejscu!"
3412
 
3413
  #: dashboard/support.php:86
3414
- #, fuzzy
3415
  msgid "No queuing up on the forum..."
3416
- msgstr "Brak kolejek na forum ..."
3417
 
3418
  #: dashboard/support.php:86
3419
- #, fuzzy
3420
  msgid "Using this form includes essential information for a quick answer."
3421
  msgstr ""
3422
- "Korzystanie z tego formularza zawiera podstawowe informacje, aby uzyskać "
3423
- "szybką odpowiedź."
3424
 
3425
  #: dashboard/support.php:86
3426
- #, fuzzy
3427
- #| msgid "Favorite feature in AdRotate Professional?"
3428
  msgid "Available in AdRotate Professional!"
3429
- msgstr "Ulubiona funkcja w AdRotate Professional?"
3430
 
3431
  #: dashboard/support.php:88
3432
  msgid "Your name:"
@@ -3469,9 +3191,158 @@ msgid "Get Help"
3469
  msgstr "Uzyskaj pomoc"
3470
 
3471
  #: dashboard/support.php:98
3472
- #, fuzzy
3473
  msgid "Premium Support is available in AdRotate Pro!"
3474
- msgstr "Wsparcie premium jest dostępne w AdRotate Pro!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
 
3476
  #, fuzzy
3477
  #~| msgid "Getting Started With AdRotate"
@@ -3815,9 +3686,6 @@ msgstr "Wsparcie premium jest dostępne w AdRotate Pro!"
3815
  #~ msgid "News & Updates"
3816
  #~ msgstr "Aktualności i aktualizacje"
3817
 
3818
- #~ msgid "Support Forums"
3819
- #~ msgstr "Forum wsparcia"
3820
-
3821
  #, fuzzy
3822
  #~| msgid ""
3823
  #~| "When you are stuck with AdRotate Banner Manager or AdRotate "
@@ -5090,9 +4958,6 @@ msgstr "Wsparcie premium jest dostępne w AdRotate Pro!"
5090
  #~ msgid "Select Adverts"
5091
  #~ msgstr "Wybierz reklamy"
5092
 
5093
- #~ msgid "Overview of clicks and impressions"
5094
- #~ msgstr "Miesięczne zestawienie kliknięć i odsłon"
5095
-
5096
  #~ msgid "Period"
5097
  #~ msgstr "Okres"
5098
 
@@ -5105,41 +4970,9 @@ msgstr "Wsparcie premium jest dostępne w AdRotate Pro!"
5105
  #~ msgid "from"
5106
  #~ msgstr "od"
5107
 
5108
- #~ msgid "Duplicate adverts"
5109
- #~ msgstr "Powtórzone reklamy"
5110
-
5111
- #~ msgid ""
5112
- #~ "Enable this option to prevent adverts in groups that are in Default or "
5113
- #~ "Block mode from showing multiple times on the same pageload."
5114
- #~ msgstr ""
5115
- #~ "Włącz tę opcję, aby zapobiec wielokrotnemu wyświetlaniu reklam w grupach "
5116
- #~ "w trybie domyślnym lub bloku na tym samym ładowaniu strony."
5117
-
5118
- #~ msgid ""
5119
- #~ "If you still notice double adverts from groups placed on a page, start "
5120
- #~ "with carefully looking at your setup to make sure you did not cause this "
5121
- #~ "yourself."
5122
- #~ msgstr ""
5123
- #~ "Jeśli nadal zauważysz podwójne reklamy z grup umieszczonych na stronie, "
5124
- #~ "zacznij od dokładnego przyjrzenia się konfiguracji, aby upewnić się, że "
5125
- #~ "nie spowodowałeś tego samodzielnie."
5126
-
5127
- #~ msgid "On some servers $_SESSION is disabled."
5128
- #~ msgstr "Na niektórych serwerach $_SESSION jest wyłączona."
5129
-
5130
- #~ msgid ""
5131
- #~ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. "
5132
- #~ "However, most people will not need this extra plugin!"
5133
- #~ msgstr ""
5134
- #~ "Wtyczka o nazwie \"WP Session Manager\" Eric Mann może to naprawić. "
5135
- #~ "Jednak większość ludzi nie będzie potrzebować tego dodatkowego pluginu!"
5136
-
5137
  #~ msgid "Live preview"
5138
  #~ msgstr "Podgląd na żywo"
5139
 
5140
- #~ msgid "Dynamic mode"
5141
- #~ msgstr "Tryb dynamiczny"
5142
-
5143
  #~ msgid "Lookups remaining"
5144
  #~ msgstr "Pozostałe odnośniki"
5145
 
@@ -5246,9 +5079,6 @@ msgstr "Wsparcie premium jest dostępne w AdRotate Pro!"
5246
  #~ "Tymczasowo wyłącz szyfrowanie przekierowania URL. Tylko do wewnętrznego "
5247
  #~ "śledzenia AdRotate."
5248
 
5249
- #~ msgid "Check adverts for errors"
5250
- #~ msgstr "Sprawdzaj reklamy pod kątem błędów"
5251
-
5252
  #~ msgid "Send email notifications"
5253
  #~ msgstr "Wysyłaj powiadomienia mailem"
5254
 
@@ -5869,9 +5699,6 @@ msgstr "Wsparcie premium jest dostępne w AdRotate Pro!"
5869
  #~ "Pokaż specyfikację reklam oczekujących na moderację. Pokaż podsumowanie "
5870
  #~ "dla reklamodawców!"
5871
 
5872
- #~ msgid "Admin Bar"
5873
- #~ msgstr "Pasek administracyjny"
5874
-
5875
  #~ msgid "Enable the AdRotate Quickmenu in the Admin Bar"
5876
  #~ msgstr "Włącz menu podręczne AdRotate w pasku administracyjnym"
5877
 
@@ -5967,14 +5794,6 @@ msgstr "Wsparcie premium jest dostępne w AdRotate Pro!"
5967
  #~ msgid "AdRotate website"
5968
  #~ msgstr "Strona AdRotate"
5969
 
5970
- #~ msgid "AdRotate manuals"
5971
- #~ msgstr "Podręczniki AdRotate"
5972
-
5973
- #, fuzzy
5974
- #~| msgid "Follow Arnan on Facebook"
5975
- #~ msgid "Follow me on Facebook"
5976
- #~ msgstr "Śledź Arnana na Facebooku"
5977
-
5978
  #~ msgid "Brought to you by"
5979
  #~ msgstr "Dostarczone przez "
5980
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-31 02:03-0500\n"
6
+ "PO-Revision-Date: 2021-08-31 02:04-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Michal Rudolf <michal@rudolf.waw.pl>\n"
9
  "Language: pl_PL\n"
22
  "X-Source-Language: C\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
 
25
+ #: adrotate-functions.php:797
26
  msgid "Advert saved"
27
+ msgstr "Reklama zapisana"
28
 
29
+ #: adrotate-functions.php:801
30
  msgid "Group saved"
31
  msgstr "Grupa zapisana"
32
 
33
+ #: adrotate-functions.php:805
34
  msgid "Banner image saved"
35
+ msgstr "Zapisano obraz banera"
36
 
37
+ #: adrotate-functions.php:809
38
  msgid "Ad(s) deleted"
39
  msgstr "Reklamy usunięte"
40
 
41
+ #: adrotate-functions.php:813
42
  msgid "Group deleted"
43
  msgstr "Grupa usunięta"
44
 
45
+ #: adrotate-functions.php:817
46
  msgid "Asset(s) deleted"
47
  msgstr "Zasoby usunięte"
48
 
49
+ #: adrotate-functions.php:821
50
  msgid ""
51
  "Something went wrong deleting the file or folder. Make sure your permissions "
52
  "are in order."
53
  msgstr ""
54
  "Usuwanie pliku lub folderu nie powiodło się. Proszę sprawdzić uprawnienia."
55
 
56
+ #: adrotate-functions.php:825
57
  msgid "Advert(s) statistics reset"
58
  msgstr "Resetowanie statystyk reklam"
59
 
60
+ #: adrotate-functions.php:829
61
  msgid "Advert(s) renewed"
62
  msgstr "Reklamy odnowione"
63
 
64
+ #: adrotate-functions.php:833
65
  msgid "Advert(s) deactivated"
66
  msgstr "Reklamy dezaktywowane"
67
 
68
+ #: adrotate-functions.php:837
69
  msgid "Advert(s) activated"
70
  msgstr "Reklamy aktywowane"
71
 
72
+ #: adrotate-functions.php:841
73
  msgid "Group including the Adverts in it deleted"
74
  msgstr "Grupa, w tym usunięte w niej reklamy"
75
 
76
+ #: adrotate-functions.php:845
77
  msgid "Export created"
78
  msgstr "Eksport utworzony"
79
 
80
+ #: adrotate-functions.php:849
81
  msgid ""
82
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
83
  "below. Do not forget to check all settings and schedule the advert."
86
  "ogłoszenie poniżej. Nie zapomnij sprawdzić wszystkich ustawień i zaplanować "
87
  "ogłoszenie."
88
 
89
+ #: adrotate-functions.php:854
90
  msgid "Settings saved"
91
  msgstr "Ustawienia zapisane"
92
 
93
+ #: adrotate-functions.php:858
94
  msgid "Database optimized"
95
  msgstr "Baza danych zoptymalizowana"
96
 
97
+ #: adrotate-functions.php:862
98
  msgid "Database repaired"
99
  msgstr "Baza danych naprawiona"
100
 
101
+ #: adrotate-functions.php:866
102
  msgid "Adverts evaluated and statuses have been corrected where required"
103
  msgstr ""
104
  "Ocenione reklamy i statusy zostały poprawione tam, gdzie jest to wymagane"
105
 
106
+ #: adrotate-functions.php:870
107
  msgid "Cleanup complete"
108
  msgstr "Czyszczenie zakończone"
109
 
110
+ #: adrotate-functions.php:875
111
  msgid "Action prohibited"
112
  msgstr "Czynność zabroniona"
113
 
114
+ #: adrotate-functions.php:879
115
  msgid ""
116
  "The advert was saved but has an issue which might prevent it from working "
117
  "properly. Review the colored advert."
119
  "Ogłoszenie zostało zapisane, ale ma problem, który może uniemożliwić jej "
120
  "prawidłowe działanie. Przejrzyj kolorową reklamę."
121
 
122
+ #: adrotate-functions.php:883
123
  msgid "No data found in selected time period"
124
  msgstr "Brak danych dla podanego przedziału czasowego"
125
 
126
+ #: adrotate-functions.php:887
127
  msgid "Database can only be optimized or cleaned once every hour"
128
  msgstr "Bazę danych może optymalizować lub czyścić raz na godzinę"
129
 
130
+ #: adrotate-functions.php:891
131
  msgid "Form can not be (partially) empty!"
132
  msgstr "Formularz nie może być (częściowo) pusty!"
133
 
134
+ #: adrotate-functions.php:895
135
  msgid "No adverts found."
136
  msgstr "Nie znaleziono ogłoszeń."
137
 
138
+ #: adrotate-functions.php:899
139
  msgid ""
140
  "The advert hash is not usable or is missing required data. Please copy the "
141
  "hash correctly and try again."
143
  "Skrót reklamy nie nadaje się do zamieszkania lub brakuje wymaganych danych. "
144
  "Skopiuj skrót poprawnie i spróbuj ponownie."
145
 
146
+ #: adrotate-functions.php:903
147
  msgid ""
148
  "The advert hash can not be used on the same site as it originated from or is "
149
  "not a valid hash for importing."
151
  "Skrót reklamy nie może być używany w tej samej witrynie, z której pochodzi "
152
  "lub nie jest prawidłowym skrótem do importowania."
153
 
154
+ #: adrotate-functions.php:907
155
  msgid "Unexpected error"
156
  msgstr "Nieoczekiwany błąd"
157
 
342
  msgid "Installation instructions"
343
  msgstr "Instrukcje montażowe"
344
 
345
+ #: adrotate-output.php:735
346
  msgid "one issue that requires"
347
  msgid_plural "several issues that require"
348
  msgstr[0] "jeden problem wymagający"
349
  msgstr[1] "kilka problemów wymagających"
350
  msgstr[2] "wiele problemów wymagających"
351
 
352
+ #: adrotate-output.php:735
353
  msgid "your attention:"
354
  msgstr "twoją uwagę:"
355
 
356
+ #: adrotate-output.php:766
357
  msgid ""
358
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
359
  "menu. If you need help getting started take a look at the"
361
  "Dziękujemy za wybranie AdRotate Professional. Wszystko związane z AdRotate "
362
  "jest w tym menu. Jeśli potrzebujesz pomocy przy rozpoczęciu"
363
 
364
+ #: adrotate-output.php:766
365
  msgid "manuals"
366
  msgstr "podręczników"
367
 
368
+ #: adrotate-output.php:766
369
  msgid "and"
370
  msgstr "i"
371
 
372
+ #: adrotate-output.php:766
373
  msgid "forums"
374
  msgstr "forum"
375
 
376
+ #: adrotate-output.php:844
377
  msgid "Need help fast? Or do you have a question?"
378
  msgstr "Potrzebujesz szybkiej pomocy? A może masz pytanie?"
379
 
380
+ #: adrotate-output.php:845
381
  msgid "Help AdRotate Grow"
382
  msgstr "Pomóż AdRotate rosnąć"
383
 
384
+ #: adrotate-output.php:846
385
+ msgid "Get more features with AdRotate Pro"
386
+ msgstr "Więcej ustawień z AdRotate Pro"
387
 
388
+ #: adrotate-output.php:852
389
  msgid ""
390
+ "If you need help, or have questions about AdRotate, the best and fastest way "
391
+ "to get your answer is via the AdRotate support forum. Usually I answer "
392
+ "questions the same day, often with a solution in the first answer."
393
  msgstr ""
394
+ "Jeśli potrzebujesz pomocy lub masz pytania dotyczące AdRotate, najlepszym i "
395
+ "najszybszym sposobem na uzyskanie odpowiedzi jest forum pomocy technicznej "
396
+ "AdRotate. Zazwyczaj odpowiadam na pytania tego samego dnia, często z "
397
+ "rozwiązaniem w pierwszej odpowiedzi."
398
 
399
+ #: adrotate-output.php:853
400
+ msgid "AdRotate Manuals"
401
+ msgstr "Podręczniki AdRotate"
402
 
403
+ #: adrotate-output.php:853
404
+ msgid "Support Forums"
405
+ msgstr "Forum wsparcia"
406
 
407
+ #: adrotate-output.php:854
408
+ msgid ""
409
+ "When posting on the forum, please include a brief description of the "
410
+ "problem, include any errors or symptoms. Often it helps if you try to "
411
+ "explain what you are trying to do. Providing some extra information always "
412
+ "helps with gettng a better answer or advise."
413
+ msgstr ""
414
+ "Pisząc na forum, prosimy o dołączenie krótkiego opisu problemu, "
415
+ "uwzględnienie wszelkich błędów lub symptomów. Często pomaga, jeśli próbujesz "
416
+ "wyjaśnić, co próbujesz zrobić. Dostarczenie dodatkowych informacji zawsze "
417
+ "pomaga uzyskać lepszą odpowiedź lub poradę."
418
 
419
+ #: adrotate-output.php:856
420
  msgid ""
421
+ "Consider writing a review, sharing AdRotate in Social media or making a "
422
+ "donation if you like the plugin or if you find it useful. Writing a review "
423
+ "and sharing AdRotate on social media costs you nothing but doing so is super "
424
+ "helpful as promotion which helps to ensure future development."
425
  msgstr ""
426
+ "Rozważ napisanie recenzji, udostępnienie AdRotate w mediach "
427
+ "społecznościowych lub przekazanie darowizny, jeśli podoba Ci się wtyczka lub "
428
+ "jeśli uważasz ją za przydatną. Pisanie recenzji i udostępnianie AdRotate w "
429
+ "mediach społecznościowych nic cię nie kosztuje, ale robienie tego jest "
430
+ "bardzo pomocne jako promocja, która pomaga zapewnić przyszły rozwój."
431
+
432
+ #: adrotate-output.php:857
433
+ msgid "Post Tweet"
434
+ msgstr "Opublikuj tweet"
435
+
436
+ #: adrotate-output.php:857
437
+ msgid "Share on Facebook"
438
+ msgstr "Udostępnij na Facebooku"
439
+
440
+ #: adrotate-output.php:857
441
+ msgid "Write review on WordPress.org"
442
+ msgstr "Napisz recenzję firmy WordPress.org"
443
 
444
+ #: adrotate-output.php:858
445
+ msgid "Thank you very much for your help and support!"
446
+ msgstr "Dziękuję bardzo za pomoc i wsparcie!"
447
+
448
+ #: adrotate-output.php:863
449
+ msgid ""
450
+ "AdRotate Professional has a lot more functions for even better advertising "
451
+ "management. Check out the feature comparison tab on any of the product pages "
452
+ "to see what AdRotate Pro has to offer for you!"
453
  msgstr ""
454
+ "AdRotate Professional ma o wiele więcej funkcji dla jeszcze lepszego "
455
+ "zarządzania reklamami. Sprawdź zakładkę porównania funkcji na dowolnej "
456
+ "stronie produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla "
457
+ "Ciebie!"
458
 
459
+ #: adrotate-output.php:863
460
+ msgid "Compare Licenses"
461
+ msgstr "Porównaj licencje"
462
+
463
+ #: adrotate-output.php:864
464
+ msgid "Single License"
465
+ msgstr "Licencja"
466
+
467
+ #: adrotate-output.php:864
468
+ msgid "Use on ONE WordPress installation."
469
+ msgstr "Użyj na JEDNEJ instalacji WordPress."
470
+
471
+ #: adrotate-output.php:864 adrotate-output.php:865
472
+ msgid "Buy now"
473
+ msgstr "Kup teraz"
474
+
475
+ #: adrotate-output.php:865
476
+ msgid "Multi License"
477
+ msgstr "Multi licencja"
478
+
479
+ #: adrotate-output.php:865
480
+ msgid "Use on up to FIVE WordPress installations."
481
+ msgstr "Użyj do PIĘCIU instalacji WordPress."
482
 
483
  #: adrotate-statistics.php:155
484
  msgid "January"
591
  msgid "Fill in the ID of the type you want to display!"
592
  msgstr "Podaj identyfikator typu, który chcesz wyświetlić!"
593
 
594
+ #: adrotate.php:105 adrotate.php:175
 
 
 
 
 
 
 
 
595
  msgid "Manage Adverts"
596
  msgstr "Zarządzaj reklamami"
597
 
598
+ #: adrotate.php:106 adrotate.php:301 dashboard/publisher/groups-main.php:12
599
  msgid "Manage Groups"
600
  msgstr "Zarządzaj grupami"
601
 
602
+ #: adrotate.php:107 adrotate.php:339 dashboard/publisher/schedules-main.php:12
603
  msgid "Manage Schedules"
604
  msgstr "Zarządzaj harmonogramami"
605
 
606
+ #: adrotate.php:108
607
  msgid "Manage Media"
608
  msgstr "Zarządzaj mediami"
609
 
610
+ #: adrotate.php:109 adrotate.php:503 dashboard/adrotatepro.php:98
611
+ #: dashboard/publisher/adverts-edit.php:178
612
  #: dashboard/publisher/statistics-main.php:23
613
  #: dashboard/settings/statistics.php:17
614
  msgid "Statistics"
615
  msgstr "Statystyka"
616
 
617
+ #: adrotate.php:110 adrotate.php:238 adrotate.php:309
618
+ msgid "Get AdRotate Pro"
619
+ msgstr "Pobierz AdRotate Pro"
620
+
621
+ #: adrotate.php:111
622
  msgid "Support"
623
  msgstr "Wsparcie"
624
 
625
+ #: adrotate.php:112
626
  msgid "Settings"
627
  msgstr "Ustawienia"
628
 
629
+ #: adrotate.php:131
 
 
 
 
630
  msgid "Get AdRotate Professional"
631
  msgstr "Uzyskaj AdRotate Professional"
632
 
633
+ #: adrotate.php:235 adrotate.php:307
634
  msgid "Manage"
635
  msgstr "Zarządzaj"
636
 
637
+ #: adrotate.php:236
638
  msgid "Advert Generator"
639
  msgstr "Generator reklam"
640
 
641
+ #: adrotate.php:237 dashboard/publisher/adverts-edit.php:108
642
  msgid "New Advert"
643
  msgstr "Nowa reklama"
644
 
645
+ #: adrotate.php:308
646
  msgid "Add New"
647
  msgstr "Dodaj nową"
648
 
649
+ #: adrotate.php:376
650
  msgid "Manage Media and Assets"
651
  msgstr "Zarządzanie multimediami i zasobami"
652
 
653
+ #: adrotate.php:380
654
  msgid ""
655
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
656
  "if you have HTML5 adverts containing multiple files."
658
  "Przesyłać obrazy do folderu banery AdRotate Pro stąd. Jest to przydatne, "
659
  "jeśli masz reklamy HTML5, zawierające wiele plików."
660
 
661
+ #: adrotate.php:422
662
  msgid "Advert Statistics"
663
  msgstr "Statystyki reklam"
664
 
665
+ #: adrotate.php:465
666
  msgid "AdRotate Support"
667
  msgstr "Pomoc techniczna adrotate"
668
 
669
+ #: adrotate.php:496
670
  msgid "AdRotate Settings"
671
  msgstr "Ustawienia AdRotate"
672
 
673
+ #: adrotate.php:501 dashboard/publisher/statistics-main.php:28
674
  msgid "General"
675
  msgstr "Ogólne"
676
 
677
+ #: adrotate.php:502 dashboard/settings/notifications.php:18
678
  msgid "Notifications"
679
  msgstr "Powiadomienia"
680
 
681
+ #: adrotate.php:504 dashboard/publisher/groups-edit.php:205
 
682
  msgid "Geo Targeting"
683
  msgstr "Geolokalizacja"
684
 
685
+ #: adrotate.php:505 dashboard/settings/roles.php:17
 
 
 
 
686
  msgid "Access Roles"
687
  msgstr "Rola programu Access"
688
 
689
+ #: adrotate.php:506 dashboard/settings/misc.php:16
690
  msgid "Miscellaneous"
691
  msgstr "Różne"
692
 
693
+ #: adrotate.php:507 dashboard/settings/maintenance.php:16
694
  msgid "Maintenance"
695
  msgstr "Obsługa"
696
 
731
  "Możesz ustawić jeden lub wiele harmonogramów ogłoszeń."
732
 
733
  #: dashboard/adrotatepro.php:63
 
 
734
  msgid "Satisfy your advertisers"
735
  msgstr "Zadowalaj swoich reklamodawców"
736
 
737
  #: dashboard/adrotatepro.php:66
 
738
  msgid ""
739
  "Set up advertisers and let them log in to their statistics or even create "
740
  "their own adverts. Created adverts go into a moderation queue for your staff "
741
  "to review. Advertisers have access to their own little dashboard where they "
742
  "can see their adverts performance."
743
  msgstr ""
744
+ "Skonfiguruj reklamodawców i pozwól im logować się do swoich statystyk, a "
745
+ "nawet tworzyć własne reklamy. Utworzone reklamy trafiają do kolejki "
746
+ "moderacji, aby Pracownicy mogą je przejrzeć. Reklamodawcy mają dostęp do "
747
+ "własnego małego pulpitu nawigacyjnego, w którym mogą zobaczyć skuteczność "
748
+ "swoich reklam."
749
 
750
  #: dashboard/adrotatepro.php:71
 
751
  msgid "Get Fast Support almost all year round"
752
  msgstr "Uzyskaj szybką pomoc techniczną prawie przez cały rok"
753
 
754
  #: dashboard/adrotatepro.php:74
 
 
 
 
 
755
  msgid ""
756
  "When you activate your AdRotate Pro license you can use premium support, "
757
  "right from your dashboard. No more queueing up in the forums. Premium "
758
  "support always gets priority over the forums and is checked twice a day. Get "
759
  "a solution (usually) within two business days."
760
  msgstr ""
761
+ "Po aktywacji licencji AdRotate Pro możesz korzystać z pomocy technicznej "
762
+ "premium bezpośrednio z pulpitu nawigacyjnego. Koniec z kolejkowaniem się na "
763
+ "forach. Wsparcie premium zawsze ma pierwszeństwo przed forami i jest "
764
+ "sprawdzane dwa razy dziennie. Uzyskaj rozwiązanie (zazwyczaj) w ciągu dwóch "
765
+ "dni roboczych."
766
 
767
  #: dashboard/adrotatepro.php:82
 
768
  msgid "Localize your ad campaigns with Geo Targeting"
769
+ msgstr "Lokalizowanie kampanii reklamowych za pomocą kierowania geograficznego"
770
 
771
  #: dashboard/adrotatepro.php:85
 
772
  msgid ""
773
  "Go nationwide or global with localized adverts for your various audiences. "
774
  "Set up adverts for countries and cities and sell impressions per general "
775
  "area. Connect your site to MaxMind GeoIP2: Precision or AdRotate Geo. "
776
  "AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
777
  msgstr ""
778
+ "Działaj w całym kraju lub na całym świecie dzięki zlokalizowaniu reklam dla "
779
+ "różnych odbiorców. Skonfiguruj reklamy dla krajów i miast oraz sprzedawaj "
780
+ "wyświetlenia według obszaru. Połącz swoją witrynę z MaxMind GeoIP2: "
781
+ "Precision lub AdRotate Geo. AdRotate Geo to ekskluzywna usługa wyszukiwania "
782
+ "geograficznego dla użytkowników AdRotate Pro."
783
 
784
  #: dashboard/adrotatepro.php:90
 
 
785
  msgid "Avoid adblockers"
786
+ msgstr "Unikaj adblockerów"
787
 
788
  #: dashboard/adrotatepro.php:93
 
789
  msgid ""
790
  "Try and avoid adblockers so your adverts get the exposure you want them to "
791
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
792
  "adverts are less likely to be removed. Of-course make sure you create your "
793
  "adverts smartly so these features reach their full potential!"
794
  msgstr ""
795
+ "Staraj się unikać adblockerów, aby Twoje reklamy miały taką ekspozycję, jaką "
796
+ "chcesz, aby miały. AdRotate Pro oferuje kilka zaawansowanych narzędzi do "
797
+ "oszukiwania adblockerów, dzięki czemu Twoje reklamy są mniej prawdopodobne, "
798
+ "że zostaną usunięte. Oczywiście upewnij się, że tworzysz swoje reklamy "
799
+ "inteligentnie, aby te funkcje osiągnęły swój pełny potencjał!"
800
 
801
  #: dashboard/adrotatepro.php:101
 
802
  msgid ""
803
  "Get statistics in AdRotate Pro. Similar to the free version you can track "
804
  "stats in AdRotate itself and use all kinds of extra scheduling options. Or "
805
  "you can track stats in Google Analytics and see more in-depth information "
806
  "which relates to your visitors that way."
807
  msgstr ""
808
+ "Uzyskaj statystyki w AdRotate Pro. Podobnie jak w wersji darmowej, możesz "
809
+ "śledzić statystyki w samym AdRotate i korzystać z wszelkiego rodzaju "
810
  "dodatkowych opcji planowania. Możesz też śledzić statystyki w Google "
811
+ "Analytics i widzieć bardziej szczegółowe informacje dotyczące odwiedzających "
812
+ "w ten sposób."
813
 
814
  #: dashboard/adrotatepro.php:106
 
 
815
  msgid "Stay up-to-date with notifications"
816
+ msgstr "Bądź na bieżąco z powiadomieniami"
817
 
818
  #: dashboard/adrotatepro.php:109
 
819
  msgid ""
820
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
821
  "adverts expire or need your attention. Get notified when adverts expire, "
822
  "have errors or when advertisers create new adverts. Select up to three email "
823
  "addresses to be notified. Never miss an expiration date again."
824
  msgstr ""
825
+ "Bądź w kontakcie z powiadomieniami e-mail. Niech AdRotate wyśle Ci alert, "
826
+ "gdy reklamy wygasną lub będą wymagały Twojej uwagi. Otrzymuj powiadomienia o "
827
+ "wygaśnięciu reklam, błędach lub utworzeniu nowych reklam przez "
828
+ "reklamodawców. Wybierz maksymalnie trzy adresy e-mail, które mają być "
829
+ "powiadamiane. Nigdy więcej nie przegapisz daty ważności."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830
 
831
  #: dashboard/publisher/adverts-disabled.php:15
832
  msgid "Disabled Adverts"
841
  msgstr "Masowe działania"
842
 
843
  #: dashboard/publisher/adverts-disabled.php:21
844
+ #: dashboard/publisher/adverts-edit.php:186
845
  msgid "Activate"
846
  msgstr "Aktywuj"
847
 
867
  msgstr "Idź"
868
 
869
  #: dashboard/publisher/adverts-disabled.php:35
870
+ #: dashboard/publisher/adverts-edit.php:263
871
  #: dashboard/publisher/adverts-error.php:39
872
  #: dashboard/publisher/adverts-main.php:39
873
  #: dashboard/publisher/groups-edit.php:350
884
  msgstr "Początek/koniec"
885
 
886
  #: dashboard/publisher/adverts-disabled.php:37
887
+ #: dashboard/publisher/adverts-edit.php:116
888
+ #: dashboard/publisher/adverts-edit.php:264
889
  #: dashboard/publisher/adverts-error.php:40
890
  #: dashboard/publisher/adverts-main.php:41
891
  #: dashboard/publisher/groups-edit.php:65
967
  msgstr "Kod reklamy nie może być pusty!"
968
 
969
  #: dashboard/publisher/adverts-edit.php:53
 
 
 
 
970
  msgid "You did not use %asset% in your AdCode but did select a file to use!"
971
+ msgstr "Nie używałeś %asset% in AdCode, ale wybrałeś plik do użycia!"
972
 
973
  #: dashboard/publisher/adverts-edit.php:56
 
 
 
 
974
  msgid "You did use %asset% in your AdCode but did not select a file to use!"
975
+ msgstr "Nie używać %asset% in AdCode, ale nie wybrać plik do użycia!"
976
 
977
  #: dashboard/publisher/adverts-edit.php:59
 
 
 
 
978
  msgid ""
979
  "There is a problem saving the image. Please re-set your image and re-save "
980
  "the ad!"
981
  msgstr ""
982
+ "Wystąpił problem z zapisaniem obrazu. Ustaw ponownie obraz i zapisz ponownie "
983
  "reklamę!"
984
 
985
  #: dashboard/publisher/adverts-edit.php:62
 
 
 
 
 
 
 
 
 
 
986
  msgid ""
987
+ "This kind of advert can not have statistics enabled in AdRotate. Impression "
988
+ "counting is available in AdRotate Pro."
989
  msgstr ""
990
+ "Ten rodzaj reklamy nie może mieć włączonych statystyk w AdRotate. Zliczanie "
991
+ "wyświetleń jest dostępne w AdRotate Pro."
992
 
993
+ #: dashboard/publisher/adverts-edit.php:67
 
 
994
  msgid "This advert is expired and currently not shown on your website!"
995
+ msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na Twojej stronie!"
996
 
997
+ #: dashboard/publisher/adverts-edit.php:70
998
  msgid "The advert will expire in less than 2 days!"
999
  msgstr "Ta reklama wygaśnie w ciągu 2 dni!"
1000
 
1001
+ #: dashboard/publisher/adverts-edit.php:73
1002
  msgid "This advert will expire in less than 7 days!"
1003
  msgstr "Ta reklama wygaśnie w ciągu 7 dnii!"
1004
 
1005
+ #: dashboard/publisher/adverts-edit.php:76
 
 
1006
  msgid "This advert has been disabled and does not rotate on your site!"
1007
+ msgstr "Ta reklama została wyłączona i nie obraca się na Twojej stronie!"
1008
 
1009
+ #: dashboard/publisher/adverts-edit.php:79
1010
+ msgid ""
1011
+ "AdRotate cannot find an error but the advert is marked erroneous, try re-"
1012
+ "saving the ad!"
1013
+ msgstr ""
1014
+ "AdRotate nie może znaleźć błędu, ale reklama jest oznaczona jako błędna, "
1015
+ "spróbuj ponownie zapisać reklamę!"
1016
+
1017
+ #: dashboard/publisher/adverts-edit.php:83
1018
+ msgid "This advert still uses the %image% tag. Please change it to %asset%!"
1019
+ msgstr "Ta reklama nadal używa %image% tag. Zmień go na %asset%!"
1020
+
1021
+ #: dashboard/publisher/adverts-edit.php:110
1022
  msgid "Edit Advert"
1023
  msgstr "Edytuj reklamę"
1024
 
1025
+ #: dashboard/publisher/adverts-edit.php:125
1026
  msgid "AdCode"
1027
  msgstr "Kod reklamy"
1028
 
1029
+ #: dashboard/publisher/adverts-edit.php:130
1030
  msgid "Basic Examples:"
1031
  msgstr "Proste przykłady:"
1032
 
1033
+ #: dashboard/publisher/adverts-edit.php:131
1034
  msgid "Click any of the examples to use it."
1035
  msgstr "Kliknij na przykładzie, by go użyć."
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:140
1038
  msgid "Useful tags"
1039
  msgstr "Użyteczne znaczniki"
1040
 
1041
+ #: dashboard/publisher/adverts-edit.php:142
1042
  msgid "Insert the advert ID Number."
1043
  msgstr "Wstaw numer reklamy."
1044
 
1045
+ #: dashboard/publisher/adverts-edit.php:142
1046
  msgid "Use this tag when selecting a image below."
1047
  msgstr "Użyj tego tagu podczas wybierania obrazu poniżej."
1048
 
1049
+ #: dashboard/publisher/adverts-edit.php:142
1050
  msgid "Insert the advert name."
1051
  msgstr "Wstaw nazwę reklamy."
1052
 
1053
+ #: dashboard/publisher/adverts-edit.php:142
1054
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1055
  msgstr "Wstaw losowy ciąg. Przydatne w przypadku reklam typu DFP/DoubleClick."
1056
 
1057
+ #: dashboard/publisher/adverts-edit.php:142
1058
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1059
  msgstr "Dodaj wewnątrz tagu &lt;a&gt;, aby otworzyć reklamę w nowym oknie."
1060
 
1061
+ #: dashboard/publisher/adverts-edit.php:142
1062
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1063
  msgstr "Dodaj wewnątrz znacznika <a>, by boty ignorowały ten odnośnik."
1064
 
1065
+ #: dashboard/publisher/adverts-edit.php:143
1066
  msgid ""
1067
  "Place the cursor where you want to add a tag and click to add it to your "
1068
  "AdCode."
1070
  "Umieść kursor w miejscu, w którym chcesz dodać znacznik i kliknij, aby go "
1071
  "dodać do kodu reklamy."
1072
 
1073
+ #: dashboard/publisher/adverts-edit.php:148
1074
  msgid "Preview"
1075
  msgstr "Podgląd"
1076
 
1077
+ #: dashboard/publisher/adverts-edit.php:151
1078
  msgid ""
1079
  "Note: While this preview is an accurate one, it might look different then it "
1080
  "does on the website."
1082
  "Uwaga: na podglądzie reklama może wyglądać inaczej niż na stronie "
1083
  "internetowej."
1084
 
1085
+ #: dashboard/publisher/adverts-edit.php:152
1086
  msgid ""
1087
  "This is because of CSS differences. Your themes CSS file is not active here!"
1088
  msgstr ""
1089
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1090
  "działa w tym pliku!"
1091
 
1092
+ #: dashboard/publisher/adverts-edit.php:157
1093
  msgid "Banner asset"
1094
  msgstr "Baner"
1095
 
1096
+ #: dashboard/publisher/adverts-edit.php:159
 
 
1097
  msgid "WordPress media:"
1098
  msgstr "Media WordPress:"
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:159
1101
  msgid "Select Banner"
1102
  msgstr "Wybierz baner"
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:161
1105
  msgid "- OR -"
1106
  msgstr "- oraz -"
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:162
 
 
1109
  msgid "Banner folder:"
1110
  msgstr "Folder banerów:"
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:163
 
 
1113
  msgid "No image selected"
1114
  msgstr "Nie wybrano żadnego obrazu"
1115
 
1116
+ #: dashboard/publisher/adverts-edit.php:173
1117
  msgid "Use %asset% in the adcode instead of the file path."
1118
  msgstr "Użyj %asset% w kodzie reklamy zamiast ścieżki do pliku."
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:173
 
 
 
 
1121
  msgid ""
1122
  "Use either the text field or the dropdown. If the textfield has content that "
1123
  "field has priority."
1124
  msgstr ""
1125
+ "Użyj pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe zawiera "
1126
+ "zawartość, to pole ma priorytet."
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:180
1129
+ msgid "Count clicks and impressions."
1130
+ msgstr "Policz kliknięcia i wyświetlenia."
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:181
1133
  msgid ""
1134
+ "Click counting does not work for Javascript/html5 adverts such as those "
1135
+ "provided by Google AdSense/DFP/DoubleClick."
 
1136
  msgstr ""
1137
+ "Zliczanie kliknięć nie działa w przypadku reklam Javascript/html5, takich "
1138
+ "jak te dostarczane przez Google AdSense/DFP/DoubleClick."
 
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:189
 
 
1141
  msgid "Enabled, this ad will be visible"
1142
  msgstr "Włączona, ta reklama będzie widoczna"
1143
 
1144
+ #: dashboard/publisher/adverts-edit.php:190
 
 
1145
  msgid "Disabled, do not show this advert anywhere"
1146
+ msgstr "Wyłączone, nie wyświetlaj nigdzie tej reklamy"
1147
 
1148
+ #: dashboard/publisher/adverts-edit.php:196
 
1149
  msgid ""
1150
  "Target your audience with Geo Targeting and easily select which devices and "
1151
  "mobile operating systems the advert should show on with AdRotate Pro!"
1152
  msgstr ""
1153
+ "Kieruj reklamy do odbiorców za pomocą kierowania geograficznego i łatwo "
1154
+ "wybierz urządzenia i mobilne systemy operacyjne, na których reklama powinna "
1155
+ "być wyświetlana za pomocą AdRotate Pro!"
1156
 
1157
+ #: dashboard/publisher/adverts-edit.php:196
1158
+ #: dashboard/publisher/adverts-edit.php:234
1159
  #: dashboard/publisher/groups-edit.php:227
 
 
 
 
 
1160
  msgid "Upgrade now"
1161
+ msgstr "Aktualizuj teraz"
1162
 
1163
+ #: dashboard/publisher/adverts-edit.php:198
 
 
1164
  msgid "Schedule your advert"
1165
  msgstr "Harmonogram reklamy"
1166
 
1167
+ #: dashboard/publisher/adverts-edit.php:199
1168
  msgid ""
1169
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1170
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1171
  "hours. 6AM is 6:00 hours."
1172
  msgstr "Zegar używa formatu 24 godzinnego."
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:203
1175
  msgid "Start date"
1176
  msgstr "Data rozpoczęcia"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:207
1179
  msgid "End date"
1180
  msgstr "Data zakończenia"
1181
 
1182
+ #: dashboard/publisher/adverts-edit.php:213
1183
  msgid "Start time"
1184
  msgstr "Czas rozpoczęcia"
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:218
1187
  msgid "End time"
1188
  msgstr "Czas zakończenia"
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:226
1191
  msgid "Maximum Clicks"
1192
  msgstr "Maksymalna liczba kliknięć"
1193
 
1194
+ #: dashboard/publisher/adverts-edit.php:227
1195
+ #: dashboard/publisher/adverts-edit.php:229
1196
  msgid "Leave empty or 0 to skip this."
1197
  msgstr "Pozostaw puste lub wpisz 0, żeby pominąć."
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:228
1200
  msgid "Maximum Impressions"
1201
  msgstr "Maksymalna liczba wyświetleń"
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:234
 
1204
  msgid ""
1205
  "Plan ahead and create multiple and more advanced schedules for each advert "
1206
  "with AdRotate Pro."
1207
  msgstr ""
1208
+ "Planuj z wyprzedzeniem i twórz wiele bardziej zaawansowanych harmonogramów "
1209
+ "dla każdej reklamy za pomocą AdRotate Pro."
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:236
1212
  #: dashboard/publisher/groups-edit.php:157
1213
  #: dashboard/publisher/groups-edit.php:302
1214
  msgid "Usage"
1215
  msgstr "Użycie"
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:240
1218
  #: dashboard/publisher/groups-edit.php:161
1219
  #: dashboard/publisher/groups-edit.php:306
1220
  msgid "Widget"
1221
  msgstr "Widżet"
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:241
 
 
 
 
 
1224
  msgid ""
1225
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1226
  "and select the advert or the group the advert is in."
1227
  msgstr ""
1228
+ "Przeciągnij widżet AdRotate do panelu bocznego, gdzie chcesz umieścić "
1229
  "reklamę i wybierz w nim reklamę lub grupę reklam."
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:244
1232
  #: dashboard/publisher/groups-edit.php:165
1233
  #: dashboard/publisher/groups-edit.php:310
1234
  msgid "In a post or page"
1235
  msgstr "We wpisie lub stronie"
1236
 
1237
+ #: dashboard/publisher/adverts-edit.php:246
1238
  #: dashboard/publisher/groups-edit.php:167
1239
  #: dashboard/publisher/groups-edit.php:312
1240
  msgid "Directly in a theme"
1241
  msgstr "Bezpośrednio w motywie"
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:253
1244
+ #: dashboard/publisher/adverts-edit.php:296
1245
  msgid "Save Advert"
1246
  msgstr "Zapisz reklamę"
1247
 
1248
+ #: dashboard/publisher/adverts-edit.php:254
1249
+ #: dashboard/publisher/adverts-edit.php:297
1250
  #: dashboard/publisher/adverts-generator.php:148
1251
  #: dashboard/publisher/groups-edit.php:175
1252
  #: dashboard/publisher/groups-edit.php:320
1254
  msgid "Cancel"
1255
  msgstr "Anuluj"
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:258
1258
  msgid "Select Groups"
1259
  msgstr "Wybierz grupy"
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:265
1262
+ #: dashboard/publisher/groups-main.php:34
1263
+ #: dashboard/publisher/schedules-main.php:34
1264
+ #: dashboard/publisher/statistics-main.php:35
1265
+ msgid "Adverts"
1266
+ msgstr "Reklamy"
1267
+
1268
+ #: dashboard/publisher/adverts-edit.php:274
1269
  #: dashboard/publisher/groups-main.php:60
1270
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1271
  msgid "Default"
1272
  msgstr "Domyślny"
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:275
1275
  #: dashboard/publisher/groups-main.php:61
1276
  msgid "Dynamic"
1277
  msgstr "Dynamiczny"
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:275
1280
  #: dashboard/publisher/groups-main.php:61
1281
  msgid "second rotation"
1282
  msgstr "drugi wybór"
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:276
1285
  #: dashboard/publisher/groups-main.php:62
1286
  msgid "Block"
1287
  msgstr "Blok"
1288
 
1289
+ #: dashboard/publisher/adverts-edit.php:276
1290
  #: dashboard/publisher/groups-main.php:62
1291
  msgid "grid"
1292
  msgstr "siatka"
1293
 
1294
+ #: dashboard/publisher/adverts-edit.php:277
1295
  #: dashboard/publisher/groups-edit.php:234
1296
  #: dashboard/publisher/groups-main.php:63
1297
  msgid "Post Injection"
1298
  msgstr "Umieszczanie we wpisach"
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:278
1301
  msgid "Geolocation"
1302
  msgstr "Geolokalizacja"
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:285
1305
  #: dashboard/publisher/groups-edit.php:74
1306
  #: dashboard/publisher/groups-main.php:70
1307
  msgid "Mode"
1308
  msgstr "Tryb"
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:302
1311
  #: dashboard/publisher/adverts-generator.php:131
 
 
1312
  msgid "Portability"
1313
  msgstr "Przenoszenie"
1314
 
1315
+ #: dashboard/publisher/adverts-edit.php:303
 
1316
  msgid ""
1317
  "This long code is your advert. It includes all settings from above except "
1318
  "the schedule and group selection. You can import this hash into another "
1321
  "select the whole thing. You can paste the hash into the 'Advert Hash' field "
1322
  "in the Advert Generator of another AdRotate setup."
1323
  msgstr ""
1324
+ "Ten długi kod to Twoja reklama. Zawiera wszystkie ustawienia z góry z "
1325
+ "wyjątkiem harmonogramu i wyboru grupy. Możesz zaimportować ten hash do innej "
1326
+ "konfiguracji AdRotate lub AdRotate Professional. Nie zmieniaj skrótu, "
1327
+ "ponieważ reklama nie będzie działać. W większości przeglądarek możesz "
1328
+ "trzykrotnie kliknąć w polu, aby wybrać całość. Możesz wkleić hash w polu "
1329
+ "\"Skrót reklamy\" w Generatorze reklam innej konfiguracji AdRotate."
1330
+
1331
+ #: dashboard/publisher/adverts-edit.php:307
1332
  #: dashboard/publisher/adverts-generator.php:137
 
 
1333
  msgid "Advert hash"
1334
+ msgstr "Skrót reklamy"
1335
 
1336
  #: dashboard/publisher/adverts-error.php:12
1337
  msgid "Adverts that need attention"
1397
  msgstr "Wybierz obrazek reklamy"
1398
 
1399
  #: dashboard/publisher/adverts-generator.php:56
 
 
1400
  msgid "Is your file not listed? Upload it to the banners folder using (s)FTP."
1401
+ msgstr ""
1402
+ "Czy Twojego pliku nie ma na liście? Prześlij go do folderu banerów za pomocą "
1403
+ "(s)FTP."
1404
 
1405
  #: dashboard/publisher/adverts-generator.php:60
1406
  msgid "Target website"
1417
  #: dashboard/publisher/adverts-generator.php:69
1418
  #: dashboard/publisher/groups-edit.php:218
1419
  #: dashboard/settings/notifications.php:48
 
 
1420
  msgid "Available in AdRotate Pro"
1421
+ msgstr "Dostępne w AdRotate Pro"
1422
 
1423
  #: dashboard/publisher/adverts-generator.php:75
1424
  msgid "Smaller Devices"
1508
 
1509
  #: dashboard/publisher/adverts-generator.php:118
1510
  #: dashboard/publisher/adverts-generator.php:124
 
 
1511
  msgid "(Available in AdRotate Pro)"
1512
+ msgstr "(Dostępne w AdRotate Pro)"
1513
 
1514
  #: dashboard/publisher/adverts-generator.php:118
1515
  msgid ""
1534
  msgstr "Niektóre boty/wyszukiwarki używają ich jako opisu kodu."
1535
 
1536
  #: dashboard/publisher/adverts-generator.php:139
 
1537
  msgid ""
1538
  "To import a ready made advert, enter a advert hash from another AdRotate "
1539
  "setup..."
1569
  msgstr "Uwaga:"
1570
 
1571
  #: dashboard/publisher/adverts-generator.php:151
 
1572
  msgid "If you insert an Advert Hash, all other fields are ignored."
1573
  msgstr ""
1574
  "Jeśli wstawisz skrót reklamowy, wszystkie inne pola zostaną zignorowane."
1595
  msgstr "Jeszcze nie utworzono reklam!"
1596
 
1597
  #: dashboard/publisher/groups-edit.php:41
 
1598
  msgid ""
1599
  "Your block is a 1x1 grid. Either add more rows or columns or set the group "
1600
  "to Default mode."
1603
  "Tryb domyślny."
1604
 
1605
  #: dashboard/publisher/groups-edit.php:44
 
 
 
 
1606
  msgid "You have enabled Post Injection but did not select any categories."
1607
  msgstr ""
1608
+ "Włączono wstrzyknięcie po wstrzyknięciu, ale nie wybrano żadnych kategorii."
 
1609
 
1610
  #: dashboard/publisher/groups-edit.php:47
 
 
 
 
1611
  msgid "You have enabled Page Injection but did not select any pages."
1612
+ msgstr "Włączono wstrzykiwanie strony, ale nie zaznaczono żadnych stron."
 
1613
 
1614
  #: dashboard/publisher/groups-edit.php:57
1615
  msgid "New Group"
1632
  msgstr "Tryb blokowy - pokaż blok reklam"
1633
 
1634
  #: dashboard/publisher/groups-edit.php:83
 
 
 
 
1635
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1636
  msgstr ""
1637
+ "Tryb dynamiczny wymaga jQuery. Możesz to włączyć w Ustawieniach AdRotate."
 
1638
 
1639
  #: dashboard/publisher/groups-edit.php:87
1640
  msgid "Advert size"
1641
  msgstr "Wielkość reklamy"
1642
 
1643
  #: dashboard/publisher/groups-edit.php:89
 
 
1644
  msgid "pixel(s) wide"
1645
+ msgstr "szerokość pikseli"
1646
 
1647
  #: dashboard/publisher/groups-edit.php:89
 
 
1648
  msgid "pixel(s) high."
1649
+ msgstr "pikseli wysoka."
1650
 
1651
  #: dashboard/publisher/groups-edit.php:92
1652
  msgid ""
1681
  msgstr "Większe bloki mogą pogorszyć wydajność witryn! Domyślnie: 2/2."
1682
 
1683
  #: dashboard/publisher/groups-edit.php:119
 
 
1684
  msgid "Automated refresh"
1685
+ msgstr "Automatyczne odświeżanie"
1686
 
1687
  #: dashboard/publisher/groups-edit.php:138
1688
  msgid "seconds."
1715
 
1716
  #: dashboard/publisher/groups-edit.php:155
1717
  #: dashboard/publisher/groups-edit.php:227
 
 
1718
  msgid "Get access to all features in AdRotate Pro."
1719
+ msgstr "Uzyskaj dostęp do wszystkich funkcji AdRotate Pro."
1720
+
1721
+ #: dashboard/publisher/groups-edit.php:155
1722
+ msgid "Upgrade today"
1723
+ msgstr "Uaktualnij już dziś"
1724
 
1725
  #: dashboard/publisher/groups-edit.php:162
1726
  #: dashboard/publisher/groups-edit.php:307
 
 
 
 
1727
  msgid ""
1728
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1729
  "Adverts\" and enter ID"
1750
  msgstr "piksele"
1751
 
1752
  #: dashboard/publisher/groups-edit.php:187
 
 
1753
  msgid "A transparent area outside the advert in pixels. Default: 0."
1754
+ msgstr "Przezroczysty obszar poza reklamą w pikselach. Wartość domyślna: 0."
1755
 
1756
  #: dashboard/publisher/groups-edit.php:187
1757
  msgid "Set to 0 to disable."
1794
  msgstr "Włącz geolokalizację dla tej grupy."
1795
 
1796
  #: dashboard/publisher/groups-edit.php:207
 
1797
  msgid "Do not forget to tell the adverts for which areas they should show."
1798
  msgstr ""
1799
+ "Nie zapomnij powiedzieć reklamom, dla których obszarów powinny się "
1800
+ "wyświetlać."
1801
 
1802
  #: dashboard/publisher/groups-edit.php:210
 
 
1803
  msgid "Mobile Support"
1804
+ msgstr "Wsparcie mobilne"
1805
 
1806
  #: dashboard/publisher/groups-edit.php:211
1807
  msgid "Enable mobile support for this group."
1808
  msgstr "Włącz obsługę urządzeń mobilnych w tej grupie."
1809
 
1810
  #: dashboard/publisher/groups-edit.php:212
 
 
 
 
1811
  msgid "Do not forget to put at least one mobile advert in this group."
1812
  msgstr ""
1813
+ "Nie zapomnij umieścić co najmniej jednego ogłoszenia mobilnego w tej grupie."
 
1814
 
1815
  #: dashboard/publisher/groups-edit.php:215
 
 
1816
  msgid "Fallback Group"
1817
+ msgstr "Grupa rezerwowa"
1818
 
1819
  #: dashboard/publisher/groups-edit.php:222
1820
  msgid ""
1832
 
1833
  #: dashboard/publisher/groups-edit.php:238
1834
  #: dashboard/publisher/groups-edit.php:271
 
1835
  msgid "Widget (Pro only)"
1836
+ msgstr "Widget (tylko Pro)"
1837
 
1838
  #: dashboard/publisher/groups-edit.php:239
1839
  #: dashboard/publisher/groups-edit.php:272
1946
  msgstr "Nie utworzono reklam!"
1947
 
1948
  #: dashboard/publisher/groups-edit.php:407
 
 
1949
  msgid "Configuration errors."
1950
+ msgstr "Błędy konfiguracji."
1951
 
1952
  #: dashboard/publisher/groups-edit.php:408
1953
  #: dashboard/publisher/schedules-main.php:87
1981
  msgstr "Naciśnij OK, by kontynuować, Anuluj by zatrzymać."
1982
 
1983
  #: dashboard/publisher/groups-main.php:84
 
 
1984
  msgid "No groups created!"
1985
  msgstr "Nie utworzono grupy!"
1986
 
2013
  "oryginalny plik zip zostanie usunięty po wyodrębnieniu."
2014
 
2015
  #: dashboard/publisher/media.php:37
 
2016
  msgid ""
2017
  "You can create top-level folders below. Folder names can between 1 and 100 "
2018
  "characters long. Any special characters are stripped out."
2019
  msgstr ""
2020
+ "Poniżej możesz utworzyć foldery najwyższego poziomu. Nazwy folderów mogą "
2021
+ "mieć od 1 do 100 znaków. Wszelkie znaki specjalne są usuwane."
2022
 
2023
  #: dashboard/publisher/media.php:40
2024
  msgid "Upload file"
2033
  msgstr "Dostępne pliki"
2034
 
2035
  #: dashboard/publisher/media.php:55
 
 
2036
  msgid "Create folder"
2037
  msgstr "Utwórz folder"
2038
 
2052
  msgstr "Usunięcie folderu usunie także wszystkie pliki w folderze!"
2053
 
2054
  #: dashboard/publisher/schedules-main.php:13
 
2055
  msgid ""
2056
  "In AdRotate Pro you can schedule adverts for multiple periods of time. One "
2057
  "schedule can be assigned to many adverts allowing you to manage multi advert "
2058
  "campaigns easily. Schedules can be active on certain days of the week or on "
2059
  "certain hours of the day."
2060
  msgstr ""
2061
+ "W AdRotate Pro możesz zaplanować reklamy na wiele okresów czasu. Do wielu "
2062
+ "reklam można przypisać jeden harmonogram, co pozwala łatwo zarządzać "
2063
+ "kampaniami wieloprocesowymi. Harmonogramy mogą być aktywne w określone dni "
2064
  "tygodnia lub w określonych godzinach dnia."
2065
 
2066
  #: dashboard/publisher/schedules-main.php:13
 
2067
  msgid "Get more scheduling options with"
2068
+ msgstr "Uzyskaj więcej opcji planowania dzięki"
2069
 
2070
  #: dashboard/publisher/schedules-main.php:36
2071
  msgid "Max Shown"
2175
  "Wszystkie statystyki są orientacyjne. Nie muszą odpowiadać wynikom "
2176
  "wyliczonym przez innych."
2177
 
 
 
 
 
 
 
 
 
2178
  #: dashboard/publisher/statistics-group.php:46
2179
  msgid "Statistics for group"
2180
  msgstr "Statystyka dla grupy"
2183
  msgid "Adverts counting stats"
2184
  msgstr "Zliczanie statystyki reklam"
2185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2186
  #: dashboard/settings/general.php:17
2187
  msgid "General Settings"
2188
  msgstr "Ustawienia ogólne"
2192
  msgstr "Ogólne ustawienia AdRotate."
2193
 
2194
  #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
 
2195
  msgid "Some options are only available in AdRotate Pro!"
2196
  msgstr "Niektóre opcje są dostępne tylko w AdRotate Pro!"
2197
 
2198
  #: dashboard/settings/general.php:21
2199
+ msgid "Duplicate adverts"
2200
+ msgstr "Powtórzone reklamy"
2201
 
2202
  #: dashboard/settings/general.php:22
 
 
 
 
2203
  msgid ""
2204
+ "Try and prevent adverts in groups that are in Default or Block mode from "
2205
+ "showing multiple times on the same page load."
2206
  msgstr ""
2207
+ "Spróbuj zapobiec wyświetlaniu reklam w grupach, które w trybie domyślnym "
2208
+ "lub blokowym, podczas wielokrotnego wczytywania tej samej strony."
2209
 
2210
+ #: dashboard/settings/general.php:23
2211
+ msgid ""
2212
+ "If you still notice double adverts from groups placed on a page, start with "
2213
+ "carefully looking at your setup to make sure you did not cause this yourself."
2214
+ msgstr ""
2215
+ "Jeśli nadal zauważysz podwójne reklamy z grup umieszczonych na stronie, "
2216
+ "zacznij od dokładnego przyjrzenia się konfiguracji, aby upewnić się, że nie "
2217
+ "spowodowałeś tego samodzielnie."
2218
 
2219
+ #: dashboard/settings/general.php:23
2220
+ msgid "On some servers $_SESSION is disabled."
2221
+ msgstr "Na niektórych serwerach $_SESSION jest wyłączona."
2222
+
2223
+ #: dashboard/settings/general.php:23
2224
  msgid ""
2225
+ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. However, "
2226
+ "most people will not need this extra plugin!"
2227
  msgstr ""
2228
+ "Wtyczka o nazwie \"WP Session Manager\" Eric Mann może to naprawić. Jednak "
2229
+ "większość ludzi nie będzie potrzebować tego dodatkowego pluginu!"
2230
+
2231
+ #: dashboard/settings/general.php:26
2232
+ msgid "Shortcode in widgets"
2233
+ msgstr "Shortcode w widżetach"
2234
 
2235
+ #: dashboard/settings/general.php:27
2236
+ msgid ""
2237
+ "Try and activate shortcodes in text widgets if your theme does not add "
2238
+ "support for it by itself. (This does not always work!)"
2239
+ msgstr ""
2240
+ "Spróbuj aktywować krótkie kody w widżetach tekstowych, jeśli motyw nie "
2241
+ "dodaje obsługi dla niego sam. (To nie zawsze działa!)"
2242
 
2243
  #: dashboard/settings/general.php:30
2244
+ msgid "Advert live preview"
2245
+ msgstr "Podgląd reklamy na żywo"
2246
+
2247
+ #: dashboard/settings/general.php:31
2248
  msgid ""
2249
+ "Disable live previews for adverts if you have faulty adverts that overflow "
2250
+ "their designated area while creating/editing adverts."
2251
  msgstr ""
2252
+ "Wyłącz podglądy na żywo dla reklam, jeśli masz wadliwe reklamy, które "
2253
+ "przepełniają wyznaczony obszar podczas tworzenia / edytowania reklam."
2254
 
2255
+ #: dashboard/settings/general.php:34
2256
+ msgid "Dynamic mode on mobile"
2257
+ msgstr "Tryb dynamiczny na urządzeniach mobilnych"
2258
+
2259
+ #: dashboard/settings/general.php:35
2260
+ msgid ""
2261
+ "Disable dynamic mode in groups for mobile devices if you notice skipping or "
2262
+ "jumpy content."
2263
+ msgstr ""
2264
+ "Wyłącz tryb dynamiczny w grupach dla urządzeń mobilnych, jeśli zauważysz "
2265
+ "pomijanie lub jumpy treści."
2266
+
2267
+ #: dashboard/settings/general.php:38
2268
  msgid "Load jQuery"
2269
  msgstr "Wczytaj jQuery"
2270
 
2271
+ #: dashboard/settings/general.php:39
2272
  msgid ""
2273
+ "Load jQuery if your theme does not load it already. jQuery is required for "
2274
+ "dynamic groups, statistics and some other features."
2275
  msgstr ""
2276
+ "Załaduj jQuery, jeśli motyw go już nie ładuje. jQuery jest wymagane dla grup "
2277
+ "dynamicznych, statystyk i niektórych innych funkcji."
2278
 
2279
+ #: dashboard/settings/general.php:42
2280
  msgid "Load scripts in footer?"
2281
  msgstr "Skrypty w stopce?"
2282
 
2283
+ #: dashboard/settings/general.php:43
2284
+ msgid "Load all AdRotate Javascripts in the footer of your site."
2285
+ msgstr "Załaduj wszystkie skrypty Javascript AdRotate w stopce witryny."
 
 
 
 
2286
 
2287
+ #: dashboard/settings/general.php:46
2288
  msgid "Adblock disguise"
2289
  msgstr "Unikanie AdBlocka"
2290
 
2291
+ #: dashboard/settings/general.php:48
2292
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2293
  msgstr "Zostaw puste, aby wyłączyć. Używaj tylko małych liter. Na przykład:"
2294
 
2295
+ #: dashboard/settings/general.php:49
2296
  msgid ""
2297
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2298
  msgstr ""
2299
  "Spróbuj oszukać wtyczki Adblock w większości przeglądarek, kiedy używasz "
2300
  "shortcodes."
2301
 
2302
+ #: dashboard/settings/general.php:49
2303
  msgid ""
2304
  "To also apply this feature to widgets, use a text widget with a shortcode "
2305
  "instead of the AdRotate widget."
2307
  "Aby zastosować tę funkcję do widżetów, użyj widżetu tekstowego z shortcode "
2308
  "zamiast widżetu AdRotate."
2309
 
2310
+ #: dashboard/settings/general.php:49
2311
  msgid ""
2312
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2313
  "feature will have little effect!"
2315
  "Unikaj korzystania z oczywistych słów kluczowych lub nazw w swoich "
2316
  "reklamach, w przeciwnym razie ta funkcja będzie miała niewielki efekt!"
2317
 
2318
+ #: dashboard/settings/general.php:54
2319
  msgid "Banner Folder"
2320
  msgstr "Folder banerów"
2321
 
2322
+ #: dashboard/settings/general.php:55
2323
  msgid "Set a folder where your banner images will be stored."
2324
  msgstr "Wybierz folder dla banerów reklam."
2325
 
2326
+ #: dashboard/settings/general.php:58
2327
  msgid "Folder name"
2328
  msgstr "Nazwa folderu"
2329
 
2330
+ #: dashboard/settings/general.php:60
2331
  msgid "(Default: banners)."
2332
  msgstr "(Domyślnie: banners)."
2333
 
2334
+ #: dashboard/settings/general.php:61
2335
  msgid ""
2336
  "To try and trick ad blockers you could set the folder to something crazy "
2337
  "like:"
2339
  "Możesz spróbować oszukać programy blokujące reklamy, podając nietypową nazwę "
2340
  "folderów, na przykład:"
2341
 
2342
+ #: dashboard/settings/general.php:62
2343
  msgid ""
2344
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2345
  "will show errors when the folder is missing."
2347
  "Ten folder nie zostanie automatycznie utworzony. AdRotate wyświetli błędy, "
2348
  "jeśli nie odnajdzie katalogu."
2349
 
2350
+ #: dashboard/settings/general.php:67
2351
  msgid "Bot filter"
2352
  msgstr "Filtr botów"
2353
 
2354
+ #: dashboard/settings/general.php:68
 
 
 
2355
  msgid "The bot filter is used for the AdRotate stats tracker."
2356
+ msgstr "Filtr bota jest używany do śledzenia statystyk AdRotate."
2357
 
2358
+ #: dashboard/settings/general.php:71
2359
  msgid "User-Agent Filter"
2360
  msgstr "Filtr identyfikatorów przeglądarek"
2361
 
2362
+ #: dashboard/settings/general.php:74
2363
  msgid ""
2364
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2365
  msgstr ""
2366
  "Oddzielona przecinkami lista słów kluczowych. Filtruje boty i przeglądarki."
2367
 
2368
+ #: dashboard/settings/general.php:75
2369
  msgid ""
2370
  "Keep in mind that this might give false positives. The word 'fire' also "
2371
  "matches 'firefox', but not vice-versa. So be careful!"
2373
  "Należy pamiętać, że może to dać fałszywe trafienia. Słowo 'fire' pasuje "
2374
  "również do 'Firefox'firefox, ale nie odwrotnie. Bądź ostrożny!"
2375
 
2376
+ #: dashboard/settings/general.php:76
2377
  msgid ""
2378
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2379
  "characters are stripped out."
2381
  "Dopuszczalne są tylko słowa ze znakami alfanumerycznymi i [- _]. Pozostałe "
2382
  "znaki zostaną usunięte."
2383
 
2384
+ #: dashboard/settings/general.php:77
2385
  msgid ""
2386
  "Additionally to the list specified here, empty User-Agents are blocked as "
2387
  "well."
2388
  msgstr "Oprócz podanej listy blokowani są klienci z pustym polem User Agent."
2389
 
2390
+ #: dashboard/settings/general.php:77
2391
  msgid "Learn more about"
2392
  msgstr "Dowiedź się więcej"
2393
 
2394
+ #: dashboard/settings/general.php:77
2395
  msgid "user-agents"
2396
  msgstr "identyfikatory przeglądarek"
2397
 
2398
+ #: dashboard/settings/general.php:83 dashboard/settings/maintenance.php:107
2399
+ #: dashboard/settings/misc.php:47 dashboard/settings/notifications.php:72
2400
+ #: dashboard/settings/roles.php:55 dashboard/settings/statistics.php:85
2401
+ msgid "Update Options"
2402
+ msgstr "Zapisz opcje"
2403
+
2404
  #: dashboard/settings/geotargeting.php:17
 
2405
  msgid "Geo Targeting - Available in AdRotate Pro"
2406
  msgstr "Geotargetowanie - dostępne w wersji AdRotate Pro"
2407
 
2414
  msgstr "Wybierz usługę geolokalizacji"
2415
 
2416
  #: dashboard/settings/geotargeting.php:32
 
 
2417
  msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2418
  msgstr ""
2419
+ "30000 darmowych odnośników każdego dnia, korzysta z baz danych GeoLite2 od "
2420
  "MaxMind!"
2421
 
2422
  #: dashboard/settings/geotargeting.php:33
2492
  "dokładny, ale gwałtownie zmniejsza liczbę wyszukiwań."
2493
 
2494
  #: dashboard/settings/geotargeting.php:67
 
 
2495
  msgid "MaxMind City/Country"
2496
+ msgstr "MaxMind Miasto/Kraj"
2497
 
2498
  #: dashboard/settings/geotargeting.php:70
 
2499
  msgid "Username/Email"
2500
+ msgstr "Ustawienia/e-mail"
2501
 
2502
  #: dashboard/settings/geotargeting.php:74
 
 
2503
  msgid "Password/License Key"
2504
+ msgstr "Hasło/klucz licencyjny"
2505
 
2506
  #: dashboard/settings/maintenance.php:17
 
2507
  msgid ""
2508
  "Use these functions when you notice your database is slow, unresponsive and "
2509
  "sluggish."
2510
  msgstr ""
2511
  "Użyj tych funkcji, gdy zauważysz, że baza danych jest powolna, nie odpowiada "
2512
+ "i powolna."
2513
 
2514
  #: dashboard/settings/maintenance.php:22
2515
+ msgid "Check for errors"
2516
+ msgstr "Sprawdzanie błędów"
2517
 
2518
  #: dashboard/settings/maintenance.php:22
2519
  msgid "You are about to check all adverts for errors."
2531
  "błędów."
2532
 
2533
  #: dashboard/settings/maintenance.php:28
 
 
2534
  msgid "Clean-up Database and Files"
2535
  msgstr "Oczyszczanie bazy danych i plików"
2536
 
2537
  #: dashboard/settings/maintenance.php:30
2538
+ msgid "Run Clean-up"
2539
+ msgstr "Uruchom czyszczenie"
 
 
2540
 
2541
  #: dashboard/settings/maintenance.php:30
 
 
2542
  msgid "You are about to do maintenance on your setup of AdRotate."
2543
+ msgstr "Masz zamiar wykonać konserwację konfiguracji AdRotate."
2544
 
2545
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2546
  msgid ""
2547
  "This optionally may delete old statistics and tries to delete old export "
2548
  "files."
2549
  msgstr ""
2550
+ "Opcjonalnie może to usunąć stare statystyki i próbę usunięcia starych plików "
2551
+ "eksportu."
2552
 
2553
  #: dashboard/settings/maintenance.php:30
2554
  msgid "Are you sure you want to continue?"
2559
  msgstr "TEJ AKCJI NIE MOŻNA COFNĄĆ!"
2560
 
2561
  #: dashboard/settings/maintenance.php:32
 
2562
  msgid "Basic database maintenance."
2563
  msgstr "Podstawowa konserwacja bazy danych."
2564
 
2565
  #: dashboard/settings/maintenance.php:33
 
 
2566
  msgid "Delete stats older than 365 days."
2567
+ msgstr "Usuń statystyki starsze niż 365 dni."
2568
 
2569
  #: dashboard/settings/maintenance.php:34
2570
  msgid "Delete leftover export files."
2571
  msgstr "Usuń pozostałości plików eksportu."
2572
 
2573
  #: dashboard/settings/maintenance.php:35
 
 
 
 
 
2574
  msgid ""
2575
  "For when you create an advert, group or schedule and it does not save or "
2576
  "keep changes you make."
2577
  msgstr ""
2578
+ "Gdy tworzysz reklamę, grupę lub harmonogram i nie zapisujesz ani nie "
2579
+ "zachowujesz wprowadzonych zmian."
 
2580
 
2581
  #: dashboard/settings/maintenance.php:35
 
 
 
 
2582
  msgid ""
2583
  "Additionally you can delete statistics and/or unused export files. This will "
2584
  "improve the speed of your site."
2585
  msgstr ""
2586
+ "Dodatkowo można usunąć statystyki i/lub nieużywane pliki eksportu. Poprawi "
2587
+ "to szybkość Twojej witryny."
 
2588
 
2589
  #: dashboard/settings/maintenance.php:39
 
 
 
 
 
 
 
 
 
 
 
2590
  msgid ""
2591
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2592
  "database or clean up overhead data. They only apply to your ads/groups and "
2611
  "jest prawidłowym punktem w każdym przypadku."
2612
 
2613
  #: dashboard/settings/maintenance.php:41
 
 
2614
  msgid "Status and Versions"
2615
+ msgstr "Status i wersje"
2616
 
2617
  #: dashboard/settings/maintenance.php:44
2618
  msgid "Current status of adverts"
2675
  msgstr "Resetuj zadania w tle"
2676
 
2677
  #: dashboard/settings/maintenance.php:78
 
 
 
2678
  msgid "Unsupported plugins"
2679
+ msgstr "Nieobsługiwały wtyczki"
2680
 
2681
  #: dashboard/settings/maintenance.php:80
2682
  msgid "Disable 3rd party plugins"
2766
  msgstr "Pusta przestrzeń widżetu"
2767
 
2768
  #: dashboard/settings/misc.php:24
 
 
 
 
2769
  msgid ""
2770
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2771
  "not always work!)"
2772
  msgstr ""
2773
+ "Włącz funkcję, aby usunąć wypełnienie (puste miejsce) wokół reklam w "
2774
+ "widżetach. (Nie zawsze działa!)"
2775
 
2776
  #: dashboard/settings/misc.php:28
2777
  msgid "NOTICE:"
2832
  "buforowania."
2833
 
2834
  #: dashboard/settings/notifications.php:19
 
 
2835
  msgid "Set up who gets notifications if ads need your attention."
2836
+ msgstr ""
2837
+ "Skonfiguruj, kto będzie otrzymywać powiadomienia, jeśli reklamy wymagają "
2838
+ "Twojej uwagi."
2839
 
2840
  #: dashboard/settings/notifications.php:22
2841
  msgid "How to notify"
2957
  "przecinkami. To pole nie może być puste!"
2958
 
2959
  #: dashboard/settings/roles.php:18
 
2960
  msgid "Who has access to what?"
2961
+ msgstr "Kto ma dostęp do czego?"
2962
 
2963
  #: dashboard/settings/roles.php:21
2964
  msgid "Manage/Add/Edit adverts"
2965
  msgstr "Przeglądaj/dodawaj/edytuj reklamy"
2966
 
2967
  #: dashboard/settings/roles.php:25
 
 
2968
  msgid "Role to see and add/edit ads."
2969
+ msgstr "Rola wyświetlania i dodawania/edytowania reklam."
2970
 
2971
  #: dashboard/settings/roles.php:29
2972
  msgid "Delete/Reset adverts"
2973
  msgstr "Usuwaj/resetuj reklamy"
2974
 
2975
  #: dashboard/settings/roles.php:33
 
 
2976
  msgid "Role to delete ads and reset stats."
2977
+ msgstr "Rola usuwania reklam i resetowania statystyk."
2978
 
2979
  #: dashboard/settings/roles.php:37
2980
  msgid "Manage/Add/Edit groups"
3038
  "jedynie śledzić odsłony."
3039
 
3040
  #: dashboard/settings/statistics.php:37
 
 
 
3041
  msgid ""
3042
  "Requires Google Global Tag tracking code installed in your sites footer!"
3043
  msgstr ""
3044
+ "Wymaga kodu śledzenia Tagów globalnych Google zainstalowanego w stopce "
3045
+ "witryn!"
3046
 
3047
  #: dashboard/settings/statistics.php:40
3048
  msgid ""
3061
  "pozwalają jedynie śledzić odsłony."
3062
 
3063
  #: dashboard/settings/statistics.php:47
 
 
3064
  msgid "AdRotate Statistics"
3065
+ msgstr "AdRotate Statystyki"
3066
 
3067
  #: dashboard/settings/statistics.php:48
 
 
 
 
3068
  msgid ""
3069
+ "The settings below are for the local tracker and have no effect when using "
3070
+ "Google Analytics or Matomo."
3071
  msgstr ""
3072
+ "Poniższe ustawienia dotyczą lokalnego modułu śledzącego i nie mają wpływu na "
3073
+ "korzystanie z Google Analytics lub Matomo."
3074
 
3075
  #: dashboard/settings/statistics.php:51
3076
+ msgid "Admin stats"
3077
+ msgstr "Statystyki administratora"
3078
+
3079
+ #: dashboard/settings/statistics.php:53
3080
+ msgid "Track statistics from admin users."
3081
+ msgstr "Śledź statystyki od użytkowników administracyjnych."
3082
+
3083
+ #: dashboard/settings/statistics.php:57
3084
  msgid "Logged in impressions"
3085
  msgstr "Odsłony dla zalogowanych"
3086
 
3087
+ #: dashboard/settings/statistics.php:59
3088
  msgid "Track impressions from logged in users."
3089
  msgstr "Śledź odsłony dla zalogowanych użytkowników."
3090
 
3091
+ #: dashboard/settings/statistics.php:63
3092
  msgid "Logged in clicks"
3093
  msgstr "Kliknięcia zalogowanych"
3094
 
3095
+ #: dashboard/settings/statistics.php:65
3096
  msgid "Track clicks from logged in users."
3097
  msgstr "Śledź kliknięcia zalogowanych użytkowników."
3098
 
3099
+ #: dashboard/settings/statistics.php:69
3100
  msgid "Impression timer"
3101
  msgstr "Czas wyświetlania"
3102
 
3103
+ #: dashboard/settings/statistics.php:71 dashboard/settings/statistics.php:78
3104
  msgid "Seconds."
3105
  msgstr "Sekundy."
3106
 
3107
+ #: dashboard/settings/statistics.php:72
3108
  msgid "Default: 60."
3109
  msgstr "Domyślnie: 60."
3110
 
3111
+ #: dashboard/settings/statistics.php:72
3112
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3113
  msgstr ""
3114
  "Ta liczba nie może być pusta, mniejsza od 10 lub większa od 3600(1 godzina)."
3115
 
3116
+ #: dashboard/settings/statistics.php:76
3117
  msgid "Click timer"
3118
  msgstr "Czas kliknięcia"
3119
 
3120
+ #: dashboard/settings/statistics.php:79
3121
  msgid "Default: 86400."
3122
  msgstr "Domyślny: 86400."
3123
 
3124
+ #: dashboard/settings/statistics.php:79
3125
  msgid ""
3126
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3127
  msgstr ""
3129
  "godziny)."
3130
 
3131
  #: dashboard/support.php:83
 
3132
  msgid "Premium Support available in AdRotate Pro"
3133
+ msgstr "Wsparcie Premium dostępne w AdRotate Pro"
3134
 
3135
  #: dashboard/support.php:86
 
3136
  msgid "Premium support always comes first!"
3137
  msgstr "Wsparcie premium zawsze jest na pierwszym miejscu!"
3138
 
3139
  #: dashboard/support.php:86
 
3140
  msgid "No queuing up on the forum..."
3141
+ msgstr "Bez kolejek na forum..."
3142
 
3143
  #: dashboard/support.php:86
 
3144
  msgid "Using this form includes essential information for a quick answer."
3145
  msgstr ""
3146
+ "Korzystanie z tego formularza zawiera niezbędne informacje do szybkiej "
3147
+ "odpowiedzi."
3148
 
3149
  #: dashboard/support.php:86
 
 
3150
  msgid "Available in AdRotate Professional!"
3151
+ msgstr "Dostępne w AdRotate Professional!"
3152
 
3153
  #: dashboard/support.php:88
3154
  msgid "Your name:"
3191
  msgstr "Uzyskaj pomoc"
3192
 
3193
  #: dashboard/support.php:98
 
3194
  msgid "Premium Support is available in AdRotate Pro!"
3195
+ msgstr "Wsparcie Premium jest dostępne w AdRotate Pro!"
3196
+
3197
+ #~ msgid "Check all adverts for configuration errors"
3198
+ #~ msgstr "Sprawdź wszystkie ogłoszenia pod kątem błędów konfiguracji"
3199
+
3200
+ #~ msgid "Clean-up database and old files"
3201
+ #~ msgstr "Oczyszczanie bazy danych i starych plików"
3202
+
3203
+ #~ msgid "More features with AdRotate Pro"
3204
+ #~ msgstr "Więcej funkcji z AdRotate Pro"
3205
+
3206
+ #~ msgid ""
3207
+ #~ "Many users only think to review AdRotate when something goes wrong while "
3208
+ #~ "thousands of people happily use AdRotate."
3209
+ #~ msgstr ""
3210
+ #~ "Wielu użytkowników myśli o napisaniu recenzji AdRotate tylko wtedy gdy "
3211
+ #~ "coś pójdzie nie tak, podczas gdy tysiące ludzi chętnie korzystają z "
3212
+ #~ "AdRotate."
3213
+
3214
+ #~ msgid "If you find AdRotate useful please leave your"
3215
+ #~ msgstr "Jeśli uważasz, że AdRotate jest przydatne proszę zostaw swoją"
3216
+
3217
+ #~ msgid "rating"
3218
+ #~ msgstr "ocenę"
3219
+
3220
+ #~ msgid "on WordPress.org to help AdRotate grow in a positive way"
3221
+ #~ msgstr "w Wodpress.org aby pomóc AdRotate rosnąć w pozytywny sposób"
3222
+
3223
+ #~ msgid ""
3224
+ #~ "Get more advanced features such as Geo Targeting, scheduling and much "
3225
+ #~ "more with AdRotate Pro."
3226
+ #~ msgstr ""
3227
+ #~ "Uzyskaj bardziej zaawansowane funkcje, takie jak kierowanie geograficzne, "
3228
+ #~ "planowanie i wiele więcej dzięki AdRotate Pro."
3229
+
3230
+ #~ msgid "Get access to premium support and free updates for one year!"
3231
+ #~ msgstr ""
3232
+ #~ "Uzyskaj dostęp do wsparcia premium i bezpłatnych aktualizacji przez rok!"
3233
+
3234
+ #~ msgid "General Info"
3235
+ #~ msgstr "Informacje ogólne"
3236
+
3237
+ #~ msgid "AdRotate Info"
3238
+ #~ msgstr "Informacja AdRotate"
3239
+
3240
+ #~ msgid "Advertisers"
3241
+ #~ msgstr "Reklamodawcy"
3242
+
3243
+ #~ msgid "At a Glance"
3244
+ #~ msgstr "W skrócie"
3245
+
3246
+ #~ msgid "Your setup"
3247
+ #~ msgstr "Twoje ustawienia"
3248
+
3249
+ #~ msgid "Adverts that need you"
3250
+ #~ msgstr "Reklamy wymagające uwagi"
3251
+
3252
+ #~ msgid "(Almost) Expired"
3253
+ #~ msgstr "(Wkrótce) wygasa"
3254
+
3255
+ #~ msgid "Groups"
3256
+ #~ msgstr "Grupy"
3257
+
3258
+ #~ msgid "Have errors"
3259
+ #~ msgstr "Z błędami"
3260
+
3261
+ #, fuzzy
3262
+ #~ msgid "Use on TWO WordPress installations."
3263
+ #~ msgstr "Użyj na dwóch instalacjach WordPress."
3264
+
3265
+ #, fuzzy
3266
+ #~| msgid "Developer Debug"
3267
+ #~ msgid "Developer License"
3268
+ #~ msgstr "Licencja Programisty"
3269
+
3270
+ #, fuzzy
3271
+ #~ msgid "Use on up to a HUNDRED WordPress installations and/or networks."
3272
+ #~ msgstr "Używaj do stu instalacji WordPress i/lub sieci."
3273
+
3274
+ #~ msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
3275
+ #~ msgstr ""
3276
+ #~ "Śledzenie jest włączone, ale kod reklamy nie zawiera poprawnego odnośnika/"
3277
+ #~ "znacznika!"
3278
+
3279
+ #~ msgid "Enable click and impression tracking for this advert."
3280
+ #~ msgstr "Włącz zliczanie kliknięć i wyświetleń dla tej reklamy."
3281
+
3282
+ #, fuzzy
3283
+ #~ msgid "Advertisers - Available in AdRotate Pro"
3284
+ #~ msgstr "Reklamodawcy — dostępne w AdRotate Pro"
3285
+
3286
+ #, fuzzy
3287
+ #~| msgid "Enable advertisers so they can review and manage their own adverts."
3288
+ #~ msgid "Enable advertisers so they can review and manage their own ads."
3289
+ #~ msgstr ""
3290
+ #~ "Włącz uprawnienia dla reklamodawców by mogli przeglądać i zarządzać "
3291
+ #~ "swoimi reklamami."
3292
+
3293
+ #~ msgid "Enable Advertisers"
3294
+ #~ msgstr "Włącz opcję reklamodawcy"
3295
+
3296
+ #~ msgid "Allow adverts to be coupled to users (Advertisers)."
3297
+ #~ msgstr "Zezwalaj na łączenie reklam z użytkownikami (reklamodawcami)."
3298
+
3299
+ #~ msgid "Edit/update adverts"
3300
+ #~ msgstr "Edytuj/aktualizuj reklamy"
3301
+
3302
+ #~ msgid "Allow advertisers to add new or edit their adverts."
3303
+ #~ msgstr "Pozwól reklamodawcom na dodawanie oraz edytowanie reklam."
3304
+
3305
+ #~ msgid "Mobile adverts"
3306
+ #~ msgstr "Reklamy mobilne"
3307
+
3308
+ #~ msgid "Allow advertisers to specify on which devices their ads will show."
3309
+ #~ msgstr ""
3310
+ #~ "Pozwól reklamodawcom określić, na których urządzenia będą wyświetlane ich "
3311
+ #~ "reklamy."
3312
+
3313
+ #~ msgid ""
3314
+ #~ "Allow advertisers to specify where their ads will show. Geo Targeting has "
3315
+ #~ "to be enabled, too."
3316
+ #~ msgstr ""
3317
+ #~ "Pozwól reklamodawcom określić, gdzie będą wyświetlane ich reklamy. "
3318
+ #~ "Wymagane jest włączenie geolokalizacji."
3319
+
3320
+ #~ msgid "Advertiser role"
3321
+ #~ msgstr "Rola reklamodawcy"
3322
+
3323
+ #~ msgid "Create a seperate user role for your advertisers."
3324
+ #~ msgstr "Utwórz osobną rolę dla reklamodawców."
3325
+
3326
+ #~ msgid ""
3327
+ #~ "Don't forget to give these users access to their advertiser dashboard via "
3328
+ #~ "the Roles tab."
3329
+ #~ msgstr ""
3330
+ #~ "Nie zapomnij dać tym użytkownikom dostęp do kokpitu reklamodawcy w karcie "
3331
+ #~ "Role."
3332
+
3333
+ #, fuzzy
3334
+ #~| msgid ""
3335
+ #~| "Enable this option to if your theme does not support shortcodes in the "
3336
+ #~| "WordPress text widget. (This does not always work!)"
3337
+ #~ msgid ""
3338
+ #~ "Enable this option to if your theme does not support shortcodes in the "
3339
+ #~ "WordPress text widget."
3340
+ #~ msgstr ""
3341
+ #~ "Włącz tę opcję, jeśli Twój motyw nie obsługuje shortcode w widżecie "
3342
+ #~ "tekstowym WordPress (nie zawsze działa!)"
3343
+
3344
+ #~ msgid "Disable dynamic mode"
3345
+ #~ msgstr "Wyłącz tryb dynamiczny"
3346
 
3347
  #, fuzzy
3348
  #~| msgid "Getting Started With AdRotate"
3686
  #~ msgid "News & Updates"
3687
  #~ msgstr "Aktualności i aktualizacje"
3688
 
 
 
 
3689
  #, fuzzy
3690
  #~| msgid ""
3691
  #~| "When you are stuck with AdRotate Banner Manager or AdRotate "
4958
  #~ msgid "Select Adverts"
4959
  #~ msgstr "Wybierz reklamy"
4960
 
 
 
 
4961
  #~ msgid "Period"
4962
  #~ msgstr "Okres"
4963
 
4970
  #~ msgid "from"
4971
  #~ msgstr "od"
4972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4973
  #~ msgid "Live preview"
4974
  #~ msgstr "Podgląd na żywo"
4975
 
 
 
 
4976
  #~ msgid "Lookups remaining"
4977
  #~ msgstr "Pozostałe odnośniki"
4978
 
5079
  #~ "Tymczasowo wyłącz szyfrowanie przekierowania URL. Tylko do wewnętrznego "
5080
  #~ "śledzenia AdRotate."
5081
 
 
 
 
5082
  #~ msgid "Send email notifications"
5083
  #~ msgstr "Wysyłaj powiadomienia mailem"
5084
 
5699
  #~ "Pokaż specyfikację reklam oczekujących na moderację. Pokaż podsumowanie "
5700
  #~ "dla reklamodawców!"
5701
 
 
 
 
5702
  #~ msgid "Enable the AdRotate Quickmenu in the Admin Bar"
5703
  #~ msgstr "Włącz menu podręczne AdRotate w pasku administracyjnym"
5704
 
5794
  #~ msgid "AdRotate website"
5795
  #~ msgstr "Strona AdRotate"
5796
 
 
 
 
 
 
 
 
 
5797
  #~ msgid "Brought to you by"
5798
  #~ msgstr "Dostarczone przez "
5799
 
language/adrotate-pt_BR.mo CHANGED
Binary file
language/adrotate-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-05-19 12:13-0500\n"
6
- "PO-Revision-Date: 2021-05-19 12:16-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Português do Brasil\n"
9
  "Language: pt_BR\n"
@@ -18,31 +18,31 @@ msgstr ""
18
  "X-Loco-Version: 2.5.0; wp-5.6.2\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:784
22
  msgid "Advert saved"
23
  msgstr "Anúncio salvo"
24
 
25
- #: adrotate-functions.php:788
26
  msgid "Group saved"
27
  msgstr "Grupo guardado"
28
 
29
- #: adrotate-functions.php:792
30
  msgid "Banner image saved"
31
  msgstr "A imagem da bandeira salvo"
32
 
33
- #: adrotate-functions.php:796
34
  msgid "Ad(s) deleted"
35
  msgstr "Anúncio(s) apagados"
36
 
37
- #: adrotate-functions.php:800
38
  msgid "Group deleted"
39
  msgstr "Grupo de excluídos"
40
 
41
- #: adrotate-functions.php:804
42
  msgid "Asset(s) deleted"
43
  msgstr "Activo(s) apagados"
44
 
45
- #: adrotate-functions.php:808
46
  msgid ""
47
  "Something went wrong deleting the file or folder. Make sure your permissions "
48
  "are in order."
@@ -50,31 +50,31 @@ msgstr ""
50
  "Alguma coisa saiu errada exclusão de um arquivo ou pasta. Certifique-se de "
51
  "que as permissões estão em ordem."
52
 
53
- #: adrotate-functions.php:812
54
  msgid "Advert(s) statistics reset"
55
  msgstr "Anúncio(s) estatísticas de reposição"
56
 
57
- #: adrotate-functions.php:816
58
  msgid "Advert(s) renewed"
59
  msgstr "Anúncios(s) renovados"
60
 
61
- #: adrotate-functions.php:820
62
  msgid "Advert(s) deactivated"
63
  msgstr "Anúncios desativados"
64
 
65
- #: adrotate-functions.php:824
66
  msgid "Advert(s) activated"
67
  msgstr "Anúncio(s) ativado"
68
 
69
- #: adrotate-functions.php:828
70
  msgid "Group including the Adverts in it deleted"
71
  msgstr "Grupo de inclusão de Anúncios do excluído"
72
 
73
- #: adrotate-functions.php:832
74
  msgid "Export created"
75
  msgstr "Exportação criado"
76
 
77
- #: adrotate-functions.php:836
78
  msgid ""
79
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
80
  "below. Do not forget to check all settings and schedule the advert."
@@ -82,31 +82,31 @@ msgstr ""
82
  "Anúncio HTML gerado e colocado na AdCode campo. Configurar o seu anúncio "
83
  "abaixo. Não se esqueça de verificar todas as configurações e agendá-lo."
84
 
85
- #: adrotate-functions.php:841
86
  msgid "Settings saved"
87
  msgstr "As configurações salvas"
88
 
89
- #: adrotate-functions.php:845
90
  msgid "Database optimized"
91
  msgstr "Banco de dados otimizado"
92
 
93
- #: adrotate-functions.php:849
94
  msgid "Database repaired"
95
  msgstr "Banco de dados reparado"
96
 
97
- #: adrotate-functions.php:853
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Anúncios avaliados e status foram corrigidos quando necessário"
100
 
101
- #: adrotate-functions.php:857
102
  msgid "Cleanup complete"
103
  msgstr "Limpeza completa"
104
 
105
- #: adrotate-functions.php:862
106
  msgid "Action prohibited"
107
  msgstr "Ação proibida"
108
 
109
- #: adrotate-functions.php:866
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
@@ -114,23 +114,23 @@ msgstr ""
114
  "O anúncio foi salvo, mas tem um problema que pode impedi-lo de funcionar "
115
  "corretamente. Reveja o anúncio colorido."
116
 
117
- #: adrotate-functions.php:870
118
  msgid "No data found in selected time period"
119
  msgstr "Dados não encontrados no período de tempo selecionado"
120
 
121
- #: adrotate-functions.php:874
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr "Banco de dados só pode ser otimizados ou limpo uma vez a cada hora"
124
 
125
- #: adrotate-functions.php:878
126
  msgid "Form can not be (partially) empty!"
127
  msgstr "O formulário não pode ser (parcialmente) vazio!"
128
 
129
- #: adrotate-functions.php:882
130
  msgid "No adverts found."
131
  msgstr "Não foram encontrados anúncios."
132
 
133
- #: adrotate-functions.php:886
134
  msgid ""
135
  "The advert hash is not usable or is missing required data. Please copy the "
136
  "hash correctly and try again."
@@ -138,7 +138,7 @@ msgstr ""
138
  "O anúncio de hash não é utilizável ou é falta de dados necessários. Por "
139
  "favor, copie o hash corretamente e tente novamente."
140
 
141
- #: adrotate-functions.php:890
142
  msgid ""
143
  "The advert hash can not be used on the same site as it originated from or is "
144
  "not a valid hash for importing."
@@ -146,7 +146,7 @@ msgstr ""
146
  "O anúncio de hash não pode ser usado no mesmo site que originou-se ou não é "
147
  "um hash válido para a importação."
148
 
149
- #: adrotate-functions.php:894
150
  msgid "Unexpected error"
151
  msgstr "Erro inesperado"
152
 
@@ -318,11 +318,11 @@ msgstr ""
318
  msgid "Installation instructions"
319
  msgstr "Instruções de instalação"
320
 
321
- #: adrotate-output.php:730
322
  msgid "your attention:"
323
  msgstr "atenção:"
324
 
325
- #: adrotate-output.php:761
326
  msgid ""
327
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
328
  "menu. If you need help getting started take a look at the"
@@ -330,65 +330,124 @@ msgstr ""
330
  "Obrigado por escolher AdRotate. Tudo relacionado com o AdRotate é neste "
331
  "menu. Se você precisar de ajuda para começar, dê uma olhada no"
332
 
333
- #: adrotate-output.php:761
334
  msgid "manuals"
335
  msgstr "manuais"
336
 
337
- #: adrotate-output.php:761
338
  msgid "and"
339
  msgstr "e"
340
 
341
- #: adrotate-output.php:761
342
  msgid "forums"
343
  msgstr "fóruns"
344
 
345
- #: adrotate-output.php:841
346
  msgid "Need help fast? Or do you have a question?"
347
  msgstr "Precisa de ajuda rápido? Ou você tem uma pergunta?"
348
 
349
- #: adrotate-output.php:842
350
  msgid "Help AdRotate Grow"
351
  msgstr "Ajuda AdRotate Crescer"
352
 
353
- #: adrotate-output.php:843
354
- msgid "More features with AdRotate Pro"
355
- msgstr "Mais recursos com o AdRotate Pro"
356
 
357
- #: adrotate-output.php:850
358
  msgid ""
359
- "Many users only think to review AdRotate when something goes wrong while "
360
- "thousands of people happily use AdRotate."
 
361
  msgstr ""
362
- "Muitos usuários acho que a revisão AdRotate quando algo der errado, "
363
- "enquanto milhares de pessoas felizes usar AdRotate."
 
 
364
 
365
- #: adrotate-output.php:850
366
- msgid "If you find AdRotate useful please leave your"
367
- msgstr "Se você encontrar AdRotate útil, por favor deixe o seu"
368
 
369
- #: adrotate-output.php:850
370
- msgid "rating"
371
- msgstr "classificação"
372
 
373
- #: adrotate-output.php:850
374
- msgid "on WordPress.org to help AdRotate grow in a positive way"
375
- msgstr "no WordPress.org para ajudar AdRotate crescer de uma forma positiva"
 
 
 
 
 
 
 
 
376
 
377
- #: adrotate-output.php:851
378
  msgid ""
379
- "Get more advanced features such as Geo Targeting, scheduling and much more "
380
- "with AdRotate Pro."
 
 
381
  msgstr ""
382
- "Obter mais recursos avançados, como o Geo Targeting, programação e muito "
383
- "mais com AdRotate Pro."
 
 
 
384
 
385
- #: adrotate-output.php:851
386
- msgid "Get access to premium support and free updates for one year!"
387
- msgstr "Obtenha acesso premium suporte e atualizações gratuitas por um ano!"
388
 
389
- #: adrotate-output.php:851 dashboard/publisher/groups-edit.php:155
390
- msgid "Upgrade today"
391
- msgstr "A atualização de hoje"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
 
393
  #: adrotate-statistics.php:155
394
  msgid "January"
@@ -500,74 +559,66 @@ msgstr "IDENTIFICAÇÃO:"
500
  msgid "Fill in the ID of the type you want to display!"
501
  msgstr "Preencha o ID do tipo que você deseja exibir!"
502
 
503
- #: adrotate.php:105
504
- msgid "General Info"
505
- msgstr "Informações Gerais"
506
-
507
- #: adrotate.php:106
508
- msgid "Get AdRotate Pro"
509
- msgstr "Obter AdRotate Pro"
510
-
511
- #: adrotate.php:107 adrotate.php:196
512
  msgid "Manage Adverts"
513
  msgstr "Gerenciar Anúncios"
514
 
515
- #: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
516
  msgid "Manage Groups"
517
  msgstr "Gerir Grupos"
518
 
519
- #: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
520
  msgid "Manage Schedules"
521
  msgstr "Gerenciar Agendas"
522
 
523
- #: adrotate.php:110
524
  msgid "Manage Media"
525
  msgstr "Gerenciar Mídia"
526
 
527
- #: adrotate.php:111 adrotate.php:522 dashboard/adrotatepro.php:98
528
- #: dashboard/publisher/adverts-edit.php:174
529
  #: dashboard/publisher/statistics-main.php:23
530
  #: dashboard/settings/statistics.php:17
531
  msgid "Statistics"
532
  msgstr "Estatísticas"
533
 
534
- #: adrotate.php:112
 
 
 
 
535
  msgid "Support"
536
  msgstr "Suporte"
537
 
538
- #: adrotate.php:113
539
  msgid "Settings"
540
  msgstr "Definições"
541
 
542
- #: adrotate.php:134
543
- msgid "AdRotate Info"
544
- msgstr "AdRotate Informações"
545
-
546
- #: adrotate.php:152
547
  msgid "Get AdRotate Professional"
548
  msgstr "Obter AdRotate Profissional"
549
 
550
- #: adrotate.php:256 adrotate.php:327
551
  msgid "Manage"
552
  msgstr "Gerenciar"
553
 
554
- #: adrotate.php:257
555
  msgid "Advert Generator"
556
  msgstr "Gerador de anúncios"
557
 
558
- #: adrotate.php:258 dashboard/publisher/adverts-edit.php:104
559
  msgid "New Advert"
560
  msgstr "Novo Anúncio"
561
 
562
- #: adrotate.php:328
563
  msgid "Add New"
564
  msgstr "Adicionar Novo"
565
 
566
- #: adrotate.php:395
567
  msgid "Manage Media and Assets"
568
  msgstr "Gerenciar Mídia e Ativos"
569
 
570
- #: adrotate.php:399
571
  msgid ""
572
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
573
  "if you have HTML5 adverts containing multiple files."
@@ -575,44 +626,39 @@ msgstr ""
575
  "Upload de imagens para o AdRotate Pro banners pasta a partir daqui. Isso é "
576
  "útil se você tiver HTML5 anúncios que contém vários arquivos."
577
 
578
- #: adrotate.php:441
579
  msgid "Advert Statistics"
580
  msgstr "Anúncio Estatísticas"
581
 
582
- #: adrotate.php:484
583
  msgid "AdRotate Support"
584
  msgstr "AdRotate Suporte"
585
 
586
- #: adrotate.php:515
587
  msgid "AdRotate Settings"
588
  msgstr "AdRotate Definições"
589
 
590
- #: adrotate.php:520 dashboard/publisher/statistics-main.php:28
591
  msgid "General"
592
  msgstr "Geral"
593
 
594
- #: adrotate.php:521 dashboard/settings/notifications.php:18
595
  msgid "Notifications"
596
  msgstr "Notificações"
597
 
598
- #: adrotate.php:523 dashboard/publisher/groups-edit.php:205
599
- #: dashboard/settings/advertisers.php:38
600
  msgid "Geo Targeting"
601
  msgstr "Geo Targeting"
602
 
603
- #: adrotate.php:524
604
- msgid "Advertisers"
605
- msgstr "Os anunciantes"
606
-
607
- #: adrotate.php:525 dashboard/settings/roles.php:17
608
  msgid "Access Roles"
609
  msgstr "Funções De Acesso"
610
 
611
- #: adrotate.php:526 dashboard/settings/misc.php:16
612
  msgid "Miscellaneous"
613
  msgstr "Diversos"
614
 
615
- #: adrotate.php:527 dashboard/settings/maintenance.php:16
616
  msgid "Maintenance"
617
  msgstr "Manutenção"
618
 
@@ -750,85 +796,6 @@ msgstr ""
750
  "anúncios. Selecione até três endereços de e-mail para ser notificado. Nunca "
751
  "perca uma data de expiração novamente."
752
 
753
- #: dashboard/info.php:22
754
- msgid "At a Glance"
755
- msgstr "Em um Relance"
756
-
757
- #: dashboard/info.php:27
758
- msgid "Your setup"
759
- msgstr "O programa de configuração"
760
-
761
- #: dashboard/info.php:28
762
- msgid "Adverts that need you"
763
- msgstr "Anúncios que precisam de você"
764
-
765
- #: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:261
766
- #: dashboard/publisher/groups-main.php:34
767
- #: dashboard/publisher/schedules-main.php:34
768
- #: dashboard/publisher/statistics-main.php:35
769
- msgid "Adverts"
770
- msgstr "Publicidade"
771
-
772
- #: dashboard/info.php:35
773
- msgid "(Almost) Expired"
774
- msgstr "(Quase) Expirou"
775
-
776
- #: dashboard/info.php:38
777
- msgid "Groups"
778
- msgstr "Grupos"
779
-
780
- #: dashboard/info.php:39
781
- msgid "Have errors"
782
- msgstr "Tem erros"
783
-
784
- #: dashboard/info.php:76
785
- msgid ""
786
- "AdRotate Professional has a lot more functions for even better advertising "
787
- "management. Check out the feature comparison tab on any of the product pages "
788
- "to see what AdRotate Pro has to offer for you!"
789
- msgstr ""
790
- "AdRotate Profissional tem muito mais funções, mesmo para o melhor "
791
- "gerenciamento de publicidade. Confira o recurso de comparação de guia em "
792
- "qualquer uma das páginas de produto para ver o que AdRotate Pro tem a "
793
- "oferecer para você!"
794
-
795
- #: dashboard/info.php:78
796
- msgid "Single License"
797
- msgstr "Licença"
798
-
799
- #: dashboard/info.php:78
800
- msgid "Use on ONE WordPress installation."
801
- msgstr "O uso em UMA instalação do WordPress."
802
-
803
- #: dashboard/info.php:78 dashboard/info.php:79 dashboard/info.php:80
804
- #: dashboard/info.php:81
805
- msgid "Buy now"
806
- msgstr "Comprar agora"
807
-
808
- #: dashboard/info.php:79
809
- msgid "Duo License"
810
- msgstr "Duo Licença"
811
-
812
- #: dashboard/info.php:79
813
- msgid "Use on TWO WordPress installations."
814
- msgstr "Uso em DOIS instalações WordPress."
815
-
816
- #: dashboard/info.php:80
817
- msgid "Multi License"
818
- msgstr "Multi-Licença"
819
-
820
- #: dashboard/info.php:80
821
- msgid "Use on up to FIVE WordPress installations."
822
- msgstr "Utilizar em até CINCO instalações WordPress."
823
-
824
- #: dashboard/info.php:81
825
- msgid "Developer License"
826
- msgstr "Licença De Desenvolvedor"
827
-
828
- #: dashboard/info.php:81
829
- msgid "Use on up to a HUNDRED WordPress installations and/or networks."
830
- msgstr "Utilizar em até CEM WordPress instalações e/ou redes."
831
-
832
  #: dashboard/publisher/adverts-disabled.php:15
833
  msgid "Disabled Adverts"
834
  msgstr "Deficiência De Publicidade"
@@ -842,7 +809,7 @@ msgid "Bulk Actions"
842
  msgstr "Ações Em Massa"
843
 
844
  #: dashboard/publisher/adverts-disabled.php:21
845
- #: dashboard/publisher/adverts-edit.php:182
846
  msgid "Activate"
847
  msgstr "Activar"
848
 
@@ -868,7 +835,7 @@ msgid "Go"
868
  msgstr "Ir"
869
 
870
  #: dashboard/publisher/adverts-disabled.php:35
871
- #: dashboard/publisher/adverts-edit.php:259
872
  #: dashboard/publisher/adverts-error.php:39
873
  #: dashboard/publisher/adverts-main.php:39
874
  #: dashboard/publisher/groups-edit.php:350
@@ -885,8 +852,8 @@ msgid "Start / End"
885
  msgstr "Início / Fim"
886
 
887
  #: dashboard/publisher/adverts-disabled.php:37
888
- #: dashboard/publisher/adverts-edit.php:112
889
- #: dashboard/publisher/adverts-edit.php:260
890
  #: dashboard/publisher/adverts-error.php:40
891
  #: dashboard/publisher/adverts-main.php:41
892
  #: dashboard/publisher/groups-edit.php:65
@@ -988,83 +955,89 @@ msgstr ""
988
  "voltar a guardar o anúncio!"
989
 
990
  #: dashboard/publisher/adverts-edit.php:62
991
- msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
992
- msgstr ""
993
- "O rastreamento está habilitado, mas não válido link/tag foi encontrado nas "
994
- "adcode!"
995
-
996
- #: dashboard/publisher/adverts-edit.php:67
997
  msgid ""
998
- "AdRotate cannot find an error but the advert is marked erroneous, try re-"
999
- "saving the ad!"
1000
  msgstr ""
1001
- "O AdRotate não pode encontrar um erro, mas o anúncio está marcado "
1002
- "erroneamente, tente re-salvar o anúncio!"
1003
 
1004
- #: dashboard/publisher/adverts-edit.php:70
1005
  msgid "This advert is expired and currently not shown on your website!"
1006
  msgstr "Este anúncio expirou e atualmente não é mostrado no seu site!"
1007
 
1008
- #: dashboard/publisher/adverts-edit.php:73
1009
  msgid "The advert will expire in less than 2 days!"
1010
  msgstr "O anúncio expirará em menos de 2 dias!"
1011
 
1012
- #: dashboard/publisher/adverts-edit.php:76
1013
  msgid "This advert will expire in less than 7 days!"
1014
  msgstr "Este anúncio expirará em menos de 7 dias!"
1015
 
1016
- #: dashboard/publisher/adverts-edit.php:79
1017
  msgid "This advert has been disabled and does not rotate on your site!"
1018
  msgstr "Este anúncio foi desativado e não gira em seu site!"
1019
 
1020
- #: dashboard/publisher/adverts-edit.php:106
 
 
 
 
 
 
 
 
 
 
 
 
1021
  msgid "Edit Advert"
1022
  msgstr "Editar Anúncio"
1023
 
1024
- #: dashboard/publisher/adverts-edit.php:121
1025
  msgid "AdCode"
1026
  msgstr "AdCode"
1027
 
1028
- #: dashboard/publisher/adverts-edit.php:126
1029
  msgid "Basic Examples:"
1030
  msgstr "Exemplos Básicos:"
1031
 
1032
- #: dashboard/publisher/adverts-edit.php:127
1033
  msgid "Click any of the examples to use it."
1034
  msgstr "Clique em qualquer um dos exemplos para usá-lo."
1035
 
1036
- #: dashboard/publisher/adverts-edit.php:136
1037
  msgid "Useful tags"
1038
  msgstr "Útil tags"
1039
 
1040
- #: dashboard/publisher/adverts-edit.php:138
1041
  msgid "Insert the advert ID Number."
1042
  msgstr "Insira o Número de IDENTIFICAÇÃO do anúncio."
1043
 
1044
- #: dashboard/publisher/adverts-edit.php:138
1045
  msgid "Use this tag when selecting a image below."
1046
  msgstr "Use este código quando selecionar uma imagem abaixo."
1047
 
1048
- #: dashboard/publisher/adverts-edit.php:138
1049
  msgid "Insert the advert name."
1050
  msgstr "Insira o anúncio do nome."
1051
 
1052
- #: dashboard/publisher/adverts-edit.php:138
1053
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1054
  msgstr ""
1055
  "Inserir uma seqüência aleatória. Útil para o DFP/DoubleClick tipo de "
1056
  "publicidade."
1057
 
1058
- #: dashboard/publisher/adverts-edit.php:138
1059
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1060
  msgstr "Adicionar dentro da tag <a> para abrir o anúncio em uma nova janela."
1061
 
1062
- #: dashboard/publisher/adverts-edit.php:138
1063
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1064
  msgstr ""
1065
  "Adicionar dentro da tag <a> para dizer que os rastreadores ignorar este link."
1066
 
1067
- #: dashboard/publisher/adverts-edit.php:139
1068
  msgid ""
1069
  "Place the cursor where you want to add a tag and click to add it to your "
1070
  "AdCode."
@@ -1072,11 +1045,11 @@ msgstr ""
1072
  "Coloque o cursor onde você deseja adicionar uma tag e clique para adicioná-"
1073
  "lo ao seu AdCode."
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:144
1076
  msgid "Preview"
1077
  msgstr "Pré-visualização"
1078
 
1079
- #: dashboard/publisher/adverts-edit.php:147
1080
  msgid ""
1081
  "Note: While this preview is an accurate one, it might look different then it "
1082
  "does on the website."
@@ -1084,42 +1057,42 @@ msgstr ""
1084
  "Nota: Enquanto esta visualização é um precisos, ele pode ter aparência "
1085
  "diferente, então ele faz no site."
1086
 
1087
- #: dashboard/publisher/adverts-edit.php:148
1088
  msgid ""
1089
  "This is because of CSS differences. Your themes CSS file is not active here!"
1090
  msgstr ""
1091
  "Isso é por causa do CSS diferenças. Seus temas arquivo CSS não está ativo "
1092
  "aqui!"
1093
 
1094
- #: dashboard/publisher/adverts-edit.php:153
1095
  msgid "Banner asset"
1096
  msgstr "Banner"
1097
 
1098
- #: dashboard/publisher/adverts-edit.php:155
1099
  msgid "WordPress media:"
1100
  msgstr "WordPress mídia:"
1101
 
1102
- #: dashboard/publisher/adverts-edit.php:155
1103
  msgid "Select Banner"
1104
  msgstr "Seleccione Banner (Faixa)"
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:157
1107
  msgid "- OR -"
1108
  msgstr "- OU -"
1109
 
1110
- #: dashboard/publisher/adverts-edit.php:158
1111
  msgid "Banner folder:"
1112
  msgstr "Banner pasta:"
1113
 
1114
- #: dashboard/publisher/adverts-edit.php:159
1115
  msgid "No image selected"
1116
  msgstr "Nenhuma imagem selecionada"
1117
 
1118
- #: dashboard/publisher/adverts-edit.php:169
1119
  msgid "Use %asset% in the adcode instead of the file path."
1120
  msgstr "Use %do ativo% no adcode em vez do caminho do arquivo."
1121
 
1122
- #: dashboard/publisher/adverts-edit.php:169
1123
  msgid ""
1124
  "Use either the text field or the dropdown. If the textfield has content that "
1125
  "field has priority."
@@ -1127,29 +1100,27 @@ msgstr ""
1127
  "Use o campo de texto ou de lista pendente. Se o textfield tem conteúdo desse "
1128
  "campo tem prioridade."
1129
 
1130
- #: dashboard/publisher/adverts-edit.php:176
1131
- msgid "Enable click and impression tracking for this advert."
1132
- msgstr "Activar e clique em rastreamento de impressões para este anúncio."
1133
 
1134
- #: dashboard/publisher/adverts-edit.php:177
1135
  msgid ""
1136
- "Note: Clicktracking does not work for Javascript adverts such as those "
1137
- "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1138
- "always supported."
1139
  msgstr ""
1140
- "Nota: Clicktracking não funciona para Javascript anúncios, tais como aqueles "
1141
- "fornecidos pelo Google AdSense/DFP/DoubleClick. HTML5/Flash anúncios não são "
1142
- "sempre suportados."
1143
 
1144
- #: dashboard/publisher/adverts-edit.php:185
1145
  msgid "Enabled, this ad will be visible"
1146
  msgstr "Habilitado, esse anúncio será visível"
1147
 
1148
- #: dashboard/publisher/adverts-edit.php:186
1149
  msgid "Disabled, do not show this advert anywhere"
1150
  msgstr "Deficientes, não mostrar este classificado em qualquer lugar"
1151
 
1152
- #: dashboard/publisher/adverts-edit.php:192
1153
  msgid ""
1154
  "Target your audience with Geo Targeting and easily select which devices and "
1155
  "mobile operating systems the advert should show on with AdRotate Pro!"
@@ -1158,20 +1129,17 @@ msgstr ""
1158
  "dispositivos e sistemas operacionais móveis o anúncio deve mostrar com o "
1159
  "AdRotate Pro!"
1160
 
1161
- #: dashboard/publisher/adverts-edit.php:192
1162
- #: dashboard/publisher/adverts-edit.php:230
1163
  #: dashboard/publisher/groups-edit.php:227
1164
- #: dashboard/publisher/statistics-advert.php:109
1165
- #: dashboard/publisher/statistics-group.php:113
1166
- #: dashboard/publisher/statistics-main.php:83
1167
  msgid "Upgrade now"
1168
  msgstr "Atualizar agora"
1169
 
1170
- #: dashboard/publisher/adverts-edit.php:194
1171
  msgid "Schedule your advert"
1172
  msgstr "Agende o seu anúncio"
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:195
1175
  msgid ""
1176
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1177
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
@@ -1181,36 +1149,36 @@ msgstr ""
1181
  "sistema, tenha isso em mente: Se o início ou fim do horário é após o almoço, "
1182
  "adicione 12 horas. 2PM é de 14:00 horas. 6 horas da manhã de 6:00 horas."
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:199
1185
  msgid "Start date"
1186
  msgstr "Data de início"
1187
 
1188
- #: dashboard/publisher/adverts-edit.php:203
1189
  msgid "End date"
1190
  msgstr "Data final"
1191
 
1192
- #: dashboard/publisher/adverts-edit.php:209
1193
  msgid "Start time"
1194
  msgstr "Hora de início"
1195
 
1196
- #: dashboard/publisher/adverts-edit.php:214
1197
  msgid "End time"
1198
  msgstr "Fim do horário de"
1199
 
1200
- #: dashboard/publisher/adverts-edit.php:222
1201
  msgid "Maximum Clicks"
1202
  msgstr "O Máximo De Cliques"
1203
 
1204
- #: dashboard/publisher/adverts-edit.php:223
1205
- #: dashboard/publisher/adverts-edit.php:225
1206
  msgid "Leave empty or 0 to skip this."
1207
  msgstr "Deixar em branco ou 0 para ignorar isso."
1208
 
1209
- #: dashboard/publisher/adverts-edit.php:224
1210
  msgid "Maximum Impressions"
1211
  msgstr "O Máximo De Impressões"
1212
 
1213
- #: dashboard/publisher/adverts-edit.php:230
1214
  msgid ""
1215
  "Plan ahead and create multiple and more advanced schedules for each advert "
1216
  "with AdRotate Pro."
@@ -1218,19 +1186,19 @@ msgstr ""
1218
  "Planeje com antecedência e crie horários múltiplos e mais avançados para "
1219
  "cada anúncio com o AdRotate Pro."
1220
 
1221
- #: dashboard/publisher/adverts-edit.php:232
1222
  #: dashboard/publisher/groups-edit.php:157
1223
  #: dashboard/publisher/groups-edit.php:302
1224
  msgid "Usage"
1225
  msgstr "Utilização"
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:236
1228
  #: dashboard/publisher/groups-edit.php:161
1229
  #: dashboard/publisher/groups-edit.php:306
1230
  msgid "Widget"
1231
  msgstr "Widget"
1232
 
1233
- #: dashboard/publisher/adverts-edit.php:237
1234
  msgid ""
1235
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1236
  "and select the advert or the group the advert is in."
@@ -1238,25 +1206,25 @@ msgstr ""
1238
  "Arraste o AdRotate widget para a barra lateral onde você deseja colocar o "
1239
  "anúncio e selecione anúncio, ou o grupo a que o anúncio se encontra."
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:240
1242
  #: dashboard/publisher/groups-edit.php:165
1243
  #: dashboard/publisher/groups-edit.php:310
1244
  msgid "In a post or page"
1245
  msgstr "Em um post ou página"
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:242
1248
  #: dashboard/publisher/groups-edit.php:167
1249
  #: dashboard/publisher/groups-edit.php:312
1250
  msgid "Directly in a theme"
1251
  msgstr "Diretamente em um tema"
1252
 
1253
- #: dashboard/publisher/adverts-edit.php:249
1254
- #: dashboard/publisher/adverts-edit.php:292
1255
  msgid "Save Advert"
1256
  msgstr "Salvar Anúncio"
1257
 
1258
- #: dashboard/publisher/adverts-edit.php:250
1259
- #: dashboard/publisher/adverts-edit.php:293
1260
  #: dashboard/publisher/adverts-generator.php:148
1261
  #: dashboard/publisher/groups-edit.php:175
1262
  #: dashboard/publisher/groups-edit.php:320
@@ -1264,58 +1232,65 @@ msgstr "Salvar Anúncio"
1264
  msgid "Cancel"
1265
  msgstr "Cancelar"
1266
 
1267
- #: dashboard/publisher/adverts-edit.php:254
1268
  msgid "Select Groups"
1269
  msgstr "Selecione Os Grupos De"
1270
 
1271
- #: dashboard/publisher/adverts-edit.php:270
 
 
 
 
 
 
 
1272
  #: dashboard/publisher/groups-main.php:60
1273
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1274
  msgid "Default"
1275
  msgstr "Padrão"
1276
 
1277
- #: dashboard/publisher/adverts-edit.php:271
1278
  #: dashboard/publisher/groups-main.php:61
1279
  msgid "Dynamic"
1280
  msgstr "Dinâmica"
1281
 
1282
- #: dashboard/publisher/adverts-edit.php:271
1283
  #: dashboard/publisher/groups-main.php:61
1284
  msgid "second rotation"
1285
  msgstr "segunda rotação"
1286
 
1287
- #: dashboard/publisher/adverts-edit.php:272
1288
  #: dashboard/publisher/groups-main.php:62
1289
  msgid "Block"
1290
  msgstr "Bloco"
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:272
1293
  #: dashboard/publisher/groups-main.php:62
1294
  msgid "grid"
1295
  msgstr "grade"
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:273
1298
  #: dashboard/publisher/groups-edit.php:234
1299
  #: dashboard/publisher/groups-main.php:63
1300
  msgid "Post Injection"
1301
  msgstr "Após A Injeção"
1302
 
1303
- #: dashboard/publisher/adverts-edit.php:274
1304
  msgid "Geolocation"
1305
  msgstr "Localização geográfica"
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:281
1308
  #: dashboard/publisher/groups-edit.php:74
1309
  #: dashboard/publisher/groups-main.php:70
1310
  msgid "Mode"
1311
  msgstr "Modo de"
1312
 
1313
- #: dashboard/publisher/adverts-edit.php:298
1314
  #: dashboard/publisher/adverts-generator.php:131
1315
  msgid "Portability"
1316
  msgstr "Portabilidade"
1317
 
1318
- #: dashboard/publisher/adverts-edit.php:299
1319
  msgid ""
1320
  "This long code is your advert. It includes all settings from above except "
1321
  "the schedule and group selection. You can import this hash into another "
@@ -1332,7 +1307,7 @@ msgstr ""
1332
  "para o 'Anúncio de Hash' campo no Anúncio Gerador de outro AdRotate o "
1333
  "programa de configuração."
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:303
1336
  #: dashboard/publisher/adverts-generator.php:137
1337
  msgid "Advert hash"
1338
  msgstr "Anúncio de hash"
@@ -1735,6 +1710,10 @@ msgstr ""
1735
  msgid "Get access to all features in AdRotate Pro."
1736
  msgstr "Obter acesso a todos os recursos AdRotate Pro."
1737
 
 
 
 
 
1738
  #: dashboard/publisher/groups-edit.php:162
1739
  #: dashboard/publisher/groups-edit.php:307
1740
  msgid ""
@@ -2188,12 +2167,6 @@ msgstr ""
2188
  "Todas as estatísticas são indicativos. Eles não nessesarily refletir "
2189
  "resultados contadas por outras partes."
2190
 
2191
- #: dashboard/publisher/statistics-advert.php:109
2192
- #: dashboard/publisher/statistics-group.php:113
2193
- #: dashboard/publisher/statistics-main.php:83
2194
- msgid "Get more features with AdRotate Pro"
2195
- msgstr "Obter mais recursos com AdRotate Pro"
2196
-
2197
  #: dashboard/publisher/statistics-group.php:46
2198
  msgid "Statistics for group"
2199
  msgstr "Estatísticas do grupo"
@@ -2202,73 +2175,6 @@ msgstr "Estatísticas do grupo"
2202
  msgid "Adverts counting stats"
2203
  msgstr "Anúncios de contagem estatísticas"
2204
 
2205
- #: dashboard/settings/advertisers.php:16
2206
- msgid "Advertisers - Available in AdRotate Pro"
2207
- msgstr "Anunciantes - Disponível em AdRotate Pro"
2208
-
2209
- #: dashboard/settings/advertisers.php:17
2210
- msgid "Enable advertisers so they can review and manage their own ads."
2211
- msgstr ""
2212
- "Permitir aos anunciantes para que eles possam analisar e gerenciar seus "
2213
- "próprios anúncios."
2214
-
2215
- #: dashboard/settings/advertisers.php:20
2216
- msgid "Enable Advertisers"
2217
- msgstr "Permitir Que Os Anunciantes"
2218
-
2219
- #: dashboard/settings/advertisers.php:22
2220
- msgid "Allow adverts to be coupled to users (Advertisers)."
2221
- msgstr "Permitir anúncios para ser acoplado aos usuários (os Anunciantes)."
2222
-
2223
- #: dashboard/settings/advertisers.php:26
2224
- msgid "Edit/update adverts"
2225
- msgstr "Editar/atualizar publicidade"
2226
-
2227
- #: dashboard/settings/advertisers.php:28
2228
- msgid "Allow advertisers to add new or edit their adverts."
2229
- msgstr "Permitir que os anunciantes adicionar novo ou editar seus anúncios."
2230
-
2231
- #: dashboard/settings/advertisers.php:32
2232
- msgid "Mobile adverts"
2233
- msgstr "Móveis anúncios"
2234
-
2235
- #: dashboard/settings/advertisers.php:34
2236
- msgid "Allow advertisers to specify on which devices their ads will show."
2237
- msgstr ""
2238
- "Permitir que os anunciantes para especificar em quais dispositivos os seus "
2239
- "anúncios serão exibidos."
2240
-
2241
- #: dashboard/settings/advertisers.php:40
2242
- msgid ""
2243
- "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2244
- "be enabled, too."
2245
- msgstr ""
2246
- "Permitir que os anunciantes para especificar onde seus anúncios serão "
2247
- "exibidos. Geo Targeting tem de ser activada, também."
2248
-
2249
- #: dashboard/settings/advertisers.php:44
2250
- msgid "Advertiser role"
2251
- msgstr "Anunciante papel"
2252
-
2253
- #: dashboard/settings/advertisers.php:46
2254
- msgid "Create a seperate user role for your advertisers."
2255
- msgstr "Criar uma área separada de função de usuário para seus anunciantes."
2256
-
2257
- #: dashboard/settings/advertisers.php:47
2258
- msgid ""
2259
- "Don't forget to give these users access to their advertiser dashboard via "
2260
- "the Roles tab."
2261
- msgstr ""
2262
- "Não se esqueça de dar a estes usuários o acesso a seus anunciantes dashboard "
2263
- "através do guia de Funções."
2264
-
2265
- #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2266
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:47
2267
- #: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
2268
- #: dashboard/settings/statistics.php:79
2269
- msgid "Update Options"
2270
- msgstr "Opções De Atualização"
2271
-
2272
  #: dashboard/settings/general.php:17
2273
  msgid "General Settings"
2274
  msgstr "Definições Gerais"
@@ -2282,82 +2188,111 @@ msgid "Some options are only available in AdRotate Pro!"
2282
  msgstr "Algumas opções só estão disponíveis em AdRotate Pro!"
2283
 
2284
  #: dashboard/settings/general.php:21
2285
- msgid "Shortcode in widgets"
2286
- msgstr "Shortcode em widgets"
2287
 
2288
  #: dashboard/settings/general.php:22
2289
  msgid ""
2290
- "Enable this option to if your theme does not support shortcodes in the "
2291
- "WordPress text widget."
 
 
 
 
 
 
 
 
2292
  msgstr ""
2293
- "Habilite esta opção se o seu tema não suporta shortcodes do WordPress widget "
2294
- "de texto."
 
2295
 
2296
- #: dashboard/settings/general.php:25
2297
- msgid "Disable live preview"
2298
- msgstr "Desactivar a pré-visualização ao vivo"
2299
 
2300
- #: dashboard/settings/general.php:26
2301
  msgid ""
2302
- "Enable this option if you have faulty adverts that overflow their designated "
2303
- "area while creating/editing adverts."
2304
  msgstr ""
2305
- "Ative esta opção se você tiver com defeito anúncios que estouro de sua área "
2306
- "designada, enquanto criação/edição de anúncios."
2307
 
2308
- #: dashboard/settings/general.php:29
2309
- msgid "Disable dynamic mode"
2310
- msgstr "Desativar o modo dinâmico"
 
 
 
 
 
 
 
 
2311
 
2312
  #: dashboard/settings/general.php:30
 
 
 
 
2313
  msgid ""
2314
- "Enable this option to disable dynamic mode in groups for mobile devices if "
2315
- "you notice skipping or jumpy content."
2316
  msgstr ""
2317
- "Ative esta opção para desactivar o modo dinâmico em grupos para dispositivos "
2318
- "móveis, se você notar ignorando ou sobressalto de conteúdo."
 
 
 
 
2319
 
2320
- #: dashboard/settings/general.php:33
 
 
 
 
 
 
 
 
2321
  msgid "Load jQuery"
2322
  msgstr "Carregar o jQuery"
2323
 
2324
- #: dashboard/settings/general.php:34
2325
  msgid ""
2326
- "Enable this option if your theme does not load jQuery. jQuery is required "
2327
- "for dynamic groups, statistics and some other features."
2328
  msgstr ""
2329
- "Ative esta opção se o seu tema não carregar o jQuery. jQuery é necessária "
2330
- "para a dinâmica de grupos, estatísticas e alguns outros recursos."
2331
 
2332
- #: dashboard/settings/general.php:37
2333
  msgid "Load scripts in footer?"
2334
  msgstr "Carregar scripts no rodapé?"
2335
 
2336
- #: dashboard/settings/general.php:38
2337
- msgid ""
2338
- "Enable this option if you want to load all AdRotate Javascripts in the "
2339
- "footer of your site."
2340
- msgstr ""
2341
- "Ative esta opção se você deseja carregar todos os AdRotate Javascripts no "
2342
- "rodapé do seu site."
2343
 
2344
- #: dashboard/settings/general.php:41
2345
  msgid "Adblock disguise"
2346
  msgstr "Adblock disfarçar"
2347
 
2348
- #: dashboard/settings/general.php:43
2349
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2350
  msgstr ""
2351
  "Deixe vazio para desativar. Utilize apenas lowercaps letras. Por exemplo:"
2352
 
2353
- #: dashboard/settings/general.php:44
2354
  msgid ""
2355
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2356
  msgstr ""
2357
  "Tentar evitar o adblock plugins em navegadores mais modernos quando utilizar "
2358
  "códigos de acesso."
2359
 
2360
- #: dashboard/settings/general.php:44
2361
  msgid ""
2362
  "To also apply this feature to widgets, use a text widget with a shortcode "
2363
  "instead of the AdRotate widget."
@@ -2365,7 +2300,7 @@ msgstr ""
2365
  "Para aplicar esse recurso para widgets, use um widget de texto com um número "
2366
  "em vez de o AdRotate widget."
2367
 
2368
- #: dashboard/settings/general.php:44
2369
  msgid ""
2370
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2371
  "feature will have little effect!"
@@ -2373,23 +2308,23 @@ msgstr ""
2373
  "Evitar o uso de óbvio ou palavras-chave, nomes de arquivos em seus anúncios "
2374
  "ou este recurso terá pouco efeito!"
2375
 
2376
- #: dashboard/settings/general.php:49
2377
  msgid "Banner Folder"
2378
  msgstr "Faixa De Pasta"
2379
 
2380
- #: dashboard/settings/general.php:50
2381
  msgid "Set a folder where your banner images will be stored."
2382
  msgstr "Definir uma pasta onde seu banner imagens serão armazenadas."
2383
 
2384
- #: dashboard/settings/general.php:53
2385
  msgid "Folder name"
2386
  msgstr "Nome de pasta"
2387
 
2388
- #: dashboard/settings/general.php:55
2389
  msgid "(Default: banners)."
2390
  msgstr "(Padrão: banners)."
2391
 
2392
- #: dashboard/settings/general.php:56
2393
  msgid ""
2394
  "To try and trick ad blockers you could set the folder to something crazy "
2395
  "like:"
@@ -2397,7 +2332,7 @@ msgstr ""
2397
  "Para tentar e enganar bloqueadores de anúncios, você pode definir a pasta "
2398
  "para algo louco como:"
2399
 
2400
- #: dashboard/settings/general.php:57
2401
  msgid ""
2402
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2403
  "will show errors when the folder is missing."
@@ -2405,26 +2340,26 @@ msgstr ""
2405
  "Esta pasta não será automaticamente criado se ele não existir. AdRotate irá "
2406
  "mostrar os erros quando a pasta está faltando."
2407
 
2408
- #: dashboard/settings/general.php:62
2409
  msgid "Bot filter"
2410
  msgstr "Bot filtro"
2411
 
2412
- #: dashboard/settings/general.php:63
2413
  msgid "The bot filter is used for the AdRotate stats tracker."
2414
  msgstr "O bot filtro é utilizado para o AdRotate estatísticas tracker."
2415
 
2416
- #: dashboard/settings/general.php:66
2417
  msgid "User-Agent Filter"
2418
  msgstr "Usuário-Agente De Filtro De"
2419
 
2420
- #: dashboard/settings/general.php:69
2421
  msgid ""
2422
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2423
  msgstr ""
2424
  "Uma lista separada por vírgulas de palavras-chave. Filtrar bots/rastreadores/"
2425
  "user-agents."
2426
 
2427
- #: dashboard/settings/general.php:70
2428
  msgid ""
2429
  "Keep in mind that this might give false positives. The word 'fire' also "
2430
  "matches 'firefox', but not vice-versa. So be careful!"
@@ -2432,7 +2367,7 @@ msgstr ""
2432
  "Tenha em mente que isso pode dar falsos positivos. A palavra \"fogo\" também "
2433
  "corresponde 'firefox', mas não vice-versa. Portanto, tenha cuidado!"
2434
 
2435
- #: dashboard/settings/general.php:71
2436
  msgid ""
2437
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2438
  "characters are stripped out."
@@ -2440,7 +2375,7 @@ msgstr ""
2440
  "Somente palavras com caracteres alfanuméricos e [-_] são permitidas. Todos "
2441
  "os outros personagens são retirados."
2442
 
2443
- #: dashboard/settings/general.php:72
2444
  msgid ""
2445
  "Additionally to the list specified here, empty User-Agents are blocked as "
2446
  "well."
@@ -2448,14 +2383,20 @@ msgstr ""
2448
  "Além disso, a lista especificado aqui, o vazio, Agentes de Utilizador estão "
2449
  "bloqueados."
2450
 
2451
- #: dashboard/settings/general.php:72
2452
  msgid "Learn more about"
2453
  msgstr "Saiba mais sobre"
2454
 
2455
- #: dashboard/settings/general.php:72
2456
  msgid "user-agents"
2457
  msgstr "agentes de utilizador"
2458
 
 
 
 
 
 
 
2459
  #: dashboard/settings/geotargeting.php:17
2460
  msgid "Geo Targeting - Available in AdRotate Pro"
2461
  msgstr "Geo Targeting - Disponível em AdRotate Pro"
@@ -2568,8 +2509,8 @@ msgstr ""
2568
  "não responde e lento."
2569
 
2570
  #: dashboard/settings/maintenance.php:22
2571
- msgid "Check all adverts for configuration errors"
2572
- msgstr "Verifique todos os anúncios erros de configuração"
2573
 
2574
  #: dashboard/settings/maintenance.php:22
2575
  msgid "You are about to check all adverts for errors."
@@ -2592,8 +2533,8 @@ msgid "Clean-up Database and Files"
2592
  msgstr "Limpeza de Banco de dados e Arquivos"
2593
 
2594
  #: dashboard/settings/maintenance.php:30
2595
- msgid "Clean-up database and old files"
2596
- msgstr "Limpeza de banco de dados e os arquivos antigos"
2597
 
2598
  #: dashboard/settings/maintenance.php:30
2599
  msgid "You are about to do maintenance on your setup of AdRotate."
@@ -3127,54 +3068,62 @@ msgstr "AdRotate Estatísticas"
3127
 
3128
  #: dashboard/settings/statistics.php:48
3129
  msgid ""
3130
- "The settings below are for the internal tracker and have no effect when "
3131
- "using Google Analytics or Matomo."
3132
  msgstr ""
3133
- "As configurações abaixo são para o interno tracker e não têm nenhum efeito "
3134
- "quando utilizar o Google Analytics ou Matomo."
3135
 
3136
  #: dashboard/settings/statistics.php:51
 
 
 
 
 
 
 
 
3137
  msgid "Logged in impressions"
3138
  msgstr "Registrado em impressões"
3139
 
3140
- #: dashboard/settings/statistics.php:53
3141
  msgid "Track impressions from logged in users."
3142
  msgstr "Controlar as impressões de usuários registrados."
3143
 
3144
- #: dashboard/settings/statistics.php:57
3145
  msgid "Logged in clicks"
3146
  msgstr "Registrado em cliques"
3147
 
3148
- #: dashboard/settings/statistics.php:59
3149
  msgid "Track clicks from logged in users."
3150
  msgstr "Controlar os cliques de usuários registrados."
3151
 
3152
- #: dashboard/settings/statistics.php:63
3153
  msgid "Impression timer"
3154
  msgstr "Impressão timer"
3155
 
3156
- #: dashboard/settings/statistics.php:65 dashboard/settings/statistics.php:72
3157
  msgid "Seconds."
3158
  msgstr "Segundos."
3159
 
3160
- #: dashboard/settings/statistics.php:66
3161
  msgid "Default: 60."
3162
  msgstr "Padrão: 60."
3163
 
3164
- #: dashboard/settings/statistics.php:66
3165
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3166
  msgstr ""
3167
  "Este número não pode ser vazio, ser inferior a 10 ou exceder 3600 (1 hora)."
3168
 
3169
- #: dashboard/settings/statistics.php:70
3170
  msgid "Click timer"
3171
  msgstr "Clique timer"
3172
 
3173
- #: dashboard/settings/statistics.php:73
3174
  msgid "Default: 86400."
3175
  msgstr "Padrão: 86400."
3176
 
3177
- #: dashboard/settings/statistics.php:73
3178
  msgid ""
3179
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3180
  msgstr ""
@@ -3247,6 +3196,137 @@ msgstr "Obter Ajuda"
3247
  msgid "Premium Support is available in AdRotate Pro!"
3248
  msgstr "Premium Suporte está disponível em AdRotate Pro!"
3249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3250
  #~ msgid "Get started today"
3251
  #~ msgstr "Comece hoje"
3252
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-31 02:03-0500\n"
6
+ "PO-Revision-Date: 2021-08-31 02:03-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Português do Brasil\n"
9
  "Language: pt_BR\n"
18
  "X-Loco-Version: 2.5.0; wp-5.6.2\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:797
22
  msgid "Advert saved"
23
  msgstr "Anúncio salvo"
24
 
25
+ #: adrotate-functions.php:801
26
  msgid "Group saved"
27
  msgstr "Grupo guardado"
28
 
29
+ #: adrotate-functions.php:805
30
  msgid "Banner image saved"
31
  msgstr "A imagem da bandeira salvo"
32
 
33
+ #: adrotate-functions.php:809
34
  msgid "Ad(s) deleted"
35
  msgstr "Anúncio(s) apagados"
36
 
37
+ #: adrotate-functions.php:813
38
  msgid "Group deleted"
39
  msgstr "Grupo de excluídos"
40
 
41
+ #: adrotate-functions.php:817
42
  msgid "Asset(s) deleted"
43
  msgstr "Activo(s) apagados"
44
 
45
+ #: adrotate-functions.php:821
46
  msgid ""
47
  "Something went wrong deleting the file or folder. Make sure your permissions "
48
  "are in order."
50
  "Alguma coisa saiu errada exclusão de um arquivo ou pasta. Certifique-se de "
51
  "que as permissões estão em ordem."
52
 
53
+ #: adrotate-functions.php:825
54
  msgid "Advert(s) statistics reset"
55
  msgstr "Anúncio(s) estatísticas de reposição"
56
 
57
+ #: adrotate-functions.php:829
58
  msgid "Advert(s) renewed"
59
  msgstr "Anúncios(s) renovados"
60
 
61
+ #: adrotate-functions.php:833
62
  msgid "Advert(s) deactivated"
63
  msgstr "Anúncios desativados"
64
 
65
+ #: adrotate-functions.php:837
66
  msgid "Advert(s) activated"
67
  msgstr "Anúncio(s) ativado"
68
 
69
+ #: adrotate-functions.php:841
70
  msgid "Group including the Adverts in it deleted"
71
  msgstr "Grupo de inclusão de Anúncios do excluído"
72
 
73
+ #: adrotate-functions.php:845
74
  msgid "Export created"
75
  msgstr "Exportação criado"
76
 
77
+ #: adrotate-functions.php:849
78
  msgid ""
79
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
80
  "below. Do not forget to check all settings and schedule the advert."
82
  "Anúncio HTML gerado e colocado na AdCode campo. Configurar o seu anúncio "
83
  "abaixo. Não se esqueça de verificar todas as configurações e agendá-lo."
84
 
85
+ #: adrotate-functions.php:854
86
  msgid "Settings saved"
87
  msgstr "As configurações salvas"
88
 
89
+ #: adrotate-functions.php:858
90
  msgid "Database optimized"
91
  msgstr "Banco de dados otimizado"
92
 
93
+ #: adrotate-functions.php:862
94
  msgid "Database repaired"
95
  msgstr "Banco de dados reparado"
96
 
97
+ #: adrotate-functions.php:866
98
  msgid "Adverts evaluated and statuses have been corrected where required"
99
  msgstr "Anúncios avaliados e status foram corrigidos quando necessário"
100
 
101
+ #: adrotate-functions.php:870
102
  msgid "Cleanup complete"
103
  msgstr "Limpeza completa"
104
 
105
+ #: adrotate-functions.php:875
106
  msgid "Action prohibited"
107
  msgstr "Ação proibida"
108
 
109
+ #: adrotate-functions.php:879
110
  msgid ""
111
  "The advert was saved but has an issue which might prevent it from working "
112
  "properly. Review the colored advert."
114
  "O anúncio foi salvo, mas tem um problema que pode impedi-lo de funcionar "
115
  "corretamente. Reveja o anúncio colorido."
116
 
117
+ #: adrotate-functions.php:883
118
  msgid "No data found in selected time period"
119
  msgstr "Dados não encontrados no período de tempo selecionado"
120
 
121
+ #: adrotate-functions.php:887
122
  msgid "Database can only be optimized or cleaned once every hour"
123
  msgstr "Banco de dados só pode ser otimizados ou limpo uma vez a cada hora"
124
 
125
+ #: adrotate-functions.php:891
126
  msgid "Form can not be (partially) empty!"
127
  msgstr "O formulário não pode ser (parcialmente) vazio!"
128
 
129
+ #: adrotate-functions.php:895
130
  msgid "No adverts found."
131
  msgstr "Não foram encontrados anúncios."
132
 
133
+ #: adrotate-functions.php:899
134
  msgid ""
135
  "The advert hash is not usable or is missing required data. Please copy the "
136
  "hash correctly and try again."
138
  "O anúncio de hash não é utilizável ou é falta de dados necessários. Por "
139
  "favor, copie o hash corretamente e tente novamente."
140
 
141
+ #: adrotate-functions.php:903
142
  msgid ""
143
  "The advert hash can not be used on the same site as it originated from or is "
144
  "not a valid hash for importing."
146
  "O anúncio de hash não pode ser usado no mesmo site que originou-se ou não é "
147
  "um hash válido para a importação."
148
 
149
+ #: adrotate-functions.php:907
150
  msgid "Unexpected error"
151
  msgstr "Erro inesperado"
152
 
318
  msgid "Installation instructions"
319
  msgstr "Instruções de instalação"
320
 
321
+ #: adrotate-output.php:735
322
  msgid "your attention:"
323
  msgstr "atenção:"
324
 
325
+ #: adrotate-output.php:766
326
  msgid ""
327
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
328
  "menu. If you need help getting started take a look at the"
330
  "Obrigado por escolher AdRotate. Tudo relacionado com o AdRotate é neste "
331
  "menu. Se você precisar de ajuda para começar, dê uma olhada no"
332
 
333
+ #: adrotate-output.php:766
334
  msgid "manuals"
335
  msgstr "manuais"
336
 
337
+ #: adrotate-output.php:766
338
  msgid "and"
339
  msgstr "e"
340
 
341
+ #: adrotate-output.php:766
342
  msgid "forums"
343
  msgstr "fóruns"
344
 
345
+ #: adrotate-output.php:844
346
  msgid "Need help fast? Or do you have a question?"
347
  msgstr "Precisa de ajuda rápido? Ou você tem uma pergunta?"
348
 
349
+ #: adrotate-output.php:845
350
  msgid "Help AdRotate Grow"
351
  msgstr "Ajuda AdRotate Crescer"
352
 
353
+ #: adrotate-output.php:846
354
+ msgid "Get more features with AdRotate Pro"
355
+ msgstr "Obter mais recursos com AdRotate Pro"
356
 
357
+ #: adrotate-output.php:852
358
  msgid ""
359
+ "If you need help, or have questions about AdRotate, the best and fastest way "
360
+ "to get your answer is via the AdRotate support forum. Usually I answer "
361
+ "questions the same day, often with a solution in the first answer."
362
  msgstr ""
363
+ "Se você precisar de ajuda ou tiver perguntas sobre o AdRotate, a melhor e "
364
+ "mais rápida maneira de obter sua resposta é através do fórum de suporte do "
365
+ "AdRotate. Normalmente respondo perguntas no mesmo dia, muitas vezes com uma "
366
+ "solução na primeira resposta."
367
 
368
+ #: adrotate-output.php:853
369
+ msgid "AdRotate Manuals"
370
+ msgstr "Manuais de AdRotate"
371
 
372
+ #: adrotate-output.php:853
373
+ msgid "Support Forums"
374
+ msgstr "Fóruns de suporte"
375
 
376
+ #: adrotate-output.php:854
377
+ msgid ""
378
+ "When posting on the forum, please include a brief description of the "
379
+ "problem, include any errors or symptoms. Often it helps if you try to "
380
+ "explain what you are trying to do. Providing some extra information always "
381
+ "helps with gettng a better answer or advise."
382
+ msgstr ""
383
+ "Ao postar no fórum, inclua uma breve descrição do problema, inclua quaisquer "
384
+ "erros ou sintomas. Muitas vezes ajuda se você tentar explicar o que você "
385
+ "está tentando fazer. Fornecer algumas informações extras sempre ajuda a "
386
+ "obter uma melhor resposta ou aconselhamento."
387
 
388
+ #: adrotate-output.php:856
389
  msgid ""
390
+ "Consider writing a review, sharing AdRotate in Social media or making a "
391
+ "donation if you like the plugin or if you find it useful. Writing a review "
392
+ "and sharing AdRotate on social media costs you nothing but doing so is super "
393
+ "helpful as promotion which helps to ensure future development."
394
  msgstr ""
395
+ "Considere escrever uma revisão, compartilhar o AdRotate nas mídias sociais "
396
+ "ou fazer uma doação se você gosta do plugin ou se você achar útil. Escrever "
397
+ "uma revisão e compartilhar o AdRotate nas mídias sociais não custa nada além "
398
+ "de fazê-lo é super útil como promoção que ajuda a garantir o desenvolvimento "
399
+ "futuro."
400
 
401
+ #: adrotate-output.php:857
402
+ msgid "Post Tweet"
403
+ msgstr "Postar Tweet"
404
 
405
+ #: adrotate-output.php:857
406
+ msgid "Share on Facebook"
407
+ msgstr "Compartilhar no Facebook"
408
+
409
+ #: adrotate-output.php:857
410
+ msgid "Write review on WordPress.org"
411
+ msgstr "Escreva revisão sobre WordPress.org"
412
+
413
+ #: adrotate-output.php:858
414
+ msgid "Thank you very much for your help and support!"
415
+ msgstr "Muito obrigado por sua ajuda e apoio!"
416
+
417
+ #: adrotate-output.php:863
418
+ msgid ""
419
+ "AdRotate Professional has a lot more functions for even better advertising "
420
+ "management. Check out the feature comparison tab on any of the product pages "
421
+ "to see what AdRotate Pro has to offer for you!"
422
+ msgstr ""
423
+ "AdRotate Profissional tem muito mais funções, mesmo para o melhor "
424
+ "gerenciamento de publicidade. Confira o recurso de comparação de guia em "
425
+ "qualquer uma das páginas de produto para ver o que AdRotate Pro tem a "
426
+ "oferecer para você!"
427
+
428
+ #: adrotate-output.php:863
429
+ msgid "Compare Licenses"
430
+ msgstr "Comparar licenças"
431
+
432
+ #: adrotate-output.php:864
433
+ msgid "Single License"
434
+ msgstr "Licença"
435
+
436
+ #: adrotate-output.php:864
437
+ msgid "Use on ONE WordPress installation."
438
+ msgstr "O uso em UMA instalação do WordPress."
439
+
440
+ #: adrotate-output.php:864 adrotate-output.php:865
441
+ msgid "Buy now"
442
+ msgstr "Comprar agora"
443
+
444
+ #: adrotate-output.php:865
445
+ msgid "Multi License"
446
+ msgstr "Multi-Licença"
447
+
448
+ #: adrotate-output.php:865
449
+ msgid "Use on up to FIVE WordPress installations."
450
+ msgstr "Utilizar em até CINCO instalações WordPress."
451
 
452
  #: adrotate-statistics.php:155
453
  msgid "January"
559
  msgid "Fill in the ID of the type you want to display!"
560
  msgstr "Preencha o ID do tipo que você deseja exibir!"
561
 
562
+ #: adrotate.php:105 adrotate.php:175
 
 
 
 
 
 
 
 
563
  msgid "Manage Adverts"
564
  msgstr "Gerenciar Anúncios"
565
 
566
+ #: adrotate.php:106 adrotate.php:301 dashboard/publisher/groups-main.php:12
567
  msgid "Manage Groups"
568
  msgstr "Gerir Grupos"
569
 
570
+ #: adrotate.php:107 adrotate.php:339 dashboard/publisher/schedules-main.php:12
571
  msgid "Manage Schedules"
572
  msgstr "Gerenciar Agendas"
573
 
574
+ #: adrotate.php:108
575
  msgid "Manage Media"
576
  msgstr "Gerenciar Mídia"
577
 
578
+ #: adrotate.php:109 adrotate.php:503 dashboard/adrotatepro.php:98
579
+ #: dashboard/publisher/adverts-edit.php:178
580
  #: dashboard/publisher/statistics-main.php:23
581
  #: dashboard/settings/statistics.php:17
582
  msgid "Statistics"
583
  msgstr "Estatísticas"
584
 
585
+ #: adrotate.php:110 adrotate.php:238 adrotate.php:309
586
+ msgid "Get AdRotate Pro"
587
+ msgstr "Obter AdRotate Pro"
588
+
589
+ #: adrotate.php:111
590
  msgid "Support"
591
  msgstr "Suporte"
592
 
593
+ #: adrotate.php:112
594
  msgid "Settings"
595
  msgstr "Definições"
596
 
597
+ #: adrotate.php:131
 
 
 
 
598
  msgid "Get AdRotate Professional"
599
  msgstr "Obter AdRotate Profissional"
600
 
601
+ #: adrotate.php:235 adrotate.php:307
602
  msgid "Manage"
603
  msgstr "Gerenciar"
604
 
605
+ #: adrotate.php:236
606
  msgid "Advert Generator"
607
  msgstr "Gerador de anúncios"
608
 
609
+ #: adrotate.php:237 dashboard/publisher/adverts-edit.php:108
610
  msgid "New Advert"
611
  msgstr "Novo Anúncio"
612
 
613
+ #: adrotate.php:308
614
  msgid "Add New"
615
  msgstr "Adicionar Novo"
616
 
617
+ #: adrotate.php:376
618
  msgid "Manage Media and Assets"
619
  msgstr "Gerenciar Mídia e Ativos"
620
 
621
+ #: adrotate.php:380
622
  msgid ""
623
  "Upload images to the AdRotate Pro banners folder from here. This is useful "
624
  "if you have HTML5 adverts containing multiple files."
626
  "Upload de imagens para o AdRotate Pro banners pasta a partir daqui. Isso é "
627
  "útil se você tiver HTML5 anúncios que contém vários arquivos."
628
 
629
+ #: adrotate.php:422
630
  msgid "Advert Statistics"
631
  msgstr "Anúncio Estatísticas"
632
 
633
+ #: adrotate.php:465
634
  msgid "AdRotate Support"
635
  msgstr "AdRotate Suporte"
636
 
637
+ #: adrotate.php:496
638
  msgid "AdRotate Settings"
639
  msgstr "AdRotate Definições"
640
 
641
+ #: adrotate.php:501 dashboard/publisher/statistics-main.php:28
642
  msgid "General"
643
  msgstr "Geral"
644
 
645
+ #: adrotate.php:502 dashboard/settings/notifications.php:18
646
  msgid "Notifications"
647
  msgstr "Notificações"
648
 
649
+ #: adrotate.php:504 dashboard/publisher/groups-edit.php:205
 
650
  msgid "Geo Targeting"
651
  msgstr "Geo Targeting"
652
 
653
+ #: adrotate.php:505 dashboard/settings/roles.php:17
 
 
 
 
654
  msgid "Access Roles"
655
  msgstr "Funções De Acesso"
656
 
657
+ #: adrotate.php:506 dashboard/settings/misc.php:16
658
  msgid "Miscellaneous"
659
  msgstr "Diversos"
660
 
661
+ #: adrotate.php:507 dashboard/settings/maintenance.php:16
662
  msgid "Maintenance"
663
  msgstr "Manutenção"
664
 
796
  "anúncios. Selecione até três endereços de e-mail para ser notificado. Nunca "
797
  "perca uma data de expiração novamente."
798
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
  #: dashboard/publisher/adverts-disabled.php:15
800
  msgid "Disabled Adverts"
801
  msgstr "Deficiência De Publicidade"
809
  msgstr "Ações Em Massa"
810
 
811
  #: dashboard/publisher/adverts-disabled.php:21
812
+ #: dashboard/publisher/adverts-edit.php:186
813
  msgid "Activate"
814
  msgstr "Activar"
815
 
835
  msgstr "Ir"
836
 
837
  #: dashboard/publisher/adverts-disabled.php:35
838
+ #: dashboard/publisher/adverts-edit.php:263
839
  #: dashboard/publisher/adverts-error.php:39
840
  #: dashboard/publisher/adverts-main.php:39
841
  #: dashboard/publisher/groups-edit.php:350
852
  msgstr "Início / Fim"
853
 
854
  #: dashboard/publisher/adverts-disabled.php:37
855
+ #: dashboard/publisher/adverts-edit.php:116
856
+ #: dashboard/publisher/adverts-edit.php:264
857
  #: dashboard/publisher/adverts-error.php:40
858
  #: dashboard/publisher/adverts-main.php:41
859
  #: dashboard/publisher/groups-edit.php:65
955
  "voltar a guardar o anúncio!"
956
 
957
  #: dashboard/publisher/adverts-edit.php:62
 
 
 
 
 
 
958
  msgid ""
959
+ "This kind of advert can not have statistics enabled in AdRotate. Impression "
960
+ "counting is available in AdRotate Pro."
961
  msgstr ""
962
+ "Este tipo de anúncio não pode ter estatísticas habilitadas no AdRotate. A "
963
+ "contagem de impressões está disponível no AdRotate Pro."
964
 
965
+ #: dashboard/publisher/adverts-edit.php:67
966
  msgid "This advert is expired and currently not shown on your website!"
967
  msgstr "Este anúncio expirou e atualmente não é mostrado no seu site!"
968
 
969
+ #: dashboard/publisher/adverts-edit.php:70
970
  msgid "The advert will expire in less than 2 days!"
971
  msgstr "O anúncio expirará em menos de 2 dias!"
972
 
973
+ #: dashboard/publisher/adverts-edit.php:73
974
  msgid "This advert will expire in less than 7 days!"
975
  msgstr "Este anúncio expirará em menos de 7 dias!"
976
 
977
+ #: dashboard/publisher/adverts-edit.php:76
978
  msgid "This advert has been disabled and does not rotate on your site!"
979
  msgstr "Este anúncio foi desativado e não gira em seu site!"
980
 
981
+ #: dashboard/publisher/adverts-edit.php:79
982
+ msgid ""
983
+ "AdRotate cannot find an error but the advert is marked erroneous, try re-"
984
+ "saving the ad!"
985
+ msgstr ""
986
+ "O AdRotate não pode encontrar um erro, mas o anúncio está marcado "
987
+ "erroneamente, tente re-salvar o anúncio!"
988
+
989
+ #: dashboard/publisher/adverts-edit.php:83
990
+ msgid "This advert still uses the %image% tag. Please change it to %asset%!"
991
+ msgstr "Este anúncio ainda usa o %image% tag. Por favor, mude para %asset%!"
992
+
993
+ #: dashboard/publisher/adverts-edit.php:110
994
  msgid "Edit Advert"
995
  msgstr "Editar Anúncio"
996
 
997
+ #: dashboard/publisher/adverts-edit.php:125
998
  msgid "AdCode"
999
  msgstr "AdCode"
1000
 
1001
+ #: dashboard/publisher/adverts-edit.php:130
1002
  msgid "Basic Examples:"
1003
  msgstr "Exemplos Básicos:"
1004
 
1005
+ #: dashboard/publisher/adverts-edit.php:131
1006
  msgid "Click any of the examples to use it."
1007
  msgstr "Clique em qualquer um dos exemplos para usá-lo."
1008
 
1009
+ #: dashboard/publisher/adverts-edit.php:140
1010
  msgid "Useful tags"
1011
  msgstr "Útil tags"
1012
 
1013
+ #: dashboard/publisher/adverts-edit.php:142
1014
  msgid "Insert the advert ID Number."
1015
  msgstr "Insira o Número de IDENTIFICAÇÃO do anúncio."
1016
 
1017
+ #: dashboard/publisher/adverts-edit.php:142
1018
  msgid "Use this tag when selecting a image below."
1019
  msgstr "Use este código quando selecionar uma imagem abaixo."
1020
 
1021
+ #: dashboard/publisher/adverts-edit.php:142
1022
  msgid "Insert the advert name."
1023
  msgstr "Insira o anúncio do nome."
1024
 
1025
+ #: dashboard/publisher/adverts-edit.php:142
1026
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
1027
  msgstr ""
1028
  "Inserir uma seqüência aleatória. Útil para o DFP/DoubleClick tipo de "
1029
  "publicidade."
1030
 
1031
+ #: dashboard/publisher/adverts-edit.php:142
1032
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
1033
  msgstr "Adicionar dentro da tag <a> para abrir o anúncio em uma nova janela."
1034
 
1035
+ #: dashboard/publisher/adverts-edit.php:142
1036
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
1037
  msgstr ""
1038
  "Adicionar dentro da tag <a> para dizer que os rastreadores ignorar este link."
1039
 
1040
+ #: dashboard/publisher/adverts-edit.php:143
1041
  msgid ""
1042
  "Place the cursor where you want to add a tag and click to add it to your "
1043
  "AdCode."
1045
  "Coloque o cursor onde você deseja adicionar uma tag e clique para adicioná-"
1046
  "lo ao seu AdCode."
1047
 
1048
+ #: dashboard/publisher/adverts-edit.php:148
1049
  msgid "Preview"
1050
  msgstr "Pré-visualização"
1051
 
1052
+ #: dashboard/publisher/adverts-edit.php:151
1053
  msgid ""
1054
  "Note: While this preview is an accurate one, it might look different then it "
1055
  "does on the website."
1057
  "Nota: Enquanto esta visualização é um precisos, ele pode ter aparência "
1058
  "diferente, então ele faz no site."
1059
 
1060
+ #: dashboard/publisher/adverts-edit.php:152
1061
  msgid ""
1062
  "This is because of CSS differences. Your themes CSS file is not active here!"
1063
  msgstr ""
1064
  "Isso é por causa do CSS diferenças. Seus temas arquivo CSS não está ativo "
1065
  "aqui!"
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:157
1068
  msgid "Banner asset"
1069
  msgstr "Banner"
1070
 
1071
+ #: dashboard/publisher/adverts-edit.php:159
1072
  msgid "WordPress media:"
1073
  msgstr "WordPress mídia:"
1074
 
1075
+ #: dashboard/publisher/adverts-edit.php:159
1076
  msgid "Select Banner"
1077
  msgstr "Seleccione Banner (Faixa)"
1078
 
1079
+ #: dashboard/publisher/adverts-edit.php:161
1080
  msgid "- OR -"
1081
  msgstr "- OU -"
1082
 
1083
+ #: dashboard/publisher/adverts-edit.php:162
1084
  msgid "Banner folder:"
1085
  msgstr "Banner pasta:"
1086
 
1087
+ #: dashboard/publisher/adverts-edit.php:163
1088
  msgid "No image selected"
1089
  msgstr "Nenhuma imagem selecionada"
1090
 
1091
+ #: dashboard/publisher/adverts-edit.php:173
1092
  msgid "Use %asset% in the adcode instead of the file path."
1093
  msgstr "Use %do ativo% no adcode em vez do caminho do arquivo."
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:173
1096
  msgid ""
1097
  "Use either the text field or the dropdown. If the textfield has content that "
1098
  "field has priority."
1100
  "Use o campo de texto ou de lista pendente. Se o textfield tem conteúdo desse "
1101
  "campo tem prioridade."
1102
 
1103
+ #: dashboard/publisher/adverts-edit.php:180
1104
+ msgid "Count clicks and impressions."
1105
+ msgstr "Conte cliques e impressões."
1106
 
1107
+ #: dashboard/publisher/adverts-edit.php:181
1108
  msgid ""
1109
+ "Click counting does not work for Javascript/html5 adverts such as those "
1110
+ "provided by Google AdSense/DFP/DoubleClick."
 
1111
  msgstr ""
1112
+ "A contagem de cliques não funciona para anúncios Javascript/html5, como os "
1113
+ "fornecidos pelo Google AdSense/DFP/DoubleClick."
 
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:189
1116
  msgid "Enabled, this ad will be visible"
1117
  msgstr "Habilitado, esse anúncio será visível"
1118
 
1119
+ #: dashboard/publisher/adverts-edit.php:190
1120
  msgid "Disabled, do not show this advert anywhere"
1121
  msgstr "Deficientes, não mostrar este classificado em qualquer lugar"
1122
 
1123
+ #: dashboard/publisher/adverts-edit.php:196
1124
  msgid ""
1125
  "Target your audience with Geo Targeting and easily select which devices and "
1126
  "mobile operating systems the advert should show on with AdRotate Pro!"
1129
  "dispositivos e sistemas operacionais móveis o anúncio deve mostrar com o "
1130
  "AdRotate Pro!"
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:196
1133
+ #: dashboard/publisher/adverts-edit.php:234
1134
  #: dashboard/publisher/groups-edit.php:227
 
 
 
1135
  msgid "Upgrade now"
1136
  msgstr "Atualizar agora"
1137
 
1138
+ #: dashboard/publisher/adverts-edit.php:198
1139
  msgid "Schedule your advert"
1140
  msgstr "Agende o seu anúncio"
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:199
1143
  msgid ""
1144
  "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in "
1145
  "mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 "
1149
  "sistema, tenha isso em mente: Se o início ou fim do horário é após o almoço, "
1150
  "adicione 12 horas. 2PM é de 14:00 horas. 6 horas da manhã de 6:00 horas."
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:203
1153
  msgid "Start date"
1154
  msgstr "Data de início"
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:207
1157
  msgid "End date"
1158
  msgstr "Data final"
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:213
1161
  msgid "Start time"
1162
  msgstr "Hora de início"
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:218
1165
  msgid "End time"
1166
  msgstr "Fim do horário de"
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:226
1169
  msgid "Maximum Clicks"
1170
  msgstr "O Máximo De Cliques"
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:227
1173
+ #: dashboard/publisher/adverts-edit.php:229
1174
  msgid "Leave empty or 0 to skip this."
1175
  msgstr "Deixar em branco ou 0 para ignorar isso."
1176
 
1177
+ #: dashboard/publisher/adverts-edit.php:228
1178
  msgid "Maximum Impressions"
1179
  msgstr "O Máximo De Impressões"
1180
 
1181
+ #: dashboard/publisher/adverts-edit.php:234
1182
  msgid ""
1183
  "Plan ahead and create multiple and more advanced schedules for each advert "
1184
  "with AdRotate Pro."
1186
  "Planeje com antecedência e crie horários múltiplos e mais avançados para "
1187
  "cada anúncio com o AdRotate Pro."
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:236
1190
  #: dashboard/publisher/groups-edit.php:157
1191
  #: dashboard/publisher/groups-edit.php:302
1192
  msgid "Usage"
1193
  msgstr "Utilização"
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:240
1196
  #: dashboard/publisher/groups-edit.php:161
1197
  #: dashboard/publisher/groups-edit.php:306
1198
  msgid "Widget"
1199
  msgstr "Widget"
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:241
1202
  msgid ""
1203
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1204
  "and select the advert or the group the advert is in."
1206
  "Arraste o AdRotate widget para a barra lateral onde você deseja colocar o "
1207
  "anúncio e selecione anúncio, ou o grupo a que o anúncio se encontra."
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:244
1210
  #: dashboard/publisher/groups-edit.php:165
1211
  #: dashboard/publisher/groups-edit.php:310
1212
  msgid "In a post or page"
1213
  msgstr "Em um post ou página"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:246
1216
  #: dashboard/publisher/groups-edit.php:167
1217
  #: dashboard/publisher/groups-edit.php:312
1218
  msgid "Directly in a theme"
1219
  msgstr "Diretamente em um tema"
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:253
1222
+ #: dashboard/publisher/adverts-edit.php:296
1223
  msgid "Save Advert"
1224
  msgstr "Salvar Anúncio"
1225
 
1226
+ #: dashboard/publisher/adverts-edit.php:254
1227
+ #: dashboard/publisher/adverts-edit.php:297
1228
  #: dashboard/publisher/adverts-generator.php:148
1229
  #: dashboard/publisher/groups-edit.php:175
1230
  #: dashboard/publisher/groups-edit.php:320
1232
  msgid "Cancel"
1233
  msgstr "Cancelar"
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:258
1236
  msgid "Select Groups"
1237
  msgstr "Selecione Os Grupos De"
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:265
1240
+ #: dashboard/publisher/groups-main.php:34
1241
+ #: dashboard/publisher/schedules-main.php:34
1242
+ #: dashboard/publisher/statistics-main.php:35
1243
+ msgid "Adverts"
1244
+ msgstr "Publicidade"
1245
+
1246
+ #: dashboard/publisher/adverts-edit.php:274
1247
  #: dashboard/publisher/groups-main.php:60
1248
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1249
  msgid "Default"
1250
  msgstr "Padrão"
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:275
1253
  #: dashboard/publisher/groups-main.php:61
1254
  msgid "Dynamic"
1255
  msgstr "Dinâmica"
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:275
1258
  #: dashboard/publisher/groups-main.php:61
1259
  msgid "second rotation"
1260
  msgstr "segunda rotação"
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:276
1263
  #: dashboard/publisher/groups-main.php:62
1264
  msgid "Block"
1265
  msgstr "Bloco"
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:276
1268
  #: dashboard/publisher/groups-main.php:62
1269
  msgid "grid"
1270
  msgstr "grade"
1271
 
1272
+ #: dashboard/publisher/adverts-edit.php:277
1273
  #: dashboard/publisher/groups-edit.php:234
1274
  #: dashboard/publisher/groups-main.php:63
1275
  msgid "Post Injection"
1276
  msgstr "Após A Injeção"
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:278
1279
  msgid "Geolocation"
1280
  msgstr "Localização geográfica"
1281
 
1282
+ #: dashboard/publisher/adverts-edit.php:285
1283
  #: dashboard/publisher/groups-edit.php:74
1284
  #: dashboard/publisher/groups-main.php:70
1285
  msgid "Mode"
1286
  msgstr "Modo de"
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:302
1289
  #: dashboard/publisher/adverts-generator.php:131
1290
  msgid "Portability"
1291
  msgstr "Portabilidade"
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:303
1294
  msgid ""
1295
  "This long code is your advert. It includes all settings from above except "
1296
  "the schedule and group selection. You can import this hash into another "
1307
  "para o 'Anúncio de Hash' campo no Anúncio Gerador de outro AdRotate o "
1308
  "programa de configuração."
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:307
1311
  #: dashboard/publisher/adverts-generator.php:137
1312
  msgid "Advert hash"
1313
  msgstr "Anúncio de hash"
1710
  msgid "Get access to all features in AdRotate Pro."
1711
  msgstr "Obter acesso a todos os recursos AdRotate Pro."
1712
 
1713
+ #: dashboard/publisher/groups-edit.php:155
1714
+ msgid "Upgrade today"
1715
+ msgstr "A atualização de hoje"
1716
+
1717
  #: dashboard/publisher/groups-edit.php:162
1718
  #: dashboard/publisher/groups-edit.php:307
1719
  msgid ""
2167
  "Todas as estatísticas são indicativos. Eles não nessesarily refletir "
2168
  "resultados contadas por outras partes."
2169
 
 
 
 
 
 
 
2170
  #: dashboard/publisher/statistics-group.php:46
2171
  msgid "Statistics for group"
2172
  msgstr "Estatísticas do grupo"
2175
  msgid "Adverts counting stats"
2176
  msgstr "Anúncios de contagem estatísticas"
2177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2178
  #: dashboard/settings/general.php:17
2179
  msgid "General Settings"
2180
  msgstr "Definições Gerais"
2188
  msgstr "Algumas opções só estão disponíveis em AdRotate Pro!"
2189
 
2190
  #: dashboard/settings/general.php:21
2191
+ msgid "Duplicate adverts"
2192
+ msgstr "Anúncios duplicados"
2193
 
2194
  #: dashboard/settings/general.php:22
2195
  msgid ""
2196
+ "Try and prevent adverts in groups that are in Default or Block mode from "
2197
+ "showing multiple times on the same page load."
2198
+ msgstr ""
2199
+ "Tente impedir que anúncios em grupos que estão no modo Padrão ou Bloco sejam "
2200
+ "exibidos várias vezes na mesma carga de página."
2201
+
2202
+ #: dashboard/settings/general.php:23
2203
+ msgid ""
2204
+ "If you still notice double adverts from groups placed on a page, start with "
2205
+ "carefully looking at your setup to make sure you did not cause this yourself."
2206
  msgstr ""
2207
+ "Se você ainda notar anúncios duplos de grupos colocados em uma página, "
2208
+ "comece com cuidado olhando para a sua configuração para ter certeza de que "
2209
+ "você mesmo não causou isso."
2210
 
2211
+ #: dashboard/settings/general.php:23
2212
+ msgid "On some servers $_SESSION is disabled."
2213
+ msgstr "Em alguns servidores$ _SESSION é desativado."
2214
 
2215
+ #: dashboard/settings/general.php:23
2216
  msgid ""
2217
+ "A plugin called \"WP Session Manager\" by Eric Mann may fix this. However, "
2218
+ "most people will not need this extra plugin!"
2219
  msgstr ""
2220
+ "Um plugin chamado \"WP Session Manager\" de Eric Mann pode corrigir isso. No "
2221
+ "entanto, a maioria das pessoas não vai precisar deste plugin extra!"
2222
 
2223
+ #: dashboard/settings/general.php:26
2224
+ msgid "Shortcode in widgets"
2225
+ msgstr "Shortcode em widgets"
2226
+
2227
+ #: dashboard/settings/general.php:27
2228
+ msgid ""
2229
+ "Try and activate shortcodes in text widgets if your theme does not add "
2230
+ "support for it by itself. (This does not always work!)"
2231
+ msgstr ""
2232
+ "Tente ativar códigos curtos em widgets de texto se o seu tema não adicionar "
2233
+ "suporte para ele por si só. (Isso nem sempre funciona!)"
2234
 
2235
  #: dashboard/settings/general.php:30
2236
+ msgid "Advert live preview"
2237
+ msgstr "Pré-visualização ao vivo do anúncio"
2238
+
2239
+ #: dashboard/settings/general.php:31
2240
  msgid ""
2241
+ "Disable live previews for adverts if you have faulty adverts that overflow "
2242
+ "their designated area while creating/editing adverts."
2243
  msgstr ""
2244
+ "Desabilitar visualizações ao vivo para anúncios se você tiver anúncios "
2245
+ "defeituosos que transbordam sua área designada enquanto cria/edita anúncios."
2246
+
2247
+ #: dashboard/settings/general.php:34
2248
+ msgid "Dynamic mode on mobile"
2249
+ msgstr "Modo dinâmico no celular"
2250
 
2251
+ #: dashboard/settings/general.php:35
2252
+ msgid ""
2253
+ "Disable dynamic mode in groups for mobile devices if you notice skipping or "
2254
+ "jumpy content."
2255
+ msgstr ""
2256
+ "Desabilite o modo dinâmico em grupos para dispositivos móveis se você notar "
2257
+ "o conteúdo de pular ou saltar."
2258
+
2259
+ #: dashboard/settings/general.php:38
2260
  msgid "Load jQuery"
2261
  msgstr "Carregar o jQuery"
2262
 
2263
+ #: dashboard/settings/general.php:39
2264
  msgid ""
2265
+ "Load jQuery if your theme does not load it already. jQuery is required for "
2266
+ "dynamic groups, statistics and some other features."
2267
  msgstr ""
2268
+ "Carregue jQuery se o seu tema ainda não o carregar. jQuery é necessário para "
2269
+ "grupos dinâmicos, estatísticas e algumas outras características."
2270
 
2271
+ #: dashboard/settings/general.php:42
2272
  msgid "Load scripts in footer?"
2273
  msgstr "Carregar scripts no rodapé?"
2274
 
2275
+ #: dashboard/settings/general.php:43
2276
+ msgid "Load all AdRotate Javascripts in the footer of your site."
2277
+ msgstr "Carregue todos os Javascripts AdRotate no rodapé do seu site."
 
 
 
 
2278
 
2279
+ #: dashboard/settings/general.php:46
2280
  msgid "Adblock disguise"
2281
  msgstr "Adblock disfarçar"
2282
 
2283
+ #: dashboard/settings/general.php:48
2284
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2285
  msgstr ""
2286
  "Deixe vazio para desativar. Utilize apenas lowercaps letras. Por exemplo:"
2287
 
2288
+ #: dashboard/settings/general.php:49
2289
  msgid ""
2290
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2291
  msgstr ""
2292
  "Tentar evitar o adblock plugins em navegadores mais modernos quando utilizar "
2293
  "códigos de acesso."
2294
 
2295
+ #: dashboard/settings/general.php:49
2296
  msgid ""
2297
  "To also apply this feature to widgets, use a text widget with a shortcode "
2298
  "instead of the AdRotate widget."
2300
  "Para aplicar esse recurso para widgets, use um widget de texto com um número "
2301
  "em vez de o AdRotate widget."
2302
 
2303
+ #: dashboard/settings/general.php:49
2304
  msgid ""
2305
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2306
  "feature will have little effect!"
2308
  "Evitar o uso de óbvio ou palavras-chave, nomes de arquivos em seus anúncios "
2309
  "ou este recurso terá pouco efeito!"
2310
 
2311
+ #: dashboard/settings/general.php:54
2312
  msgid "Banner Folder"
2313
  msgstr "Faixa De Pasta"
2314
 
2315
+ #: dashboard/settings/general.php:55
2316
  msgid "Set a folder where your banner images will be stored."
2317
  msgstr "Definir uma pasta onde seu banner imagens serão armazenadas."
2318
 
2319
+ #: dashboard/settings/general.php:58
2320
  msgid "Folder name"
2321
  msgstr "Nome de pasta"
2322
 
2323
+ #: dashboard/settings/general.php:60
2324
  msgid "(Default: banners)."
2325
  msgstr "(Padrão: banners)."
2326
 
2327
+ #: dashboard/settings/general.php:61
2328
  msgid ""
2329
  "To try and trick ad blockers you could set the folder to something crazy "
2330
  "like:"
2332
  "Para tentar e enganar bloqueadores de anúncios, você pode definir a pasta "
2333
  "para algo louco como:"
2334
 
2335
+ #: dashboard/settings/general.php:62
2336
  msgid ""
2337
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2338
  "will show errors when the folder is missing."
2340
  "Esta pasta não será automaticamente criado se ele não existir. AdRotate irá "
2341
  "mostrar os erros quando a pasta está faltando."
2342
 
2343
+ #: dashboard/settings/general.php:67
2344
  msgid "Bot filter"
2345
  msgstr "Bot filtro"
2346
 
2347
+ #: dashboard/settings/general.php:68
2348
  msgid "The bot filter is used for the AdRotate stats tracker."
2349
  msgstr "O bot filtro é utilizado para o AdRotate estatísticas tracker."
2350
 
2351
+ #: dashboard/settings/general.php:71
2352
  msgid "User-Agent Filter"
2353
  msgstr "Usuário-Agente De Filtro De"
2354
 
2355
+ #: dashboard/settings/general.php:74
2356
  msgid ""
2357
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2358
  msgstr ""
2359
  "Uma lista separada por vírgulas de palavras-chave. Filtrar bots/rastreadores/"
2360
  "user-agents."
2361
 
2362
+ #: dashboard/settings/general.php:75
2363
  msgid ""
2364
  "Keep in mind that this might give false positives. The word 'fire' also "
2365
  "matches 'firefox', but not vice-versa. So be careful!"
2367
  "Tenha em mente que isso pode dar falsos positivos. A palavra \"fogo\" também "
2368
  "corresponde 'firefox', mas não vice-versa. Portanto, tenha cuidado!"
2369
 
2370
+ #: dashboard/settings/general.php:76
2371
  msgid ""
2372
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2373
  "characters are stripped out."
2375
  "Somente palavras com caracteres alfanuméricos e [-_] são permitidas. Todos "
2376
  "os outros personagens são retirados."
2377
 
2378
+ #: dashboard/settings/general.php:77
2379
  msgid ""
2380
  "Additionally to the list specified here, empty User-Agents are blocked as "
2381
  "well."
2383
  "Além disso, a lista especificado aqui, o vazio, Agentes de Utilizador estão "
2384
  "bloqueados."
2385
 
2386
+ #: dashboard/settings/general.php:77
2387
  msgid "Learn more about"
2388
  msgstr "Saiba mais sobre"
2389
 
2390
+ #: dashboard/settings/general.php:77
2391
  msgid "user-agents"
2392
  msgstr "agentes de utilizador"
2393
 
2394
+ #: dashboard/settings/general.php:83 dashboard/settings/maintenance.php:107
2395
+ #: dashboard/settings/misc.php:47 dashboard/settings/notifications.php:72
2396
+ #: dashboard/settings/roles.php:55 dashboard/settings/statistics.php:85
2397
+ msgid "Update Options"
2398
+ msgstr "Opções De Atualização"
2399
+
2400
  #: dashboard/settings/geotargeting.php:17
2401
  msgid "Geo Targeting - Available in AdRotate Pro"
2402
  msgstr "Geo Targeting - Disponível em AdRotate Pro"
2509
  "não responde e lento."
2510
 
2511
  #: dashboard/settings/maintenance.php:22
2512
+ msgid "Check for errors"
2513
+ msgstr "Verifique se erros"
2514
 
2515
  #: dashboard/settings/maintenance.php:22
2516
  msgid "You are about to check all adverts for errors."
2533
  msgstr "Limpeza de Banco de dados e Arquivos"
2534
 
2535
  #: dashboard/settings/maintenance.php:30
2536
+ msgid "Run Clean-up"
2537
+ msgstr "Executar limpeza"
2538
 
2539
  #: dashboard/settings/maintenance.php:30
2540
  msgid "You are about to do maintenance on your setup of AdRotate."
3068
 
3069
  #: dashboard/settings/statistics.php:48
3070
  msgid ""
3071
+ "The settings below are for the local tracker and have no effect when using "
3072
+ "Google Analytics or Matomo."
3073
  msgstr ""
3074
+ "As configurações abaixo são para o rastreador local e não têm efeito ao usar "
3075
+ "o Google Analytics ou Matomo."
3076
 
3077
  #: dashboard/settings/statistics.php:51
3078
+ msgid "Admin stats"
3079
+ msgstr "Estatísticas administrativas"
3080
+
3081
+ #: dashboard/settings/statistics.php:53
3082
+ msgid "Track statistics from admin users."
3083
+ msgstr "Acompanhe as estatísticas dos usuários administrativos."
3084
+
3085
+ #: dashboard/settings/statistics.php:57
3086
  msgid "Logged in impressions"
3087
  msgstr "Registrado em impressões"
3088
 
3089
+ #: dashboard/settings/statistics.php:59
3090
  msgid "Track impressions from logged in users."
3091
  msgstr "Controlar as impressões de usuários registrados."
3092
 
3093
+ #: dashboard/settings/statistics.php:63
3094
  msgid "Logged in clicks"
3095
  msgstr "Registrado em cliques"
3096
 
3097
+ #: dashboard/settings/statistics.php:65
3098
  msgid "Track clicks from logged in users."
3099
  msgstr "Controlar os cliques de usuários registrados."
3100
 
3101
+ #: dashboard/settings/statistics.php:69
3102
  msgid "Impression timer"
3103
  msgstr "Impressão timer"
3104
 
3105
+ #: dashboard/settings/statistics.php:71 dashboard/settings/statistics.php:78
3106
  msgid "Seconds."
3107
  msgstr "Segundos."
3108
 
3109
+ #: dashboard/settings/statistics.php:72
3110
  msgid "Default: 60."
3111
  msgstr "Padrão: 60."
3112
 
3113
+ #: dashboard/settings/statistics.php:72
3114
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3115
  msgstr ""
3116
  "Este número não pode ser vazio, ser inferior a 10 ou exceder 3600 (1 hora)."
3117
 
3118
+ #: dashboard/settings/statistics.php:76
3119
  msgid "Click timer"
3120
  msgstr "Clique timer"
3121
 
3122
+ #: dashboard/settings/statistics.php:79
3123
  msgid "Default: 86400."
3124
  msgstr "Padrão: 86400."
3125
 
3126
+ #: dashboard/settings/statistics.php:79
3127
  msgid ""
3128
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3129
  msgstr ""
3196
  msgid "Premium Support is available in AdRotate Pro!"
3197
  msgstr "Premium Suporte está disponível em AdRotate Pro!"
3198
 
3199
+ #~ msgid "Check all adverts for configuration errors"
3200
+ #~ msgstr "Verifique todos os anúncios erros de configuração"
3201
+
3202
+ #~ msgid "Clean-up database and old files"
3203
+ #~ msgstr "Limpeza de banco de dados e os arquivos antigos"
3204
+
3205
+ #~ msgid "More features with AdRotate Pro"
3206
+ #~ msgstr "Mais recursos com o AdRotate Pro"
3207
+
3208
+ #~ msgid ""
3209
+ #~ "Many users only think to review AdRotate when something goes wrong while "
3210
+ #~ "thousands of people happily use AdRotate."
3211
+ #~ msgstr ""
3212
+ #~ "Muitos usuários só acho que a revisão AdRotate quando algo der errado, "
3213
+ #~ "enquanto milhares de pessoas felizes usar AdRotate."
3214
+
3215
+ #~ msgid "If you find AdRotate useful please leave your"
3216
+ #~ msgstr "Se você encontrar AdRotate útil, por favor deixe o seu"
3217
+
3218
+ #~ msgid "rating"
3219
+ #~ msgstr "classificação"
3220
+
3221
+ #~ msgid "on WordPress.org to help AdRotate grow in a positive way"
3222
+ #~ msgstr "no WordPress.org para ajudar AdRotate crescer de uma forma positiva"
3223
+
3224
+ #~ msgid ""
3225
+ #~ "Get more advanced features such as Geo Targeting, scheduling and much "
3226
+ #~ "more with AdRotate Pro."
3227
+ #~ msgstr ""
3228
+ #~ "Obter mais recursos avançados, como o Geo Targeting, programação e muito "
3229
+ #~ "mais com AdRotate Pro."
3230
+
3231
+ #~ msgid "Get access to premium support and free updates for one year!"
3232
+ #~ msgstr "Obtenha acesso premium suporte e atualizações gratuitas por um ano!"
3233
+
3234
+ #~ msgid "General Info"
3235
+ #~ msgstr "Informações Gerais"
3236
+
3237
+ #~ msgid "Advertisers"
3238
+ #~ msgstr "Os anunciantes"
3239
+
3240
+ #~ msgid "At a Glance"
3241
+ #~ msgstr "Em um Relance"
3242
+
3243
+ #~ msgid "Your setup"
3244
+ #~ msgstr "O programa de configuração"
3245
+
3246
+ #~ msgid "Adverts that need you"
3247
+ #~ msgstr "Anúncios que precisam de você"
3248
+
3249
+ #~ msgid "(Almost) Expired"
3250
+ #~ msgstr "(Quase) Expirou"
3251
+
3252
+ #~ msgid "Groups"
3253
+ #~ msgstr "Grupos"
3254
+
3255
+ #~ msgid "Have errors"
3256
+ #~ msgstr "Tem erros"
3257
+
3258
+ #~ msgid "Use on TWO WordPress installations."
3259
+ #~ msgstr "Uso em DOIS instalações WordPress."
3260
+
3261
+ #~ msgid "Developer License"
3262
+ #~ msgstr "Licença De Desenvolvedor"
3263
+
3264
+ #~ msgid "Use on up to a HUNDRED WordPress installations and/or networks."
3265
+ #~ msgstr "Utilizar em até CEM WordPress instalações e/ou redes."
3266
+
3267
+ #~ msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
3268
+ #~ msgstr ""
3269
+ #~ "O rastreamento está habilitado, mas não válido link/tag foi encontrado "
3270
+ #~ "nas adcode!"
3271
+
3272
+ #~ msgid "Enable click and impression tracking for this advert."
3273
+ #~ msgstr "Activar e clique em rastreamento de impressões para este anúncio."
3274
+
3275
+ #~ msgid "Advertisers - Available in AdRotate Pro"
3276
+ #~ msgstr "Anunciantes - Disponível em AdRotate Pro"
3277
+
3278
+ #~ msgid "Enable advertisers so they can review and manage their own ads."
3279
+ #~ msgstr ""
3280
+ #~ "Permitir aos anunciantes para que eles possam analisar e gerenciar seus "
3281
+ #~ "próprios anúncios."
3282
+
3283
+ #~ msgid "Enable Advertisers"
3284
+ #~ msgstr "Permitir Que Os Anunciantes"
3285
+
3286
+ #~ msgid "Allow adverts to be coupled to users (Advertisers)."
3287
+ #~ msgstr "Permitir anúncios para ser acoplado aos usuários (os Anunciantes)."
3288
+
3289
+ #~ msgid "Allow advertisers to add new or edit their adverts."
3290
+ #~ msgstr "Permitir que os anunciantes adicionar novo ou editar seus anúncios."
3291
+
3292
+ #~ msgid "Mobile adverts"
3293
+ #~ msgstr "Móveis anúncios"
3294
+
3295
+ #~ msgid "Allow advertisers to specify on which devices their ads will show."
3296
+ #~ msgstr ""
3297
+ #~ "Permitir que os anunciantes para especificar em quais dispositivos os "
3298
+ #~ "seus anúncios serão exibidos."
3299
+
3300
+ #~ msgid ""
3301
+ #~ "Allow advertisers to specify where their ads will show. Geo Targeting has "
3302
+ #~ "to be enabled, too."
3303
+ #~ msgstr ""
3304
+ #~ "Permitir que os anunciantes para especificar onde seus anúncios serão "
3305
+ #~ "exibidos. Geo Targeting tem de ser activada, também."
3306
+
3307
+ #~ msgid "Advertiser role"
3308
+ #~ msgstr "Anunciante papel"
3309
+
3310
+ #~ msgid "Create a seperate user role for your advertisers."
3311
+ #~ msgstr "Criar uma área separada de função de usuário para seus anunciantes."
3312
+
3313
+ #~ msgid ""
3314
+ #~ "Don't forget to give these users access to their advertiser dashboard via "
3315
+ #~ "the Roles tab."
3316
+ #~ msgstr ""
3317
+ #~ "Não se esqueça de dar a estes usuários o acesso a seus anunciantes "
3318
+ #~ "dashboard através do guia de Funções."
3319
+
3320
+ #~ msgid ""
3321
+ #~ "Enable this option to if your theme does not support shortcodes in the "
3322
+ #~ "WordPress text widget."
3323
+ #~ msgstr ""
3324
+ #~ "Habilite esta opção se o seu tema não suporta shortcodes do WordPress "
3325
+ #~ "widget de texto."
3326
+
3327
+ #~ msgid "Disable dynamic mode"
3328
+ #~ msgstr "Desativar o modo dinâmico"
3329
+
3330
  #~ msgid "Get started today"
3331
  #~ msgstr "Comece hoje"
3332
 
language/adrotate.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: AdRotate\n"
5
- "POT-Creation-Date: 2021-05-19 12:13-0500\n"
6
  "PO-Revision-Date: 2019-09-20 12:05-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
@@ -17,115 +17,115 @@ msgstr ""
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:784
21
  msgid "Advert saved"
22
  msgstr ""
23
 
24
- #: adrotate-functions.php:788
25
  msgid "Group saved"
26
  msgstr ""
27
 
28
- #: adrotate-functions.php:792
29
  msgid "Banner image saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:796
33
  msgid "Ad(s) deleted"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:800
37
  msgid "Group deleted"
38
  msgstr ""
39
 
40
- #: adrotate-functions.php:804
41
  msgid "Asset(s) deleted"
42
  msgstr ""
43
 
44
- #: adrotate-functions.php:808
45
  msgid "Something went wrong deleting the file or folder. Make sure your permissions are in order."
46
  msgstr ""
47
 
48
- #: adrotate-functions.php:812
49
  msgid "Advert(s) statistics reset"
50
  msgstr ""
51
 
52
- #: adrotate-functions.php:816
53
  msgid "Advert(s) renewed"
54
  msgstr ""
55
 
56
- #: adrotate-functions.php:820
57
  msgid "Advert(s) deactivated"
58
  msgstr ""
59
 
60
- #: adrotate-functions.php:824
61
  msgid "Advert(s) activated"
62
  msgstr ""
63
 
64
- #: adrotate-functions.php:828
65
  msgid "Group including the Adverts in it deleted"
66
  msgstr ""
67
 
68
- #: adrotate-functions.php:832
69
  msgid "Export created"
70
  msgstr ""
71
 
72
- #: adrotate-functions.php:836
73
  msgid "Advert HTML generated and placed in the AdCode field. Configure your advert below. Do not forget to check all settings and schedule the advert."
74
  msgstr ""
75
 
76
- #: adrotate-functions.php:841
77
  msgid "Settings saved"
78
  msgstr ""
79
 
80
- #: adrotate-functions.php:845
81
  msgid "Database optimized"
82
  msgstr ""
83
 
84
- #: adrotate-functions.php:849
85
  msgid "Database repaired"
86
  msgstr ""
87
 
88
- #: adrotate-functions.php:853
89
  msgid "Adverts evaluated and statuses have been corrected where required"
90
  msgstr ""
91
 
92
- #: adrotate-functions.php:857
93
  msgid "Cleanup complete"
94
  msgstr ""
95
 
96
- #: adrotate-functions.php:862
97
  msgid "Action prohibited"
98
  msgstr ""
99
 
100
- #: adrotate-functions.php:866
101
  msgid "The advert was saved but has an issue which might prevent it from working properly. Review the colored advert."
102
  msgstr ""
103
 
104
- #: adrotate-functions.php:870
105
  msgid "No data found in selected time period"
106
  msgstr ""
107
 
108
- #: adrotate-functions.php:874
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr ""
111
 
112
- #: adrotate-functions.php:878
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
- #: adrotate-functions.php:882
117
  msgid "No adverts found."
118
  msgstr ""
119
 
120
- #: adrotate-functions.php:886
121
  msgid "The advert hash is not usable or is missing required data. Please copy the hash correctly and try again."
122
  msgstr ""
123
 
124
- #: adrotate-functions.php:890
125
  msgid "The advert hash can not be used on the same site as it originated from or is not a valid hash for importing."
126
  msgstr ""
127
 
128
- #: adrotate-functions.php:894
129
  msgid "Unexpected error"
130
  msgstr ""
131
 
@@ -250,64 +250,100 @@ msgstr ""
250
  msgid "Installation instructions"
251
  msgstr ""
252
 
253
- #: adrotate-output.php:730
254
  msgid "your attention:"
255
  msgstr ""
256
 
257
- #: adrotate-output.php:761
258
  msgid "Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the"
259
  msgstr ""
260
 
261
- #: adrotate-output.php:761
262
  msgid "manuals"
263
  msgstr ""
264
 
265
- #: adrotate-output.php:761
266
  msgid "and"
267
  msgstr ""
268
 
269
- #: adrotate-output.php:761
270
  msgid "forums"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:841
274
  msgid "Need help fast? Or do you have a question?"
275
  msgstr ""
276
 
277
- #: adrotate-output.php:842
278
  msgid "Help AdRotate Grow"
279
  msgstr ""
280
 
281
- #: adrotate-output.php:843
282
- msgid "More features with AdRotate Pro"
283
  msgstr ""
284
 
285
- #: adrotate-output.php:850
286
- msgid "Many users only think to review AdRotate when something goes wrong while thousands of people happily use AdRotate."
287
  msgstr ""
288
 
289
- #: adrotate-output.php:850
290
- msgid "If you find AdRotate useful please leave your"
291
  msgstr ""
292
 
293
- #: adrotate-output.php:850
294
- msgid "rating"
295
  msgstr ""
296
 
297
- #: adrotate-output.php:850
298
- msgid "on WordPress.org to help AdRotate grow in a positive way"
299
  msgstr ""
300
 
301
- #: adrotate-output.php:851
302
- msgid "Get more advanced features such as Geo Targeting, scheduling and much more with AdRotate Pro."
303
  msgstr ""
304
 
305
- #: adrotate-output.php:851
306
- msgid "Get access to premium support and free updates for one year!"
307
  msgstr ""
308
 
309
- #: adrotate-output.php:851 dashboard/publisher/groups-edit.php:155
310
- msgid "Upgrade today"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  msgstr ""
312
 
313
  #: adrotate-statistics.php:155
@@ -420,115 +456,102 @@ msgstr ""
420
  msgid "Fill in the ID of the type you want to display!"
421
  msgstr ""
422
 
423
- #: adrotate.php:105
424
- msgid "General Info"
425
- msgstr ""
426
-
427
- #: adrotate.php:106
428
- msgid "Get AdRotate Pro"
429
- msgstr ""
430
-
431
- #: adrotate.php:107 adrotate.php:196
432
  msgid "Manage Adverts"
433
  msgstr ""
434
 
435
- #: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
436
  msgid "Manage Groups"
437
  msgstr ""
438
 
439
- #: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
440
  msgid "Manage Schedules"
441
  msgstr ""
442
 
443
- #: adrotate.php:110
444
  msgid "Manage Media"
445
  msgstr ""
446
 
447
- #: adrotate.php:111 adrotate.php:522 dashboard/adrotatepro.php:98
448
- #: dashboard/publisher/adverts-edit.php:174
449
  #: dashboard/publisher/statistics-main.php:23
450
  #: dashboard/settings/statistics.php:17
451
  msgid "Statistics"
452
  msgstr ""
453
 
454
- #: adrotate.php:112
455
- msgid "Support"
456
  msgstr ""
457
 
458
- #: adrotate.php:113
459
- msgid "Settings"
460
  msgstr ""
461
 
462
- #: adrotate.php:134
463
- msgid "AdRotate Info"
464
  msgstr ""
465
 
466
- #: adrotate.php:152
467
  msgid "Get AdRotate Professional"
468
  msgstr ""
469
 
470
- #: adrotate.php:256 adrotate.php:327
471
  msgid "Manage"
472
  msgstr ""
473
 
474
- #: adrotate.php:257
475
  msgid "Advert Generator"
476
  msgstr ""
477
 
478
- #: adrotate.php:258 dashboard/publisher/adverts-edit.php:104
479
  msgid "New Advert"
480
  msgstr ""
481
 
482
- #: adrotate.php:328
483
  msgid "Add New"
484
  msgstr ""
485
 
486
- #: adrotate.php:395
487
  msgid "Manage Media and Assets"
488
  msgstr ""
489
 
490
- #: adrotate.php:399
491
  msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
492
  msgstr ""
493
 
494
- #: adrotate.php:441
495
  msgid "Advert Statistics"
496
  msgstr ""
497
 
498
- #: adrotate.php:484
499
  msgid "AdRotate Support"
500
  msgstr ""
501
 
502
- #: adrotate.php:515
503
  msgid "AdRotate Settings"
504
  msgstr ""
505
 
506
- #: adrotate.php:520 dashboard/publisher/statistics-main.php:28
507
  msgid "General"
508
  msgstr ""
509
 
510
- #: adrotate.php:521 dashboard/settings/notifications.php:18
511
  msgid "Notifications"
512
  msgstr ""
513
 
514
- #: adrotate.php:523 dashboard/publisher/groups-edit.php:205
515
- #: dashboard/settings/advertisers.php:38
516
  msgid "Geo Targeting"
517
  msgstr ""
518
 
519
- #: adrotate.php:524
520
- msgid "Advertisers"
521
- msgstr ""
522
-
523
- #: adrotate.php:525 dashboard/settings/roles.php:17
524
  msgid "Access Roles"
525
  msgstr ""
526
 
527
- #: adrotate.php:526 dashboard/settings/misc.php:16
528
  msgid "Miscellaneous"
529
  msgstr ""
530
 
531
- #: adrotate.php:527 dashboard/settings/maintenance.php:16
532
  msgid "Maintenance"
533
  msgstr ""
534
 
@@ -592,78 +615,6 @@ msgstr ""
592
  msgid "Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Get notified when adverts expire, have errors or when advertisers create new adverts. Select up to three email addresses to be notified. Never miss an expiration date again."
593
  msgstr ""
594
 
595
- #: dashboard/info.php:22
596
- msgid "At a Glance"
597
- msgstr ""
598
-
599
- #: dashboard/info.php:27
600
- msgid "Your setup"
601
- msgstr ""
602
-
603
- #: dashboard/info.php:28
604
- msgid "Adverts that need you"
605
- msgstr ""
606
-
607
- #: dashboard/info.php:34 dashboard/publisher/adverts-edit.php:261
608
- #: dashboard/publisher/groups-main.php:34
609
- #: dashboard/publisher/schedules-main.php:34
610
- #: dashboard/publisher/statistics-main.php:35
611
- msgid "Adverts"
612
- msgstr ""
613
-
614
- #: dashboard/info.php:35
615
- msgid "(Almost) Expired"
616
- msgstr ""
617
-
618
- #: dashboard/info.php:38
619
- msgid "Groups"
620
- msgstr ""
621
-
622
- #: dashboard/info.php:39
623
- msgid "Have errors"
624
- msgstr ""
625
-
626
- #: dashboard/info.php:76
627
- msgid "AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!"
628
- msgstr ""
629
-
630
- #: dashboard/info.php:78
631
- msgid "Single License"
632
- msgstr ""
633
-
634
- #: dashboard/info.php:78
635
- msgid "Use on ONE WordPress installation."
636
- msgstr ""
637
-
638
- #: dashboard/info.php:78 dashboard/info.php:79 dashboard/info.php:80
639
- #: dashboard/info.php:81
640
- msgid "Buy now"
641
- msgstr ""
642
-
643
- #: dashboard/info.php:79
644
- msgid "Duo License"
645
- msgstr ""
646
-
647
- #: dashboard/info.php:79
648
- msgid "Use on TWO WordPress installations."
649
- msgstr ""
650
-
651
- #: dashboard/info.php:80
652
- msgid "Multi License"
653
- msgstr ""
654
-
655
- #: dashboard/info.php:80
656
- msgid "Use on up to FIVE WordPress installations."
657
- msgstr ""
658
-
659
- #: dashboard/info.php:81
660
- msgid "Developer License"
661
- msgstr ""
662
-
663
- #: dashboard/info.php:81
664
- msgid "Use on up to a HUNDRED WordPress installations and/or networks."
665
- msgstr ""
666
-
667
  #: dashboard/publisher/adverts-disabled.php:15
668
  msgid "Disabled Adverts"
669
  msgstr ""
@@ -677,7 +628,7 @@ msgid "Bulk Actions"
677
  msgstr ""
678
 
679
  #: dashboard/publisher/adverts-disabled.php:21
680
- #: dashboard/publisher/adverts-edit.php:182
681
  msgid "Activate"
682
  msgstr ""
683
 
@@ -703,7 +654,7 @@ msgid "Go"
703
  msgstr ""
704
 
705
  #: dashboard/publisher/adverts-disabled.php:35
706
- #: dashboard/publisher/adverts-edit.php:259
707
  #: dashboard/publisher/adverts-error.php:39
708
  #: dashboard/publisher/adverts-main.php:39
709
  #: dashboard/publisher/groups-edit.php:350
@@ -720,8 +671,8 @@ msgid "Start / End"
720
  msgstr ""
721
 
722
  #: dashboard/publisher/adverts-disabled.php:37
723
- #: dashboard/publisher/adverts-edit.php:112
724
- #: dashboard/publisher/adverts-edit.php:260
725
  #: dashboard/publisher/adverts-error.php:40
726
  #: dashboard/publisher/adverts-main.php:41
727
  #: dashboard/publisher/groups-edit.php:65
@@ -815,226 +766,227 @@ msgid "There is a problem saving the image. Please re-set your image and re-save
815
  msgstr ""
816
 
817
  #: dashboard/publisher/adverts-edit.php:62
818
- msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
819
  msgstr ""
820
 
821
  #: dashboard/publisher/adverts-edit.php:67
822
- msgid "AdRotate cannot find an error but the advert is marked erroneous, try re-saving the ad!"
823
  msgstr ""
824
 
825
  #: dashboard/publisher/adverts-edit.php:70
826
- msgid "This advert is expired and currently not shown on your website!"
827
  msgstr ""
828
 
829
  #: dashboard/publisher/adverts-edit.php:73
830
- msgid "The advert will expire in less than 2 days!"
831
  msgstr ""
832
 
833
  #: dashboard/publisher/adverts-edit.php:76
834
- msgid "This advert will expire in less than 7 days!"
835
  msgstr ""
836
 
837
  #: dashboard/publisher/adverts-edit.php:79
838
- msgid "This advert has been disabled and does not rotate on your site!"
839
  msgstr ""
840
 
841
- #: dashboard/publisher/adverts-edit.php:106
 
 
 
 
842
  msgid "Edit Advert"
843
  msgstr ""
844
 
845
- #: dashboard/publisher/adverts-edit.php:121
846
  msgid "AdCode"
847
  msgstr ""
848
 
849
- #: dashboard/publisher/adverts-edit.php:126
850
  msgid "Basic Examples:"
851
  msgstr ""
852
 
853
- #: dashboard/publisher/adverts-edit.php:127
854
  msgid "Click any of the examples to use it."
855
  msgstr ""
856
 
857
- #: dashboard/publisher/adverts-edit.php:136
858
  msgid "Useful tags"
859
  msgstr ""
860
 
861
- #: dashboard/publisher/adverts-edit.php:138
862
  msgid "Insert the advert ID Number."
863
  msgstr ""
864
 
865
- #: dashboard/publisher/adverts-edit.php:138
866
  msgid "Use this tag when selecting a image below."
867
  msgstr ""
868
 
869
- #: dashboard/publisher/adverts-edit.php:138
870
  msgid "Insert the advert name."
871
  msgstr ""
872
 
873
- #: dashboard/publisher/adverts-edit.php:138
874
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
875
  msgstr ""
876
 
877
- #: dashboard/publisher/adverts-edit.php:138
878
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
879
  msgstr ""
880
 
881
- #: dashboard/publisher/adverts-edit.php:138
882
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
883
  msgstr ""
884
 
885
- #: dashboard/publisher/adverts-edit.php:139
886
  msgid "Place the cursor where you want to add a tag and click to add it to your AdCode."
887
  msgstr ""
888
 
889
- #: dashboard/publisher/adverts-edit.php:144
890
  msgid "Preview"
891
  msgstr ""
892
 
893
- #: dashboard/publisher/adverts-edit.php:147
894
  msgid "Note: While this preview is an accurate one, it might look different then it does on the website."
895
  msgstr ""
896
 
897
- #: dashboard/publisher/adverts-edit.php:148
898
  msgid "This is because of CSS differences. Your themes CSS file is not active here!"
899
  msgstr ""
900
 
901
- #: dashboard/publisher/adverts-edit.php:153
902
  msgid "Banner asset"
903
  msgstr ""
904
 
905
- #: dashboard/publisher/adverts-edit.php:155
906
  msgid "WordPress media:"
907
  msgstr ""
908
 
909
- #: dashboard/publisher/adverts-edit.php:155
910
  msgid "Select Banner"
911
  msgstr ""
912
 
913
- #: dashboard/publisher/adverts-edit.php:157
914
  msgid "- OR -"
915
  msgstr ""
916
 
917
- #: dashboard/publisher/adverts-edit.php:158
918
  msgid "Banner folder:"
919
  msgstr ""
920
 
921
- #: dashboard/publisher/adverts-edit.php:159
922
  msgid "No image selected"
923
  msgstr ""
924
 
925
- #: dashboard/publisher/adverts-edit.php:169
926
  msgid "Use %asset% in the adcode instead of the file path."
927
  msgstr ""
928
 
929
- #: dashboard/publisher/adverts-edit.php:169
930
  msgid "Use either the text field or the dropdown. If the textfield has content that field has priority."
931
  msgstr ""
932
 
933
- #: dashboard/publisher/adverts-edit.php:176
934
- msgid "Enable click and impression tracking for this advert."
935
  msgstr ""
936
 
937
- #: dashboard/publisher/adverts-edit.php:177
938
- msgid "Note: Clicktracking does not work for Javascript adverts such as those provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not always supported."
939
  msgstr ""
940
 
941
- #: dashboard/publisher/adverts-edit.php:185
942
  msgid "Enabled, this ad will be visible"
943
  msgstr ""
944
 
945
- #: dashboard/publisher/adverts-edit.php:186
946
  msgid "Disabled, do not show this advert anywhere"
947
  msgstr ""
948
 
949
- #: dashboard/publisher/adverts-edit.php:192
950
  msgid "Target your audience with Geo Targeting and easily select which devices and mobile operating systems the advert should show on with AdRotate Pro!"
951
  msgstr ""
952
 
953
- #: dashboard/publisher/adverts-edit.php:192
954
- #: dashboard/publisher/adverts-edit.php:230
955
  #: dashboard/publisher/groups-edit.php:227
956
- #: dashboard/publisher/statistics-advert.php:109
957
- #: dashboard/publisher/statistics-group.php:113
958
- #: dashboard/publisher/statistics-main.php:83
959
  msgid "Upgrade now"
960
  msgstr ""
961
 
962
- #: dashboard/publisher/adverts-edit.php:194
963
  msgid "Schedule your advert"
964
  msgstr ""
965
 
966
- #: dashboard/publisher/adverts-edit.php:195
967
  msgid "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 hours. 6AM is 6:00 hours."
968
  msgstr ""
969
 
970
- #: dashboard/publisher/adverts-edit.php:199
971
  msgid "Start date"
972
  msgstr ""
973
 
974
- #: dashboard/publisher/adverts-edit.php:203
975
  msgid "End date"
976
  msgstr ""
977
 
978
- #: dashboard/publisher/adverts-edit.php:209
979
  msgid "Start time"
980
  msgstr ""
981
 
982
- #: dashboard/publisher/adverts-edit.php:214
983
  msgid "End time"
984
  msgstr ""
985
 
986
- #: dashboard/publisher/adverts-edit.php:222
987
  msgid "Maximum Clicks"
988
  msgstr ""
989
 
990
- #: dashboard/publisher/adverts-edit.php:223
991
- #: dashboard/publisher/adverts-edit.php:225
992
  msgid "Leave empty or 0 to skip this."
993
  msgstr ""
994
 
995
- #: dashboard/publisher/adverts-edit.php:224
996
  msgid "Maximum Impressions"
997
  msgstr ""
998
 
999
- #: dashboard/publisher/adverts-edit.php:230
1000
  msgid "Plan ahead and create multiple and more advanced schedules for each advert with AdRotate Pro."
1001
  msgstr ""
1002
 
1003
- #: dashboard/publisher/adverts-edit.php:232
1004
  #: dashboard/publisher/groups-edit.php:157
1005
  #: dashboard/publisher/groups-edit.php:302
1006
  msgid "Usage"
1007
  msgstr ""
1008
 
1009
- #: dashboard/publisher/adverts-edit.php:236
1010
  #: dashboard/publisher/groups-edit.php:161
1011
  #: dashboard/publisher/groups-edit.php:306
1012
  msgid "Widget"
1013
  msgstr ""
1014
 
1015
- #: dashboard/publisher/adverts-edit.php:237
1016
  msgid "Drag the AdRotate widget to the sidebar where you want to place the advert and select the advert or the group the advert is in."
1017
  msgstr ""
1018
 
1019
- #: dashboard/publisher/adverts-edit.php:240
1020
  #: dashboard/publisher/groups-edit.php:165
1021
  #: dashboard/publisher/groups-edit.php:310
1022
  msgid "In a post or page"
1023
  msgstr ""
1024
 
1025
- #: dashboard/publisher/adverts-edit.php:242
1026
  #: dashboard/publisher/groups-edit.php:167
1027
  #: dashboard/publisher/groups-edit.php:312
1028
  msgid "Directly in a theme"
1029
  msgstr ""
1030
 
1031
- #: dashboard/publisher/adverts-edit.php:249
1032
- #: dashboard/publisher/adverts-edit.php:292
1033
  msgid "Save Advert"
1034
  msgstr ""
1035
 
1036
- #: dashboard/publisher/adverts-edit.php:250
1037
- #: dashboard/publisher/adverts-edit.php:293
1038
  #: dashboard/publisher/adverts-generator.php:148
1039
  #: dashboard/publisher/groups-edit.php:175
1040
  #: dashboard/publisher/groups-edit.php:320
@@ -1042,62 +994,69 @@ msgstr ""
1042
  msgid "Cancel"
1043
  msgstr ""
1044
 
1045
- #: dashboard/publisher/adverts-edit.php:254
1046
  msgid "Select Groups"
1047
  msgstr ""
1048
 
1049
- #: dashboard/publisher/adverts-edit.php:270
 
 
 
 
 
 
 
1050
  #: dashboard/publisher/groups-main.php:60
1051
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1052
  msgid "Default"
1053
  msgstr ""
1054
 
1055
- #: dashboard/publisher/adverts-edit.php:271
1056
  #: dashboard/publisher/groups-main.php:61
1057
  msgid "Dynamic"
1058
  msgstr ""
1059
 
1060
- #: dashboard/publisher/adverts-edit.php:271
1061
  #: dashboard/publisher/groups-main.php:61
1062
  msgid "second rotation"
1063
  msgstr ""
1064
 
1065
- #: dashboard/publisher/adverts-edit.php:272
1066
  #: dashboard/publisher/groups-main.php:62
1067
  msgid "Block"
1068
  msgstr ""
1069
 
1070
- #: dashboard/publisher/adverts-edit.php:272
1071
  #: dashboard/publisher/groups-main.php:62
1072
  msgid "grid"
1073
  msgstr ""
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:273
1076
  #: dashboard/publisher/groups-edit.php:234
1077
  #: dashboard/publisher/groups-main.php:63
1078
  msgid "Post Injection"
1079
  msgstr ""
1080
 
1081
- #: dashboard/publisher/adverts-edit.php:274
1082
  msgid "Geolocation"
1083
  msgstr ""
1084
 
1085
- #: dashboard/publisher/adverts-edit.php:281
1086
  #: dashboard/publisher/groups-edit.php:74
1087
  #: dashboard/publisher/groups-main.php:70
1088
  msgid "Mode"
1089
  msgstr ""
1090
 
1091
- #: dashboard/publisher/adverts-edit.php:298
1092
  #: dashboard/publisher/adverts-generator.php:131
1093
  msgid "Portability"
1094
  msgstr ""
1095
 
1096
- #: dashboard/publisher/adverts-edit.php:299
1097
  msgid "This long code is your advert. It includes all settings from above except the schedule and group selection. You can import this hash into another setup of AdRotate or AdRotate Professional. Do not alter the hash or the advert will not work. In most browsers you can tripleclick in the field to select the whole thing. You can paste the hash into the 'Advert Hash' field in the Advert Generator of another AdRotate setup."
1098
  msgstr ""
1099
 
1100
- #: dashboard/publisher/adverts-edit.php:303
1101
  #: dashboard/publisher/adverts-generator.php:137
1102
  msgid "Advert hash"
1103
  msgstr ""
@@ -1434,6 +1393,10 @@ msgstr ""
1434
  msgid "Get access to all features in AdRotate Pro."
1435
  msgstr ""
1436
 
 
 
 
 
1437
  #: dashboard/publisher/groups-edit.php:162
1438
  #: dashboard/publisher/groups-edit.php:307
1439
  msgid "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Adverts\" and enter ID"
@@ -1845,12 +1808,6 @@ msgstr ""
1845
  msgid "All statistics are indicative. They do not nessesarily reflect results counted by other parties."
1846
  msgstr ""
1847
 
1848
- #: dashboard/publisher/statistics-advert.php:109
1849
- #: dashboard/publisher/statistics-group.php:113
1850
- #: dashboard/publisher/statistics-main.php:83
1851
- msgid "Get more features with AdRotate Pro"
1852
- msgstr ""
1853
-
1854
  #: dashboard/publisher/statistics-group.php:46
1855
  msgid "Statistics for group"
1856
  msgstr ""
@@ -1859,193 +1816,164 @@ msgstr ""
1859
  msgid "Adverts counting stats"
1860
  msgstr ""
1861
 
1862
- #: dashboard/settings/advertisers.php:16
1863
- msgid "Advertisers - Available in AdRotate Pro"
1864
- msgstr ""
1865
-
1866
- #: dashboard/settings/advertisers.php:17
1867
- msgid "Enable advertisers so they can review and manage their own ads."
1868
- msgstr ""
1869
-
1870
- #: dashboard/settings/advertisers.php:20
1871
- msgid "Enable Advertisers"
1872
- msgstr ""
1873
-
1874
- #: dashboard/settings/advertisers.php:22
1875
- msgid "Allow adverts to be coupled to users (Advertisers)."
1876
- msgstr ""
1877
-
1878
- #: dashboard/settings/advertisers.php:26
1879
- msgid "Edit/update adverts"
1880
- msgstr ""
1881
-
1882
- #: dashboard/settings/advertisers.php:28
1883
- msgid "Allow advertisers to add new or edit their adverts."
1884
- msgstr ""
1885
-
1886
- #: dashboard/settings/advertisers.php:32
1887
- msgid "Mobile adverts"
1888
- msgstr ""
1889
-
1890
- #: dashboard/settings/advertisers.php:34
1891
- msgid "Allow advertisers to specify on which devices their ads will show."
1892
- msgstr ""
1893
-
1894
- #: dashboard/settings/advertisers.php:40
1895
- msgid "Allow advertisers to specify where their ads will show. Geo Targeting has to be enabled, too."
1896
  msgstr ""
1897
 
1898
- #: dashboard/settings/advertisers.php:44
1899
- msgid "Advertiser role"
1900
  msgstr ""
1901
 
1902
- #: dashboard/settings/advertisers.php:46
1903
- msgid "Create a seperate user role for your advertisers."
1904
  msgstr ""
1905
 
1906
- #: dashboard/settings/advertisers.php:47
1907
- msgid "Don't forget to give these users access to their advertiser dashboard via the Roles tab."
1908
  msgstr ""
1909
 
1910
- #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1911
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:47
1912
- #: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
1913
- #: dashboard/settings/statistics.php:79
1914
- msgid "Update Options"
1915
  msgstr ""
1916
 
1917
- #: dashboard/settings/general.php:17
1918
- msgid "General Settings"
1919
  msgstr ""
1920
 
1921
- #: dashboard/settings/general.php:18
1922
- msgid "General settings for AdRotate."
1923
  msgstr ""
1924
 
1925
- #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
1926
- msgid "Some options are only available in AdRotate Pro!"
1927
  msgstr ""
1928
 
1929
- #: dashboard/settings/general.php:21
1930
  msgid "Shortcode in widgets"
1931
  msgstr ""
1932
 
1933
- #: dashboard/settings/general.php:22
1934
- msgid "Enable this option to if your theme does not support shortcodes in the WordPress text widget."
1935
  msgstr ""
1936
 
1937
- #: dashboard/settings/general.php:25
1938
- msgid "Disable live preview"
1939
  msgstr ""
1940
 
1941
- #: dashboard/settings/general.php:26
1942
- msgid "Enable this option if you have faulty adverts that overflow their designated area while creating/editing adverts."
1943
  msgstr ""
1944
 
1945
- #: dashboard/settings/general.php:29
1946
- msgid "Disable dynamic mode"
1947
  msgstr ""
1948
 
1949
- #: dashboard/settings/general.php:30
1950
- msgid "Enable this option to disable dynamic mode in groups for mobile devices if you notice skipping or jumpy content."
1951
  msgstr ""
1952
 
1953
- #: dashboard/settings/general.php:33
1954
  msgid "Load jQuery"
1955
  msgstr ""
1956
 
1957
- #: dashboard/settings/general.php:34
1958
- msgid "Enable this option if your theme does not load jQuery. jQuery is required for dynamic groups, statistics and some other features."
1959
  msgstr ""
1960
 
1961
- #: dashboard/settings/general.php:37
1962
  msgid "Load scripts in footer?"
1963
  msgstr ""
1964
 
1965
- #: dashboard/settings/general.php:38
1966
- msgid "Enable this option if you want to load all AdRotate Javascripts in the footer of your site."
1967
  msgstr ""
1968
 
1969
- #: dashboard/settings/general.php:41
1970
  msgid "Adblock disguise"
1971
  msgstr ""
1972
 
1973
- #: dashboard/settings/general.php:43
1974
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
1975
  msgstr ""
1976
 
1977
- #: dashboard/settings/general.php:44
1978
  msgid "Try and avoid adblock plugins in most modern browsers when using shortcodes."
1979
  msgstr ""
1980
 
1981
- #: dashboard/settings/general.php:44
1982
  msgid "To also apply this feature to widgets, use a text widget with a shortcode instead of the AdRotate widget."
1983
  msgstr ""
1984
 
1985
- #: dashboard/settings/general.php:44
1986
  msgid "Avoid the use of obvious keywords or filenames in your adverts or this feature will have little effect!"
1987
  msgstr ""
1988
 
1989
- #: dashboard/settings/general.php:49
1990
  msgid "Banner Folder"
1991
  msgstr ""
1992
 
1993
- #: dashboard/settings/general.php:50
1994
  msgid "Set a folder where your banner images will be stored."
1995
  msgstr ""
1996
 
1997
- #: dashboard/settings/general.php:53
1998
  msgid "Folder name"
1999
  msgstr ""
2000
 
2001
- #: dashboard/settings/general.php:55
2002
  msgid "(Default: banners)."
2003
  msgstr ""
2004
 
2005
- #: dashboard/settings/general.php:56
2006
  msgid "To try and trick ad blockers you could set the folder to something crazy like:"
2007
  msgstr ""
2008
 
2009
- #: dashboard/settings/general.php:57
2010
  msgid "This folder will not be automatically created if it doesn't exist. AdRotate will show errors when the folder is missing."
2011
  msgstr ""
2012
 
2013
- #: dashboard/settings/general.php:62
2014
  msgid "Bot filter"
2015
  msgstr ""
2016
 
2017
- #: dashboard/settings/general.php:63
2018
  msgid "The bot filter is used for the AdRotate stats tracker."
2019
  msgstr ""
2020
 
2021
- #: dashboard/settings/general.php:66
2022
  msgid "User-Agent Filter"
2023
  msgstr ""
2024
 
2025
- #: dashboard/settings/general.php:69
2026
  msgid "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2027
  msgstr ""
2028
 
2029
- #: dashboard/settings/general.php:70
2030
  msgid "Keep in mind that this might give false positives. The word 'fire' also matches 'firefox', but not vice-versa. So be careful!"
2031
  msgstr ""
2032
 
2033
- #: dashboard/settings/general.php:71
2034
  msgid "Only words with alphanumeric characters and [ - _ ] are allowed. All other characters are stripped out."
2035
  msgstr ""
2036
 
2037
- #: dashboard/settings/general.php:72
2038
  msgid "Additionally to the list specified here, empty User-Agents are blocked as well."
2039
  msgstr ""
2040
 
2041
- #: dashboard/settings/general.php:72
2042
  msgid "Learn more about"
2043
  msgstr ""
2044
 
2045
- #: dashboard/settings/general.php:72
2046
  msgid "user-agents"
2047
  msgstr ""
2048
 
 
 
 
 
 
 
2049
  #: dashboard/settings/geotargeting.php:17
2050
  msgid "Geo Targeting - Available in AdRotate Pro"
2051
  msgstr ""
@@ -2140,7 +2068,7 @@ msgid "Use these functions when you notice your database is slow, unresponsive a
2140
  msgstr ""
2141
 
2142
  #: dashboard/settings/maintenance.php:22
2143
- msgid "Check all adverts for configuration errors"
2144
  msgstr ""
2145
 
2146
  #: dashboard/settings/maintenance.php:22
@@ -2160,7 +2088,7 @@ msgid "Clean-up Database and Files"
2160
  msgstr ""
2161
 
2162
  #: dashboard/settings/maintenance.php:30
2163
- msgid "Clean-up database and old files"
2164
  msgstr ""
2165
 
2166
  #: dashboard/settings/maintenance.php:30
@@ -2566,50 +2494,58 @@ msgid "AdRotate Statistics"
2566
  msgstr ""
2567
 
2568
  #: dashboard/settings/statistics.php:48
2569
- msgid "The settings below are for the internal tracker and have no effect when using Google Analytics or Matomo."
2570
  msgstr ""
2571
 
2572
  #: dashboard/settings/statistics.php:51
2573
- msgid "Logged in impressions"
2574
  msgstr ""
2575
 
2576
  #: dashboard/settings/statistics.php:53
2577
- msgid "Track impressions from logged in users."
2578
  msgstr ""
2579
 
2580
  #: dashboard/settings/statistics.php:57
2581
- msgid "Logged in clicks"
2582
  msgstr ""
2583
 
2584
  #: dashboard/settings/statistics.php:59
2585
- msgid "Track clicks from logged in users."
2586
  msgstr ""
2587
 
2588
  #: dashboard/settings/statistics.php:63
 
 
 
 
 
 
 
 
2589
  msgid "Impression timer"
2590
  msgstr ""
2591
 
2592
- #: dashboard/settings/statistics.php:65 dashboard/settings/statistics.php:72
2593
  msgid "Seconds."
2594
  msgstr ""
2595
 
2596
- #: dashboard/settings/statistics.php:66
2597
  msgid "Default: 60."
2598
  msgstr ""
2599
 
2600
- #: dashboard/settings/statistics.php:66
2601
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2602
  msgstr ""
2603
 
2604
- #: dashboard/settings/statistics.php:70
2605
  msgid "Click timer"
2606
  msgstr ""
2607
 
2608
- #: dashboard/settings/statistics.php:73
2609
  msgid "Default: 86400."
2610
  msgstr ""
2611
 
2612
- #: dashboard/settings/statistics.php:73
2613
  msgid "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2614
  msgstr ""
2615
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: AdRotate\n"
5
+ "POT-Creation-Date: 2021-08-31 02:03-0500\n"
6
  "PO-Revision-Date: 2019-09-20 12:05-0500\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:797
21
  msgid "Advert saved"
22
  msgstr ""
23
 
24
+ #: adrotate-functions.php:801
25
  msgid "Group saved"
26
  msgstr ""
27
 
28
+ #: adrotate-functions.php:805
29
  msgid "Banner image saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:809
33
  msgid "Ad(s) deleted"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:813
37
  msgid "Group deleted"
38
  msgstr ""
39
 
40
+ #: adrotate-functions.php:817
41
  msgid "Asset(s) deleted"
42
  msgstr ""
43
 
44
+ #: adrotate-functions.php:821
45
  msgid "Something went wrong deleting the file or folder. Make sure your permissions are in order."
46
  msgstr ""
47
 
48
+ #: adrotate-functions.php:825
49
  msgid "Advert(s) statistics reset"
50
  msgstr ""
51
 
52
+ #: adrotate-functions.php:829
53
  msgid "Advert(s) renewed"
54
  msgstr ""
55
 
56
+ #: adrotate-functions.php:833
57
  msgid "Advert(s) deactivated"
58
  msgstr ""
59
 
60
+ #: adrotate-functions.php:837
61
  msgid "Advert(s) activated"
62
  msgstr ""
63
 
64
+ #: adrotate-functions.php:841
65
  msgid "Group including the Adverts in it deleted"
66
  msgstr ""
67
 
68
+ #: adrotate-functions.php:845
69
  msgid "Export created"
70
  msgstr ""
71
 
72
+ #: adrotate-functions.php:849
73
  msgid "Advert HTML generated and placed in the AdCode field. Configure your advert below. Do not forget to check all settings and schedule the advert."
74
  msgstr ""
75
 
76
+ #: adrotate-functions.php:854
77
  msgid "Settings saved"
78
  msgstr ""
79
 
80
+ #: adrotate-functions.php:858
81
  msgid "Database optimized"
82
  msgstr ""
83
 
84
+ #: adrotate-functions.php:862
85
  msgid "Database repaired"
86
  msgstr ""
87
 
88
+ #: adrotate-functions.php:866
89
  msgid "Adverts evaluated and statuses have been corrected where required"
90
  msgstr ""
91
 
92
+ #: adrotate-functions.php:870
93
  msgid "Cleanup complete"
94
  msgstr ""
95
 
96
+ #: adrotate-functions.php:875
97
  msgid "Action prohibited"
98
  msgstr ""
99
 
100
+ #: adrotate-functions.php:879
101
  msgid "The advert was saved but has an issue which might prevent it from working properly. Review the colored advert."
102
  msgstr ""
103
 
104
+ #: adrotate-functions.php:883
105
  msgid "No data found in selected time period"
106
  msgstr ""
107
 
108
+ #: adrotate-functions.php:887
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr ""
111
 
112
+ #: adrotate-functions.php:891
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:895
117
  msgid "No adverts found."
118
  msgstr ""
119
 
120
+ #: adrotate-functions.php:899
121
  msgid "The advert hash is not usable or is missing required data. Please copy the hash correctly and try again."
122
  msgstr ""
123
 
124
+ #: adrotate-functions.php:903
125
  msgid "The advert hash can not be used on the same site as it originated from or is not a valid hash for importing."
126
  msgstr ""
127
 
128
+ #: adrotate-functions.php:907
129
  msgid "Unexpected error"
130
  msgstr ""
131
 
250
  msgid "Installation instructions"
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:735
254
  msgid "your attention:"
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:766
258
  msgid "Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:766
262
  msgid "manuals"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:766
266
  msgid "and"
267
  msgstr ""
268
 
269
+ #: adrotate-output.php:766
270
  msgid "forums"
271
  msgstr ""
272
 
273
+ #: adrotate-output.php:844
274
  msgid "Need help fast? Or do you have a question?"
275
  msgstr ""
276
 
277
+ #: adrotate-output.php:845
278
  msgid "Help AdRotate Grow"
279
  msgstr ""
280
 
281
+ #: adrotate-output.php:846
282
+ msgid "Get more features with AdRotate Pro"
283
  msgstr ""
284
 
285
+ #: adrotate-output.php:852
286
+ msgid "If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the AdRotate support forum. Usually I answer questions the same day, often with a solution in the first answer."
287
  msgstr ""
288
 
289
+ #: adrotate-output.php:853
290
+ msgid "AdRotate Manuals"
291
  msgstr ""
292
 
293
+ #: adrotate-output.php:853
294
+ msgid "Support Forums"
295
  msgstr ""
296
 
297
+ #: adrotate-output.php:854
298
+ msgid "When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise."
299
  msgstr ""
300
 
301
+ #: adrotate-output.php:856
302
+ msgid "Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development."
303
  msgstr ""
304
 
305
+ #: adrotate-output.php:857
306
+ msgid "Post Tweet"
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:857
310
+ msgid "Share on Facebook"
311
+ msgstr ""
312
+
313
+ #: adrotate-output.php:857
314
+ msgid "Write review on WordPress.org"
315
+ msgstr ""
316
+
317
+ #: adrotate-output.php:858
318
+ msgid "Thank you very much for your help and support!"
319
+ msgstr ""
320
+
321
+ #: adrotate-output.php:863
322
+ msgid "AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!"
323
+ msgstr ""
324
+
325
+ #: adrotate-output.php:863
326
+ msgid "Compare Licenses"
327
+ msgstr ""
328
+
329
+ #: adrotate-output.php:864
330
+ msgid "Single License"
331
+ msgstr ""
332
+
333
+ #: adrotate-output.php:864
334
+ msgid "Use on ONE WordPress installation."
335
+ msgstr ""
336
+
337
+ #: adrotate-output.php:864 adrotate-output.php:865
338
+ msgid "Buy now"
339
+ msgstr ""
340
+
341
+ #: adrotate-output.php:865
342
+ msgid "Multi License"
343
+ msgstr ""
344
+
345
+ #: adrotate-output.php:865
346
+ msgid "Use on up to FIVE WordPress installations."
347
  msgstr ""
348
 
349
  #: adrotate-statistics.php:155
456
  msgid "Fill in the ID of the type you want to display!"
457
  msgstr ""
458
 
459
+ #: adrotate.php:105 adrotate.php:175
 
 
 
 
 
 
 
 
460
  msgid "Manage Adverts"
461
  msgstr ""
462
 
463
+ #: adrotate.php:106 adrotate.php:301 dashboard/publisher/groups-main.php:12
464
  msgid "Manage Groups"
465
  msgstr ""
466
 
467
+ #: adrotate.php:107 adrotate.php:339 dashboard/publisher/schedules-main.php:12
468
  msgid "Manage Schedules"
469
  msgstr ""
470
 
471
+ #: adrotate.php:108
472
  msgid "Manage Media"
473
  msgstr ""
474
 
475
+ #: adrotate.php:109 adrotate.php:503 dashboard/adrotatepro.php:98
476
+ #: dashboard/publisher/adverts-edit.php:178
477
  #: dashboard/publisher/statistics-main.php:23
478
  #: dashboard/settings/statistics.php:17
479
  msgid "Statistics"
480
  msgstr ""
481
 
482
+ #: adrotate.php:110 adrotate.php:238 adrotate.php:309
483
+ msgid "Get AdRotate Pro"
484
  msgstr ""
485
 
486
+ #: adrotate.php:111
487
+ msgid "Support"
488
  msgstr ""
489
 
490
+ #: adrotate.php:112
491
+ msgid "Settings"
492
  msgstr ""
493
 
494
+ #: adrotate.php:131
495
  msgid "Get AdRotate Professional"
496
  msgstr ""
497
 
498
+ #: adrotate.php:235 adrotate.php:307
499
  msgid "Manage"
500
  msgstr ""
501
 
502
+ #: adrotate.php:236
503
  msgid "Advert Generator"
504
  msgstr ""
505
 
506
+ #: adrotate.php:237 dashboard/publisher/adverts-edit.php:108
507
  msgid "New Advert"
508
  msgstr ""
509
 
510
+ #: adrotate.php:308
511
  msgid "Add New"
512
  msgstr ""
513
 
514
+ #: adrotate.php:376
515
  msgid "Manage Media and Assets"
516
  msgstr ""
517
 
518
+ #: adrotate.php:380
519
  msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
520
  msgstr ""
521
 
522
+ #: adrotate.php:422
523
  msgid "Advert Statistics"
524
  msgstr ""
525
 
526
+ #: adrotate.php:465
527
  msgid "AdRotate Support"
528
  msgstr ""
529
 
530
+ #: adrotate.php:496
531
  msgid "AdRotate Settings"
532
  msgstr ""
533
 
534
+ #: adrotate.php:501 dashboard/publisher/statistics-main.php:28
535
  msgid "General"
536
  msgstr ""
537
 
538
+ #: adrotate.php:502 dashboard/settings/notifications.php:18
539
  msgid "Notifications"
540
  msgstr ""
541
 
542
+ #: adrotate.php:504 dashboard/publisher/groups-edit.php:205
 
543
  msgid "Geo Targeting"
544
  msgstr ""
545
 
546
+ #: adrotate.php:505 dashboard/settings/roles.php:17
 
 
 
 
547
  msgid "Access Roles"
548
  msgstr ""
549
 
550
+ #: adrotate.php:506 dashboard/settings/misc.php:16
551
  msgid "Miscellaneous"
552
  msgstr ""
553
 
554
+ #: adrotate.php:507 dashboard/settings/maintenance.php:16
555
  msgid "Maintenance"
556
  msgstr ""
557
 
615
  msgid "Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Get notified when adverts expire, have errors or when advertisers create new adverts. Select up to three email addresses to be notified. Never miss an expiration date again."
616
  msgstr ""
617
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
618
  #: dashboard/publisher/adverts-disabled.php:15
619
  msgid "Disabled Adverts"
620
  msgstr ""
628
  msgstr ""
629
 
630
  #: dashboard/publisher/adverts-disabled.php:21
631
+ #: dashboard/publisher/adverts-edit.php:186
632
  msgid "Activate"
633
  msgstr ""
634
 
654
  msgstr ""
655
 
656
  #: dashboard/publisher/adverts-disabled.php:35
657
+ #: dashboard/publisher/adverts-edit.php:263
658
  #: dashboard/publisher/adverts-error.php:39
659
  #: dashboard/publisher/adverts-main.php:39
660
  #: dashboard/publisher/groups-edit.php:350
671
  msgstr ""
672
 
673
  #: dashboard/publisher/adverts-disabled.php:37
674
+ #: dashboard/publisher/adverts-edit.php:116
675
+ #: dashboard/publisher/adverts-edit.php:264
676
  #: dashboard/publisher/adverts-error.php:40
677
  #: dashboard/publisher/adverts-main.php:41
678
  #: dashboard/publisher/groups-edit.php:65
766
  msgstr ""
767
 
768
  #: dashboard/publisher/adverts-edit.php:62
769
+ msgid "This kind of advert can not have statistics enabled in AdRotate. Impression counting is available in AdRotate Pro."
770
  msgstr ""
771
 
772
  #: dashboard/publisher/adverts-edit.php:67
773
+ msgid "This advert is expired and currently not shown on your website!"
774
  msgstr ""
775
 
776
  #: dashboard/publisher/adverts-edit.php:70
777
+ msgid "The advert will expire in less than 2 days!"
778
  msgstr ""
779
 
780
  #: dashboard/publisher/adverts-edit.php:73
781
+ msgid "This advert will expire in less than 7 days!"
782
  msgstr ""
783
 
784
  #: dashboard/publisher/adverts-edit.php:76
785
+ msgid "This advert has been disabled and does not rotate on your site!"
786
  msgstr ""
787
 
788
  #: dashboard/publisher/adverts-edit.php:79
789
+ msgid "AdRotate cannot find an error but the advert is marked erroneous, try re-saving the ad!"
790
  msgstr ""
791
 
792
+ #: dashboard/publisher/adverts-edit.php:83
793
+ msgid "This advert still uses the %image% tag. Please change it to %asset%!"
794
+ msgstr ""
795
+
796
+ #: dashboard/publisher/adverts-edit.php:110
797
  msgid "Edit Advert"
798
  msgstr ""
799
 
800
+ #: dashboard/publisher/adverts-edit.php:125
801
  msgid "AdCode"
802
  msgstr ""
803
 
804
+ #: dashboard/publisher/adverts-edit.php:130
805
  msgid "Basic Examples:"
806
  msgstr ""
807
 
808
+ #: dashboard/publisher/adverts-edit.php:131
809
  msgid "Click any of the examples to use it."
810
  msgstr ""
811
 
812
+ #: dashboard/publisher/adverts-edit.php:140
813
  msgid "Useful tags"
814
  msgstr ""
815
 
816
+ #: dashboard/publisher/adverts-edit.php:142
817
  msgid "Insert the advert ID Number."
818
  msgstr ""
819
 
820
+ #: dashboard/publisher/adverts-edit.php:142
821
  msgid "Use this tag when selecting a image below."
822
  msgstr ""
823
 
824
+ #: dashboard/publisher/adverts-edit.php:142
825
  msgid "Insert the advert name."
826
  msgstr ""
827
 
828
+ #: dashboard/publisher/adverts-edit.php:142
829
  msgid "Insert a random string. Useful for DFP/DoubleClick type adverts."
830
  msgstr ""
831
 
832
+ #: dashboard/publisher/adverts-edit.php:142
833
  msgid "Add inside the &lt;a&gt; tag to open the advert in a new window."
834
  msgstr ""
835
 
836
+ #: dashboard/publisher/adverts-edit.php:142
837
  msgid "Add inside the &lt;a&gt; tag to tell crawlers to ignore this link."
838
  msgstr ""
839
 
840
+ #: dashboard/publisher/adverts-edit.php:143
841
  msgid "Place the cursor where you want to add a tag and click to add it to your AdCode."
842
  msgstr ""
843
 
844
+ #: dashboard/publisher/adverts-edit.php:148
845
  msgid "Preview"
846
  msgstr ""
847
 
848
+ #: dashboard/publisher/adverts-edit.php:151
849
  msgid "Note: While this preview is an accurate one, it might look different then it does on the website."
850
  msgstr ""
851
 
852
+ #: dashboard/publisher/adverts-edit.php:152
853
  msgid "This is because of CSS differences. Your themes CSS file is not active here!"
854
  msgstr ""
855
 
856
+ #: dashboard/publisher/adverts-edit.php:157
857
  msgid "Banner asset"
858
  msgstr ""
859
 
860
+ #: dashboard/publisher/adverts-edit.php:159
861
  msgid "WordPress media:"
862
  msgstr ""
863
 
864
+ #: dashboard/publisher/adverts-edit.php:159
865
  msgid "Select Banner"
866
  msgstr ""
867
 
868
+ #: dashboard/publisher/adverts-edit.php:161
869
  msgid "- OR -"
870
  msgstr ""
871
 
872
+ #: dashboard/publisher/adverts-edit.php:162
873
  msgid "Banner folder:"
874
  msgstr ""
875
 
876
+ #: dashboard/publisher/adverts-edit.php:163
877
  msgid "No image selected"
878
  msgstr ""
879
 
880
+ #: dashboard/publisher/adverts-edit.php:173
881
  msgid "Use %asset% in the adcode instead of the file path."
882
  msgstr ""
883
 
884
+ #: dashboard/publisher/adverts-edit.php:173
885
  msgid "Use either the text field or the dropdown. If the textfield has content that field has priority."
886
  msgstr ""
887
 
888
+ #: dashboard/publisher/adverts-edit.php:180
889
+ msgid "Count clicks and impressions."
890
  msgstr ""
891
 
892
+ #: dashboard/publisher/adverts-edit.php:181
893
+ msgid "Click counting does not work for Javascript/html5 adverts such as those provided by Google AdSense/DFP/DoubleClick."
894
  msgstr ""
895
 
896
+ #: dashboard/publisher/adverts-edit.php:189
897
  msgid "Enabled, this ad will be visible"
898
  msgstr ""
899
 
900
+ #: dashboard/publisher/adverts-edit.php:190
901
  msgid "Disabled, do not show this advert anywhere"
902
  msgstr ""
903
 
904
+ #: dashboard/publisher/adverts-edit.php:196
905
  msgid "Target your audience with Geo Targeting and easily select which devices and mobile operating systems the advert should show on with AdRotate Pro!"
906
  msgstr ""
907
 
908
+ #: dashboard/publisher/adverts-edit.php:196
909
+ #: dashboard/publisher/adverts-edit.php:234
910
  #: dashboard/publisher/groups-edit.php:227
 
 
 
911
  msgid "Upgrade now"
912
  msgstr ""
913
 
914
+ #: dashboard/publisher/adverts-edit.php:198
915
  msgid "Schedule your advert"
916
  msgstr ""
917
 
918
+ #: dashboard/publisher/adverts-edit.php:199
919
  msgid "Time uses a 24 hour clock. When you're used to the AM/PM system keep this in mind: If the start or end time is after lunch, add 12 hours. 2PM is 14:00 hours. 6AM is 6:00 hours."
920
  msgstr ""
921
 
922
+ #: dashboard/publisher/adverts-edit.php:203
923
  msgid "Start date"
924
  msgstr ""
925
 
926
+ #: dashboard/publisher/adverts-edit.php:207
927
  msgid "End date"
928
  msgstr ""
929
 
930
+ #: dashboard/publisher/adverts-edit.php:213
931
  msgid "Start time"
932
  msgstr ""
933
 
934
+ #: dashboard/publisher/adverts-edit.php:218
935
  msgid "End time"
936
  msgstr ""
937
 
938
+ #: dashboard/publisher/adverts-edit.php:226
939
  msgid "Maximum Clicks"
940
  msgstr ""
941
 
942
+ #: dashboard/publisher/adverts-edit.php:227
943
+ #: dashboard/publisher/adverts-edit.php:229
944
  msgid "Leave empty or 0 to skip this."
945
  msgstr ""
946
 
947
+ #: dashboard/publisher/adverts-edit.php:228
948
  msgid "Maximum Impressions"
949
  msgstr ""
950
 
951
+ #: dashboard/publisher/adverts-edit.php:234
952
  msgid "Plan ahead and create multiple and more advanced schedules for each advert with AdRotate Pro."
953
  msgstr ""
954
 
955
+ #: dashboard/publisher/adverts-edit.php:236
956
  #: dashboard/publisher/groups-edit.php:157
957
  #: dashboard/publisher/groups-edit.php:302
958
  msgid "Usage"
959
  msgstr ""
960
 
961
+ #: dashboard/publisher/adverts-edit.php:240
962
  #: dashboard/publisher/groups-edit.php:161
963
  #: dashboard/publisher/groups-edit.php:306
964
  msgid "Widget"
965
  msgstr ""
966
 
967
+ #: dashboard/publisher/adverts-edit.php:241
968
  msgid "Drag the AdRotate widget to the sidebar where you want to place the advert and select the advert or the group the advert is in."
969
  msgstr ""
970
 
971
+ #: dashboard/publisher/adverts-edit.php:244
972
  #: dashboard/publisher/groups-edit.php:165
973
  #: dashboard/publisher/groups-edit.php:310
974
  msgid "In a post or page"
975
  msgstr ""
976
 
977
+ #: dashboard/publisher/adverts-edit.php:246
978
  #: dashboard/publisher/groups-edit.php:167
979
  #: dashboard/publisher/groups-edit.php:312
980
  msgid "Directly in a theme"
981
  msgstr ""
982
 
983
+ #: dashboard/publisher/adverts-edit.php:253
984
+ #: dashboard/publisher/adverts-edit.php:296
985
  msgid "Save Advert"
986
  msgstr ""
987
 
988
+ #: dashboard/publisher/adverts-edit.php:254
989
+ #: dashboard/publisher/adverts-edit.php:297
990
  #: dashboard/publisher/adverts-generator.php:148
991
  #: dashboard/publisher/groups-edit.php:175
992
  #: dashboard/publisher/groups-edit.php:320
994
  msgid "Cancel"
995
  msgstr ""
996
 
997
+ #: dashboard/publisher/adverts-edit.php:258
998
  msgid "Select Groups"
999
  msgstr ""
1000
 
1001
+ #: dashboard/publisher/adverts-edit.php:265
1002
+ #: dashboard/publisher/groups-main.php:34
1003
+ #: dashboard/publisher/schedules-main.php:34
1004
+ #: dashboard/publisher/statistics-main.php:35
1005
+ msgid "Adverts"
1006
+ msgstr ""
1007
+
1008
+ #: dashboard/publisher/adverts-edit.php:274
1009
  #: dashboard/publisher/groups-main.php:60
1010
  #: dashboard/settings/geotargeting.php:54 dashboard/settings/statistics.php:25
1011
  msgid "Default"
1012
  msgstr ""
1013
 
1014
+ #: dashboard/publisher/adverts-edit.php:275
1015
  #: dashboard/publisher/groups-main.php:61
1016
  msgid "Dynamic"
1017
  msgstr ""
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:275
1020
  #: dashboard/publisher/groups-main.php:61
1021
  msgid "second rotation"
1022
  msgstr ""
1023
 
1024
+ #: dashboard/publisher/adverts-edit.php:276
1025
  #: dashboard/publisher/groups-main.php:62
1026
  msgid "Block"
1027
  msgstr ""
1028
 
1029
+ #: dashboard/publisher/adverts-edit.php:276
1030
  #: dashboard/publisher/groups-main.php:62
1031
  msgid "grid"
1032
  msgstr ""
1033
 
1034
+ #: dashboard/publisher/adverts-edit.php:277
1035
  #: dashboard/publisher/groups-edit.php:234
1036
  #: dashboard/publisher/groups-main.php:63
1037
  msgid "Post Injection"
1038
  msgstr ""
1039
 
1040
+ #: dashboard/publisher/adverts-edit.php:278
1041
  msgid "Geolocation"
1042
  msgstr ""
1043
 
1044
+ #: dashboard/publisher/adverts-edit.php:285
1045
  #: dashboard/publisher/groups-edit.php:74
1046
  #: dashboard/publisher/groups-main.php:70
1047
  msgid "Mode"
1048
  msgstr ""
1049
 
1050
+ #: dashboard/publisher/adverts-edit.php:302
1051
  #: dashboard/publisher/adverts-generator.php:131
1052
  msgid "Portability"
1053
  msgstr ""
1054
 
1055
+ #: dashboard/publisher/adverts-edit.php:303
1056
  msgid "This long code is your advert. It includes all settings from above except the schedule and group selection. You can import this hash into another setup of AdRotate or AdRotate Professional. Do not alter the hash or the advert will not work. In most browsers you can tripleclick in the field to select the whole thing. You can paste the hash into the 'Advert Hash' field in the Advert Generator of another AdRotate setup."
1057
  msgstr ""
1058
 
1059
+ #: dashboard/publisher/adverts-edit.php:307
1060
  #: dashboard/publisher/adverts-generator.php:137
1061
  msgid "Advert hash"
1062
  msgstr ""
1393
  msgid "Get access to all features in AdRotate Pro."
1394
  msgstr ""
1395
 
1396
+ #: dashboard/publisher/groups-edit.php:155
1397
+ msgid "Upgrade today"
1398
+ msgstr ""
1399
+
1400
  #: dashboard/publisher/groups-edit.php:162
1401
  #: dashboard/publisher/groups-edit.php:307
1402
  msgid "Drag the AdRotate widget to the sidebar you want it in, select \"Group of Adverts\" and enter ID"
1808
  msgid "All statistics are indicative. They do not nessesarily reflect results counted by other parties."
1809
  msgstr ""
1810
 
 
 
 
 
 
 
1811
  #: dashboard/publisher/statistics-group.php:46
1812
  msgid "Statistics for group"
1813
  msgstr ""
1816
  msgid "Adverts counting stats"
1817
  msgstr ""
1818
 
1819
+ #: dashboard/settings/general.php:17
1820
+ msgid "General Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1821
  msgstr ""
1822
 
1823
+ #: dashboard/settings/general.php:18
1824
+ msgid "General settings for AdRotate."
1825
  msgstr ""
1826
 
1827
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
1828
+ msgid "Some options are only available in AdRotate Pro!"
1829
  msgstr ""
1830
 
1831
+ #: dashboard/settings/general.php:21
1832
+ msgid "Duplicate adverts"
1833
  msgstr ""
1834
 
1835
+ #: dashboard/settings/general.php:22
1836
+ msgid "Try and prevent adverts in groups that are in Default or Block mode from showing multiple times on the same page load."
 
 
 
1837
  msgstr ""
1838
 
1839
+ #: dashboard/settings/general.php:23
1840
+ msgid "If you still notice double adverts from groups placed on a page, start with carefully looking at your setup to make sure you did not cause this yourself."
1841
  msgstr ""
1842
 
1843
+ #: dashboard/settings/general.php:23
1844
+ msgid "On some servers $_SESSION is disabled."
1845
  msgstr ""
1846
 
1847
+ #: dashboard/settings/general.php:23
1848
+ msgid "A plugin called \"WP Session Manager\" by Eric Mann may fix this. However, most people will not need this extra plugin!"
1849
  msgstr ""
1850
 
1851
+ #: dashboard/settings/general.php:26
1852
  msgid "Shortcode in widgets"
1853
  msgstr ""
1854
 
1855
+ #: dashboard/settings/general.php:27
1856
+ msgid "Try and activate shortcodes in text widgets if your theme does not add support for it by itself. (This does not always work!)"
1857
  msgstr ""
1858
 
1859
+ #: dashboard/settings/general.php:30
1860
+ msgid "Advert live preview"
1861
  msgstr ""
1862
 
1863
+ #: dashboard/settings/general.php:31
1864
+ msgid "Disable live previews for adverts if you have faulty adverts that overflow their designated area while creating/editing adverts."
1865
  msgstr ""
1866
 
1867
+ #: dashboard/settings/general.php:34
1868
+ msgid "Dynamic mode on mobile"
1869
  msgstr ""
1870
 
1871
+ #: dashboard/settings/general.php:35
1872
+ msgid "Disable dynamic mode in groups for mobile devices if you notice skipping or jumpy content."
1873
  msgstr ""
1874
 
1875
+ #: dashboard/settings/general.php:38
1876
  msgid "Load jQuery"
1877
  msgstr ""
1878
 
1879
+ #: dashboard/settings/general.php:39
1880
+ msgid "Load jQuery if your theme does not load it already. jQuery is required for dynamic groups, statistics and some other features."
1881
  msgstr ""
1882
 
1883
+ #: dashboard/settings/general.php:42
1884
  msgid "Load scripts in footer?"
1885
  msgstr ""
1886
 
1887
+ #: dashboard/settings/general.php:43
1888
+ msgid "Load all AdRotate Javascripts in the footer of your site."
1889
  msgstr ""
1890
 
1891
+ #: dashboard/settings/general.php:46
1892
  msgid "Adblock disguise"
1893
  msgstr ""
1894
 
1895
+ #: dashboard/settings/general.php:48
1896
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
1897
  msgstr ""
1898
 
1899
+ #: dashboard/settings/general.php:49
1900
  msgid "Try and avoid adblock plugins in most modern browsers when using shortcodes."
1901
  msgstr ""
1902
 
1903
+ #: dashboard/settings/general.php:49
1904
  msgid "To also apply this feature to widgets, use a text widget with a shortcode instead of the AdRotate widget."
1905
  msgstr ""
1906
 
1907
+ #: dashboard/settings/general.php:49
1908
  msgid "Avoid the use of obvious keywords or filenames in your adverts or this feature will have little effect!"
1909
  msgstr ""
1910
 
1911
+ #: dashboard/settings/general.php:54
1912
  msgid "Banner Folder"
1913
  msgstr ""
1914
 
1915
+ #: dashboard/settings/general.php:55
1916
  msgid "Set a folder where your banner images will be stored."
1917
  msgstr ""
1918
 
1919
+ #: dashboard/settings/general.php:58
1920
  msgid "Folder name"
1921
  msgstr ""
1922
 
1923
+ #: dashboard/settings/general.php:60
1924
  msgid "(Default: banners)."
1925
  msgstr ""
1926
 
1927
+ #: dashboard/settings/general.php:61
1928
  msgid "To try and trick ad blockers you could set the folder to something crazy like:"
1929
  msgstr ""
1930
 
1931
+ #: dashboard/settings/general.php:62
1932
  msgid "This folder will not be automatically created if it doesn't exist. AdRotate will show errors when the folder is missing."
1933
  msgstr ""
1934
 
1935
+ #: dashboard/settings/general.php:67
1936
  msgid "Bot filter"
1937
  msgstr ""
1938
 
1939
+ #: dashboard/settings/general.php:68
1940
  msgid "The bot filter is used for the AdRotate stats tracker."
1941
  msgstr ""
1942
 
1943
+ #: dashboard/settings/general.php:71
1944
  msgid "User-Agent Filter"
1945
  msgstr ""
1946
 
1947
+ #: dashboard/settings/general.php:74
1948
  msgid "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
1949
  msgstr ""
1950
 
1951
+ #: dashboard/settings/general.php:75
1952
  msgid "Keep in mind that this might give false positives. The word 'fire' also matches 'firefox', but not vice-versa. So be careful!"
1953
  msgstr ""
1954
 
1955
+ #: dashboard/settings/general.php:76
1956
  msgid "Only words with alphanumeric characters and [ - _ ] are allowed. All other characters are stripped out."
1957
  msgstr ""
1958
 
1959
+ #: dashboard/settings/general.php:77
1960
  msgid "Additionally to the list specified here, empty User-Agents are blocked as well."
1961
  msgstr ""
1962
 
1963
+ #: dashboard/settings/general.php:77
1964
  msgid "Learn more about"
1965
  msgstr ""
1966
 
1967
+ #: dashboard/settings/general.php:77
1968
  msgid "user-agents"
1969
  msgstr ""
1970
 
1971
+ #: dashboard/settings/general.php:83 dashboard/settings/maintenance.php:107
1972
+ #: dashboard/settings/misc.php:47 dashboard/settings/notifications.php:72
1973
+ #: dashboard/settings/roles.php:55 dashboard/settings/statistics.php:85
1974
+ msgid "Update Options"
1975
+ msgstr ""
1976
+
1977
  #: dashboard/settings/geotargeting.php:17
1978
  msgid "Geo Targeting - Available in AdRotate Pro"
1979
  msgstr ""
2068
  msgstr ""
2069
 
2070
  #: dashboard/settings/maintenance.php:22
2071
+ msgid "Check for errors"
2072
  msgstr ""
2073
 
2074
  #: dashboard/settings/maintenance.php:22
2088
  msgstr ""
2089
 
2090
  #: dashboard/settings/maintenance.php:30
2091
+ msgid "Run Clean-up"
2092
  msgstr ""
2093
 
2094
  #: dashboard/settings/maintenance.php:30
2494
  msgstr ""
2495
 
2496
  #: dashboard/settings/statistics.php:48
2497
+ msgid "The settings below are for the local tracker and have no effect when using Google Analytics or Matomo."
2498
  msgstr ""
2499
 
2500
  #: dashboard/settings/statistics.php:51
2501
+ msgid "Admin stats"
2502
  msgstr ""
2503
 
2504
  #: dashboard/settings/statistics.php:53
2505
+ msgid "Track statistics from admin users."
2506
  msgstr ""
2507
 
2508
  #: dashboard/settings/statistics.php:57
2509
+ msgid "Logged in impressions"
2510
  msgstr ""
2511
 
2512
  #: dashboard/settings/statistics.php:59
2513
+ msgid "Track impressions from logged in users."
2514
  msgstr ""
2515
 
2516
  #: dashboard/settings/statistics.php:63
2517
+ msgid "Logged in clicks"
2518
+ msgstr ""
2519
+
2520
+ #: dashboard/settings/statistics.php:65
2521
+ msgid "Track clicks from logged in users."
2522
+ msgstr ""
2523
+
2524
+ #: dashboard/settings/statistics.php:69
2525
  msgid "Impression timer"
2526
  msgstr ""
2527
 
2528
+ #: dashboard/settings/statistics.php:71 dashboard/settings/statistics.php:78
2529
  msgid "Seconds."
2530
  msgstr ""
2531
 
2532
+ #: dashboard/settings/statistics.php:72
2533
  msgid "Default: 60."
2534
  msgstr ""
2535
 
2536
+ #: dashboard/settings/statistics.php:72
2537
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2538
  msgstr ""
2539
 
2540
+ #: dashboard/settings/statistics.php:76
2541
  msgid "Click timer"
2542
  msgstr ""
2543
 
2544
+ #: dashboard/settings/statistics.php:79
2545
  msgid "Default: 86400."
2546
  msgstr ""
2547
 
2548
+ #: dashboard/settings/statistics.php:79
2549
  msgid "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2550
  msgstr ""
2551
 
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === AdRotate - Ad manager & AdSense Ads ===
2
  Contributors: adegans
3
  Donate link: https://ajdg.solutions/go/donate/adrotatefree
4
- Tags: adverts, ads, banners, advert manager, ad manager, banner manager, monetize, revenue, place banners, google, adsense, dfp, doubleclick, amazon, affiliate, referral
5
- Requires at least: 5.0
6
  Requires PHP: 5.6
7
  Tested up to: 5.8
8
- Stable tag: 5.8.20
9
  License: GPLv3
10
 
11
  Manage all your advertising campaigns and affiliate banners/links with ease. Use any advert banner or link and place them anywhere on your site. Use many powerful features to run successful campaigns and increase your revenue.
@@ -40,6 +40,7 @@ With AdRotate it's easy to set up your own ads and campaigns with standard HTML
40
  * Mobile ads
41
  * Portable ads
42
  * Export statistics to CSV files
 
43
 
44
  AdRotate and AdRotate Professional share many features. But some features are exclusively available in AdRotate Professional. Learn more about [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme) on my website.
45
 
@@ -64,40 +65,24 @@ For more detailed instructions check out the [installation steps](https://ajdg.s
64
 
65
  For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
66
 
67
- = AdRotate 5.8.20 =
68
- * [fix] Advert no longer fails evaluation if a script tag is present
69
- * [i18n] Corrected 'Post Injection' labels in Dutch translation
70
-
71
- = AdRotate 5.8.19 =
72
- * [i18n] Improved Italian translation (Thanks Davide)
73
- * [i18n] Improved Dutch translation
74
- * [i18n] All translations updated using auto-translate
75
- * [change] More consistent use of the word advert vs ad
76
- * [change] Simplified settings text in General Settings
77
- * [change] Cleaner dashboard when creating adverts
78
- * [fix] Tabindex on dashboards now in the right order
79
-
80
- = AdRotate 5.8.18 =
81
- * [i18n] Added Portuguese translation (pt_BR)
82
-
83
- = AdRotate 5.8.17 =
84
- * [fix] Labels for all checkboxes
85
- * [update] HTML dashboard code cleanup
86
-
87
- = AdRotate Professional 5.8.13 =
88
- * [reversal] Re-added option to disable dynamic mode on mobile
89
- * [change] Simplified settings text in General Settings
90
- * [change] Merged Advertiser tab into Roles tab
91
- * [change] Removed global permissions for advertisers
92
- * [change] Advertiser advert creation dashboard overhauled
93
- * [change] Geo Targeting now matches city/state/country independently
94
- * [change] Geo Targeting now filters faster
95
- * [new] Edit/Create adverts are now separate permissions for advertisers
96
- * [new] User Profile controls for advertisers expanded and overhauled
97
- * [fix] Advertiser permissions work more reliably
98
- * [fix] Advert no longer fails evaluation if a script tag is present
99
- * [fix] Initiate sessions a bit later
100
- * [i18n] Corrected 'Post Injection' labels in Dutch translation
101
 
102
  Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
103
 
@@ -148,6 +133,9 @@ Yes!
148
  = Does AdRotate work with bbPress? =
149
  Yes!
150
 
 
 
 
151
  == Screenshots ==
152
 
153
  1. The AdRotate menu
1
  === AdRotate - Ad manager & AdSense Ads ===
2
  Contributors: adegans
3
  Donate link: https://ajdg.solutions/go/donate/adrotatefree
4
+ Tags: adverts, ads, banners, advert manager, ad manager, banner manager, monetize, revenue, place banners, google, adsense, dfp, doubleclick, amazon, affiliate, referral, ClassicPress
5
+ Requires at least: 4.9
6
  Requires PHP: 5.6
7
  Tested up to: 5.8
8
+ Stable tag: 5.8.21
9
  License: GPLv3
10
 
11
  Manage all your advertising campaigns and affiliate banners/links with ease. Use any advert banner or link and place them anywhere on your site. Use many powerful features to run successful campaigns and increase your revenue.
40
  * Mobile ads
41
  * Portable ads
42
  * Export statistics to CSV files
43
+ * Compatible with ClassicPress
44
 
45
  AdRotate and AdRotate Professional share many features. But some features are exclusively available in AdRotate Professional. Learn more about [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme) on my website.
46
 
65
 
66
  For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
67
 
68
+ = AdRotate 5.8.21 =
69
+ * [new] Warning if %image% is used in adverts
70
+ * [update] Updated dashboard
71
+ * [change] Removed support for %image% tag, use %asset% instead
72
+ * [fix] Error status for script/ins/iframe ads with statistics enabled
73
+ * [fix] Error status for ads without a link with statistics enabled
74
+ * [fix] Improved PHP8 compatibility
75
+ * [fix] Dashboard tweaks
76
+
77
+ = AdRotate Professional 5.8.15 =
78
+ * [new] Enable stats for clicks or impressions for supported adverts
79
+ * [new] Warning if %image% is used in adverts
80
+ * [new] Enable/disable 7 day notification of expiring adverts
81
+ * [update] Updated dashboard
82
+ * [fix] Error status for script/ins/iframe ads with click counting enabled
83
+ * [fix] Error status for ads without a link with click counting enabled
84
+ * [fix] Better session handling
85
+ * [i18n] Added more translation strings for email notifications
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
  Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
88
 
133
  = Does AdRotate work with bbPress? =
134
  Yes!
135
 
136
+ = Does AdRotate work with ClassicPress? =
137
+ Yes!
138
+
139
  == Screenshots ==
140
 
141
  1. The AdRotate menu