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.23 |
Comparing to | |
See all releases |
Code changes from version 5.8.22 to 5.8.23
- adrotate-functions.php +22 -3
- adrotate-manage-publisher.php +51 -69
- adrotate-output.php +8 -9
- adrotate-setup.php +2 -0
- adrotate-widget.php +4 -4
- adrotate.php +27 -27
- dashboard/publisher/adverts-disabled.php +1 -1
- dashboard/publisher/adverts-edit.php +4 -4
- dashboard/publisher/adverts-error.php +1 -1
- dashboard/publisher/adverts-main.php +1 -1
- dashboard/publisher/groups-edit.php +5 -5
- dashboard/publisher/groups-main.php +1 -1
- dashboard/publisher/media.php +1 -1
- dashboard/publisher/schedules-main.php +1 -1
- dashboard/settings/maintenance.php +0 -4
- language/adrotate-de_DE.mo +0 -0
- language/adrotate-de_DE.po +93 -89
- language/adrotate-fr_FR.mo +0 -0
- language/adrotate-fr_FR.po +91 -88
- language/adrotate-it_IT.mo +0 -0
- language/adrotate-it_IT.po +91 -88
- language/adrotate-nl_NL.mo +0 -0
- language/adrotate-nl_NL.po +94 -91
- language/adrotate-pl_PL.mo +0 -0
- language/adrotate-pl_PL.po +91 -87
- language/adrotate-pt_BR.mo +0 -0
- language/adrotate-pt_BR.po +91 -73
- language/adrotate.pot +87 -71
- readme.txt +11 -7
adrotate-functions.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -463,6 +463,9 @@ function adrotate_get_remote_ip(){
|
|
463 |
}
|
464 |
$buffer = explode(',', $remote_ip, 2);
|
465 |
|
|
|
|
|
|
|
466 |
return $buffer[0];
|
467 |
}
|
468 |
|
@@ -549,7 +552,7 @@ function adrotate_remove_capability($capability){
|
|
549 |
Since: 3.6
|
550 |
-------------------------------------------------------------*/
|
551 |
function adrotate_dashboard_scripts() {
|
552 |
-
$page = (isset($_GET['page'])) ? $_GET['page'] : '';
|
553 |
if(strpos($page, 'adrotate') !== false) {
|
554 |
wp_enqueue_script('jquery');
|
555 |
wp_enqueue_script('jquery-ui-datepicker');
|
@@ -581,7 +584,7 @@ function adrotate_dashboard_scripts() {
|
|
581 |
function adrotate_dashboard_styles() {
|
582 |
wp_enqueue_style('adrotate-admin-stylesheet', plugins_url('library/dashboard.css', __FILE__));
|
583 |
|
584 |
-
$page = (isset($_GET['page'])) ? $_GET['page'] : '';
|
585 |
if(strpos($page, 'adrotate') !== false) {
|
586 |
wp_enqueue_style('jquery-ui-datepicker');
|
587 |
}
|
@@ -891,10 +894,26 @@ function adrotate_status($status, $args = null) {
|
|
891 |
echo '<div id="message" class="error"><p>'. __('Form can not be (partially) empty!', 'adrotate') .'</p></div>';
|
892 |
break;
|
893 |
|
|
|
|
|
|
|
|
|
894 |
case '509' :
|
895 |
echo '<div id="message" class="updated"><p>'. __('No adverts found.', 'adrotate') .'</p></div>';
|
896 |
break;
|
897 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
case '513' :
|
899 |
echo '<div id="message" class="error"><p>'. __('The advert hash is not usable or is missing required data. Please copy the hash correctly and try again.', 'adrotate') .'</p></div>';
|
900 |
break;
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
+
* Copyright 2008-2022 Arnan de Gans. All Rights Reserved.
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
463 |
}
|
464 |
$buffer = explode(',', $remote_ip, 2);
|
465 |
|
466 |
+
// Sanitize
|
467 |
+
$buffer[0] = preg_replace('/[^0-9.]+/', '', $buffer[0]);
|
468 |
+
|
469 |
return $buffer[0];
|
470 |
}
|
471 |
|
552 |
Since: 3.6
|
553 |
-------------------------------------------------------------*/
|
554 |
function adrotate_dashboard_scripts() {
|
555 |
+
$page = (isset($_GET['page'])) ? sanitize_key($_GET['page']) : '';
|
556 |
if(strpos($page, 'adrotate') !== false) {
|
557 |
wp_enqueue_script('jquery');
|
558 |
wp_enqueue_script('jquery-ui-datepicker');
|
584 |
function adrotate_dashboard_styles() {
|
585 |
wp_enqueue_style('adrotate-admin-stylesheet', plugins_url('library/dashboard.css', __FILE__));
|
586 |
|
587 |
+
$page = (isset($_GET['page'])) ? sanitize_key($_GET['page']) : '';
|
588 |
if(strpos($page, 'adrotate') !== false) {
|
589 |
wp_enqueue_style('jquery-ui-datepicker');
|
590 |
}
|
894 |
echo '<div id="message" class="error"><p>'. __('Form can not be (partially) empty!', 'adrotate') .'</p></div>';
|
895 |
break;
|
896 |
|
897 |
+
case '506' :
|
898 |
+
echo '<div id="message" class="error"><p>'. __('No file uploaded.', 'adrotate') .'</p></div>';
|
899 |
+
break;
|
900 |
+
|
901 |
case '509' :
|
902 |
echo '<div id="message" class="updated"><p>'. __('No adverts found.', 'adrotate') .'</p></div>';
|
903 |
break;
|
904 |
|
905 |
+
case '510' :
|
906 |
+
echo '<div id="message" class="error"><p>'. __('Wrong file type. No file uploaded.', 'adrotate') .'</p></div>';
|
907 |
+
break;
|
908 |
+
|
909 |
+
case '511' :
|
910 |
+
echo '<div id="message" class="error"><p>'. __('No file selected or file is too large.', 'adrotate') .'</p></div>';
|
911 |
+
break;
|
912 |
+
|
913 |
+
case '512' :
|
914 |
+
echo '<div id="message" class="error"><p>'. __('There was an error unzipping the file. Please try again later.', 'adrotate') .'</p></div>';
|
915 |
+
break;
|
916 |
+
|
917 |
case '513' :
|
918 |
echo '<div id="message" class="error"><p>'. __('The advert hash is not usable or is missing required data. Please copy the hash correctly and try again.', 'adrotate') .'</p></div>';
|
919 |
break;
|
adrotate-manage-publisher.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -20,7 +20,7 @@ function adrotate_generate_input() {
|
|
20 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_generate_ad')) {
|
21 |
// Mandatory
|
22 |
$id = '';
|
23 |
-
if(isset($_POST['adrotate_id'])) $id = $_POST['adrotate_id'];
|
24 |
|
25 |
// Basic advert
|
26 |
$fullsize_image = $targeturl = $nofollow = $basic_dropdown = $adwidth = $adheight = '';
|
@@ -90,30 +90,30 @@ function adrotate_insert_input() {
|
|
90 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_save_ad')) {
|
91 |
// Mandatory
|
92 |
$id = $schedule_id = $author = $title = $bannercode = $active = '';
|
93 |
-
if(isset($_POST['adrotate_id'])) $id = $_POST['adrotate_id'];
|
94 |
-
if(isset($_POST['adrotate_schedule'])) $schedule_id = $_POST['adrotate_schedule'];
|
95 |
-
if(isset($_POST['adrotate_username'])) $author = $_POST['adrotate_username'];
|
96 |
-
if(isset($_POST['adrotate_title'])) $title =
|
97 |
if(isset($_POST['adrotate_bannercode'])) $bannercode = htmlspecialchars(trim($_POST['adrotate_bannercode'], "\t\n "), ENT_QUOTES);
|
98 |
$thetime = current_time('timestamp');
|
99 |
-
if(isset($_POST['adrotate_active'])) $active = strip_tags(
|
100 |
|
101 |
// Schedules
|
102 |
$start_date = $start_hour = $start_minute = $end_date = $end_hour = $end_minute = '';
|
103 |
-
if(isset($_POST['adrotate_start_date'])) $start_date =
|
104 |
-
if(isset($_POST['adrotate_start_hour'])) $start_hour =
|
105 |
-
if(isset($_POST['adrotate_start_minute'])) $start_minute =
|
106 |
-
if(isset($_POST['adrotate_end_date'])) $end_date =
|
107 |
-
if(isset($_POST['adrotate_end_hour'])) $end_hour =
|
108 |
-
if(isset($_POST['adrotate_end_minute'])) $end_minute =
|
109 |
|
110 |
$maxclicks = $maxshown = '';
|
111 |
-
if(isset($_POST['adrotate_maxclicks'])) $maxclicks =
|
112 |
-
if(isset($_POST['adrotate_maxshown'])) $maxshown =
|
113 |
|
114 |
// Advanced options
|
115 |
-
$
|
116 |
-
|
117 |
if(isset($_POST['adrotate_image'])) $image_field = strip_tags(trim($_POST['adrotate_image'], "\t\n "));
|
118 |
if(isset($_POST['adrotate_image_dropdown'])) $image_dropdown = strip_tags(trim($_POST['adrotate_image_dropdown'], "\t\n "));
|
119 |
if(isset($_POST['adrotate_tracker'])) $tracker = strip_tags(trim($_POST['adrotate_tracker'], "\t\n "));
|
@@ -122,13 +122,15 @@ function adrotate_insert_input() {
|
|
122 |
$type = '';
|
123 |
$groups = array();
|
124 |
if(isset($_POST['groupselect'])) $groups = $_POST['groupselect'];
|
125 |
-
if(isset($_POST['adrotate_type'])) $type =
|
126 |
|
127 |
|
128 |
if(current_user_can('adrotate_ad_manage')) {
|
|
|
129 |
if(strlen($title) < 1) {
|
130 |
$title = 'Ad '.$id;
|
131 |
}
|
|
|
132 |
|
133 |
// Clean up bannercode
|
134 |
if(preg_match("/%ID%/", $bannercode)) $bannercode = str_replace('%ID%', '%id%', $bannercode);
|
@@ -253,37 +255,37 @@ function adrotate_insert_group() {
|
|
253 |
|
254 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_save_group')) {
|
255 |
$action = $id = $name = $modus = '';
|
256 |
-
if(isset($_POST['adrotate_action'])) $action = $_POST['adrotate_action'];
|
257 |
-
if(isset($_POST['adrotate_id'])) $id = $_POST['adrotate_id'];
|
258 |
-
if(isset($_POST['adrotate_groupname'])) $name =
|
259 |
-
if(isset($_POST['adrotate_modus'])) $modus =
|
260 |
|
261 |
$rows = $columns = $adwidth = $adheight = $adspeed = '';
|
262 |
-
if(isset($_POST['adrotate_gridrows'])) $rows =
|
263 |
-
if(isset($_POST['adrotate_gridcolumns'])) $columns =
|
264 |
-
if(isset($_POST['adrotate_adwidth'])) $adwidth =
|
265 |
-
if(isset($_POST['adrotate_adheight'])) $adheight =
|
266 |
-
if(isset($_POST['adrotate_adspeed'])) $adspeed =
|
267 |
|
268 |
$ads = $admargin = $align = '';
|
269 |
-
if(isset($_POST['adselect'])) $ads = $_POST['adselect'];
|
270 |
-
if(isset($_POST['adrotate_admargin'])) $admargin =
|
271 |
-
if(isset($_POST['adrotate_align'])) $align =
|
272 |
|
273 |
$categories = $category_loc = $category_par = $pages = $page_loc = $page_par = '';
|
274 |
if(isset($_POST['adrotate_categories'])) $categories = $_POST['adrotate_categories'];
|
275 |
-
if(isset($_POST['adrotate_cat_location'])) $category_loc = $_POST['adrotate_cat_location'];
|
276 |
-
if(isset($_POST['adrotate_cat_paragraph'])) $category_par = $_POST['adrotate_cat_paragraph'];
|
277 |
if(isset($_POST['adrotate_pages'])) $pages = $_POST['adrotate_pages'];
|
278 |
-
if(isset($_POST['adrotate_page_location'])) $page_loc = $_POST['adrotate_page_location'];
|
279 |
-
if(isset($_POST['adrotate_page_paragraph'])) $page_par = $_POST['adrotate_page_paragraph'];
|
280 |
|
281 |
$wrapper_before = $wrapper_after = '';
|
282 |
-
if(isset($_POST['adrotate_wrapper_before'])) $wrapper_before = trim($_POST['adrotate_wrapper_before'], "\t\n ");
|
283 |
-
if(isset($_POST['adrotate_wrapper_after'])) $wrapper_after = trim($_POST['adrotate_wrapper_after'], "\t\n ");
|
284 |
|
285 |
if(current_user_can('adrotate_group_manage')) {
|
286 |
-
if(strlen($name) < 1) $name = 'Group '.$id;
|
287 |
|
288 |
if($modus < 0 OR $modus > 2) $modus = 0;
|
289 |
if($adspeed < 0 OR $adspeed > 99999) $adspeed = 6000;
|
@@ -432,36 +434,16 @@ function adrotate_insert_media() {
|
|
432 |
|
433 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_save_media')) {
|
434 |
if(current_user_can('adrotate_ad_manage')) {
|
435 |
-
|
436 |
if($_FILES["adrotate_image"]["size"] > 0 AND $_FILES["adrotate_image"]["size"] <= 512000) {
|
437 |
-
$
|
438 |
-
$file = adrotate_sanitize_file_name($_FILES["adrotate_image"]["name"]);
|
439 |
-
$file = explode(".", $file);
|
440 |
-
$file_extension = array_pop($file);
|
441 |
$file_name = implode('.', $file);
|
442 |
-
$
|
443 |
-
$
|
444 |
-
|
445 |
if(
|
446 |
-
(
|
447 |
-
|
448 |
-
$_FILES["adrotate_image"]["type"] == "image/gif"
|
449 |
-
OR $_FILES["adrotate_image"]["type"] == "image/jpeg"
|
450 |
-
OR $_FILES["adrotate_image"]["type"] == "image/pjpeg"
|
451 |
-
OR $_FILES["adrotate_image"]["type"] == "image/jpg"
|
452 |
-
OR $_FILES["adrotate_image"]["type"] == "image/png"
|
453 |
-
OR $_FILES["adrotate_image"]["type"] == "image/svg+xml"
|
454 |
-
|
455 |
-
// HTML5 Assets
|
456 |
-
OR $_FILES["adrotate_image"]["type"] == "text/html"
|
457 |
-
OR $_FILES["adrotate_image"]["type"] == "application/x-javascript"
|
458 |
-
OR $_FILES["adrotate_image"]["type"] == "application/javascript"
|
459 |
-
OR $_FILES["adrotate_image"]["type"] == "text/javascript"
|
460 |
-
|
461 |
-
// Zip files
|
462 |
-
OR $_FILES["adrotate_image"]["type"] == "application/zip"
|
463 |
-
)
|
464 |
-
AND in_array($file_extension, $allowedExts)
|
465 |
) {
|
466 |
if ($_FILES["adrotate_image"]["error"] > 0) {
|
467 |
if($_FILES["adrotate_image"]["error"] == 1 OR $_FILES["adrotate_image"]["error"] == 2) $errorcode = 511;
|
@@ -774,7 +756,7 @@ function adrotate_export($ids) {
|
|
774 |
function adrotate_options_submit() {
|
775 |
if(wp_verify_nonce($_POST['adrotate_nonce_settings'],'adrotate_settings')) {
|
776 |
|
777 |
-
$settings_tab =
|
778 |
|
779 |
if($settings_tab == 'general') {
|
780 |
$config = get_option('adrotate_config');
|
@@ -859,10 +841,10 @@ function adrotate_options_submit() {
|
|
859 |
adrotate_set_capability($_POST['adrotate_ad_delete'], "adrotate_ad_delete");
|
860 |
adrotate_set_capability($_POST['adrotate_group_manage'], "adrotate_group_manage");
|
861 |
adrotate_set_capability($_POST['adrotate_group_delete'], "adrotate_group_delete");
|
862 |
-
$config['ad_manage']
|
863 |
-
$config['ad_delete']
|
864 |
-
$config['group_manage']
|
865 |
-
$config['group_delete']
|
866 |
|
867 |
update_option('adrotate_config', $config);
|
868 |
}
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
+
* Copyright 2008-2022 Arnan de Gans. All Rights Reserved.
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
20 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_generate_ad')) {
|
21 |
// Mandatory
|
22 |
$id = '';
|
23 |
+
if(isset($_POST['adrotate_id'])) $id = sanitize_key($_POST['adrotate_id']);
|
24 |
|
25 |
// Basic advert
|
26 |
$fullsize_image = $targeturl = $nofollow = $basic_dropdown = $adwidth = $adheight = '';
|
90 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_save_ad')) {
|
91 |
// Mandatory
|
92 |
$id = $schedule_id = $author = $title = $bannercode = $active = '';
|
93 |
+
if(isset($_POST['adrotate_id'])) $id = sanitize_key($_POST['adrotate_id']);
|
94 |
+
if(isset($_POST['adrotate_schedule'])) $schedule_id = sanitize_key($_POST['adrotate_schedule']);
|
95 |
+
if(isset($_POST['adrotate_username'])) $author = sanitize_key($_POST['adrotate_username']);
|
96 |
+
if(isset($_POST['adrotate_title'])) $title = sanitize_title(trim($_POST['adrotate_title'], "\t\n "), "Ad $id");
|
97 |
if(isset($_POST['adrotate_bannercode'])) $bannercode = htmlspecialchars(trim($_POST['adrotate_bannercode'], "\t\n "), ENT_QUOTES);
|
98 |
$thetime = current_time('timestamp');
|
99 |
+
if(isset($_POST['adrotate_active'])) $active = strip_tags(trim($_POST['adrotate_active'], "\t\n "));
|
100 |
|
101 |
// Schedules
|
102 |
$start_date = $start_hour = $start_minute = $end_date = $end_hour = $end_minute = '';
|
103 |
+
if(isset($_POST['adrotate_start_date'])) $start_date = sanitize_key(trim($_POST['adrotate_start_date'], "\t\n "));
|
104 |
+
if(isset($_POST['adrotate_start_hour'])) $start_hour = sanitize_key(trim($_POST['adrotate_start_hour'], "\t\n "));
|
105 |
+
if(isset($_POST['adrotate_start_minute'])) $start_minute = sanitize_key(trim($_POST['adrotate_start_minute'], "\t\n "));
|
106 |
+
if(isset($_POST['adrotate_end_date'])) $end_date = sanitize_key(trim($_POST['adrotate_end_date'], "\t\n "));
|
107 |
+
if(isset($_POST['adrotate_end_hour'])) $end_hour = sanitize_key(trim($_POST['adrotate_end_hour'], "\t\n "));
|
108 |
+
if(isset($_POST['adrotate_end_minute'])) $end_minute = sanitize_key(trim($_POST['adrotate_end_minute'], "\t\n "));
|
109 |
|
110 |
$maxclicks = $maxshown = '';
|
111 |
+
if(isset($_POST['adrotate_maxclicks'])) $maxclicks = sanitize_key(trim($_POST['adrotate_maxclicks'], "\t\n "));
|
112 |
+
if(isset($_POST['adrotate_maxshown'])) $maxshown = sanitize_key(trim($_POST['adrotate_maxshown'], "\t\n "));
|
113 |
|
114 |
// Advanced options
|
115 |
+
$image_field = $image_dropdown = $tracker = $show_everyone = '';
|
116 |
+
$advertiser = 0;
|
117 |
if(isset($_POST['adrotate_image'])) $image_field = strip_tags(trim($_POST['adrotate_image'], "\t\n "));
|
118 |
if(isset($_POST['adrotate_image_dropdown'])) $image_dropdown = strip_tags(trim($_POST['adrotate_image_dropdown'], "\t\n "));
|
119 |
if(isset($_POST['adrotate_tracker'])) $tracker = strip_tags(trim($_POST['adrotate_tracker'], "\t\n "));
|
122 |
$type = '';
|
123 |
$groups = array();
|
124 |
if(isset($_POST['groupselect'])) $groups = $_POST['groupselect'];
|
125 |
+
if(isset($_POST['adrotate_type'])) $type = sanitize_key(trim($_POST['adrotate_type'], "\t\n "));
|
126 |
|
127 |
|
128 |
if(current_user_can('adrotate_ad_manage')) {
|
129 |
+
/*
|
130 |
if(strlen($title) < 1) {
|
131 |
$title = 'Ad '.$id;
|
132 |
}
|
133 |
+
*/
|
134 |
|
135 |
// Clean up bannercode
|
136 |
if(preg_match("/%ID%/", $bannercode)) $bannercode = str_replace('%ID%', '%id%', $bannercode);
|
255 |
|
256 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_save_group')) {
|
257 |
$action = $id = $name = $modus = '';
|
258 |
+
if(isset($_POST['adrotate_action'])) $action = sanitize_key($_POST['adrotate_action']);
|
259 |
+
if(isset($_POST['adrotate_id'])) $id = sanitize_key($_POST['adrotate_id']);
|
260 |
+
if(isset($_POST['adrotate_groupname'])) $name = sanitize_title(trim($_POST['adrotate_groupname'], "\t\n "), "Group $id");
|
261 |
+
if(isset($_POST['adrotate_modus'])) $modus = sanitize_key(trim($_POST['adrotate_modus'], "\t\n "));
|
262 |
|
263 |
$rows = $columns = $adwidth = $adheight = $adspeed = '';
|
264 |
+
if(isset($_POST['adrotate_gridrows'])) $rows = sanitize_key(trim($_POST['adrotate_gridrows'], "\t\n "));
|
265 |
+
if(isset($_POST['adrotate_gridcolumns'])) $columns = sanitize_key(trim($_POST['adrotate_gridcolumns'], "\t\n "));
|
266 |
+
if(isset($_POST['adrotate_adwidth'])) $adwidth = sanitize_key(trim($_POST['adrotate_adwidth'], "\t\n "));
|
267 |
+
if(isset($_POST['adrotate_adheight'])) $adheight = sanitize_key(trim($_POST['adrotate_adheight'], "\t\n "));
|
268 |
+
if(isset($_POST['adrotate_adspeed'])) $adspeed = sanitize_key(trim($_POST['adrotate_adspeed'], "\t\n "));
|
269 |
|
270 |
$ads = $admargin = $align = '';
|
271 |
+
if(isset($_POST['adselect'])) $ads = strip_tags(trim($_POST['adselect'], "\t\n "));
|
272 |
+
if(isset($_POST['adrotate_admargin'])) $admargin = sanitize_key(trim($_POST['adrotate_admargin'], "\t\n "));
|
273 |
+
if(isset($_POST['adrotate_align'])) $align = sanitize_key(trim($_POST['adrotate_align'], "\t\n "));
|
274 |
|
275 |
$categories = $category_loc = $category_par = $pages = $page_loc = $page_par = '';
|
276 |
if(isset($_POST['adrotate_categories'])) $categories = $_POST['adrotate_categories'];
|
277 |
+
if(isset($_POST['adrotate_cat_location'])) $category_loc = sanitize_key($_POST['adrotate_cat_location']);
|
278 |
+
if(isset($_POST['adrotate_cat_paragraph'])) $category_par = sanitize_key($_POST['adrotate_cat_paragraph']);
|
279 |
if(isset($_POST['adrotate_pages'])) $pages = $_POST['adrotate_pages'];
|
280 |
+
if(isset($_POST['adrotate_page_location'])) $page_loc = sanitize_key($_POST['adrotate_page_location']);
|
281 |
+
if(isset($_POST['adrotate_page_paragraph'])) $page_par = sanitize_key($_POST['adrotate_page_paragraph']);
|
282 |
|
283 |
$wrapper_before = $wrapper_after = '';
|
284 |
+
if(isset($_POST['adrotate_wrapper_before'])) $wrapper_before = htmlspecialchars(trim($_POST['adrotate_wrapper_before'], "\t\n "), ENT_QUOTES);
|
285 |
+
if(isset($_POST['adrotate_wrapper_after'])) $wrapper_after = htmlspecialchars(trim($_POST['adrotate_wrapper_after'], "\t\n "), ENT_QUOTES);
|
286 |
|
287 |
if(current_user_can('adrotate_group_manage')) {
|
288 |
+
// if(strlen($name) < 1) $name = 'Group '.$id;
|
289 |
|
290 |
if($modus < 0 OR $modus > 2) $modus = 0;
|
291 |
if($adspeed < 0 OR $adspeed > 99999) $adspeed = 6000;
|
434 |
|
435 |
if(wp_verify_nonce($_POST['adrotate_nonce'], 'adrotate_save_media')) {
|
436 |
if(current_user_can('adrotate_ad_manage')) {
|
|
|
437 |
if($_FILES["adrotate_image"]["size"] > 0 AND $_FILES["adrotate_image"]["size"] <= 512000) {
|
438 |
+
$file_path = WP_CONTENT_DIR."/".esc_attr($_POST['adrotate_image_location'])."/";
|
439 |
+
$file = explode(".", adrotate_sanitize_file_name($_FILES["adrotate_image"]["name"]));
|
|
|
|
|
440 |
$file_name = implode('.', $file);
|
441 |
+
$file_extension = array_pop($file);
|
442 |
+
$file_mimetype = mime_content_type($_FILES["adrotate_image"]["tmp_name"]);
|
443 |
+
|
444 |
if(
|
445 |
+
in_array($file_extension, array("jpg", "jpeg", "gif", "png", "html", "htm", "js", "svg", "zip"))
|
446 |
+
AND in_array($file_mimetype, array("image/jpg", "image/pjpeg", "image/jpeg", "image/gif", "image/png", "image/svg", "text/html", "text/htm", "application/x-javascript", "application/javascript", "text/javascript", "application/zip"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
) {
|
448 |
if ($_FILES["adrotate_image"]["error"] > 0) {
|
449 |
if($_FILES["adrotate_image"]["error"] == 1 OR $_FILES["adrotate_image"]["error"] == 2) $errorcode = 511;
|
756 |
function adrotate_options_submit() {
|
757 |
if(wp_verify_nonce($_POST['adrotate_nonce_settings'],'adrotate_settings')) {
|
758 |
|
759 |
+
$settings_tab = sanitize_key($_POST['adrotate_settings_tab']);
|
760 |
|
761 |
if($settings_tab == 'general') {
|
762 |
$config = get_option('adrotate_config');
|
841 |
adrotate_set_capability($_POST['adrotate_ad_delete'], "adrotate_ad_delete");
|
842 |
adrotate_set_capability($_POST['adrotate_group_manage'], "adrotate_group_manage");
|
843 |
adrotate_set_capability($_POST['adrotate_group_delete'], "adrotate_group_delete");
|
844 |
+
$config['ad_manage'] = $_POST['adrotate_ad_manage'];
|
845 |
+
$config['ad_delete'] = $_POST['adrotate_ad_delete'];
|
846 |
+
$config['group_manage'] = $_POST['adrotate_group_manage'];
|
847 |
+
$config['group_delete'] = $_POST['adrotate_group_delete'];
|
848 |
|
849 |
update_option('adrotate_config', $config);
|
850 |
}
|
adrotate-output.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -637,15 +637,14 @@ function adrotate_dashboard_error() {
|
|
637 |
}
|
638 |
|
639 |
if($adrotate_config['borlabscache'] == "Y" AND !is_plugin_active('borlabs-cache/borlabs-cache.php')) {
|
640 |
-
$error['borlabs_not_active'] = __('You have enable caching support but Borlabs Cache is not active on your site!', 'adrotate
|
641 |
}
|
642 |
if($adrotate_config['borlabscache'] == "Y" AND is_plugin_active('borlabs-cache/borlabs-cache.php')) {
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
$error['borlabs_fragment_error'] = __('You have enabled Borlabs Cache support but Fragment caching is not enabled!', 'adrotate-pro').' <a href="'.admin_url('/admin.php?page=borlabs-cache-fragments').'">'.__('Enable Fragment Caching', 'adrotate-pro').'</a>.';
|
647 |
-
}
|
648 |
}
|
|
|
649 |
}
|
650 |
|
651 |
// Misc
|
@@ -653,10 +652,10 @@ function adrotate_dashboard_error() {
|
|
653 |
$error['banners_folder'] = __('Your AdRotate Banner folder is not writable or does not exist.', 'adrotate').' <a href="https://ajdg.solutions/manuals/adrotate-manuals/manage-banner-images/" target="_blank">'.__('Set up your banner folder', 'adrotate').'</a>.';
|
654 |
}
|
655 |
if(is_dir(WP_PLUGIN_DIR."/adrotate-pro/")) {
|
656 |
-
$error['adrotate_exists'] = __('You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated.', 'adrotate
|
657 |
}
|
658 |
if(basename(__DIR__) != 'adrotate' AND basename(__DIR__) != 'adrotate-pro') {
|
659 |
-
$error['adrotate_folder_names'] = __('Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!', 'adrotate
|
660 |
}
|
661 |
|
662 |
$error = (isset($error) AND is_array($error)) ? $error : false;
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
+
* Copyright 2008-2022 Arnan de Gans. All Rights Reserved.
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
637 |
}
|
638 |
|
639 |
if($adrotate_config['borlabscache'] == "Y" AND !is_plugin_active('borlabs-cache/borlabs-cache.php')) {
|
640 |
+
$error['borlabs_not_active'] = __('You have enable caching support but Borlabs Cache is not active on your site!', 'adrotate').' <a href="'.admin_url('/admin.php?page=adrotate-settings&tab=misc').'">'.__('Disable Borlabs Cache Support', 'adrotate').'</a>.';
|
641 |
}
|
642 |
if($adrotate_config['borlabscache'] == "Y" AND is_plugin_active('borlabs-cache/borlabs-cache.php')) {
|
643 |
+
$borlabs_config = get_option('BorlabsCacheConfigInactive');
|
644 |
+
if($borlabs_config['cacheActivated'] == 'yes' AND strlen($borlabs_config['fragmentCaching']) < 1) {
|
645 |
+
$error['borlabs_fragment_error'] = __('You have enabled Borlabs Cache support but Fragment caching is not enabled!', 'adrotate').' <a href="'.admin_url('/admin.php?page=borlabs-cache-fragments').'">'.__('Enable Fragment Caching', 'adrotate').'</a>.';
|
|
|
|
|
646 |
}
|
647 |
+
unset($borlabs_config);
|
648 |
}
|
649 |
|
650 |
// Misc
|
652 |
$error['banners_folder'] = __('Your AdRotate Banner folder is not writable or does not exist.', 'adrotate').' <a href="https://ajdg.solutions/manuals/adrotate-manuals/manage-banner-images/" target="_blank">'.__('Set up your banner folder', 'adrotate').'</a>.';
|
653 |
}
|
654 |
if(is_dir(WP_PLUGIN_DIR."/adrotate-pro/")) {
|
655 |
+
$error['adrotate_exists'] = __('You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated.', 'adrotate').' <a href="'.admin_url('/plugins.php?s=adrotate&plugin_status=all').'">'.__('Switch plugins', 'adrotate').'</a>.';
|
656 |
}
|
657 |
if(basename(__DIR__) != 'adrotate' AND basename(__DIR__) != 'adrotate-pro') {
|
658 |
+
$error['adrotate_folder_names'] = __('Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!', 'adrotate').' <a href="https://ajdg.solutions/support/adrotate-manuals/installing-adrotate-on-your-website/" target="_blank">'.__('Installation instructions', 'adrotate').'</a>.';
|
659 |
}
|
660 |
|
661 |
$error = (isset($error) AND is_array($error)) ? $error : false;
|
adrotate-setup.php
CHANGED
@@ -824,6 +824,8 @@ function adrotate_clean_setup() {
|
|
824 |
Since: 5.8.14
|
825 |
-------------------------------------------------------------*/
|
826 |
function adrotate_disable_thirdparty() {
|
|
|
|
|
827 |
deactivate_plugins(array('/adrotate-extra-settings/adrotate-extra-settings.php', '/adrotate-email-add-on/adrotate-email-add-on.php', '/ad-builder-for-adrotate/ad-builder-for-adrotate.php', '/extended-adrotate-ad-placements/index.php'));
|
828 |
}
|
829 |
|
824 |
Since: 5.8.14
|
825 |
-------------------------------------------------------------*/
|
826 |
function adrotate_disable_thirdparty() {
|
827 |
+
require_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
828 |
+
|
829 |
deactivate_plugins(array('/adrotate-extra-settings/adrotate-extra-settings.php', '/adrotate-email-add-on/adrotate-email-add-on.php', '/ad-builder-for-adrotate/ad-builder-for-adrotate.php', '/extended-adrotate-ad-placements/index.php'));
|
830 |
}
|
831 |
|
adrotate-widget.php
CHANGED
@@ -125,10 +125,10 @@ class adrotate_widgets extends WP_Widget {
|
|
125 |
|
126 |
$title = $description = $type = $adid = '';
|
127 |
extract($instance);
|
128 |
-
$title =
|
129 |
-
$description =
|
130 |
-
$type =
|
131 |
-
$adid =
|
132 |
?>
|
133 |
<p>
|
134 |
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title (optional):', 'adrotate' ); ?></label>
|
125 |
|
126 |
$title = $description = $type = $adid = '';
|
127 |
extract($instance);
|
128 |
+
$title = sanitize_title($title);
|
129 |
+
$description = sanitize_text_field($description);
|
130 |
+
$type = sanitize_key($type);
|
131 |
+
$adid = sanitize_key($adid);
|
132 |
?>
|
133 |
<p>
|
134 |
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title (optional):', 'adrotate' ); ?></label>
|
adrotate.php
CHANGED
@@ -6,13 +6,13 @@ 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 |
|
13 |
/* ------------------------------------------------------------------------------------
|
14 |
* COPYRIGHT AND TRADEMARK NOTICE
|
15 |
-
* Copyright 2008-
|
16 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
17 |
|
18 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -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__);
|
@@ -147,10 +147,10 @@ function adrotate_manage() {
|
|
147 |
global $wpdb, $userdata, $adrotate_config;
|
148 |
|
149 |
$status = $file = $view = $ad_edit_id = '';
|
150 |
-
if(isset($_GET['status'])) $status =
|
151 |
-
if(isset($_GET['file'])) $file =
|
152 |
-
if(isset($_GET['view'])) $view =
|
153 |
-
if(isset($_GET['ad'])) $ad_edit_id =
|
154 |
|
155 |
if(!is_numeric($status)) $status = 0;
|
156 |
if(!is_numeric($ad_edit_id)) $ad_edit_id = 0;
|
@@ -162,8 +162,8 @@ function adrotate_manage() {
|
|
162 |
$in84days = $now + 7257600;
|
163 |
|
164 |
if(isset($_GET['month']) AND isset($_GET['year'])) {
|
165 |
-
$month =
|
166 |
-
$year =
|
167 |
} else {
|
168 |
$month = date("m");
|
169 |
$year = date("Y");
|
@@ -274,16 +274,16 @@ function adrotate_manage_group() {
|
|
274 |
global $wpdb, $adrotate_config;
|
275 |
|
276 |
$status = $view = $group_edit_id = '';
|
277 |
-
if(isset($_GET['status'])) $status =
|
278 |
-
if(isset($_GET['view'])) $view =
|
279 |
-
if(isset($_GET['group'])) $group_edit_id =
|
280 |
|
281 |
if(!is_numeric($status)) $status = 0;
|
282 |
if(!is_numeric($group_edit_id)) $group_edit_id = 0;
|
283 |
|
284 |
if(isset($_GET['month']) AND isset($_GET['year'])) {
|
285 |
-
$month =
|
286 |
-
$year =
|
287 |
} else {
|
288 |
$month = date("m");
|
289 |
$year = date("Y");
|
@@ -358,8 +358,8 @@ function adrotate_manage_media() {
|
|
358 |
global $wpdb, $adrotate_config;
|
359 |
|
360 |
$status = $file = '';
|
361 |
-
if(isset($_GET['status'])) $status =
|
362 |
-
if(isset($_GET['file'])) $file =
|
363 |
|
364 |
if(!is_numeric($status)) $status = 0;
|
365 |
|
@@ -399,17 +399,17 @@ function adrotate_statistics() {
|
|
399 |
global $wpdb, $adrotate_config;
|
400 |
|
401 |
$status = $view = $file = $id = '';
|
402 |
-
if(isset($_GET['status'])) $status =
|
403 |
-
if(isset($_GET['view'])) $view =
|
404 |
-
if(isset($_GET['id'])) $id =
|
405 |
-
if(isset($_GET['file'])) $file =
|
406 |
|
407 |
if(!is_numeric($status)) $status = 0;
|
408 |
if(!is_numeric($id)) $id = 0;
|
409 |
|
410 |
if(isset($_GET['month']) AND isset($_GET['year'])) {
|
411 |
-
$month =
|
412 |
-
$year =
|
413 |
} else {
|
414 |
$month = date("m");
|
415 |
$year = date("Y");
|
@@ -448,8 +448,8 @@ function adrotate_support() {
|
|
448 |
global $wpdb, $adrotate_config;
|
449 |
|
450 |
$status = $file = '';
|
451 |
-
if(isset($_GET['status'])) $status =
|
452 |
-
if(isset($_GET['file'])) $file =
|
453 |
|
454 |
if(!is_numeric($status)) $status = 0;
|
455 |
$current_user = wp_get_current_user();
|
@@ -481,12 +481,12 @@ function adrotate_support() {
|
|
481 |
function adrotate_options() {
|
482 |
global $wpdb, $wp_roles;
|
483 |
|
484 |
-
$active_tab = (isset($_GET['tab'])) ?
|
485 |
-
$status = (isset($_GET['status'])) ?
|
486 |
|
487 |
if(!is_numeric($status)) $status = 0;
|
488 |
|
489 |
-
$action = (isset($_GET['action'])) ?
|
490 |
if($action == 'update-db') adrotate_check_upgrade();
|
491 |
if($action == 'reset-tasks') adrotate_check_schedules();
|
492 |
if($action == 'disable-3rdparty') adrotate_disable_thirdparty();
|
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.23
|
10 |
License: GPLv3
|
11 |
*/
|
12 |
|
13 |
/* ------------------------------------------------------------------------------------
|
14 |
* COPYRIGHT AND TRADEMARK NOTICE
|
15 |
+
* Copyright 2008-2022 Arnan de Gans. All Rights Reserved.
|
16 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
17 |
|
18 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
21 |
------------------------------------------------------------------------------------ */
|
22 |
|
23 |
/*--- AdRotate values ---------------------------------------*/
|
24 |
+
define("ADROTATE_DISPLAY", '5.8.23');
|
25 |
define("ADROTATE_VERSION", 399);
|
26 |
define("ADROTATE_DB_VERSION", 66);
|
27 |
$plugin_folder = plugin_dir_path(__FILE__);
|
147 |
global $wpdb, $userdata, $adrotate_config;
|
148 |
|
149 |
$status = $file = $view = $ad_edit_id = '';
|
150 |
+
if(isset($_GET['status'])) $status = sanitize_key($_GET['status']);
|
151 |
+
if(isset($_GET['file'])) $file = sanitize_file_name($_GET['file']);
|
152 |
+
if(isset($_GET['view'])) $view = sanitize_key($_GET['view']);
|
153 |
+
if(isset($_GET['ad'])) $ad_edit_id = sanitize_key($_GET['ad']);
|
154 |
|
155 |
if(!is_numeric($status)) $status = 0;
|
156 |
if(!is_numeric($ad_edit_id)) $ad_edit_id = 0;
|
162 |
$in84days = $now + 7257600;
|
163 |
|
164 |
if(isset($_GET['month']) AND isset($_GET['year'])) {
|
165 |
+
$month = sanitize_key($_GET['month']);
|
166 |
+
$year = sanitize_key($_GET['year']);
|
167 |
} else {
|
168 |
$month = date("m");
|
169 |
$year = date("Y");
|
274 |
global $wpdb, $adrotate_config;
|
275 |
|
276 |
$status = $view = $group_edit_id = '';
|
277 |
+
if(isset($_GET['status'])) $status = sanitize_key($_GET['status']);
|
278 |
+
if(isset($_GET['view'])) $view = sanitize_key($_GET['view']);
|
279 |
+
if(isset($_GET['group'])) $group_edit_id = sanitize_key($_GET['group']);
|
280 |
|
281 |
if(!is_numeric($status)) $status = 0;
|
282 |
if(!is_numeric($group_edit_id)) $group_edit_id = 0;
|
283 |
|
284 |
if(isset($_GET['month']) AND isset($_GET['year'])) {
|
285 |
+
$month = sanitize_key($_GET['month']);
|
286 |
+
$year = sanitize_key($_GET['year']);
|
287 |
} else {
|
288 |
$month = date("m");
|
289 |
$year = date("Y");
|
358 |
global $wpdb, $adrotate_config;
|
359 |
|
360 |
$status = $file = '';
|
361 |
+
if(isset($_GET['status'])) $status = sanitize_key($_GET['status']);
|
362 |
+
if(isset($_GET['file'])) $file = sanitize_file_name($_GET['file']);
|
363 |
|
364 |
if(!is_numeric($status)) $status = 0;
|
365 |
|
399 |
global $wpdb, $adrotate_config;
|
400 |
|
401 |
$status = $view = $file = $id = '';
|
402 |
+
if(isset($_GET['status'])) $status = sanitize_key($_GET['status']);
|
403 |
+
if(isset($_GET['view'])) $view = sanitize_key($_GET['view']);
|
404 |
+
if(isset($_GET['id'])) $id = sanitize_key($_GET['id']);
|
405 |
+
if(isset($_GET['file'])) $file = sanitize_file_name($_GET['file']);
|
406 |
|
407 |
if(!is_numeric($status)) $status = 0;
|
408 |
if(!is_numeric($id)) $id = 0;
|
409 |
|
410 |
if(isset($_GET['month']) AND isset($_GET['year'])) {
|
411 |
+
$month = sanitize_key($_GET['month']);
|
412 |
+
$year = sanitize_key($_GET['year']);
|
413 |
} else {
|
414 |
$month = date("m");
|
415 |
$year = date("Y");
|
448 |
global $wpdb, $adrotate_config;
|
449 |
|
450 |
$status = $file = '';
|
451 |
+
if(isset($_GET['status'])) $status = sanitize_key($_GET['status']);
|
452 |
+
if(isset($_GET['file'])) $file = sanitize_file_name($_GET['file']);
|
453 |
|
454 |
if(!is_numeric($status)) $status = 0;
|
455 |
$current_user = wp_get_current_user();
|
481 |
function adrotate_options() {
|
482 |
global $wpdb, $wp_roles;
|
483 |
|
484 |
+
$active_tab = (isset($_GET['tab'])) ? sanitize_key($_GET['tab']) : 'general';
|
485 |
+
$status = (isset($_GET['status'])) ? sanitize_key($_GET['status']) : '';
|
486 |
|
487 |
if(!is_numeric($status)) $status = 0;
|
488 |
|
489 |
+
$action = (isset($_GET['action'])) ? sanitize_key($_GET['action']) : '';
|
490 |
if($action == 'update-db') adrotate_check_upgrade();
|
491 |
if($action == 'reset-tasks') adrotate_check_schedules();
|
492 |
if($action == 'disable-3rdparty') adrotate_disable_thirdparty();
|
dashboard/publisher/adverts-disabled.php
CHANGED
@@ -58,7 +58,7 @@
|
|
58 |
<th class="check-column"><input type="checkbox" name="disabledbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
|
59 |
<td><center><?php echo $banner['id'];?></center></td>
|
60 |
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
61 |
-
<td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(
|
62 |
<?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?>
|
63 |
<td><center><?php echo $stats['impressions']; ?></center></td>
|
64 |
<td><center><?php echo $stats['clicks']; ?></center></td>
|
58 |
<th class="check-column"><input type="checkbox" name="disabledbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
|
59 |
<td><center><?php echo $banner['id'];?></center></td>
|
60 |
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
61 |
+
<td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes($banner['title']);?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?> - <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></td>
|
62 |
<?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?>
|
63 |
<td><center><?php echo $stats['impressions']; ?></center></td>
|
64 |
<td><center><?php echo $stats['clicks']; ?></center></td>
|
dashboard/publisher/adverts-edit.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
-
* Copyright 2008-
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
@@ -56,10 +56,10 @@ if($edit_banner) {
|
|
56 |
echo '<div class="error"><p>'. __('You did use %asset% in your AdCode but did not select a file to use!', 'adrotate').'</p></div>';
|
57 |
|
58 |
if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
|
59 |
-
echo '<div class="error"><p>'. __('There is a problem saving the image. Please re-
|
60 |
|
61 |
if((!preg_match_all('/<(a)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) OR preg_match_all('/<(ins|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things)) AND $edit_banner->tracker == 'Y')
|
62 |
-
echo '<div class="error"><p>'. __("This kind of advert can not have statistics enabled in AdRotate.
|
63 |
|
64 |
// Ad Notices
|
65 |
$adstate = adrotate_evaluate_ad($edit_banner->id);
|
@@ -282,7 +282,7 @@ if($edit_banner) {
|
|
282 |
<tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
|
283 |
<th class="check-column"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
|
284 |
<td><center><?php echo $group->id; ?></center></td>
|
285 |
-
<td><?php echo $group->name; ?><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
|
286 |
<td><center><?php echo $ads_in_group; ?></center></td>
|
287 |
</tr>
|
288 |
<?php
|
1 |
<?php
|
2 |
/* ------------------------------------------------------------------------------------
|
3 |
* COPYRIGHT AND TRADEMARK NOTICE
|
4 |
+
* Copyright 2008-2022 Arnan de Gans. All Rights Reserved.
|
5 |
* ADROTATE is a registered trademark of Arnan de Gans.
|
6 |
|
7 |
* COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
|
56 |
echo '<div class="error"><p>'. __('You did use %asset% in your AdCode but did not select a file to use!', 'adrotate').'</p></div>';
|
57 |
|
58 |
if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
|
59 |
+
echo '<div class="error"><p>'. __('There is a problem saving the image. Please re-select your image and re-save the advert!', 'adrotate').'</p></div>';
|
60 |
|
61 |
if((!preg_match_all('/<(a)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) OR preg_match_all('/<(ins|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things)) AND $edit_banner->tracker == 'Y')
|
62 |
+
echo '<div class="error"><p>'. __("This kind of advert can not have statistics enabled in AdRotate. Separate impression counting is available in AdRotate Pro.", 'adrotate').'</p></div>';
|
63 |
|
64 |
// Ad Notices
|
65 |
$adstate = adrotate_evaluate_ad($edit_banner->id);
|
282 |
<tr id='group-<?php echo $group->id; ?>' class=' <?php echo $class; ?>'>
|
283 |
<th class="check-column"><input type="checkbox" name="groupselect[]" value="<?php echo $group->id; ?>" <?php if(in_array($group->id, $meta_array)) echo "checked"; ?> /></th>
|
284 |
<td><center><?php echo $group->id; ?></center></td>
|
285 |
+
<td><?php echo stripslashes($group->name); ?><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
|
286 |
<td><center><?php echo $ads_in_group; ?></center></td>
|
287 |
</tr>
|
288 |
<?php
|
dashboard/publisher/adverts-error.php
CHANGED
@@ -53,7 +53,7 @@
|
|
53 |
<tr id='adrotateindex' class='<?php echo $class; ?>'>
|
54 |
<th class="check-column"><input type="checkbox" name="errorbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
|
55 |
<td><center><?php echo $banner['id'];?></center></td>
|
56 |
-
<td><strong><a class="row-title" href="<?php echo admin_url("/admin.php?page=adrotate&view=edit&ad=".$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(
|
57 |
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
58 |
</tr>
|
59 |
<?php } ?>
|
53 |
<tr id='adrotateindex' class='<?php echo $class; ?>'>
|
54 |
<th class="check-column"><input type="checkbox" name="errorbannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
|
55 |
<td><center><?php echo $banner['id'];?></center></td>
|
56 |
+
<td><strong><a class="row-title" href="<?php echo admin_url("/admin.php?page=adrotate&view=edit&ad=".$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes($banner['title']);?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y' AND $banner['type'] != 'error') { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
|
57 |
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
58 |
</tr>
|
59 |
<?php } ?>
|
dashboard/publisher/adverts-main.php
CHANGED
@@ -66,7 +66,7 @@
|
|
66 |
<th class="check-column"><input type="checkbox" name="bannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
|
67 |
<td><center><?php echo $banner['id'];?></center></td>
|
68 |
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
69 |
-
<td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes(
|
70 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
71 |
<?php if($banner['tracker'] == "Y") { ?>
|
72 |
<td><center><?php echo $stats['impressions']; ?></center></td>
|
66 |
<th class="check-column"><input type="checkbox" name="bannercheck[]" value="<?php echo $banner['id']; ?>" /></th>
|
67 |
<td><center><?php echo $banner['id'];?></center></td>
|
68 |
<td><?php echo date_i18n("F d, Y", $banner['firstactive']);?><br /><span style="color: <?php echo adrotate_prepare_color($banner['lastactive']);?>;"><?php echo date_i18n("F d, Y", $banner['lastactive']);?></span></td>
|
69 |
+
<td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate&view=edit&ad='.$banner['id']);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes($banner['title']);?></a></strong> <?php if($adrotate_config['stats'] == 1 AND $banner['tracker'] == 'Y') { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=advert&id='.$banner['id']);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php if(strlen($grouplist) > 0) echo '<br /><span style="font-weight:bold;">'.__('Groups:', 'adrotate').'</span> '.$grouplist; ?></span></td>
|
70 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
71 |
<?php if($banner['tracker'] == "Y") { ?>
|
72 |
<td><center><?php echo $stats['impressions']; ?></center></td>
|
dashboard/publisher/groups-edit.php
CHANGED
@@ -38,13 +38,13 @@ if($edit_group) {
|
|
38 |
if($group_edit_id AND $edit_group->name != '') {
|
39 |
// Errors
|
40 |
if($edit_group->modus == 2 AND $edit_group->gridrows == 1 AND $edit_group->gridcolumns == 1)
|
41 |
-
echo '<div class="error"><p>'. __('Your block is a 1x1 grid. Either add more rows or columns or set the group to Default mode.', 'adrotate
|
42 |
|
43 |
if($edit_group->cat_loc > 0 AND strlen($edit_group->cat) == 0)
|
44 |
-
echo '<div class="error"><p>'. __('You have enabled Post Injection but did not select any categories.', 'adrotate
|
45 |
|
46 |
if($edit_group->page_loc > 0 AND strlen($edit_group->page) == 0)
|
47 |
-
echo '<div class="error"><p>'. __('You have enabled Page Injection but did not select any pages.', 'adrotate
|
48 |
}
|
49 |
?>
|
50 |
|
@@ -64,7 +64,7 @@ if($edit_group) {
|
|
64 |
<tr>
|
65 |
<th width="15%"><?php _e('Name', 'adrotate'); ?></th>
|
66 |
<td width="35%">
|
67 |
-
<input tabindex="1" name="adrotate_groupname" type="text" class="ajdg-fullwidth ajdg-inputfield" size="70" value="<?php echo $edit_group->name; ?>" autocomplete="off" />
|
68 |
</td>
|
69 |
<td>
|
70 |
|
@@ -379,7 +379,7 @@ if($edit_group) {
|
|
379 |
<tr class='<?php echo $class; ?>'>
|
380 |
<th class="check-column"><input type="checkbox" name="adselect[]" value="<?php echo $ad->id; ?>" <?php if(in_array($ad->id, $meta_array)) echo "checked"; ?> /></th>
|
381 |
<td><center><?php echo $ad->id; ?></center></td>
|
382 |
-
<td><?php echo stripslashes(
|
383 |
<td><span style="color: <?php echo adrotate_prepare_color($stoptime);?>;"><?php echo date_i18n("F d, Y", $stoptime); ?></span></td>
|
384 |
<td><center><?php echo $ad->weight; ?></center></td>
|
385 |
<?php if($adrotate_config['stats'] == 1) {
|
38 |
if($group_edit_id AND $edit_group->name != '') {
|
39 |
// Errors
|
40 |
if($edit_group->modus == 2 AND $edit_group->gridrows == 1 AND $edit_group->gridcolumns == 1)
|
41 |
+
echo '<div class="error"><p>'. __('Your block is a 1x1 grid. Either add more rows or columns or set the group to Default mode.', 'adrotate').'</p></div>';
|
42 |
|
43 |
if($edit_group->cat_loc > 0 AND strlen($edit_group->cat) == 0)
|
44 |
+
echo '<div class="error"><p>'. __('You have enabled Post Injection but did not select any categories.', 'adrotate').'</p></div>';
|
45 |
|
46 |
if($edit_group->page_loc > 0 AND strlen($edit_group->page) == 0)
|
47 |
+
echo '<div class="error"><p>'. __('You have enabled Page Injection but did not select any pages.', 'adrotate').'</p></div>';
|
48 |
}
|
49 |
?>
|
50 |
|
64 |
<tr>
|
65 |
<th width="15%"><?php _e('Name', 'adrotate'); ?></th>
|
66 |
<td width="35%">
|
67 |
+
<input tabindex="1" name="adrotate_groupname" type="text" class="ajdg-fullwidth ajdg-inputfield" size="70" value="<?php echo stripslashes($edit_group->name); ?>" autocomplete="off" />
|
68 |
</td>
|
69 |
<td>
|
70 |
|
379 |
<tr class='<?php echo $class; ?>'>
|
380 |
<th class="check-column"><input type="checkbox" name="adselect[]" value="<?php echo $ad->id; ?>" <?php if(in_array($ad->id, $meta_array)) echo "checked"; ?> /></th>
|
381 |
<td><center><?php echo $ad->id; ?></center></td>
|
382 |
+
<td><?php echo stripslashes($ad->title); ?></td>
|
383 |
<td><span style="color: <?php echo adrotate_prepare_color($stoptime);?>;"><?php echo date_i18n("F d, Y", $stoptime); ?></span></td>
|
384 |
<td><center><?php echo $ad->weight; ?></center></td>
|
385 |
<?php if($adrotate_config['stats'] == 1) {
|
dashboard/publisher/groups-main.php
CHANGED
@@ -67,7 +67,7 @@
|
|
67 |
<tr class='<?php echo $class; ?>'>
|
68 |
<th class="check-column"><input type="checkbox" name="groupcheck[]" value="<?php echo $group->id; ?>" /></th>
|
69 |
<td><center><?php echo $group->id;?></center></td>
|
70 |
-
<td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=edit&group='.$group->id);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo $group->name;?></a></strong> <?php if($adrotate_config['stats'] == 1) { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=group&id='.$group->id);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
|
71 |
<td><center><?php echo $ads_in_group; ?></center></td>
|
72 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
73 |
<td><center><?php echo $stats['impressions']; ?></center></td>
|
67 |
<tr class='<?php echo $class; ?>'>
|
68 |
<th class="check-column"><input type="checkbox" name="groupcheck[]" value="<?php echo $group->id; ?>" /></th>
|
69 |
<td><center><?php echo $group->id;?></center></td>
|
70 |
+
<td><strong><a class="row-title" href="<?php echo admin_url('/admin.php?page=adrotate-groups&view=edit&group='.$group->id);?>" title="<?php _e('Edit', 'adrotate'); ?>"><?php echo stripslashes($group->name);?></a></strong> <?php if($adrotate_config['stats'] == 1) { ?>- <a href="<?php echo admin_url('/admin.php?page=adrotate-statistics&view=group&id='.$group->id);?>" title="<?php _e('Stats', 'adrotate'); ?>"><?php _e('Stats', 'adrotate'); ?></a><?php } ?><span style="color:#999;"><?php echo '<br /><span style="font-weight:bold;">'.__('Mode', 'adrotate').':</span> '.implode(', ', $modus); ?></span></td>
|
71 |
<td><center><?php echo $ads_in_group; ?></center></td>
|
72 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
73 |
<td><center><?php echo $stats['impressions']; ?></center></td>
|
dashboard/publisher/media.php
CHANGED
@@ -52,7 +52,7 @@
|
|
52 |
<tbody>
|
53 |
<tr>
|
54 |
<td>
|
55 |
-
<input tabindex="3" id="adrotate_folder" name="adrotate_folder" type="text" size="20" class="ajdg-inputfield" value="" autocomplete="off" /> <input tabindex="4" type="submit" name="adrotate_folder_submit" class="button-secondary" value="<?php _e('Create folder', 'adrotate
|
56 |
</td>
|
57 |
</tr>
|
58 |
|
52 |
<tbody>
|
53 |
<tr>
|
54 |
<td>
|
55 |
+
<input tabindex="3" id="adrotate_folder" name="adrotate_folder" type="text" size="20" class="ajdg-inputfield" value="" autocomplete="off" /> <input tabindex="4" type="submit" name="adrotate_folder_submit" class="button-secondary" value="<?php _e('Create folder', 'adrotate'); ?>" />
|
56 |
</td>
|
57 |
</tr>
|
58 |
|
dashboard/publisher/schedules-main.php
CHANGED
@@ -67,7 +67,7 @@
|
|
67 |
<th class="check-column"><input type="checkbox" name="schedulecheck[]" value="<?php echo $schedule->id; ?>" disabled="1" /></th>
|
68 |
<td><center><?php echo $schedule->id;?></center></td>
|
69 |
<td><?php echo date_i18n("F d, Y H:i", $schedule->starttime);?><br /><span style="color: <?php echo adrotate_prepare_color($schedule->stoptime);?>;"><?php echo date_i18n("F d, Y H:i", $schedule->stoptime);?></span></td>
|
70 |
-
<td><?php echo stripslashes(
|
71 |
<td><center><?php echo count($ads_use_schedule); ?></center></td>
|
72 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
73 |
<td><center><?php echo $schedule->maximpressions; ?></center></td>
|
67 |
<th class="check-column"><input type="checkbox" name="schedulecheck[]" value="<?php echo $schedule->id; ?>" disabled="1" /></th>
|
68 |
<td><center><?php echo $schedule->id;?></center></td>
|
69 |
<td><?php echo date_i18n("F d, Y H:i", $schedule->starttime);?><br /><span style="color: <?php echo adrotate_prepare_color($schedule->stoptime);?>;"><?php echo date_i18n("F d, Y H:i", $schedule->stoptime);?></span></td>
|
70 |
+
<td><?php echo stripslashes($schedule->name); ?><span style="color:#999;"><br /><?php _e('Mon:', 'adrotate'); ?> <?php echo ($schedule->day_mon == 'Y') ? $tick : $cross; ?> <?php _e('Tue:', 'adrotate'); ?> <?php echo ($schedule->day_tue == 'Y') ? $tick : $cross; ?> <?php _e('Wed:', 'adrotate'); ?> <?php echo ($schedule->day_wed == 'Y') ? $tick : $cross; ?> <?php _e('Thu:', 'adrotate'); ?> <?php echo ($schedule->day_thu == 'Y') ? $tick : $cross; ?> <?php _e('Fri:', 'adrotate'); ?> <?php echo ($schedule->day_fri == 'Y') ? $tick : $cross; ?> <?php _e('Sat:', 'adrotate'); ?> <?php echo ($schedule->day_sat == 'Y') ? $tick : $cross; ?> <?php _e('Sun:', 'adrotate'); ?> <?php echo ($schedule->day_sun == 'Y') ? $tick : $cross; ?> <?php if($schedule->daystarttime > 0) { ?><?php _e('Between:', 'adrotate'); ?> <?php echo $sdayhour; ?>:<?php echo $sdayminute; ?> - <?php echo $edayhour; ?>:<?php echo $edayminute; ?> <?php } ?><br /><?php _e('Impression spread:', 'adrotate'); ?> <?php echo ($schedule->spread == 'Y') ? $tick : $cross; ?>, <?php _e('Auto Delete:', 'adrotate'); ?> <?php echo ($schedule->autodelete == 'Y') ? $tick : $cross; ?></span></td>
|
71 |
<td><center><?php echo count($ads_use_schedule); ?></center></td>
|
72 |
<?php if($adrotate_config['stats'] == 1) { ?>
|
73 |
<td><center><?php echo $schedule->maximpressions; ?></center></td>
|
dashboard/settings/maintenance.php
CHANGED
@@ -102,8 +102,4 @@
|
|
102 |
</td>
|
103 |
</tr>
|
104 |
</table>
|
105 |
-
|
106 |
-
<p class="submit">
|
107 |
-
<input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
|
108 |
-
</p>
|
109 |
</form>
|
102 |
</td>
|
103 |
</tr>
|
104 |
</table>
|
|
|
|
|
|
|
|
|
105 |
</form>
|
language/adrotate-de_DE.mo
CHANGED
Binary file
|
language/adrotate-de_DE.po
CHANGED
@@ -2,46 +2,46 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Werbeanzeige gespeichert"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Group saved"
|
26 |
msgstr "Gruppe gespeichert"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Banner-Bild gespeichert"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Anzeige (n) gelöscht"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Gruppe gelöscht"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Assets gelöscht"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
@@ -49,31 +49,31 @@ msgstr ""
|
|
49 |
"Beim Löschen der Datei oder des Ordners ist etwas schief gelaufen. Stellen "
|
50 |
"Sie sicher, dass Ihre Berechtigungen in Ordnung sind."
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Anzeige(n) Statistik-Reset"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Anzeige(e) erneuert"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Anzeigen deaktiviert"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Anzeige(n) aktiviert"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Gruppe einschließlich der darin gelöschten Anzeigen"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Export created"
|
74 |
msgstr "Export erstellt"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -82,32 +82,32 @@ msgstr ""
|
|
82 |
"Anzeige unten. Vergessen Sie nicht, alle Einstellungen zu überprüfen und die "
|
83 |
"Anzeige zu planen."
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Einstellungen gespeichert"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Datenbank optimiert"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Datenbank repariert"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr ""
|
100 |
"Anzeigen wurden überprüft und Zustände korrigiert, wo es erforderlich war"
|
101 |
|
102 |
-
#: adrotate-functions.php:
|
103 |
msgid "Cleanup complete"
|
104 |
msgstr "Bereinigung abgeschlossen"
|
105 |
|
106 |
-
#: adrotate-functions.php:
|
107 |
msgid "Action prohibited"
|
108 |
msgstr "Aktion nicht zulässig"
|
109 |
|
110 |
-
#: adrotate-functions.php:
|
111 |
msgid ""
|
112 |
"The advert was saved but has an issue which might prevent it from working "
|
113 |
"properly. Review the colored advert."
|
@@ -116,23 +116,41 @@ msgstr ""
|
|
116 |
"möglicherweise nicht ordnungsgemäß funktionieren könnte. Überprüfen Sie die "
|
117 |
"farbige Anzeige."
|
118 |
|
119 |
-
#: adrotate-functions.php:
|
120 |
msgid "No data found in selected time period"
|
121 |
msgstr "Keine Daten im ausgewählten Zeitraum gefunden"
|
122 |
|
123 |
-
#: adrotate-functions.php:
|
124 |
msgid "Database can only be optimized or cleaned once every hour"
|
125 |
msgstr "Datenbank kann nur einmal pro Stunde optimiert oder gereinigt werden"
|
126 |
|
127 |
-
#: adrotate-functions.php:
|
128 |
msgid "Form can not be (partially) empty!"
|
129 |
msgstr "Formular kann nicht (teilweise) leer sein!"
|
130 |
|
131 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
132 |
msgid "No adverts found."
|
133 |
msgstr "Keine Anzeigen gefunden."
|
134 |
|
135 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
msgid ""
|
137 |
"The advert hash is not usable or is missing required data. Please copy the "
|
138 |
"hash correctly and try again."
|
@@ -140,7 +158,7 @@ msgstr ""
|
|
140 |
"Der Anzeigenhash ist nicht verwendbar oder enthält keine erforderlichen "
|
141 |
"Daten. Kopieren Sie den Hash richtig, und versuchen Sie es erneut."
|
142 |
|
143 |
-
#: adrotate-functions.php:
|
144 |
msgid ""
|
145 |
"The advert hash can not be used on the same site as it originated from or is "
|
146 |
"not a valid hash for importing."
|
@@ -148,11 +166,11 @@ msgstr ""
|
|
148 |
"Der Anzeigenhash kann nicht auf derselben Website verwendet werden, von der "
|
149 |
"er stammt, oder es handelt sich nicht um einen gültigen Hash für den Import."
|
150 |
|
151 |
-
#: adrotate-functions.php:
|
152 |
msgid "Unexpected error"
|
153 |
msgstr "Unerwarteter Fehler"
|
154 |
|
155 |
-
#: adrotate-manage-publisher.php:
|
156 |
msgid "AdRotate Advertiser"
|
157 |
msgstr "AdRotate Advertiser"
|
158 |
|
@@ -277,27 +295,27 @@ msgstr ""
|
|
277 |
msgid "Disable Borlabs Cache Support"
|
278 |
msgstr "Deaktivieren der Borlabs-Cache-Unterstützung"
|
279 |
|
280 |
-
#: adrotate-output.php:
|
281 |
msgid ""
|
282 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
283 |
msgstr ""
|
284 |
"Sie haben die Borlabs Cache-Unterstützung aktiviert, aber die "
|
285 |
"Fragmentzwischenspeicherung ist nicht aktiviert!"
|
286 |
|
287 |
-
#: adrotate-output.php:
|
288 |
msgid "Enable Fragment Caching"
|
289 |
msgstr "Aktivieren der Fragmentzwischenspeicherung"
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
293 |
msgstr ""
|
294 |
"Ihre AdRotate Banner-Ordner ist nicht beschreibbar ist oder nicht vorhanden."
|
295 |
|
296 |
-
#: adrotate-output.php:
|
297 |
msgid "Set up your banner folder"
|
298 |
msgstr "Einrichten des Bannerordners"
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
msgid ""
|
302 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
303 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -305,11 +323,11 @@ msgstr ""
|
|
305 |
"Sie haben AdRotate Professional installiert. Bitte wechseln Sie zu AdRotate "
|
306 |
"Pro! Sie können dieses Plugin löschen, nachdem AdRotate Pro aktiviert wurde."
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
msgid "Switch plugins"
|
310 |
msgstr "Wechseln von Plugins"
|
311 |
|
312 |
-
#: adrotate-output.php:
|
313 |
msgid ""
|
314 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
315 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -319,15 +337,15 @@ msgstr ""
|
|
319 |
"Plugin zweimal installiert oder Ihre aktuelle Installation hat den falschen "
|
320 |
"Ordnernamen. Bitte installieren Sie das Plugin richtig!"
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
msgid "Installation instructions"
|
324 |
msgstr "Installationsanweisungen"
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
msgid "your attention:"
|
328 |
msgstr "Ihre Aufmerksamkeit:"
|
329 |
|
330 |
-
#: adrotate-output.php:
|
331 |
msgid ""
|
332 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
333 |
"menu. If you need help getting started take a look at the"
|
@@ -336,47 +354,47 @@ msgstr ""
|
|
336 |
"AdRotate zu tun hat, befindet sich in diesem Menü. Wenn Sie Hilfe bei den "
|
337 |
"ersten"
|
338 |
|
339 |
-
#: adrotate-output.php:
|
340 |
msgid "manuals"
|
341 |
msgstr "Handbücher"
|
342 |
|
343 |
-
#: adrotate-output.php:
|
344 |
msgid "and"
|
345 |
msgstr "und"
|
346 |
|
347 |
-
#: adrotate-output.php:
|
348 |
msgid "forums"
|
349 |
msgstr "Forum"
|
350 |
|
351 |
-
#: adrotate-output.php:
|
352 |
msgid "Post Tweet"
|
353 |
msgstr "Tweet posten"
|
354 |
|
355 |
-
#: adrotate-output.php:
|
356 |
msgid "Share on Facebook"
|
357 |
msgstr "Auf Facebook teilen"
|
358 |
|
359 |
-
#: adrotate-output.php:
|
360 |
msgid "Write review on wordpress.org"
|
361 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
362 |
|
363 |
-
#: adrotate-output.php:
|
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:
|
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:
|
372 |
msgid "Help AdRotate Grow"
|
373 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
374 |
|
375 |
-
#: adrotate-output.php:
|
376 |
msgid "Get more features with AdRotate Pro"
|
377 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
|
378 |
|
379 |
-
#: adrotate-output.php:
|
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,15 +405,15 @@ msgstr ""
|
|
387 |
"Normalerweise beantworte ich Fragen noch am selben Tag, oft mit einer Lösung "
|
388 |
"in der ersten Antwort."
|
389 |
|
390 |
-
#: adrotate-output.php:
|
391 |
msgid "AdRotate Manuals"
|
392 |
msgstr "AdRotate-Handbücher"
|
393 |
|
394 |
-
#: adrotate-output.php:
|
395 |
msgid "Support Forums"
|
396 |
msgstr "Support-Foren"
|
397 |
|
398 |
-
#: adrotate-output.php:
|
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,7 +426,7 @@ msgstr ""
|
|
408 |
"zusätzlicher Informationen hilft immer, eine bessere Antwort oder Beratung "
|
409 |
"zu erhalten."
|
410 |
|
411 |
-
#: adrotate-output.php:
|
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,11 +439,11 @@ msgstr ""
|
|
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:
|
425 |
msgid "Write review on WordPress.org"
|
426 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
427 |
|
428 |
-
#: adrotate-output.php:
|
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,27 +454,27 @@ msgstr ""
|
|
436 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
437 |
"hat!"
|
438 |
|
439 |
-
#: adrotate-output.php:
|
440 |
msgid "Compare Licenses"
|
441 |
msgstr "Lizenzen vergleichen"
|
442 |
|
443 |
-
#: adrotate-output.php:
|
444 |
msgid "Single License"
|
445 |
msgstr "Einzellizenz"
|
446 |
|
447 |
-
#: adrotate-output.php:
|
448 |
msgid "Use on ONE WordPress installation."
|
449 |
msgstr "Für eine Wordpress-Installation."
|
450 |
|
451 |
-
#: adrotate-output.php:
|
452 |
msgid "Buy now"
|
453 |
msgstr "Jetzt kaufen"
|
454 |
|
455 |
-
#: adrotate-output.php:
|
456 |
msgid "Multi License"
|
457 |
msgstr "Multi-Lizenz"
|
458 |
|
459 |
-
#: adrotate-output.php:
|
460 |
msgid "Use on up to FIVE WordPress installations."
|
461 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
462 |
|
@@ -961,16 +979,16 @@ msgstr ""
|
|
961 |
|
962 |
#: dashboard/publisher/adverts-edit.php:59
|
963 |
msgid ""
|
964 |
-
"There is a problem saving the image. Please re-
|
965 |
-
"the
|
966 |
msgstr ""
|
967 |
-
"
|
968 |
-
"
|
969 |
|
970 |
#: dashboard/publisher/adverts-edit.php:62
|
971 |
msgid ""
|
972 |
-
"This kind of advert can not have statistics enabled in AdRotate.
|
973 |
-
"counting is available in AdRotate Pro."
|
974 |
msgstr ""
|
975 |
"Für diese Art von Werbung können statistiken in AdRotate nicht aktiviert "
|
976 |
"sein. Die Impressionszählung ist in AdRotate Pro verfügbar."
|
@@ -2422,9 +2440,9 @@ msgstr "Mehr über"
|
|
2422 |
msgid "user-agents"
|
2423 |
msgstr "Benutzer-agents"
|
2424 |
|
2425 |
-
#: dashboard/settings/general.php:83 dashboard/settings/
|
2426 |
-
#: dashboard/settings/
|
2427 |
-
#: dashboard/settings/
|
2428 |
msgid "Update Options"
|
2429 |
msgstr "Einstellungen aktualisieren"
|
2430 |
|
@@ -3922,26 +3940,12 @@ msgstr "Diese Funktion ist verfügbar in AdRotate Pro!"
|
|
3922 |
#~ "könnten, dass sie ordnungsgemäß funktioniert. Kontaktieren Sie die "
|
3923 |
#~ "Mitarbeiter."
|
3924 |
|
3925 |
-
#~ msgid "No file uploaded."
|
3926 |
-
#~ msgstr "Keine Datei hochgeladen."
|
3927 |
-
|
3928 |
#~ msgid "The file could not be read."
|
3929 |
#~ msgstr "Die Datei konnte nicht gelesen werden."
|
3930 |
|
3931 |
#~ msgid "Wrong file type."
|
3932 |
#~ msgstr "Falsche Dateityp."
|
3933 |
|
3934 |
-
#~ msgid "Wrong file type. No file uploaded."
|
3935 |
-
#~ msgstr "Falsche Dateityp. Keine Datei hochgeladen."
|
3936 |
-
|
3937 |
-
#~ msgid "File is too large."
|
3938 |
-
#~ msgstr "Die Datei ist zu groß."
|
3939 |
-
|
3940 |
-
#~ msgid "There was an error unzipping the file. Please try again later."
|
3941 |
-
#~ msgstr ""
|
3942 |
-
#~ "Beim Entpacken der Datei ist ein Fehler aufgetreten. Versuchen Sie es "
|
3943 |
-
#~ "später erneut."
|
3944 |
-
|
3945 |
#~ msgid "Invalid request"
|
3946 |
#~ msgstr "Ungültige Anfrage"
|
3947 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-04-07 16:26-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-04-07 16:26-0600\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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 3.0.1\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Werbeanzeige gespeichert"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Group saved"
|
26 |
msgstr "Gruppe gespeichert"
|
27 |
|
28 |
+
#: adrotate-functions.php:808
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Banner-Bild gespeichert"
|
31 |
|
32 |
+
#: adrotate-functions.php:812
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Anzeige (n) gelöscht"
|
35 |
|
36 |
+
#: adrotate-functions.php:816
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Gruppe gelöscht"
|
39 |
|
40 |
+
#: adrotate-functions.php:820
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Assets gelöscht"
|
43 |
|
44 |
+
#: adrotate-functions.php:824
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
49 |
"Beim Löschen der Datei oder des Ordners ist etwas schief gelaufen. Stellen "
|
50 |
"Sie sicher, dass Ihre Berechtigungen in Ordnung sind."
|
51 |
|
52 |
+
#: adrotate-functions.php:828
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Anzeige(n) Statistik-Reset"
|
55 |
|
56 |
+
#: adrotate-functions.php:832
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Anzeige(e) erneuert"
|
59 |
|
60 |
+
#: adrotate-functions.php:836
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Anzeigen deaktiviert"
|
63 |
|
64 |
+
#: adrotate-functions.php:840
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Anzeige(n) aktiviert"
|
67 |
|
68 |
+
#: adrotate-functions.php:844
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Gruppe einschließlich der darin gelöschten Anzeigen"
|
71 |
|
72 |
+
#: adrotate-functions.php:848
|
73 |
msgid "Export created"
|
74 |
msgstr "Export erstellt"
|
75 |
|
76 |
+
#: adrotate-functions.php:852
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
82 |
"Anzeige unten. Vergessen Sie nicht, alle Einstellungen zu überprüfen und die "
|
83 |
"Anzeige zu planen."
|
84 |
|
85 |
+
#: adrotate-functions.php:857
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Einstellungen gespeichert"
|
88 |
|
89 |
+
#: adrotate-functions.php:861
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Datenbank optimiert"
|
92 |
|
93 |
+
#: adrotate-functions.php:865
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Datenbank repariert"
|
96 |
|
97 |
+
#: adrotate-functions.php:869
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr ""
|
100 |
"Anzeigen wurden überprüft und Zustände korrigiert, wo es erforderlich war"
|
101 |
|
102 |
+
#: adrotate-functions.php:873
|
103 |
msgid "Cleanup complete"
|
104 |
msgstr "Bereinigung abgeschlossen"
|
105 |
|
106 |
+
#: adrotate-functions.php:878
|
107 |
msgid "Action prohibited"
|
108 |
msgstr "Aktion nicht zulässig"
|
109 |
|
110 |
+
#: adrotate-functions.php:882
|
111 |
msgid ""
|
112 |
"The advert was saved but has an issue which might prevent it from working "
|
113 |
"properly. Review the colored advert."
|
116 |
"möglicherweise nicht ordnungsgemäß funktionieren könnte. Überprüfen Sie die "
|
117 |
"farbige Anzeige."
|
118 |
|
119 |
+
#: adrotate-functions.php:886
|
120 |
msgid "No data found in selected time period"
|
121 |
msgstr "Keine Daten im ausgewählten Zeitraum gefunden"
|
122 |
|
123 |
+
#: adrotate-functions.php:890
|
124 |
msgid "Database can only be optimized or cleaned once every hour"
|
125 |
msgstr "Datenbank kann nur einmal pro Stunde optimiert oder gereinigt werden"
|
126 |
|
127 |
+
#: adrotate-functions.php:894
|
128 |
msgid "Form can not be (partially) empty!"
|
129 |
msgstr "Formular kann nicht (teilweise) leer sein!"
|
130 |
|
131 |
+
#: adrotate-functions.php:898
|
132 |
+
msgid "No file uploaded."
|
133 |
+
msgstr "Keine Datei hochgeladen."
|
134 |
+
|
135 |
+
#: adrotate-functions.php:902
|
136 |
msgid "No adverts found."
|
137 |
msgstr "Keine Anzeigen gefunden."
|
138 |
|
139 |
+
#: adrotate-functions.php:906
|
140 |
+
msgid "Wrong file type. No file uploaded."
|
141 |
+
msgstr "Falsche Dateityp. Keine Datei hochgeladen."
|
142 |
+
|
143 |
+
#: adrotate-functions.php:910
|
144 |
+
msgid "No file selected or file is too large."
|
145 |
+
msgstr "Keine ausgewählte Datei oder Datei ist zu groß."
|
146 |
+
|
147 |
+
#: adrotate-functions.php:914
|
148 |
+
msgid "There was an error unzipping the file. Please try again later."
|
149 |
+
msgstr ""
|
150 |
+
"Beim Entpacken der Datei ist ein Fehler aufgetreten. Versuchen Sie es später "
|
151 |
+
"erneut."
|
152 |
+
|
153 |
+
#: adrotate-functions.php:918
|
154 |
msgid ""
|
155 |
"The advert hash is not usable or is missing required data. Please copy the "
|
156 |
"hash correctly and try again."
|
158 |
"Der Anzeigenhash ist nicht verwendbar oder enthält keine erforderlichen "
|
159 |
"Daten. Kopieren Sie den Hash richtig, und versuchen Sie es erneut."
|
160 |
|
161 |
+
#: adrotate-functions.php:922
|
162 |
msgid ""
|
163 |
"The advert hash can not be used on the same site as it originated from or is "
|
164 |
"not a valid hash for importing."
|
166 |
"Der Anzeigenhash kann nicht auf derselben Website verwendet werden, von der "
|
167 |
"er stammt, oder es handelt sich nicht um einen gültigen Hash für den Import."
|
168 |
|
169 |
+
#: adrotate-functions.php:926
|
170 |
msgid "Unexpected error"
|
171 |
msgstr "Unerwarteter Fehler"
|
172 |
|
173 |
+
#: adrotate-manage-publisher.php:879
|
174 |
msgid "AdRotate Advertiser"
|
175 |
msgstr "AdRotate Advertiser"
|
176 |
|
295 |
msgid "Disable Borlabs Cache Support"
|
296 |
msgstr "Deaktivieren der Borlabs-Cache-Unterstützung"
|
297 |
|
298 |
+
#: adrotate-output.php:645
|
299 |
msgid ""
|
300 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
301 |
msgstr ""
|
302 |
"Sie haben die Borlabs Cache-Unterstützung aktiviert, aber die "
|
303 |
"Fragmentzwischenspeicherung ist nicht aktiviert!"
|
304 |
|
305 |
+
#: adrotate-output.php:645
|
306 |
msgid "Enable Fragment Caching"
|
307 |
msgstr "Aktivieren der Fragmentzwischenspeicherung"
|
308 |
|
309 |
+
#: adrotate-output.php:652
|
310 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
311 |
msgstr ""
|
312 |
"Ihre AdRotate Banner-Ordner ist nicht beschreibbar ist oder nicht vorhanden."
|
313 |
|
314 |
+
#: adrotate-output.php:652
|
315 |
msgid "Set up your banner folder"
|
316 |
msgstr "Einrichten des Bannerordners"
|
317 |
|
318 |
+
#: adrotate-output.php:655
|
319 |
msgid ""
|
320 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
321 |
"can delete this plugin after AdRotate Pro is activated."
|
323 |
"Sie haben AdRotate Professional installiert. Bitte wechseln Sie zu AdRotate "
|
324 |
"Pro! Sie können dieses Plugin löschen, nachdem AdRotate Pro aktiviert wurde."
|
325 |
|
326 |
+
#: adrotate-output.php:655
|
327 |
msgid "Switch plugins"
|
328 |
msgstr "Wechseln von Plugins"
|
329 |
|
330 |
+
#: adrotate-output.php:658
|
331 |
msgid ""
|
332 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
333 |
"installed twice or your current installation has the wrong folder name. "
|
337 |
"Plugin zweimal installiert oder Ihre aktuelle Installation hat den falschen "
|
338 |
"Ordnernamen. Bitte installieren Sie das Plugin richtig!"
|
339 |
|
340 |
+
#: adrotate-output.php:658
|
341 |
msgid "Installation instructions"
|
342 |
msgstr "Installationsanweisungen"
|
343 |
|
344 |
+
#: adrotate-output.php:734
|
345 |
msgid "your attention:"
|
346 |
msgstr "Ihre Aufmerksamkeit:"
|
347 |
|
348 |
+
#: adrotate-output.php:765
|
349 |
msgid ""
|
350 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
351 |
"menu. If you need help getting started take a look at the"
|
354 |
"AdRotate zu tun hat, befindet sich in diesem Menü. Wenn Sie Hilfe bei den "
|
355 |
"ersten"
|
356 |
|
357 |
+
#: adrotate-output.php:765
|
358 |
msgid "manuals"
|
359 |
msgstr "Handbücher"
|
360 |
|
361 |
+
#: adrotate-output.php:765
|
362 |
msgid "and"
|
363 |
msgstr "und"
|
364 |
|
365 |
+
#: adrotate-output.php:765
|
366 |
msgid "forums"
|
367 |
msgstr "Forum"
|
368 |
|
369 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
370 |
msgid "Post Tweet"
|
371 |
msgstr "Tweet posten"
|
372 |
|
373 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
374 |
msgid "Share on Facebook"
|
375 |
msgstr "Auf Facebook teilen"
|
376 |
|
377 |
+
#: adrotate-output.php:820
|
378 |
msgid "Write review on wordpress.org"
|
379 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
380 |
|
381 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
382 |
msgid "Thank you very much for your help and support!"
|
383 |
msgstr "Vielen Dank für Ihre Hilfe und Unterstützung!"
|
384 |
|
385 |
+
#: adrotate-output.php:851
|
386 |
msgid "Need help fast? Or do you have a question?"
|
387 |
msgstr "Benötigen Sie schnell Hilfe? Oder haben Sie eine Frage?"
|
388 |
|
389 |
+
#: adrotate-output.php:852
|
390 |
msgid "Help AdRotate Grow"
|
391 |
msgstr "Hilf mit, damit AdRotate sich weiter entwickelt"
|
392 |
|
393 |
+
#: adrotate-output.php:853
|
394 |
msgid "Get more features with AdRotate Pro"
|
395 |
msgstr "Holen Sie sich mehr Funktionen mit AdRotate Pro"
|
396 |
|
397 |
+
#: adrotate-output.php:859
|
398 |
msgid ""
|
399 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
400 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
405 |
"Normalerweise beantworte ich Fragen noch am selben Tag, oft mit einer Lösung "
|
406 |
"in der ersten Antwort."
|
407 |
|
408 |
+
#: adrotate-output.php:860
|
409 |
msgid "AdRotate Manuals"
|
410 |
msgstr "AdRotate-Handbücher"
|
411 |
|
412 |
+
#: adrotate-output.php:860
|
413 |
msgid "Support Forums"
|
414 |
msgstr "Support-Foren"
|
415 |
|
416 |
+
#: adrotate-output.php:861
|
417 |
msgid ""
|
418 |
"When posting on the forum, please include a brief description of the "
|
419 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
426 |
"zusätzlicher Informationen hilft immer, eine bessere Antwort oder Beratung "
|
427 |
"zu erhalten."
|
428 |
|
429 |
+
#: adrotate-output.php:863
|
430 |
msgid ""
|
431 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
432 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
439 |
"AdRotate in sozialen Medien kostet Sie nichts, aber dies ist sehr hilfreich, "
|
440 |
"da die Werbung dazu beiträgt, die zukünftige Entwicklung sicherzustellen."
|
441 |
|
442 |
+
#: adrotate-output.php:864
|
443 |
msgid "Write review on WordPress.org"
|
444 |
msgstr "Schreiben Sie eine Bewertung über WordPress.org"
|
445 |
|
446 |
+
#: adrotate-output.php:867
|
447 |
msgid ""
|
448 |
"AdRotate Professional has a lot more functions for even better advertising "
|
449 |
"management. Check out the feature comparison tab on any of the product pages "
|
454 |
"einer der Produktseiten an, um zu sehen, was AdRotate Pro für Sie zu bieten "
|
455 |
"hat!"
|
456 |
|
457 |
+
#: adrotate-output.php:867
|
458 |
msgid "Compare Licenses"
|
459 |
msgstr "Lizenzen vergleichen"
|
460 |
|
461 |
+
#: adrotate-output.php:868
|
462 |
msgid "Single License"
|
463 |
msgstr "Einzellizenz"
|
464 |
|
465 |
+
#: adrotate-output.php:868
|
466 |
msgid "Use on ONE WordPress installation."
|
467 |
msgstr "Für eine Wordpress-Installation."
|
468 |
|
469 |
+
#: adrotate-output.php:868 adrotate-output.php:869
|
470 |
msgid "Buy now"
|
471 |
msgstr "Jetzt kaufen"
|
472 |
|
473 |
+
#: adrotate-output.php:869
|
474 |
msgid "Multi License"
|
475 |
msgstr "Multi-Lizenz"
|
476 |
|
477 |
+
#: adrotate-output.php:869
|
478 |
msgid "Use on up to FIVE WordPress installations."
|
479 |
msgstr "Für bis zu fünf Wordpress-Installationen."
|
480 |
|
979 |
|
980 |
#: dashboard/publisher/adverts-edit.php:59
|
981 |
msgid ""
|
982 |
+
"There is a problem saving the image. Please re-select your image and re-save "
|
983 |
+
"the advert!"
|
984 |
msgstr ""
|
985 |
+
"Es gibt ein Problem, das Bild zu speichern. Bitte setzen Sie das Bild zurück "
|
986 |
+
"und speichern Sie die Anzeige erneut!"
|
987 |
|
988 |
#: dashboard/publisher/adverts-edit.php:62
|
989 |
msgid ""
|
990 |
+
"This kind of advert can not have statistics enabled in AdRotate. Separate "
|
991 |
+
"impression counting is available in AdRotate Pro."
|
992 |
msgstr ""
|
993 |
"Für diese Art von Werbung können statistiken in AdRotate nicht aktiviert "
|
994 |
"sein. Die Impressionszählung ist in AdRotate Pro verfügbar."
|
2440 |
msgid "user-agents"
|
2441 |
msgstr "Benutzer-agents"
|
2442 |
|
2443 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:47
|
2444 |
+
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2445 |
+
#: dashboard/settings/statistics.php:85
|
2446 |
msgid "Update Options"
|
2447 |
msgstr "Einstellungen aktualisieren"
|
2448 |
|
3940 |
#~ "könnten, dass sie ordnungsgemäß funktioniert. Kontaktieren Sie die "
|
3941 |
#~ "Mitarbeiter."
|
3942 |
|
|
|
|
|
|
|
3943 |
#~ msgid "The file could not be read."
|
3944 |
#~ msgstr "Die Datei konnte nicht gelesen werden."
|
3945 |
|
3946 |
#~ msgid "Wrong file type."
|
3947 |
#~ msgstr "Falsche Dateityp."
|
3948 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3949 |
#~ msgid "Invalid request"
|
3950 |
#~ msgstr "Ungültige Anfrage"
|
3951 |
|
language/adrotate-fr_FR.mo
CHANGED
Binary file
|
language/adrotate-fr_FR.po
CHANGED
@@ -2,46 +2,46 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Annonce enregistré"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Group saved"
|
26 |
msgstr "Groupe enregistré"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Bannière image sauvegardée"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Annonce(s) supprimée"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Groupe supprimé"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Actif(s) supprimé"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
@@ -49,31 +49,31 @@ msgstr ""
|
|
49 |
"Quelque chose s’est mal passé en supprimant le fichier ou le dossier. "
|
50 |
"Assurez-vous que vos autorisations sont en ordre."
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Réinitialisation des statistiques publicitaires"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Annonce(s) renouvellée"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Annonce(s) désactivée"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Annonce(s) activée"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Groupe y compris les annonces en elle supprimé"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Export created"
|
74 |
msgstr "Export créé"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -82,31 +82,31 @@ msgstr ""
|
|
82 |
"annonce ci-dessous. N’oubliez pas de vérifier tous les paramètres et de les "
|
83 |
"planifier."
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Paramètres sauvegardés"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Base de données optimisée"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Base de données réparée"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Annonces évaluées et statuts corrigés au besoin"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Nettoyage complet"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Action interdite"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
@@ -114,24 +114,42 @@ msgstr ""
|
|
114 |
"L’annonce a été enregistrée, mais a un problème qui pourrait l’empêcher de "
|
115 |
"fonctionner correctement. Passez en revue l’annonce colorée."
|
116 |
|
117 |
-
#: adrotate-functions.php:
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr ""
|
124 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
125 |
|
126 |
-
#: adrotate-functions.php:
|
127 |
msgid "Form can not be (partially) empty!"
|
128 |
msgstr "Forme ne peut pas être (partiellement) vide !"
|
129 |
|
130 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
131 |
msgid "No adverts found."
|
132 |
msgstr "Aucune annonce trouvée."
|
133 |
|
134 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid ""
|
136 |
"The advert hash is not usable or is missing required data. Please copy the "
|
137 |
"hash correctly and try again."
|
@@ -139,7 +157,7 @@ msgstr ""
|
|
139 |
"Le hachage de l’annonce n’est pas utilisable ou manque les données requises. "
|
140 |
"S’il vous plaît copier le hachage correctement et essayer à nouveau."
|
141 |
|
142 |
-
#: adrotate-functions.php:
|
143 |
msgid ""
|
144 |
"The advert hash can not be used on the same site as it originated from or is "
|
145 |
"not a valid hash for importing."
|
@@ -147,11 +165,11 @@ msgstr ""
|
|
147 |
"Le hachage de l’annonce ne peut pas être utilisé sur le même site qu’il "
|
148 |
"provient ou n’est pas un hachage valide pour l’importation."
|
149 |
|
150 |
-
#: adrotate-functions.php:
|
151 |
msgid "Unexpected error"
|
152 |
msgstr "Erreur inattendue"
|
153 |
|
154 |
-
#: adrotate-manage-publisher.php:
|
155 |
msgid "AdRotate Advertiser"
|
156 |
msgstr "AdRotate annonceur"
|
157 |
|
@@ -276,28 +294,28 @@ msgstr ""
|
|
276 |
msgid "Disable Borlabs Cache Support"
|
277 |
msgstr "Désactiver borlabs Cache Support"
|
278 |
|
279 |
-
#: adrotate-output.php:
|
280 |
msgid ""
|
281 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
282 |
msgstr ""
|
283 |
"Vous avez activé le support Borlabs Cache mais la mise en cache Fragment "
|
284 |
"n’est pas activée !"
|
285 |
|
286 |
-
#: adrotate-output.php:
|
287 |
msgid "Enable Fragment Caching"
|
288 |
msgstr "Permettre aux annonceurs"
|
289 |
|
290 |
-
#: adrotate-output.php:
|
291 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
292 |
msgstr ""
|
293 |
"Votre dossier AdRotate bannière n’est pas accessible en écriture ou n’existe "
|
294 |
"pas."
|
295 |
|
296 |
-
#: adrotate-output.php:
|
297 |
msgid "Set up your banner folder"
|
298 |
msgstr "Configurez votre dossier de bannière"
|
299 |
|
300 |
-
#: adrotate-output.php:
|
301 |
msgid ""
|
302 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
303 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -305,11 +323,11 @@ msgstr ""
|
|
305 |
"Vous avez installé AdRotate Professional. S’il vous plaît passer à AdRotate "
|
306 |
"Pro! Vous pouvez supprimer ce plugin après L’activation d’AdRotate Pro."
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
msgid "Switch plugins"
|
310 |
msgstr "Switch plugins"
|
311 |
|
312 |
-
#: adrotate-output.php:
|
313 |
msgid ""
|
314 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
315 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -319,15 +337,15 @@ msgstr ""
|
|
319 |
"est installé deux fois, soit votre installation actuelle a le mauvais nom de "
|
320 |
"dossier. S’il vous plaît installer le plugin correctement!"
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
msgid "Installation instructions"
|
324 |
msgstr "Instructions d’installation"
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
msgid "your attention:"
|
328 |
msgstr "votre attention:"
|
329 |
|
330 |
-
#: adrotate-output.php:
|
331 |
msgid ""
|
332 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
333 |
"menu. If you need help getting started take a look at the"
|
@@ -335,47 +353,47 @@ msgstr ""
|
|
335 |
"Merci d’avoir choisi AdRotate. Tout ce qui concerne AdRotate est dans ce "
|
336 |
"menu. Si vous avez besoin d’aide pour commencer, jetez un coup d’œil à la"
|
337 |
|
338 |
-
#: adrotate-output.php:
|
339 |
msgid "manuals"
|
340 |
msgstr "manuels"
|
341 |
|
342 |
-
#: adrotate-output.php:
|
343 |
msgid "and"
|
344 |
msgstr "et"
|
345 |
|
346 |
-
#: adrotate-output.php:
|
347 |
msgid "forums"
|
348 |
msgstr "forums"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
msgid "Post Tweet"
|
352 |
msgstr "Publier un tweet"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "Share on Facebook"
|
356 |
msgstr "Partager sur Facebook"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
359 |
msgid "Write review on wordpress.org"
|
360 |
msgstr "Écrire un avis sur WordPress.org"
|
361 |
|
362 |
-
#: adrotate-output.php:
|
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:
|
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:
|
371 |
msgid "Help AdRotate Grow"
|
372 |
msgstr "AdRotate Pro"
|
373 |
|
374 |
-
#: adrotate-output.php:
|
375 |
msgid "Get more features with AdRotate Pro"
|
376 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
377 |
|
378 |
-
#: adrotate-output.php:
|
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,15 +404,15 @@ msgstr ""
|
|
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:
|
390 |
msgid "AdRotate Manuals"
|
391 |
msgstr "Manuels AdRotate"
|
392 |
|
393 |
-
#: adrotate-output.php:
|
394 |
msgid "Support Forums"
|
395 |
msgstr "Forums de support"
|
396 |
|
397 |
-
#: adrotate-output.php:
|
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,7 +425,7 @@ msgstr ""
|
|
407 |
"supplémentaires aide toujours à obtenir une meilleure réponse ou un meilleur "
|
408 |
"conseil."
|
409 |
|
410 |
-
#: adrotate-output.php:
|
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,11 +438,11 @@ msgstr ""
|
|
420 |
"le faire est très utile en tant que promotion qui aide à assurer le "
|
421 |
"développement futur."
|
422 |
|
423 |
-
#: adrotate-output.php:
|
424 |
msgid "Write review on WordPress.org"
|
425 |
msgstr "Écrire un avis sur WordPress.org"
|
426 |
|
427 |
-
#: adrotate-output.php:
|
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,27 +453,27 @@ msgstr ""
|
|
435 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
436 |
"vous!"
|
437 |
|
438 |
-
#: adrotate-output.php:
|
439 |
msgid "Compare Licenses"
|
440 |
msgstr "Comparer les licences"
|
441 |
|
442 |
-
#: adrotate-output.php:
|
443 |
msgid "Single License"
|
444 |
msgstr "Licence unique"
|
445 |
|
446 |
-
#: adrotate-output.php:
|
447 |
msgid "Use on ONE WordPress installation."
|
448 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
449 |
|
450 |
-
#: adrotate-output.php:
|
451 |
msgid "Buy now"
|
452 |
msgstr "Acheter maintenant"
|
453 |
|
454 |
-
#: adrotate-output.php:
|
455 |
msgid "Multi License"
|
456 |
msgstr "Licence Multiple"
|
457 |
|
458 |
-
#: adrotate-output.php:
|
459 |
msgid "Use on up to FIVE WordPress installations."
|
460 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
461 |
|
@@ -964,16 +982,16 @@ msgstr ""
|
|
964 |
|
965 |
#: dashboard/publisher/adverts-edit.php:59
|
966 |
msgid ""
|
967 |
-
"There is a problem saving the image. Please re-
|
968 |
-
"the
|
969 |
msgstr ""
|
970 |
"Il y a un problème à sauver l’image. Veuillez réinitialiser votre image et "
|
971 |
"sauvegarder l’annonce !"
|
972 |
|
973 |
#: dashboard/publisher/adverts-edit.php:62
|
974 |
msgid ""
|
975 |
-
"This kind of advert can not have statistics enabled in AdRotate.
|
976 |
-
"counting is available in AdRotate Pro."
|
977 |
msgstr ""
|
978 |
"Ce type de publicité ne peut pas avoir de statistiques activées dans "
|
979 |
"AdRotate. Le comptage des impressions est disponible dans AdRotate Pro."
|
@@ -2429,9 +2447,9 @@ msgstr "En savoir plus sur"
|
|
2429 |
msgid "user-agents"
|
2430 |
msgstr "user-agents"
|
2431 |
|
2432 |
-
#: dashboard/settings/general.php:83 dashboard/settings/
|
2433 |
-
#: dashboard/settings/
|
2434 |
-
#: dashboard/settings/
|
2435 |
msgid "Update Options"
|
2436 |
msgstr "Mettre à jour les options"
|
2437 |
|
@@ -3897,9 +3915,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
|
|
3897 |
#~ "L'annonce a été sauvé, mais a un problème pourrait l'empêcher de "
|
3898 |
#~ "fonctionner correctement. Veuillez nous contacter."
|
3899 |
|
3900 |
-
#~ msgid "No file uploaded."
|
3901 |
-
#~ msgstr "Pas de fichier téléchargé."
|
3902 |
-
|
3903 |
#~ msgid "The file could not be read."
|
3904 |
#~ msgstr "Impossible de lire le fichier."
|
3905 |
|
@@ -3907,18 +3922,6 @@ msgstr "Premium Support est disponible dans AdRotate Pro!"
|
|
3907 |
#~ msgid "Wrong file type."
|
3908 |
#~ msgstr "Mauvais type de fichier."
|
3909 |
|
3910 |
-
#~ msgid "Wrong file type. No file uploaded."
|
3911 |
-
#~ msgstr "Type de fichier incorrect. Aucun fichier ne téléchargé."
|
3912 |
-
|
3913 |
-
#~ msgid "File is too large."
|
3914 |
-
#~ msgstr "Ce fichier est trop volumineux."
|
3915 |
-
|
3916 |
-
#, fuzzy
|
3917 |
-
#~ msgid "There was an error unzipping the file. Please try again later."
|
3918 |
-
#~ msgstr ""
|
3919 |
-
#~ "Il y a eu une erreur qui a décompressé le fichier. S’il vous plaît "
|
3920 |
-
#~ "essayer à nouveau plus tard."
|
3921 |
-
|
3922 |
#~ msgid "Invalid request"
|
3923 |
#~ msgstr "Requête invalide"
|
3924 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-04-07 16:26-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-04-07 16:26-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: fr\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 3.0.1\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Annonce enregistré"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Group saved"
|
26 |
msgstr "Groupe enregistré"
|
27 |
|
28 |
+
#: adrotate-functions.php:808
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Bannière image sauvegardée"
|
31 |
|
32 |
+
#: adrotate-functions.php:812
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Annonce(s) supprimée"
|
35 |
|
36 |
+
#: adrotate-functions.php:816
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Groupe supprimé"
|
39 |
|
40 |
+
#: adrotate-functions.php:820
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Actif(s) supprimé"
|
43 |
|
44 |
+
#: adrotate-functions.php:824
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
49 |
"Quelque chose s’est mal passé en supprimant le fichier ou le dossier. "
|
50 |
"Assurez-vous que vos autorisations sont en ordre."
|
51 |
|
52 |
+
#: adrotate-functions.php:828
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Réinitialisation des statistiques publicitaires"
|
55 |
|
56 |
+
#: adrotate-functions.php:832
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Annonce(s) renouvellée"
|
59 |
|
60 |
+
#: adrotate-functions.php:836
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Annonce(s) désactivée"
|
63 |
|
64 |
+
#: adrotate-functions.php:840
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Annonce(s) activée"
|
67 |
|
68 |
+
#: adrotate-functions.php:844
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Groupe y compris les annonces en elle supprimé"
|
71 |
|
72 |
+
#: adrotate-functions.php:848
|
73 |
msgid "Export created"
|
74 |
msgstr "Export créé"
|
75 |
|
76 |
+
#: adrotate-functions.php:852
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
82 |
"annonce ci-dessous. N’oubliez pas de vérifier tous les paramètres et de les "
|
83 |
"planifier."
|
84 |
|
85 |
+
#: adrotate-functions.php:857
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Paramètres sauvegardés"
|
88 |
|
89 |
+
#: adrotate-functions.php:861
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Base de données optimisée"
|
92 |
|
93 |
+
#: adrotate-functions.php:865
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Base de données réparée"
|
96 |
|
97 |
+
#: adrotate-functions.php:869
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Annonces évaluées et statuts corrigés au besoin"
|
100 |
|
101 |
+
#: adrotate-functions.php:873
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Nettoyage complet"
|
104 |
|
105 |
+
#: adrotate-functions.php:878
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Action interdite"
|
108 |
|
109 |
+
#: adrotate-functions.php:882
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
114 |
"L’annonce a été enregistrée, mais a un problème qui pourrait l’empêcher de "
|
115 |
"fonctionner correctement. Passez en revue l’annonce colorée."
|
116 |
|
117 |
+
#: adrotate-functions.php:886
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
|
120 |
|
121 |
+
#: adrotate-functions.php:890
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr ""
|
124 |
"La base de données peut être optimisée ou nettoyée une fois toutes les heures"
|
125 |
|
126 |
+
#: adrotate-functions.php:894
|
127 |
msgid "Form can not be (partially) empty!"
|
128 |
msgstr "Forme ne peut pas être (partiellement) vide !"
|
129 |
|
130 |
+
#: adrotate-functions.php:898
|
131 |
+
msgid "No file uploaded."
|
132 |
+
msgstr "Pas de fichier téléchargé."
|
133 |
+
|
134 |
+
#: adrotate-functions.php:902
|
135 |
msgid "No adverts found."
|
136 |
msgstr "Aucune annonce trouvée."
|
137 |
|
138 |
+
#: adrotate-functions.php:906
|
139 |
+
msgid "Wrong file type. No file uploaded."
|
140 |
+
msgstr "Type de fichier incorrect. Aucun fichier ne téléchargé."
|
141 |
+
|
142 |
+
#: adrotate-functions.php:910
|
143 |
+
msgid "No file selected or file is too large."
|
144 |
+
msgstr "Aucun fichier sélectionné ou fichier n’est trop grand."
|
145 |
+
|
146 |
+
#: adrotate-functions.php:914
|
147 |
+
msgid "There was an error unzipping the file. Please try again later."
|
148 |
+
msgstr ""
|
149 |
+
"Il y a eu une erreur qui a décompressé le fichier. S’il vous plaît essayer à "
|
150 |
+
"nouveau plus tard."
|
151 |
+
|
152 |
+
#: adrotate-functions.php:918
|
153 |
msgid ""
|
154 |
"The advert hash is not usable or is missing required data. Please copy the "
|
155 |
"hash correctly and try again."
|
157 |
"Le hachage de l’annonce n’est pas utilisable ou manque les données requises. "
|
158 |
"S’il vous plaît copier le hachage correctement et essayer à nouveau."
|
159 |
|
160 |
+
#: adrotate-functions.php:922
|
161 |
msgid ""
|
162 |
"The advert hash can not be used on the same site as it originated from or is "
|
163 |
"not a valid hash for importing."
|
165 |
"Le hachage de l’annonce ne peut pas être utilisé sur le même site qu’il "
|
166 |
"provient ou n’est pas un hachage valide pour l’importation."
|
167 |
|
168 |
+
#: adrotate-functions.php:926
|
169 |
msgid "Unexpected error"
|
170 |
msgstr "Erreur inattendue"
|
171 |
|
172 |
+
#: adrotate-manage-publisher.php:879
|
173 |
msgid "AdRotate Advertiser"
|
174 |
msgstr "AdRotate annonceur"
|
175 |
|
294 |
msgid "Disable Borlabs Cache Support"
|
295 |
msgstr "Désactiver borlabs Cache Support"
|
296 |
|
297 |
+
#: adrotate-output.php:645
|
298 |
msgid ""
|
299 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
300 |
msgstr ""
|
301 |
"Vous avez activé le support Borlabs Cache mais la mise en cache Fragment "
|
302 |
"n’est pas activée !"
|
303 |
|
304 |
+
#: adrotate-output.php:645
|
305 |
msgid "Enable Fragment Caching"
|
306 |
msgstr "Permettre aux annonceurs"
|
307 |
|
308 |
+
#: adrotate-output.php:652
|
309 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
310 |
msgstr ""
|
311 |
"Votre dossier AdRotate bannière n’est pas accessible en écriture ou n’existe "
|
312 |
"pas."
|
313 |
|
314 |
+
#: adrotate-output.php:652
|
315 |
msgid "Set up your banner folder"
|
316 |
msgstr "Configurez votre dossier de bannière"
|
317 |
|
318 |
+
#: adrotate-output.php:655
|
319 |
msgid ""
|
320 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
321 |
"can delete this plugin after AdRotate Pro is activated."
|
323 |
"Vous avez installé AdRotate Professional. S’il vous plaît passer à AdRotate "
|
324 |
"Pro! Vous pouvez supprimer ce plugin après L’activation d’AdRotate Pro."
|
325 |
|
326 |
+
#: adrotate-output.php:655
|
327 |
msgid "Switch plugins"
|
328 |
msgstr "Switch plugins"
|
329 |
|
330 |
+
#: adrotate-output.php:658
|
331 |
msgid ""
|
332 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
333 |
"installed twice or your current installation has the wrong folder name. "
|
337 |
"est installé deux fois, soit votre installation actuelle a le mauvais nom de "
|
338 |
"dossier. S’il vous plaît installer le plugin correctement!"
|
339 |
|
340 |
+
#: adrotate-output.php:658
|
341 |
msgid "Installation instructions"
|
342 |
msgstr "Instructions d’installation"
|
343 |
|
344 |
+
#: adrotate-output.php:734
|
345 |
msgid "your attention:"
|
346 |
msgstr "votre attention:"
|
347 |
|
348 |
+
#: adrotate-output.php:765
|
349 |
msgid ""
|
350 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
351 |
"menu. If you need help getting started take a look at the"
|
353 |
"Merci d’avoir choisi AdRotate. Tout ce qui concerne AdRotate est dans ce "
|
354 |
"menu. Si vous avez besoin d’aide pour commencer, jetez un coup d’œil à la"
|
355 |
|
356 |
+
#: adrotate-output.php:765
|
357 |
msgid "manuals"
|
358 |
msgstr "manuels"
|
359 |
|
360 |
+
#: adrotate-output.php:765
|
361 |
msgid "and"
|
362 |
msgstr "et"
|
363 |
|
364 |
+
#: adrotate-output.php:765
|
365 |
msgid "forums"
|
366 |
msgstr "forums"
|
367 |
|
368 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
369 |
msgid "Post Tweet"
|
370 |
msgstr "Publier un tweet"
|
371 |
|
372 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
373 |
msgid "Share on Facebook"
|
374 |
msgstr "Partager sur Facebook"
|
375 |
|
376 |
+
#: adrotate-output.php:820
|
377 |
msgid "Write review on wordpress.org"
|
378 |
msgstr "Écrire un avis sur WordPress.org"
|
379 |
|
380 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
381 |
msgid "Thank you very much for your help and support!"
|
382 |
msgstr "Merci beaucoup pour votre aide et votre soutien!"
|
383 |
|
384 |
+
#: adrotate-output.php:851
|
385 |
msgid "Need help fast? Or do you have a question?"
|
386 |
msgstr "Besoin d’aide rapidement ? Ou avez-vous une question?"
|
387 |
|
388 |
+
#: adrotate-output.php:852
|
389 |
msgid "Help AdRotate Grow"
|
390 |
msgstr "AdRotate Pro"
|
391 |
|
392 |
+
#: adrotate-output.php:853
|
393 |
msgid "Get more features with AdRotate Pro"
|
394 |
msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
|
395 |
|
396 |
+
#: adrotate-output.php:859
|
397 |
msgid ""
|
398 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
399 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
404 |
"d’assistance AdRotate. Habituellement, je réponds aux questions le jour "
|
405 |
"même, souvent avec une solution dans la première réponse."
|
406 |
|
407 |
+
#: adrotate-output.php:860
|
408 |
msgid "AdRotate Manuals"
|
409 |
msgstr "Manuels AdRotate"
|
410 |
|
411 |
+
#: adrotate-output.php:860
|
412 |
msgid "Support Forums"
|
413 |
msgstr "Forums de support"
|
414 |
|
415 |
+
#: adrotate-output.php:861
|
416 |
msgid ""
|
417 |
"When posting on the forum, please include a brief description of the "
|
418 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
425 |
"supplémentaires aide toujours à obtenir une meilleure réponse ou un meilleur "
|
426 |
"conseil."
|
427 |
|
428 |
+
#: adrotate-output.php:863
|
429 |
msgid ""
|
430 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
431 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
438 |
"le faire est très utile en tant que promotion qui aide à assurer le "
|
439 |
"développement futur."
|
440 |
|
441 |
+
#: adrotate-output.php:864
|
442 |
msgid "Write review on WordPress.org"
|
443 |
msgstr "Écrire un avis sur WordPress.org"
|
444 |
|
445 |
+
#: adrotate-output.php:867
|
446 |
msgid ""
|
447 |
"AdRotate Professional has a lot more functions for even better advertising "
|
448 |
"management. Check out the feature comparison tab on any of the product pages "
|
453 |
"sur l’une des pages de produits pour voir ce qu’AdRotate Pro a à offrir pour "
|
454 |
"vous!"
|
455 |
|
456 |
+
#: adrotate-output.php:867
|
457 |
msgid "Compare Licenses"
|
458 |
msgstr "Comparer les licences"
|
459 |
|
460 |
+
#: adrotate-output.php:868
|
461 |
msgid "Single License"
|
462 |
msgstr "Licence unique"
|
463 |
|
464 |
+
#: adrotate-output.php:868
|
465 |
msgid "Use on ONE WordPress installation."
|
466 |
msgstr "Utilisation sur l’installation ONE WordPress."
|
467 |
|
468 |
+
#: adrotate-output.php:868 adrotate-output.php:869
|
469 |
msgid "Buy now"
|
470 |
msgstr "Acheter maintenant"
|
471 |
|
472 |
+
#: adrotate-output.php:869
|
473 |
msgid "Multi License"
|
474 |
msgstr "Licence Multiple"
|
475 |
|
476 |
+
#: adrotate-output.php:869
|
477 |
msgid "Use on up to FIVE WordPress installations."
|
478 |
msgstr "Utiliser sur jusqu’à CINQ installations WordPress."
|
479 |
|
982 |
|
983 |
#: dashboard/publisher/adverts-edit.php:59
|
984 |
msgid ""
|
985 |
+
"There is a problem saving the image. Please re-select your image and re-save "
|
986 |
+
"the advert!"
|
987 |
msgstr ""
|
988 |
"Il y a un problème à sauver l’image. Veuillez réinitialiser votre image et "
|
989 |
"sauvegarder l’annonce !"
|
990 |
|
991 |
#: dashboard/publisher/adverts-edit.php:62
|
992 |
msgid ""
|
993 |
+
"This kind of advert can not have statistics enabled in AdRotate. Separate "
|
994 |
+
"impression counting is available in AdRotate Pro."
|
995 |
msgstr ""
|
996 |
"Ce type de publicité ne peut pas avoir de statistiques activées dans "
|
997 |
"AdRotate. Le comptage des impressions est disponible dans AdRotate Pro."
|
2447 |
msgid "user-agents"
|
2448 |
msgstr "user-agents"
|
2449 |
|
2450 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:47
|
2451 |
+
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2452 |
+
#: dashboard/settings/statistics.php:85
|
2453 |
msgid "Update Options"
|
2454 |
msgstr "Mettre à jour les options"
|
2455 |
|
3915 |
#~ "L'annonce a été sauvé, mais a un problème pourrait l'empêcher de "
|
3916 |
#~ "fonctionner correctement. Veuillez nous contacter."
|
3917 |
|
|
|
|
|
|
|
3918 |
#~ msgid "The file could not be read."
|
3919 |
#~ msgstr "Impossible de lire le fichier."
|
3920 |
|
3922 |
#~ msgid "Wrong file type."
|
3923 |
#~ msgstr "Mauvais type de fichier."
|
3924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3925 |
#~ msgid "Invalid request"
|
3926 |
#~ msgstr "Requête invalide"
|
3927 |
|
language/adrotate-it_IT.mo
CHANGED
Binary file
|
language/adrotate-it_IT.po
CHANGED
@@ -2,46 +2,46 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Annuncio salvato"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Group saved"
|
26 |
msgstr "Gruppo salvato"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Immagine banner salvata"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Annunci eliminati"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Gruppo eliminato"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Asset eliminati"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
@@ -49,31 +49,31 @@ msgstr ""
|
|
49 |
"Si è verificato un problema durante l'eliminazione del file o della "
|
50 |
"cartella. Assicurati che le tue autorizzazioni siano in ordine."
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Reimpostazione delle statistiche degli annunci"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Annunci rinnovati"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Annunci disattivati"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Annunci attivati"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Gruppo che include le inserzioni in esso eliminate"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Export created"
|
74 |
msgstr "Esportazione creata"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -82,31 +82,31 @@ msgstr ""
|
|
82 |
"inserzione qui sotto. Non dimenticare di controllare tutte le impostazioni e "
|
83 |
"pianificare l'annuncio."
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Impostazioni salvate"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Database ottimizzato"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Database riparato"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Le inserzioni valutate e gli stati sono stati corretti ove richiesto"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Pulitura completata"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Azione vietata"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
@@ -114,23 +114,41 @@ msgstr ""
|
|
114 |
"L'annuncio è stato salvato ma ha un problema che potrebbe impedirgli di "
|
115 |
"funzionare correttamente. Rivedi la pubblicità colorata."
|
116 |
|
117 |
-
#: adrotate-functions.php:
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Nessun dato trovato nel periodo di tempo selezionato"
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr "Il database può essere ottimizzato o pulito solo una volta ogni ora"
|
124 |
|
125 |
-
#: adrotate-functions.php:
|
126 |
msgid "Form can not be (partially) empty!"
|
127 |
msgstr "Modulo non può essere (parzialmente) vuoto!"
|
128 |
|
129 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
130 |
msgid "No adverts found."
|
131 |
msgstr "Nessuna pubblicità trovata."
|
132 |
|
133 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid ""
|
135 |
"The advert hash is not usable or is missing required data. Please copy the "
|
136 |
"hash correctly and try again."
|
@@ -138,7 +156,7 @@ msgstr ""
|
|
138 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
139 |
"nella cache dei frammenti non è abilitata."
|
140 |
|
141 |
-
#: adrotate-functions.php:
|
142 |
msgid ""
|
143 |
"The advert hash can not be used on the same site as it originated from or is "
|
144 |
"not a valid hash for importing."
|
@@ -146,11 +164,11 @@ msgstr ""
|
|
146 |
"L'hash dell'annuncio non può essere utilizzato sullo stesso sito da cui ha "
|
147 |
"avuto origine o non è un hash valido per l'importazione."
|
148 |
|
149 |
-
#: adrotate-functions.php:
|
150 |
msgid "Unexpected error"
|
151 |
msgstr "Errore inatteso"
|
152 |
|
153 |
-
#: adrotate-manage-publisher.php:
|
154 |
msgid "AdRotate Advertiser"
|
155 |
msgstr "Inserzionista AdRotate"
|
156 |
|
@@ -274,26 +292,26 @@ msgstr ""
|
|
274 |
msgid "Disable Borlabs Cache Support"
|
275 |
msgstr "Disabilitare il supporto della Borlabs Cache"
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid ""
|
279 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
280 |
msgstr ""
|
281 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
282 |
"nella cache dei frammenti non è abilitata!"
|
283 |
|
284 |
-
#: adrotate-output.php:
|
285 |
msgid "Enable Fragment Caching"
|
286 |
msgstr "Abilitare la Fragment Caching"
|
287 |
|
288 |
-
#: adrotate-output.php:
|
289 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
290 |
msgstr "La tua cartella AdRotate Banner non è scrivibile o non esiste."
|
291 |
|
292 |
-
#: adrotate-output.php:
|
293 |
msgid "Set up your banner folder"
|
294 |
msgstr "Configurare la banner folder"
|
295 |
|
296 |
-
#: adrotate-output.php:
|
297 |
msgid ""
|
298 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
299 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -301,11 +319,11 @@ msgstr ""
|
|
301 |
"AdRotate Professional è installato. Si prega di passare ad AdRotate Pro! "
|
302 |
"Puoi eliminare questo plugin dopo l'attivazione di AdRotate Pro."
|
303 |
|
304 |
-
#: adrotate-output.php:
|
305 |
msgid "Switch plugins"
|
306 |
msgstr "Passare da un plug-in all'altro"
|
307 |
|
308 |
-
#: adrotate-output.php:
|
309 |
msgid ""
|
310 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
311 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -315,15 +333,15 @@ msgstr ""
|
|
315 |
"installato due volte o l'installazione corrente ha il nome della cartella "
|
316 |
"errata. Si prega di installare il plugin correttamente!"
|
317 |
|
318 |
-
#: adrotate-output.php:
|
319 |
msgid "Installation instructions"
|
320 |
msgstr "Istruzioni per l'installazione"
|
321 |
|
322 |
-
#: adrotate-output.php:
|
323 |
msgid "your attention:"
|
324 |
msgstr "la vostra attenzione:"
|
325 |
|
326 |
-
#: adrotate-output.php:
|
327 |
msgid ""
|
328 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
329 |
"menu. If you need help getting started take a look at the"
|
@@ -331,47 +349,47 @@ msgstr ""
|
|
331 |
"Grazie per avere scelto AdRotate. Tutto ciò che concerne AdRotate si trova "
|
332 |
"in questo menù. Se hai bisogno di aiuto per cominciare da uno sguardo a"
|
333 |
|
334 |
-
#: adrotate-output.php:
|
335 |
msgid "manuals"
|
336 |
msgstr "manuali"
|
337 |
|
338 |
-
#: adrotate-output.php:
|
339 |
msgid "and"
|
340 |
msgstr "e"
|
341 |
|
342 |
-
#: adrotate-output.php:
|
343 |
msgid "forums"
|
344 |
msgstr "forum"
|
345 |
|
346 |
-
#: adrotate-output.php:
|
347 |
msgid "Post Tweet"
|
348 |
msgstr "Pubblica Tweet"
|
349 |
|
350 |
-
#: adrotate-output.php:
|
351 |
msgid "Share on Facebook"
|
352 |
msgstr "Condividi su Facebook"
|
353 |
|
354 |
-
#: adrotate-output.php:
|
355 |
msgid "Write review on wordpress.org"
|
356 |
msgstr "Scrivi una recensione su WordPress.org"
|
357 |
|
358 |
-
#: adrotate-output.php:
|
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:
|
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:
|
367 |
msgid "Help AdRotate Grow"
|
368 |
msgstr "Aiuta AdRotate a crescere"
|
369 |
|
370 |
-
#: adrotate-output.php:
|
371 |
msgid "Get more features with AdRotate Pro"
|
372 |
msgstr "Ottieni più funzionalità con AdRotate Pro"
|
373 |
|
374 |
-
#: adrotate-output.php:
|
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,15 +400,15 @@ msgstr ""
|
|
382 |
"solito rispondo alle domande lo stesso giorno, spesso con una soluzione "
|
383 |
"nella prima risposta."
|
384 |
|
385 |
-
#: adrotate-output.php:
|
386 |
msgid "AdRotate Manuals"
|
387 |
msgstr "Manuali AdRotate"
|
388 |
|
389 |
-
#: adrotate-output.php:
|
390 |
msgid "Support Forums"
|
391 |
msgstr "Forum di supporto"
|
392 |
|
393 |
-
#: adrotate-output.php:
|
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,7 +420,7 @@ msgstr ""
|
|
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:
|
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,11 +433,11 @@ msgstr ""
|
|
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:
|
419 |
msgid "Write review on WordPress.org"
|
420 |
msgstr "Scrivi una recensione su WordPress.org"
|
421 |
|
422 |
-
#: adrotate-output.php:
|
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,27 +448,27 @@ msgstr ""
|
|
430 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
431 |
"offrire per te!"
|
432 |
|
433 |
-
#: adrotate-output.php:
|
434 |
msgid "Compare Licenses"
|
435 |
msgstr "Confronta le licenze"
|
436 |
|
437 |
-
#: adrotate-output.php:
|
438 |
msgid "Single License"
|
439 |
msgstr "Licenza singola"
|
440 |
|
441 |
-
#: adrotate-output.php:
|
442 |
msgid "Use on ONE WordPress installation."
|
443 |
msgstr "Utilizzare su un'installazione WordPress."
|
444 |
|
445 |
-
#: adrotate-output.php:
|
446 |
msgid "Buy now"
|
447 |
msgstr "Acquista ora"
|
448 |
|
449 |
-
#: adrotate-output.php:
|
450 |
msgid "Multi License"
|
451 |
msgstr "Licenza multipla"
|
452 |
|
453 |
-
#: adrotate-output.php:
|
454 |
msgid "Use on up to FIVE WordPress installations."
|
455 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
456 |
|
@@ -955,16 +973,16 @@ msgstr ""
|
|
955 |
|
956 |
#: dashboard/publisher/adverts-edit.php:59
|
957 |
msgid ""
|
958 |
-
"There is a problem saving the image. Please re-
|
959 |
-
"the
|
960 |
msgstr ""
|
961 |
"Si è verificato un problema durante il salvataggio dell'immagine. Si prega "
|
962 |
"di ripristinare l'immagine e salvare nuovamente l'annuncio!"
|
963 |
|
964 |
#: dashboard/publisher/adverts-edit.php:62
|
965 |
msgid ""
|
966 |
-
"This kind of advert can not have statistics enabled in AdRotate.
|
967 |
-
"counting is available in AdRotate Pro."
|
968 |
msgstr ""
|
969 |
"Questo tipo di annuncio non può avere statistiche abilitate in AdRotate. Il "
|
970 |
"conteggio delle impressioni è disponibile in AdRotate Pro."
|
@@ -2423,9 +2441,9 @@ msgstr "Ulteriori informazioni su"
|
|
2423 |
msgid "user-agents"
|
2424 |
msgstr "agenti di utenti"
|
2425 |
|
2426 |
-
#: dashboard/settings/general.php:83 dashboard/settings/
|
2427 |
-
#: dashboard/settings/
|
2428 |
-
#: dashboard/settings/
|
2429 |
msgid "Update Options"
|
2430 |
msgstr "Aggiorna Opzioni"
|
2431 |
|
@@ -3886,27 +3904,12 @@ msgstr "Premium Support è disponibile in AdRotate Pro!"
|
|
3886 |
#~ "L'inserzione è stata salvata ma ha un problema che le potrebbe impedire "
|
3887 |
#~ "di funzionare a dovere. Si prega di contattare lo staff."
|
3888 |
|
3889 |
-
#~ msgid "No file uploaded."
|
3890 |
-
#~ msgstr "Nessun file scaricato."
|
3891 |
-
|
3892 |
#~ msgid "The file could not be read."
|
3893 |
#~ msgstr "Non è stato possibile leggere il file."
|
3894 |
|
3895 |
#~ msgid "Wrong file type."
|
3896 |
#~ msgstr "Tipo di file sbagliato."
|
3897 |
|
3898 |
-
#~ msgid "Wrong file type. No file uploaded."
|
3899 |
-
#~ msgstr "Tipo di file sbagliato. Nessun file è stato caricato."
|
3900 |
-
|
3901 |
-
#~ msgid "File is too large."
|
3902 |
-
#~ msgstr "Il file è troppo grande."
|
3903 |
-
|
3904 |
-
#, fuzzy
|
3905 |
-
#~ msgid "There was an error unzipping the file. Please try again later."
|
3906 |
-
#~ msgstr ""
|
3907 |
-
#~ "Si è verificato un errore durante la decompressione del file. Riprova più "
|
3908 |
-
#~ "tardi."
|
3909 |
-
|
3910 |
#~ msgid "Invalid request"
|
3911 |
#~ msgstr "Richiesta non valida"
|
3912 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-04-07 16:26-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-04-07 16:26-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 3.0.1\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Annuncio salvato"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Group saved"
|
26 |
msgstr "Gruppo salvato"
|
27 |
|
28 |
+
#: adrotate-functions.php:808
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Immagine banner salvata"
|
31 |
|
32 |
+
#: adrotate-functions.php:812
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Annunci eliminati"
|
35 |
|
36 |
+
#: adrotate-functions.php:816
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Gruppo eliminato"
|
39 |
|
40 |
+
#: adrotate-functions.php:820
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Asset eliminati"
|
43 |
|
44 |
+
#: adrotate-functions.php:824
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
49 |
"Si è verificato un problema durante l'eliminazione del file o della "
|
50 |
"cartella. Assicurati che le tue autorizzazioni siano in ordine."
|
51 |
|
52 |
+
#: adrotate-functions.php:828
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Reimpostazione delle statistiche degli annunci"
|
55 |
|
56 |
+
#: adrotate-functions.php:832
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Annunci rinnovati"
|
59 |
|
60 |
+
#: adrotate-functions.php:836
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Annunci disattivati"
|
63 |
|
64 |
+
#: adrotate-functions.php:840
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Annunci attivati"
|
67 |
|
68 |
+
#: adrotate-functions.php:844
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Gruppo che include le inserzioni in esso eliminate"
|
71 |
|
72 |
+
#: adrotate-functions.php:848
|
73 |
msgid "Export created"
|
74 |
msgstr "Esportazione creata"
|
75 |
|
76 |
+
#: adrotate-functions.php:852
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
82 |
"inserzione qui sotto. Non dimenticare di controllare tutte le impostazioni e "
|
83 |
"pianificare l'annuncio."
|
84 |
|
85 |
+
#: adrotate-functions.php:857
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Impostazioni salvate"
|
88 |
|
89 |
+
#: adrotate-functions.php:861
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Database ottimizzato"
|
92 |
|
93 |
+
#: adrotate-functions.php:865
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Database riparato"
|
96 |
|
97 |
+
#: adrotate-functions.php:869
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Le inserzioni valutate e gli stati sono stati corretti ove richiesto"
|
100 |
|
101 |
+
#: adrotate-functions.php:873
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Pulitura completata"
|
104 |
|
105 |
+
#: adrotate-functions.php:878
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Azione vietata"
|
108 |
|
109 |
+
#: adrotate-functions.php:882
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
114 |
"L'annuncio è stato salvato ma ha un problema che potrebbe impedirgli di "
|
115 |
"funzionare correttamente. Rivedi la pubblicità colorata."
|
116 |
|
117 |
+
#: adrotate-functions.php:886
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Nessun dato trovato nel periodo di tempo selezionato"
|
120 |
|
121 |
+
#: adrotate-functions.php:890
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr "Il database può essere ottimizzato o pulito solo una volta ogni ora"
|
124 |
|
125 |
+
#: adrotate-functions.php:894
|
126 |
msgid "Form can not be (partially) empty!"
|
127 |
msgstr "Modulo non può essere (parzialmente) vuoto!"
|
128 |
|
129 |
+
#: adrotate-functions.php:898
|
130 |
+
msgid "No file uploaded."
|
131 |
+
msgstr "Nessun file scaricato."
|
132 |
+
|
133 |
+
#: adrotate-functions.php:902
|
134 |
msgid "No adverts found."
|
135 |
msgstr "Nessuna pubblicità trovata."
|
136 |
|
137 |
+
#: adrotate-functions.php:906
|
138 |
+
msgid "Wrong file type. No file uploaded."
|
139 |
+
msgstr "Tipo di file sbagliato. Nessun file è stato caricato."
|
140 |
+
|
141 |
+
#: adrotate-functions.php:910
|
142 |
+
msgid "No file selected or file is too large."
|
143 |
+
msgstr "Nessun file selezionato o file troppo grande."
|
144 |
+
|
145 |
+
#: adrotate-functions.php:914
|
146 |
+
msgid "There was an error unzipping the file. Please try again later."
|
147 |
+
msgstr ""
|
148 |
+
"Si è verificato un errore durante la decompressione del file. Riprova più "
|
149 |
+
"tardi."
|
150 |
+
|
151 |
+
#: adrotate-functions.php:918
|
152 |
msgid ""
|
153 |
"The advert hash is not usable or is missing required data. Please copy the "
|
154 |
"hash correctly and try again."
|
156 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
157 |
"nella cache dei frammenti non è abilitata."
|
158 |
|
159 |
+
#: adrotate-functions.php:922
|
160 |
msgid ""
|
161 |
"The advert hash can not be used on the same site as it originated from or is "
|
162 |
"not a valid hash for importing."
|
164 |
"L'hash dell'annuncio non può essere utilizzato sullo stesso sito da cui ha "
|
165 |
"avuto origine o non è un hash valido per l'importazione."
|
166 |
|
167 |
+
#: adrotate-functions.php:926
|
168 |
msgid "Unexpected error"
|
169 |
msgstr "Errore inatteso"
|
170 |
|
171 |
+
#: adrotate-manage-publisher.php:879
|
172 |
msgid "AdRotate Advertiser"
|
173 |
msgstr "Inserzionista AdRotate"
|
174 |
|
292 |
msgid "Disable Borlabs Cache Support"
|
293 |
msgstr "Disabilitare il supporto della Borlabs Cache"
|
294 |
|
295 |
+
#: adrotate-output.php:645
|
296 |
msgid ""
|
297 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
298 |
msgstr ""
|
299 |
"È stato abilitato il supporto della cache di Borlabs, ma la memorizzazione "
|
300 |
"nella cache dei frammenti non è abilitata!"
|
301 |
|
302 |
+
#: adrotate-output.php:645
|
303 |
msgid "Enable Fragment Caching"
|
304 |
msgstr "Abilitare la Fragment Caching"
|
305 |
|
306 |
+
#: adrotate-output.php:652
|
307 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
308 |
msgstr "La tua cartella AdRotate Banner non è scrivibile o non esiste."
|
309 |
|
310 |
+
#: adrotate-output.php:652
|
311 |
msgid "Set up your banner folder"
|
312 |
msgstr "Configurare la banner folder"
|
313 |
|
314 |
+
#: adrotate-output.php:655
|
315 |
msgid ""
|
316 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
317 |
"can delete this plugin after AdRotate Pro is activated."
|
319 |
"AdRotate Professional è installato. Si prega di passare ad AdRotate Pro! "
|
320 |
"Puoi eliminare questo plugin dopo l'attivazione di AdRotate Pro."
|
321 |
|
322 |
+
#: adrotate-output.php:655
|
323 |
msgid "Switch plugins"
|
324 |
msgstr "Passare da un plug-in all'altro"
|
325 |
|
326 |
+
#: adrotate-output.php:658
|
327 |
msgid ""
|
328 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
329 |
"installed twice or your current installation has the wrong folder name. "
|
333 |
"installato due volte o l'installazione corrente ha il nome della cartella "
|
334 |
"errata. Si prega di installare il plugin correttamente!"
|
335 |
|
336 |
+
#: adrotate-output.php:658
|
337 |
msgid "Installation instructions"
|
338 |
msgstr "Istruzioni per l'installazione"
|
339 |
|
340 |
+
#: adrotate-output.php:734
|
341 |
msgid "your attention:"
|
342 |
msgstr "la vostra attenzione:"
|
343 |
|
344 |
+
#: adrotate-output.php:765
|
345 |
msgid ""
|
346 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
347 |
"menu. If you need help getting started take a look at the"
|
349 |
"Grazie per avere scelto AdRotate. Tutto ciò che concerne AdRotate si trova "
|
350 |
"in questo menù. Se hai bisogno di aiuto per cominciare da uno sguardo a"
|
351 |
|
352 |
+
#: adrotate-output.php:765
|
353 |
msgid "manuals"
|
354 |
msgstr "manuali"
|
355 |
|
356 |
+
#: adrotate-output.php:765
|
357 |
msgid "and"
|
358 |
msgstr "e"
|
359 |
|
360 |
+
#: adrotate-output.php:765
|
361 |
msgid "forums"
|
362 |
msgstr "forum"
|
363 |
|
364 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
365 |
msgid "Post Tweet"
|
366 |
msgstr "Pubblica Tweet"
|
367 |
|
368 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
369 |
msgid "Share on Facebook"
|
370 |
msgstr "Condividi su Facebook"
|
371 |
|
372 |
+
#: adrotate-output.php:820
|
373 |
msgid "Write review on wordpress.org"
|
374 |
msgstr "Scrivi una recensione su WordPress.org"
|
375 |
|
376 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
377 |
msgid "Thank you very much for your help and support!"
|
378 |
msgstr "Grazie mille per il vostro aiuto e supporto!"
|
379 |
|
380 |
+
#: adrotate-output.php:851
|
381 |
msgid "Need help fast? Or do you have a question?"
|
382 |
msgstr "Hai bisogno di aiuto in fretta? O hai una domanda?"
|
383 |
|
384 |
+
#: adrotate-output.php:852
|
385 |
msgid "Help AdRotate Grow"
|
386 |
msgstr "Aiuta AdRotate a crescere"
|
387 |
|
388 |
+
#: adrotate-output.php:853
|
389 |
msgid "Get more features with AdRotate Pro"
|
390 |
msgstr "Ottieni più funzionalità con AdRotate Pro"
|
391 |
|
392 |
+
#: adrotate-output.php:859
|
393 |
msgid ""
|
394 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
395 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
400 |
"solito rispondo alle domande lo stesso giorno, spesso con una soluzione "
|
401 |
"nella prima risposta."
|
402 |
|
403 |
+
#: adrotate-output.php:860
|
404 |
msgid "AdRotate Manuals"
|
405 |
msgstr "Manuali AdRotate"
|
406 |
|
407 |
+
#: adrotate-output.php:860
|
408 |
msgid "Support Forums"
|
409 |
msgstr "Forum di supporto"
|
410 |
|
411 |
+
#: adrotate-output.php:861
|
412 |
msgid ""
|
413 |
"When posting on the forum, please include a brief description of the "
|
414 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
420 |
"stai cercando di fare. Fornire alcune informazioni extra aiuta sempre a "
|
421 |
"ottenere una risposta o un consiglio migliore."
|
422 |
|
423 |
+
#: adrotate-output.php:863
|
424 |
msgid ""
|
425 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
426 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
433 |
"sui social media non ti costa altro che farlo è super utile come promozione "
|
434 |
"che aiuta a garantire lo sviluppo futuro."
|
435 |
|
436 |
+
#: adrotate-output.php:864
|
437 |
msgid "Write review on WordPress.org"
|
438 |
msgstr "Scrivi una recensione su WordPress.org"
|
439 |
|
440 |
+
#: adrotate-output.php:867
|
441 |
msgid ""
|
442 |
"AdRotate Professional has a lot more functions for even better advertising "
|
443 |
"management. Check out the feature comparison tab on any of the product pages "
|
448 |
"una qualsiasi delle pagine dei prodotti per vedere cosa AdRotate Pro ha da "
|
449 |
"offrire per te!"
|
450 |
|
451 |
+
#: adrotate-output.php:867
|
452 |
msgid "Compare Licenses"
|
453 |
msgstr "Confronta le licenze"
|
454 |
|
455 |
+
#: adrotate-output.php:868
|
456 |
msgid "Single License"
|
457 |
msgstr "Licenza singola"
|
458 |
|
459 |
+
#: adrotate-output.php:868
|
460 |
msgid "Use on ONE WordPress installation."
|
461 |
msgstr "Utilizzare su un'installazione WordPress."
|
462 |
|
463 |
+
#: adrotate-output.php:868 adrotate-output.php:869
|
464 |
msgid "Buy now"
|
465 |
msgstr "Acquista ora"
|
466 |
|
467 |
+
#: adrotate-output.php:869
|
468 |
msgid "Multi License"
|
469 |
msgstr "Licenza multipla"
|
470 |
|
471 |
+
#: adrotate-output.php:869
|
472 |
msgid "Use on up to FIVE WordPress installations."
|
473 |
msgstr "Utilizzare su un massimo di cinque installazioni WordPress."
|
474 |
|
973 |
|
974 |
#: dashboard/publisher/adverts-edit.php:59
|
975 |
msgid ""
|
976 |
+
"There is a problem saving the image. Please re-select your image and re-save "
|
977 |
+
"the advert!"
|
978 |
msgstr ""
|
979 |
"Si è verificato un problema durante il salvataggio dell'immagine. Si prega "
|
980 |
"di ripristinare l'immagine e salvare nuovamente l'annuncio!"
|
981 |
|
982 |
#: dashboard/publisher/adverts-edit.php:62
|
983 |
msgid ""
|
984 |
+
"This kind of advert can not have statistics enabled in AdRotate. Separate "
|
985 |
+
"impression counting is available in AdRotate Pro."
|
986 |
msgstr ""
|
987 |
"Questo tipo di annuncio non può avere statistiche abilitate in AdRotate. Il "
|
988 |
"conteggio delle impressioni è disponibile in AdRotate Pro."
|
2441 |
msgid "user-agents"
|
2442 |
msgstr "agenti di utenti"
|
2443 |
|
2444 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:47
|
2445 |
+
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2446 |
+
#: dashboard/settings/statistics.php:85
|
2447 |
msgid "Update Options"
|
2448 |
msgstr "Aggiorna Opzioni"
|
2449 |
|
3904 |
#~ "L'inserzione è stata salvata ma ha un problema che le potrebbe impedire "
|
3905 |
#~ "di funzionare a dovere. Si prega di contattare lo staff."
|
3906 |
|
|
|
|
|
|
|
3907 |
#~ msgid "The file could not be read."
|
3908 |
#~ msgstr "Non è stato possibile leggere il file."
|
3909 |
|
3910 |
#~ msgid "Wrong file type."
|
3911 |
#~ msgstr "Tipo di file sbagliato."
|
3912 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3913 |
#~ msgid "Invalid request"
|
3914 |
#~ msgstr "Richiesta non valida"
|
3915 |
|
language/adrotate-nl_NL.mo
CHANGED
Binary file
|
language/adrotate-nl_NL.po
CHANGED
@@ -2,46 +2,46 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Advertentie opgeslagen"
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Group saved"
|
26 |
msgstr "Groep bewaard"
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Advertentie afbeelding opgeslagen"
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Advertentie(s) verwijderd"
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Groep verwijderd"
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Asset(s) verwijderd"
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
@@ -49,31 +49,31 @@ msgstr ""
|
|
49 |
"Er is iets mis gegaan met het verwijderen van het bestand of de map. Zorg "
|
50 |
"ervoor dat de permissies in orde zijn."
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Advertentie(s) statistieken gereset"
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Advertentie(s) vernieuwd"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Advertentie(s) gedeactiveerd"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Advertentie(s) geactiveerd"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Groep inclusief advertenties verwijderd"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Export created"
|
74 |
msgstr "Export gemaakt"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -82,31 +82,31 @@ msgstr ""
|
|
82 |
"advertentie hieronder. Vergeet niet om alle instellingen te controleren en "
|
83 |
"de advertentie te plannen."
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Instellingen opgeslagen"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Database geoptimaliseerd"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Database is hersteld"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Advertenties geëvalueerd en statussen zijn waar nodig gecorrigeerd"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Opschonen voltooid"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Actie niet toegestaan"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
@@ -114,24 +114,41 @@ msgstr ""
|
|
114 |
"De advertentie is opgeslagen, maar heeft een probleem waardoor het mogelijk "
|
115 |
"niet goed werkt. Bekijk de gekleurde advertentie."
|
116 |
|
117 |
-
#: adrotate-functions.php:
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Geen gegevens gevonden in geselecteerde tijdsperiode"
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr ""
|
124 |
"Database kan slechts eenmaal per uur worden geoptimaliseerd of opgeschoond"
|
125 |
|
126 |
-
#: adrotate-functions.php:
|
127 |
msgid "Form can not be (partially) empty!"
|
128 |
msgstr "Formulier kan niet (gedeeltelijk) leeg zijn!"
|
129 |
|
130 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
131 |
msgid "No adverts found."
|
132 |
msgstr "Geen advertenties gevonden."
|
133 |
|
134 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid ""
|
136 |
"The advert hash is not usable or is missing required data. Please copy the "
|
137 |
"hash correctly and try again."
|
@@ -139,7 +156,7 @@ msgstr ""
|
|
139 |
"De advertentie hash is niet bruikbaar of mist vereiste informatie. Probeer "
|
140 |
"het opnieuw met een nieuwe hash."
|
141 |
|
142 |
-
#: adrotate-functions.php:
|
143 |
msgid ""
|
144 |
"The advert hash can not be used on the same site as it originated from or is "
|
145 |
"not a valid hash for importing."
|
@@ -148,11 +165,11 @@ msgstr ""
|
|
148 |
"gegenereerd is of de hash is niet een geldige hash voor het importeren van "
|
149 |
"een advertentie."
|
150 |
|
151 |
-
#: adrotate-functions.php:
|
152 |
msgid "Unexpected error"
|
153 |
msgstr "Onverwachte fout"
|
154 |
|
155 |
-
#: adrotate-manage-publisher.php:
|
156 |
msgid "AdRotate Advertiser"
|
157 |
msgstr "AdRotate Adverteerder"
|
158 |
|
@@ -279,27 +296,27 @@ msgstr ""
|
|
279 |
msgid "Disable Borlabs Cache Support"
|
280 |
msgstr "Ondersteuning voor Borlabs cache uitschakelen"
|
281 |
|
282 |
-
#: adrotate-output.php:
|
283 |
msgid ""
|
284 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
285 |
msgstr ""
|
286 |
"Je hebt de ondersteuning voor Borlabs cache ingeschakeld, maar "
|
287 |
"Fragmentcaching is niet ingeschakeld!"
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
msgid "Enable Fragment Caching"
|
291 |
msgstr "Fragmentcaching inschakelen"
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
295 |
msgstr ""
|
296 |
"De map voor de banner van AdRotate is niet beschrijfbaar of bestaat niet."
|
297 |
|
298 |
-
#: adrotate-output.php:
|
299 |
msgid "Set up your banner folder"
|
300 |
msgstr "De banner map instellen"
|
301 |
|
302 |
-
#: adrotate-output.php:
|
303 |
msgid ""
|
304 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
305 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -307,11 +324,11 @@ msgstr ""
|
|
307 |
"Je hebt AdRotate Professional geïnstalleerd. Stap over naar AdRotate Pro! Je "
|
308 |
"kunt deze plug-in verwijderen nadat AdRotate Pro is geactiveerd."
|
309 |
|
310 |
-
#: adrotate-output.php:
|
311 |
msgid "Switch plugins"
|
312 |
msgstr "Stap over"
|
313 |
|
314 |
-
#: adrotate-output.php:
|
315 |
msgid ""
|
316 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
317 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -321,15 +338,15 @@ msgstr ""
|
|
321 |
"geïnstalleerd of uw huidige installatie heeft de verkeerde map naam. "
|
322 |
"Installeer de plugin goed!"
|
323 |
|
324 |
-
#: adrotate-output.php:
|
325 |
msgid "Installation instructions"
|
326 |
msgstr "Installatie-instructies"
|
327 |
|
328 |
-
#: adrotate-output.php:
|
329 |
msgid "your attention:"
|
330 |
msgstr "jouw aandacht:"
|
331 |
|
332 |
-
#: adrotate-output.php:
|
333 |
msgid ""
|
334 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
335 |
"menu. If you need help getting started take a look at the"
|
@@ -338,47 +355,47 @@ msgstr ""
|
|
338 |
"te maken heeft, zit in dit menu. Als je hulp nodig hebt om aan de slag te "
|
339 |
"gaan, kijk dan eens naar de"
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "manuals"
|
343 |
msgstr "handleidingen"
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "and"
|
347 |
msgstr "en"
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid "forums"
|
351 |
msgstr "forums"
|
352 |
|
353 |
-
#: adrotate-output.php:
|
354 |
msgid "Post Tweet"
|
355 |
msgstr "Tweet plaatsen"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
358 |
msgid "Share on Facebook"
|
359 |
msgstr "Deel op Facebook"
|
360 |
|
361 |
-
#: adrotate-output.php:
|
362 |
msgid "Write review on wordpress.org"
|
363 |
msgstr "Schrijf een review op WordPress.org"
|
364 |
|
365 |
-
#: adrotate-output.php:
|
366 |
msgid "Thank you very much for your help and support!"
|
367 |
msgstr "Hartelijk dank voor je hulp!"
|
368 |
|
369 |
-
#: adrotate-output.php:
|
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:
|
374 |
msgid "Help AdRotate Grow"
|
375 |
msgstr "Help AdRotate groeien"
|
376 |
|
377 |
-
#: adrotate-output.php:
|
378 |
msgid "Get more features with AdRotate Pro"
|
379 |
msgstr "Beschik over meer functies met AdRotate Pro"
|
380 |
|
381 |
-
#: adrotate-output.php:
|
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,15 +405,15 @@ msgstr ""
|
|
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:
|
392 |
msgid "AdRotate Manuals"
|
393 |
msgstr "AdRotate Handleidingen"
|
394 |
|
395 |
-
#: adrotate-output.php:
|
396 |
msgid "Support Forums"
|
397 |
msgstr "Supportfora"
|
398 |
|
399 |
-
#: adrotate-output.php:
|
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,7 +426,7 @@ msgstr ""
|
|
409 |
"extra informatie helpt altijd bij het krijgen van een beter antwoord of "
|
410 |
"advies."
|
411 |
|
412 |
-
#: adrotate-output.php:
|
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,11 +439,11 @@ msgstr ""
|
|
422 |
"maar is super nuttig omdat alle promotie helpt om toekomstige ontwikkeling "
|
423 |
"te garanderen."
|
424 |
|
425 |
-
#: adrotate-output.php:
|
426 |
msgid "Write review on WordPress.org"
|
427 |
msgstr "Schrijf een review op WordPress.org"
|
428 |
|
429 |
-
#: adrotate-output.php:
|
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,27 +454,27 @@ msgstr ""
|
|
437 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
438 |
"heeft!"
|
439 |
|
440 |
-
#: adrotate-output.php:
|
441 |
msgid "Compare Licenses"
|
442 |
msgstr "Licenties vergelijken"
|
443 |
|
444 |
-
#: adrotate-output.php:
|
445 |
msgid "Single License"
|
446 |
msgstr "Enkele licentie"
|
447 |
|
448 |
-
#: adrotate-output.php:
|
449 |
msgid "Use on ONE WordPress installation."
|
450 |
msgstr "Gebruik op één WordPress-installatie."
|
451 |
|
452 |
-
#: adrotate-output.php:
|
453 |
msgid "Buy now"
|
454 |
msgstr "Koop nu"
|
455 |
|
456 |
-
#: adrotate-output.php:
|
457 |
msgid "Multi License"
|
458 |
msgstr "Multi Licentie"
|
459 |
|
460 |
-
#: adrotate-output.php:
|
461 |
msgid "Use on up to FIVE WordPress installations."
|
462 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
463 |
|
@@ -961,19 +978,19 @@ msgstr ""
|
|
961 |
|
962 |
#: dashboard/publisher/adverts-edit.php:59
|
963 |
msgid ""
|
964 |
-
"There is a problem saving the image. Please re-
|
965 |
-
"the
|
966 |
msgstr ""
|
967 |
-
"Er is een probleem
|
968 |
-
"afbeelding en sla de advertentie opnieuw op!"
|
969 |
|
970 |
#: dashboard/publisher/adverts-edit.php:62
|
971 |
msgid ""
|
972 |
-
"This kind of advert can not have statistics enabled in AdRotate.
|
973 |
-
"counting is available in AdRotate Pro."
|
974 |
msgstr ""
|
975 |
-
"Voor dit soort advertenties kunnen geen statistieken
|
976 |
-
"AdRotate. Het tellen van vertoningen is beschikbaar in AdRotate Pro."
|
977 |
|
978 |
#: dashboard/publisher/adverts-edit.php:67
|
979 |
msgid "This advert is expired and currently not shown on your website!"
|
@@ -2415,9 +2432,9 @@ msgstr "Meer informatie over"
|
|
2415 |
msgid "user-agents"
|
2416 |
msgstr "gebruikersagenten"
|
2417 |
|
2418 |
-
#: dashboard/settings/general.php:83 dashboard/settings/
|
2419 |
-
#: dashboard/settings/
|
2420 |
-
#: dashboard/settings/
|
2421 |
msgid "Update Options"
|
2422 |
msgstr "Update opties"
|
2423 |
|
@@ -3871,26 +3888,12 @@ msgstr "Premium Support is beschikbaar in AdRotate Pro!"
|
|
3871 |
#~ "De advertentie is opgeslagen, maar heeft een probleem waardoor deze "
|
3872 |
#~ "mogelijk niet goed werkt. Neem contact op met het de moderator."
|
3873 |
|
3874 |
-
#~ msgid "No file uploaded."
|
3875 |
-
#~ msgstr "Geen bestand geüpload."
|
3876 |
-
|
3877 |
#~ msgid "The file could not be read."
|
3878 |
#~ msgstr "Het bestand kan niet worden gelezen."
|
3879 |
|
3880 |
#~ msgid "Wrong file type."
|
3881 |
#~ msgstr "Onjuist bestandstype."
|
3882 |
|
3883 |
-
#~ msgid "Wrong file type. No file uploaded."
|
3884 |
-
#~ msgstr "Onjuist bestandstype. Er is geen bestand geüpload."
|
3885 |
-
|
3886 |
-
#~ msgid "File is too large."
|
3887 |
-
#~ msgstr "Het bestand is te groot."
|
3888 |
-
|
3889 |
-
#~ msgid "There was an error unzipping the file. Please try again later."
|
3890 |
-
#~ msgstr ""
|
3891 |
-
#~ "Er was een fout bij het uitpakken van het bestand. Probeer het later "
|
3892 |
-
#~ "opnieuw."
|
3893 |
-
|
3894 |
#~ msgid "Invalid request"
|
3895 |
#~ msgstr "Ongeldig verzoek"
|
3896 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-04-07 16:24-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-04-07 16:26-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Arnan de Gans\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 3.0.1\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr "Advertentie opgeslagen"
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Group saved"
|
26 |
msgstr "Groep bewaard"
|
27 |
|
28 |
+
#: adrotate-functions.php:808
|
29 |
msgid "Banner image saved"
|
30 |
msgstr "Advertentie afbeelding opgeslagen"
|
31 |
|
32 |
+
#: adrotate-functions.php:812
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr "Advertentie(s) verwijderd"
|
35 |
|
36 |
+
#: adrotate-functions.php:816
|
37 |
msgid "Group deleted"
|
38 |
msgstr "Groep verwijderd"
|
39 |
|
40 |
+
#: adrotate-functions.php:820
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr "Asset(s) verwijderd"
|
43 |
|
44 |
+
#: adrotate-functions.php:824
|
45 |
msgid ""
|
46 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
47 |
"are in order."
|
49 |
"Er is iets mis gegaan met het verwijderen van het bestand of de map. Zorg "
|
50 |
"ervoor dat de permissies in orde zijn."
|
51 |
|
52 |
+
#: adrotate-functions.php:828
|
53 |
msgid "Advert(s) statistics reset"
|
54 |
msgstr "Advertentie(s) statistieken gereset"
|
55 |
|
56 |
+
#: adrotate-functions.php:832
|
57 |
msgid "Advert(s) renewed"
|
58 |
msgstr "Advertentie(s) vernieuwd"
|
59 |
|
60 |
+
#: adrotate-functions.php:836
|
61 |
msgid "Advert(s) deactivated"
|
62 |
msgstr "Advertentie(s) gedeactiveerd"
|
63 |
|
64 |
+
#: adrotate-functions.php:840
|
65 |
msgid "Advert(s) activated"
|
66 |
msgstr "Advertentie(s) geactiveerd"
|
67 |
|
68 |
+
#: adrotate-functions.php:844
|
69 |
msgid "Group including the Adverts in it deleted"
|
70 |
msgstr "Groep inclusief advertenties verwijderd"
|
71 |
|
72 |
+
#: adrotate-functions.php:848
|
73 |
msgid "Export created"
|
74 |
msgstr "Export gemaakt"
|
75 |
|
76 |
+
#: adrotate-functions.php:852
|
77 |
msgid ""
|
78 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
79 |
"below. Do not forget to check all settings and schedule the advert."
|
82 |
"advertentie hieronder. Vergeet niet om alle instellingen te controleren en "
|
83 |
"de advertentie te plannen."
|
84 |
|
85 |
+
#: adrotate-functions.php:857
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Instellingen opgeslagen"
|
88 |
|
89 |
+
#: adrotate-functions.php:861
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Database geoptimaliseerd"
|
92 |
|
93 |
+
#: adrotate-functions.php:865
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Database is hersteld"
|
96 |
|
97 |
+
#: adrotate-functions.php:869
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Advertenties geëvalueerd en statussen zijn waar nodig gecorrigeerd"
|
100 |
|
101 |
+
#: adrotate-functions.php:873
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Opschonen voltooid"
|
104 |
|
105 |
+
#: adrotate-functions.php:878
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Actie niet toegestaan"
|
108 |
|
109 |
+
#: adrotate-functions.php:882
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
114 |
"De advertentie is opgeslagen, maar heeft een probleem waardoor het mogelijk "
|
115 |
"niet goed werkt. Bekijk de gekleurde advertentie."
|
116 |
|
117 |
+
#: adrotate-functions.php:886
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Geen gegevens gevonden in geselecteerde tijdsperiode"
|
120 |
|
121 |
+
#: adrotate-functions.php:890
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr ""
|
124 |
"Database kan slechts eenmaal per uur worden geoptimaliseerd of opgeschoond"
|
125 |
|
126 |
+
#: adrotate-functions.php:894
|
127 |
msgid "Form can not be (partially) empty!"
|
128 |
msgstr "Formulier kan niet (gedeeltelijk) leeg zijn!"
|
129 |
|
130 |
+
#: adrotate-functions.php:898
|
131 |
+
msgid "No file uploaded."
|
132 |
+
msgstr "Geen bestand geüpload."
|
133 |
+
|
134 |
+
#: adrotate-functions.php:902
|
135 |
msgid "No adverts found."
|
136 |
msgstr "Geen advertenties gevonden."
|
137 |
|
138 |
+
#: adrotate-functions.php:906
|
139 |
+
msgid "Wrong file type. No file uploaded."
|
140 |
+
msgstr "Onjuist bestandstype. Er is geen bestand geüpload."
|
141 |
+
|
142 |
+
#: adrotate-functions.php:910
|
143 |
+
msgid "No file selected or file is too large."
|
144 |
+
msgstr "Geen bestand geselecteerd of het bestand is te groot."
|
145 |
+
|
146 |
+
#: adrotate-functions.php:914
|
147 |
+
msgid "There was an error unzipping the file. Please try again later."
|
148 |
+
msgstr ""
|
149 |
+
"Er was een fout bij het uitpakken van het bestand. Probeer het later opnieuw."
|
150 |
+
|
151 |
+
#: adrotate-functions.php:918
|
152 |
msgid ""
|
153 |
"The advert hash is not usable or is missing required data. Please copy the "
|
154 |
"hash correctly and try again."
|
156 |
"De advertentie hash is niet bruikbaar of mist vereiste informatie. Probeer "
|
157 |
"het opnieuw met een nieuwe hash."
|
158 |
|
159 |
+
#: adrotate-functions.php:922
|
160 |
msgid ""
|
161 |
"The advert hash can not be used on the same site as it originated from or is "
|
162 |
"not a valid hash for importing."
|
165 |
"gegenereerd is of de hash is niet een geldige hash voor het importeren van "
|
166 |
"een advertentie."
|
167 |
|
168 |
+
#: adrotate-functions.php:926
|
169 |
msgid "Unexpected error"
|
170 |
msgstr "Onverwachte fout"
|
171 |
|
172 |
+
#: adrotate-manage-publisher.php:879
|
173 |
msgid "AdRotate Advertiser"
|
174 |
msgstr "AdRotate Adverteerder"
|
175 |
|
296 |
msgid "Disable Borlabs Cache Support"
|
297 |
msgstr "Ondersteuning voor Borlabs cache uitschakelen"
|
298 |
|
299 |
+
#: adrotate-output.php:645
|
300 |
msgid ""
|
301 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
302 |
msgstr ""
|
303 |
"Je hebt de ondersteuning voor Borlabs cache ingeschakeld, maar "
|
304 |
"Fragmentcaching is niet ingeschakeld!"
|
305 |
|
306 |
+
#: adrotate-output.php:645
|
307 |
msgid "Enable Fragment Caching"
|
308 |
msgstr "Fragmentcaching inschakelen"
|
309 |
|
310 |
+
#: adrotate-output.php:652
|
311 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
312 |
msgstr ""
|
313 |
"De map voor de banner van AdRotate is niet beschrijfbaar of bestaat niet."
|
314 |
|
315 |
+
#: adrotate-output.php:652
|
316 |
msgid "Set up your banner folder"
|
317 |
msgstr "De banner map instellen"
|
318 |
|
319 |
+
#: adrotate-output.php:655
|
320 |
msgid ""
|
321 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
322 |
"can delete this plugin after AdRotate Pro is activated."
|
324 |
"Je hebt AdRotate Professional geïnstalleerd. Stap over naar AdRotate Pro! Je "
|
325 |
"kunt deze plug-in verwijderen nadat AdRotate Pro is geactiveerd."
|
326 |
|
327 |
+
#: adrotate-output.php:655
|
328 |
msgid "Switch plugins"
|
329 |
msgstr "Stap over"
|
330 |
|
331 |
+
#: adrotate-output.php:658
|
332 |
msgid ""
|
333 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
334 |
"installed twice or your current installation has the wrong folder name. "
|
338 |
"geïnstalleerd of uw huidige installatie heeft de verkeerde map naam. "
|
339 |
"Installeer de plugin goed!"
|
340 |
|
341 |
+
#: adrotate-output.php:658
|
342 |
msgid "Installation instructions"
|
343 |
msgstr "Installatie-instructies"
|
344 |
|
345 |
+
#: adrotate-output.php:734
|
346 |
msgid "your attention:"
|
347 |
msgstr "jouw aandacht:"
|
348 |
|
349 |
+
#: adrotate-output.php:765
|
350 |
msgid ""
|
351 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
352 |
"menu. If you need help getting started take a look at the"
|
355 |
"te maken heeft, zit in dit menu. Als je hulp nodig hebt om aan de slag te "
|
356 |
"gaan, kijk dan eens naar de"
|
357 |
|
358 |
+
#: adrotate-output.php:765
|
359 |
msgid "manuals"
|
360 |
msgstr "handleidingen"
|
361 |
|
362 |
+
#: adrotate-output.php:765
|
363 |
msgid "and"
|
364 |
msgstr "en"
|
365 |
|
366 |
+
#: adrotate-output.php:765
|
367 |
msgid "forums"
|
368 |
msgstr "forums"
|
369 |
|
370 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
371 |
msgid "Post Tweet"
|
372 |
msgstr "Tweet plaatsen"
|
373 |
|
374 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
375 |
msgid "Share on Facebook"
|
376 |
msgstr "Deel op Facebook"
|
377 |
|
378 |
+
#: adrotate-output.php:820
|
379 |
msgid "Write review on wordpress.org"
|
380 |
msgstr "Schrijf een review op WordPress.org"
|
381 |
|
382 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
383 |
msgid "Thank you very much for your help and support!"
|
384 |
msgstr "Hartelijk dank voor je hulp!"
|
385 |
|
386 |
+
#: adrotate-output.php:851
|
387 |
msgid "Need help fast? Or do you have a question?"
|
388 |
msgstr "Snel hulp nodig? Of heb je een vraag?"
|
389 |
|
390 |
+
#: adrotate-output.php:852
|
391 |
msgid "Help AdRotate Grow"
|
392 |
msgstr "Help AdRotate groeien"
|
393 |
|
394 |
+
#: adrotate-output.php:853
|
395 |
msgid "Get more features with AdRotate Pro"
|
396 |
msgstr "Beschik over meer functies met AdRotate Pro"
|
397 |
|
398 |
+
#: adrotate-output.php:859
|
399 |
msgid ""
|
400 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
401 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
405 |
"manier om je antwoord te krijgen via het AdRotate-forum. Meestal beantwoord "
|
406 |
"ik vragen dezelfde dag, vaak met een oplossing in het eerste antwoord."
|
407 |
|
408 |
+
#: adrotate-output.php:860
|
409 |
msgid "AdRotate Manuals"
|
410 |
msgstr "AdRotate Handleidingen"
|
411 |
|
412 |
+
#: adrotate-output.php:860
|
413 |
msgid "Support Forums"
|
414 |
msgstr "Supportfora"
|
415 |
|
416 |
+
#: adrotate-output.php:861
|
417 |
msgid ""
|
418 |
"When posting on the forum, please include a brief description of the "
|
419 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
426 |
"extra informatie helpt altijd bij het krijgen van een beter antwoord of "
|
427 |
"advies."
|
428 |
|
429 |
+
#: adrotate-output.php:863
|
430 |
msgid ""
|
431 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
432 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
439 |
"maar is super nuttig omdat alle promotie helpt om toekomstige ontwikkeling "
|
440 |
"te garanderen."
|
441 |
|
442 |
+
#: adrotate-output.php:864
|
443 |
msgid "Write review on WordPress.org"
|
444 |
msgstr "Schrijf een review op WordPress.org"
|
445 |
|
446 |
+
#: adrotate-output.php:867
|
447 |
msgid ""
|
448 |
"AdRotate Professional has a lot more functions for even better advertising "
|
449 |
"management. Check out the feature comparison tab on any of the product pages "
|
454 |
"een van de productpagina's om te zien wat AdRotate Pro voor u te bieden "
|
455 |
"heeft!"
|
456 |
|
457 |
+
#: adrotate-output.php:867
|
458 |
msgid "Compare Licenses"
|
459 |
msgstr "Licenties vergelijken"
|
460 |
|
461 |
+
#: adrotate-output.php:868
|
462 |
msgid "Single License"
|
463 |
msgstr "Enkele licentie"
|
464 |
|
465 |
+
#: adrotate-output.php:868
|
466 |
msgid "Use on ONE WordPress installation."
|
467 |
msgstr "Gebruik op één WordPress-installatie."
|
468 |
|
469 |
+
#: adrotate-output.php:868 adrotate-output.php:869
|
470 |
msgid "Buy now"
|
471 |
msgstr "Koop nu"
|
472 |
|
473 |
+
#: adrotate-output.php:869
|
474 |
msgid "Multi License"
|
475 |
msgstr "Multi Licentie"
|
476 |
|
477 |
+
#: adrotate-output.php:869
|
478 |
msgid "Use on up to FIVE WordPress installations."
|
479 |
msgstr "Gebruik maximaal vijf WordPress-installaties."
|
480 |
|
978 |
|
979 |
#: dashboard/publisher/adverts-edit.php:59
|
980 |
msgid ""
|
981 |
+
"There is a problem saving the image. Please re-select your image and re-save "
|
982 |
+
"the advert!"
|
983 |
msgstr ""
|
984 |
+
"Er is een probleem opgetreden bij het opslaan van de afbeelding. Selecteer "
|
985 |
+
"de afbeelding opnieuw en sla de advertentie opnieuw op!"
|
986 |
|
987 |
#: dashboard/publisher/adverts-edit.php:62
|
988 |
msgid ""
|
989 |
+
"This kind of advert can not have statistics enabled in AdRotate. Separate "
|
990 |
+
"impression counting is available in AdRotate Pro."
|
991 |
msgstr ""
|
992 |
+
"Voor dit soort advertenties kunnen geen statistieken worden aangezet in "
|
993 |
+
"AdRotate. Het apart tellen van vertoningen is beschikbaar in AdRotate Pro."
|
994 |
|
995 |
#: dashboard/publisher/adverts-edit.php:67
|
996 |
msgid "This advert is expired and currently not shown on your website!"
|
2432 |
msgid "user-agents"
|
2433 |
msgstr "gebruikersagenten"
|
2434 |
|
2435 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:47
|
2436 |
+
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2437 |
+
#: dashboard/settings/statistics.php:85
|
2438 |
msgid "Update Options"
|
2439 |
msgstr "Update opties"
|
2440 |
|
3888 |
#~ "De advertentie is opgeslagen, maar heeft een probleem waardoor deze "
|
3889 |
#~ "mogelijk niet goed werkt. Neem contact op met het de moderator."
|
3890 |
|
|
|
|
|
|
|
3891 |
#~ msgid "The file could not be read."
|
3892 |
#~ msgstr "Het bestand kan niet worden gelezen."
|
3893 |
|
3894 |
#~ msgid "Wrong file type."
|
3895 |
#~ msgstr "Onjuist bestandstype."
|
3896 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3897 |
#~ msgid "Invalid request"
|
3898 |
#~ msgstr "Ongeldig verzoek"
|
3899 |
|
language/adrotate-pl_PL.mo
CHANGED
Binary file
|
language/adrotate-pl_PL.po
CHANGED
@@ -2,82 +2,82 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:1,2c;esc_attr__;"
|
14 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Generator: Poedit
|
19 |
-
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
20 |
-
"|| n%100>=20) ? 1 : 2);\n"
|
21 |
"X-Language: pl_PL\n"
|
22 |
"X-Source-Language: C\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
-
#: adrotate-functions.php:
|
26 |
msgid "Advert saved"
|
27 |
msgstr "Reklama zapisana"
|
28 |
|
29 |
-
#: adrotate-functions.php:
|
30 |
msgid "Group saved"
|
31 |
msgstr "Grupa zapisana"
|
32 |
|
33 |
-
#: adrotate-functions.php:
|
34 |
msgid "Banner image saved"
|
35 |
msgstr "Zapisano obraz banera"
|
36 |
|
37 |
-
#: adrotate-functions.php:
|
38 |
msgid "Ad(s) deleted"
|
39 |
msgstr "Reklamy usunięte"
|
40 |
|
41 |
-
#: adrotate-functions.php:
|
42 |
msgid "Group deleted"
|
43 |
msgstr "Grupa usunięta"
|
44 |
|
45 |
-
#: adrotate-functions.php:
|
46 |
msgid "Asset(s) deleted"
|
47 |
msgstr "Zasoby usunięte"
|
48 |
|
49 |
-
#: adrotate-functions.php:
|
50 |
msgid ""
|
51 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
52 |
"are in order."
|
53 |
msgstr ""
|
54 |
"Usuwanie pliku lub folderu nie powiodło się. Proszę sprawdzić uprawnienia."
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Resetowanie statystyk reklam"
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Reklamy odnowione"
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Reklamy dezaktywowane"
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Reklamy aktywowane"
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Grupa, w tym usunięte w niej reklamy"
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Export created"
|
78 |
msgstr "Eksport utworzony"
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
msgid ""
|
82 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
83 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -86,32 +86,32 @@ msgstr ""
|
|
86 |
"ogłoszenie poniżej. Nie zapomnij sprawdzić wszystkich ustawień i zaplanować "
|
87 |
"ogłoszenie."
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Ustawienia zapisane"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Baza danych zoptymalizowana"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Baza danych naprawiona"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr ""
|
104 |
"Ocenione reklamy i statusy zostały poprawione tam, gdzie jest to wymagane"
|
105 |
|
106 |
-
#: adrotate-functions.php:
|
107 |
msgid "Cleanup complete"
|
108 |
msgstr "Czyszczenie zakończone"
|
109 |
|
110 |
-
#: adrotate-functions.php:
|
111 |
msgid "Action prohibited"
|
112 |
msgstr "Czynność zabroniona"
|
113 |
|
114 |
-
#: adrotate-functions.php:
|
115 |
msgid ""
|
116 |
"The advert was saved but has an issue which might prevent it from working "
|
117 |
"properly. Review the colored advert."
|
@@ -119,23 +119,39 @@ msgstr ""
|
|
119 |
"Ogłoszenie zostało zapisane, ale ma problem, który może uniemożliwić jej "
|
120 |
"prawidłowe działanie. Przejrzyj kolorową reklamę."
|
121 |
|
122 |
-
#: adrotate-functions.php:
|
123 |
msgid "No data found in selected time period"
|
124 |
msgstr "Brak danych dla podanego przedziału czasowego"
|
125 |
|
126 |
-
#: adrotate-functions.php:
|
127 |
msgid "Database can only be optimized or cleaned once every hour"
|
128 |
msgstr "Bazę danych może optymalizować lub czyścić raz na godzinę"
|
129 |
|
130 |
-
#: adrotate-functions.php:
|
131 |
msgid "Form can not be (partially) empty!"
|
132 |
msgstr "Formularz nie może być (częściowo) pusty!"
|
133 |
|
134 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
135 |
msgid "No adverts found."
|
136 |
msgstr "Nie znaleziono ogłoszeń."
|
137 |
|
138 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
msgid ""
|
140 |
"The advert hash is not usable or is missing required data. Please copy the "
|
141 |
"hash correctly and try again."
|
@@ -143,7 +159,7 @@ msgstr ""
|
|
143 |
"Skrót reklamy nie nadaje się do zamieszkania lub brakuje wymaganych danych. "
|
144 |
"Skopiuj skrót poprawnie i spróbuj ponownie."
|
145 |
|
146 |
-
#: adrotate-functions.php:
|
147 |
msgid ""
|
148 |
"The advert hash can not be used on the same site as it originated from or is "
|
149 |
"not a valid hash for importing."
|
@@ -151,11 +167,11 @@ msgstr ""
|
|
151 |
"Skrót reklamy nie może być używany w tej samej witrynie, z której pochodzi "
|
152 |
"lub nie jest prawidłowym skrótem do importowania."
|
153 |
|
154 |
-
#: adrotate-functions.php:
|
155 |
msgid "Unexpected error"
|
156 |
msgstr "Nieoczekiwany błąd"
|
157 |
|
158 |
-
#: adrotate-manage-publisher.php:
|
159 |
msgid "AdRotate Advertiser"
|
160 |
msgstr "Reklamodawca AdRotate"
|
161 |
|
@@ -298,25 +314,25 @@ msgstr ""
|
|
298 |
msgid "Disable Borlabs Cache Support"
|
299 |
msgstr "Wyłącz obsługę Borlabs Cache"
|
300 |
|
301 |
-
#: adrotate-output.php:
|
302 |
msgid ""
|
303 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
304 |
msgstr ""
|
305 |
"Włączyłeś obsługę Borlabs Cache, ale Fragment caching nie jest włączony!"
|
306 |
|
307 |
-
#: adrotate-output.php:
|
308 |
msgid "Enable Fragment Caching"
|
309 |
msgstr "Włącz Fragment Caching"
|
310 |
|
311 |
-
#: adrotate-output.php:
|
312 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
313 |
msgstr "Folder banerów AdRotate jest chroniony przed zapisem lub nie istnieje."
|
314 |
|
315 |
-
#: adrotate-output.php:
|
316 |
msgid "Set up your banner folder"
|
317 |
msgstr "Ustaw folder banerów"
|
318 |
|
319 |
-
#: adrotate-output.php:
|
320 |
msgid ""
|
321 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
322 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -324,11 +340,11 @@ msgstr ""
|
|
324 |
"Masz zainstalowany AdRotate Professional. Proszę przełączyć się na AdRotate "
|
325 |
"Pro! Możesz usunąć tę wtyczkę po aktywacji AdRotate Pro."
|
326 |
|
327 |
-
#: adrotate-output.php:
|
328 |
msgid "Switch plugins"
|
329 |
msgstr "Przełączanie wtyczek"
|
330 |
|
331 |
-
#: adrotate-output.php:
|
332 |
msgid ""
|
333 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
334 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -338,22 +354,22 @@ msgstr ""
|
|
338 |
"razy lub bieżąca instalacja ma niewłaściwą nazwę folderu. Proszę "
|
339 |
"zainstalować wtyczkę poprawnie!"
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "Installation instructions"
|
343 |
msgstr "Instrukcje montażowe"
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "one issue that requires"
|
347 |
msgid_plural "several issues that require"
|
348 |
msgstr[0] "jeden problem wymagający"
|
349 |
msgstr[1] "kilka problemów wymagających"
|
350 |
msgstr[2] "wiele problemów wymagających"
|
351 |
|
352 |
-
#: adrotate-output.php:
|
353 |
msgid "your attention:"
|
354 |
msgstr "twoją uwagę:"
|
355 |
|
356 |
-
#: adrotate-output.php:
|
357 |
msgid ""
|
358 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
359 |
"menu. If you need help getting started take a look at the"
|
@@ -361,47 +377,47 @@ msgstr ""
|
|
361 |
"Dziękujemy za wybranie AdRotate Professional. Wszystko związane z AdRotate "
|
362 |
"jest w tym menu. Jeśli potrzebujesz pomocy przy rozpoczęciu"
|
363 |
|
364 |
-
#: adrotate-output.php:
|
365 |
msgid "manuals"
|
366 |
msgstr "podręczników"
|
367 |
|
368 |
-
#: adrotate-output.php:
|
369 |
msgid "and"
|
370 |
msgstr "i"
|
371 |
|
372 |
-
#: adrotate-output.php:
|
373 |
msgid "forums"
|
374 |
msgstr "forum"
|
375 |
|
376 |
-
#: adrotate-output.php:
|
377 |
msgid "Post Tweet"
|
378 |
msgstr "Opublikuj tweet"
|
379 |
|
380 |
-
#: adrotate-output.php:
|
381 |
msgid "Share on Facebook"
|
382 |
msgstr "Udostępnij na Facebooku"
|
383 |
|
384 |
-
#: adrotate-output.php:
|
385 |
msgid "Write review on wordpress.org"
|
386 |
msgstr "Napisz recenzję firmy WordPress.org"
|
387 |
|
388 |
-
#: adrotate-output.php:
|
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:
|
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:
|
397 |
msgid "Help AdRotate Grow"
|
398 |
msgstr "Pomóż AdRotate rosnąć"
|
399 |
|
400 |
-
#: adrotate-output.php:
|
401 |
msgid "Get more features with AdRotate Pro"
|
402 |
msgstr "Więcej ustawień z AdRotate Pro"
|
403 |
|
404 |
-
#: adrotate-output.php:
|
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,15 +428,15 @@ msgstr ""
|
|
412 |
"AdRotate. Zazwyczaj odpowiadam na pytania tego samego dnia, często z "
|
413 |
"rozwiązaniem w pierwszej odpowiedzi."
|
414 |
|
415 |
-
#: adrotate-output.php:
|
416 |
msgid "AdRotate Manuals"
|
417 |
msgstr "Podręczniki AdRotate"
|
418 |
|
419 |
-
#: adrotate-output.php:
|
420 |
msgid "Support Forums"
|
421 |
msgstr "Forum wsparcia"
|
422 |
|
423 |
-
#: adrotate-output.php:
|
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,7 +448,7 @@ msgstr ""
|
|
432 |
"wyjaśnić, co próbujesz zrobić. Dostarczenie dodatkowych informacji zawsze "
|
433 |
"pomaga uzyskać lepszą odpowiedź lub poradę."
|
434 |
|
435 |
-
#: adrotate-output.php:
|
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,11 +461,11 @@ msgstr ""
|
|
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:
|
449 |
msgid "Write review on WordPress.org"
|
450 |
msgstr "Napisz recenzję firmy WordPress.org"
|
451 |
|
452 |
-
#: adrotate-output.php:
|
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,27 +476,27 @@ msgstr ""
|
|
460 |
"stronie produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla "
|
461 |
"Ciebie!"
|
462 |
|
463 |
-
#: adrotate-output.php:
|
464 |
msgid "Compare Licenses"
|
465 |
msgstr "Porównaj licencje"
|
466 |
|
467 |
-
#: adrotate-output.php:
|
468 |
msgid "Single License"
|
469 |
msgstr "Licencja"
|
470 |
|
471 |
-
#: adrotate-output.php:
|
472 |
msgid "Use on ONE WordPress installation."
|
473 |
msgstr "Użyj na JEDNEJ instalacji WordPress."
|
474 |
|
475 |
-
#: adrotate-output.php:
|
476 |
msgid "Buy now"
|
477 |
msgstr "Kup teraz"
|
478 |
|
479 |
-
#: adrotate-output.php:
|
480 |
msgid "Multi License"
|
481 |
msgstr "Multi licencja"
|
482 |
|
483 |
-
#: adrotate-output.php:
|
484 |
msgid "Use on up to FIVE WordPress installations."
|
485 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
486 |
|
@@ -980,16 +996,16 @@ msgstr "Nie używać %asset% in AdCode, ale nie wybrać plik do użycia!"
|
|
980 |
|
981 |
#: dashboard/publisher/adverts-edit.php:59
|
982 |
msgid ""
|
983 |
-
"There is a problem saving the image. Please re-
|
984 |
-
"the
|
985 |
msgstr ""
|
986 |
"Wystąpił problem z zapisaniem obrazu. Ustaw ponownie obraz i zapisz ponownie "
|
987 |
"reklamę!"
|
988 |
|
989 |
#: dashboard/publisher/adverts-edit.php:62
|
990 |
msgid ""
|
991 |
-
"This kind of advert can not have statistics enabled in AdRotate.
|
992 |
-
"counting is available in AdRotate Pro."
|
993 |
msgstr ""
|
994 |
"Ten rodzaj reklamy nie może mieć włączonych statystyk w AdRotate. Zliczanie "
|
995 |
"wyświetleń jest dostępne w AdRotate Pro."
|
@@ -2399,9 +2415,9 @@ msgstr "Dowiedź się więcej"
|
|
2399 |
msgid "user-agents"
|
2400 |
msgstr "identyfikatory przeglądarek"
|
2401 |
|
2402 |
-
#: dashboard/settings/general.php:83 dashboard/settings/
|
2403 |
-
#: dashboard/settings/
|
2404 |
-
#: dashboard/settings/
|
2405 |
msgid "Update Options"
|
2406 |
msgstr "Zapisz opcje"
|
2407 |
|
@@ -3877,24 +3893,12 @@ msgstr "Wsparcie Premium jest dostępne w AdRotate Pro!"
|
|
3877 |
#~ "Reklama została zapisana, ale ma błędy, które mogą uniemożliwić jej "
|
3878 |
#~ "poprawne działanie. Proszę skontaktować się z obsługą."
|
3879 |
|
3880 |
-
#~ msgid "No file uploaded."
|
3881 |
-
#~ msgstr "Nie wysłano pliku."
|
3882 |
-
|
3883 |
#~ msgid "The file could not be read."
|
3884 |
#~ msgstr "Nie można odczytać pliku."
|
3885 |
|
3886 |
#~ msgid "Wrong file type."
|
3887 |
#~ msgstr "Nieprawidłowy typ pliku."
|
3888 |
|
3889 |
-
#~ msgid "Wrong file type. No file uploaded."
|
3890 |
-
#~ msgstr "Nieprawidłowy typ pliku. Nie przesłano pliku."
|
3891 |
-
|
3892 |
-
#~ msgid "File is too large."
|
3893 |
-
#~ msgstr "Plik jest zbyt duży."
|
3894 |
-
|
3895 |
-
#~ msgid "There was an error unzipping the file. Please try again later."
|
3896 |
-
#~ msgstr "Wystąpił błąd podczas odgrywania pliku. Spróbuj ponownie później."
|
3897 |
-
|
3898 |
#~ msgid "Invalid request"
|
3899 |
#~ msgstr "Nieprawidłowe żądanie"
|
3900 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-04-07 16:24-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-04-07 16:24-0600\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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
14 |
+
"|| n%100>=20) ? 1 : 2);\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:1,2c;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
"_nx_noop:4c,1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
+
"X-Generator: Poedit 3.0.1\n"
|
|
|
|
|
21 |
"X-Language: pl_PL\n"
|
22 |
"X-Source-Language: C\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
+
#: adrotate-functions.php:800
|
26 |
msgid "Advert saved"
|
27 |
msgstr "Reklama zapisana"
|
28 |
|
29 |
+
#: adrotate-functions.php:804
|
30 |
msgid "Group saved"
|
31 |
msgstr "Grupa zapisana"
|
32 |
|
33 |
+
#: adrotate-functions.php:808
|
34 |
msgid "Banner image saved"
|
35 |
msgstr "Zapisano obraz banera"
|
36 |
|
37 |
+
#: adrotate-functions.php:812
|
38 |
msgid "Ad(s) deleted"
|
39 |
msgstr "Reklamy usunięte"
|
40 |
|
41 |
+
#: adrotate-functions.php:816
|
42 |
msgid "Group deleted"
|
43 |
msgstr "Grupa usunięta"
|
44 |
|
45 |
+
#: adrotate-functions.php:820
|
46 |
msgid "Asset(s) deleted"
|
47 |
msgstr "Zasoby usunięte"
|
48 |
|
49 |
+
#: adrotate-functions.php:824
|
50 |
msgid ""
|
51 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
52 |
"are in order."
|
53 |
msgstr ""
|
54 |
"Usuwanie pliku lub folderu nie powiodło się. Proszę sprawdzić uprawnienia."
|
55 |
|
56 |
+
#: adrotate-functions.php:828
|
57 |
msgid "Advert(s) statistics reset"
|
58 |
msgstr "Resetowanie statystyk reklam"
|
59 |
|
60 |
+
#: adrotate-functions.php:832
|
61 |
msgid "Advert(s) renewed"
|
62 |
msgstr "Reklamy odnowione"
|
63 |
|
64 |
+
#: adrotate-functions.php:836
|
65 |
msgid "Advert(s) deactivated"
|
66 |
msgstr "Reklamy dezaktywowane"
|
67 |
|
68 |
+
#: adrotate-functions.php:840
|
69 |
msgid "Advert(s) activated"
|
70 |
msgstr "Reklamy aktywowane"
|
71 |
|
72 |
+
#: adrotate-functions.php:844
|
73 |
msgid "Group including the Adverts in it deleted"
|
74 |
msgstr "Grupa, w tym usunięte w niej reklamy"
|
75 |
|
76 |
+
#: adrotate-functions.php:848
|
77 |
msgid "Export created"
|
78 |
msgstr "Eksport utworzony"
|
79 |
|
80 |
+
#: adrotate-functions.php:852
|
81 |
msgid ""
|
82 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
83 |
"below. Do not forget to check all settings and schedule the advert."
|
86 |
"ogłoszenie poniżej. Nie zapomnij sprawdzić wszystkich ustawień i zaplanować "
|
87 |
"ogłoszenie."
|
88 |
|
89 |
+
#: adrotate-functions.php:857
|
90 |
msgid "Settings saved"
|
91 |
msgstr "Ustawienia zapisane"
|
92 |
|
93 |
+
#: adrotate-functions.php:861
|
94 |
msgid "Database optimized"
|
95 |
msgstr "Baza danych zoptymalizowana"
|
96 |
|
97 |
+
#: adrotate-functions.php:865
|
98 |
msgid "Database repaired"
|
99 |
msgstr "Baza danych naprawiona"
|
100 |
|
101 |
+
#: adrotate-functions.php:869
|
102 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
103 |
msgstr ""
|
104 |
"Ocenione reklamy i statusy zostały poprawione tam, gdzie jest to wymagane"
|
105 |
|
106 |
+
#: adrotate-functions.php:873
|
107 |
msgid "Cleanup complete"
|
108 |
msgstr "Czyszczenie zakończone"
|
109 |
|
110 |
+
#: adrotate-functions.php:878
|
111 |
msgid "Action prohibited"
|
112 |
msgstr "Czynność zabroniona"
|
113 |
|
114 |
+
#: adrotate-functions.php:882
|
115 |
msgid ""
|
116 |
"The advert was saved but has an issue which might prevent it from working "
|
117 |
"properly. Review the colored advert."
|
119 |
"Ogłoszenie zostało zapisane, ale ma problem, który może uniemożliwić jej "
|
120 |
"prawidłowe działanie. Przejrzyj kolorową reklamę."
|
121 |
|
122 |
+
#: adrotate-functions.php:886
|
123 |
msgid "No data found in selected time period"
|
124 |
msgstr "Brak danych dla podanego przedziału czasowego"
|
125 |
|
126 |
+
#: adrotate-functions.php:890
|
127 |
msgid "Database can only be optimized or cleaned once every hour"
|
128 |
msgstr "Bazę danych może optymalizować lub czyścić raz na godzinę"
|
129 |
|
130 |
+
#: adrotate-functions.php:894
|
131 |
msgid "Form can not be (partially) empty!"
|
132 |
msgstr "Formularz nie może być (częściowo) pusty!"
|
133 |
|
134 |
+
#: adrotate-functions.php:898
|
135 |
+
msgid "No file uploaded."
|
136 |
+
msgstr "Nie wysłano pliku."
|
137 |
+
|
138 |
+
#: adrotate-functions.php:902
|
139 |
msgid "No adverts found."
|
140 |
msgstr "Nie znaleziono ogłoszeń."
|
141 |
|
142 |
+
#: adrotate-functions.php:906
|
143 |
+
msgid "Wrong file type. No file uploaded."
|
144 |
+
msgstr "Nieprawidłowy typ pliku. Nie przesłano pliku."
|
145 |
+
|
146 |
+
#: adrotate-functions.php:910
|
147 |
+
msgid "No file selected or file is too large."
|
148 |
+
msgstr "Żaden plik lub plik nie jest zbyt duży."
|
149 |
+
|
150 |
+
#: adrotate-functions.php:914
|
151 |
+
msgid "There was an error unzipping the file. Please try again later."
|
152 |
+
msgstr "Wystąpił błąd podczas odgrywania pliku. Spróbuj ponownie później."
|
153 |
+
|
154 |
+
#: adrotate-functions.php:918
|
155 |
msgid ""
|
156 |
"The advert hash is not usable or is missing required data. Please copy the "
|
157 |
"hash correctly and try again."
|
159 |
"Skrót reklamy nie nadaje się do zamieszkania lub brakuje wymaganych danych. "
|
160 |
"Skopiuj skrót poprawnie i spróbuj ponownie."
|
161 |
|
162 |
+
#: adrotate-functions.php:922
|
163 |
msgid ""
|
164 |
"The advert hash can not be used on the same site as it originated from or is "
|
165 |
"not a valid hash for importing."
|
167 |
"Skrót reklamy nie może być używany w tej samej witrynie, z której pochodzi "
|
168 |
"lub nie jest prawidłowym skrótem do importowania."
|
169 |
|
170 |
+
#: adrotate-functions.php:926
|
171 |
msgid "Unexpected error"
|
172 |
msgstr "Nieoczekiwany błąd"
|
173 |
|
174 |
+
#: adrotate-manage-publisher.php:879
|
175 |
msgid "AdRotate Advertiser"
|
176 |
msgstr "Reklamodawca AdRotate"
|
177 |
|
314 |
msgid "Disable Borlabs Cache Support"
|
315 |
msgstr "Wyłącz obsługę Borlabs Cache"
|
316 |
|
317 |
+
#: adrotate-output.php:645
|
318 |
msgid ""
|
319 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
320 |
msgstr ""
|
321 |
"Włączyłeś obsługę Borlabs Cache, ale Fragment caching nie jest włączony!"
|
322 |
|
323 |
+
#: adrotate-output.php:645
|
324 |
msgid "Enable Fragment Caching"
|
325 |
msgstr "Włącz Fragment Caching"
|
326 |
|
327 |
+
#: adrotate-output.php:652
|
328 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
329 |
msgstr "Folder banerów AdRotate jest chroniony przed zapisem lub nie istnieje."
|
330 |
|
331 |
+
#: adrotate-output.php:652
|
332 |
msgid "Set up your banner folder"
|
333 |
msgstr "Ustaw folder banerów"
|
334 |
|
335 |
+
#: adrotate-output.php:655
|
336 |
msgid ""
|
337 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
338 |
"can delete this plugin after AdRotate Pro is activated."
|
340 |
"Masz zainstalowany AdRotate Professional. Proszę przełączyć się na AdRotate "
|
341 |
"Pro! Możesz usunąć tę wtyczkę po aktywacji AdRotate Pro."
|
342 |
|
343 |
+
#: adrotate-output.php:655
|
344 |
msgid "Switch plugins"
|
345 |
msgstr "Przełączanie wtyczek"
|
346 |
|
347 |
+
#: adrotate-output.php:658
|
348 |
msgid ""
|
349 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
350 |
"installed twice or your current installation has the wrong folder name. "
|
354 |
"razy lub bieżąca instalacja ma niewłaściwą nazwę folderu. Proszę "
|
355 |
"zainstalować wtyczkę poprawnie!"
|
356 |
|
357 |
+
#: adrotate-output.php:658
|
358 |
msgid "Installation instructions"
|
359 |
msgstr "Instrukcje montażowe"
|
360 |
|
361 |
+
#: adrotate-output.php:734
|
362 |
msgid "one issue that requires"
|
363 |
msgid_plural "several issues that require"
|
364 |
msgstr[0] "jeden problem wymagający"
|
365 |
msgstr[1] "kilka problemów wymagających"
|
366 |
msgstr[2] "wiele problemów wymagających"
|
367 |
|
368 |
+
#: adrotate-output.php:734
|
369 |
msgid "your attention:"
|
370 |
msgstr "twoją uwagę:"
|
371 |
|
372 |
+
#: adrotate-output.php:765
|
373 |
msgid ""
|
374 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
375 |
"menu. If you need help getting started take a look at the"
|
377 |
"Dziękujemy za wybranie AdRotate Professional. Wszystko związane z AdRotate "
|
378 |
"jest w tym menu. Jeśli potrzebujesz pomocy przy rozpoczęciu"
|
379 |
|
380 |
+
#: adrotate-output.php:765
|
381 |
msgid "manuals"
|
382 |
msgstr "podręczników"
|
383 |
|
384 |
+
#: adrotate-output.php:765
|
385 |
msgid "and"
|
386 |
msgstr "i"
|
387 |
|
388 |
+
#: adrotate-output.php:765
|
389 |
msgid "forums"
|
390 |
msgstr "forum"
|
391 |
|
392 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
393 |
msgid "Post Tweet"
|
394 |
msgstr "Opublikuj tweet"
|
395 |
|
396 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
397 |
msgid "Share on Facebook"
|
398 |
msgstr "Udostępnij na Facebooku"
|
399 |
|
400 |
+
#: adrotate-output.php:820
|
401 |
msgid "Write review on wordpress.org"
|
402 |
msgstr "Napisz recenzję firmy WordPress.org"
|
403 |
|
404 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
405 |
msgid "Thank you very much for your help and support!"
|
406 |
msgstr "Dziękuję bardzo za pomoc i wsparcie!"
|
407 |
|
408 |
+
#: adrotate-output.php:851
|
409 |
msgid "Need help fast? Or do you have a question?"
|
410 |
msgstr "Potrzebujesz szybkiej pomocy? A może masz pytanie?"
|
411 |
|
412 |
+
#: adrotate-output.php:852
|
413 |
msgid "Help AdRotate Grow"
|
414 |
msgstr "Pomóż AdRotate rosnąć"
|
415 |
|
416 |
+
#: adrotate-output.php:853
|
417 |
msgid "Get more features with AdRotate Pro"
|
418 |
msgstr "Więcej ustawień z AdRotate Pro"
|
419 |
|
420 |
+
#: adrotate-output.php:859
|
421 |
msgid ""
|
422 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
423 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
428 |
"AdRotate. Zazwyczaj odpowiadam na pytania tego samego dnia, często z "
|
429 |
"rozwiązaniem w pierwszej odpowiedzi."
|
430 |
|
431 |
+
#: adrotate-output.php:860
|
432 |
msgid "AdRotate Manuals"
|
433 |
msgstr "Podręczniki AdRotate"
|
434 |
|
435 |
+
#: adrotate-output.php:860
|
436 |
msgid "Support Forums"
|
437 |
msgstr "Forum wsparcia"
|
438 |
|
439 |
+
#: adrotate-output.php:861
|
440 |
msgid ""
|
441 |
"When posting on the forum, please include a brief description of the "
|
442 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
448 |
"wyjaśnić, co próbujesz zrobić. Dostarczenie dodatkowych informacji zawsze "
|
449 |
"pomaga uzyskać lepszą odpowiedź lub poradę."
|
450 |
|
451 |
+
#: adrotate-output.php:863
|
452 |
msgid ""
|
453 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
454 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
461 |
"mediach społecznościowych nic cię nie kosztuje, ale robienie tego jest "
|
462 |
"bardzo pomocne jako promocja, która pomaga zapewnić przyszły rozwój."
|
463 |
|
464 |
+
#: adrotate-output.php:864
|
465 |
msgid "Write review on WordPress.org"
|
466 |
msgstr "Napisz recenzję firmy WordPress.org"
|
467 |
|
468 |
+
#: adrotate-output.php:867
|
469 |
msgid ""
|
470 |
"AdRotate Professional has a lot more functions for even better advertising "
|
471 |
"management. Check out the feature comparison tab on any of the product pages "
|
476 |
"stronie produktu, aby zobaczyć, co AdRotate Pro ma do zaoferowania dla "
|
477 |
"Ciebie!"
|
478 |
|
479 |
+
#: adrotate-output.php:867
|
480 |
msgid "Compare Licenses"
|
481 |
msgstr "Porównaj licencje"
|
482 |
|
483 |
+
#: adrotate-output.php:868
|
484 |
msgid "Single License"
|
485 |
msgstr "Licencja"
|
486 |
|
487 |
+
#: adrotate-output.php:868
|
488 |
msgid "Use on ONE WordPress installation."
|
489 |
msgstr "Użyj na JEDNEJ instalacji WordPress."
|
490 |
|
491 |
+
#: adrotate-output.php:868 adrotate-output.php:869
|
492 |
msgid "Buy now"
|
493 |
msgstr "Kup teraz"
|
494 |
|
495 |
+
#: adrotate-output.php:869
|
496 |
msgid "Multi License"
|
497 |
msgstr "Multi licencja"
|
498 |
|
499 |
+
#: adrotate-output.php:869
|
500 |
msgid "Use on up to FIVE WordPress installations."
|
501 |
msgstr "Użyj do PIĘCIU instalacji WordPress."
|
502 |
|
996 |
|
997 |
#: dashboard/publisher/adverts-edit.php:59
|
998 |
msgid ""
|
999 |
+
"There is a problem saving the image. Please re-select your image and re-save "
|
1000 |
+
"the advert!"
|
1001 |
msgstr ""
|
1002 |
"Wystąpił problem z zapisaniem obrazu. Ustaw ponownie obraz i zapisz ponownie "
|
1003 |
"reklamę!"
|
1004 |
|
1005 |
#: dashboard/publisher/adverts-edit.php:62
|
1006 |
msgid ""
|
1007 |
+
"This kind of advert can not have statistics enabled in AdRotate. Separate "
|
1008 |
+
"impression counting is available in AdRotate Pro."
|
1009 |
msgstr ""
|
1010 |
"Ten rodzaj reklamy nie może mieć włączonych statystyk w AdRotate. Zliczanie "
|
1011 |
"wyświetleń jest dostępne w AdRotate Pro."
|
2415 |
msgid "user-agents"
|
2416 |
msgstr "identyfikatory przeglądarek"
|
2417 |
|
2418 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:47
|
2419 |
+
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2420 |
+
#: dashboard/settings/statistics.php:85
|
2421 |
msgid "Update Options"
|
2422 |
msgstr "Zapisz opcje"
|
2423 |
|
3893 |
#~ "Reklama została zapisana, ale ma błędy, które mogą uniemożliwić jej "
|
3894 |
#~ "poprawne działanie. Proszę skontaktować się z obsługą."
|
3895 |
|
|
|
|
|
|
|
3896 |
#~ msgid "The file could not be read."
|
3897 |
#~ msgstr "Nie można odczytać pliku."
|
3898 |
|
3899 |
#~ msgid "Wrong file type."
|
3900 |
#~ msgstr "Nieprawidłowy typ pliku."
|
3901 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3902 |
#~ msgid "Invalid request"
|
3903 |
#~ msgstr "Nieprawidłowe żądanie"
|
3904 |
|
language/adrotate-pt_BR.mo
CHANGED
Binary file
|
language/adrotate-pt_BR.po
CHANGED
@@ -2,47 +2,47 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Português do Brasil\n"
|
9 |
"Language: pt_BR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.4.2\n"
|
14 |
-
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Loco-Version: 2.5.0; wp-5.6.2\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: adrotate-functions.php:
|
22 |
msgid "Advert saved"
|
23 |
msgstr "Anúncio salvo"
|
24 |
|
25 |
-
#: adrotate-functions.php:
|
26 |
msgid "Group saved"
|
27 |
msgstr "Grupo guardado"
|
28 |
|
29 |
-
#: adrotate-functions.php:
|
30 |
msgid "Banner image saved"
|
31 |
msgstr "A imagem da bandeira salvo"
|
32 |
|
33 |
-
#: adrotate-functions.php:
|
34 |
msgid "Ad(s) deleted"
|
35 |
msgstr "Anúncio(s) apagados"
|
36 |
|
37 |
-
#: adrotate-functions.php:
|
38 |
msgid "Group deleted"
|
39 |
msgstr "Grupo de excluídos"
|
40 |
|
41 |
-
#: adrotate-functions.php:
|
42 |
msgid "Asset(s) deleted"
|
43 |
msgstr "Activo(s) apagados"
|
44 |
|
45 |
-
#: adrotate-functions.php:
|
46 |
msgid ""
|
47 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
48 |
"are in order."
|
@@ -50,31 +50,31 @@ msgstr ""
|
|
50 |
"Alguma coisa saiu errada exclusão de um arquivo ou pasta. Certifique-se de "
|
51 |
"que as permissões estão em ordem."
|
52 |
|
53 |
-
#: adrotate-functions.php:
|
54 |
msgid "Advert(s) statistics reset"
|
55 |
msgstr "Anúncio(s) estatísticas de reposição"
|
56 |
|
57 |
-
#: adrotate-functions.php:
|
58 |
msgid "Advert(s) renewed"
|
59 |
msgstr "Anúncios(s) renovados"
|
60 |
|
61 |
-
#: adrotate-functions.php:
|
62 |
msgid "Advert(s) deactivated"
|
63 |
msgstr "Anúncios desativados"
|
64 |
|
65 |
-
#: adrotate-functions.php:
|
66 |
msgid "Advert(s) activated"
|
67 |
msgstr "Anúncio(s) ativado"
|
68 |
|
69 |
-
#: adrotate-functions.php:
|
70 |
msgid "Group including the Adverts in it deleted"
|
71 |
msgstr "Grupo de inclusão de Anúncios do excluído"
|
72 |
|
73 |
-
#: adrotate-functions.php:
|
74 |
msgid "Export created"
|
75 |
msgstr "Exportação criado"
|
76 |
|
77 |
-
#: adrotate-functions.php:
|
78 |
msgid ""
|
79 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
80 |
"below. Do not forget to check all settings and schedule the advert."
|
@@ -82,31 +82,31 @@ msgstr ""
|
|
82 |
"Anúncio HTML gerado e colocado na AdCode campo. Configurar o seu anúncio "
|
83 |
"abaixo. Não se esqueça de verificar todas as configurações e agendá-lo."
|
84 |
|
85 |
-
#: adrotate-functions.php:
|
86 |
msgid "Settings saved"
|
87 |
msgstr "As configurações salvas"
|
88 |
|
89 |
-
#: adrotate-functions.php:
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Banco de dados otimizado"
|
92 |
|
93 |
-
#: adrotate-functions.php:
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Banco de dados reparado"
|
96 |
|
97 |
-
#: adrotate-functions.php:
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Anúncios avaliados e status foram corrigidos quando necessário"
|
100 |
|
101 |
-
#: adrotate-functions.php:
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Limpeza completa"
|
104 |
|
105 |
-
#: adrotate-functions.php:
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Ação proibida"
|
108 |
|
109 |
-
#: adrotate-functions.php:
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
@@ -114,23 +114,41 @@ msgstr ""
|
|
114 |
"O anúncio foi salvo, mas tem um problema que pode impedi-lo de funcionar "
|
115 |
"corretamente. Reveja o anúncio colorido."
|
116 |
|
117 |
-
#: adrotate-functions.php:
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Dados não encontrados no período de tempo selecionado"
|
120 |
|
121 |
-
#: adrotate-functions.php:
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr "Banco de dados só pode ser otimizados ou limpo uma vez a cada hora"
|
124 |
|
125 |
-
#: adrotate-functions.php:
|
126 |
msgid "Form can not be (partially) empty!"
|
127 |
msgstr "O formulário não pode ser (parcialmente) vazio!"
|
128 |
|
129 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
130 |
msgid "No adverts found."
|
131 |
msgstr "Não foram encontrados anúncios."
|
132 |
|
133 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid ""
|
135 |
"The advert hash is not usable or is missing required data. Please copy the "
|
136 |
"hash correctly and try again."
|
@@ -138,7 +156,7 @@ msgstr ""
|
|
138 |
"O anúncio de hash não é utilizável ou é falta de dados necessários. Por "
|
139 |
"favor, copie o hash corretamente e tente novamente."
|
140 |
|
141 |
-
#: adrotate-functions.php:
|
142 |
msgid ""
|
143 |
"The advert hash can not be used on the same site as it originated from or is "
|
144 |
"not a valid hash for importing."
|
@@ -146,11 +164,11 @@ msgstr ""
|
|
146 |
"O anúncio de hash não pode ser usado no mesmo site que originou-se ou não é "
|
147 |
"um hash válido para a importação."
|
148 |
|
149 |
-
#: adrotate-functions.php:
|
150 |
msgid "Unexpected error"
|
151 |
msgstr "Erro inesperado"
|
152 |
|
153 |
-
#: adrotate-manage-publisher.php:
|
154 |
msgid "AdRotate Advertiser"
|
155 |
msgstr "AdRotate Anunciante"
|
156 |
|
@@ -273,26 +291,26 @@ msgstr ""
|
|
273 |
msgid "Disable Borlabs Cache Support"
|
274 |
msgstr "Desativar Borlabs Suporte De Cache"
|
275 |
|
276 |
-
#: adrotate-output.php:
|
277 |
msgid ""
|
278 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
279 |
msgstr ""
|
280 |
"Você tiver ativado Borlabs suporte a Cache, mas o cache de Fragmento não "
|
281 |
"está habilitado!"
|
282 |
|
283 |
-
#: adrotate-output.php:
|
284 |
msgid "Enable Fragment Caching"
|
285 |
msgstr "Habilitar O Cache De Fragmento"
|
286 |
|
287 |
-
#: adrotate-output.php:
|
288 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
289 |
msgstr "O AdRotate Banner pasta não é gravável ou não existe."
|
290 |
|
291 |
-
#: adrotate-output.php:
|
292 |
msgid "Set up your banner folder"
|
293 |
msgstr "Configurar o seu banner pasta"
|
294 |
|
295 |
-
#: adrotate-output.php:
|
296 |
msgid ""
|
297 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
298 |
"can delete this plugin after AdRotate Pro is activated."
|
@@ -300,11 +318,11 @@ msgstr ""
|
|
300 |
"Você tem AdRotate Professional instalado. Por favor, mude para o AdRotate "
|
301 |
"Pro! Você pode excluir este plugin depois AdRotate Pro está ativado."
|
302 |
|
303 |
-
#: adrotate-output.php:
|
304 |
msgid "Switch plugins"
|
305 |
msgstr "Interruptor de plugins"
|
306 |
|
307 |
-
#: adrotate-output.php:
|
308 |
msgid ""
|
309 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
310 |
"installed twice or your current installation has the wrong folder name. "
|
@@ -314,15 +332,15 @@ msgstr ""
|
|
314 |
"vezes ou a sua instalação atual tiver errado o nome da pasta. Por favor "
|
315 |
"instale o plugin corretamente!"
|
316 |
|
317 |
-
#: adrotate-output.php:
|
318 |
msgid "Installation instructions"
|
319 |
msgstr "Instruções de instalação"
|
320 |
|
321 |
-
#: adrotate-output.php:
|
322 |
msgid "your attention:"
|
323 |
msgstr "atenção:"
|
324 |
|
325 |
-
#: adrotate-output.php:
|
326 |
msgid ""
|
327 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
328 |
"menu. If you need help getting started take a look at the"
|
@@ -330,47 +348,47 @@ msgstr ""
|
|
330 |
"Obrigado por escolher AdRotate. Tudo relacionado com o AdRotate é neste "
|
331 |
"menu. Se você precisar de ajuda para começar, dê uma olhada no"
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "manuals"
|
335 |
msgstr "manuais"
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "and"
|
339 |
msgstr "e"
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "forums"
|
343 |
msgstr "fóruns"
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "Post Tweet"
|
347 |
msgstr "Postar Tweet"
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid "Share on Facebook"
|
351 |
msgstr "Compartilhar no Facebook"
|
352 |
|
353 |
-
#: adrotate-output.php:
|
354 |
msgid "Write review on wordpress.org"
|
355 |
msgstr "Escreva revisão sobre WordPress.org"
|
356 |
|
357 |
-
#: adrotate-output.php:
|
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:
|
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:
|
366 |
msgid "Help AdRotate Grow"
|
367 |
msgstr "Ajuda AdRotate Crescer"
|
368 |
|
369 |
-
#: adrotate-output.php:
|
370 |
msgid "Get more features with AdRotate Pro"
|
371 |
msgstr "Obter mais recursos com AdRotate Pro"
|
372 |
|
373 |
-
#: adrotate-output.php:
|
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,15 +399,15 @@ msgstr ""
|
|
381 |
"AdRotate. Normalmente respondo perguntas no mesmo dia, muitas vezes com uma "
|
382 |
"solução na primeira resposta."
|
383 |
|
384 |
-
#: adrotate-output.php:
|
385 |
msgid "AdRotate Manuals"
|
386 |
msgstr "Manuais de AdRotate"
|
387 |
|
388 |
-
#: adrotate-output.php:
|
389 |
msgid "Support Forums"
|
390 |
msgstr "Fóruns de suporte"
|
391 |
|
392 |
-
#: adrotate-output.php:
|
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,7 +419,7 @@ msgstr ""
|
|
401 |
"está tentando fazer. Fornecer algumas informações extras sempre ajuda a "
|
402 |
"obter uma melhor resposta ou aconselhamento."
|
403 |
|
404 |
-
#: adrotate-output.php:
|
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,11 +432,11 @@ msgstr ""
|
|
414 |
"de fazê-lo é super útil como promoção que ajuda a garantir o desenvolvimento "
|
415 |
"futuro."
|
416 |
|
417 |
-
#: adrotate-output.php:
|
418 |
msgid "Write review on WordPress.org"
|
419 |
msgstr "Escreva revisão sobre WordPress.org"
|
420 |
|
421 |
-
#: adrotate-output.php:
|
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,27 +447,27 @@ msgstr ""
|
|
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:
|
433 |
msgid "Compare Licenses"
|
434 |
msgstr "Comparar licenças"
|
435 |
|
436 |
-
#: adrotate-output.php:
|
437 |
msgid "Single License"
|
438 |
msgstr "Licença"
|
439 |
|
440 |
-
#: adrotate-output.php:
|
441 |
msgid "Use on ONE WordPress installation."
|
442 |
msgstr "O uso em UMA instalação do WordPress."
|
443 |
|
444 |
-
#: adrotate-output.php:
|
445 |
msgid "Buy now"
|
446 |
msgstr "Comprar agora"
|
447 |
|
448 |
-
#: adrotate-output.php:
|
449 |
msgid "Multi License"
|
450 |
msgstr "Multi-Licença"
|
451 |
|
452 |
-
#: adrotate-output.php:
|
453 |
msgid "Use on up to FIVE WordPress installations."
|
454 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
455 |
|
@@ -952,16 +970,16 @@ msgstr ""
|
|
952 |
|
953 |
#: dashboard/publisher/adverts-edit.php:59
|
954 |
msgid ""
|
955 |
-
"There is a problem saving the image. Please re-
|
956 |
-
"the
|
957 |
msgstr ""
|
958 |
"Há um problema ao salvar a imagem. Por favor, re-definir a sua imagem e "
|
959 |
"voltar a guardar o anúncio!"
|
960 |
|
961 |
#: dashboard/publisher/adverts-edit.php:62
|
962 |
msgid ""
|
963 |
-
"This kind of advert can not have statistics enabled in AdRotate.
|
964 |
-
"counting is available in AdRotate Pro."
|
965 |
msgstr ""
|
966 |
"Este tipo de anúncio não pode ter estatísticas habilitadas no AdRotate. A "
|
967 |
"contagem de impressões está disponível no AdRotate Pro."
|
@@ -2395,9 +2413,9 @@ msgstr "Saiba mais sobre"
|
|
2395 |
msgid "user-agents"
|
2396 |
msgstr "agentes de utilizador"
|
2397 |
|
2398 |
-
#: dashboard/settings/general.php:83 dashboard/settings/
|
2399 |
-
#: dashboard/settings/
|
2400 |
-
#: dashboard/settings/
|
2401 |
msgid "Update Options"
|
2402 |
msgstr "Opções De Atualização"
|
2403 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AdRotate\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-04-07 16:23-0600\n"
|
6 |
+
"PO-Revision-Date: 2022-04-07 16:24-0600\n"
|
7 |
"Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
|
8 |
"Language-Team: Português do Brasil\n"
|
9 |
"Language: pt_BR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Generator: Poedit 3.0.1\n"
|
15 |
+
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Loco-Version: 2.5.0; wp-5.6.2\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: adrotate-functions.php:800
|
22 |
msgid "Advert saved"
|
23 |
msgstr "Anúncio salvo"
|
24 |
|
25 |
+
#: adrotate-functions.php:804
|
26 |
msgid "Group saved"
|
27 |
msgstr "Grupo guardado"
|
28 |
|
29 |
+
#: adrotate-functions.php:808
|
30 |
msgid "Banner image saved"
|
31 |
msgstr "A imagem da bandeira salvo"
|
32 |
|
33 |
+
#: adrotate-functions.php:812
|
34 |
msgid "Ad(s) deleted"
|
35 |
msgstr "Anúncio(s) apagados"
|
36 |
|
37 |
+
#: adrotate-functions.php:816
|
38 |
msgid "Group deleted"
|
39 |
msgstr "Grupo de excluídos"
|
40 |
|
41 |
+
#: adrotate-functions.php:820
|
42 |
msgid "Asset(s) deleted"
|
43 |
msgstr "Activo(s) apagados"
|
44 |
|
45 |
+
#: adrotate-functions.php:824
|
46 |
msgid ""
|
47 |
"Something went wrong deleting the file or folder. Make sure your permissions "
|
48 |
"are in order."
|
50 |
"Alguma coisa saiu errada exclusão de um arquivo ou pasta. Certifique-se de "
|
51 |
"que as permissões estão em ordem."
|
52 |
|
53 |
+
#: adrotate-functions.php:828
|
54 |
msgid "Advert(s) statistics reset"
|
55 |
msgstr "Anúncio(s) estatísticas de reposição"
|
56 |
|
57 |
+
#: adrotate-functions.php:832
|
58 |
msgid "Advert(s) renewed"
|
59 |
msgstr "Anúncios(s) renovados"
|
60 |
|
61 |
+
#: adrotate-functions.php:836
|
62 |
msgid "Advert(s) deactivated"
|
63 |
msgstr "Anúncios desativados"
|
64 |
|
65 |
+
#: adrotate-functions.php:840
|
66 |
msgid "Advert(s) activated"
|
67 |
msgstr "Anúncio(s) ativado"
|
68 |
|
69 |
+
#: adrotate-functions.php:844
|
70 |
msgid "Group including the Adverts in it deleted"
|
71 |
msgstr "Grupo de inclusão de Anúncios do excluído"
|
72 |
|
73 |
+
#: adrotate-functions.php:848
|
74 |
msgid "Export created"
|
75 |
msgstr "Exportação criado"
|
76 |
|
77 |
+
#: adrotate-functions.php:852
|
78 |
msgid ""
|
79 |
"Advert HTML generated and placed in the AdCode field. Configure your advert "
|
80 |
"below. Do not forget to check all settings and schedule the advert."
|
82 |
"Anúncio HTML gerado e colocado na AdCode campo. Configurar o seu anúncio "
|
83 |
"abaixo. Não se esqueça de verificar todas as configurações e agendá-lo."
|
84 |
|
85 |
+
#: adrotate-functions.php:857
|
86 |
msgid "Settings saved"
|
87 |
msgstr "As configurações salvas"
|
88 |
|
89 |
+
#: adrotate-functions.php:861
|
90 |
msgid "Database optimized"
|
91 |
msgstr "Banco de dados otimizado"
|
92 |
|
93 |
+
#: adrotate-functions.php:865
|
94 |
msgid "Database repaired"
|
95 |
msgstr "Banco de dados reparado"
|
96 |
|
97 |
+
#: adrotate-functions.php:869
|
98 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
99 |
msgstr "Anúncios avaliados e status foram corrigidos quando necessário"
|
100 |
|
101 |
+
#: adrotate-functions.php:873
|
102 |
msgid "Cleanup complete"
|
103 |
msgstr "Limpeza completa"
|
104 |
|
105 |
+
#: adrotate-functions.php:878
|
106 |
msgid "Action prohibited"
|
107 |
msgstr "Ação proibida"
|
108 |
|
109 |
+
#: adrotate-functions.php:882
|
110 |
msgid ""
|
111 |
"The advert was saved but has an issue which might prevent it from working "
|
112 |
"properly. Review the colored advert."
|
114 |
"O anúncio foi salvo, mas tem um problema que pode impedi-lo de funcionar "
|
115 |
"corretamente. Reveja o anúncio colorido."
|
116 |
|
117 |
+
#: adrotate-functions.php:886
|
118 |
msgid "No data found in selected time period"
|
119 |
msgstr "Dados não encontrados no período de tempo selecionado"
|
120 |
|
121 |
+
#: adrotate-functions.php:890
|
122 |
msgid "Database can only be optimized or cleaned once every hour"
|
123 |
msgstr "Banco de dados só pode ser otimizados ou limpo uma vez a cada hora"
|
124 |
|
125 |
+
#: adrotate-functions.php:894
|
126 |
msgid "Form can not be (partially) empty!"
|
127 |
msgstr "O formulário não pode ser (parcialmente) vazio!"
|
128 |
|
129 |
+
#: adrotate-functions.php:898
|
130 |
+
msgid "No file uploaded."
|
131 |
+
msgstr "Nenhum arquivo enviado."
|
132 |
+
|
133 |
+
#: adrotate-functions.php:902
|
134 |
msgid "No adverts found."
|
135 |
msgstr "Não foram encontrados anúncios."
|
136 |
|
137 |
+
#: adrotate-functions.php:906
|
138 |
+
msgid "Wrong file type. No file uploaded."
|
139 |
+
msgstr "Nenhum arquivo enviado."
|
140 |
+
|
141 |
+
#: adrotate-functions.php:910
|
142 |
+
msgid "No file selected or file is too large."
|
143 |
+
msgstr "Nenhum arquivo selecionado ou arquivo é muito grande."
|
144 |
+
|
145 |
+
#: adrotate-functions.php:914
|
146 |
+
msgid "There was an error unzipping the file. Please try again later."
|
147 |
+
msgstr ""
|
148 |
+
"Houve um erro descompactando o arquivo. Por favor, tente novamente mais "
|
149 |
+
"tarde."
|
150 |
+
|
151 |
+
#: adrotate-functions.php:918
|
152 |
msgid ""
|
153 |
"The advert hash is not usable or is missing required data. Please copy the "
|
154 |
"hash correctly and try again."
|
156 |
"O anúncio de hash não é utilizável ou é falta de dados necessários. Por "
|
157 |
"favor, copie o hash corretamente e tente novamente."
|
158 |
|
159 |
+
#: adrotate-functions.php:922
|
160 |
msgid ""
|
161 |
"The advert hash can not be used on the same site as it originated from or is "
|
162 |
"not a valid hash for importing."
|
164 |
"O anúncio de hash não pode ser usado no mesmo site que originou-se ou não é "
|
165 |
"um hash válido para a importação."
|
166 |
|
167 |
+
#: adrotate-functions.php:926
|
168 |
msgid "Unexpected error"
|
169 |
msgstr "Erro inesperado"
|
170 |
|
171 |
+
#: adrotate-manage-publisher.php:879
|
172 |
msgid "AdRotate Advertiser"
|
173 |
msgstr "AdRotate Anunciante"
|
174 |
|
291 |
msgid "Disable Borlabs Cache Support"
|
292 |
msgstr "Desativar Borlabs Suporte De Cache"
|
293 |
|
294 |
+
#: adrotate-output.php:645
|
295 |
msgid ""
|
296 |
"You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
297 |
msgstr ""
|
298 |
"Você tiver ativado Borlabs suporte a Cache, mas o cache de Fragmento não "
|
299 |
"está habilitado!"
|
300 |
|
301 |
+
#: adrotate-output.php:645
|
302 |
msgid "Enable Fragment Caching"
|
303 |
msgstr "Habilitar O Cache De Fragmento"
|
304 |
|
305 |
+
#: adrotate-output.php:652
|
306 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
307 |
msgstr "O AdRotate Banner pasta não é gravável ou não existe."
|
308 |
|
309 |
+
#: adrotate-output.php:652
|
310 |
msgid "Set up your banner folder"
|
311 |
msgstr "Configurar o seu banner pasta"
|
312 |
|
313 |
+
#: adrotate-output.php:655
|
314 |
msgid ""
|
315 |
"You have AdRotate Professional installed. Please switch to AdRotate Pro! You "
|
316 |
"can delete this plugin after AdRotate Pro is activated."
|
318 |
"Você tem AdRotate Professional instalado. Por favor, mude para o AdRotate "
|
319 |
"Pro! Você pode excluir este plugin depois AdRotate Pro está ativado."
|
320 |
|
321 |
+
#: adrotate-output.php:655
|
322 |
msgid "Switch plugins"
|
323 |
msgstr "Interruptor de plugins"
|
324 |
|
325 |
+
#: adrotate-output.php:658
|
326 |
msgid ""
|
327 |
"Something is wrong with your installation of AdRotate. Either the plugin is "
|
328 |
"installed twice or your current installation has the wrong folder name. "
|
332 |
"vezes ou a sua instalação atual tiver errado o nome da pasta. Por favor "
|
333 |
"instale o plugin corretamente!"
|
334 |
|
335 |
+
#: adrotate-output.php:658
|
336 |
msgid "Installation instructions"
|
337 |
msgstr "Instruções de instalação"
|
338 |
|
339 |
+
#: adrotate-output.php:734
|
340 |
msgid "your attention:"
|
341 |
msgstr "atenção:"
|
342 |
|
343 |
+
#: adrotate-output.php:765
|
344 |
msgid ""
|
345 |
"Thank you for choosing AdRotate. Everything related to AdRotate is in this "
|
346 |
"menu. If you need help getting started take a look at the"
|
348 |
"Obrigado por escolher AdRotate. Tudo relacionado com o AdRotate é neste "
|
349 |
"menu. Se você precisar de ajuda para começar, dê uma olhada no"
|
350 |
|
351 |
+
#: adrotate-output.php:765
|
352 |
msgid "manuals"
|
353 |
msgstr "manuais"
|
354 |
|
355 |
+
#: adrotate-output.php:765
|
356 |
msgid "and"
|
357 |
msgstr "e"
|
358 |
|
359 |
+
#: adrotate-output.php:765
|
360 |
msgid "forums"
|
361 |
msgstr "fóruns"
|
362 |
|
363 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
364 |
msgid "Post Tweet"
|
365 |
msgstr "Postar Tweet"
|
366 |
|
367 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
368 |
msgid "Share on Facebook"
|
369 |
msgstr "Compartilhar no Facebook"
|
370 |
|
371 |
+
#: adrotate-output.php:820
|
372 |
msgid "Write review on wordpress.org"
|
373 |
msgstr "Escreva revisão sobre WordPress.org"
|
374 |
|
375 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
376 |
msgid "Thank you very much for your help and support!"
|
377 |
msgstr "Muito obrigado por sua ajuda e apoio!"
|
378 |
|
379 |
+
#: adrotate-output.php:851
|
380 |
msgid "Need help fast? Or do you have a question?"
|
381 |
msgstr "Precisa de ajuda rápido? Ou você tem uma pergunta?"
|
382 |
|
383 |
+
#: adrotate-output.php:852
|
384 |
msgid "Help AdRotate Grow"
|
385 |
msgstr "Ajuda AdRotate Crescer"
|
386 |
|
387 |
+
#: adrotate-output.php:853
|
388 |
msgid "Get more features with AdRotate Pro"
|
389 |
msgstr "Obter mais recursos com AdRotate Pro"
|
390 |
|
391 |
+
#: adrotate-output.php:859
|
392 |
msgid ""
|
393 |
"If you need help, or have questions about AdRotate, the best and fastest way "
|
394 |
"to get your answer is via the AdRotate support forum. Usually I answer "
|
399 |
"AdRotate. Normalmente respondo perguntas no mesmo dia, muitas vezes com uma "
|
400 |
"solução na primeira resposta."
|
401 |
|
402 |
+
#: adrotate-output.php:860
|
403 |
msgid "AdRotate Manuals"
|
404 |
msgstr "Manuais de AdRotate"
|
405 |
|
406 |
+
#: adrotate-output.php:860
|
407 |
msgid "Support Forums"
|
408 |
msgstr "Fóruns de suporte"
|
409 |
|
410 |
+
#: adrotate-output.php:861
|
411 |
msgid ""
|
412 |
"When posting on the forum, please include a brief description of the "
|
413 |
"problem, include any errors or symptoms. Often it helps if you try to "
|
419 |
"está tentando fazer. Fornecer algumas informações extras sempre ajuda a "
|
420 |
"obter uma melhor resposta ou aconselhamento."
|
421 |
|
422 |
+
#: adrotate-output.php:863
|
423 |
msgid ""
|
424 |
"Consider writing a review, sharing AdRotate in Social media or making a "
|
425 |
"donation if you like the plugin or if you find it useful. Writing a review "
|
432 |
"de fazê-lo é super útil como promoção que ajuda a garantir o desenvolvimento "
|
433 |
"futuro."
|
434 |
|
435 |
+
#: adrotate-output.php:864
|
436 |
msgid "Write review on WordPress.org"
|
437 |
msgstr "Escreva revisão sobre WordPress.org"
|
438 |
|
439 |
+
#: adrotate-output.php:867
|
440 |
msgid ""
|
441 |
"AdRotate Professional has a lot more functions for even better advertising "
|
442 |
"management. Check out the feature comparison tab on any of the product pages "
|
447 |
"qualquer uma das páginas de produto para ver o que AdRotate Pro tem a "
|
448 |
"oferecer para você!"
|
449 |
|
450 |
+
#: adrotate-output.php:867
|
451 |
msgid "Compare Licenses"
|
452 |
msgstr "Comparar licenças"
|
453 |
|
454 |
+
#: adrotate-output.php:868
|
455 |
msgid "Single License"
|
456 |
msgstr "Licença"
|
457 |
|
458 |
+
#: adrotate-output.php:868
|
459 |
msgid "Use on ONE WordPress installation."
|
460 |
msgstr "O uso em UMA instalação do WordPress."
|
461 |
|
462 |
+
#: adrotate-output.php:868 adrotate-output.php:869
|
463 |
msgid "Buy now"
|
464 |
msgstr "Comprar agora"
|
465 |
|
466 |
+
#: adrotate-output.php:869
|
467 |
msgid "Multi License"
|
468 |
msgstr "Multi-Licença"
|
469 |
|
470 |
+
#: adrotate-output.php:869
|
471 |
msgid "Use on up to FIVE WordPress installations."
|
472 |
msgstr "Utilizar em até CINCO instalações WordPress."
|
473 |
|
970 |
|
971 |
#: dashboard/publisher/adverts-edit.php:59
|
972 |
msgid ""
|
973 |
+
"There is a problem saving the image. Please re-select your image and re-save "
|
974 |
+
"the advert!"
|
975 |
msgstr ""
|
976 |
"Há um problema ao salvar a imagem. Por favor, re-definir a sua imagem e "
|
977 |
"voltar a guardar o anúncio!"
|
978 |
|
979 |
#: dashboard/publisher/adverts-edit.php:62
|
980 |
msgid ""
|
981 |
+
"This kind of advert can not have statistics enabled in AdRotate. Separate "
|
982 |
+
"impression counting is available in AdRotate Pro."
|
983 |
msgstr ""
|
984 |
"Este tipo de anúncio não pode ter estatísticas habilitadas no AdRotate. A "
|
985 |
"contagem de impressões está disponível no AdRotate Pro."
|
2413 |
msgid "user-agents"
|
2414 |
msgstr "agentes de utilizador"
|
2415 |
|
2416 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:47
|
2417 |
+
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
2418 |
+
#: dashboard/settings/statistics.php:85
|
2419 |
msgid "Update Options"
|
2420 |
msgstr "Opções De Atualização"
|
2421 |
|
language/adrotate.pot
CHANGED
@@ -2,134 +2,150 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
-
"POT-Creation-Date: 2022-
|
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"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.4.2\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"
|
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: adrotate-functions.php:
|
21 |
msgid "Advert saved"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: adrotate-functions.php:
|
25 |
msgid "Group saved"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: adrotate-functions.php:
|
29 |
msgid "Banner image saved"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: adrotate-functions.php:
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: adrotate-functions.php:
|
37 |
msgid "Group deleted"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: adrotate-functions.php:
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: adrotate-functions.php:
|
45 |
msgid "Something went wrong deleting the file or folder. Make sure your permissions are in order."
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: adrotate-functions.php:
|
49 |
msgid "Advert(s) statistics reset"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: adrotate-functions.php:
|
53 |
msgid "Advert(s) renewed"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: adrotate-functions.php:
|
57 |
msgid "Advert(s) deactivated"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: adrotate-functions.php:
|
61 |
msgid "Advert(s) activated"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: adrotate-functions.php:
|
65 |
msgid "Group including the Adverts in it deleted"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: adrotate-functions.php:
|
69 |
msgid "Export created"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: adrotate-functions.php:
|
73 |
msgid "Advert HTML generated and placed in the AdCode field. Configure your advert below. Do not forget to check all settings and schedule the advert."
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: adrotate-functions.php:
|
77 |
msgid "Settings saved"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: adrotate-functions.php:
|
81 |
msgid "Database optimized"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: adrotate-functions.php:
|
85 |
msgid "Database repaired"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: adrotate-functions.php:
|
89 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: adrotate-functions.php:
|
93 |
msgid "Cleanup complete"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: adrotate-functions.php:
|
97 |
msgid "Action prohibited"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: adrotate-functions.php:
|
101 |
msgid "The advert was saved but has an issue which might prevent it from working properly. Review the colored advert."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: adrotate-functions.php:
|
105 |
msgid "No data found in selected time period"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: adrotate-functions.php:
|
109 |
msgid "Database can only be optimized or cleaned once every hour"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: adrotate-functions.php:
|
113 |
msgid "Form can not be (partially) empty!"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
117 |
msgid "No adverts found."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: adrotate-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
msgid "The advert hash is not usable or is missing required data. Please copy the hash correctly and try again."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: adrotate-functions.php:
|
125 |
msgid "The advert hash can not be used on the same site as it originated from or is not a valid hash for importing."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: adrotate-functions.php:
|
129 |
msgid "Unexpected error"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: adrotate-manage-publisher.php:
|
133 |
msgid "AdRotate Advertiser"
|
134 |
msgstr ""
|
135 |
|
@@ -218,135 +234,135 @@ msgstr ""
|
|
218 |
msgid "Disable Borlabs Cache Support"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: adrotate-output.php:
|
222 |
msgid "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: adrotate-output.php:
|
226 |
msgid "Enable Fragment Caching"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: adrotate-output.php:
|
230 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: adrotate-output.php:
|
234 |
msgid "Set up your banner folder"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: adrotate-output.php:
|
238 |
msgid "You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: adrotate-output.php:
|
242 |
msgid "Switch plugins"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: adrotate-output.php:
|
246 |
msgid "Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: adrotate-output.php:
|
250 |
msgid "Installation instructions"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: adrotate-output.php:
|
254 |
msgid "your attention:"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: adrotate-output.php:
|
258 |
msgid "Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: adrotate-output.php:
|
262 |
msgid "manuals"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: adrotate-output.php:
|
266 |
msgid "and"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: adrotate-output.php:
|
270 |
msgid "forums"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: adrotate-output.php:
|
274 |
msgid "Post Tweet"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: adrotate-output.php:
|
278 |
msgid "Share on Facebook"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: adrotate-output.php:
|
282 |
msgid "Write review on wordpress.org"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: adrotate-output.php:
|
286 |
msgid "Thank you very much for your help and support!"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: adrotate-output.php:
|
290 |
msgid "Need help fast? Or do you have a question?"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: adrotate-output.php:
|
294 |
msgid "Help AdRotate Grow"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: adrotate-output.php:
|
298 |
msgid "Get more features with AdRotate Pro"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: adrotate-output.php:
|
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:
|
306 |
msgid "AdRotate Manuals"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: adrotate-output.php:
|
310 |
msgid "Support Forums"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: adrotate-output.php:
|
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:
|
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:
|
322 |
msgid "Write review on WordPress.org"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: adrotate-output.php:
|
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:
|
330 |
msgid "Compare Licenses"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: adrotate-output.php:
|
334 |
msgid "Single License"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: adrotate-output.php:
|
338 |
msgid "Use on ONE WordPress installation."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: adrotate-output.php:
|
342 |
msgid "Buy now"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: adrotate-output.php:
|
346 |
msgid "Multi License"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: adrotate-output.php:
|
350 |
msgid "Use on up to FIVE WordPress installations."
|
351 |
msgstr ""
|
352 |
|
@@ -766,11 +782,11 @@ msgid "You did use %asset% in your AdCode but did not select a file to use!"
|
|
766 |
msgstr ""
|
767 |
|
768 |
#: dashboard/publisher/adverts-edit.php:59
|
769 |
-
msgid "There is a problem saving the image. Please re-
|
770 |
msgstr ""
|
771 |
|
772 |
#: dashboard/publisher/adverts-edit.php:62
|
773 |
-
msgid "This kind of advert can not have statistics enabled in AdRotate.
|
774 |
msgstr ""
|
775 |
|
776 |
#: dashboard/publisher/adverts-edit.php:67
|
@@ -1972,9 +1988,9 @@ msgstr ""
|
|
1972 |
msgid "user-agents"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: dashboard/settings/general.php:83 dashboard/settings/
|
1976 |
-
#: dashboard/settings/
|
1977 |
-
#: dashboard/settings/
|
1978 |
msgid "Update Options"
|
1979 |
msgstr ""
|
1980 |
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: AdRotate\n"
|
5 |
+
"POT-Creation-Date: 2022-04-07 16:27-0600\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"
|
9 |
+
"Language: en\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 3.0.1\n"
|
15 |
+
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: adrotate-functions.php:800
|
21 |
msgid "Advert saved"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: adrotate-functions.php:804
|
25 |
msgid "Group saved"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: adrotate-functions.php:808
|
29 |
msgid "Banner image saved"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: adrotate-functions.php:812
|
33 |
msgid "Ad(s) deleted"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: adrotate-functions.php:816
|
37 |
msgid "Group deleted"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: adrotate-functions.php:820
|
41 |
msgid "Asset(s) deleted"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: adrotate-functions.php:824
|
45 |
msgid "Something went wrong deleting the file or folder. Make sure your permissions are in order."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: adrotate-functions.php:828
|
49 |
msgid "Advert(s) statistics reset"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: adrotate-functions.php:832
|
53 |
msgid "Advert(s) renewed"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: adrotate-functions.php:836
|
57 |
msgid "Advert(s) deactivated"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: adrotate-functions.php:840
|
61 |
msgid "Advert(s) activated"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: adrotate-functions.php:844
|
65 |
msgid "Group including the Adverts in it deleted"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: adrotate-functions.php:848
|
69 |
msgid "Export created"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: adrotate-functions.php:852
|
73 |
msgid "Advert HTML generated and placed in the AdCode field. Configure your advert below. Do not forget to check all settings and schedule the advert."
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: adrotate-functions.php:857
|
77 |
msgid "Settings saved"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: adrotate-functions.php:861
|
81 |
msgid "Database optimized"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: adrotate-functions.php:865
|
85 |
msgid "Database repaired"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: adrotate-functions.php:869
|
89 |
msgid "Adverts evaluated and statuses have been corrected where required"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: adrotate-functions.php:873
|
93 |
msgid "Cleanup complete"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: adrotate-functions.php:878
|
97 |
msgid "Action prohibited"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: adrotate-functions.php:882
|
101 |
msgid "The advert was saved but has an issue which might prevent it from working properly. Review the colored advert."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: adrotate-functions.php:886
|
105 |
msgid "No data found in selected time period"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: adrotate-functions.php:890
|
109 |
msgid "Database can only be optimized or cleaned once every hour"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: adrotate-functions.php:894
|
113 |
msgid "Form can not be (partially) empty!"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: adrotate-functions.php:898
|
117 |
+
msgid "No file uploaded."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: adrotate-functions.php:902
|
121 |
msgid "No adverts found."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: adrotate-functions.php:906
|
125 |
+
msgid "Wrong file type. No file uploaded."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: adrotate-functions.php:910
|
129 |
+
msgid "No file selected or file is too large."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: adrotate-functions.php:914
|
133 |
+
msgid "There was an error unzipping the file. Please try again later."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: adrotate-functions.php:918
|
137 |
msgid "The advert hash is not usable or is missing required data. Please copy the hash correctly and try again."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: adrotate-functions.php:922
|
141 |
msgid "The advert hash can not be used on the same site as it originated from or is not a valid hash for importing."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: adrotate-functions.php:926
|
145 |
msgid "Unexpected error"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: adrotate-manage-publisher.php:879
|
149 |
msgid "AdRotate Advertiser"
|
150 |
msgstr ""
|
151 |
|
234 |
msgid "Disable Borlabs Cache Support"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: adrotate-output.php:645
|
238 |
msgid "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: adrotate-output.php:645
|
242 |
msgid "Enable Fragment Caching"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: adrotate-output.php:652
|
246 |
msgid "Your AdRotate Banner folder is not writable or does not exist."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: adrotate-output.php:652
|
250 |
msgid "Set up your banner folder"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: adrotate-output.php:655
|
254 |
msgid "You have AdRotate Professional installed. Please switch to AdRotate Pro! You can delete this plugin after AdRotate Pro is activated."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: adrotate-output.php:655
|
258 |
msgid "Switch plugins"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: adrotate-output.php:658
|
262 |
msgid "Something is wrong with your installation of AdRotate. Either the plugin is installed twice or your current installation has the wrong folder name. Please install the plugin properly!"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: adrotate-output.php:658
|
266 |
msgid "Installation instructions"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: adrotate-output.php:734
|
270 |
msgid "your attention:"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: adrotate-output.php:765
|
274 |
msgid "Thank you for choosing AdRotate. Everything related to AdRotate is in this menu. If you need help getting started take a look at the"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: adrotate-output.php:765
|
278 |
msgid "manuals"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: adrotate-output.php:765
|
282 |
msgid "and"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: adrotate-output.php:765
|
286 |
msgid "forums"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
290 |
msgid "Post Tweet"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: adrotate-output.php:820 adrotate-output.php:864
|
294 |
msgid "Share on Facebook"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: adrotate-output.php:820
|
298 |
msgid "Write review on wordpress.org"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: adrotate-output.php:821 adrotate-output.php:865
|
302 |
msgid "Thank you very much for your help and support!"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: adrotate-output.php:851
|
306 |
msgid "Need help fast? Or do you have a question?"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: adrotate-output.php:852
|
310 |
msgid "Help AdRotate Grow"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: adrotate-output.php:853
|
314 |
msgid "Get more features with AdRotate Pro"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: adrotate-output.php:859
|
318 |
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."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: adrotate-output.php:860
|
322 |
msgid "AdRotate Manuals"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: adrotate-output.php:860
|
326 |
msgid "Support Forums"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: adrotate-output.php:861
|
330 |
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."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: adrotate-output.php:863
|
334 |
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."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: adrotate-output.php:864
|
338 |
msgid "Write review on WordPress.org"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: adrotate-output.php:867
|
342 |
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!"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: adrotate-output.php:867
|
346 |
msgid "Compare Licenses"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: adrotate-output.php:868
|
350 |
msgid "Single License"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: adrotate-output.php:868
|
354 |
msgid "Use on ONE WordPress installation."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: adrotate-output.php:868 adrotate-output.php:869
|
358 |
msgid "Buy now"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: adrotate-output.php:869
|
362 |
msgid "Multi License"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: adrotate-output.php:869
|
366 |
msgid "Use on up to FIVE WordPress installations."
|
367 |
msgstr ""
|
368 |
|
782 |
msgstr ""
|
783 |
|
784 |
#: dashboard/publisher/adverts-edit.php:59
|
785 |
+
msgid "There is a problem saving the image. Please re-select your image and re-save the advert!"
|
786 |
msgstr ""
|
787 |
|
788 |
#: dashboard/publisher/adverts-edit.php:62
|
789 |
+
msgid "This kind of advert can not have statistics enabled in AdRotate. Separate impression counting is available in AdRotate Pro."
|
790 |
msgstr ""
|
791 |
|
792 |
#: dashboard/publisher/adverts-edit.php:67
|
1988 |
msgid "user-agents"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: dashboard/settings/general.php:83 dashboard/settings/misc.php:47
|
1992 |
+
#: dashboard/settings/notifications.php:72 dashboard/settings/roles.php:55
|
1993 |
+
#: dashboard/settings/statistics.php:85
|
1994 |
msgid "Update Options"
|
1995 |
msgstr ""
|
1996 |
|
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.9
|
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.
|
@@ -24,7 +24,7 @@ With AdRotate it's easy to set up your own ads and campaigns with standard HTML
|
|
24 |
* Easily manage ads
|
25 |
* Easily manage Groups for ads
|
26 |
* Easily manage Assets and media
|
27 |
-
* Track clicks, impressions and calculate the
|
28 |
* Disguise ads 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 in WordPress
|
@@ -65,10 +65,12 @@ 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 |
-
* [fix]
|
70 |
-
* [fix]
|
71 |
-
* [
|
|
|
|
|
72 |
|
73 |
= AdRotate Professional 5.8.17 =
|
74 |
* [fix] Notice about height on stats
|
@@ -76,6 +78,8 @@ For the full changelog check out the [development page](https://ajdg.solutions/s
|
|
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 |
|
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.3
|
8 |
+
Stable tag: 5.8.23
|
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.
|
24 |
* Easily manage ads
|
25 |
* Easily manage Groups for ads
|
26 |
* Easily manage Assets and media
|
27 |
+
* Track clicks, impressions and calculate the Click-Through-Rate (CTR)
|
28 |
* Disguise ads 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 in WordPress
|
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.23 =
|
69 |
+
* [fix] Replaced 'adrotate-pro' language strings with 'adrotate'
|
70 |
+
* [fix] Better validate uploaded files
|
71 |
+
* [fix] Low risk security fixes for saving adverts and groups
|
72 |
+
* [update] Borlabs cache code - Requires Borlabs Cache 1.6.5+
|
73 |
+
* [update] Removed unused 'save options' button in Maintenance dashboard
|
74 |
|
75 |
= AdRotate Professional 5.8.17 =
|
76 |
* [fix] Notice about height on stats
|
78 |
* [fix] Archiving adverts deleted wrong stats in some cases
|
79 |
* [fix] Uninstaller calling unused/broken functions
|
80 |
* [fix] Geo Targeting now properly handles failed server responses
|
81 |
+
* [fix] Low risk security fixes for saving adverts and groups
|
82 |
+
* [update] Removed unused 'save options' button in Maintenance dashboard
|
83 |
|
84 |
Be a Pro and get [AdRotate Professional](https://ajdg.solutions/product-category/adrotate-pro/?pk_campaign=adrotatefree&pk_keyword=readme)!
|
85 |
|