Version Description
Enjoy this update with the latest tweaks and improvements for AdRotate for WordPress!
Download this release
Release Info
Developer | adegans |
Plugin | AdRotate Banner Manager |
Version | 5.8.22 |
Comparing to | |
See all releases |
Code changes from version 5.8.21 to 5.8.22
- adrotate-manage-publisher.php +4 -4
- adrotate-output.php +19 -16
- adrotate-statistics.php +17 -6
- adrotate.php +9 -9
- language/adrotate-de_DE.mo +0 -0
- language/adrotate-de_DE.po +35 -31
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +35 -31
- language/adrotate-it_IT.mo +0 -0
- language/adrotate-it_IT.po +35 -31
- language/adrotate-nl_NL.mo +0 -0
- language/adrotate-nl_NL.po +35 -31
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +35 -31
- language/adrotate-pt_BR.mo +0 -0
- language/adrotate-pt_BR.po +35 -31
- language/adrotate.pot +34 -30
- readme.txt +13 -20
adrotate-manage-publisher.php
CHANGED
@@ -567,13 +567,13 @@ function adrotate_request_action() {
|
|
567 |
// Determine which kind of action to use
|
568 |
if(isset($_POST['adrotate_action'])) {
|
569 |
// Default action call
|
570 |
-
$actions = $_POST['adrotate_action'];
|
571 |
} else if(isset($_POST['adrotate_disabled_action'])) {
|
572 |
// Disabled ads listing call
|
573 |
-
$actions = $_POST['adrotate_disabled_action'];
|
574 |
} else if(isset($_POST['adrotate_error_action'])) {
|
575 |
// Erroneous ads listing call
|
576 |
-
$actions = $_POST['adrotate_error_action'];
|
577 |
}
|
578 |
if(preg_match("/-/", $actions)) {
|
579 |
list($action, $specific) = explode("-", $actions);
|
@@ -745,7 +745,7 @@ function adrotate_renew($id, $howlong = 2592000) {
|
|
745 |
if($id > 0) {
|
746 |
$schedule_id = $wpdb->get_var($wpdb->prepare("SELECT `schedule` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = %d AND `group` = 0 AND `user` = 0 ORDER BY `id` DESC LIMIT 1;", $id));
|
747 |
if($schedule_id > 0) {
|
748 |
-
$wpdb->query("UPDATE `{$wpdb->prefix}adrotate_schedule` SET `stoptime` = `stoptime` +
|
749 |
} else {
|
750 |
$now = current_time('timestamp');
|
751 |
$stoptime = $now + $howlong;
|
567 |
// Determine which kind of action to use
|
568 |
if(isset($_POST['adrotate_action'])) {
|
569 |
// Default action call
|
570 |
+
$actions = strip_tags(trim($_POST['adrotate_action'], "\t\n "));
|
571 |
} else if(isset($_POST['adrotate_disabled_action'])) {
|
572 |
// Disabled ads listing call
|
573 |
+
$actions = strip_tags(trim($_POST['adrotate_disabled_action'], "\t\n "));
|
574 |
} else if(isset($_POST['adrotate_error_action'])) {
|
575 |
// Erroneous ads listing call
|
576 |
+
$actions = strip_tags(trim($_POST['adrotate_error_action'], "\t\n "));
|
577 |
}
|
578 |
if(preg_match("/-/", $actions)) {
|
579 |
list($action, $specific) = explode("-", $actions);
|
745 |
if($id > 0) {
|
746 |
$schedule_id = $wpdb->get_var($wpdb->prepare("SELECT `schedule` FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = %d AND `group` = 0 AND `user` = 0 ORDER BY `id` DESC LIMIT 1;", $id));
|
747 |
if($schedule_id > 0) {
|
748 |
+
$wpdb->query($wpdb->prepare("UPDATE `{$wpdb->prefix}adrotate_schedule` SET `stoptime` = `stoptime` + %d WHERE `id` = %d;", $howlong, $schedule_id));
|
749 |
} else {
|
750 |
$now = current_time('timestamp');
|
751 |
$stoptime = $now + $howlong;
|
adrotate-output.php
CHANGED
@@ -787,32 +787,39 @@ function adrotate_welcome_pointer() {
|
|
787 |
}
|
788 |
|
789 |
/*-------------------------------------------------------------
|
790 |
-
Name:
|
791 |
Purpose: Help tab on all pages
|
792 |
Since: 3.10.17
|
793 |
-------------------------------------------------------------*/
|
794 |
-
function
|
795 |
$screen = get_current_screen();
|
796 |
|
797 |
$screen->add_help_tab(array(
|
798 |
'id' => 'adrotate_thanks',
|
799 |
'title' => 'Thanks to you',
|
800 |
'content' => '<h4>Thank you for using AdRotate</h4>'.
|
801 |
-
'<p>AdRotate is one of the most popular WordPress plugins for Advertising and is a household name for many companies and
|
802 |
-
|
803 |
-
'<p>Visit <a href="https://ajdg.solutions/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">ajdg.solutions</a> website for more plugins and services related to WordPress and WooCommerce.<br />'.
|
804 |
-
'If you are curious who makes AdRotate please take a look at <a href="http://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=helptab" target="_blank">arnan.me</a>, my profile website.</p>'
|
805 |
)
|
806 |
);
|
|
|
807 |
$screen->add_help_tab(array(
|
808 |
'id' => 'adrotate_support',
|
809 |
'title' => 'Getting Support',
|
810 |
'content' => '<h4>Get help using AdRotate</h4>'.
|
811 |
-
'<p>
|
812 |
-
|
|
|
|
|
813 |
|
814 |
-
|
815 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
816 |
)
|
817 |
);
|
818 |
}
|
@@ -825,7 +832,8 @@ function adrotate_help_info() {
|
|
825 |
function adrotate_action_links($links) {
|
826 |
$custom_actions = array();
|
827 |
$custom_actions['adrotate-pro'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=action_links&pk_content=buy_single', 'Get Pro');
|
828 |
-
$custom_actions['adrotate-help'] = sprintf('<a href="%s"
|
|
|
829 |
$custom_actions['adrotate-ajdg'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/?pk_campaign=adrotatefree&pk_keyword=action_links', 'AJdG Solutions');
|
830 |
|
831 |
return array_merge($custom_actions, $links);
|
@@ -857,15 +865,10 @@ function adrotate_credits() {
|
|
857 |
<p><center><a href="https://twitter.com/intent/tweet?hashtags=wordpress%2Cplugin%2Cadvertising%2Cadrotate&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20for%20WordPress%20by%20@arnandegans.%20Check%20it%20out.&url=https%3A%2F%2Fwordpress.org/plugins/adrotate/" target="_blank" class="button-primary goosebox"><i class="icn-t"></i>'.__('Post Tweet').'</a> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadrotate%2F&hashtag=#adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>'.__('Share on Facebook').'</a> <a class="button-primary" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">'.__('Write review on WordPress.org').'</a></center></p>
|
858 |
<p><em>- '.__('Thank you very much for your help and support!').'</em></p></td>';
|
859 |
|
860 |
-
|
861 |
-
// echo '<td><a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" title="Review AdRotate for WordPress"><img src="'.plugins_url('/images/icon-contact.png', __FILE__).'" alt="AdRotate Logo" width="60" height="60" align="left" style="padding:5px;" /></a>'.__("Many users only think to review AdRotate when something goes wrong while thousands of people happily use AdRotate.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
|
862 |
-
|
863 |
echo '<td><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=buy_pro" target="_blank"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" class="alignleft pro-image" /></a><p>'.__('AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!', 'adrotate').' <a href="https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=credits" target="_blank">'.__('Compare Licenses', 'adrotate').' »</a></p>
|
864 |
<p><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=single" target="_blank"><strong>'.__('Single License', 'adrotate').' (€ 39.00)</strong></a><br /><em>'.__('Use on ONE WordPress installation.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=credits&pk_content=single" target="_blank">'.__('Buy now', 'adrotate').' »</a></em></p>
|
865 |
<p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=multi" target="_blank"><strong>'.__('Multi License', 'adrotate').' (€ 99.00)</strong></a><br /><em>'.__('Use on up to FIVE WordPress installations.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=credits&pk_content=multi" target="_blank">'.__('Buy now', 'adrotate').' »</a></em></p></td>';
|
866 |
|
867 |
-
// echo '<td><a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=credits" title="Upgrade to AdRotate Pro"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" alt="AdRotate Pro for WordPress" width="60" height="60" align="left" style="padding:5px;" /></a>'.__('Get more advanced features such as Geo Targeting, scheduling and much more with AdRotate Pro.', 'adrotate').' '.__('Get access to premium support and free updates for one year!', 'adrotate').' <strong>So why wait? <a href="'.admin_url('admin.php?page=adrotate-pro').'" title="Get AdRotate Pro for WordPress">'.__('Upgrade today', 'adrotate').' »</a></strong></td>';
|
868 |
-
|
869 |
echo '</tr>';
|
870 |
echo '</tbody>';
|
871 |
|
787 |
}
|
788 |
|
789 |
/*-------------------------------------------------------------
|
790 |
+
Name: adrotate_dashboard_help
|
791 |
Purpose: Help tab on all pages
|
792 |
Since: 3.10.17
|
793 |
-------------------------------------------------------------*/
|
794 |
+
function adrotate_dashboard_help() {
|
795 |
$screen = get_current_screen();
|
796 |
|
797 |
$screen->add_help_tab(array(
|
798 |
'id' => 'adrotate_thanks',
|
799 |
'title' => 'Thanks to you',
|
800 |
'content' => '<h4>Thank you for using AdRotate</h4>'.
|
801 |
+
'<p>AdRotate is one of the most popular WordPress plugins for Advertising and is a household name for many companies and news sites around the world. AdRotate would not be possible without your support and my life would not be what it is today without your help.</p><p><em>- Arnan</em></p>'.
|
802 |
+
'<p>My website <a href="https://ajdg.solutions/?pk_campaign=adrotate&pk_keyword=helptab" target="_blank">ajdg.solutions</a>.<br />My profile <a href="https://www.arnan.me/?pk_campaign=adrotate&pk_keyword=helptab" target="_blank">Arnan de Gans</a>.<br />Follow me on <a href="https://www.twitter.com/arnandegans/" target="_blank">Twitter</a>.</p>'
|
|
|
|
|
803 |
)
|
804 |
);
|
805 |
+
|
806 |
$screen->add_help_tab(array(
|
807 |
'id' => 'adrotate_support',
|
808 |
'title' => 'Getting Support',
|
809 |
'content' => '<h4>Get help using AdRotate</h4>'.
|
810 |
+
'<p>AdRotate has many guides and manuals as well as a Support Forum on the AdRotate website to answer most common questions.<br />All the relevant links to getting help and the Professional Services I offer can be found on the <a href="'.admin_url('admin.php?page=adrotate-support').'">Support dashboard</a>.</p>'.
|
811 |
+
'<p><a href="https://ajdg.solutions/support/adrotate-manuals/?pk_campaign=adrotate&pk_keyword=helptab" target="_blank">AdRotate Manuals</a><br />AJdG Solutions <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotate&pk_keyword=helptab" target="_blank">Support Forum</a><br /><a href="https://ajdg.solutions/recommended-products/?pk_campaign=adrotate&pk_keyword=helptab" target="_blank">Recommended products and services</a></p>'
|
812 |
+
)
|
813 |
+
);
|
814 |
|
815 |
+
$screen->add_help_tab(array(
|
816 |
+
'id' => 'adrotate_social',
|
817 |
+
'title' => 'Spread the word',
|
818 |
+
'content' => '<h4>Tell your friends</h4>'.
|
819 |
+
|
820 |
+
'<p>Consider writing a review or sharing AdRotate in Social media if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development.</p>'.
|
821 |
+
'<p><a href="https://twitter.com/intent/tweet?hashtags=wordpress%2Cplugin%2Cadvertising%2Cadrotate&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20Pro%20for%20WordPress%20by%20@arnandegans.%20Check%20it%20out.&url=https%3A%2F%2Fwordpress.org/plugins/adrotate/" target="_blank" class="button-primary goosebox"><i class="icn-t"></i>'.__('Post Tweet').'</a> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadrotate%2F&hashtag=#adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>'.__('Share on Facebook').'</a> <a class="button-primary" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">'.__('Write review on wordpress.org').'</a></p>
|
822 |
+
<p><em>- '.__('Thank you very much for your help and support!').'</em></p>'
|
823 |
)
|
824 |
);
|
825 |
}
|
832 |
function adrotate_action_links($links) {
|
833 |
$custom_actions = array();
|
834 |
$custom_actions['adrotate-pro'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=action_links&pk_content=buy_single', 'Get Pro');
|
835 |
+
$custom_actions['adrotate-help'] = sprintf('<a href="%s">%s</a>', admin_url('admin.php?page=adrotate-support'), 'Support');
|
836 |
+
$custom_actions['adrotate-news'] = sprintf('<a href="%s">%s</a>', 'https://ajdg.solutions/blog/?pk_campaign=adrotatefree&pk_keyword=action_links', 'News');
|
837 |
$custom_actions['adrotate-ajdg'] = sprintf('<a href="%s" target="_blank">%s</a>', 'https://ajdg.solutions/?pk_campaign=adrotatefree&pk_keyword=action_links', 'AJdG Solutions');
|
838 |
|
839 |
return array_merge($custom_actions, $links);
|
865 |
<p><center><a href="https://twitter.com/intent/tweet?hashtags=wordpress%2Cplugin%2Cadvertising%2Cadrotate&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20for%20WordPress%20by%20@arnandegans.%20Check%20it%20out.&url=https%3A%2F%2Fwordpress.org/plugins/adrotate/" target="_blank" class="button-primary goosebox"><i class="icn-t"></i>'.__('Post Tweet').'</a> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadrotate%2F&hashtag=#adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>'.__('Share on Facebook').'</a> <a class="button-primary" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">'.__('Write review on WordPress.org').'</a></center></p>
|
866 |
<p><em>- '.__('Thank you very much for your help and support!').'</em></p></td>';
|
867 |
|
|
|
|
|
|
|
868 |
echo '<td><a href="https://ajdg.solutions/plugins/adrotate-for-wordpress/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=buy_pro" target="_blank"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" class="alignleft pro-image" /></a><p>'.__('AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!', 'adrotate').' <a href="https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=credits" target="_blank">'.__('Compare Licenses', 'adrotate').' »</a></p>
|
869 |
<p><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=single" target="_blank"><strong>'.__('Single License', 'adrotate').' (€ 39.00)</strong></a><br /><em>'.__('Use on ONE WordPress installation.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=credits&pk_content=single" target="_blank">'.__('Buy now', 'adrotate').' »</a></em></p>
|
870 |
<p><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=credits&pk_content=multi" target="_blank"><strong>'.__('Multi License', 'adrotate').' (€ 99.00)</strong></a><br /><em>'.__('Use on up to FIVE WordPress installations.', 'adrotate').' <a href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=credits&pk_content=multi" target="_blank">'.__('Buy now', 'adrotate').' »</a></em></p></td>';
|
871 |
|
|
|
|
|
872 |
echo '</tr>';
|
873 |
echo '</tbody>';
|
874 |
|
adrotate-statistics.php
CHANGED
@@ -257,20 +257,31 @@ function adrotate_prepare_fullreport() {
|
|
257 |
|
258 |
$today = adrotate_date_start('day');
|
259 |
|
260 |
-
$stats['banners'] = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE `type` = 'active';");
|
261 |
-
$stats['tracker'] = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE `tracker` = 'Y' AND `type` = 'active';");
|
262 |
$stats['overall_clicks'] = $wpdb->get_var("SELECT SUM(`clicks`) as `clicks` FROM `{$wpdb->prefix}adrotate_stats`;");
|
263 |
$stats['overall_impressions'] = $wpdb->get_var("SELECT SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}adrotate_stats`;");
|
264 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
$this_month_start = mktime(0, 0, 0, date("m"), 1, date("Y"));
|
266 |
$this_month_end = mktime(0, 0, 0, date("m"), date("t"), date("Y"));
|
267 |
-
$stats['this_month_clicks'] = $wpdb->get_var("SELECT SUM(`clicks`) as `clicks` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$this_month_start} AND `thetime` <= {$this_month_end};");
|
268 |
-
$stats['this_month_impressions'] = $wpdb->get_var("SELECT SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$this_month_start} AND `thetime` <= {$this_month_end};");
|
269 |
|
270 |
$last_month_start = mktime(0, 0, 0, date("m")-1, 1, date("Y"));
|
271 |
$last_month_end = mktime(0, 0, 0, date("m"), 0, date("Y"));
|
272 |
-
$stats['last_month_clicks'] = $wpdb->get_var("SELECT SUM(`clicks`) as `clicks` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$last_month_start} AND `thetime` <= {$last_month_end};");
|
273 |
-
$stats['last_month_impressions'] = $wpdb->get_var("SELECT SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$last_month_start} AND `thetime` <= {$last_month_end};");
|
274 |
|
275 |
if(!$stats['banners']) $stats['banners'] = 0;
|
276 |
if(!$stats['tracker']) $stats['tracker'] = 0;
|
257 |
|
258 |
$today = adrotate_date_start('day');
|
259 |
|
260 |
+
$stats['banners'] = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE (`type` = 'active' OR `type` = 'expired' OR `type` = 'error');");
|
261 |
+
$stats['tracker'] = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}adrotate` WHERE `tracker` = 'Y' AND (`type` = 'active' OR `type` = 'expired' OR `type` = 'error');");
|
262 |
$stats['overall_clicks'] = $wpdb->get_var("SELECT SUM(`clicks`) as `clicks` FROM `{$wpdb->prefix}adrotate_stats`;");
|
263 |
$stats['overall_impressions'] = $wpdb->get_var("SELECT SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}adrotate_stats`;");
|
264 |
|
265 |
+
$active_ids = $wpdb->get_results("SELECT `id` FROM `{$wpdb->prefix}adrotate` WHERE (`type` = 'active' OR `type` = 'expired' OR `type` = 'error');");
|
266 |
+
if(count($active_ids) > 0) {
|
267 |
+
foreach($active_ids as $id) {
|
268 |
+
$sorted[] = $id->id;
|
269 |
+
}
|
270 |
+
$active_ids = ' AND (`ad` = '.implode(' OR `ad` = ', $sorted).')';
|
271 |
+
unset($sorted);
|
272 |
+
} else {
|
273 |
+
$active_ids = '';
|
274 |
+
}
|
275 |
+
|
276 |
$this_month_start = mktime(0, 0, 0, date("m"), 1, date("Y"));
|
277 |
$this_month_end = mktime(0, 0, 0, date("m"), date("t"), date("Y"));
|
278 |
+
$stats['this_month_clicks'] = $wpdb->get_var("SELECT SUM(`clicks`) as `clicks` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$this_month_start} AND `thetime` <= {$this_month_end}{$active_ids};");
|
279 |
+
$stats['this_month_impressions'] = $wpdb->get_var("SELECT SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$this_month_start} AND `thetime` <= {$this_month_end}{$active_ids};");
|
280 |
|
281 |
$last_month_start = mktime(0, 0, 0, date("m")-1, 1, date("Y"));
|
282 |
$last_month_end = mktime(0, 0, 0, date("m"), 0, date("Y"));
|
283 |
+
$stats['last_month_clicks'] = $wpdb->get_var("SELECT SUM(`clicks`) as `clicks` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$last_month_start} AND `thetime` <= {$last_month_end}{$active_ids};");
|
284 |
+
$stats['last_month_impressions'] = $wpdb->get_var("SELECT SUM(`impressions`) as `impressions` FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` >= {$last_month_start} AND `thetime` <= {$last_month_end}{$active_ids};");
|
285 |
|
286 |
if(!$stats['banners']) $stats['banners'] = 0;
|
287 |
if(!$stats['tracker']) $stats['tracker'] = 0;
|
adrotate.php
CHANGED
@@ -6,7 +6,7 @@ Author: Arnan de Gans
|
|
6 |
Author URI: https://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=plugin_info
|
7 |
Description: Monetize your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
-
Version: 5.8.
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
@@ -21,7 +21,7 @@ License: GPLv3
|
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
-
define("ADROTATE_DISPLAY", '5.8.
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 66);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
@@ -112,13 +112,13 @@ function adrotate_dashboard() {
|
|
112 |
$adrotate_settings = add_submenu_page('adrotate', 'AdRotate · '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
|
113 |
|
114 |
// Add help tabs
|
115 |
-
add_action('load-'.$adrotate_adverts, '
|
116 |
-
add_action('load-'.$adrotate_groups, '
|
117 |
-
add_action('load-'.$adrotate_schedules, '
|
118 |
-
add_action('load-'.$adrotate_media, '
|
119 |
-
add_action('load-'.$adrotate_statistics, '
|
120 |
-
add_action('load-'.$adrotate_pro, '
|
121 |
-
add_action('load-'.$adrotate_settings, '
|
122 |
}
|
123 |
|
124 |
/*-------------------------------------------------------------
|
6 |
Author URI: https://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=plugin_info
|
7 |
Description: Monetize your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
+
Version: 5.8.22
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
+
define("ADROTATE_DISPLAY", '5.8.22');
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 66);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
112 |
$adrotate_settings = add_submenu_page('adrotate', 'AdRotate · '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
|
113 |
|
114 |
// Add help tabs
|
115 |
+
add_action('load-'.$adrotate_adverts, 'adrotate_dashboard_help');
|
116 |
+
add_action('load-'.$adrotate_groups, 'adrotate_dashboard_help');
|
117 |
+
add_action('load-'.$adrotate_schedules, 'adrotate_dashboard_help');
|
118 |
+
add_action('load-'.$adrotate_media, 'adrotate_dashboard_help');
|
119 |
+
add_action('load-'.$adrotate_statistics, 'adrotate_dashboard_help');
|
120 |
+
add_action('load-'.$adrotate_pro, 'adrotate_dashboard_help');
|
121 |
+
add_action('load-'.$adrotate_settings, 'adrotate_dashboard_help');
|
122 |
}
|
123 |
|
124 |
/*-------------------------------------------------------------
|
language/adrotate-de_DE.mo
CHANGED
Binary file
|
language/adrotate-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: de\n"
|
@@ -348,19 +348,35 @@ msgstr "und"
|
|
348 |
msgid "forums"
|
349 |
msgstr "Forum"
|
350 |
|
351 |
-
#: adrotate-output.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
msgid "Need help fast? Or do you have a question?"
|
353 |
msgstr "Benötigen Sie schnell Hilfe? Oder haben Sie eine Frage?"
|
354 |
|
355 |
-
#: adrotate-output.php:
|
356 |
msgid "Help AdRotate Grow"
|
357 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
358 |
|
359 |
-
#: adrotate-output.php:
|
360 |
msgid "Get more features with AdRotate Pro"
|
361 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
|
362 |
|
363 |
-
#: adrotate-output.php:
|
364 |
msgid ""
|
365 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
366 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -371,15 +387,15 @@ msgstr ""
|
|
371 |
"Normalerweise beantworte ich Fragen noch am selben Tag, oft mit einer Lösung "
|
372 |
"in der ersten Antwort."
|
373 |
|
374 |
-
#: adrotate-output.php:
|
375 |
msgid "AdRotate Manuals"
|
376 |
msgstr "AdRotate-Handbücher"
|
377 |
|
378 |
-
#: adrotate-output.php:
|
379 |
msgid "Support Forums"
|
380 |
msgstr "Support-Foren"
|
381 |
|
382 |
-
#: adrotate-output.php:
|
383 |
msgid ""
|
384 |
"When posting on the forum, please include a brief description of the "
|
385 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -392,7 +408,7 @@ msgstr ""
|
|
392 |
"zusätzlicher Informationen hilft immer, eine bessere Antwort oder Beratung "
|
393 |
"zu erhalten."
|
394 |
|
395 |
-
#: adrotate-output.php:
|
396 |
msgid ""
|
397 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
398 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -405,23 +421,11 @@ msgstr ""
|
|
405 |
"AdRotate in sozialen Medien kostet Sie nichts, aber dies ist sehr hilfreich, "
|
406 |
"da die Werbung dazu beiträgt, die zukünftige Entwicklung sicherzustellen."
|
407 |
|
408 |
-
#: adrotate-output.php:
|
409 |
-
msgid "Post Tweet"
|
410 |
-
msgstr "Tweet posten"
|
411 |
-
|
412 |
-
#: adrotate-output.php:857
|
413 |
-
msgid "Share on Facebook"
|
414 |
-
msgstr "Auf Facebook teilen"
|
415 |
-
|
416 |
-
#: adrotate-output.php:857
|
417 |
msgid "Write review on WordPress.org"
|
418 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
419 |
|
420 |
-
#: adrotate-output.php:
|
421 |
-
msgid "Thank you very much for your help and support!"
|
422 |
-
msgstr "Vielen Dank für Ihre Hilfe und Unterstützung!"
|
423 |
-
|
424 |
-
#: adrotate-output.php:863
|
425 |
msgid ""
|
426 |
"AdRotate Professional has a lot more functions for even better advertising "
|
427 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -432,27 +436,27 @@ msgstr ""
|
|
432 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
433 |
"hat!"
|
434 |
|
435 |
-
#: adrotate-output.php:
|
436 |
msgid "Compare Licenses"
|
437 |
msgstr "Lizenzen vergleichen"
|
438 |
|
439 |
-
#: adrotate-output.php:
|
440 |
msgid "Single License"
|
441 |
msgstr "Einzellizenz"
|
442 |
|
443 |
-
#: adrotate-output.php:
|
444 |
msgid "Use on ONE WordPress installation."
|
445 |
msgstr "Für eine Wordpress-Installation."
|
446 |
|
447 |
-
#: adrotate-output.php:
|
448 |
msgid "Buy now"
|
449 |
msgstr "Jetzt kaufen"
|
450 |
|
451 |
-
#: adrotate-output.php:
|
452 |
msgid "Multi License"
|
453 |
msgstr "Multi-Lizenz"
|
454 |
|
455 |
-
#: adrotate-output.php:
|
456 |
msgid "Use on up to FIVE WordPress installations."
|
457 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
458 |
|
@@ -522,7 +526,7 @@ msgstr "Nächste"
|
|
522 |
msgid "No data to show!"
|
523 |
msgstr "Keine Daten vorhanden, um diese zu zeigen!"
|
524 |
|
525 |
-
#: adrotate-statistics.php:
|
526 |
msgid "Not found"
|
527 |
msgstr "Nicht gefunden"
|
528 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-02-04 20:22-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-02-04 20:23-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: de\n"
|
348 |
msgid "forums"
|
349 |
msgstr "Forum"
|
350 |
|
351 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
352 |
+
msgid "Post Tweet"
|
353 |
+
msgstr "Tweet posten"
|
354 |
+
|
355 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
356 |
+
msgid "Share on Facebook"
|
357 |
+
msgstr "Auf Facebook teilen"
|
358 |
+
|
359 |
+
#: adrotate-output.php:821
|
360 |
+
msgid "Write review on wordpress.org"
|
361 |
+
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
362 |
+
|
363 |
+
#: adrotate-output.php:822 adrotate-output.php:866
|
364 |
+
msgid "Thank you very much for your help and support!"
|
365 |
+
msgstr "Vielen Dank für Ihre Hilfe und Unterstützung!"
|
366 |
+
|
367 |
+
#: adrotate-output.php:852
|
368 |
msgid "Need help fast? Or do you have a question?"
|
369 |
msgstr "Benötigen Sie schnell Hilfe? Oder haben Sie eine Frage?"
|
370 |
|
371 |
+
#: adrotate-output.php:853
|
372 |
msgid "Help AdRotate Grow"
|
373 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
374 |
|
375 |
+
#: adrotate-output.php:854
|
376 |
msgid "Get more features with AdRotate Pro"
|
377 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
|
378 |
|
379 |
+
#: adrotate-output.php:860
|
380 |
msgid ""
|
381 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
382 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
387 |
"Normalerweise beantworte ich Fragen noch am selben Tag, oft mit einer Lösung "
|
388 |
"in der ersten Antwort."
|
389 |
|
390 |
+
#: adrotate-output.php:861
|
391 |
msgid "AdRotate Manuals"
|
392 |
msgstr "AdRotate-Handbücher"
|
393 |
|
394 |
+
#: adrotate-output.php:861
|
395 |
msgid "Support Forums"
|
396 |
msgstr "Support-Foren"
|
397 |
|
398 |
+
#: adrotate-output.php:862
|
399 |
msgid ""
|
400 |
"When posting on the forum, please include a brief description of the "
|
401 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
408 |
"zusätzlicher Informationen hilft immer, eine bessere Antwort oder Beratung "
|
409 |
"zu erhalten."
|
410 |
|
411 |
+
#: adrotate-output.php:864
|
412 |
msgid ""
|
413 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
414 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
421 |
"AdRotate in sozialen Medien kostet Sie nichts, aber dies ist sehr hilfreich, "
|
422 |
"da die Werbung dazu beiträgt, die zukünftige Entwicklung sicherzustellen."
|
423 |
|
424 |
+
#: adrotate-output.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
msgid "Write review on WordPress.org"
|
426 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
427 |
|
428 |
+
#: adrotate-output.php:868
|
|
|
|
|
|
|
|
|
429 |
msgid ""
|
430 |
"AdRotate Professional has a lot more functions for even better advertising "
|
431 |
"management. Check out the feature comparison tab on any of the product pages "
|
436 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
437 |
"hat!"
|
438 |
|
439 |
+
#: adrotate-output.php:868
|
440 |
msgid "Compare Licenses"
|
441 |
msgstr "Lizenzen vergleichen"
|
442 |
|
443 |
+
#: adrotate-output.php:869
|
444 |
msgid "Single License"
|
445 |
msgstr "Einzellizenz"
|
446 |
|
447 |
+
#: adrotate-output.php:869
|
448 |
msgid "Use on ONE WordPress installation."
|
449 |
msgstr "Für eine Wordpress-Installation."
|
450 |
|
451 |
+
#: adrotate-output.php:869 adrotate-output.php:870
|
452 |
msgid "Buy now"
|
453 |
msgstr "Jetzt kaufen"
|
454 |
|
455 |
+
#: adrotate-output.php:870
|
456 |
msgid "Multi License"
|
457 |
msgstr "Multi-Lizenz"
|
458 |
|
459 |
+
#: adrotate-output.php:870
|
460 |
msgid "Use on up to FIVE WordPress installations."
|
461 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
462 |
|
526 |
msgid "No data to show!"
|
527 |
msgstr "Keine Daten vorhanden, um diese zu zeigen!"
|
528 |
|
529 |
+
#: adrotate-statistics.php:313 adrotate-statistics.php:314
|
530 |
msgid "Not found"
|
531 |
msgstr "Nicht gefunden"
|
532 |
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
@@ -347,19 +347,35 @@ msgstr "et"
|
|
347 |
msgid "forums"
|
348 |
msgstr "forums"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
msgid "Need help fast? Or do you have a question?"
|
352 |
msgstr "Besoin d’aide rapidement ? Ou avez-vous une question?"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "Help AdRotate Grow"
|
356 |
msgstr "AdRotate Pro"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
msgid "Get more features with AdRotate Pro"
|
360 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
361 |
|
362 |
-
#: adrotate-output.php:
|
363 |
msgid ""
|
364 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
365 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -370,15 +386,15 @@ msgstr ""
|
|
370 |
"d’assistance AdRotate. Habituellement, je réponds aux questions le jour "
|
371 |
"même, souvent avec une solution dans la première réponse."
|
372 |
|
373 |
-
#: adrotate-output.php:
|
374 |
msgid "AdRotate Manuals"
|
375 |
msgstr "Manuels AdRotate"
|
376 |
|
377 |
-
#: adrotate-output.php:
|
378 |
msgid "Support Forums"
|
379 |
msgstr "Forums de support"
|
380 |
|
381 |
-
#: adrotate-output.php:
|
382 |
msgid ""
|
383 |
"When posting on the forum, please include a brief description of the "
|
384 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -391,7 +407,7 @@ msgstr ""
|
|
391 |
"supplémentaires aide toujours à obtenir une meilleure réponse ou un meilleur "
|
392 |
"conseil."
|
393 |
|
394 |
-
#: adrotate-output.php:
|
395 |
msgid ""
|
396 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
397 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -404,23 +420,11 @@ msgstr ""
|
|
404 |
"le faire est très utile en tant que promotion qui aide à assurer le "
|
405 |
"développement futur."
|
406 |
|
407 |
-
#: adrotate-output.php:
|
408 |
-
msgid "Post Tweet"
|
409 |
-
msgstr "Publier un tweet"
|
410 |
-
|
411 |
-
#: adrotate-output.php:857
|
412 |
-
msgid "Share on Facebook"
|
413 |
-
msgstr "Partager sur Facebook"
|
414 |
-
|
415 |
-
#: adrotate-output.php:857
|
416 |
msgid "Write review on WordPress.org"
|
417 |
msgstr "Écrire un avis sur WordPress.org"
|
418 |
|
419 |
-
#: adrotate-output.php:
|
420 |
-
msgid "Thank you very much for your help and support!"
|
421 |
-
msgstr "Merci beaucoup pour votre aide et votre soutien!"
|
422 |
-
|
423 |
-
#: adrotate-output.php:863
|
424 |
msgid ""
|
425 |
"AdRotate Professional has a lot more functions for even better advertising "
|
426 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -431,27 +435,27 @@ msgstr ""
|
|
431 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
432 |
"vous!"
|
433 |
|
434 |
-
#: adrotate-output.php:
|
435 |
msgid "Compare Licenses"
|
436 |
msgstr "Comparer les licences"
|
437 |
|
438 |
-
#: adrotate-output.php:
|
439 |
msgid "Single License"
|
440 |
msgstr "Licence unique"
|
441 |
|
442 |
-
#: adrotate-output.php:
|
443 |
msgid "Use on ONE WordPress installation."
|
444 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
445 |
|
446 |
-
#: adrotate-output.php:
|
447 |
msgid "Buy now"
|
448 |
msgstr "Acheter maintenant"
|
449 |
|
450 |
-
#: adrotate-output.php:
|
451 |
msgid "Multi License"
|
452 |
msgstr "Licence Multiple"
|
453 |
|
454 |
-
#: adrotate-output.php:
|
455 |
msgid "Use on up to FIVE WordPress installations."
|
456 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
457 |
|
@@ -521,7 +525,7 @@ msgstr "Prochain"
|
|
521 |
msgid "No data to show!"
|
522 |
msgstr "Aucune donnée à montrer!"
|
523 |
|
524 |
-
#: adrotate-statistics.php:
|
525 |
msgid "Not found"
|
526 |
msgstr "Non trouvé"
|
527 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-02-04 20:22-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-02-04 20:22-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
347 |
msgid "forums"
|
348 |
msgstr "forums"
|
349 |
|
350 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
351 |
+
msgid "Post Tweet"
|
352 |
+
msgstr "Publier un tweet"
|
353 |
+
|
354 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
355 |
+
msgid "Share on Facebook"
|
356 |
+
msgstr "Partager sur Facebook"
|
357 |
+
|
358 |
+
#: adrotate-output.php:821
|
359 |
+
msgid "Write review on wordpress.org"
|
360 |
+
msgstr "Écrire un avis sur WordPress.org"
|
361 |
+
|
362 |
+
#: adrotate-output.php:822 adrotate-output.php:866
|
363 |
+
msgid "Thank you very much for your help and support!"
|
364 |
+
msgstr "Merci beaucoup pour votre aide et votre soutien!"
|
365 |
+
|
366 |
+
#: adrotate-output.php:852
|
367 |
msgid "Need help fast? Or do you have a question?"
|
368 |
msgstr "Besoin d’aide rapidement ? Ou avez-vous une question?"
|
369 |
|
370 |
+
#: adrotate-output.php:853
|
371 |
msgid "Help AdRotate Grow"
|
372 |
msgstr "AdRotate Pro"
|
373 |
|
374 |
+
#: adrotate-output.php:854
|
375 |
msgid "Get more features with AdRotate Pro"
|
376 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
377 |
|
378 |
+
#: adrotate-output.php:860
|
379 |
msgid ""
|
380 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
381 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
386 |
"d’assistance AdRotate. Habituellement, je réponds aux questions le jour "
|
387 |
"même, souvent avec une solution dans la première réponse."
|
388 |
|
389 |
+
#: adrotate-output.php:861
|
390 |
msgid "AdRotate Manuals"
|
391 |
msgstr "Manuels AdRotate"
|
392 |
|
393 |
+
#: adrotate-output.php:861
|
394 |
msgid "Support Forums"
|
395 |
msgstr "Forums de support"
|
396 |
|
397 |
+
#: adrotate-output.php:862
|
398 |
msgid ""
|
399 |
"When posting on the forum, please include a brief description of the "
|
400 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
407 |
"supplémentaires aide toujours à obtenir une meilleure réponse ou un meilleur "
|
408 |
"conseil."
|
409 |
|
410 |
+
#: adrotate-output.php:864
|
411 |
msgid ""
|
412 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
413 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
420 |
"le faire est très utile en tant que promotion qui aide à assurer le "
|
421 |
"développement futur."
|
422 |
|
423 |
+
#: adrotate-output.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
msgid "Write review on WordPress.org"
|
425 |
msgstr "Écrire un avis sur WordPress.org"
|
426 |
|
427 |
+
#: adrotate-output.php:868
|
|
|
|
|
|
|
|
|
428 |
msgid ""
|
429 |
"AdRotate Professional has a lot more functions for even better advertising "
|
430 |
"management. Check out the feature comparison tab on any of the product pages "
|
435 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
436 |
"vous!"
|
437 |
|
438 |
+
#: adrotate-output.php:868
|
439 |
msgid "Compare Licenses"
|
440 |
msgstr "Comparer les licences"
|
441 |
|
442 |
+
#: adrotate-output.php:869
|
443 |
msgid "Single License"
|
444 |
msgstr "Licence unique"
|
445 |
|
446 |
+
#: adrotate-output.php:869
|
447 |
msgid "Use on ONE WordPress installation."
|
448 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
449 |
|
450 |
+
#: adrotate-output.php:869 adrotate-output.php:870
|
451 |
msgid "Buy now"
|
452 |
msgstr "Acheter maintenant"
|
453 |
|
454 |
+
#: adrotate-output.php:870
|
455 |
msgid "Multi License"
|
456 |
msgstr "Licence Multiple"
|
457 |
|
458 |
+
#: adrotate-output.php:870
|
459 |
msgid "Use on up to FIVE WordPress installations."
|
460 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
461 |
|
525 |
msgid "No data to show!"
|
526 |
msgstr "Aucune donnée à montrer!"
|
527 |
|
528 |
+
#: adrotate-statistics.php:313 adrotate-statistics.php:314
|
529 |
msgid "Not found"
|
530 |
msgstr "Non trouvé"
|
531 |
|
language/adrotate-it_IT.mo
CHANGED
Binary file
|
language/adrotate-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
@@ -343,19 +343,35 @@ msgstr "e"
|
|
343 |
msgid "forums"
|
344 |
msgstr "forum"
|
345 |
|
346 |
-
#: adrotate-output.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
msgid "Need help fast? Or do you have a question?"
|
348 |
msgstr "Hai bisogno di aiuto in fretta? O hai una domanda?"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
msgid "Help AdRotate Grow"
|
352 |
msgstr "Aiuta AdRotate a crescere"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "Get more features with AdRotate Pro"
|
356 |
msgstr "Ottieni più funzionalità con AdRotate Pro"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
msgid ""
|
360 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
361 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -366,15 +382,15 @@ msgstr ""
|
|
366 |
"solito rispondo alle domande lo stesso giorno, spesso con una soluzione "
|
367 |
"nella prima risposta."
|
368 |
|
369 |
-
#: adrotate-output.php:
|
370 |
msgid "AdRotate Manuals"
|
371 |
msgstr "Manuali AdRotate"
|
372 |
|
373 |
-
#: adrotate-output.php:
|
374 |
msgid "Support Forums"
|
375 |
msgstr "Forum di supporto"
|
376 |
|
377 |
-
#: adrotate-output.php:
|
378 |
msgid ""
|
379 |
"When posting on the forum, please include a brief description of the "
|
380 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -386,7 +402,7 @@ msgstr ""
|
|
386 |
"stai cercando di fare. Fornire alcune informazioni extra aiuta sempre a "
|
387 |
"ottenere una risposta o un consiglio migliore."
|
388 |
|
389 |
-
#: adrotate-output.php:
|
390 |
msgid ""
|
391 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
392 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -399,23 +415,11 @@ msgstr ""
|
|
399 |
"sui social media non ti costa altro che farlo è super utile come promozione "
|
400 |
"che aiuta a garantire lo sviluppo futuro."
|
401 |
|
402 |
-
#: adrotate-output.php:
|
403 |
-
msgid "Post Tweet"
|
404 |
-
msgstr "Pubblica Tweet"
|
405 |
-
|
406 |
-
#: adrotate-output.php:857
|
407 |
-
msgid "Share on Facebook"
|
408 |
-
msgstr "Condividi su Facebook"
|
409 |
-
|
410 |
-
#: adrotate-output.php:857
|
411 |
msgid "Write review on WordPress.org"
|
412 |
msgstr "Scrivi una recensione su WordPress.org"
|
413 |
|
414 |
-
#: adrotate-output.php:
|
415 |
-
msgid "Thank you very much for your help and support!"
|
416 |
-
msgstr "Grazie mille per il vostro aiuto e supporto!"
|
417 |
-
|
418 |
-
#: adrotate-output.php:863
|
419 |
msgid ""
|
420 |
"AdRotate Professional has a lot more functions for even better advertising "
|
421 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -426,27 +430,27 @@ msgstr ""
|
|
426 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
427 |
"offrire per te!"
|
428 |
|
429 |
-
#: adrotate-output.php:
|
430 |
msgid "Compare Licenses"
|
431 |
msgstr "Confronta le licenze"
|
432 |
|
433 |
-
#: adrotate-output.php:
|
434 |
msgid "Single License"
|
435 |
msgstr "Licenza singola"
|
436 |
|
437 |
-
#: adrotate-output.php:
|
438 |
msgid "Use on ONE WordPress installation."
|
439 |
msgstr "Utilizzare su un'installazione WordPress."
|
440 |
|
441 |
-
#: adrotate-output.php:
|
442 |
msgid "Buy now"
|
443 |
msgstr "Acquista ora"
|
444 |
|
445 |
-
#: adrotate-output.php:
|
446 |
msgid "Multi License"
|
447 |
msgstr "Licenza multipla"
|
448 |
|
449 |
-
#: adrotate-output.php:
|
450 |
msgid "Use on up to FIVE WordPress installations."
|
451 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
452 |
|
@@ -516,7 +520,7 @@ msgstr "Successivo"
|
|
516 |
msgid "No data to show!"
|
517 |
msgstr "Nessun dato da mostrare!"
|
518 |
|
519 |
-
#: adrotate-statistics.php:
|
520 |
msgid "Not found"
|
521 |
msgstr "Non trovato"
|
522 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-02-04 20:22-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-02-04 20:22-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
343 |
msgid "forums"
|
344 |
msgstr "forum"
|
345 |
|
346 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
347 |
+
msgid "Post Tweet"
|
348 |
+
msgstr "Pubblica Tweet"
|
349 |
+
|
350 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
351 |
+
msgid "Share on Facebook"
|
352 |
+
msgstr "Condividi su Facebook"
|
353 |
+
|
354 |
+
#: adrotate-output.php:821
|
355 |
+
msgid "Write review on wordpress.org"
|
356 |
+
msgstr "Scrivi una recensione su WordPress.org"
|
357 |
+
|
358 |
+
#: adrotate-output.php:822 adrotate-output.php:866
|
359 |
+
msgid "Thank you very much for your help and support!"
|
360 |
+
msgstr "Grazie mille per il vostro aiuto e supporto!"
|
361 |
+
|
362 |
+
#: adrotate-output.php:852
|
363 |
msgid "Need help fast? Or do you have a question?"
|
364 |
msgstr "Hai bisogno di aiuto in fretta? O hai una domanda?"
|
365 |
|
366 |
+
#: adrotate-output.php:853
|
367 |
msgid "Help AdRotate Grow"
|
368 |
msgstr "Aiuta AdRotate a crescere"
|
369 |
|
370 |
+
#: adrotate-output.php:854
|
371 |
msgid "Get more features with AdRotate Pro"
|
372 |
msgstr "Ottieni più funzionalità con AdRotate Pro"
|
373 |
|
374 |
+
#: adrotate-output.php:860
|
375 |
msgid ""
|
376 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
377 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
382 |
"solito rispondo alle domande lo stesso giorno, spesso con una soluzione "
|
383 |
"nella prima risposta."
|
384 |
|
385 |
+
#: adrotate-output.php:861
|
386 |
msgid "AdRotate Manuals"
|
387 |
msgstr "Manuali AdRotate"
|
388 |
|
389 |
+
#: adrotate-output.php:861
|
390 |
msgid "Support Forums"
|
391 |
msgstr "Forum di supporto"
|
392 |
|
393 |
+
#: adrotate-output.php:862
|
394 |
msgid ""
|
395 |
"When posting on the forum, please include a brief description of the "
|
396 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
402 |
"stai cercando di fare. Fornire alcune informazioni extra aiuta sempre a "
|
403 |
"ottenere una risposta o un consiglio migliore."
|
404 |
|
405 |
+
#: adrotate-output.php:864
|
406 |
msgid ""
|
407 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
408 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
415 |
"sui social media non ti costa altro che farlo è super utile come promozione "
|
416 |
"che aiuta a garantire lo sviluppo futuro."
|
417 |
|
418 |
+
#: adrotate-output.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
419 |
msgid "Write review on WordPress.org"
|
420 |
msgstr "Scrivi una recensione su WordPress.org"
|
421 |
|
422 |
+
#: adrotate-output.php:868
|
|
|
|
|
|
|
|
|
423 |
msgid ""
|
424 |
"AdRotate Professional has a lot more functions for even better advertising "
|
425 |
"management. Check out the feature comparison tab on any of the product pages "
|
430 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
431 |
"offrire per te!"
|
432 |
|
433 |
+
#: adrotate-output.php:868
|
434 |
msgid "Compare Licenses"
|
435 |
msgstr "Confronta le licenze"
|
436 |
|
437 |
+
#: adrotate-output.php:869
|
438 |
msgid "Single License"
|
439 |
msgstr "Licenza singola"
|
440 |
|
441 |
+
#: adrotate-output.php:869
|
442 |
msgid "Use on ONE WordPress installation."
|
443 |
msgstr "Utilizzare su un'installazione WordPress."
|
444 |
|
445 |
+
#: adrotate-output.php:869 adrotate-output.php:870
|
446 |
msgid "Buy now"
|
447 |
msgstr "Acquista ora"
|
448 |
|
449 |
+
#: adrotate-output.php:870
|
450 |
msgid "Multi License"
|
451 |
msgstr "Licenza multipla"
|
452 |
|
453 |
+
#: adrotate-output.php:870
|
454 |
msgid "Use on up to FIVE WordPress installations."
|
455 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
456 |
|
520 |
msgid "No data to show!"
|
521 |
msgstr "Nessun dato da mostrare!"
|
522 |
|
523 |
+
#: adrotate-statistics.php:313 adrotate-statistics.php:314
|
524 |
msgid "Not found"
|
525 |
msgstr "Non trovato"
|
526 |
|
language/adrotate-nl_NL.mo
CHANGED
Binary file
|
language/adrotate-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
@@ -350,19 +350,35 @@ msgstr "en"
|
|
350 |
msgid "forums"
|
351 |
msgstr "forums"
|
352 |
|
353 |
-
#: adrotate-output.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "Need help fast? Or do you have a question?"
|
355 |
msgstr "Snel hulp nodig? Of heb je een vraag?"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
msgid "Help AdRotate Grow"
|
359 |
msgstr "Help AdRotate groeien"
|
360 |
|
361 |
-
#: adrotate-output.php:
|
362 |
msgid "Get more features with AdRotate Pro"
|
363 |
msgstr "Beschik over meer functies met AdRotate Pro"
|
364 |
|
365 |
-
#: adrotate-output.php:
|
366 |
msgid ""
|
367 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
368 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -372,15 +388,15 @@ msgstr ""
|
|
372 |
"manier om je antwoord te krijgen via het AdRotate-forum. Meestal beantwoord "
|
373 |
"ik vragen dezelfde dag, vaak met een oplossing in het eerste antwoord."
|
374 |
|
375 |
-
#: adrotate-output.php:
|
376 |
msgid "AdRotate Manuals"
|
377 |
msgstr "AdRotate Handleidingen"
|
378 |
|
379 |
-
#: adrotate-output.php:
|
380 |
msgid "Support Forums"
|
381 |
msgstr "Supportfora"
|
382 |
|
383 |
-
#: adrotate-output.php:
|
384 |
msgid ""
|
385 |
"When posting on the forum, please include a brief description of the "
|
386 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -393,7 +409,7 @@ msgstr ""
|
|
393 |
"extra informatie helpt altijd bij het krijgen van een beter antwoord of "
|
394 |
"advies."
|
395 |
|
396 |
-
#: adrotate-output.php:
|
397 |
msgid ""
|
398 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
399 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -406,23 +422,11 @@ msgstr ""
|
|
406 |
"maar is super nuttig omdat alle promotie helpt om toekomstige ontwikkeling "
|
407 |
"te garanderen."
|
408 |
|
409 |
-
#: adrotate-output.php:
|
410 |
-
msgid "Post Tweet"
|
411 |
-
msgstr "Tweet plaatsen"
|
412 |
-
|
413 |
-
#: adrotate-output.php:857
|
414 |
-
msgid "Share on Facebook"
|
415 |
-
msgstr "Deel op Facebook"
|
416 |
-
|
417 |
-
#: adrotate-output.php:857
|
418 |
msgid "Write review on WordPress.org"
|
419 |
msgstr "Schrijf een review op WordPress.org"
|
420 |
|
421 |
-
#: adrotate-output.php:
|
422 |
-
msgid "Thank you very much for your help and support!"
|
423 |
-
msgstr "Hartelijk dank voor je hulp!"
|
424 |
-
|
425 |
-
#: adrotate-output.php:863
|
426 |
msgid ""
|
427 |
"AdRotate Professional has a lot more functions for even better advertising "
|
428 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -433,27 +437,27 @@ msgstr ""
|
|
433 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
434 |
"heeft!"
|
435 |
|
436 |
-
#: adrotate-output.php:
|
437 |
msgid "Compare Licenses"
|
438 |
msgstr "Licenties vergelijken"
|
439 |
|
440 |
-
#: adrotate-output.php:
|
441 |
msgid "Single License"
|
442 |
msgstr "Enkele licentie"
|
443 |
|
444 |
-
#: adrotate-output.php:
|
445 |
msgid "Use on ONE WordPress installation."
|
446 |
msgstr "Gebruik op één WordPress-installatie."
|
447 |
|
448 |
-
#: adrotate-output.php:
|
449 |
msgid "Buy now"
|
450 |
msgstr "Koop nu"
|
451 |
|
452 |
-
#: adrotate-output.php:
|
453 |
msgid "Multi License"
|
454 |
msgstr "Multi Licentie"
|
455 |
|
456 |
-
#: adrotate-output.php:
|
457 |
msgid "Use on up to FIVE WordPress installations."
|
458 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
459 |
|
@@ -523,7 +527,7 @@ msgstr "Volgende"
|
|
523 |
msgid "No data to show!"
|
524 |
msgstr "Geen gegevens om te laten zien!"
|
525 |
|
526 |
-
#: adrotate-statistics.php:
|
527 |
msgid "Not found"
|
528 |
msgstr "Niet gevonden"
|
529 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-02-04 20:22-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-02-04 20:22-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
350 |
msgid "forums"
|
351 |
msgstr "forums"
|
352 |
|
353 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
354 |
+
msgid "Post Tweet"
|
355 |
+
msgstr "Tweet plaatsen"
|
356 |
+
|
357 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
358 |
+
msgid "Share on Facebook"
|
359 |
+
msgstr "Deel op Facebook"
|
360 |
+
|
361 |
+
#: adrotate-output.php:821
|
362 |
+
msgid "Write review on wordpress.org"
|
363 |
+
msgstr "Schrijf een review op WordPress.org"
|
364 |
+
|
365 |
+
#: adrotate-output.php:822 adrotate-output.php:866
|
366 |
+
msgid "Thank you very much for your help and support!"
|
367 |
+
msgstr "Hartelijk dank voor je hulp!"
|
368 |
+
|
369 |
+
#: adrotate-output.php:852
|
370 |
msgid "Need help fast? Or do you have a question?"
|
371 |
msgstr "Snel hulp nodig? Of heb je een vraag?"
|
372 |
|
373 |
+
#: adrotate-output.php:853
|
374 |
msgid "Help AdRotate Grow"
|
375 |
msgstr "Help AdRotate groeien"
|
376 |
|
377 |
+
#: adrotate-output.php:854
|
378 |
msgid "Get more features with AdRotate Pro"
|
379 |
msgstr "Beschik over meer functies met AdRotate Pro"
|
380 |
|
381 |
+
#: adrotate-output.php:860
|
382 |
msgid ""
|
383 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
384 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
388 |
"manier om je antwoord te krijgen via het AdRotate-forum. Meestal beantwoord "
|
389 |
"ik vragen dezelfde dag, vaak met een oplossing in het eerste antwoord."
|
390 |
|
391 |
+
#: adrotate-output.php:861
|
392 |
msgid "AdRotate Manuals"
|
393 |
msgstr "AdRotate Handleidingen"
|
394 |
|
395 |
+
#: adrotate-output.php:861
|
396 |
msgid "Support Forums"
|
397 |
msgstr "Supportfora"
|
398 |
|
399 |
+
#: adrotate-output.php:862
|
400 |
msgid ""
|
401 |
"When posting on the forum, please include a brief description of the "
|
402 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
409 |
"extra informatie helpt altijd bij het krijgen van een beter antwoord of "
|
410 |
"advies."
|
411 |
|
412 |
+
#: adrotate-output.php:864
|
413 |
msgid ""
|
414 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
415 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
422 |
"maar is super nuttig omdat alle promotie helpt om toekomstige ontwikkeling "
|
423 |
"te garanderen."
|
424 |
|
425 |
+
#: adrotate-output.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
msgid "Write review on WordPress.org"
|
427 |
msgstr "Schrijf een review op WordPress.org"
|
428 |
|
429 |
+
#: adrotate-output.php:868
|
|
|
|
|
|
|
|
|
430 |
msgid ""
|
431 |
"AdRotate Professional has a lot more functions for even better advertising "
|
432 |
"management. Check out the feature comparison tab on any of the product pages "
|
437 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
438 |
"heeft!"
|
439 |
|
440 |
+
#: adrotate-output.php:868
|
441 |
msgid "Compare Licenses"
|
442 |
msgstr "Licenties vergelijken"
|
443 |
|
444 |
+
#: adrotate-output.php:869
|
445 |
msgid "Single License"
|
446 |
msgstr "Enkele licentie"
|
447 |
|
448 |
+
#: adrotate-output.php:869
|
449 |
msgid "Use on ONE WordPress installation."
|
450 |
msgstr "Gebruik op één WordPress-installatie."
|
451 |
|
452 |
+
#: adrotate-output.php:869 adrotate-output.php:870
|
453 |
msgid "Buy now"
|
454 |
msgstr "Koop nu"
|
455 |
|
456 |
+
#: adrotate-output.php:870
|
457 |
msgid "Multi License"
|
458 |
msgstr "Multi Licentie"
|
459 |
|
460 |
+
#: adrotate-output.php:870
|
461 |
msgid "Use on up to FIVE WordPress installations."
|
462 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
463 |
|
527 |
msgid "No data to show!"
|
528 |
msgstr "Geen gegevens om te laten zien!"
|
529 |
|
530 |
+
#: adrotate-statistics.php:313 adrotate-statistics.php:314
|
531 |
msgid "Not found"
|
532 |
msgstr "Niet gevonden"
|
533 |
|
language/adrotate-pl_PL.mo
CHANGED
Binary file
|
language/adrotate-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Michal Rudolf <michal@rudolf.waw.pl>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -373,19 +373,35 @@ msgstr "i"
|
|
373 |
msgid "forums"
|
374 |
msgstr "forum"
|
375 |
|
376 |
-
#: adrotate-output.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
msgid "Need help fast? Or do you have a question?"
|
378 |
msgstr "Potrzebujesz szybkiej pomocy? A może masz pytanie?"
|
379 |
|
380 |
-
#: adrotate-output.php:
|
381 |
msgid "Help AdRotate Grow"
|
382 |
msgstr "Pomóż AdRotate rosnąć"
|
383 |
|
384 |
-
#: adrotate-output.php:
|
385 |
msgid "Get more features with AdRotate Pro"
|
386 |
msgstr "Więcej ustawień z AdRotate Pro"
|
387 |
|
388 |
-
#: adrotate-output.php:
|
389 |
msgid ""
|
390 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
391 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -396,15 +412,15 @@ msgstr ""
|
|
396 |
"AdRotate. Zazwyczaj odpowiadam na pytania tego samego dnia, często z "
|
397 |
"rozwiązaniem w pierwszej odpowiedzi."
|
398 |
|
399 |
-
#: adrotate-output.php:
|
400 |
msgid "AdRotate Manuals"
|
401 |
msgstr "Podręczniki AdRotate"
|
402 |
|
403 |
-
#: adrotate-output.php:
|
404 |
msgid "Support Forums"
|
405 |
msgstr "Forum wsparcia"
|
406 |
|
407 |
-
#: adrotate-output.php:
|
408 |
msgid ""
|
409 |
"When posting on the forum, please include a brief description of the "
|
410 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -416,7 +432,7 @@ msgstr ""
|
|
416 |
"wyjaśnić, co próbujesz zrobić. Dostarczenie dodatkowych informacji zawsze "
|
417 |
"pomaga uzyskać lepszą odpowiedź lub poradę."
|
418 |
|
419 |
-
#: adrotate-output.php:
|
420 |
msgid ""
|
421 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
422 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -429,23 +445,11 @@ msgstr ""
|
|
429 |
"mediach społecznościowych nic cię nie kosztuje, ale robienie tego jest "
|
430 |
"bardzo pomocne jako promocja, która pomaga zapewnić przyszły rozwój."
|
431 |
|
432 |
-
#: adrotate-output.php:
|
433 |
-
msgid "Post Tweet"
|
434 |
-
msgstr "Opublikuj tweet"
|
435 |
-
|
436 |
-
#: adrotate-output.php:857
|
437 |
-
msgid "Share on Facebook"
|
438 |
-
msgstr "Udostępnij na Facebooku"
|
439 |
-
|
440 |
-
#: adrotate-output.php:857
|
441 |
msgid "Write review on WordPress.org"
|
442 |
msgstr "Napisz recenzję firmy WordPress.org"
|
443 |
|
444 |
-
#: adrotate-output.php:
|
445 |
-
msgid "Thank you very much for your help and support!"
|
446 |
-
msgstr "Dziękuję bardzo za pomoc i wsparcie!"
|
447 |
-
|
448 |
-
#: adrotate-output.php:863
|
449 |
msgid ""
|
450 |
"AdRotate Professional has a lot more functions for even better advertising "
|
451 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -456,27 +460,27 @@ msgstr ""
|
|
456 |
"stronie produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla "
|
457 |
"Ciebie!"
|
458 |
|
459 |
-
#: adrotate-output.php:
|
460 |
msgid "Compare Licenses"
|
461 |
msgstr "Porównaj licencje"
|
462 |
|
463 |
-
#: adrotate-output.php:
|
464 |
msgid "Single License"
|
465 |
msgstr "Licencja"
|
466 |
|
467 |
-
#: adrotate-output.php:
|
468 |
msgid "Use on ONE WordPress installation."
|
469 |
msgstr "Użyj na JEDNEJ instalacji WordPress."
|
470 |
|
471 |
-
#: adrotate-output.php:
|
472 |
msgid "Buy now"
|
473 |
msgstr "Kup teraz"
|
474 |
|
475 |
-
#: adrotate-output.php:
|
476 |
msgid "Multi License"
|
477 |
msgstr "Multi licencja"
|
478 |
|
479 |
-
#: adrotate-output.php:
|
480 |
msgid "Use on up to FIVE WordPress installations."
|
481 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
482 |
|
@@ -546,7 +550,7 @@ msgstr "Następny"
|
|
546 |
msgid "No data to show!"
|
547 |
msgstr "Brak danych do wyświetlenia!"
|
548 |
|
549 |
-
#: adrotate-statistics.php:
|
550 |
msgid "Not found"
|
551 |
msgstr "Nie znaleziono"
|
552 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-02-04 20:22-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-02-04 20:22-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Michal Rudolf <michal@rudolf.waw.pl>\n"
|
9 |
"Language: pl_PL\n"
|
373 |
msgid "forums"
|
374 |
msgstr "forum"
|
375 |
|
376 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
377 |
+
msgid "Post Tweet"
|
378 |
+
msgstr "Opublikuj tweet"
|
379 |
+
|
380 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
381 |
+
msgid "Share on Facebook"
|
382 |
+
msgstr "Udostępnij na Facebooku"
|
383 |
+
|
384 |
+
#: adrotate-output.php:821
|
385 |
+
msgid "Write review on wordpress.org"
|
386 |
+
msgstr "Napisz recenzję firmy WordPress.org"
|
387 |
+
|
388 |
+
#: adrotate-output.php:822 adrotate-output.php:866
|
389 |
+
msgid "Thank you very much for your help and support!"
|
390 |
+
msgstr "Dziękuję bardzo za pomoc i wsparcie!"
|
391 |
+
|
392 |
+
#: adrotate-output.php:852
|
393 |
msgid "Need help fast? Or do you have a question?"
|
394 |
msgstr "Potrzebujesz szybkiej pomocy? A może masz pytanie?"
|
395 |
|
396 |
+
#: adrotate-output.php:853
|
397 |
msgid "Help AdRotate Grow"
|
398 |
msgstr "Pomóż AdRotate rosnąć"
|
399 |
|
400 |
+
#: adrotate-output.php:854
|
401 |
msgid "Get more features with AdRotate Pro"
|
402 |
msgstr "Więcej ustawień z AdRotate Pro"
|
403 |
|
404 |
+
#: adrotate-output.php:860
|
405 |
msgid ""
|
406 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
407 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
412 |
"AdRotate. Zazwyczaj odpowiadam na pytania tego samego dnia, często z "
|
413 |
"rozwiązaniem w pierwszej odpowiedzi."
|
414 |
|
415 |
+
#: adrotate-output.php:861
|
416 |
msgid "AdRotate Manuals"
|
417 |
msgstr "Podręczniki AdRotate"
|
418 |
|
419 |
+
#: adrotate-output.php:861
|
420 |
msgid "Support Forums"
|
421 |
msgstr "Forum wsparcia"
|
422 |
|
423 |
+
#: adrotate-output.php:862
|
424 |
msgid ""
|
425 |
"When posting on the forum, please include a brief description of the "
|
426 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
432 |
"wyjaśnić, co próbujesz zrobić. Dostarczenie dodatkowych informacji zawsze "
|
433 |
"pomaga uzyskać lepszą odpowiedź lub poradę."
|
434 |
|
435 |
+
#: adrotate-output.php:864
|
436 |
msgid ""
|
437 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
438 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
445 |
"mediach społecznościowych nic cię nie kosztuje, ale robienie tego jest "
|
446 |
"bardzo pomocne jako promocja, która pomaga zapewnić przyszły rozwój."
|
447 |
|
448 |
+
#: adrotate-output.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
msgid "Write review on WordPress.org"
|
450 |
msgstr "Napisz recenzję firmy WordPress.org"
|
451 |
|
452 |
+
#: adrotate-output.php:868
|
|
|
|
|
|
|
|
|
453 |
msgid ""
|
454 |
"AdRotate Professional has a lot more functions for even better advertising "
|
455 |
"management. Check out the feature comparison tab on any of the product pages "
|
460 |
"stronie produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla "
|
461 |
"Ciebie!"
|
462 |
|
463 |
+
#: adrotate-output.php:868
|
464 |
msgid "Compare Licenses"
|
465 |
msgstr "Porównaj licencje"
|
466 |
|
467 |
+
#: adrotate-output.php:869
|
468 |
msgid "Single License"
|
469 |
msgstr "Licencja"
|
470 |
|
471 |
+
#: adrotate-output.php:869
|
472 |
msgid "Use on ONE WordPress installation."
|
473 |
msgstr "Użyj na JEDNEJ instalacji WordPress."
|
474 |
|
475 |
+
#: adrotate-output.php:869 adrotate-output.php:870
|
476 |
msgid "Buy now"
|
477 |
msgstr "Kup teraz"
|
478 |
|
479 |
+
#: adrotate-output.php:870
|
480 |
msgid "Multi License"
|
481 |
msgstr "Multi licencja"
|
482 |
|
483 |
+
#: adrotate-output.php:870
|
484 |
msgid "Use on up to FIVE WordPress installations."
|
485 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
486 |
|
550 |
msgid "No data to show!"
|
551 |
msgstr "Brak danych do wyświetlenia!"
|
552 |
|
553 |
+
#: adrotate-statistics.php:313 adrotate-statistics.php:314
|
554 |
msgid "Not found"
|
555 |
msgstr "Nie znaleziono"
|
556 |
|
language/adrotate-pt_BR.mo
CHANGED
Binary file
|
language/adrotate-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Português do Brasil\n"
|
9 |
"Language: pt_BR\n"
|
@@ -342,19 +342,35 @@ msgstr "e"
|
|
342 |
msgid "forums"
|
343 |
msgstr "fóruns"
|
344 |
|
345 |
-
#: adrotate-output.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
msgid "Need help fast? Or do you have a question?"
|
347 |
msgstr "Precisa de ajuda rápido? Ou você tem uma pergunta?"
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid "Help AdRotate Grow"
|
351 |
msgstr "Ajuda AdRotate Crescer"
|
352 |
|
353 |
-
#: adrotate-output.php:
|
354 |
msgid "Get more features with AdRotate Pro"
|
355 |
msgstr "Obter mais recursos com AdRotate Pro"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
msgid ""
|
359 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
360 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
@@ -365,15 +381,15 @@ msgstr ""
|
|
365 |
"AdRotate. Normalmente respondo perguntas no mesmo dia, muitas vezes com uma "
|
366 |
"solução na primeira resposta."
|
367 |
|
368 |
-
#: adrotate-output.php:
|
369 |
msgid "AdRotate Manuals"
|
370 |
msgstr "Manuais de AdRotate"
|
371 |
|
372 |
-
#: adrotate-output.php:
|
373 |
msgid "Support Forums"
|
374 |
msgstr "Fóruns de suporte"
|
375 |
|
376 |
-
#: adrotate-output.php:
|
377 |
msgid ""
|
378 |
"When posting on the forum, please include a brief description of the "
|
379 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
@@ -385,7 +401,7 @@ msgstr ""
|
|
385 |
"está tentando fazer. Fornecer algumas informações extras sempre ajuda a "
|
386 |
"obter uma melhor resposta ou aconselhamento."
|
387 |
|
388 |
-
#: adrotate-output.php:
|
389 |
msgid ""
|
390 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
391 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
@@ -398,23 +414,11 @@ msgstr ""
|
|
398 |
"de fazê-lo é super útil como promoção que ajuda a garantir o desenvolvimento "
|
399 |
"futuro."
|
400 |
|
401 |
-
#: adrotate-output.php:
|
402 |
-
msgid "Post Tweet"
|
403 |
-
msgstr "Postar Tweet"
|
404 |
-
|
405 |
-
#: adrotate-output.php:857
|
406 |
-
msgid "Share on Facebook"
|
407 |
-
msgstr "Compartilhar no Facebook"
|
408 |
-
|
409 |
-
#: adrotate-output.php:857
|
410 |
msgid "Write review on WordPress.org"
|
411 |
msgstr "Escreva revisão sobre WordPress.org"
|
412 |
|
413 |
-
#: adrotate-output.php:
|
414 |
-
msgid "Thank you very much for your help and support!"
|
415 |
-
msgstr "Muito obrigado por sua ajuda e apoio!"
|
416 |
-
|
417 |
-
#: adrotate-output.php:863
|
418 |
msgid ""
|
419 |
"AdRotate Professional has a lot more functions for even better advertising "
|
420 |
"management. Check out the feature comparison tab on any of the product pages "
|
@@ -425,27 +429,27 @@ msgstr ""
|
|
425 |
"qualquer uma das páginas de produto para ver o que AdRotate Pro tem a "
|
426 |
"oferecer para você!"
|
427 |
|
428 |
-
#: adrotate-output.php:
|
429 |
msgid "Compare Licenses"
|
430 |
msgstr "Comparar licenças"
|
431 |
|
432 |
-
#: adrotate-output.php:
|
433 |
msgid "Single License"
|
434 |
msgstr "Licença"
|
435 |
|
436 |
-
#: adrotate-output.php:
|
437 |
msgid "Use on ONE WordPress installation."
|
438 |
msgstr "O uso em UMA instalação do WordPress."
|
439 |
|
440 |
-
#: adrotate-output.php:
|
441 |
msgid "Buy now"
|
442 |
msgstr "Comprar agora"
|
443 |
|
444 |
-
#: adrotate-output.php:
|
445 |
msgid "Multi License"
|
446 |
msgstr "Multi-Licença"
|
447 |
|
448 |
-
#: adrotate-output.php:
|
449 |
msgid "Use on up to FIVE WordPress installations."
|
450 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
451 |
|
@@ -515,7 +519,7 @@ msgstr "Próximo"
|
|
515 |
msgid "No data to show!"
|
516 |
msgstr "Sem dados para mostrar!"
|
517 |
|
518 |
-
#: adrotate-statistics.php:
|
519 |
msgid "Not found"
|
520 |
msgstr "Não encontrado"
|
521 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-02-04 20:21-0700\n"
|
6 |
+
"PO-Revision-Date: 2022-02-04 20:22-0700\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Português do Brasil\n"
|
9 |
"Language: pt_BR\n"
|
342 |
msgid "forums"
|
343 |
msgstr "fóruns"
|
344 |
|
345 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
346 |
+
msgid "Post Tweet"
|
347 |
+
msgstr "Postar Tweet"
|
348 |
+
|
349 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
350 |
+
msgid "Share on Facebook"
|
351 |
+
msgstr "Compartilhar no Facebook"
|
352 |
+
|
353 |
+
#: adrotate-output.php:821
|
354 |
+
msgid "Write review on wordpress.org"
|
355 |
+
msgstr "Escreva revisão sobre WordPress.org"
|
356 |
+
|
357 |
+
#: adrotate-output.php:822 adrotate-output.php:866
|
358 |
+
msgid "Thank you very much for your help and support!"
|
359 |
+
msgstr "Muito obrigado por sua ajuda e apoio!"
|
360 |
+
|
361 |
+
#: adrotate-output.php:852
|
362 |
msgid "Need help fast? Or do you have a question?"
|
363 |
msgstr "Precisa de ajuda rápido? Ou você tem uma pergunta?"
|
364 |
|
365 |
+
#: adrotate-output.php:853
|
366 |
msgid "Help AdRotate Grow"
|
367 |
msgstr "Ajuda AdRotate Crescer"
|
368 |
|
369 |
+
#: adrotate-output.php:854
|
370 |
msgid "Get more features with AdRotate Pro"
|
371 |
msgstr "Obter mais recursos com AdRotate Pro"
|
372 |
|
373 |
+
#: adrotate-output.php:860
|
374 |
msgid ""
|
375 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
376 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
381 |
"AdRotate. Normalmente respondo perguntas no mesmo dia, muitas vezes com uma "
|
382 |
"solução na primeira resposta."
|
383 |
|
384 |
+
#: adrotate-output.php:861
|
385 |
msgid "AdRotate Manuals"
|
386 |
msgstr "Manuais de AdRotate"
|
387 |
|
388 |
+
#: adrotate-output.php:861
|
389 |
msgid "Support Forums"
|
390 |
msgstr "Fóruns de suporte"
|
391 |
|
392 |
+
#: adrotate-output.php:862
|
393 |
msgid ""
|
394 |
"When posting on the forum, please include a brief description of the "
|
395 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
401 |
"está tentando fazer. Fornecer algumas informações extras sempre ajuda a "
|
402 |
"obter uma melhor resposta ou aconselhamento."
|
403 |
|
404 |
+
#: adrotate-output.php:864
|
405 |
msgid ""
|
406 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
407 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
414 |
"de fazê-lo é super útil como promoção que ajuda a garantir o desenvolvimento "
|
415 |
"futuro."
|
416 |
|
417 |
+
#: adrotate-output.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
msgid "Write review on WordPress.org"
|
419 |
msgstr "Escreva revisão sobre WordPress.org"
|
420 |
|
421 |
+
#: adrotate-output.php:868
|
|
|
|
|
|
|
|
|
422 |
msgid ""
|
423 |
"AdRotate Professional has a lot more functions for even better advertising "
|
424 |
"management. Check out the feature comparison tab on any of the product pages "
|
429 |
"qualquer uma das páginas de produto para ver o que AdRotate Pro tem a "
|
430 |
"oferecer para você!"
|
431 |
|
432 |
+
#: adrotate-output.php:868
|
433 |
msgid "Compare Licenses"
|
434 |
msgstr "Comparar licenças"
|
435 |
|
436 |
+
#: adrotate-output.php:869
|
437 |
msgid "Single License"
|
438 |
msgstr "Licença"
|
439 |
|
440 |
+
#: adrotate-output.php:869
|
441 |
msgid "Use on ONE WordPress installation."
|
442 |
msgstr "O uso em UMA instalação do WordPress."
|
443 |
|
444 |
+
#: adrotate-output.php:869 adrotate-output.php:870
|
445 |
msgid "Buy now"
|
446 |
msgstr "Comprar agora"
|
447 |
|
448 |
+
#: adrotate-output.php:870
|
449 |
msgid "Multi License"
|
450 |
msgstr "Multi-Licença"
|
451 |
|
452 |
+
#: adrotate-output.php:870
|
453 |
msgid "Use on up to FIVE WordPress installations."
|
454 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
455 |
|
519 |
msgid "No data to show!"
|
520 |
msgstr "Sem dados para mostrar!"
|
521 |
|
522 |
+
#: adrotate-statistics.php:313 adrotate-statistics.php:314
|
523 |
msgid "Not found"
|
524 |
msgstr "Não encontrado"
|
525 |
|
language/adrotate.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: 2019-09-20 12:05-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
@@ -270,79 +270,83 @@ msgstr ""
|
|
270 |
msgid "forums"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: adrotate-output.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "Need help fast? Or do you have a question?"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "Help AdRotate Grow"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "Get more features with AdRotate Pro"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid "If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the AdRotate support forum. Usually I answer questions the same day, often with a solution in the first answer."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
msgid "AdRotate Manuals"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
msgid "Support Forums"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: adrotate-output.php:
|
298 |
msgid "When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: adrotate-output.php:
|
302 |
msgid "Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: adrotate-output.php:
|
306 |
-
msgid "Post Tweet"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: adrotate-output.php:857
|
310 |
-
msgid "Share on Facebook"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: adrotate-output.php:857
|
314 |
msgid "Write review on WordPress.org"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
-
msgid "Thank you very much for your help and support!"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: adrotate-output.php:863
|
322 |
msgid "AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: adrotate-output.php:
|
326 |
msgid "Compare Licenses"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: adrotate-output.php:
|
330 |
msgid "Single License"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "Use on ONE WordPress installation."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "Buy now"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "Multi License"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "Use on up to FIVE WordPress installations."
|
347 |
msgstr ""
|
348 |
|
@@ -412,7 +416,7 @@ msgstr ""
|
|
412 |
msgid "No data to show!"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: adrotate-statistics.php:
|
416 |
msgid "Not found"
|
417 |
msgstr ""
|
418 |
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
+
"POT-Creation-Date: 2022-02-04 20:21-0700\n"
|
6 |
"PO-Revision-Date: 2019-09-20 12:05-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
270 |
msgid "forums"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
274 |
+
msgid "Post Tweet"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
278 |
+
msgid "Share on Facebook"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: adrotate-output.php:821
|
282 |
+
msgid "Write review on wordpress.org"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: adrotate-output.php:822 adrotate-output.php:866
|
286 |
+
msgid "Thank you very much for your help and support!"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: adrotate-output.php:852
|
290 |
msgid "Need help fast? Or do you have a question?"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: adrotate-output.php:853
|
294 |
msgid "Help AdRotate Grow"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: adrotate-output.php:854
|
298 |
msgid "Get more features with AdRotate Pro"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: adrotate-output.php:860
|
302 |
msgid "If you need help, or have questions about AdRotate, the best and fastest way to get your answer is via the AdRotate support forum. Usually I answer questions the same day, often with a solution in the first answer."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: adrotate-output.php:861
|
306 |
msgid "AdRotate Manuals"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: adrotate-output.php:861
|
310 |
msgid "Support Forums"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: adrotate-output.php:862
|
314 |
msgid "When posting on the forum, please include a brief description of the problem, include any errors or symptoms. Often it helps if you try to explain what you are trying to do. Providing some extra information always helps with gettng a better answer or advise."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: adrotate-output.php:864
|
318 |
msgid "Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: adrotate-output.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgid "Write review on WordPress.org"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: adrotate-output.php:868
|
|
|
|
|
|
|
|
|
326 |
msgid "AdRotate Professional has a lot more functions for even better advertising management. Check out the feature comparison tab on any of the product pages to see what AdRotate Pro has to offer for you!"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: adrotate-output.php:868
|
330 |
msgid "Compare Licenses"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:869
|
334 |
msgid "Single License"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:869
|
338 |
msgid "Use on ONE WordPress installation."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: adrotate-output.php:869 adrotate-output.php:870
|
342 |
msgid "Buy now"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: adrotate-output.php:870
|
346 |
msgid "Multi License"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: adrotate-output.php:870
|
350 |
msgid "Use on up to FIVE WordPress installations."
|
351 |
msgstr ""
|
352 |
|
416 |
msgid "No data to show!"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: adrotate-statistics.php:313 adrotate-statistics.php:314
|
420 |
msgid "Not found"
|
421 |
msgstr ""
|
422 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://ajdg.solutions/go/donate/adrotatefree
|
|
4 |
Tags: adverts, ads, banners, advert manager, ad manager, banner manager, monetize, revenue, place banners, google, adsense, dfp, doubleclick, amazon, affiliate, referral, ClassicPress
|
5 |
Requires at least: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Tested up to: 5.
|
8 |
-
Stable tag: 5.8.
|
9 |
License: GPLv3
|
10 |
|
11 |
Manage all your advertising campaigns and affiliate banners/links with ease. Use any advert banner or link and place them anywhere on your site. Use many powerful features to run successful campaigns and increase your revenue.
|
@@ -65,24 +65,17 @@ For more detailed instructions check out the [installation steps](https://ajdg.s
|
|
65 |
|
66 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
|
67 |
|
68 |
-
= AdRotate 5.8.
|
69 |
-
* [
|
70 |
-
* [
|
71 |
-
* [
|
72 |
-
|
73 |
-
|
74 |
-
* [fix]
|
75 |
-
* [fix]
|
76 |
-
|
77 |
-
|
78 |
-
* [
|
79 |
-
* [new] Warning if %image% is used in adverts
|
80 |
-
* [new] Enable/disable 7 day notification of expiring adverts
|
81 |
-
* [update] Updated dashboard
|
82 |
-
* [fix] Error status for script/ins/iframe ads with click counting enabled
|
83 |
-
* [fix] Error status for ads without a link with click counting enabled
|
84 |
-
* [fix] Better session handling
|
85 |
-
* [i18n] Added more translation strings for email notifications
|
86 |
|
87 |
Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
|
88 |
|
4 |
Tags: adverts, ads, banners, advert manager, ad manager, banner manager, monetize, revenue, place banners, google, adsense, dfp, doubleclick, amazon, affiliate, referral, ClassicPress
|
5 |
Requires at least: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Tested up to: 5.9
|
8 |
+
Stable tag: 5.8.22
|
9 |
License: GPLv3
|
10 |
|
11 |
Manage all your advertising campaigns and affiliate banners/links with ease. Use any advert banner or link and place them anywhere on your site. Use many powerful features to run successful campaigns and increase your revenue.
|
65 |
|
66 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
|
67 |
|
68 |
+
= AdRotate 5.8.22 =
|
69 |
+
* [fix] Overall stats now only count active adverts
|
70 |
+
* [fix] Potential security issue when renewing adverts
|
71 |
+
* [update] Redid dashboard help tabs
|
72 |
+
|
73 |
+
= AdRotate Professional 5.8.17 =
|
74 |
+
* [fix] Notice about height on stats
|
75 |
+
* [fix] Overall stats now only count active adverts
|
76 |
+
* [fix] Archiving adverts deleted wrong stats in some cases
|
77 |
+
* [fix] Uninstaller calling unused/broken functions
|
78 |
+
* [fix] Geo Targeting now properly handles failed server responses
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
|
81 |
|