AdRotate Banner Manager - Version 4.6.2

Version Description

FREE = * [fix] Undefined index notices for code generator * [fix] Hide 'Generated' adverts in when editing groups * [i18n] Updated language files

Download this release

Release Info

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

Code changes from version 4.6.1 to 4.6.2

Files changed (44) hide show
  1. adrotate-functions.php +13 -14
  2. adrotate.php +2 -2
  3. dashboard/adrotatepro.php +22 -9
  4. dashboard/info.php +14 -8
  5. dashboard/publisher/adverts-edit.php +1 -1
  6. dashboard/publisher/groups-edit.php +1 -1
  7. images/arnan-credits.jpg +0 -0
  8. images/arnan-jungle.jpg +0 -0
  9. images/offers/dropbox.jpg +0 -0
  10. images/{medianet-large-1.jpg → offers/medianet-large-1.jpg} +0 -0
  11. images/{medianet-large-2.jpg → offers/medianet-large-2.jpg} +0 -0
  12. images/{medianet-large-3.jpg → offers/medianet-large-3.jpg} +0 -0
  13. images/{medianet-small-1.jpg → offers/medianet-small-1.jpg} +0 -0
  14. images/{medianet-small-2.jpg → offers/medianet-small-2.jpg} +0 -0
  15. images/{medianet-small-3.jpg → offers/medianet-small-3.jpg} +0 -0
  16. images/offers/namecheap-ssl.jpg +0 -0
  17. images/{demo-adblock.png → pro/demo-adblock.png} +0 -0
  18. images/{demo-geo-targeting.png → pro/demo-geo-targeting.png} +0 -0
  19. images/{demo-mobile.png → pro/demo-mobile.png} +0 -0
  20. images/{demo-notifications.png → pro/demo-notifications.png} +0 -0
  21. images/{demo-satisfy.png → pro/demo-satisfy.png} +0 -0
  22. images/{demo-schedule.png → pro/demo-schedule.png} +0 -0
  23. images/{demo-support.png → pro/demo-support.png} +0 -0
  24. language/adrotate-bg_BG.mo +0 -0
  25. language/adrotate-bg_BG.po +107 -101
  26. language/adrotate-el.mo +0 -0
  27. language/adrotate-el.po +105 -101
  28. language/adrotate-en_US.mo +0 -0
  29. language/adrotate-en_US.po +105 -101
  30. language/adrotate-es_ES.mo +0 -0
  31. language/adrotate-es_ES.po +105 -101
  32. language/adrotate-fr_FR.mo +0 -0
  33. language/adrotate-fr_FR.po +105 -101
  34. language/adrotate-id_ID.mo +0 -0
  35. language/adrotate-id_ID.po +111 -102
  36. language/adrotate-ja.mo +0 -0
  37. language/adrotate-ja.po +105 -101
  38. language/adrotate-pl_PL.mo +0 -0
  39. language/adrotate-pl_PL.po +105 -101
  40. language/adrotate-sr_RS.mo +0 -0
  41. language/adrotate-sr_RS.po +105 -101
  42. language/adrotate-sv_SV.mo +0 -0
  43. language/adrotate-sv_SV.po +105 -101
  44. readme.txt +6 -16
adrotate-functions.php CHANGED
@@ -680,19 +680,11 @@ function adrotate_folder_contents($current, $kind = 'all') {
680
  global $wpdb, $adrotate_config;
681
 
682
  $output = '';
683
- $siteurl = get_option('siteurl');
 
684
 
685
  // Read Banner folder
686
- $files = array();
687
- $i = 0;
688
- if($handle = opendir(WP_CONTENT_DIR."/".$adrotate_config['banner_folder'])) {
689
- while (false !== ($file = readdir($handle))) {
690
- if ($file != "." AND $file != ".." AND $file != "index.php") {
691
- $files[] = $file;
692
- $i++;
693
- }
694
- }
695
- closedir($handle);
696
  if($kind == "image") {
697
  $extensions = array('jpg', 'jpeg', 'gif', 'png');
698
  } else if($kind == "html5") {
@@ -701,11 +693,18 @@ function adrotate_folder_contents($current, $kind = 'all') {
701
  $extensions = array('jpg', 'jpeg', 'gif', 'png', 'swf', 'flv', 'html', 'htm');
702
  }
703
 
 
 
 
 
 
 
 
 
704
  if($i > 0) {
705
  sort($files);
706
  foreach($files as $file) {
707
  $fileinfo = pathinfo($file);
708
-
709
  if(in_array($fileinfo['extension'], $extensions)) {
710
  $output .= "<option value='".$file."'";
711
  if(($current == WP_CONTENT_URL.'/banners/'.$file) OR ($current == WP_CONTENT_URL."/%folder%/".$file)) { $output .= "selected"; }
@@ -713,10 +712,10 @@ function adrotate_folder_contents($current, $kind = 'all') {
713
  }
714
  }
715
  } else {
716
- $output .= "<option disabled>&nbsp;&nbsp;&nbsp;".__('No files found', 'adrotate')."</option>";
717
  }
718
  } else {
719
- $output .= "<option disabled>&nbsp;&nbsp;&nbsp;".__('Folder not found or not accessible', 'adrotate')."</option>";
720
  }
721
 
722
  return $output;
680
  global $wpdb, $adrotate_config;
681
 
682
  $output = '';
683
+ $asset_folder = WP_CONTENT_DIR."/".$adrotate_config['banner_folder'];
684
+ $files = array();
685
 
686
  // Read Banner folder
687
+ if($handle = opendir($asset_folder)) {
 
 
 
 
 
 
 
 
 
688
  if($kind == "image") {
689
  $extensions = array('jpg', 'jpeg', 'gif', 'png');
690
  } else if($kind == "html5") {
693
  $extensions = array('jpg', 'jpeg', 'gif', 'png', 'swf', 'flv', 'html', 'htm');
694
  }
695
 
696
+ while (false !== ($file = readdir($handle))) {
697
+ if($file != "." AND $file != ".." AND $file != "index.php" AND $file != ".DS_Store" AND !is_dir($asset_folder.'/'.$file)) {
698
+ $files[] = $file;
699
+ }
700
+ }
701
+ closedir($handle);
702
+
703
+ $i = count($files);
704
  if($i > 0) {
705
  sort($files);
706
  foreach($files as $file) {
707
  $fileinfo = pathinfo($file);
 
708
  if(in_array($fileinfo['extension'], $extensions)) {
709
  $output .= "<option value='".$file."'";
710
  if(($current == WP_CONTENT_URL.'/banners/'.$file) OR ($current == WP_CONTENT_URL."/%folder%/".$file)) { $output .= "selected"; }
712
  }
713
  }
714
  } else {
715
+ $output .= "<option disabled>&nbsp;&nbsp;&nbsp;".__('No files found', 'adrotate-pro')."</option>";
716
  }
717
  } else {
718
+ $output .= "<option disabled>&nbsp;&nbsp;&nbsp;".__('Folder not found or not accessible', 'adrotate-pro')."</option>";
719
  }
720
 
721
  return $output;
adrotate.php CHANGED
@@ -7,7 +7,7 @@ Author URI: http://ajdg.solutions/?utm_campaign=homepage&utm_medium=plugin-info&
7
  Description: Monetise your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
  Domain Path: /languages/
10
- Version: 4.6.1
11
  License: GPLv3
12
  */
13
 
@@ -22,7 +22,7 @@ License: GPLv3
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
- define("ADROTATE_DISPLAY", '4.6.1');
26
  define("ADROTATE_VERSION", 391);
27
  define("ADROTATE_DB_VERSION", 64);
28
  $plugin_folder = plugin_dir_path(__FILE__);
7
  Description: Monetise your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
  Domain Path: /languages/
10
+ Version: 4.6.2
11
  License: GPLv3
12
  */
13
 
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
+ define("ADROTATE_DISPLAY", '4.6.2');
26
  define("ADROTATE_VERSION", 391);
27
  define("ADROTATE_DB_VERSION", 64);
28
  $plugin_folder = plugin_dir_path(__FILE__);
dashboard/adrotatepro.php CHANGED
@@ -20,36 +20,49 @@
20
  <h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
21
  <div class="postbox-ajdg">
22
  <div class="inside">
23
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-satisfy.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
24
  </div>
25
  </div>
26
 
27
  <h3><?php _e('Mobile campaigns', 'adrotate'); ?></h3>
28
  <div class="postbox-ajdg">
29
  <div class="inside">
30
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-mobile.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Target mobile users with ease and show the right adverts to smartphones, tablets and computers. Mix and match as you please and offer adverts that suit the device or mobile operating system. Create as many mobile adverts as you want without effort and with a few easy to use options they show up where you want them to!', 'adrotate'); ?></p>
31
  </div>
32
  </div>
33
 
34
  <h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
35
  <div class="postbox-ajdg">
36
  <div class="inside">
37
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-geo-targeting.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMind GeoIP2: Precision or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
38
  </div>
39
  </div>
40
 
41
  <h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
42
  <div class="postbox-ajdg">
43
  <div class="inside">
44
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-support.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('When you activate your AdRotate Pro license you can use fast and personal email support. No more queueing up in the forums. AdRotate premium support takes priority over the forums and is checked much more often than the forum. Get a solution (usually) within one business day.', 'adrotate'); ?></p>
45
  </div>
46
  </div>
47
 
48
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
49
  <div class="postbox-ajdg">
50
  <div class="inside">
51
- <p><?php _e('I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner to find out more about me and what I am doing!', 'adrotate'); ?></p>
52
- <a href="http://www.arnan.me/?pk_campaign=adrotate-free&pk_kwd=propage" title="arnan.me - Nomadic in the Philippines"><img src="<?php echo plugins_url('/images/arnan-credits.jpg', dirname(__FILE__)); ?>" alt="Arnan de Gans" align="center" class="ajdg-photo" width="100%" /></a>
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  </div>
54
  </div>
55
 
@@ -62,21 +75,21 @@
62
  <h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
63
  <div class="postbox-ajdg">
64
  <div class="inside">
65
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-schedule.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Schedule your adverts and set up advertising campaigns based on dates you or your advertisers specify without hassle. Seasonal adverts, weekly adverts, specific days in the week. You name it, AdRotate schedules it. This makes planning your revenue stream very flexible. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
66
  </div>
67
  </div>
68
 
69
  <h3><?php _e('Avoid adblockers', 'adrotate'); ?></h3>
70
  <div class="postbox-ajdg">
71
  <div class="inside">
72
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-adblock.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Try and avoid adblockers so your adverts get the exposure you want them to have. AdRotate Pro offers some advanced tools to deceive adblockers so your adverts are less likely to be removed. Of-course make sure you create your adverts smartly so these features reach their full potential!', 'adrotate'); ?></p>
73
  </div>
74
  </div>
75
 
76
  <h3><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h3>
77
  <div class="postbox-ajdg">
78
  <div class="inside">
79
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-notifications.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Additionally, send push notifications to your iOS or Android device. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
80
  </div>
81
  </div>
82
 
20
  <h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
21
  <div class="postbox-ajdg">
22
  <div class="inside">
23
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-satisfy.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
24
  </div>
25
  </div>
26
 
27
  <h3><?php _e('Mobile campaigns', 'adrotate'); ?></h3>
28
  <div class="postbox-ajdg">
29
  <div class="inside">
30
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-mobile.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Target mobile users with ease and show the right adverts to smartphones, tablets and computers. Mix and match as you please and offer adverts that suit the device or mobile operating system. Create as many mobile adverts as you want without effort and with a few easy to use options they show up where you want them to!', 'adrotate'); ?></p>
31
  </div>
32
  </div>
33
 
34
  <h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
35
  <div class="postbox-ajdg">
36
  <div class="inside">
37
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-geo-targeting.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMind GeoIP2: Precision or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
38
  </div>
39
  </div>
40
 
41
  <h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
42
  <div class="postbox-ajdg">
43
  <div class="inside">
44
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-support.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('When you activate your AdRotate Pro license you can use fast and personal email support. No more queueing up in the forums. AdRotate premium support takes priority over the forums and is checked much more often than the forum. Get a solution (usually) within one business day.', 'adrotate'); ?></p>
45
  </div>
46
  </div>
47
 
48
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
49
  <div class="postbox-ajdg">
50
  <div class="inside">
51
+ <script>(function(d, s, id) {
52
+ var js, fjs = d.getElementsByTagName(s)[0];
53
+ if (d.getElementById(id)) return;
54
+ js = d.createElement(s); js.id = id;
55
+ js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";
56
+ fjs.parentNode.insertBefore(js, fjs);
57
+ }(document, 'script', 'facebook-jssdk'));
58
+ </script>
59
+ <p><center><div class="fb-page"
60
+ data-href="https://www.facebook.com/Arnandegans"
61
+ data-width="490"
62
+ data-adapt-container-width="true"
63
+ data-hide-cover="false"
64
+ data-show-facepile="false">
65
+ </div></center></p>
66
  </div>
67
  </div>
68
 
75
  <h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
76
  <div class="postbox-ajdg">
77
  <div class="inside">
78
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-schedule.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Schedule your adverts and set up advertising campaigns based on dates you or your advertisers specify without hassle. Seasonal adverts, weekly adverts, specific days in the week. You name it, AdRotate schedules it. This makes planning your revenue stream very flexible. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
79
  </div>
80
  </div>
81
 
82
  <h3><?php _e('Avoid adblockers', 'adrotate'); ?></h3>
83
  <div class="postbox-ajdg">
84
  <div class="inside">
85
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-adblock.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Try and avoid adblockers so your adverts get the exposure you want them to have. AdRotate Pro offers some advanced tools to deceive adblockers so your adverts are less likely to be removed. Of-course make sure you create your adverts smartly so these features reach their full potential!', 'adrotate'); ?></p>
86
  </div>
87
  </div>
88
 
89
  <h3><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h3>
90
  <div class="postbox-ajdg">
91
  <div class="inside">
92
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/pro/demo-notifications.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Additionally, send push notifications to your iOS or Android device. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
93
  </div>
94
  </div>
95
 
dashboard/info.php CHANGED
@@ -75,7 +75,7 @@ $partner = mt_rand(1,3);
75
  data-show-facepile="false">
76
  </div></center></p>
77
  <?php wp_widget_rss_output(array(
78
- 'url' => array('http://www.arnan.me/feed/', 'http://ajdg.solutions/feed/'),
79
  'items' => 4,
80
  'show_summary' => 1,
81
  'show_author' => 0,
@@ -114,21 +114,27 @@ $partner = mt_rand(1,3);
114
  <h3><?php _e('Join the Media.net advertising network', 'adrotate'); ?></h3>
115
  <div class="postbox-ajdg">
116
  <div class="inside">
117
- <center><a href="http://ajdg.link/medianet" target="_blank"><img src="<?php echo plugins_url("/images/medianet-large-$partner.jpg", dirname(__FILE__)); ?>" width="440" /></a></center>
118
  <p><a href="http://ajdg.link/medianet" target="_blank">Media.net</a> is the <strong>#2 largest contextual ads platform</strong> in the world that provides its publishers with an <strong>exclusive access to the Yahoo! Bing Network of advertisers and $6bn worth of search demand.</strong></p>
119
 
120
- <p><a href="http://ajdg.link/medianet" target="_blank">Media.net</a> <strong>ads are contextual</strong> and hence always relevant to your content. They are also <strong>native by design</strong> and highly customizable, delivering a great user experience and higher CTRs.</p>
121
-
122
- <strong><u>Some of the benefits when joining Media.net</u></strong>
123
- <p>You <strong>get your own Account Manager</strong> at <a href="http://ajdg.link/medianet" target="_blank">Media.net</a> who guides you every step of the way with suggestions that will help you max your revenue potential. <a href="http://ajdg.link/medianet" target="_blank">Media.net</a> is <strong>the #1 alternative to Google Adsense</strong> and works very well with whatever your current revenue strategy may be.</p>
124
-
125
  <strong><u>Exclusive offer for AdRotate users</u></strong>
126
- <p>As an AdRotate user, sign up with <a href="http://ajdg.link/medianet" target="_blank">Media.net</a> and you'll earn 10% more, over and above your regular earnings for your first 3 months. <strong>Sign up now!</strong></p>
127
 
128
  <p><a class="button-primary" href="http://ajdg.link/medianet" target="_blank">Sign up with Media.net now &raquo;</a>&nbsp;&nbsp;<a class="button" target="_blank" href="http://ajdg.link/medianet">Learn more &raquo;</a></p>
129
  </div>
130
  </div>
131
 
 
 
 
 
 
 
 
 
 
 
 
132
  </div>
133
  </div>
134
 
75
  data-show-facepile="false">
76
  </div></center></p>
77
  <?php wp_widget_rss_output(array(
78
+ 'url' => 'http://ajdg.solutions/feed/',
79
  'items' => 4,
80
  'show_summary' => 1,
81
  'show_author' => 0,
114
  <h3><?php _e('Join the Media.net advertising network', 'adrotate'); ?></h3>
115
  <div class="postbox-ajdg">
116
  <div class="inside">
117
+ <center><a href="http://ajdg.link/medianet" target="_blank"><img src="<?php echo plugins_url("/images/offers/medianet-large-$partner.jpg", dirname(__FILE__)); ?>" width="440" /></a></center>
118
  <p><a href="http://ajdg.link/medianet" target="_blank">Media.net</a> is the <strong>#2 largest contextual ads platform</strong> in the world that provides its publishers with an <strong>exclusive access to the Yahoo! Bing Network of advertisers and $6bn worth of search demand.</strong></p>
119
 
 
 
 
 
 
120
  <strong><u>Exclusive offer for AdRotate users</u></strong>
121
+ <p>As an AdRotate user, sign up with <a href="http://ajdg.link/medianet" target="_blank">Media.net</a> and you'll earn 10% more, over and above your regular earnings for your first 3 months.</p>
122
 
123
  <p><a class="button-primary" href="http://ajdg.link/medianet" target="_blank">Sign up with Media.net now &raquo;</a>&nbsp;&nbsp;<a class="button" target="_blank" href="http://ajdg.link/medianet">Learn more &raquo;</a></p>
124
  </div>
125
  </div>
126
 
127
+ <h3><?php _e('Sponsored offers', 'adrotate'); ?></h3>
128
+ <div class="postbox-ajdg">
129
+ <div class="inside">
130
+ <p><center><a rel="nofollow" href="https://db.tt/lfQBwVVL3v"><img src="<?php echo plugins_url("/images/offers/dropbox.jpg", dirname(__FILE__)); ?>" width="440" alt="Dropbox.com"></a></center></p>
131
+ <p><center><a rel="nofollow" href="https://affiliate.namecheap.com/?affId=69775"><img src="<?php echo plugins_url("/images/offers/namecheap-ssl.jpg", dirname(__FILE__)); ?>" width="440" alt="Namecheap.com"></a></center></p>
132
+
133
+ <center><small><em><?php _e('These are affiliate banners, clicking them costs you nothing but it helps me and AdRotate a lot!', 'adrotate'); ?></em></small></center>
134
+
135
+ </div>
136
+ </div>
137
+
138
  </div>
139
  </div>
140
 
dashboard/publisher/adverts-edit.php CHANGED
@@ -127,7 +127,7 @@ if($edit_banner->imagetype == "field") {
127
  <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>
128
 
129
  <p><strong><?php _e('Get adverts from Media.net', 'adrotate'); ?></strong></p>
130
- <p><a href="http://ajdg.link/medianet" target="_blank"><img src="<?php echo plugins_url("../images/medianet-small-$partner.jpg", dirname(__FILE__)); ?>" width="250" /></a></p>
131
  </td>
132
  </tr>
133
  <tr>
127
  <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>
128
 
129
  <p><strong><?php _e('Get adverts from Media.net', 'adrotate'); ?></strong></p>
130
+ <p><a href="http://ajdg.link/medianet" target="_blank"><img src="<?php echo plugins_url("../images/offers/medianet-small-$partner.jpg", dirname(__FILE__)); ?>" width="250" /></a></p>
131
  </td>
132
  </tr>
133
  <tr>
dashboard/publisher/groups-edit.php CHANGED
@@ -24,7 +24,7 @@
24
 
25
  $edit_group = $wpdb->get_row("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = '$group_edit_id';");
26
  $groups = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
27
- $ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `type` FROM `{$wpdb->prefix}adrotate` WHERE (`type` != 'empty' AND `type` != 'a_empty') ORDER BY `id` ASC;");
28
  $linkmeta = $wpdb->get_results("SELECT `ad` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = '$group_edit_id' AND `user` = 0;");
29
 
30
  $meta_array = array();
24
 
25
  $edit_group = $wpdb->get_row("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `id` = '$group_edit_id';");
26
  $groups = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}adrotate_groups` WHERE `name` != '' ORDER BY `id` ASC;");
27
+ $ads = $wpdb->get_results("SELECT `id`, `title`, `tracker`, `weight`, `type` FROM `{$wpdb->prefix}adrotate` WHERE (`type` != 'empty' AND `type` != 'a_empty' AND `type` != 'generator') ORDER BY `id` ASC;");
28
  $linkmeta = $wpdb->get_results("SELECT `ad` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `group` = '$group_edit_id' AND `user` = 0;");
29
 
30
  $meta_array = array();
images/arnan-credits.jpg DELETED
Binary file
images/arnan-jungle.jpg DELETED
Binary file
images/offers/dropbox.jpg ADDED
Binary file
images/{medianet-large-1.jpg → offers/medianet-large-1.jpg} RENAMED
File without changes
images/{medianet-large-2.jpg → offers/medianet-large-2.jpg} RENAMED
File without changes
images/{medianet-large-3.jpg → offers/medianet-large-3.jpg} RENAMED
File without changes
images/{medianet-small-1.jpg → offers/medianet-small-1.jpg} RENAMED
File without changes
images/{medianet-small-2.jpg → offers/medianet-small-2.jpg} RENAMED
File without changes
images/{medianet-small-3.jpg → offers/medianet-small-3.jpg} RENAMED
File without changes
images/offers/namecheap-ssl.jpg ADDED
Binary file
images/{demo-adblock.png → pro/demo-adblock.png} RENAMED
File without changes
images/{demo-geo-targeting.png → pro/demo-geo-targeting.png} RENAMED
File without changes
images/{demo-mobile.png → pro/demo-mobile.png} RENAMED
File without changes
images/{demo-notifications.png → pro/demo-notifications.png} RENAMED
File without changes
images/{demo-satisfy.png → pro/demo-satisfy.png} RENAMED
File without changes
images/{demo-schedule.png → pro/demo-schedule.png} RENAMED
File without changes
images/{demo-support.png → pro/demo-support.png} RENAMED
File without changes
language/adrotate-bg_BG.mo CHANGED
Binary file
language/adrotate-bg_BG.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: 2017-08-19 13:54+0800\n"
6
- "PO-Revision-Date: 2017-08-19 13:54+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
@@ -17,109 +17,109 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:716
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
- #: adrotate-functions.php:719
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
- #: adrotate-functions.php:804
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:808
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:812
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
- #: adrotate-functions.php:816
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
- #: adrotate-functions.php:820
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
- #: adrotate-functions.php:824
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
- #: adrotate-functions.php:828
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
- #: adrotate-functions.php:832
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
- #: adrotate-functions.php:836
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
- #: adrotate-functions.php:840
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
- #: adrotate-functions.php:844
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
- #: adrotate-functions.php:849
75
  msgid "Settings saved"
76
  msgstr "Настройките са запазени"
77
 
78
- #: adrotate-functions.php:853
79
  msgid "Database optimized"
80
  msgstr "Базата данни е оптимизирана"
81
 
82
- #: adrotate-functions.php:857
83
  msgid "Database repaired"
84
  msgstr "Базата данни е поправена"
85
 
86
- #: adrotate-functions.php:861
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
89
 
90
- #: adrotate-functions.php:865
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Почистване на базата данни"
95
 
96
- #: adrotate-functions.php:870
97
  msgid "Action prohibited"
98
  msgstr "Забранено действие"
99
 
100
- #: adrotate-functions.php:874
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
104
  msgstr ""
105
 
106
- #: adrotate-functions.php:878
107
  msgid "No data found in selected time period"
108
  msgstr "Не е намерена информация за избрания период"
109
 
110
- #: adrotate-functions.php:882
111
  msgid "Database can only be optimized or cleaned once every hour"
112
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
113
 
114
- #: adrotate-functions.php:886
115
  msgid "Form can not be (partially) empty!"
116
  msgstr ""
117
 
118
- #: adrotate-functions.php:890
119
  msgid "No ads found."
120
  msgstr ""
121
 
122
- #: adrotate-functions.php:894
123
  msgid "Unexpected error"
124
  msgstr ""
125
 
@@ -220,13 +220,13 @@ msgstr ""
220
  msgid "Your AdRotate Banner folder is not writable or does not exist."
221
  msgstr ""
222
 
223
- #: adrotate-output.php:685 dashboard/adrotatepro.php:87
224
- #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
225
- #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
226
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
227
- #: dashboard/adrotatepro.php:102 dashboard/info.php:83 dashboard/info.php:84
228
- #: dashboard/info.php:85 dashboard/info.php:86 dashboard/info.php:90
229
- #: dashboard/info.php:91 dashboard/info.php:92 dashboard/info.php:93
230
  #: dashboard/settings/geotargeting.php:35
231
  msgid "Buy now"
232
  msgstr "Купи сега"
@@ -265,7 +265,7 @@ msgstr ""
265
  msgid "manuals"
266
  msgstr "ръководства"
267
 
268
- #: adrotate-output.php:747 adrotate-output.php:817
269
  msgid "and"
270
  msgstr "и"
271
 
@@ -302,127 +302,129 @@ msgid "Support AdRotate"
302
  msgstr "Подкрепете AdRotate"
303
 
304
  #: adrotate-output.php:810
305
- msgid "Check out my website"
306
  msgstr ""
307
 
308
- #: adrotate-output.php:817
309
  msgid ""
310
  "Many users only think to review AdRotate when something goes wrong while "
311
  "thousands of people happily use AdRotate."
312
  msgstr ""
313
 
314
- #: adrotate-output.php:817
315
  msgid "If you find AdRotate useful please leave your"
316
  msgstr ""
317
 
318
- #: adrotate-output.php:817
319
  msgid "rating"
320
  msgstr "оценка"
321
 
322
- #: adrotate-output.php:817
323
  msgid "review"
324
  msgstr "мнение"
325
 
326
- #: adrotate-output.php:817
327
- msgid "on WordPress.org to help AdRotate grow in a positive way"
 
 
328
  msgstr "на WordPress.org, за да се развива AdRotate"
329
 
330
- #: adrotate-output.php:843 dashboard/settings/notifications.php:50
331
  #: dashboard/settings/notifications.php:80
332
  msgid "Available in AdRotate Pro"
333
  msgstr "Налично в AdRotate Pro"
334
 
335
- #: adrotate-output.php:843
336
  msgid "More information..."
337
  msgstr "Повече информация..."
338
 
339
- #: adrotate-output.php:844
340
  msgid "This feature is available in AdRotate Pro"
341
  msgstr "Тази функционалност е налична в AdRotate Pro"
342
 
343
- #: adrotate-output.php:844
344
  msgid "Learn more"
345
  msgstr "Повече информация"
346
 
347
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:220
348
  #: dashboard/publisher/adverts-edit.php:241
349
  msgid "January"
350
  msgstr "Януари"
351
 
352
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:221
353
  #: dashboard/publisher/adverts-edit.php:242
354
  msgid "February"
355
  msgstr "Февруари"
356
 
357
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:222
358
  #: dashboard/publisher/adverts-edit.php:243
359
  msgid "March"
360
  msgstr "Март"
361
 
362
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:223
363
  #: dashboard/publisher/adverts-edit.php:244
364
  msgid "April"
365
  msgstr "Април"
366
 
367
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:224
368
  #: dashboard/publisher/adverts-edit.php:245
369
  msgid "May"
370
  msgstr "Май"
371
 
372
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:225
373
  #: dashboard/publisher/adverts-edit.php:246
374
  msgid "June"
375
  msgstr "Юни"
376
 
377
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:226
378
  #: dashboard/publisher/adverts-edit.php:247
379
  msgid "July"
380
  msgstr "Юли"
381
 
382
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:227
383
  #: dashboard/publisher/adverts-edit.php:248
384
  msgid "August"
385
  msgstr "Август"
386
 
387
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:228
388
  #: dashboard/publisher/adverts-edit.php:249
389
  msgid "September"
390
  msgstr "Септември"
391
 
392
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:229
393
  #: dashboard/publisher/adverts-edit.php:250
394
  msgid "October"
395
  msgstr "Октомври"
396
 
397
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:230
398
  #: dashboard/publisher/adverts-edit.php:251
399
  msgid "November"
400
  msgstr "Ноември"
401
 
402
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:231
403
  #: dashboard/publisher/adverts-edit.php:252
404
  msgid "December"
405
  msgstr "Декември"
406
 
407
- #: adrotate-statistics.php:169
408
  msgid "Previous"
409
  msgstr "Предишен"
410
 
411
- #: adrotate-statistics.php:171 dashboard/publisher/statistics-advert.php:67
412
  #: dashboard/publisher/statistics-group.php:73
413
  #: dashboard/publisher/statistics-main.php:37
414
  msgid "This month"
415
  msgstr "Този месец"
416
 
417
- #: adrotate-statistics.php:172
418
  msgid "Next"
419
  msgstr "Следващ"
420
 
421
- #: adrotate-statistics.php:267
422
  msgid "No data to show!"
423
  msgstr "Няма информация!"
424
 
425
- #: adrotate-statistics.php:344 adrotate-statistics.php:345
426
  #, fuzzy
427
  #| msgid "No files found"
428
  msgid "Not found"
@@ -668,17 +670,11 @@ msgstr ""
668
  msgid "AdRotate is brought to you by"
669
  msgstr "AdRotate достига до Вас, благодарение на"
670
 
671
- #: dashboard/adrotatepro.php:51
672
- msgid ""
673
- "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
674
- "to find out more about me and what I am doing!"
675
- msgstr ""
676
-
677
- #: dashboard/adrotatepro.php:62
678
  msgid "Schedule all campaigns with ease"
679
  msgstr "Планиране на всички кампании с лекота"
680
 
681
- #: dashboard/adrotatepro.php:65
682
  msgid ""
683
  "Schedule your adverts and set up advertising campaigns based on dates you or "
684
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
@@ -687,11 +683,11 @@ msgid ""
687
  "schedules for adverts."
688
  msgstr ""
689
 
690
- #: dashboard/adrotatepro.php:69
691
  msgid "Avoid adblockers"
692
  msgstr ""
693
 
694
- #: dashboard/adrotatepro.php:72
695
  msgid ""
696
  "Try and avoid adblockers so your adverts get the exposure you want them to "
697
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
@@ -699,11 +695,11 @@ msgid ""
699
  "adverts smartly so these features reach their full potential!"
700
  msgstr ""
701
 
702
- #: dashboard/adrotatepro.php:76
703
  msgid "Stay up-to-date with notifications"
704
  msgstr ""
705
 
706
- #: dashboard/adrotatepro.php:79
707
  msgid ""
708
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
709
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -711,89 +707,89 @@ msgid ""
711
  "or when advertisers create new adverts. Never miss an expiration date again."
712
  msgstr ""
713
 
714
- #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
715
- #: dashboard/info.php:79
716
  msgid "Buy AdRotate Professional"
717
  msgstr "Купете AdRotate Professional"
718
 
719
- #: dashboard/adrotatepro.php:87 dashboard/info.php:83
720
  msgid "Single License"
721
  msgstr ""
722
 
723
- #: dashboard/adrotatepro.php:87 dashboard/info.php:83
724
  msgid "One WordPress installation."
725
  msgstr ""
726
 
727
- #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
728
- #: dashboard/info.php:84 dashboard/info.php:91
729
  msgid "Duo License"
730
  msgstr "Duo лиценз"
731
 
732
- #: dashboard/adrotatepro.php:88 dashboard/info.php:84
733
  msgid "Two WordPress installations."
734
  msgstr ""
735
 
736
- #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
737
- #: dashboard/info.php:85 dashboard/info.php:92
738
  msgid "Multi License"
739
  msgstr "Multi лиценз"
740
 
741
- #: dashboard/adrotatepro.php:89 dashboard/info.php:85
742
  msgid "Up to five WordPress installations."
743
  msgstr ""
744
 
745
- #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
746
- #: dashboard/info.php:86 dashboard/info.php:93
747
  msgid "Developer License"
748
  msgstr "Developer лиценз"
749
 
750
- #: dashboard/adrotatepro.php:90 dashboard/info.php:86
751
  msgid "Unlimited WordPress installations and/or networks."
752
  msgstr ""
753
 
754
- #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
755
- #: dashboard/info.php:87 dashboard/info.php:95
756
  msgid "Compare licenses"
757
  msgstr "Сравнение на лицензи"
758
 
759
- #: dashboard/adrotatepro.php:91 dashboard/info.php:87
760
  msgid "Not sure which license is for you? Compare them..."
761
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
762
 
763
- #: dashboard/adrotatepro.php:91 dashboard/info.php:87
764
  msgid "All Licenses"
765
  msgstr "Всички лицензи"
766
 
767
- #: dashboard/adrotatepro.php:99 dashboard/info.php:90
768
  msgid "Lifetime License"
769
  msgstr ""
770
 
771
- #: dashboard/adrotatepro.php:99 dashboard/info.php:90
772
  msgid "Single installation."
773
  msgstr ""
774
 
775
- #: dashboard/adrotatepro.php:100 dashboard/info.php:91
776
  msgid "Up to 2 installations."
777
  msgstr ""
778
 
779
- #: dashboard/adrotatepro.php:101 dashboard/info.php:92
780
  msgid "Up to 10 installations."
781
  msgstr ""
782
 
783
- #: dashboard/adrotatepro.php:102 dashboard/info.php:93
784
  msgid "Up to 25 installations or multisite networks."
785
  msgstr ""
786
 
787
- #: dashboard/adrotatepro.php:103 dashboard/info.php:94
788
  msgid ""
789
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
790
  msgstr ""
791
 
792
- #: dashboard/adrotatepro.php:104 dashboard/info.php:95
793
  msgid "Not sure which license is for you?"
794
  msgstr ""
795
 
796
- #: dashboard/adrotatepro.php:104 dashboard/info.php:95
797
  msgid "Compare Licenses"
798
  msgstr ""
799
 
@@ -827,10 +823,20 @@ msgstr ""
827
  msgid "Arnan de Gans News & Updates"
828
  msgstr ""
829
 
830
- #: dashboard/info.php:100
831
  msgid "Join the Media.net advertising network"
832
  msgstr ""
833
 
 
 
 
 
 
 
 
 
 
 
834
  #: dashboard/publisher/adverts-disabled.php:15
835
  msgid "Disabled Adverts"
836
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-04 13:21+0800\n"
6
+ "PO-Revision-Date: 2017-09-04 13:21+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:715
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:718
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-functions.php:803
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:807
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:811
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
+ #: adrotate-functions.php:815
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
+ #: adrotate-functions.php:819
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
+ #: adrotate-functions.php:823
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
+ #: adrotate-functions.php:827
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
+ #: adrotate-functions.php:831
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
+ #: adrotate-functions.php:835
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
+ #: adrotate-functions.php:839
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
+ #: adrotate-functions.php:843
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
+ #: adrotate-functions.php:848
75
  msgid "Settings saved"
76
  msgstr "Настройките са запазени"
77
 
78
+ #: adrotate-functions.php:852
79
  msgid "Database optimized"
80
  msgstr "Базата данни е оптимизирана"
81
 
82
+ #: adrotate-functions.php:856
83
  msgid "Database repaired"
84
  msgstr "Базата данни е поправена"
85
 
86
+ #: adrotate-functions.php:860
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
89
 
90
+ #: adrotate-functions.php:864
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Почистване на базата данни"
95
 
96
+ #: adrotate-functions.php:869
97
  msgid "Action prohibited"
98
  msgstr "Забранено действие"
99
 
100
+ #: adrotate-functions.php:873
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
104
  msgstr ""
105
 
106
+ #: adrotate-functions.php:877
107
  msgid "No data found in selected time period"
108
  msgstr "Не е намерена информация за избрания период"
109
 
110
+ #: adrotate-functions.php:881
111
  msgid "Database can only be optimized or cleaned once every hour"
112
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
113
 
114
+ #: adrotate-functions.php:885
115
  msgid "Form can not be (partially) empty!"
116
  msgstr ""
117
 
118
+ #: adrotate-functions.php:889
119
  msgid "No ads found."
120
  msgstr ""
121
 
122
+ #: adrotate-functions.php:893
123
  msgid "Unexpected error"
124
  msgstr ""
125
 
220
  msgid "Your AdRotate Banner folder is not writable or does not exist."
221
  msgstr ""
222
 
223
+ #: adrotate-output.php:685 dashboard/adrotatepro.php:100
224
+ #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
225
+ #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
226
+ #: dashboard/adrotatepro.php:113 dashboard/adrotatepro.php:114
227
+ #: dashboard/adrotatepro.php:115 dashboard/info.php:97 dashboard/info.php:98
228
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
229
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
230
  #: dashboard/settings/geotargeting.php:35
231
  msgid "Buy now"
232
  msgstr "Купи сега"
265
  msgid "manuals"
266
  msgstr "ръководства"
267
 
268
+ #: adrotate-output.php:747 adrotate-output.php:816
269
  msgid "and"
270
  msgstr "и"
271
 
302
  msgstr "Подкрепете AdRotate"
303
 
304
  #: adrotate-output.php:810
305
+ msgid "Follow me on Facebook"
306
  msgstr ""
307
 
308
+ #: adrotate-output.php:816
309
  msgid ""
310
  "Many users only think to review AdRotate when something goes wrong while "
311
  "thousands of people happily use AdRotate."
312
  msgstr ""
313
 
314
+ #: adrotate-output.php:816
315
  msgid "If you find AdRotate useful please leave your"
316
  msgstr ""
317
 
318
+ #: adrotate-output.php:816
319
  msgid "rating"
320
  msgstr "оценка"
321
 
322
+ #: adrotate-output.php:816
323
  msgid "review"
324
  msgstr "мнение"
325
 
326
+ #: adrotate-output.php:816
327
+ #, fuzzy
328
+ #| msgid "on WordPress.org to help AdRotate grow in a positive way"
329
+ msgid "on WordPress.org to help AdRotate grow!"
330
  msgstr "на WordPress.org, за да се развива AdRotate"
331
 
332
+ #: adrotate-output.php:850 dashboard/settings/notifications.php:50
333
  #: dashboard/settings/notifications.php:80
334
  msgid "Available in AdRotate Pro"
335
  msgstr "Налично в AdRotate Pro"
336
 
337
+ #: adrotate-output.php:850
338
  msgid "More information..."
339
  msgstr "Повече информация..."
340
 
341
+ #: adrotate-output.php:851
342
  msgid "This feature is available in AdRotate Pro"
343
  msgstr "Тази функционалност е налична в AdRotate Pro"
344
 
345
+ #: adrotate-output.php:851
346
  msgid "Learn more"
347
  msgstr "Повече информация"
348
 
349
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:220
350
  #: dashboard/publisher/adverts-edit.php:241
351
  msgid "January"
352
  msgstr "Януари"
353
 
354
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:221
355
  #: dashboard/publisher/adverts-edit.php:242
356
  msgid "February"
357
  msgstr "Февруари"
358
 
359
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:222
360
  #: dashboard/publisher/adverts-edit.php:243
361
  msgid "March"
362
  msgstr "Март"
363
 
364
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:223
365
  #: dashboard/publisher/adverts-edit.php:244
366
  msgid "April"
367
  msgstr "Април"
368
 
369
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:224
370
  #: dashboard/publisher/adverts-edit.php:245
371
  msgid "May"
372
  msgstr "Май"
373
 
374
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:225
375
  #: dashboard/publisher/adverts-edit.php:246
376
  msgid "June"
377
  msgstr "Юни"
378
 
379
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:226
380
  #: dashboard/publisher/adverts-edit.php:247
381
  msgid "July"
382
  msgstr "Юли"
383
 
384
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:227
385
  #: dashboard/publisher/adverts-edit.php:248
386
  msgid "August"
387
  msgstr "Август"
388
 
389
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:228
390
  #: dashboard/publisher/adverts-edit.php:249
391
  msgid "September"
392
  msgstr "Септември"
393
 
394
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:229
395
  #: dashboard/publisher/adverts-edit.php:250
396
  msgid "October"
397
  msgstr "Октомври"
398
 
399
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:230
400
  #: dashboard/publisher/adverts-edit.php:251
401
  msgid "November"
402
  msgstr "Ноември"
403
 
404
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:231
405
  #: dashboard/publisher/adverts-edit.php:252
406
  msgid "December"
407
  msgstr "Декември"
408
 
409
+ #: adrotate-statistics.php:164
410
  msgid "Previous"
411
  msgstr "Предишен"
412
 
413
+ #: adrotate-statistics.php:166 dashboard/publisher/statistics-advert.php:67
414
  #: dashboard/publisher/statistics-group.php:73
415
  #: dashboard/publisher/statistics-main.php:37
416
  msgid "This month"
417
  msgstr "Този месец"
418
 
419
+ #: adrotate-statistics.php:167
420
  msgid "Next"
421
  msgstr "Следващ"
422
 
423
+ #: adrotate-statistics.php:262
424
  msgid "No data to show!"
425
  msgstr "Няма информация!"
426
 
427
+ #: adrotate-statistics.php:339 adrotate-statistics.php:340
428
  #, fuzzy
429
  #| msgid "No files found"
430
  msgid "Not found"
670
  msgid "AdRotate is brought to you by"
671
  msgstr "AdRotate достига до Вас, благодарение на"
672
 
673
+ #: dashboard/adrotatepro.php:75
 
 
 
 
 
 
674
  msgid "Schedule all campaigns with ease"
675
  msgstr "Планиране на всички кампании с лекота"
676
 
677
+ #: dashboard/adrotatepro.php:78
678
  msgid ""
679
  "Schedule your adverts and set up advertising campaigns based on dates you or "
680
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
683
  "schedules for adverts."
684
  msgstr ""
685
 
686
+ #: dashboard/adrotatepro.php:82
687
  msgid "Avoid adblockers"
688
  msgstr ""
689
 
690
+ #: dashboard/adrotatepro.php:85
691
  msgid ""
692
  "Try and avoid adblockers so your adverts get the exposure you want them to "
693
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
695
  "adverts smartly so these features reach their full potential!"
696
  msgstr ""
697
 
698
+ #: dashboard/adrotatepro.php:89
699
  msgid "Stay up-to-date with notifications"
700
  msgstr ""
701
 
702
+ #: dashboard/adrotatepro.php:92
703
  msgid ""
704
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
705
  "adverts expire or need your attention. Additionally, send push notifications "
707
  "or when advertisers create new adverts. Never miss an expiration date again."
708
  msgstr ""
709
 
710
+ #: dashboard/adrotatepro.php:96 dashboard/adrotatepro.php:108
711
+ #: dashboard/info.php:93
712
  msgid "Buy AdRotate Professional"
713
  msgstr "Купете AdRotate Professional"
714
 
715
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:97
716
  msgid "Single License"
717
  msgstr ""
718
 
719
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:97
720
  msgid "One WordPress installation."
721
  msgstr ""
722
 
723
+ #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
724
+ #: dashboard/info.php:98 dashboard/info.php:105
725
  msgid "Duo License"
726
  msgstr "Duo лиценз"
727
 
728
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:98
729
  msgid "Two WordPress installations."
730
  msgstr ""
731
 
732
+ #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
733
+ #: dashboard/info.php:99 dashboard/info.php:106
734
  msgid "Multi License"
735
  msgstr "Multi лиценз"
736
 
737
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:99
738
  msgid "Up to five WordPress installations."
739
  msgstr ""
740
 
741
+ #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:115
742
+ #: dashboard/info.php:100 dashboard/info.php:107
743
  msgid "Developer License"
744
  msgstr "Developer лиценз"
745
 
746
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:100
747
  msgid "Unlimited WordPress installations and/or networks."
748
  msgstr ""
749
 
750
+ #: dashboard/adrotatepro.php:104 dashboard/adrotatepro.php:117
751
+ #: dashboard/info.php:101 dashboard/info.php:109
752
  msgid "Compare licenses"
753
  msgstr "Сравнение на лицензи"
754
 
755
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:101
756
  msgid "Not sure which license is for you? Compare them..."
757
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
758
 
759
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:101
760
  msgid "All Licenses"
761
  msgstr "Всички лицензи"
762
 
763
+ #: dashboard/adrotatepro.php:112 dashboard/info.php:104
764
  msgid "Lifetime License"
765
  msgstr ""
766
 
767
+ #: dashboard/adrotatepro.php:112 dashboard/info.php:104
768
  msgid "Single installation."
769
  msgstr ""
770
 
771
+ #: dashboard/adrotatepro.php:113 dashboard/info.php:105
772
  msgid "Up to 2 installations."
773
  msgstr ""
774
 
775
+ #: dashboard/adrotatepro.php:114 dashboard/info.php:106
776
  msgid "Up to 10 installations."
777
  msgstr ""
778
 
779
+ #: dashboard/adrotatepro.php:115 dashboard/info.php:107
780
  msgid "Up to 25 installations or multisite networks."
781
  msgstr ""
782
 
783
+ #: dashboard/adrotatepro.php:116 dashboard/info.php:108
784
  msgid ""
785
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
786
  msgstr ""
787
 
788
+ #: dashboard/adrotatepro.php:117 dashboard/info.php:109
789
  msgid "Not sure which license is for you?"
790
  msgstr ""
791
 
792
+ #: dashboard/adrotatepro.php:117 dashboard/info.php:109
793
  msgid "Compare Licenses"
794
  msgstr ""
795
 
823
  msgid "Arnan de Gans News & Updates"
824
  msgstr ""
825
 
826
+ #: dashboard/info.php:114
827
  msgid "Join the Media.net advertising network"
828
  msgstr ""
829
 
830
+ #: dashboard/info.php:127
831
+ msgid "Sponsored offers"
832
+ msgstr ""
833
+
834
+ #: dashboard/info.php:133
835
+ msgid ""
836
+ "These are affiliate banners, clicking them costs you nothing but it helps me "
837
+ "and AdRotate a lot!"
838
+ msgstr ""
839
+
840
  #: dashboard/publisher/adverts-disabled.php:15
841
  msgid "Disabled Adverts"
842
  msgstr ""
language/adrotate-el.mo CHANGED
Binary file
language/adrotate-el.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: 2017-08-19 13:54+0800\n"
6
- "PO-Revision-Date: 2017-08-19 13:54+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
@@ -18,114 +18,114 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:716
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
- #: adrotate-functions.php:719
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
- #: adrotate-functions.php:804
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
- #: adrotate-functions.php:808
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
- #: adrotate-functions.php:812
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
- #: adrotate-functions.php:816
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
- #: adrotate-functions.php:820
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
- #: adrotate-functions.php:824
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
- #: adrotate-functions.php:828
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
- #: adrotate-functions.php:832
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
- #: adrotate-functions.php:836
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
- #: adrotate-functions.php:840
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
- #: adrotate-functions.php:844
71
  msgid ""
72
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
73
  "below."
74
  msgstr ""
75
 
76
- #: adrotate-functions.php:849
77
  msgid "Settings saved"
78
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
79
 
80
- #: adrotate-functions.php:853
81
  msgid "Database optimized"
82
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
83
 
84
- #: adrotate-functions.php:857
85
  msgid "Database repaired"
86
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
87
 
88
- #: adrotate-functions.php:861
89
  msgid "Ads evaluated and statuses have been corrected where required"
90
  msgstr ""
91
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
92
  "χρειάστηκε"
93
 
94
- #: adrotate-functions.php:865
95
  #, fuzzy
96
  #| msgid "Clean-up Database"
97
  msgid "Cleanup complete"
98
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
99
 
100
- #: adrotate-functions.php:870
101
  msgid "Action prohibited"
102
  msgstr "Η ενέργεια απαγορεύεται"
103
 
104
- #: adrotate-functions.php:874
105
  msgid ""
106
  "The ad was saved but has an issue which might prevent it from working "
107
  "properly. Review the colored ad."
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:878
111
  msgid "No data found in selected time period"
112
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
113
 
114
- #: adrotate-functions.php:882
115
  msgid "Database can only be optimized or cleaned once every hour"
116
  msgstr ""
117
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
118
  "ώρα"
119
 
120
- #: adrotate-functions.php:886
121
  msgid "Form can not be (partially) empty!"
122
  msgstr ""
123
 
124
- #: adrotate-functions.php:890
125
  msgid "No ads found."
126
  msgstr ""
127
 
128
- #: adrotate-functions.php:894
129
  msgid "Unexpected error"
130
  msgstr ""
131
 
@@ -232,13 +232,13 @@ msgstr ""
232
  msgid "Your AdRotate Banner folder is not writable or does not exist."
233
  msgstr ""
234
 
235
- #: adrotate-output.php:685 dashboard/adrotatepro.php:87
236
- #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
237
- #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
238
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
239
- #: dashboard/adrotatepro.php:102 dashboard/info.php:83 dashboard/info.php:84
240
- #: dashboard/info.php:85 dashboard/info.php:86 dashboard/info.php:90
241
- #: dashboard/info.php:91 dashboard/info.php:92 dashboard/info.php:93
242
  #: dashboard/settings/geotargeting.php:35
243
  #, fuzzy
244
  msgid "Buy now"
@@ -271,7 +271,7 @@ msgstr ""
271
  msgid "manuals"
272
  msgstr "εγχειρίδια"
273
 
274
- #: adrotate-output.php:747 adrotate-output.php:817
275
  msgid "and"
276
  msgstr ""
277
 
@@ -312,130 +312,130 @@ msgid "Support AdRotate"
312
  msgstr "Υποστηρίξτε το AdRotate"
313
 
314
  #: adrotate-output.php:810
315
- msgid "Check out my website"
316
  msgstr ""
317
 
318
- #: adrotate-output.php:817
319
  msgid ""
320
  "Many users only think to review AdRotate when something goes wrong while "
321
  "thousands of people happily use AdRotate."
322
  msgstr ""
323
 
324
- #: adrotate-output.php:817
325
  msgid "If you find AdRotate useful please leave your"
326
  msgstr ""
327
 
328
- #: adrotate-output.php:817
329
  msgid "rating"
330
  msgstr ""
331
 
332
- #: adrotate-output.php:817
333
  #, fuzzy
334
  msgid "review"
335
  msgstr "Αξιολογήστε και σχολιάστε"
336
 
337
- #: adrotate-output.php:817
338
- msgid "on WordPress.org to help AdRotate grow in a positive way"
339
  msgstr ""
340
 
341
- #: adrotate-output.php:843 dashboard/settings/notifications.php:50
342
  #: dashboard/settings/notifications.php:80
343
  msgid "Available in AdRotate Pro"
344
  msgstr "Διαθέσιμο στο AdRotate Pro"
345
 
346
- #: adrotate-output.php:843
347
  #, fuzzy
348
  msgid "More information..."
349
  msgstr "Περισσότερες πληροφορίες"
350
 
351
- #: adrotate-output.php:844
352
  msgid "This feature is available in AdRotate Pro"
353
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
354
 
355
- #: adrotate-output.php:844
356
  #, fuzzy
357
  msgid "Learn more"
358
  msgstr "Μάθετε περισσότερα σχετικά"
359
 
360
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:220
361
  #: dashboard/publisher/adverts-edit.php:241
362
  msgid "January"
363
  msgstr "Ιανουάριος"
364
 
365
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:221
366
  #: dashboard/publisher/adverts-edit.php:242
367
  msgid "February"
368
  msgstr "Φεβρουάριος"
369
 
370
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:222
371
  #: dashboard/publisher/adverts-edit.php:243
372
  msgid "March"
373
  msgstr "Μάρτιος"
374
 
375
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:223
376
  #: dashboard/publisher/adverts-edit.php:244
377
  msgid "April"
378
  msgstr "Απρίλιος"
379
 
380
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:224
381
  #: dashboard/publisher/adverts-edit.php:245
382
  msgid "May"
383
  msgstr "Μάιος"
384
 
385
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:225
386
  #: dashboard/publisher/adverts-edit.php:246
387
  msgid "June"
388
  msgstr "Ιούνιος"
389
 
390
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:226
391
  #: dashboard/publisher/adverts-edit.php:247
392
  msgid "July"
393
  msgstr "Ιούλιος"
394
 
395
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:227
396
  #: dashboard/publisher/adverts-edit.php:248
397
  msgid "August"
398
  msgstr "Αύγουστος"
399
 
400
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:228
401
  #: dashboard/publisher/adverts-edit.php:249
402
  msgid "September"
403
  msgstr "Σεπτέμβριος"
404
 
405
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:229
406
  #: dashboard/publisher/adverts-edit.php:250
407
  msgid "October"
408
  msgstr "Οκτώβριος"
409
 
410
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:230
411
  #: dashboard/publisher/adverts-edit.php:251
412
  msgid "November"
413
  msgstr "Νοέμβριος"
414
 
415
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:231
416
  #: dashboard/publisher/adverts-edit.php:252
417
  msgid "December"
418
  msgstr "Δεκέμβριος"
419
 
420
- #: adrotate-statistics.php:169
421
  msgid "Previous"
422
  msgstr "Προηγούμενο"
423
 
424
- #: adrotate-statistics.php:171 dashboard/publisher/statistics-advert.php:67
425
  #: dashboard/publisher/statistics-group.php:73
426
  #: dashboard/publisher/statistics-main.php:37
427
  msgid "This month"
428
  msgstr "Αυτό το μήνα"
429
 
430
- #: adrotate-statistics.php:172
431
  msgid "Next"
432
  msgstr "Επόμενο"
433
 
434
- #: adrotate-statistics.php:267
435
  msgid "No data to show!"
436
  msgstr "Δεν υπάρχουν δεδομένα."
437
 
438
- #: adrotate-statistics.php:344 adrotate-statistics.php:345
439
  #, fuzzy
440
  #| msgid "No files found"
441
  msgid "Not found"
@@ -674,17 +674,11 @@ msgstr ""
674
  msgid "AdRotate is brought to you by"
675
  msgstr "Το AdRotate έρχεται από την "
676
 
677
- #: dashboard/adrotatepro.php:51
678
- msgid ""
679
- "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
680
- "to find out more about me and what I am doing!"
681
- msgstr ""
682
-
683
- #: dashboard/adrotatepro.php:62
684
  msgid "Schedule all campaigns with ease"
685
  msgstr ""
686
 
687
- #: dashboard/adrotatepro.php:65
688
  msgid ""
689
  "Schedule your adverts and set up advertising campaigns based on dates you or "
690
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
@@ -693,11 +687,11 @@ msgid ""
693
  "schedules for adverts."
694
  msgstr ""
695
 
696
- #: dashboard/adrotatepro.php:69
697
  msgid "Avoid adblockers"
698
  msgstr ""
699
 
700
- #: dashboard/adrotatepro.php:72
701
  msgid ""
702
  "Try and avoid adblockers so your adverts get the exposure you want them to "
703
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
@@ -705,11 +699,11 @@ msgid ""
705
  "adverts smartly so these features reach their full potential!"
706
  msgstr ""
707
 
708
- #: dashboard/adrotatepro.php:76
709
  msgid "Stay up-to-date with notifications"
710
  msgstr ""
711
 
712
- #: dashboard/adrotatepro.php:79
713
  msgid ""
714
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
715
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -717,91 +711,91 @@ msgid ""
717
  "or when advertisers create new adverts. Never miss an expiration date again."
718
  msgstr ""
719
 
720
- #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
721
- #: dashboard/info.php:79
722
  #, fuzzy
723
  msgid "Buy AdRotate Professional"
724
  msgstr "AdRotate Pro"
725
 
726
- #: dashboard/adrotatepro.php:87 dashboard/info.php:83
727
  msgid "Single License"
728
  msgstr ""
729
 
730
- #: dashboard/adrotatepro.php:87 dashboard/info.php:83
731
  msgid "One WordPress installation."
732
  msgstr ""
733
 
734
- #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
735
- #: dashboard/info.php:84 dashboard/info.php:91
736
  msgid "Duo License"
737
  msgstr ""
738
 
739
- #: dashboard/adrotatepro.php:88 dashboard/info.php:84
740
  msgid "Two WordPress installations."
741
  msgstr ""
742
 
743
- #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
744
- #: dashboard/info.php:85 dashboard/info.php:92
745
  msgid "Multi License"
746
  msgstr ""
747
 
748
- #: dashboard/adrotatepro.php:89 dashboard/info.php:85
749
  msgid "Up to five WordPress installations."
750
  msgstr ""
751
 
752
- #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
753
- #: dashboard/info.php:86 dashboard/info.php:93
754
  #, fuzzy
755
  msgid "Developer License"
756
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
757
 
758
- #: dashboard/adrotatepro.php:90 dashboard/info.php:86
759
  msgid "Unlimited WordPress installations and/or networks."
760
  msgstr ""
761
 
762
- #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
763
- #: dashboard/info.php:87 dashboard/info.php:95
764
  msgid "Compare licenses"
765
  msgstr ""
766
 
767
- #: dashboard/adrotatepro.php:91 dashboard/info.php:87
768
  msgid "Not sure which license is for you? Compare them..."
769
  msgstr ""
770
 
771
- #: dashboard/adrotatepro.php:91 dashboard/info.php:87
772
  msgid "All Licenses"
773
  msgstr ""
774
 
775
- #: dashboard/adrotatepro.php:99 dashboard/info.php:90
776
  msgid "Lifetime License"
777
  msgstr ""
778
 
779
- #: dashboard/adrotatepro.php:99 dashboard/info.php:90
780
  msgid "Single installation."
781
  msgstr ""
782
 
783
- #: dashboard/adrotatepro.php:100 dashboard/info.php:91
784
  msgid "Up to 2 installations."
785
  msgstr ""
786
 
787
- #: dashboard/adrotatepro.php:101 dashboard/info.php:92
788
  msgid "Up to 10 installations."
789
  msgstr ""
790
 
791
- #: dashboard/adrotatepro.php:102 dashboard/info.php:93
792
  msgid "Up to 25 installations or multisite networks."
793
  msgstr ""
794
 
795
- #: dashboard/adrotatepro.php:103 dashboard/info.php:94
796
  msgid ""
797
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
798
  msgstr ""
799
 
800
- #: dashboard/adrotatepro.php:104 dashboard/info.php:95
801
  msgid "Not sure which license is for you?"
802
  msgstr ""
803
 
804
- #: dashboard/adrotatepro.php:104 dashboard/info.php:95
805
  msgid "Compare Licenses"
806
  msgstr ""
807
 
@@ -835,10 +829,20 @@ msgstr ""
835
  msgid "Arnan de Gans News & Updates"
836
  msgstr ""
837
 
838
- #: dashboard/info.php:100
839
  msgid "Join the Media.net advertising network"
840
  msgstr ""
841
 
 
 
 
 
 
 
 
 
 
 
842
  #: dashboard/publisher/adverts-disabled.php:15
843
  msgid "Disabled Adverts"
844
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-04 13:21+0800\n"
6
+ "PO-Revision-Date: 2017-09-04 13:21+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:715
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:718
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-functions.php:803
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
+ #: adrotate-functions.php:807
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
+ #: adrotate-functions.php:811
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
+ #: adrotate-functions.php:815
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
+ #: adrotate-functions.php:819
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
+ #: adrotate-functions.php:823
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
+ #: adrotate-functions.php:827
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
+ #: adrotate-functions.php:831
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
+ #: adrotate-functions.php:835
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
+ #: adrotate-functions.php:839
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
+ #: adrotate-functions.php:843
71
  msgid ""
72
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
73
  "below."
74
  msgstr ""
75
 
76
+ #: adrotate-functions.php:848
77
  msgid "Settings saved"
78
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
79
 
80
+ #: adrotate-functions.php:852
81
  msgid "Database optimized"
82
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
83
 
84
+ #: adrotate-functions.php:856
85
  msgid "Database repaired"
86
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
87
 
88
+ #: adrotate-functions.php:860
89
  msgid "Ads evaluated and statuses have been corrected where required"
90
  msgstr ""
91
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
92
  "χρειάστηκε"
93
 
94
+ #: adrotate-functions.php:864
95
  #, fuzzy
96
  #| msgid "Clean-up Database"
97
  msgid "Cleanup complete"
98
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
99
 
100
+ #: adrotate-functions.php:869
101
  msgid "Action prohibited"
102
  msgstr "Η ενέργεια απαγορεύεται"
103
 
104
+ #: adrotate-functions.php:873
105
  msgid ""
106
  "The ad was saved but has an issue which might prevent it from working "
107
  "properly. Review the colored ad."
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:877
111
  msgid "No data found in selected time period"
112
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
113
 
114
+ #: adrotate-functions.php:881
115
  msgid "Database can only be optimized or cleaned once every hour"
116
  msgstr ""
117
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
118
  "ώρα"
119
 
120
+ #: adrotate-functions.php:885
121
  msgid "Form can not be (partially) empty!"
122
  msgstr ""
123
 
124
+ #: adrotate-functions.php:889
125
  msgid "No ads found."
126
  msgstr ""
127
 
128
+ #: adrotate-functions.php:893
129
  msgid "Unexpected error"
130
  msgstr ""
131
 
232
  msgid "Your AdRotate Banner folder is not writable or does not exist."
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:685 dashboard/adrotatepro.php:100
236
+ #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
237
+ #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
238
+ #: dashboard/adrotatepro.php:113 dashboard/adrotatepro.php:114
239
+ #: dashboard/adrotatepro.php:115 dashboard/info.php:97 dashboard/info.php:98
240
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
241
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
242
  #: dashboard/settings/geotargeting.php:35
243
  #, fuzzy
244
  msgid "Buy now"
271
  msgid "manuals"
272
  msgstr "εγχειρίδια"
273
 
274
+ #: adrotate-output.php:747 adrotate-output.php:816
275
  msgid "and"
276
  msgstr ""
277
 
312
  msgstr "Υποστηρίξτε το AdRotate"
313
 
314
  #: adrotate-output.php:810
315
+ msgid "Follow me on Facebook"
316
  msgstr ""
317
 
318
+ #: adrotate-output.php:816
319
  msgid ""
320
  "Many users only think to review AdRotate when something goes wrong while "
321
  "thousands of people happily use AdRotate."
322
  msgstr ""
323
 
324
+ #: adrotate-output.php:816
325
  msgid "If you find AdRotate useful please leave your"
326
  msgstr ""
327
 
328
+ #: adrotate-output.php:816
329
  msgid "rating"
330
  msgstr ""
331
 
332
+ #: adrotate-output.php:816
333
  #, fuzzy
334
  msgid "review"
335
  msgstr "Αξιολογήστε και σχολιάστε"
336
 
337
+ #: adrotate-output.php:816
338
+ msgid "on WordPress.org to help AdRotate grow!"
339
  msgstr ""
340
 
341
+ #: adrotate-output.php:850 dashboard/settings/notifications.php:50
342
  #: dashboard/settings/notifications.php:80
343
  msgid "Available in AdRotate Pro"
344
  msgstr "Διαθέσιμο στο AdRotate Pro"
345
 
346
+ #: adrotate-output.php:850
347
  #, fuzzy
348
  msgid "More information..."
349
  msgstr "Περισσότερες πληροφορίες"
350
 
351
+ #: adrotate-output.php:851
352
  msgid "This feature is available in AdRotate Pro"
353
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
354
 
355
+ #: adrotate-output.php:851
356
  #, fuzzy
357
  msgid "Learn more"
358
  msgstr "Μάθετε περισσότερα σχετικά"
359
 
360
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:220
361
  #: dashboard/publisher/adverts-edit.php:241
362
  msgid "January"
363
  msgstr "Ιανουάριος"
364
 
365
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:221
366
  #: dashboard/publisher/adverts-edit.php:242
367
  msgid "February"
368
  msgstr "Φεβρουάριος"
369
 
370
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:222
371
  #: dashboard/publisher/adverts-edit.php:243
372
  msgid "March"
373
  msgstr "Μάρτιος"
374
 
375
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:223
376
  #: dashboard/publisher/adverts-edit.php:244
377
  msgid "April"
378
  msgstr "Απρίλιος"
379
 
380
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:224
381
  #: dashboard/publisher/adverts-edit.php:245
382
  msgid "May"
383
  msgstr "Μάιος"
384
 
385
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:225
386
  #: dashboard/publisher/adverts-edit.php:246
387
  msgid "June"
388
  msgstr "Ιούνιος"
389
 
390
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:226
391
  #: dashboard/publisher/adverts-edit.php:247
392
  msgid "July"
393
  msgstr "Ιούλιος"
394
 
395
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:227
396
  #: dashboard/publisher/adverts-edit.php:248
397
  msgid "August"
398
  msgstr "Αύγουστος"
399
 
400
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:228
401
  #: dashboard/publisher/adverts-edit.php:249
402
  msgid "September"
403
  msgstr "Σεπτέμβριος"
404
 
405
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:229
406
  #: dashboard/publisher/adverts-edit.php:250
407
  msgid "October"
408
  msgstr "Οκτώβριος"
409
 
410
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:230
411
  #: dashboard/publisher/adverts-edit.php:251
412
  msgid "November"
413
  msgstr "Νοέμβριος"
414
 
415
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:231
416
  #: dashboard/publisher/adverts-edit.php:252
417
  msgid "December"
418
  msgstr "Δεκέμβριος"
419
 
420
+ #: adrotate-statistics.php:164
421
  msgid "Previous"
422
  msgstr "Προηγούμενο"
423
 
424
+ #: adrotate-statistics.php:166 dashboard/publisher/statistics-advert.php:67
425
  #: dashboard/publisher/statistics-group.php:73
426
  #: dashboard/publisher/statistics-main.php:37
427
  msgid "This month"
428
  msgstr "Αυτό το μήνα"
429
 
430
+ #: adrotate-statistics.php:167
431
  msgid "Next"
432
  msgstr "Επόμενο"
433
 
434
+ #: adrotate-statistics.php:262
435
  msgid "No data to show!"
436
  msgstr "Δεν υπάρχουν δεδομένα."
437
 
438
+ #: adrotate-statistics.php:339 adrotate-statistics.php:340
439
  #, fuzzy
440
  #| msgid "No files found"
441
  msgid "Not found"
674
  msgid "AdRotate is brought to you by"
675
  msgstr "Το AdRotate έρχεται από την "
676
 
677
+ #: dashboard/adrotatepro.php:75
 
 
 
 
 
 
678
  msgid "Schedule all campaigns with ease"
679
  msgstr ""
680
 
681
+ #: dashboard/adrotatepro.php:78
682
  msgid ""
683
  "Schedule your adverts and set up advertising campaigns based on dates you or "
684
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
687
  "schedules for adverts."
688
  msgstr ""
689
 
690
+ #: dashboard/adrotatepro.php:82
691
  msgid "Avoid adblockers"
692
  msgstr ""
693
 
694
+ #: dashboard/adrotatepro.php:85
695
  msgid ""
696
  "Try and avoid adblockers so your adverts get the exposure you want them to "
697
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
699
  "adverts smartly so these features reach their full potential!"
700
  msgstr ""
701
 
702
+ #: dashboard/adrotatepro.php:89
703
  msgid "Stay up-to-date with notifications"
704
  msgstr ""
705
 
706
+ #: dashboard/adrotatepro.php:92
707
  msgid ""
708
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
709
  "adverts expire or need your attention. Additionally, send push notifications "
711
  "or when advertisers create new adverts. Never miss an expiration date again."
712
  msgstr ""
713
 
714
+ #: dashboard/adrotatepro.php:96 dashboard/adrotatepro.php:108
715
+ #: dashboard/info.php:93
716
  #, fuzzy
717
  msgid "Buy AdRotate Professional"
718
  msgstr "AdRotate Pro"
719
 
720
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:97
721
  msgid "Single License"
722
  msgstr ""
723
 
724
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:97
725
  msgid "One WordPress installation."
726
  msgstr ""
727
 
728
+ #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
729
+ #: dashboard/info.php:98 dashboard/info.php:105
730
  msgid "Duo License"
731
  msgstr ""
732
 
733
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:98
734
  msgid "Two WordPress installations."
735
  msgstr ""
736
 
737
+ #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
738
+ #: dashboard/info.php:99 dashboard/info.php:106
739
  msgid "Multi License"
740
  msgstr ""
741
 
742
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:99
743
  msgid "Up to five WordPress installations."
744
  msgstr ""
745
 
746
+ #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:115
747
+ #: dashboard/info.php:100 dashboard/info.php:107
748
  #, fuzzy
749
  msgid "Developer License"
750
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
751
 
752
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:100
753
  msgid "Unlimited WordPress installations and/or networks."
754
  msgstr ""
755
 
756
+ #: dashboard/adrotatepro.php:104 dashboard/adrotatepro.php:117
757
+ #: dashboard/info.php:101 dashboard/info.php:109
758
  msgid "Compare licenses"
759
  msgstr ""
760
 
761
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:101
762
  msgid "Not sure which license is for you? Compare them..."
763
  msgstr ""
764
 
765
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:101
766
  msgid "All Licenses"
767
  msgstr ""
768
 
769
+ #: dashboard/adrotatepro.php:112 dashboard/info.php:104
770
  msgid "Lifetime License"
771
  msgstr ""
772
 
773
+ #: dashboard/adrotatepro.php:112 dashboard/info.php:104
774
  msgid "Single installation."
775
  msgstr ""
776
 
777
+ #: dashboard/adrotatepro.php:113 dashboard/info.php:105
778
  msgid "Up to 2 installations."
779
  msgstr ""
780
 
781
+ #: dashboard/adrotatepro.php:114 dashboard/info.php:106
782
  msgid "Up to 10 installations."
783
  msgstr ""
784
 
785
+ #: dashboard/adrotatepro.php:115 dashboard/info.php:107
786
  msgid "Up to 25 installations or multisite networks."
787
  msgstr ""
788
 
789
+ #: dashboard/adrotatepro.php:116 dashboard/info.php:108
790
  msgid ""
791
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
792
  msgstr ""
793
 
794
+ #: dashboard/adrotatepro.php:117 dashboard/info.php:109
795
  msgid "Not sure which license is for you?"
796
  msgstr ""
797
 
798
+ #: dashboard/adrotatepro.php:117 dashboard/info.php:109
799
  msgid "Compare Licenses"
800
  msgstr ""
801
 
829
  msgid "Arnan de Gans News & Updates"
830
  msgstr ""
831
 
832
+ #: dashboard/info.php:114
833
  msgid "Join the Media.net advertising network"
834
  msgstr ""
835
 
836
+ #: dashboard/info.php:127
837
+ msgid "Sponsored offers"
838
+ msgstr ""
839
+
840
+ #: dashboard/info.php:133
841
+ msgid ""
842
+ "These are affiliate banners, clicking them costs you nothing but it helps me "
843
+ "and AdRotate a lot!"
844
+ msgstr ""
845
+
846
  #: dashboard/publisher/adverts-disabled.php:15
847
  msgid "Disabled Adverts"
848
  msgstr ""
language/adrotate-en_US.mo CHANGED
Binary file
language/adrotate-en_US.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: 2017-08-19 13:54+0800\n"
6
- "PO-Revision-Date: 2017-08-19 13:54+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
@@ -17,107 +17,107 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:716
21
  msgid "No files found"
22
  msgstr ""
23
 
24
- #: adrotate-functions.php:719
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
- #: adrotate-functions.php:804
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:808
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:812
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
- #: adrotate-functions.php:816
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
- #: adrotate-functions.php:820
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
- #: adrotate-functions.php:824
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
- #: adrotate-functions.php:828
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
- #: adrotate-functions.php:832
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
- #: adrotate-functions.php:836
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
- #: adrotate-functions.php:840
65
  msgid "Export created"
66
  msgstr ""
67
 
68
- #: adrotate-functions.php:844
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
- #: adrotate-functions.php:849
75
  msgid "Settings saved"
76
  msgstr ""
77
 
78
- #: adrotate-functions.php:853
79
  msgid "Database optimized"
80
  msgstr ""
81
 
82
- #: adrotate-functions.php:857
83
  msgid "Database repaired"
84
  msgstr ""
85
 
86
- #: adrotate-functions.php:861
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr ""
89
 
90
- #: adrotate-functions.php:865
91
  msgid "Cleanup complete"
92
  msgstr ""
93
 
94
- #: adrotate-functions.php:870
95
  msgid "Action prohibited"
96
  msgstr ""
97
 
98
- #: adrotate-functions.php:874
99
  msgid ""
100
  "The ad was saved but has an issue which might prevent it from working "
101
  "properly. Review the colored ad."
102
  msgstr ""
103
 
104
- #: adrotate-functions.php:878
105
  msgid "No data found in selected time period"
106
  msgstr ""
107
 
108
- #: adrotate-functions.php:882
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr ""
111
 
112
- #: adrotate-functions.php:886
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
- #: adrotate-functions.php:890
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
- #: adrotate-functions.php:894
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
@@ -209,13 +209,13 @@ msgstr ""
209
  msgid "Your AdRotate Banner folder is not writable or does not exist."
210
  msgstr ""
211
 
212
- #: adrotate-output.php:685 dashboard/adrotatepro.php:87
213
- #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
214
- #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
215
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
216
- #: dashboard/adrotatepro.php:102 dashboard/info.php:83 dashboard/info.php:84
217
- #: dashboard/info.php:85 dashboard/info.php:86 dashboard/info.php:90
218
- #: dashboard/info.php:91 dashboard/info.php:92 dashboard/info.php:93
219
  #: dashboard/settings/geotargeting.php:35
220
  msgid "Buy now"
221
  msgstr ""
@@ -247,7 +247,7 @@ msgstr ""
247
  msgid "manuals"
248
  msgstr ""
249
 
250
- #: adrotate-output.php:747 adrotate-output.php:817
251
  msgid "and"
252
  msgstr ""
253
 
@@ -284,127 +284,127 @@ msgid "Support AdRotate"
284
  msgstr ""
285
 
286
  #: adrotate-output.php:810
287
- msgid "Check out my website"
288
  msgstr ""
289
 
290
- #: adrotate-output.php:817
291
  msgid ""
292
  "Many users only think to review AdRotate when something goes wrong while "
293
  "thousands of people happily use AdRotate."
294
  msgstr ""
295
 
296
- #: adrotate-output.php:817
297
  msgid "If you find AdRotate useful please leave your"
298
  msgstr ""
299
 
300
- #: adrotate-output.php:817
301
  msgid "rating"
302
  msgstr ""
303
 
304
- #: adrotate-output.php:817
305
  msgid "review"
306
  msgstr ""
307
 
308
- #: adrotate-output.php:817
309
- msgid "on WordPress.org to help AdRotate grow in a positive way"
310
  msgstr ""
311
 
312
- #: adrotate-output.php:843 dashboard/settings/notifications.php:50
313
  #: dashboard/settings/notifications.php:80
314
  msgid "Available in AdRotate Pro"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:843
318
  msgid "More information..."
319
  msgstr ""
320
 
321
- #: adrotate-output.php:844
322
  msgid "This feature is available in AdRotate Pro"
323
  msgstr ""
324
 
325
- #: adrotate-output.php:844
326
  msgid "Learn more"
327
  msgstr ""
328
 
329
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:220
330
  #: dashboard/publisher/adverts-edit.php:241
331
  msgid "January"
332
  msgstr ""
333
 
334
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:221
335
  #: dashboard/publisher/adverts-edit.php:242
336
  msgid "February"
337
  msgstr ""
338
 
339
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:222
340
  #: dashboard/publisher/adverts-edit.php:243
341
  msgid "March"
342
  msgstr ""
343
 
344
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:223
345
  #: dashboard/publisher/adverts-edit.php:244
346
  msgid "April"
347
  msgstr ""
348
 
349
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:224
350
  #: dashboard/publisher/adverts-edit.php:245
351
  msgid "May"
352
  msgstr ""
353
 
354
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:225
355
  #: dashboard/publisher/adverts-edit.php:246
356
  msgid "June"
357
  msgstr ""
358
 
359
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:226
360
  #: dashboard/publisher/adverts-edit.php:247
361
  msgid "July"
362
  msgstr ""
363
 
364
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:227
365
  #: dashboard/publisher/adverts-edit.php:248
366
  msgid "August"
367
  msgstr ""
368
 
369
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:228
370
  #: dashboard/publisher/adverts-edit.php:249
371
  msgid "September"
372
  msgstr ""
373
 
374
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:229
375
  #: dashboard/publisher/adverts-edit.php:250
376
  msgid "October"
377
  msgstr ""
378
 
379
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:230
380
  #: dashboard/publisher/adverts-edit.php:251
381
  msgid "November"
382
  msgstr ""
383
 
384
- #: adrotate-statistics.php:160 dashboard/publisher/adverts-edit.php:231
385
  #: dashboard/publisher/adverts-edit.php:252
386
  msgid "December"
387
  msgstr ""
388
 
389
- #: adrotate-statistics.php:169
390
  msgid "Previous"
391
  msgstr ""
392
 
393
- #: adrotate-statistics.php:171 dashboard/publisher/statistics-advert.php:67
394
  #: dashboard/publisher/statistics-group.php:73
395
  #: dashboard/publisher/statistics-main.php:37
396
  msgid "This month"
397
  msgstr ""
398
 
399
- #: adrotate-statistics.php:172
400
  msgid "Next"
401
  msgstr ""
402
 
403
- #: adrotate-statistics.php:267
404
  msgid "No data to show!"
405
  msgstr ""
406
 
407
- #: adrotate-statistics.php:344 adrotate-statistics.php:345
408
  msgid "Not found"
409
  msgstr ""
410
 
@@ -630,17 +630,11 @@ msgstr ""
630
  msgid "AdRotate is brought to you by"
631
  msgstr ""
632
 
633
- #: dashboard/adrotatepro.php:51
634
- msgid ""
635
- "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
636
- "to find out more about me and what I am doing!"
637
- msgstr ""
638
-
639
- #: dashboard/adrotatepro.php:62
640
  msgid "Schedule all campaigns with ease"
641
  msgstr ""
642
 
643
- #: dashboard/adrotatepro.php:65
644
  msgid ""
645
  "Schedule your adverts and set up advertising campaigns based on dates you or "
646
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
@@ -649,11 +643,11 @@ msgid ""
649
  "schedules for adverts."
650
  msgstr ""
651
 
652
- #: dashboard/adrotatepro.php:69
653
  msgid "Avoid adblockers"
654
  msgstr ""
655
 
656
- #: dashboard/adrotatepro.php:72
657
  msgid ""
658
  "Try and avoid adblockers so your adverts get the exposure you want them to "
659
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
@@ -661,11 +655,11 @@ msgid ""
661
  "adverts smartly so these features reach their full potential!"
662
  msgstr ""
663
 
664
- #: dashboard/adrotatepro.php:76
665
  msgid "Stay up-to-date with notifications"
666
  msgstr ""
667
 
668
- #: dashboard/adrotatepro.php:79
669
  msgid ""
670
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
671
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -673,89 +667,89 @@ msgid ""
673
  "or when advertisers create new adverts. Never miss an expiration date again."
674
  msgstr ""
675
 
676
- #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
677
- #: dashboard/info.php:79
678
  msgid "Buy AdRotate Professional"
679
  msgstr ""
680
 
681
- #: dashboard/adrotatepro.php:87 dashboard/info.php:83
682
  msgid "Single License"
683
  msgstr ""
684
 
685
- #: dashboard/adrotatepro.php:87 dashboard/info.php:83
686
  msgid "One WordPress installation."
687
  msgstr ""
688
 
689
- #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
690
- #: dashboard/info.php:84 dashboard/info.php:91
691
  msgid "Duo License"
692
  msgstr ""
693
 
694
- #: dashboard/adrotatepro.php:88 dashboard/info.php:84
695
  msgid "Two WordPress installations."
696
  msgstr ""
697
 
698
- #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
699
- #: dashboard/info.php:85 dashboard/info.php:92
700
  msgid "Multi License"
701
  msgstr ""
702
 
703
- #: dashboard/adrotatepro.php:89 dashboard/info.php:85
704
  msgid "Up to five WordPress installations."
705
  msgstr ""
706
 
707
- #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
708
- #: dashboard/info.php:86 dashboard/info.php:93
709
  msgid "Developer License"
710
  msgstr ""
711
 
712
- #: dashboard/adrotatepro.php:90 dashboard/info.php:86
713
  msgid "Unlimited WordPress installations and/or networks."
714
  msgstr ""
715
 
716
- #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
717
- #: dashboard/info.php:87 dashboard/info.php:95
718
  msgid "Compare licenses"
719
  msgstr ""
720
 
721
- #: dashboard/adrotatepro.php:91 dashboard/info.php:87
722
  msgid "Not sure which license is for you? Compare them..."
723
  msgstr ""
724
 
725
- #: dashboard/adrotatepro.php:91 dashboard/info.php:87
726
  msgid "All Licenses"
727
  msgstr ""
728
 
729
- #: dashboard/adrotatepro.php:99 dashboard/info.php:90
730
  msgid "Lifetime License"
731
  msgstr ""
732
 
733
- #: dashboard/adrotatepro.php:99 dashboard/info.php:90
734
  msgid "Single installation."
735
  msgstr ""
736
 
737
- #: dashboard/adrotatepro.php:100 dashboard/info.php:91
738
  msgid "Up to 2 installations."
739
  msgstr ""
740
 
741
- #: dashboard/adrotatepro.php:101 dashboard/info.php:92
742
  msgid "Up to 10 installations."
743
  msgstr ""
744
 
745
- #: dashboard/adrotatepro.php:102 dashboard/info.php:93
746
  msgid "Up to 25 installations or multisite networks."
747
  msgstr ""
748
 
749
- #: dashboard/adrotatepro.php:103 dashboard/info.php:94
750
  msgid ""
751
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
752
  msgstr ""
753
 
754
- #: dashboard/adrotatepro.php:104 dashboard/info.php:95
755
  msgid "Not sure which license is for you?"
756
  msgstr ""
757
 
758
- #: dashboard/adrotatepro.php:104 dashboard/info.php:95
759
  msgid "Compare Licenses"
760
  msgstr ""
761
 
@@ -789,10 +783,20 @@ msgstr ""
789
  msgid "Arnan de Gans News & Updates"
790
  msgstr ""
791
 
792
- #: dashboard/info.php:100
793
  msgid "Join the Media.net advertising network"
794
  msgstr ""
795
 
 
 
 
 
 
 
 
 
 
 
796
  #: dashboard/publisher/adverts-disabled.php:15
797
  msgid "Disabled Adverts"
798
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-04 13:21+0800\n"
6
+ "PO-Revision-Date: 2017-09-04 13:21+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:715
21
  msgid "No files found"
22
  msgstr ""
23
 
24
+ #: adrotate-functions.php:718
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
+ #: adrotate-functions.php:803
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:807
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:811
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
+ #: adrotate-functions.php:815
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
+ #: adrotate-functions.php:819
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
+ #: adrotate-functions.php:823
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
+ #: adrotate-functions.php:827
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
+ #: adrotate-functions.php:831
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
+ #: adrotate-functions.php:835
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
+ #: adrotate-functions.php:839
65
  msgid "Export created"
66
  msgstr ""
67
 
68
+ #: adrotate-functions.php:843
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
+ #: adrotate-functions.php:848
75
  msgid "Settings saved"
76
  msgstr ""
77
 
78
+ #: adrotate-functions.php:852
79
  msgid "Database optimized"
80
  msgstr ""
81
 
82
+ #: adrotate-functions.php:856
83
  msgid "Database repaired"
84
  msgstr ""
85
 
86
+ #: adrotate-functions.php:860
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr ""
89
 
90
+ #: adrotate-functions.php:864
91
  msgid "Cleanup complete"
92
  msgstr ""
93
 
94
+ #: adrotate-functions.php:869
95
  msgid "Action prohibited"
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:873
99
  msgid ""
100
  "The ad was saved but has an issue which might prevent it from working "
101
  "properly. Review the colored ad."
102
  msgstr ""
103
 
104
+ #: adrotate-functions.php:877
105
  msgid "No data found in selected time period"
106
  msgstr ""
107
 
108
+ #: adrotate-functions.php:881
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr ""
111
 
112
+ #: adrotate-functions.php:885
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:889
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
+ #: adrotate-functions.php:893
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
209
  msgid "Your AdRotate Banner folder is not writable or does not exist."
210
  msgstr ""
211
 
212
+ #: adrotate-output.php:685 dashboard/adrotatepro.php:100
213
+ #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:102
214
+ #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:112
215
+ #: dashboard/adrotatepro.php:113 dashboard/adrotatepro.php:114
216
+ #: dashboard/adrotatepro.php:115 dashboard/info.php:97 dashboard/info.php:98
217
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
218
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
219
  #: dashboard/settings/geotargeting.php:35
220
  msgid "Buy now"
221
  msgstr ""
247
  msgid "manuals"
248
  msgstr ""
249
 
250
+ #: adrotate-output.php:747 adrotate-output.php:816
251
  msgid "and"
252
  msgstr ""
253
 
284
  msgstr ""
285
 
286
  #: adrotate-output.php:810
287
+ msgid "Follow me on Facebook"
288
  msgstr ""
289
 
290
+ #: adrotate-output.php:816
291
  msgid ""
292
  "Many users only think to review AdRotate when something goes wrong while "
293
  "thousands of people happily use AdRotate."
294
  msgstr ""
295
 
296
+ #: adrotate-output.php:816
297
  msgid "If you find AdRotate useful please leave your"
298
  msgstr ""
299
 
300
+ #: adrotate-output.php:816
301
  msgid "rating"
302
  msgstr ""
303
 
304
+ #: adrotate-output.php:816
305
  msgid "review"
306
  msgstr ""
307
 
308
+ #: adrotate-output.php:816
309
+ msgid "on WordPress.org to help AdRotate grow!"
310
  msgstr ""
311
 
312
+ #: adrotate-output.php:850 dashboard/settings/notifications.php:50
313
  #: dashboard/settings/notifications.php:80
314
  msgid "Available in AdRotate Pro"
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:850
318
  msgid "More information..."
319
  msgstr ""
320
 
321
+ #: adrotate-output.php:851
322
  msgid "This feature is available in AdRotate Pro"
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:851
326
  msgid "Learn more"
327
  msgstr ""
328
 
329
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:220
330
  #: dashboard/publisher/adverts-edit.php:241
331
  msgid "January"
332
  msgstr ""
333
 
334
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:221
335
  #: dashboard/publisher/adverts-edit.php:242
336
  msgid "February"
337
  msgstr ""
338
 
339
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:222
340
  #: dashboard/publisher/adverts-edit.php:243
341
  msgid "March"
342
  msgstr ""
343
 
344
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:223
345
  #: dashboard/publisher/adverts-edit.php:244
346
  msgid "April"
347
  msgstr ""
348
 
349
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:224
350
  #: dashboard/publisher/adverts-edit.php:245
351
  msgid "May"
352
  msgstr ""
353
 
354
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:225
355
  #: dashboard/publisher/adverts-edit.php:246
356
  msgid "June"
357
  msgstr ""
358
 
359
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:226
360
  #: dashboard/publisher/adverts-edit.php:247
361
  msgid "July"
362
  msgstr ""
363
 
364
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:227
365
  #: dashboard/publisher/adverts-edit.php:248
366
  msgid "August"
367
  msgstr ""
368
 
369
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:228
370
  #: dashboard/publisher/adverts-edit.php:249
371
  msgid "September"
372
  msgstr ""
373
 
374
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:229
375
  #: dashboard/publisher/adverts-edit.php:250
376
  msgid "October"
377
  msgstr ""
378
 
379
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:230
380
  #: dashboard/publisher/adverts-edit.php:251
381
  msgid "November"
382
  msgstr ""
383
 
384
+ #: adrotate-statistics.php:155 dashboard/publisher/adverts-edit.php:231
385
  #: dashboard/publisher/adverts-edit.php:252
386
  msgid "December"
387
  msgstr ""
388
 
389
+ #: adrotate-statistics.php:164
390
  msgid "Previous"
391
  msgstr ""
392
 
393
+ #: adrotate-statistics.php:166 dashboard/publisher/statistics-advert.php:67
394
  #: dashboard/publisher/statistics-group.php:73
395
  #: dashboard/publisher/statistics-main.php:37
396
  msgid "This month"
397
  msgstr ""
398
 
399
+ #: adrotate-statistics.php:167
400
  msgid "Next"
401
  msgstr ""
402
 
403
+ #: adrotate-statistics.php:262
404
  msgid "No data to show!"
405
  msgstr ""
406
 
407
+ #: adrotate-statistics.php:339 adrotate-statistics.php:340
408
  msgid "Not found"
409
  msgstr ""
410
 
630
  msgid "AdRotate is brought to you by"
631
  msgstr ""
632
 
633
+ #: dashboard/adrotatepro.php:75
 
 
 
 
 
 
634
  msgid "Schedule all campaigns with ease"
635
  msgstr ""
636
 
637
+ #: dashboard/adrotatepro.php:78
638
  msgid ""
639
  "Schedule your adverts and set up advertising campaigns based on dates you or "
640
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
643
  "schedules for adverts."
644
  msgstr ""
645
 
646
+ #: dashboard/adrotatepro.php:82
647
  msgid "Avoid adblockers"
648
  msgstr ""
649
 
650
+ #: dashboard/adrotatepro.php:85
651
  msgid ""
652
  "Try and avoid adblockers so your adverts get the exposure you want them to "
653
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
655
  "adverts smartly so these features reach their full potential!"
656
  msgstr ""
657
 
658
+ #: dashboard/adrotatepro.php:89
659