Version Description
Enjoy this latest 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.6.1 |
Comparing to | |
See all releases |
Code changes from version 5.8.6 to 5.8.6.1
- adrotate-manage-publisher.php +4 -4
- adrotate-setup.php +1 -1
- adrotate.php +51 -51
- dashboard/adrotatepro.php +4 -4
- dashboard/info.php +1 -1
- language/adrotate-de_DE.mo +0 -0
- language/adrotate-de_DE.po +37 -31
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +37 -31
- language/adrotate-it_IT.mo +0 -0
- language/adrotate-it_IT.po +37 -31
- language/adrotate-nl_NL.mo +0 -0
- language/adrotate-nl_NL.po +37 -31
- language/adrotate.pot +22 -22
- readme.txt +34 -25
adrotate-manage-publisher.php
CHANGED
@@ -480,11 +480,11 @@ function adrotate_insert_media() {
|
|
480 |
$creds = request_filesystem_credentials(wp_nonce_url('admin.php?page=adrotate-media'), '', false, $image_path, null);
|
481 |
if(!WP_Filesystem($creds)) {
|
482 |
request_filesystem_credentials(wp_nonce_url('admin.php?page=adrotate-media'), '', true, $image_path, null);
|
|
|
483 |
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
}
|
488 |
}
|
489 |
|
490 |
// Delete the uploaded zip
|
480 |
$creds = request_filesystem_credentials(wp_nonce_url('admin.php?page=adrotate-media'), '', false, $image_path, null);
|
481 |
if(!WP_Filesystem($creds)) {
|
482 |
request_filesystem_credentials(wp_nonce_url('admin.php?page=adrotate-media'), '', true, $image_path, null);
|
483 |
+
}
|
484 |
|
485 |
+
$unzipfile = unzip_file($image_path.$filename, $image_path);
|
486 |
+
if(is_wp_error($unzipfile)) {
|
487 |
+
adrotate_return('adrotate-media', 512); // Can not unzip file
|
|
|
488 |
}
|
489 |
|
490 |
// Delete the uploaded zip
|
adrotate-setup.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
Since: 3.9.8
|
16 |
-------------------------------------------------------------*/
|
17 |
function adrotate_activate($network_wide) {
|
18 |
-
if(is_multisite()
|
19 |
global $wpdb;
|
20 |
|
21 |
$current_blog = $wpdb->blogid;
|
15 |
Since: 3.9.8
|
16 |
-------------------------------------------------------------*/
|
17 |
function adrotate_activate($network_wide) {
|
18 |
+
if(is_multisite() AND $network_wide) {
|
19 |
global $wpdb;
|
20 |
|
21 |
$current_blog = $wpdb->blogid;
|
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: Monetise your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
-
Version: 5.8.6
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
@@ -21,7 +21,7 @@ License: GPLv3
|
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
-
define("ADROTATE_DISPLAY", '5.8.6');
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 66);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
@@ -107,8 +107,8 @@ function adrotate_dashboard() {
|
|
107 |
$adrotate_adverts = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Adverts', 'adrotate'), __('Manage Adverts', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
|
108 |
$adrotate_groups = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
|
109 |
$adrotate_schedules = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
|
110 |
-
$adrotate_statistics = add_submenu_page('adrotate', 'AdRotate · '.__('Statistics', 'adrotate'), __('Statistics', 'adrotate'), 'adrotate_ad_manage', 'adrotate-statistics', 'adrotate_statistics');
|
111 |
$adrotate_media = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
|
|
|
112 |
$adrotate_support = add_submenu_page('adrotate', 'AdRotate · '.__('Support', 'adrotate'), __('Support', 'adrotate'), 'manage_options', 'adrotate-support', 'adrotate_support');
|
113 |
$adrotate_settings = add_submenu_page('adrotate', 'AdRotate · '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
|
114 |
|
@@ -118,8 +118,8 @@ function adrotate_dashboard() {
|
|
118 |
add_action('load-'.$adrotate_adverts, 'adrotate_help_info');
|
119 |
add_action('load-'.$adrotate_groups, 'adrotate_help_info');
|
120 |
add_action('load-'.$adrotate_schedules, 'adrotate_help_info');
|
121 |
-
add_action('load-'.$adrotate_statistics, 'adrotate_help_info');
|
122 |
add_action('load-'.$adrotate_media, 'adrotate_help_info');
|
|
|
123 |
add_action('load-'.$adrotate_settings, 'adrotate_help_info');
|
124 |
}
|
125 |
|
@@ -149,7 +149,7 @@ function adrotate_info() {
|
|
149 |
function adrotate_pro() {
|
150 |
?>
|
151 |
<div class="wrap">
|
152 |
-
<h1><?php _e('AdRotate Professional', 'adrotate'); ?></h1>
|
153 |
|
154 |
<br class="clear" />
|
155 |
|
@@ -193,7 +193,7 @@ function adrotate_manage() {
|
|
193 |
$monthend = mktime(0, 0, 0, $month+1, 0, $year);
|
194 |
?>
|
195 |
<div class="wrap">
|
196 |
-
<h1><?php _e('
|
197 |
|
198 |
<?php
|
199 |
if($status > 0) adrotate_status($status, array('file' => $file));
|
@@ -318,7 +318,7 @@ function adrotate_manage_group() {
|
|
318 |
$in7days = $now + 604800;
|
319 |
?>
|
320 |
<div class="wrap">
|
321 |
-
<h1><?php _e('
|
322 |
|
323 |
<?php if($status > 0) adrotate_status($status); ?>
|
324 |
|
@@ -355,7 +355,7 @@ function adrotate_manage_schedules() {
|
|
355 |
$in2days = $now + 172800;
|
356 |
?>
|
357 |
<div class="wrap">
|
358 |
-
<h1><?php _e('Schedules', 'adrotate'); ?></h1>
|
359 |
|
360 |
<?php
|
361 |
include("dashboard/publisher/schedules-main.php");
|
@@ -370,46 +370,38 @@ function adrotate_manage_schedules() {
|
|
370 |
}
|
371 |
|
372 |
/*-------------------------------------------------------------
|
373 |
-
Name:
|
374 |
-
Purpose:
|
375 |
-------------------------------------------------------------*/
|
376 |
-
function
|
377 |
global $wpdb, $adrotate_config;
|
378 |
|
379 |
-
$status = $
|
380 |
if(isset($_GET['status'])) $status = esc_attr($_GET['status']);
|
381 |
-
if(isset($_GET['view'])) $view = esc_attr($_GET['view']);
|
382 |
-
if(isset($_GET['id'])) $id = esc_attr($_GET['id']);
|
383 |
if(isset($_GET['file'])) $file = esc_attr($_GET['file']);
|
384 |
|
385 |
if(!is_numeric($status)) $status = 0;
|
386 |
-
if(!is_numeric($id)) $id = 0;
|
387 |
|
388 |
-
if(
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
}
|
395 |
-
$monthstart = gmmktime(0, 0, 0, $month, 1, $year);
|
396 |
-
$monthend = gmmktime(0, 0, 0, $month+1, 0, $year);
|
397 |
-
$today = adrotate_date_start('day');
|
398 |
?>
|
|
|
399 |
<div class="wrap">
|
400 |
-
<
|
401 |
|
402 |
-
<?php if($status > 0) adrotate_status($status
|
|
|
|
|
403 |
|
404 |
<?php
|
405 |
-
|
406 |
-
include("dashboard/publisher/statistics-main.php");
|
407 |
-
} else if($view == "advert") {
|
408 |
-
include("dashboard/publisher/statistics-advert.php");
|
409 |
-
} else if($view == "group") {
|
410 |
-
include("dashboard/publisher/statistics-group.php");
|
411 |
-
}
|
412 |
?>
|
|
|
413 |
<br class="clear" />
|
414 |
|
415 |
<?php adrotate_credits(); ?>
|
@@ -419,38 +411,46 @@ function adrotate_statistics() {
|
|
419 |
}
|
420 |
|
421 |
/*-------------------------------------------------------------
|
422 |
-
Name:
|
423 |
-
Purpose:
|
424 |
-------------------------------------------------------------*/
|
425 |
-
function
|
426 |
global $wpdb, $adrotate_config;
|
427 |
|
428 |
-
$status = $file = '';
|
429 |
if(isset($_GET['status'])) $status = esc_attr($_GET['status']);
|
|
|
|
|
430 |
if(isset($_GET['file'])) $file = esc_attr($_GET['file']);
|
431 |
|
432 |
if(!is_numeric($status)) $status = 0;
|
|
|
433 |
|
434 |
-
if(
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
}
|
|
|
|
|
|
|
441 |
?>
|
442 |
-
|
443 |
<div class="wrap">
|
444 |
-
<
|
445 |
|
446 |
-
<?php if($status > 0) adrotate_status($status); ?>
|
447 |
-
|
448 |
-
<p><?php _e('Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files.', 'adrotate'); ?></p>
|
449 |
|
450 |
<?php
|
451 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
?>
|
453 |
-
|
454 |
<br class="clear" />
|
455 |
|
456 |
<?php adrotate_credits(); ?>
|
@@ -481,7 +481,7 @@ function adrotate_support() {
|
|
481 |
?>
|
482 |
|
483 |
<div class="wrap">
|
484 |
-
<h1><?php _e('Support', 'adrotate'); ?></h1>
|
485 |
|
486 |
<?php if($status > 0) adrotate_status($status); ?>
|
487 |
|
6 |
Author URI: https://www.arnan.me/?pk_campaign=adrotatefree&pk_keyword=plugin_info
|
7 |
Description: Monetise your website with adverts while keeping things simple. Start making money today!
|
8 |
Text Domain: adrotate
|
9 |
+
Version: 5.8.6.1
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
+
define("ADROTATE_DISPLAY", '5.8.6.1');
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 66);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
107 |
$adrotate_adverts = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Adverts', 'adrotate'), __('Manage Adverts', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
|
108 |
$adrotate_groups = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Groups', 'adrotate'), __('Manage Groups', 'adrotate'), 'adrotate_group_manage', 'adrotate-groups', 'adrotate_manage_group');
|
109 |
$adrotate_schedules = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Schedules', 'adrotate'), __('Manage Schedules', 'adrotate'), 'adrotate_ad_manage', 'adrotate-schedules', 'adrotate_manage_schedules');
|
|
|
110 |
$adrotate_media = add_submenu_page('adrotate', 'AdRotate · '.__('Manage Media', 'adrotate'), __('Manage Media', 'adrotate'), 'adrotate_ad_manage', 'adrotate-media', 'adrotate_manage_media');
|
111 |
+
$adrotate_statistics = add_submenu_page('adrotate', 'AdRotate · '.__('Statistics', 'adrotate'), __('Statistics', 'adrotate'), 'adrotate_ad_manage', 'adrotate-statistics', 'adrotate_statistics');
|
112 |
$adrotate_support = add_submenu_page('adrotate', 'AdRotate · '.__('Support', 'adrotate'), __('Support', 'adrotate'), 'manage_options', 'adrotate-support', 'adrotate_support');
|
113 |
$adrotate_settings = add_submenu_page('adrotate', 'AdRotate · '.__('Settings', 'adrotate'), __('Settings', 'adrotate'), 'manage_options', 'adrotate-settings', 'adrotate_options');
|
114 |
|
118 |
add_action('load-'.$adrotate_adverts, 'adrotate_help_info');
|
119 |
add_action('load-'.$adrotate_groups, 'adrotate_help_info');
|
120 |
add_action('load-'.$adrotate_schedules, 'adrotate_help_info');
|
|
|
121 |
add_action('load-'.$adrotate_media, 'adrotate_help_info');
|
122 |
+
add_action('load-'.$adrotate_statistics, 'adrotate_help_info');
|
123 |
add_action('load-'.$adrotate_settings, 'adrotate_help_info');
|
124 |
}
|
125 |
|
149 |
function adrotate_pro() {
|
150 |
?>
|
151 |
<div class="wrap">
|
152 |
+
<h1><?php _e('Get AdRotate Professional', 'adrotate'); ?></h1>
|
153 |
|
154 |
<br class="clear" />
|
155 |
|
193 |
$monthend = mktime(0, 0, 0, $month+1, 0, $year);
|
194 |
?>
|
195 |
<div class="wrap">
|
196 |
+
<h1><?php _e('Manage Adverts', 'adrotate'); ?></h1>
|
197 |
|
198 |
<?php
|
199 |
if($status > 0) adrotate_status($status, array('file' => $file));
|
318 |
$in7days = $now + 604800;
|
319 |
?>
|
320 |
<div class="wrap">
|
321 |
+
<h1><?php _e('Manage Groups', 'adrotate'); ?></h1>
|
322 |
|
323 |
<?php if($status > 0) adrotate_status($status); ?>
|
324 |
|
355 |
$in2days = $now + 172800;
|
356 |
?>
|
357 |
<div class="wrap">
|
358 |
+
<h1><?php _e('Manage Schedules', 'adrotate'); ?></h1>
|
359 |
|
360 |
<?php
|
361 |
include("dashboard/publisher/schedules-main.php");
|
370 |
}
|
371 |
|
372 |
/*-------------------------------------------------------------
|
373 |
+
Name: adrotate_manage_media
|
374 |
+
Purpose: Manage banner images for ads
|
375 |
-------------------------------------------------------------*/
|
376 |
+
function adrotate_manage_media() {
|
377 |
global $wpdb, $adrotate_config;
|
378 |
|
379 |
+
$status = $file = '';
|
380 |
if(isset($_GET['status'])) $status = esc_attr($_GET['status']);
|
|
|
|
|
381 |
if(isset($_GET['file'])) $file = esc_attr($_GET['file']);
|
382 |
|
383 |
if(!is_numeric($status)) $status = 0;
|
|
|
384 |
|
385 |
+
if(strlen($file) > 0 AND wp_verify_nonce($_REQUEST['_wpnonce'], 'adrotate_delete_media_'.$file)) {
|
386 |
+
if(adrotate_unlink($file)) {
|
387 |
+
$status = 206;
|
388 |
+
} else {
|
389 |
+
$status = 207;
|
390 |
+
}
|
391 |
}
|
|
|
|
|
|
|
392 |
?>
|
393 |
+
|
394 |
<div class="wrap">
|
395 |
+
<h1><?php _e('Manage Media and Assets', 'adrotate'); ?></h1>
|
396 |
|
397 |
+
<?php if($status > 0) adrotate_status($status); ?>
|
398 |
+
|
399 |
+
<p><?php _e('Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files.', 'adrotate'); ?></p>
|
400 |
|
401 |
<?php
|
402 |
+
include("dashboard/publisher/media.php");
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
?>
|
404 |
+
|
405 |
<br class="clear" />
|
406 |
|
407 |
<?php adrotate_credits(); ?>
|
411 |
}
|
412 |
|
413 |
/*-------------------------------------------------------------
|
414 |
+
Name: adrotate_statistics
|
415 |
+
Purpose: Advert and Group stats
|
416 |
-------------------------------------------------------------*/
|
417 |
+
function adrotate_statistics() {
|
418 |
global $wpdb, $adrotate_config;
|
419 |
|
420 |
+
$status = $view = $file = $id = '';
|
421 |
if(isset($_GET['status'])) $status = esc_attr($_GET['status']);
|
422 |
+
if(isset($_GET['view'])) $view = esc_attr($_GET['view']);
|
423 |
+
if(isset($_GET['id'])) $id = esc_attr($_GET['id']);
|
424 |
if(isset($_GET['file'])) $file = esc_attr($_GET['file']);
|
425 |
|
426 |
if(!is_numeric($status)) $status = 0;
|
427 |
+
if(!is_numeric($id)) $id = 0;
|
428 |
|
429 |
+
if(isset($_GET['month']) AND isset($_GET['year'])) {
|
430 |
+
$month = esc_attr($_GET['month']);
|
431 |
+
$year = esc_attr($_GET['year']);
|
432 |
+
} else {
|
433 |
+
$month = date("m");
|
434 |
+
$year = date("Y");
|
435 |
}
|
436 |
+
$monthstart = gmmktime(0, 0, 0, $month, 1, $year);
|
437 |
+
$monthend = gmmktime(0, 0, 0, $month+1, 0, $year);
|
438 |
+
$today = adrotate_date_start('day');
|
439 |
?>
|
|
|
440 |
<div class="wrap">
|
441 |
+
<h2><?php _e('Advert Statistics', 'adrotate'); ?></h2>
|
442 |
|
443 |
+
<?php if($status > 0) adrotate_status($status, array('file' => $file)); ?>
|
|
|
|
|
444 |
|
445 |
<?php
|
446 |
+
if ($view == "") {
|
447 |
+
include("dashboard/publisher/statistics-main.php");
|
448 |
+
} else if($view == "advert") {
|
449 |
+
include("dashboard/publisher/statistics-advert.php");
|
450 |
+
} else if($view == "group") {
|
451 |
+
include("dashboard/publisher/statistics-group.php");
|
452 |
+
}
|
453 |
?>
|
|
|
454 |
<br class="clear" />
|
455 |
|
456 |
<?php adrotate_credits(); ?>
|
481 |
?>
|
482 |
|
483 |
<div class="wrap">
|
484 |
+
<h1><?php _e('AdRotate Support', 'adrotate'); ?></h1>
|
485 |
|
486 |
<?php if($status > 0) adrotate_status($status); ?>
|
487 |
|
dashboard/adrotatepro.php
CHANGED
@@ -15,25 +15,25 @@
|
|
15 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
16 |
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/single.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
17 |
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
18 |
-
<div class="sub_title">Use on 1 website<br /><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">
|
19 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 39</a></div>
|
20 |
</div>
|
21 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
22 |
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/duo.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
23 |
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
24 |
-
<div class="sub_title">Use on 2 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">
|
25 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1126&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 49</a></div>
|
26 |
</div>
|
27 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
28 |
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/multi.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
29 |
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
30 |
-
<div class="sub_title">Use on up-to 5 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">
|
31 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 99</a></div>
|
32 |
</div>
|
33 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
34 |
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/developer.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
35 |
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
36 |
-
<div class="sub_title">Use on up-to 100 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">
|
37 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1130&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 199</a></div>
|
38 |
</div>
|
39 |
</div>
|
15 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
16 |
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/single.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
17 |
<a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
18 |
+
<div class="sub_title">Use on 1 website<br /><a href="https://ajdg.solutions/product/adrotate-pro-single/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
19 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1124&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 39</a></div>
|
20 |
</div>
|
21 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
22 |
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/duo.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
23 |
<a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
24 |
+
<div class="sub_title">Use on 2 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-duo/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
25 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1126&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 49</a></div>
|
26 |
</div>
|
27 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
28 |
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/multi.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
29 |
<a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
30 |
+
<div class="sub_title">Use on up-to 5 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-multi/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
31 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1128&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 99</a></div>
|
32 |
</div>
|
33 |
<div class="ajdg-sales-widget" style="display: inline-block; margin-right:20px; width: 230px;">
|
34 |
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="header"><img src="<?php echo plugins_url("/images/pro/developer.jpg", dirname(__FILE__)); ?>" alt="WordPress Maintenance & Updates" width="228" height="120"></div></a>
|
35 |
<a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank"><div class="title">AdRotate Professional</div></a>
|
36 |
+
<div class="sub_title">Use on up-to 100 websites<br /><a href="https://ajdg.solutions/product/adrotate-pro-developer/?pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">View product page</a></div>
|
37 |
<div class="cta"><a role="button" class="cta_button" href="https://ajdg.solutions/?add-to-cart=1130&pk_campaign=adrotatefree&pk_keyword=adrotatepro_page" target="_blank">Buy now for € 199</a></div>
|
38 |
</div>
|
39 |
</div>
|
dashboard/info.php
CHANGED
@@ -48,7 +48,7 @@ $data = get_option("adrotate_advert_status");
|
|
48 |
<div id="services" class="ajdg-postbox-content">
|
49 |
<p>Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development. Thank you for your consideration and support!</p>
|
50 |
|
51 |
-
<p><a href="https://twitter.com/intent/tweet?hashtags=
|
52 |
</div>
|
53 |
</div>
|
54 |
|
48 |
<div id="services" class="ajdg-postbox-content">
|
49 |
<p>Consider writing a review, sharing AdRotate in Social media or making a donation if you like the plugin or if you find it useful. Writing a review and sharing AdRotate on social media costs you nothing but doing so is super helpful as promotion which helps to ensure future development. Thank you for your consideration and support!</p>
|
50 |
|
51 |
+
<p><a href="https://twitter.com/intent/tweet?hashtags=adrotate%2Cwordpress%2Cplugin%2Cadvertising&related=arnandegans%2Cwordpress&text=I%20am%20using%20AdRotate%20for%20@WordPress.%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&src=adrotate" target="_blank" class="button-primary goosebox"><i class="icn-fb"></i>Share on Facebook</a> <a class="button-primary" href="https://ajdg.solutions/go/donate/adrotatefree" target="_blank">Donate via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/plugin/adrotate/reviews/?rate=5#new-post">Write review on WordPress.org</a></p>
|
52 |
</div>
|
53 |
</div>
|
54 |
|
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: 2020-07-
|
6 |
-
"PO-Revision-Date: 2020-07-
|
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"
|
@@ -352,7 +352,7 @@ msgstr "Forum"
|
|
352 |
msgid "Help AdRotate Grow"
|
353 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
354 |
|
355 |
-
#: adrotate-output.php:838
|
356 |
msgid "AdRotate Professional"
|
357 |
msgstr "AdRotate Professional"
|
358 |
|
@@ -514,30 +514,30 @@ msgstr "Allgemeine Info"
|
|
514 |
msgid "Get AdRotate Pro"
|
515 |
msgstr "AdRotate Pro"
|
516 |
|
517 |
-
#: adrotate.php:107
|
518 |
msgid "Manage Adverts"
|
519 |
msgstr "Anzeigen verwalten"
|
520 |
|
521 |
-
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
522 |
msgid "Manage Groups"
|
523 |
msgstr "Gruppen verwalten"
|
524 |
|
525 |
-
#: adrotate.php:109 dashboard/publisher/schedules-main.php:12
|
526 |
msgid "Manage Schedules"
|
527 |
msgstr "Zeiträume verwalten"
|
528 |
|
529 |
-
#: adrotate.php:110
|
530 |
-
|
|
|
|
|
|
|
|
|
531 |
#: dashboard/publisher/statistics-main.php:23
|
532 |
#: dashboard/settings/statistics.php:17
|
533 |
msgid "Statistics"
|
534 |
msgstr "Auswertungen"
|
535 |
|
536 |
-
#: adrotate.php:
|
537 |
-
msgid "Manage Media"
|
538 |
-
msgstr "Medien verwalten"
|
539 |
-
|
540 |
-
#: adrotate.php:112 adrotate.php:484
|
541 |
msgid "Support"
|
542 |
msgstr "Support"
|
543 |
|
@@ -549,9 +549,9 @@ msgstr "Einstellungen"
|
|
549 |
msgid "AdRotate Info"
|
550 |
msgstr "AdRotate Info"
|
551 |
|
552 |
-
#: adrotate.php:
|
553 |
-
msgid "
|
554 |
-
msgstr "
|
555 |
|
556 |
#: adrotate.php:256 adrotate.php:327
|
557 |
msgid "Manage"
|
@@ -565,19 +565,11 @@ msgstr "QR-Code-Generator (für Ihre vCard)"
|
|
565 |
msgid "Add New"
|
566 |
msgstr "Neu hinzufügen"
|
567 |
|
568 |
-
#: adrotate.php:
|
569 |
-
msgid "
|
570 |
-
msgstr "
|
571 |
-
|
572 |
-
#: adrotate.php:358
|
573 |
-
msgid "Schedules"
|
574 |
-
msgstr "Zeitpläne"
|
575 |
-
|
576 |
-
#: adrotate.php:444
|
577 |
-
msgid "Media and Assets"
|
578 |
-
msgstr "Medien und Assets"
|
579 |
|
580 |
-
#: adrotate.php:
|
581 |
msgid ""
|
582 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
583 |
"if you have HTML5 adverts containing multiple files."
|
@@ -586,6 +578,14 @@ msgstr ""
|
|
586 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
587 |
"mehrere Dateien enthalten."
|
588 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
#: adrotate.php:514
|
590 |
msgid "AdRotate Settings"
|
591 |
msgstr "AdRotate Einstellungen"
|
@@ -3487,6 +3487,15 @@ msgstr "Hilfe erhalten"
|
|
3487 |
msgid "Premium Support is available in AdRotate Pro!"
|
3488 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
3489 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3490 |
#~ msgid "AdRotate Pro"
|
3491 |
#~ msgstr "AdRotate Pro"
|
3492 |
|
@@ -3638,9 +3647,6 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
|
3638 |
#~ msgid "No, do not show this ad anywhere"
|
3639 |
#~ msgstr "Nein, diese Anzeige nicht überall anzeigen"
|
3640 |
|
3641 |
-
#~ msgid "[AdRotate] CSV Report!"
|
3642 |
-
#~ msgstr "[AdRotate] CSV-Report!"
|
3643 |
-
|
3644 |
#~ msgid "Hello"
|
3645 |
#~ msgstr "Guten Tag"
|
3646 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-07-23 17:15-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-07-23 17:16-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
|
9 |
"Language: de\n"
|
352 |
msgid "Help AdRotate Grow"
|
353 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
354 |
|
355 |
+
#: adrotate-output.php:838
|
356 |
msgid "AdRotate Professional"
|
357 |
msgstr "AdRotate Professional"
|
358 |
|
514 |
msgid "Get AdRotate Pro"
|
515 |
msgstr "AdRotate Pro"
|
516 |
|
517 |
+
#: adrotate.php:107 adrotate.php:196
|
518 |
msgid "Manage Adverts"
|
519 |
msgstr "Anzeigen verwalten"
|
520 |
|
521 |
+
#: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
|
522 |
msgid "Manage Groups"
|
523 |
msgstr "Gruppen verwalten"
|
524 |
|
525 |
+
#: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
|
526 |
msgid "Manage Schedules"
|
527 |
msgstr "Zeiträume verwalten"
|
528 |
|
529 |
+
#: adrotate.php:110
|
530 |
+
msgid "Manage Media"
|
531 |
+
msgstr "Medien verwalten"
|
532 |
+
|
533 |
+
#: adrotate.php:111 adrotate.php:521 dashboard/adrotatepro.php:98
|
534 |
+
#: dashboard/publisher/adverts-edit.php:177
|
535 |
#: dashboard/publisher/statistics-main.php:23
|
536 |
#: dashboard/settings/statistics.php:17
|
537 |
msgid "Statistics"
|
538 |
msgstr "Auswertungen"
|
539 |
|
540 |
+
#: adrotate.php:112
|
|
|
|
|
|
|
|
|
541 |
msgid "Support"
|
542 |
msgstr "Support"
|
543 |
|
549 |
msgid "AdRotate Info"
|
550 |
msgstr "AdRotate Info"
|
551 |
|
552 |
+
#: adrotate.php:152
|
553 |
+
msgid "Get AdRotate Professional"
|
554 |
+
msgstr "AdRotate Professional kaufen"
|
555 |
|
556 |
#: adrotate.php:256 adrotate.php:327
|
557 |
msgid "Manage"
|
565 |
msgid "Add New"
|
566 |
msgstr "Neu hinzufügen"
|
567 |
|
568 |
+
#: adrotate.php:395
|
569 |
+
msgid "Manage Media and Assets"
|
570 |
+
msgstr "Verwalten von Medien und Ressourcen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
|
572 |
+
#: adrotate.php:399
|
573 |
msgid ""
|
574 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
575 |
"if you have HTML5 adverts containing multiple files."
|
578 |
"Bannerordner hoch. Dies ist nützlich, wenn Sie HTML5-Anzeigen haben, die "
|
579 |
"mehrere Dateien enthalten."
|
580 |
|
581 |
+
#: adrotate.php:441
|
582 |
+
msgid "Advert Statistics"
|
583 |
+
msgstr "Statistiken zur Anzeige"
|
584 |
+
|
585 |
+
#: adrotate.php:484
|
586 |
+
msgid "AdRotate Support"
|
587 |
+
msgstr "AdRotate-Unterstützung"
|
588 |
+
|
589 |
#: adrotate.php:514
|
590 |
msgid "AdRotate Settings"
|
591 |
msgstr "AdRotate Einstellungen"
|
3487 |
msgid "Premium Support is available in AdRotate Pro!"
|
3488 |
msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
3489 |
|
3490 |
+
#~ msgid "Advert Management"
|
3491 |
+
#~ msgstr "Anzeige-Management"
|
3492 |
+
|
3493 |
+
#~ msgid "Group Management"
|
3494 |
+
#~ msgstr "Gruppen-Verwaltung"
|
3495 |
+
|
3496 |
+
#~ msgid "Schedules"
|
3497 |
+
#~ msgstr "Zeitpläne"
|
3498 |
+
|
3499 |
#~ msgid "AdRotate Pro"
|
3500 |
#~ msgstr "AdRotate Pro"
|
3501 |
|
3647 |
#~ msgid "No, do not show this ad anywhere"
|
3648 |
#~ msgstr "Nein, diese Anzeige nicht überall anzeigen"
|
3649 |
|
|
|
|
|
|
|
3650 |
#~ msgid "Hello"
|
3651 |
#~ msgstr "Guten Tag"
|
3652 |
|
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 Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-07-
|
6 |
-
"PO-Revision-Date: 2020-07-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
@@ -352,7 +352,7 @@ msgstr "forums"
|
|
352 |
msgid "Help AdRotate Grow"
|
353 |
msgstr "AdRotate Pro"
|
354 |
|
355 |
-
#: adrotate-output.php:838
|
356 |
msgid "AdRotate Professional"
|
357 |
msgstr "AdRotate professionel"
|
358 |
|
@@ -517,30 +517,30 @@ msgstr "Informations générales"
|
|
517 |
msgid "Get AdRotate Pro"
|
518 |
msgstr "Obtenez AdRotate Pro"
|
519 |
|
520 |
-
#: adrotate.php:107
|
521 |
msgid "Manage Adverts"
|
522 |
msgstr "Gérer Annonces"
|
523 |
|
524 |
-
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
525 |
msgid "Manage Groups"
|
526 |
msgstr "Gérer les groupes"
|
527 |
|
528 |
-
#: adrotate.php:109 dashboard/publisher/schedules-main.php:12
|
529 |
msgid "Manage Schedules"
|
530 |
msgstr "Gérer les horaires"
|
531 |
|
532 |
-
#: adrotate.php:110
|
533 |
-
|
|
|
|
|
|
|
|
|
534 |
#: dashboard/publisher/statistics-main.php:23
|
535 |
#: dashboard/settings/statistics.php:17
|
536 |
msgid "Statistics"
|
537 |
msgstr "Statistiques"
|
538 |
|
539 |
-
#: adrotate.php:
|
540 |
-
msgid "Manage Media"
|
541 |
-
msgstr "Gérer les médias"
|
542 |
-
|
543 |
-
#: adrotate.php:112 adrotate.php:484
|
544 |
msgid "Support"
|
545 |
msgstr "Support"
|
546 |
|
@@ -552,9 +552,9 @@ msgstr "Paramètres"
|
|
552 |
msgid "AdRotate Info"
|
553 |
msgstr "Informations sur Adrotate"
|
554 |
|
555 |
-
#: adrotate.php:
|
556 |
-
msgid "
|
557 |
-
msgstr "
|
558 |
|
559 |
#: adrotate.php:256 adrotate.php:327
|
560 |
msgid "Manage"
|
@@ -568,19 +568,11 @@ msgstr "Générateur"
|
|
568 |
msgid "Add New"
|
569 |
msgstr "Ajouter"
|
570 |
|
571 |
-
#: adrotate.php:
|
572 |
-
msgid "
|
573 |
-
msgstr "Gérer les
|
574 |
-
|
575 |
-
#: adrotate.php:358
|
576 |
-
msgid "Schedules"
|
577 |
-
msgstr "Planifications"
|
578 |
|
579 |
-
#: adrotate.php:
|
580 |
-
msgid "Media and Assets"
|
581 |
-
msgstr "Médias et actifs"
|
582 |
-
|
583 |
-
#: adrotate.php:448
|
584 |
msgid ""
|
585 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
586 |
"if you have HTML5 adverts containing multiple files."
|
@@ -589,6 +581,14 @@ msgstr ""
|
|
589 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
590 |
"fichiers."
|
591 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
#: adrotate.php:514
|
593 |
msgid "AdRotate Settings"
|
594 |
msgstr "Paramètres de AdRotate"
|
@@ -3493,6 +3493,15 @@ msgstr "Aide"
|
|
3493 |
msgid "Premium Support is available in AdRotate Pro!"
|
3494 |
msgstr "Premium Support est disponible dans AdRotate Pro!"
|
3495 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3496 |
#~ msgid "AdRotate Pro"
|
3497 |
#~ msgstr "AdRotate Pro"
|
3498 |
|
@@ -3634,9 +3643,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
|
|
3634 |
#~ msgid "View topics"
|
3635 |
#~ msgstr "Afficher les sujets"
|
3636 |
|
3637 |
-
#~ msgid "[AdRotate] CSV Report!"
|
3638 |
-
#~ msgstr "[AdRotate] Rapport CSV!"
|
3639 |
-
|
3640 |
#~ msgid "Hello"
|
3641 |
#~ msgstr "Bonjour"
|
3642 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-07-23 17:14-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-07-23 17:15-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
352 |
msgid "Help AdRotate Grow"
|
353 |
msgstr "AdRotate Pro"
|
354 |
|
355 |
+
#: adrotate-output.php:838
|
356 |
msgid "AdRotate Professional"
|
357 |
msgstr "AdRotate professionel"
|
358 |
|
517 |
msgid "Get AdRotate Pro"
|
518 |
msgstr "Obtenez AdRotate Pro"
|
519 |
|
520 |
+
#: adrotate.php:107 adrotate.php:196
|
521 |
msgid "Manage Adverts"
|
522 |
msgstr "Gérer Annonces"
|
523 |
|
524 |
+
#: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
|
525 |
msgid "Manage Groups"
|
526 |
msgstr "Gérer les groupes"
|
527 |
|
528 |
+
#: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
|
529 |
msgid "Manage Schedules"
|
530 |
msgstr "Gérer les horaires"
|
531 |
|
532 |
+
#: adrotate.php:110
|
533 |
+
msgid "Manage Media"
|
534 |
+
msgstr "Gérer les médias"
|
535 |
+
|
536 |
+
#: adrotate.php:111 adrotate.php:521 dashboard/adrotatepro.php:98
|
537 |
+
#: dashboard/publisher/adverts-edit.php:177
|
538 |
#: dashboard/publisher/statistics-main.php:23
|
539 |
#: dashboard/settings/statistics.php:17
|
540 |
msgid "Statistics"
|
541 |
msgstr "Statistiques"
|
542 |
|
543 |
+
#: adrotate.php:112
|
|
|
|
|
|
|
|
|
544 |
msgid "Support"
|
545 |
msgstr "Support"
|
546 |
|
552 |
msgid "AdRotate Info"
|
553 |
msgstr "Informations sur Adrotate"
|
554 |
|
555 |
+
#: adrotate.php:152
|
556 |
+
msgid "Get AdRotate Professional"
|
557 |
+
msgstr "Obtenez AdRotate Professional"
|
558 |
|
559 |
#: adrotate.php:256 adrotate.php:327
|
560 |
msgid "Manage"
|
568 |
msgid "Add New"
|
569 |
msgstr "Ajouter"
|
570 |
|
571 |
+
#: adrotate.php:395
|
572 |
+
msgid "Manage Media and Assets"
|
573 |
+
msgstr "Gérer les médias et les actifs"
|
|
|
|
|
|
|
|
|
574 |
|
575 |
+
#: adrotate.php:399
|
|
|
|
|
|
|
|
|
576 |
msgid ""
|
577 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
578 |
"if you have HTML5 adverts containing multiple files."
|
581 |
"d’ici. Ceci est utile si vous avez des annonces HTML5 contenant plusieurs "
|
582 |
"fichiers."
|
583 |
|
584 |
+
#: adrotate.php:441
|
585 |
+
msgid "Advert Statistics"
|
586 |
+
msgstr "Statistiques de publicité"
|
587 |
+
|
588 |
+
#: adrotate.php:484
|
589 |
+
msgid "AdRotate Support"
|
590 |
+
msgstr "Assistance AdRotate"
|
591 |
+
|
592 |
#: adrotate.php:514
|
593 |
msgid "AdRotate Settings"
|
594 |
msgstr "Paramètres de AdRotate"
|
3493 |
msgid "Premium Support is available in AdRotate Pro!"
|
3494 |
msgstr "Premium Support est disponible dans AdRotate Pro!"
|
3495 |
|
3496 |
+
#~ msgid "Advert Management"
|
3497 |
+
#~ msgstr "Gestion de l’annonce"
|
3498 |
+
|
3499 |
+
#~ msgid "Group Management"
|
3500 |
+
#~ msgstr "Gérer les groupes"
|
3501 |
+
|
3502 |
+
#~ msgid "Schedules"
|
3503 |
+
#~ msgstr "Planifications"
|
3504 |
+
|
3505 |
#~ msgid "AdRotate Pro"
|
3506 |
#~ msgstr "AdRotate Pro"
|
3507 |
|
3643 |
#~ msgid "View topics"
|
3644 |
#~ msgstr "Afficher les sujets"
|
3645 |
|
|
|
|
|
|
|
3646 |
#~ msgid "Hello"
|
3647 |
#~ msgstr "Bonjour"
|
3648 |
|
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 Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-07-
|
6 |
-
"PO-Revision-Date: 2020-07-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
@@ -347,7 +347,7 @@ msgstr "forum"
|
|
347 |
msgid "Help AdRotate Grow"
|
348 |
msgstr "Aiuta AdRotate a crescere"
|
349 |
|
350 |
-
#: adrotate-output.php:838
|
351 |
msgid "AdRotate Professional"
|
352 |
msgstr "AdRotate Professional"
|
353 |
|
@@ -509,30 +509,30 @@ msgstr "Informazioni generali"
|
|
509 |
msgid "Get AdRotate Pro"
|
510 |
msgstr "Ottieni AdRotate Pro"
|
511 |
|
512 |
-
#: adrotate.php:107
|
513 |
msgid "Manage Adverts"
|
514 |
msgstr "Gestisci Inserzioni"
|
515 |
|
516 |
-
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
517 |
msgid "Manage Groups"
|
518 |
msgstr "Gestisci Gruppi"
|
519 |
|
520 |
-
#: adrotate.php:109 dashboard/publisher/schedules-main.php:12
|
521 |
msgid "Manage Schedules"
|
522 |
msgstr "Gestisci pianificazioni"
|
523 |
|
524 |
-
#: adrotate.php:110
|
525 |
-
|
|
|
|
|
|
|
|
|
526 |
#: dashboard/publisher/statistics-main.php:23
|
527 |
#: dashboard/settings/statistics.php:17
|
528 |
msgid "Statistics"
|
529 |
msgstr "Statistiche"
|
530 |
|
531 |
-
#: adrotate.php:
|
532 |
-
msgid "Manage Media"
|
533 |
-
msgstr "Gestisci Media"
|
534 |
-
|
535 |
-
#: adrotate.php:112 adrotate.php:484
|
536 |
msgid "Support"
|
537 |
msgstr "Supporto"
|
538 |
|
@@ -544,9 +544,9 @@ msgstr "Impostazioni"
|
|
544 |
msgid "AdRotate Info"
|
545 |
msgstr "Informazioni AdRotate"
|
546 |
|
547 |
-
#: adrotate.php:
|
548 |
-
msgid "
|
549 |
-
msgstr "
|
550 |
|
551 |
#: adrotate.php:256 adrotate.php:327
|
552 |
msgid "Manage"
|
@@ -560,19 +560,11 @@ msgstr "Generatore"
|
|
560 |
msgid "Add New"
|
561 |
msgstr "Aggiungi Nuovo"
|
562 |
|
563 |
-
#: adrotate.php:
|
564 |
-
msgid "
|
565 |
-
msgstr "
|
566 |
-
|
567 |
-
#: adrotate.php:358
|
568 |
-
msgid "Schedules"
|
569 |
-
msgstr "Pianificazioni"
|
570 |
|
571 |
-
#: adrotate.php:
|
572 |
-
msgid "Media and Assets"
|
573 |
-
msgstr "Media e risorse"
|
574 |
-
|
575 |
-
#: adrotate.php:448
|
576 |
msgid ""
|
577 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
578 |
"if you have HTML5 adverts containing multiple files."
|
@@ -580,6 +572,14 @@ msgstr ""
|
|
580 |
"Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
|
581 |
"utile se si dispone di annunci HTML5 contenenti più file."
|
582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
583 |
#: adrotate.php:514
|
584 |
msgid "AdRotate Settings"
|
585 |
msgstr "Impostazioni AdRotate"
|
@@ -3477,6 +3477,15 @@ msgstr "Chiedi Supporto"
|
|
3477 |
msgid "Premium Support is available in AdRotate Pro!"
|
3478 |
msgstr "Premium Support è disponibile in AdRotate Pro!"
|
3479 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3480 |
#~ msgid "AdRotate Pro"
|
3481 |
#~ msgstr "AdRotate Pro"
|
3482 |
|
@@ -3619,9 +3628,6 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
|
|
3619 |
#~ msgid "View topics"
|
3620 |
#~ msgstr "Visualizza argomenti"
|
3621 |
|
3622 |
-
#~ msgid "[AdRotate] CSV Report!"
|
3623 |
-
#~ msgstr "[AdRotate] Report CSV!"
|
3624 |
-
|
3625 |
#~ msgid "Hello"
|
3626 |
#~ msgstr "Ciao"
|
3627 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-07-23 17:13-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-07-23 17:14-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
347 |
msgid "Help AdRotate Grow"
|
348 |
msgstr "Aiuta AdRotate a crescere"
|
349 |
|
350 |
+
#: adrotate-output.php:838
|
351 |
msgid "AdRotate Professional"
|
352 |
msgstr "AdRotate Professional"
|
353 |
|
509 |
msgid "Get AdRotate Pro"
|
510 |
msgstr "Ottieni AdRotate Pro"
|
511 |
|
512 |
+
#: adrotate.php:107 adrotate.php:196
|
513 |
msgid "Manage Adverts"
|
514 |
msgstr "Gestisci Inserzioni"
|
515 |
|
516 |
+
#: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
|
517 |
msgid "Manage Groups"
|
518 |
msgstr "Gestisci Gruppi"
|
519 |
|
520 |
+
#: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
|
521 |
msgid "Manage Schedules"
|
522 |
msgstr "Gestisci pianificazioni"
|
523 |
|
524 |
+
#: adrotate.php:110
|
525 |
+
msgid "Manage Media"
|
526 |
+
msgstr "Gestisci Media"
|
527 |
+
|
528 |
+
#: adrotate.php:111 adrotate.php:521 dashboard/adrotatepro.php:98
|
529 |
+
#: dashboard/publisher/adverts-edit.php:177
|
530 |
#: dashboard/publisher/statistics-main.php:23
|
531 |
#: dashboard/settings/statistics.php:17
|
532 |
msgid "Statistics"
|
533 |
msgstr "Statistiche"
|
534 |
|
535 |
+
#: adrotate.php:112
|
|
|
|
|
|
|
|
|
536 |
msgid "Support"
|
537 |
msgstr "Supporto"
|
538 |
|
544 |
msgid "AdRotate Info"
|
545 |
msgstr "Informazioni AdRotate"
|
546 |
|
547 |
+
#: adrotate.php:152
|
548 |
+
msgid "Get AdRotate Professional"
|
549 |
+
msgstr "Ottieni AdRotate Professional"
|
550 |
|
551 |
#: adrotate.php:256 adrotate.php:327
|
552 |
msgid "Manage"
|
560 |
msgid "Add New"
|
561 |
msgstr "Aggiungi Nuovo"
|
562 |
|
563 |
+
#: adrotate.php:395
|
564 |
+
msgid "Manage Media and Assets"
|
565 |
+
msgstr "Gestire supporti e risorse"
|
|
|
|
|
|
|
|
|
566 |
|
567 |
+
#: adrotate.php:399
|
|
|
|
|
|
|
|
|
568 |
msgid ""
|
569 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
570 |
"if you have HTML5 adverts containing multiple files."
|
572 |
"Carica le immagini nella cartella dei banner AdRotate Pro da qui. Ciò è "
|
573 |
"utile se si dispone di annunci HTML5 contenenti più file."
|
574 |
|
575 |
+
#: adrotate.php:441
|
576 |
+
msgid "Advert Statistics"
|
577 |
+
msgstr "Statistiche delle inserzioni"
|
578 |
+
|
579 |
+
#: adrotate.php:484
|
580 |
+
msgid "AdRotate Support"
|
581 |
+
msgstr "Supporto per AdRotate"
|
582 |
+
|
583 |
#: adrotate.php:514
|
584 |
msgid "AdRotate Settings"
|
585 |
msgstr "Impostazioni AdRotate"
|
3477 |
msgid "Premium Support is available in AdRotate Pro!"
|
3478 |
msgstr "Premium Support è disponibile in AdRotate Pro!"
|
3479 |
|
3480 |
+
#~ msgid "Advert Management"
|
3481 |
+
#~ msgstr "Gestione Inserzioni"
|
3482 |
+
|
3483 |
+
#~ msgid "Group Management"
|
3484 |
+
#~ msgstr "Gruppo eliminato"
|
3485 |
+
|
3486 |
+
#~ msgid "Schedules"
|
3487 |
+
#~ msgstr "Pianificazioni"
|
3488 |
+
|
3489 |
#~ msgid "AdRotate Pro"
|
3490 |
#~ msgstr "AdRotate Pro"
|
3491 |
|
3628 |
#~ msgid "View topics"
|
3629 |
#~ msgstr "Visualizza argomenti"
|
3630 |
|
|
|
|
|
|
|
3631 |
#~ msgid "Hello"
|
3632 |
#~ msgstr "Ciao"
|
3633 |
|
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 Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-07-
|
6 |
-
"PO-Revision-Date: 2020-07-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
@@ -353,7 +353,7 @@ msgstr "forums"
|
|
353 |
msgid "Help AdRotate Grow"
|
354 |
msgstr "Help AdRotate groeien"
|
355 |
|
356 |
-
#: adrotate-output.php:838
|
357 |
msgid "AdRotate Professional"
|
358 |
msgstr "AdRotate Professional"
|
359 |
|
@@ -517,30 +517,30 @@ msgstr "Algemene info"
|
|
517 |
msgid "Get AdRotate Pro"
|
518 |
msgstr "Koop AdRotate Pro"
|
519 |
|
520 |
-
#: adrotate.php:107
|
521 |
msgid "Manage Adverts"
|
522 |
msgstr "Advertenties beheren"
|
523 |
|
524 |
-
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
525 |
msgid "Manage Groups"
|
526 |
msgstr "Beheer Groepen"
|
527 |
|
528 |
-
#: adrotate.php:109 dashboard/publisher/schedules-main.php:12
|
529 |
msgid "Manage Schedules"
|
530 |
msgstr "Schema's beheren"
|
531 |
|
532 |
-
#: adrotate.php:110
|
533 |
-
|
|
|
|
|
|
|
|
|
534 |
#: dashboard/publisher/statistics-main.php:23
|
535 |
#: dashboard/settings/statistics.php:17
|
536 |
msgid "Statistics"
|
537 |
msgstr "Statistieken"
|
538 |
|
539 |
-
#: adrotate.php:
|
540 |
-
msgid "Manage Media"
|
541 |
-
msgstr "Beheer Media"
|
542 |
-
|
543 |
-
#: adrotate.php:112 adrotate.php:484
|
544 |
msgid "Support"
|
545 |
msgstr "Ondersteuning"
|
546 |
|
@@ -552,9 +552,9 @@ msgstr "Instellingen"
|
|
552 |
msgid "AdRotate Info"
|
553 |
msgstr "AdRotate Info"
|
554 |
|
555 |
-
#: adrotate.php:
|
556 |
-
msgid "
|
557 |
-
msgstr "
|
558 |
|
559 |
#: adrotate.php:256 adrotate.php:327
|
560 |
msgid "Manage"
|
@@ -568,19 +568,11 @@ msgstr "Genereren"
|
|
568 |
msgid "Add New"
|
569 |
msgstr "Nieuw"
|
570 |
|
571 |
-
#: adrotate.php:
|
572 |
-
msgid "
|
573 |
-
msgstr "
|
574 |
-
|
575 |
-
#: adrotate.php:358
|
576 |
-
msgid "Schedules"
|
577 |
-
msgstr "Schema’s"
|
578 |
-
|
579 |
-
#: adrotate.php:444
|
580 |
-
msgid "Media and Assets"
|
581 |
-
msgstr "Media en assets"
|
582 |
|
583 |
-
#: adrotate.php:
|
584 |
msgid ""
|
585 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
586 |
"if you have HTML5 adverts containing multiple files."
|
@@ -588,6 +580,14 @@ msgstr ""
|
|
588 |
"Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
|
589 |
"handig als je HTML5-advertenties met meerdere bestanden hebt."
|
590 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
591 |
#: adrotate.php:514
|
592 |
msgid "AdRotate Settings"
|
593 |
msgstr "AdRotate-instellingen"
|
@@ -3471,6 +3471,15 @@ msgstr "Hulp vragen"
|
|
3471 |
msgid "Premium Support is available in AdRotate Pro!"
|
3472 |
msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
3473 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3474 |
#~ msgid "AdRotate Pro"
|
3475 |
#~ msgstr "AdRotate Pro"
|
3476 |
|
@@ -3619,9 +3628,6 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
|
3619 |
#~ "AdRotate controleert de geldigheid van namen niet gaat uit van de "
|
3620 |
#~ "standaard engelse spelling"
|
3621 |
|
3622 |
-
#~ msgid "[AdRotate] CSV Report!"
|
3623 |
-
#~ msgstr "[AdRotate] CSV-rapport!"
|
3624 |
-
|
3625 |
#~ msgid "Hello"
|
3626 |
#~ msgstr "Hallo"
|
3627 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate Professional\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-07-23 17:13-0500\n"
|
6 |
+
"PO-Revision-Date: 2020-07-23 17:13-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
353 |
msgid "Help AdRotate Grow"
|
354 |
msgstr "Help AdRotate groeien"
|
355 |
|
356 |
+
#: adrotate-output.php:838
|
357 |
msgid "AdRotate Professional"
|
358 |
msgstr "AdRotate Professional"
|
359 |
|
517 |
msgid "Get AdRotate Pro"
|
518 |
msgstr "Koop AdRotate Pro"
|
519 |
|
520 |
+
#: adrotate.php:107 adrotate.php:196
|
521 |
msgid "Manage Adverts"
|
522 |
msgstr "Advertenties beheren"
|
523 |
|
524 |
+
#: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
|
525 |
msgid "Manage Groups"
|
526 |
msgstr "Beheer Groepen"
|
527 |
|
528 |
+
#: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
|
529 |
msgid "Manage Schedules"
|
530 |
msgstr "Schema's beheren"
|
531 |
|
532 |
+
#: adrotate.php:110
|
533 |
+
msgid "Manage Media"
|
534 |
+
msgstr "Beheer Media"
|
535 |
+
|
536 |
+
#: adrotate.php:111 adrotate.php:521 dashboard/adrotatepro.php:98
|
537 |
+
#: dashboard/publisher/adverts-edit.php:177
|
538 |
#: dashboard/publisher/statistics-main.php:23
|
539 |
#: dashboard/settings/statistics.php:17
|
540 |
msgid "Statistics"
|
541 |
msgstr "Statistieken"
|
542 |
|
543 |
+
#: adrotate.php:112
|
|
|
|
|
|
|
|
|
544 |
msgid "Support"
|
545 |
msgstr "Ondersteuning"
|
546 |
|
552 |
msgid "AdRotate Info"
|
553 |
msgstr "AdRotate Info"
|
554 |
|
555 |
+
#: adrotate.php:152
|
556 |
+
msgid "Get AdRotate Professional"
|
557 |
+
msgstr "Koop AdRotate Professional"
|
558 |
|
559 |
#: adrotate.php:256 adrotate.php:327
|
560 |
msgid "Manage"
|
568 |
msgid "Add New"
|
569 |
msgstr "Nieuw"
|
570 |
|
571 |
+
#: adrotate.php:395
|
572 |
+
msgid "Manage Media and Assets"
|
573 |
+
msgstr "Media en assets beheren"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
|
575 |
+
#: adrotate.php:399
|
576 |
msgid ""
|
577 |
"Upload images to the AdRotate Pro banners folder from here. This is useful "
|
578 |
"if you have HTML5 adverts containing multiple files."
|
580 |
"Upload afbeeldingen naar de map AdRotate Pro banners vanaf hier. Dit is "
|
581 |
"handig als je HTML5-advertenties met meerdere bestanden hebt."
|
582 |
|
583 |
+
#: adrotate.php:441
|
584 |
+
msgid "Advert Statistics"
|
585 |
+
msgstr "Statistieken voor advertenties"
|
586 |
+
|
587 |
+
#: adrotate.php:484
|
588 |
+
msgid "AdRotate Support"
|
589 |
+
msgstr "Ondersteuning voor AdRotate"
|
590 |
+
|
591 |
#: adrotate.php:514
|
592 |
msgid "AdRotate Settings"
|
593 |
msgstr "AdRotate-instellingen"
|
3471 |
msgid "Premium Support is available in AdRotate Pro!"
|
3472 |
msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
3473 |
|
3474 |
+
#~ msgid "Advert Management"
|
3475 |
+
#~ msgstr "Advertentiemanagement"
|
3476 |
+
|
3477 |
+
#~ msgid "Group Management"
|
3478 |
+
#~ msgstr "Groepsmanagement"
|
3479 |
+
|
3480 |
+
#~ msgid "Schedules"
|
3481 |
+
#~ msgstr "Schema’s"
|
3482 |
+
|
3483 |
#~ msgid "AdRotate Pro"
|
3484 |
#~ msgstr "AdRotate Pro"
|
3485 |
|
3628 |
#~ "AdRotate controleert de geldigheid van namen niet gaat uit van de "
|
3629 |
#~ "standaard engelse spelling"
|
3630 |
|
|
|
|
|
|
|
3631 |
#~ msgid "Hello"
|
3632 |
#~ msgstr "Hallo"
|
3633 |
|
language/adrotate.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
-
"POT-Creation-Date: 2020-07-
|
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"
|
@@ -274,7 +274,7 @@ msgstr ""
|
|
274 |
msgid "Help AdRotate Grow"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: adrotate-output.php:838
|
278 |
msgid "AdRotate Professional"
|
279 |
msgstr ""
|
280 |
|
@@ -428,30 +428,30 @@ msgstr ""
|
|
428 |
msgid "Get AdRotate Pro"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: adrotate.php:107
|
432 |
msgid "Manage Adverts"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: adrotate.php:108 dashboard/publisher/groups-main.php:12
|
436 |
msgid "Manage Groups"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: adrotate.php:109 dashboard/publisher/schedules-main.php:12
|
440 |
msgid "Manage Schedules"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: adrotate.php:110
|
444 |
-
|
|
|
|
|
|
|
|
|
445 |
#: dashboard/publisher/statistics-main.php:23
|
446 |
#: dashboard/settings/statistics.php:17
|
447 |
msgid "Statistics"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: adrotate.php:
|
451 |
-
msgid "Manage Media"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: adrotate.php:112 adrotate.php:484
|
455 |
msgid "Support"
|
456 |
msgstr ""
|
457 |
|
@@ -463,8 +463,8 @@ msgstr ""
|
|
463 |
msgid "AdRotate Info"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: adrotate.php:
|
467 |
-
msgid "
|
468 |
msgstr ""
|
469 |
|
470 |
#: adrotate.php:256 adrotate.php:327
|
@@ -479,20 +479,20 @@ msgstr ""
|
|
479 |
msgid "Add New"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: adrotate.php:
|
483 |
-
msgid "
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: adrotate.php:
|
487 |
-
msgid "
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: adrotate.php:
|
491 |
-
msgid "
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: adrotate.php:
|
495 |
-
msgid "
|
496 |
msgstr ""
|
497 |
|
498 |
#: adrotate.php:514
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
+
"POT-Creation-Date: 2020-07-23 17:13-0500\n"
|
6 |
"PO-Revision-Date: 2019-09-20 12:05-0500\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
274 |
msgid "Help AdRotate Grow"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: adrotate-output.php:838
|
278 |
msgid "AdRotate Professional"
|
279 |
msgstr ""
|
280 |
|
428 |
msgid "Get AdRotate Pro"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: adrotate.php:107 adrotate.php:196
|
432 |
msgid "Manage Adverts"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: adrotate.php:108 adrotate.php:321 dashboard/publisher/groups-main.php:12
|
436 |
msgid "Manage Groups"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: adrotate.php:109 adrotate.php:358 dashboard/publisher/schedules-main.php:12
|
440 |
msgid "Manage Schedules"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: adrotate.php:110
|
444 |
+
msgid "Manage Media"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: adrotate.php:111 adrotate.php:521 dashboard/adrotatepro.php:98
|
448 |
+
#: dashboard/publisher/adverts-edit.php:177
|
449 |
#: dashboard/publisher/statistics-main.php:23
|
450 |
#: dashboard/settings/statistics.php:17
|
451 |
msgid "Statistics"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: adrotate.php:112
|
|
|
|
|
|
|
|
|
455 |
msgid "Support"
|
456 |
msgstr ""
|
457 |
|
463 |
msgid "AdRotate Info"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: adrotate.php:152
|
467 |
+
msgid "Get AdRotate Professional"
|
468 |
msgstr ""
|
469 |
|
470 |
#: adrotate.php:256 adrotate.php:327
|
479 |
msgid "Add New"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: adrotate.php:395
|
483 |
+
msgid "Manage Media and Assets"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: adrotate.php:399
|
487 |
+
msgid "Upload images to the AdRotate Pro banners folder from here. This is useful if you have HTML5 adverts containing multiple files."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: adrotate.php:441
|
491 |
+
msgid "Advert Statistics"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: adrotate.php:484
|
495 |
+
msgid "AdRotate Support"
|
496 |
msgstr ""
|
497 |
|
498 |
#: adrotate.php:514
|
readme.txt
CHANGED
@@ -5,40 +5,43 @@ Tags: adverts, ads, banners, advert manager, ad manager, banner manager, monetis
|
|
5 |
Requires at least: 4.6
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.4.2
|
8 |
-
Stable tag: 5.8.6
|
9 |
License: GPLv3
|
10 |
|
11 |
AdRotate is the only advert manager you'll ever need for WordPress.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Are you looking for
|
16 |
-
|
17 |
-
AdRotate is intentionally designed to be simple to use yet offers a professional set of features for newcomers and experiences users alike.
|
18 |
|
19 |
With AdRotate you can easily create your own adverts and campaigns with HTML and/or Javascript code or use adverts from your favorite Ad Server such as Media.net, Blind Ferret, Yahoo! Adverts, DFP, Google AdSense, Google Ad Manager, Bing Ads, Amazon Affiliates, Chitika, Doubleclick, JuiceAds and many more similar ad servers and affiliate programs.
|
20 |
|
21 |
**Some of the AdRotate Features**
|
22 |
|
23 |
-
* Works with any advert
|
24 |
-
* Place random, or selected,
|
25 |
-
*
|
26 |
-
*
|
27 |
-
*
|
28 |
-
*
|
29 |
-
*
|
30 |
-
*
|
31 |
-
*
|
32 |
-
*
|
33 |
-
*
|
34 |
-
*
|
35 |
-
*
|
36 |
-
*
|
37 |
-
*
|
38 |
-
*
|
39 |
-
*
|
40 |
-
|
41 |
-
|
|
|
|
|
|
|
|
|
42 |
|
43 |
**Translations**
|
44 |
|
@@ -48,12 +51,12 @@ AdRotate and AdRotate Professional share many features. But some features are av
|
|
48 |
* French
|
49 |
* Dutch
|
50 |
* Italian
|
51 |
-
* Other translations available provided by community
|
52 |
|
53 |
== Installation ==
|
54 |
|
55 |
Installing the plugin is as easy as searching for "AdRotate Arnan" or simply "AdRotate" in your plugin dashboard and clicking "Install Now" from your dashboards plugin page. Just like every other plugin.
|
56 |
-
Once activated, a new menu
|
57 |
|
58 |
For more detailed instructions check out the [installation steps](https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/?pk_campaign=adrotatefree&pk_keyword=readme) on the AdRotate website.
|
59 |
|
@@ -61,6 +64,12 @@ For more detailed instructions check out the [installation steps](https://ajdg.s
|
|
61 |
|
62 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
= AdRotate 5.8.6 =
|
65 |
* [CAUTION] PHP snippet syntax has changed, check manual!
|
66 |
* [new] Added/Unlocked AdRotate Media Manager
|
5 |
Requires at least: 4.6
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.4.2
|
8 |
+
Stable tag: 5.8.6.1
|
9 |
License: GPLv3
|
10 |
|
11 |
AdRotate is the only advert manager you'll ever need for WordPress.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Are you looking for an easy to use way to manage all your adverts from the dashboard? AdRotate is easy to set up, easy to use and is built for your website.
|
16 |
+
AdRotate is designed to be simple to use, yet offers a professional set of features for newcomers and experiences users alike.
|
|
|
17 |
|
18 |
With AdRotate you can easily create your own adverts and campaigns with HTML and/or Javascript code or use adverts from your favorite Ad Server such as Media.net, Blind Ferret, Yahoo! Adverts, DFP, Google AdSense, Google Ad Manager, Bing Ads, Amazon Affiliates, Chitika, Doubleclick, JuiceAds and many more similar ad servers and affiliate programs.
|
19 |
|
20 |
**Some of the AdRotate Features**
|
21 |
|
22 |
+
* Works with any advert
|
23 |
+
* Place random, or selected, adverts anywhere on your site
|
24 |
+
* Easily manage Adverts
|
25 |
+
* Easily manage Groups
|
26 |
+
* Easily manage Assets and media
|
27 |
+
* Track clicks, impressions and calculate the Cick-Through-Rate (CTR)
|
28 |
+
* Disguise adverts from ad blockers so they're less likely to be blocked
|
29 |
+
* Automagically disable Ads after they expire
|
30 |
+
* Use shortcodes anywhere they are supported
|
31 |
+
* Place widgets for single adverts or groups
|
32 |
+
* Insert PHP snippets in your theme files to put Adverts anywhere on your site
|
33 |
+
* Dashboard and Email notifications when Adverts are about to expire or need attention
|
34 |
+
* Easily set up groups of Adverts in a grid, column or row
|
35 |
+
* Preview Adverts when editing
|
36 |
+
* Advert statistics
|
37 |
+
* Automatically delete short running adverts and stats after they expire
|
38 |
+
* Advertisers can add/edit/manage their own Adverts
|
39 |
+
* Geo Targeting for every country and city
|
40 |
+
* Mobile Adverts
|
41 |
+
* Portable Adverts
|
42 |
+
* Export statistics to CSV files
|
43 |
+
|
44 |
+
AdRotate and AdRotate Professional share many features. But some features are exclusively available in AdRotate Professional. Learn more about [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme) on my website.
|
45 |
|
46 |
**Translations**
|
47 |
|
51 |
* French
|
52 |
* Dutch
|
53 |
* Italian
|
54 |
+
* Other translations available provided by community
|
55 |
|
56 |
== Installation ==
|
57 |
|
58 |
Installing the plugin is as easy as searching for "AdRotate Arnan" or simply "AdRotate" in your plugin dashboard and clicking "Install Now" from your dashboards plugin page. Just like every other plugin.
|
59 |
+
Once activated, a new menu called "AdRotate" appears in the WordPress navigation from which you handle everything in AdRotate.
|
60 |
|
61 |
For more detailed instructions check out the [installation steps](https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/?pk_campaign=adrotatefree&pk_keyword=readme) on the AdRotate website.
|
62 |
|
64 |
|
65 |
For the full changelog check out the [development page](https://ajdg.solutions/support/adrotate-development/?pk_campaign=adrotatefree&pk_keyword=readme).
|
66 |
|
67 |
+
= AdRotate 5.8.6.1 =
|
68 |
+
* [CAUTION] PHP snippet syntax has changed, check manual!
|
69 |
+
* [fix] Zip uploads not always working
|
70 |
+
* [change] Dashboard tweaks
|
71 |
+
* [i18n] Updated translations
|
72 |
+
|
73 |
= AdRotate 5.8.6 =
|
74 |
* [CAUTION] PHP snippet syntax has changed, check manual!
|
75 |
* [new] Added/Unlocked AdRotate Media Manager
|